-
Notifications
You must be signed in to change notification settings - Fork 1
/
Dataset.csv
We can't make this file beautiful and searchable because it's too large.
1077 lines (1077 loc) · 817 KB
/
Dataset.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
"Net generation from electricity plants for all sectors"
"http://www.eia.gov/electricity/data/browser/#/topic/0?agg=2,1,0&fuel=vvvo&geo=vvvvvvvvvvvvo&sec=g&columnchart=~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~&freq=M&start=200101&end=201506&ctype=columnchart<ype=sourcekey&columnvalues=0&rtype=s&maptype=0&rse=0&pin="
"Thu Oct 29 2015 18:52:37 GMT-0500 (Central Daylight Time)"
"Source: U.S. Energy Information Administration"
"description","units","source key","Jan 2001","Feb 2001","Mar 2001","Apr 2001","May 2001","Jun 2001","Jul 2001","Aug 2001","Sep 2001","Oct 2001","Nov 2001","Dec 2001","Jan 2002","Feb 2002","Mar 2002","Apr 2002","May 2002","Jun 2002","Jul 2002","Aug 2002","Sep 2002","Oct 2002","Nov 2002","Dec 2002","Jan 2003","Feb 2003","Mar 2003","Apr 2003","May 2003","Jun 2003","Jul 2003","Aug 2003","Sep 2003","Oct 2003","Nov 2003","Dec 2003","Jan 2004","Feb 2004","Mar 2004","Apr 2004","May 2004","Jun 2004","Jul 2004","Aug 2004","Sep 2004","Oct 2004","Nov 2004","Dec 2004","Jan 2005","Feb 2005","Mar 2005","Apr 2005","May 2005","Jun 2005","Jul 2005","Aug 2005","Sep 2005","Oct 2005","Nov 2005","Dec 2005","Jan 2006","Feb 2006","Mar 2006","Apr 2006","May 2006","Jun 2006","Jul 2006","Aug 2006","Sep 2006","Oct 2006","Nov 2006","Dec 2006","Jan 2007","Feb 2007","Mar 2007","Apr 2007","May 2007","Jun 2007","Jul 2007","Aug 2007","Sep 2007","Oct 2007","Nov 2007","Dec 2007","Jan 2008","Feb 2008","Mar 2008","Apr 2008","May 2008","Jun 2008","Jul 2008","Aug 2008","Sep 2008","Oct 2008","Nov 2008","Dec 2008","Jan 2009","Feb 2009","Mar 2009","Apr 2009","May 2009","Jun 2009","Jul 2009","Aug 2009","Sep 2009","Oct 2009","Nov 2009","Dec 2009","Jan 2010","Feb 2010","Mar 2010","Apr 2010","May 2010","Jun 2010","Jul 2010","Aug 2010","Sep 2010","Oct 2010","Nov 2010","Dec 2010","Jan 2011","Feb 2011","Mar 2011","Apr 2011","May 2011","Jun 2011","Jul 2011","Aug 2011","Sep 2011","Oct 2011","Nov 2011","Dec 2011","Jan 2012","Feb 2012","Mar 2012","Apr 2012","May 2012","Jun 2012","Jul 2012","Aug 2012","Sep 2012","Oct 2012","Nov 2012","Dec 2012","Jan 2013","Feb 2013","Mar 2013","Apr 2013","May 2013","Jun 2013","Jul 2013","Aug 2013","Sep 2013","Oct 2013","Nov 2013","Dec 2013","Jan 2014","Feb 2014","Mar 2014","Apr 2014","May 2014","Jun 2014","Jul 2014","Aug 2014","Sep 2014","Oct 2014","Nov 2014","Dec 2014","Jan 2015","Feb 2015","Mar 2015","Apr 2015","May 2015","Jun 2015","Jul 2015","Aug 2015"
"Net generation from electricity plants for all sectors","thousand megawatthours","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""
"All fuels","thousand megawatthours","ELEC.GEN.ALL-US-99.M","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""
"All fuels : United States","thousand megawatthours","ELEC.GEN.ALL-US-99.M",332493,282940,300707,278079,300492,327694,357614,370533,306929,294734,278934,305496,319941,281826,302549,289848,307675,341023,381542,374586,331279,307059,296290,324834,341989,299249,304317,285756,307545,328694,374396,381816,323136,306741,297867,331680,346546,314280,308812,290560,327380,345085,377332,368439,335622,312450,302101,341948,343121,298500,317458,289562,315062,363672,402274,404941,350218,316398,306115,348101,328658,307333,318730,297858,330616,364260,410421,407763,332055,321567,309159,336283,353531,323230,320471,303129,330203,362755,393226,421797,355394,332615,314103,346290,362998,325106,324630,305865,325245,373109,402900,388987,338056,318547,310046,343898,354993,300887,310603,289537,311306,347658,372542,381221,327401,307040,296635,350507,360957,319735,312168,287800,327936,375759,409725,408884,346045,307921,306010,362119,362872,313127,318710,302401,323628,367727,418693,406511,337931,308699,304102,335740,339528,309389,309091,295228,336518,360826,414640,395700,334585,311651,305975,334635,348967,309728,325399,299333,322156,356823,394846,385286,340941,314925,314540,353021,377531,324128,332111,297653,324299,358392,385533,384192,339788,314560,317689,337059,360863,334851,324248,293627,321906,361698,399620,392298
"All fuels : New England","thousand megawatthours","ELEC.GEN.ALL-NEW-99.M",10005,8662,9506,8321,8592,10059,10221,11520,9989,9916,9435,10365,10770,9210,10057,9203,9486,10144,11688,11445,10023,10308,10641,11365,11708,10273,10285,9978,9445,10247,12244,12683,10908,10655,10284,11438,12812,10942,11345,10235,10320,10900,11752,12229,10880,10006,10487,11612,12078,10564,11123,9692,10069,12069,13205,13606,11486,10506,10256,11494,10993,10068,10795,9494,10569,11622,13614,12762,11024,10564,9895,10811,11004,10385,10774,9795,9927,11046,12768,13046,11244,10742,10378,11417,10675,10012,10382,9282,9371,10833,12512,11505,10722,10373,10266,11161,11746,9914,10541,9479,9089,9523,10818,12054,9751,8920,9155,10676,10941,9573,9707,8864,9558,11508,13561,12624,11190,10554,10382,11266,11325,9809,10231,8885,9385,10332,12567,11785,10437,8923,9408,10252,10524,9632,9718,8573,9567,10232,12413,12154,10040,9113,9138,9782,10218,8577,9132,8433,8858,9956,12583,10548,9494,9120,8885,9633,10405,8684,9449,8056,8339,9578,11139,10279,9318,8491,8244,8774,9700,9494,9012,8137,8899,9209,11171,11130
"All fuels : Connecticut","thousand megawatthours","ELEC.GEN.ALL-CT-99.M",2930,1853,2386,2280,2356,2661,2589,3064,2701,2606,2227,2837,2832,2198,2241,2271,2865,2738,3286,3062,2214,2493,2624,2487,2742,2535,2330,2457,2430,2420,2665,2802,2507,2102,1855,2699,3330,2515,2519,1802,2578,2889,3064,3224,2830,2561,2515,2807,3122,2634,2921,2122,2624,3054,3377,3442,2717,2166,2561,2810,2780,2598,3040,2577,2978,3159,3465,3283,2920,2461,2491,2929,2841,2746,2931,2110,2444,2825,3165,3249,2905,2686,2427,2843,2817,2535,2512,1999,2297,2657,3114,2823,2616,2395,1871,2775,2893,2609,2745,2461,2554,2466,2507,3155,2611,2376,2193,2637,2862,2478,2447,1818,2166,3058,3556,3200,3040,2856,2959,2910,3055,2701,2679,2095,2870,2872,3424,3330,2918,2417,2325,3060,2970,2749,2957,2756,2811,3085,3537,3279,3206,2762,2824,3181,3219,3028,3033,2409,2579,2946,3481,2996,2997,2895,2858,3169,3060,2762,3067,2407,2234,2894,3281,3270,2813,2146,2501,3169,3491,3250,3119,2826,2984,3008,3365,3426
"All fuels : Maine","thousand megawatthours","ELEC.GEN.ALL-ME-99.M",1648,1463,1503,1298,1633,1603,1691,2006,1752,1568,1705,1695,1892,1723,1888,1746,1995,1745,2003,1996,1864,1838,1889,1955,2066,1429,1471,1491,1358,1408,1587,1605,1488,1745,1565,1760,1874,1775,1654,1522,1510,1395,1463,1692,1465,1483,1573,1694,1753,1522,1643,1554,1425,1560,1694,1764,1476,1519,1495,1438,1281,1331,1275,1166,1396,1450,1713,1568,1345,1512,1418,1363,1518,1414,1391,1219,1291,1315,1504,1517,1173,1007,1223,1557,1514,1276,1356,1462,1464,1291,1551,1419,1417,1296,1525,1524,1585,1327,1376,1184,1122,1314,1422,1507,1239,1346,1380,1547,1469,1311,1264,1198,1353,1476,1662,1605,1434,1400,1342,1505,1445,1156,1191,1273,1324,1304,1472,1381,1344,1271,1305,1508,1446,1335,1213,872,868,1143,1388,1429,1200,1226,1113,1194,1388,1148,1227,1029,1039,1270,1281,1096,1081,1043,1142,1286,1451,1037,1140,999,951,1222,1353,1088,906,887,1069,1052,1258,1308,1141,886,760,775,896,980
"All fuels : Massachusetts","thousand megawatthours","ELEC.GEN.ALL-MA-99.M",3802,3146,3597,2404,2426,3300,3359,3801,2977,3245,3141,3280,3401,3020,3473,2877,3169,3202,3887,3909,3688,3911,3397,4092,3967,3655,3597,3621,3153,3811,4952,4922,4068,4508,4082,4048,4564,3827,4316,4309,3453,3773,4390,4217,3659,3597,3402,3994,4073,3446,3765,3839,3064,4129,4628,4850,4323,3941,3299,4158,3544,3312,3344,3223,3614,4156,5088,4568,3801,4018,3501,3428,3470,3434,3825,3677,3651,4111,4624,4864,3954,3927,3754,3783,3209,3077,3201,3510,2916,3815,4346,3772,3602,3643,3863,3549,3733,2931,3272,2816,2281,2877,3533,4186,3224,3423,3208,3482,3435,3057,3071,3226,3627,3804,4942,4338,3615,3300,2995,3394,3489,2904,2920,3295,2610,3128,4239,3892,3132,3305,2581,2561,2926,2458,2713,2505,2771,3166,4228,4223,3263,2968,2639,2339,2696,1907,2497,2627,2462,2809,4409,3484,2629,2589,2368,2407,2983,2542,2466,2567,2341,2648,3312,2926,2709,2594,2150,1887,2337,2537,2224,2176,2417,2690,3955,3772
"All fuels : New Hampshire","thousand megawatthours","ELEC.GEN.ALL-NH-99.M",652,1280,958,1421,1263,1377,1408,1397,1351,1292,1325,1350,1411,1222,1431,1380,588,1384,1415,1429,1264,1365,1436,1629,1886,1670,1812,1593,1694,1696,1929,2284,1927,1384,1710,2010,2080,2009,2022,2066,1751,1990,1999,2046,2079,1598,2086,2149,2214,2066,1905,1198,1919,2204,2390,2404,2006,1964,2113,2086,2344,1942,2224,1699,1483,1703,1936,2108,1809,1247,1489,2080,2084,1714,1692,1844,1757,1910,2171,2144,2116,1945,1930,1971,1813,1999,2147,953,1598,1862,2198,2207,1984,1991,2062,2064,2287,1894,1803,1896,1949,1665,1940,1744,1482,700,1172,1632,1922,1638,1757,1513,1644,1833,2042,2058,1905,1678,2046,2158,1981,1984,2017,1077,1230,1672,2049,1859,1667,932,1848,1750,1943,1792,1677,1351,1749,1661,1903,1763,1143,841,1525,1917,1910,1745,1764,1257,1419,1680,1982,1683,1573,1429,1523,1813,1839,1492,1832,994,1706,1568,1815,1643,1596,1709,1624,1767,2095,1887,1862,1729,1802,1754,1842,1841
"All fuels : Rhode Island","thousand megawatthours","ELEC.GEN.ALL-RI-99.M",424,444,590,451,658,621,695,790,763,745,571,752,745,573,500,459,503,531,597,592,556,528,796,678,514,530,559,280,258,424,635,562,514,434,539,371,428,364,270,318,513,521,434,539,363,318,443,429,389,412,352,506,522,625,655,670,509,525,426,463,465,361,353,254,474,527,766,596,593,730,444,406,514,570,376,423,503,477,771,857,738,657,477,687,671,512,495,744,486,633,811,669,614,673,470,609,631,589,657,473,525,630,768,886,681,501,630,726,637,529,523,567,553,753,796,883,696,674,449,679,726,522,740,516,704,727,860,807,857,726,822,714,648,761,579,551,760,745,853,959,744,751,462,497,368,215,318,553,725,610,793,710,691,601,366,297,405,278,301,493,495,671,795,766,735,575,368,413,333,347,469,345,786,828,931,948
"All fuels : Vermont","thousand megawatthours","ELEC.GEN.ALL-VT-99.M",548,478,472,467,254,498,478,464,445,459,467,451,489,475,524,470,365,544,500,457,437,174,498,523,533,453,516,535,552,488,475,509,403,481,532,550,537,453,563,218,514,332,402,512,484,450,467,538,527,484,537,473,515,496,461,476,454,392,361,539,579,523,561,573,624,627,647,639,556,595,553,606,577,507,559,521,281,409,534,415,358,520,567,575,650,614,671,614,609,575,491,615,489,376,476,639,616,564,688,649,658,571,648,576,515,574,571,652,616,560,645,541,216,584,562,540,499,647,591,621,629,543,683,630,647,628,524,517,518,273,526,658,592,538,578,538,608,433,503,501,485,564,575,654,637,533,293,559,634,642,637,578,522,562,627,660,667,574,644,597,612,576,583,586,558,579,533,486,186,164,197,176,151,153,182,163
"All fuels : Middle Atlantic","thousand megawatthours","ELEC.GEN.ALL-MAT-99.M",36792,31219,33903,29474,30940,34862,36637,39575,31760,31234,30332,33185,34151,29982,30646,29452,31147,35214,40179,40349,34386,32143,31972,35862,37153,32341,31965,29808,30503,33334,38018,38985,31836,31234,30844,35371,37349,33604,32624,30020,33864,34684,38486,38105,33533,29714,31305,35218,36139,31947,34747,29967,31217,37679,42506,43664,36470,32202,31781,37209,35163,32140,33893,30293,33368,37314,44098,42382,33130,31834,32852,35308,36082,34886,35199,33015,34126,37811,41156,43472,35921,33458,32590,36923,37495,34247,33843,30473,31238,38924,42183,38451,35423,33823,33583,36666,38163,32579,34161,30734,32402,34240,37953,40522,32965,32140,32163,36435,36449,33836,32872,29250,33698,39078,43139,41554,36242,32866,34335,39076,38014,33427,32950,30631,33840,36895,43551,40334,35451,34498,33932,35966,37514,34061,33608,30372,33937,36294,44015,41019,34347,32162,31510,35613,38004,35090,36631,32581,33618,35796,43167,38085,33789,30832,32630,37430,38997,35445,35804,31172,31997,36495,39190,37790,34226,33922,33360,37051,38611,35585,36445,30473,33298,36178,40653,40765
"All fuels : New Jersey","thousand megawatthours","ELEC.GEN.ALL-NJ-99.M",5306,4706,4947,4013,4160,5541,5668,6427,4966,4511,4541,4636,4980,4581,4884,4173,4129,5533,6494,6637,5710,4212,4853,5383,5699,4819,4956,4259,4043,4930,5840,5816,4357,4146,3946,4587,4941,4631,4492,3468,4272,5227,5807,5950,4926,4361,3932,3876,4549,4549,4812,3629,4135,5421,6503,6983,5295,4413,4660,5601,5052,4545,4868,4084,4656,5614,6655,6469,4926,4051,4697,5082,4741,4758,4925,3943,4518,5684,6381,6764,5689,4994,4705,5569,5570,5261,4877,4329,4572,6332,6715,6200,6019,4438,4347,5015,5675,4408,4876,3932,4764,5217,5654,6435,5445,5032,4715,5658,5680,5249,4945,4380,5523,6363,6744,6555,5572,4503,4477,5693,5801,4991,5057,4632,5229,5803,6586,6104,5137,5149,4766,5439,5270,5052,5317,4904,5664,6091,7235,6700,6019,4808,3479,4725,5215,4902,5634,4970,4796,5617,6986,6098,5626,4755,4897,5255,6001,5518,5858,4427,4544,5415,6431,6479,5797,5452,5351,6192,6220,5920,5964,4924,6004,6477,7201,6980
"All fuels : New York","thousand megawatthours","ELEC.GEN.ALL-NY-99.M",12622,11460,12115,10734,11132,13038,13128,14720,11583,11420,10518,11447,11538,10199,10715,10114,11131,12339,14116,14179,12147,11030,10420,11664,12117,10944,11245,10151,10269,11384,13222,13437,11328,10850,10662,12034,12969,11217,11132,10094,11598,12047,12891,12552,11483,9911,10261,11809,12644,10769,11555,10513,10358,13235,14735,15331,13031,11364,10829,12524,11600,10813,11511,10046,10981,12462,15400,14588,11501,11167,10943,11253,12699,12336,12105,10946,11669,12545,13460,14407,12174,11330,10256,11951,11962,10741,11389,9515,10756,12658,14220,12665,11565,11272,11407,12172,12518,10571,11004,10265,10697,10605,11913,12982,10509,10312,10270,11504,11155,10319,10245,9105,10725,12238,14577,13571,11770,10655,10678,11925,11333,10119,10860,9971,10474,12078,14531,12962,11611,11374,10836,11331,11476,10750,10232,9844,10835,11794,14406,13421,10806,10587,10405,11211,11863,10842,10921,10032,10927,11431,14312,12085,10560,10443,10927,11774,12568,11116,11155,9679,10511,11766,12946,12018,11048,10928,11054,11486,11814,11147,11084,10129,11175,11529,13416,13396
"All fuels : Pennsylvania","thousand megawatthours","ELEC.GEN.ALL-PA-99.M",18864,15053,16841,14728,15648,16284,17842,18428,15210,15303,15273,17102,17633,15202,15047,15165,15887,17343,19569,19533,16529,16901,16699,18815,19337,16578,15763,15397,16191,17020,18957,19732,16152,16238,16236,18750,19439,17756,17000,16459,17994,17409,19787,19603,17124,15442,17112,19532,18946,16629,18379,15825,16725,19023,21268,21351,18144,16425,16292,19084,18511,16782,17515,16163,17731,19238,22043,21325,16703,16617,17212,18973,18642,17791,18169,18126,17939,19582,21315,22302,18059,17134,17629,19402,19964,18244,17578,16629,15910,19934,21247,19587,17839,18112,17829,19479,19969,17600,18281,16537,16941,18417,20386,21106,17011,16796,17179,19273,19615,18268,17683,15765,17451,20478,21818,21429,18901,17708,19180,21457,20879,18317,17033,16028,18137,19014,22434,21268,18703,17976,18330,19196,20769,18259,18060,15624,17439,18408,22373,20897,17522,16766,17625,19677,20927,19346,20075,17579,17896,18748,21869,19902,17603,15634,16806,20401,20428,18811,18791,17066,16941,19315,19813,19293,17381,17542,16956,19373,20577,18518,19397,15420,16119,18172,20036,20389
"All fuels : East North Central","thousand megawatthours","ELEC.GEN.ALL-ENC-99.M",55695,48200,51377,45951,48697,52609,57249,59338,48065,48775,47473,51260,52279,46097,51176,47659,49039,55004,63369,61452,54543,51440,50818,54176,57398,50757,51989,46435,47107,50565,58316,60663,52205,50731,50502,55383,57739,51573,51926,48400,52552,55071,58203,56535,53960,51992,50835,58219,57538,49687,52740,47207,49331,59587,63454,63836,56082,53781,52114,59557,55163,51540,52943,46539,51328,55461,63608,63502,50742,53127,52425,56170,59494,55262,53068,48991,51159,56836,59876,65557,55832,53560,52264,56855,59291,54449,54079,49663,50491,56807,62271,60149,52861,51389,52353,57064,58125,49154,48504,44347,44855,51201,53142,55876,49269,48126,48444,56746,58605,51204,49794,45204,50194,56538,63686,63632,51103,49056,49477,57505,57959,49839,51910,45590,47318,54359,65180,60919,49330,47923,47301,52048,54641,50115,47491,44464,49290,53902,63213,57505,46687,46231,48103,52273,55459,50274,51650,45772,48240,50928,57798,56555,49175,48961,50067,57194,61387,51315,53243,44818,47182,52892,54805,56556,48581,46098,50170,52129,56962,54048,50654,43239,45994,50554,55961,54956
"All fuels : Illinois","thousand megawatthours","ELEC.GEN.ALL-IL-99.M",16039,13914,14882,13320,14605,15411,17030,16995,14281,13842,13907,15023,14564,13653,14961,13795,14509,16667,19085,18597,16442,15228,14614,15940,17232,15207,15647,14030,14340,15214,17593,18652,15630,14667,14618,16225,16933,15286,15168,14179,15881,16387,17500,16987,16165,15269,15037,17165,17400,14138,14590,14067,14775,17407,18365,18450,16435,15713,14909,17871,16397,14443,15437,13553,15172,16268,18592,18511,15496,16022,15682,16854,18125,16349,16616,14416,15080,16846,18010,19287,16924,15906,15470,17231,17073,15951,16331,15039,14955,17228,18477,18245,16251,16246,16365,17314,17512,15166,15771,15160,15025,16375,17040,17252,15542,15305,15670,18048,17769,15755,16641,14423,15480,17016,18950,18582,16222,16015,16315,18184,17879,15667,16496,14695,15053,17129,19259,18279,15775,15942,16433,16893,17841,15826,15254,14695,15830,17274,19103,17586,15089,15416,16051,17599,18272,16389,17246,14925,15920,16569,18069,17891,16533,16352,16459,18380,19122,16278,17315,15292,14871,16757,17442,17735,15978,15887,17698,17978,17973,16141,16017,14465,15177,16670,18021,17250
"All fuels : Indiana","thousand megawatthours","ELEC.GEN.ALL-IN-99.M",10947,9661,9951,8634,9488,10593,11598,11895,10086,10055,9594,10068,10874,9121,10000,9113,9421,10537,12144,12096,11188,10208,10389,10518,11557,10310,10142,9689,9907,10019,11365,11925,10127,9097,9848,10901,11768,10303,10006,9676,9938,10949,11199,11004,10784,10516,10276,11351,11292,9881,11019,9519,9873,11616,12187,12248,11137,10132,9839,11629,10800,10164,10881,10012,10511,11080,12306,12714,9958,10567,10316,11183,11973,11100,10691,9794,9892,11000,11771,12391,10850,10316,9813,11048,11737,10869,9883,9863,9969,10876,12524,12091,10226,9808,9929,11735,11176,9818,9891,9019,9008,9838,9602,10855,8884,8700,8447,11432,11983,10229,9212,8070,9316,10974,12097,12346,9713,9530,9805,11907,11948,9736,9558,8194,9296,10559,12431,11980,9192,9451,9444,10342,10443,9406,8671,8225,8864,10178,11618,10477,8817,8594,9478,9923,10442,8468,8429,8260,8528,8901,10742,9851,8776,8766,8977,10263,11846,10457,10333,8194,9063,10067,9893,10478,8671,8588,8862,9184,10158,9854,8771,7479,7844,8896,9928,9684
"All fuels : Michigan","thousand megawatthours","ELEC.GEN.ALL-MI-99.M",10183,8871,9681,8256,9301,9813,10492,10934,7753,8888,8411,9264,9241,8195,9496,9127,8437,10105,11994,11814,10237,9666,9567,10010,10162,8639,9543,8276,7450,8916,10776,10154,9446,9236,8801,9949,10340,9558,10335,9118,9808,9952,10469,10217,9867,8974,9045,10804,10025,9246,9581,8882,9118,11247,11768,12067,9904,9830,9333,10618,9546,9339,9276,7084,9147,9436,11213,11291,8738,8768,8922,9796,10354,9980,9414,9635,9765,10198,10813,11737,9387,8585,9155,10286,10986,9264,9990,8699,9213,10470,10895,10212,9146,8195,8631,9288,9718,8037,8043,6429,7267,9020,9250,9510,8671,7909,7957,9392,10052,8777,8260,8536,9165,10046,11594,11654,9301,7966,7266,8934,9275,7834,8853,8716,9027,9660,11434,10388,8290,8075,8546,9072,9401,8938,8930,7512,9642,9706,11200,9933,8451,8269,8013,8172,9177,8446,8796,7542,7883,8756,9827,9725,8360,8228,8867,9811,10093,8266,8595,7552,8670,9133,9574,10091,8425,8321,8308,8793,9875,9781,9459,8492,9673,9104,10103,10362
"All fuels : Ohio","thousand megawatthours","ELEC.GEN.ALL-OH-99.M",13163,11162,12108,11177,10692,11905,12416,13746,11460,11217,11094,12122,12807,10936,12218,11277,12137,12617,14219,13456,11660,11485,11527,12730,13403,11764,11769,9974,10861,11663,13080,14045,11981,12840,12318,12939,13356,11324,11425,11028,12518,12977,13467,12786,12134,12348,11602,13380,13336,11776,12858,10243,11111,13961,15132,14913,13215,13167,13336,13929,13262,12771,12069,11316,11355,13212,15060,14893,12159,13283,12886,13169,13465,12761,11616,10340,11456,13372,13506,15908,13562,13433,12928,12806,13874,13163,12750,11650,11970,13056,13998,13402,12101,12121,12475,12853,13732,11376,10063,9491,9151,11115,12029,12913,11300,11395,11535,11989,12972,11388,11099,9318,10772,12834,14429,14648,11133,10889,11261,12853,12950,11706,12095,9563,9525,11752,14958,13820,11042,9493,8373,10310,11627,11002,9991,9709,10134,10875,14019,13113,9228,9085,9536,11426,11820,11635,11587,9820,10999,11214,12645,13033,10292,10644,10748,12848,13873,11386,12308,9687,9726,11431,12608,12298,10720,9014,10568,10984,12762,12669,10845,8054,8430,10281,11372,11442
"All fuels : Wisconsin","thousand megawatthours","ELEC.GEN.ALL-WI-99.M",5364,4594,4755,4564,4611,4888,5714,5769,4484,4774,4466,4781,4793,4192,4502,4347,4535,5078,5927,5489,5017,4853,4721,4978,5043,4838,4887,4466,4548,4753,5502,5887,5022,4890,4918,5368,5341,5102,4993,4398,4407,4806,5567,5541,5010,4886,4874,5520,5486,4645,4692,4496,4454,5355,6002,6159,5390,4939,4697,5510,5159,4823,5280,4574,5142,5464,6437,6094,4392,4487,4619,5168,5578,5072,4730,4806,4965,5420,5776,6233,5109,5319,4897,5485,5621,5203,5125,4411,4383,5177,6377,6200,5137,5018,4954,5874,5987,4757,4736,4248,4403,4854,5221,5346,4872,4817,4835,5884,5829,5055,4581,4856,5461,5668,6615,6402,4733,4655,4832,5628,5907,4897,4908,4422,4417,5259,7100,6452,5031,4962,4505,5431,5329,4943,4645,4322,4820,5868,7272,6396,5102,4866,5024,5154,5748,5336,5592,5225,4910,5488,6515,6055,5214,4972,5017,5891,6453,4928,4692,4094,4852,5504,5288,5954,4788,4289,4734,5191,6194,5603,5561,4749,4871,5602,6536,6217
"All fuels : West North Central","thousand megawatthours","ELEC.GEN.ALL-WNC-99.M",25600,22084,22011,19771,20746,23619,27362,27469,23284,23181,22207,24360,25297,21725,23448,21344,21749,25556,28632,27538,24560,24116,23938,26401,27151,23867,24217,21477,22686,24597,29069,29294,23989,24005,23628,26702,27364,24083,24061,22193,23032,24463,27565,26892,25273,23801,24163,26594,27351,23305,24347,21444,23319,26570,28859,28893,24899,23740,23860,27198,26011,24212,24189,22277,23468,26094,29919,29409,24477,24633,23582,27343,27649,25241,24190,22528,23390,26921,30077,31092,25774,25042,25339,28102,28477,27032,25267,23449,23941,26078,30022,29362,25508,24791,25026,28748,29099,24566,25958,23304,24277,27259,28222,28424,25056,24867,24933,29815,30250,26426,26729,23886,26021,28631,31813,32352,26149,24658,25742,30177,30720,27076,26921,24180,25545,28532,33044,31053,25710,25883,25698,28539,27985,25406,24777,23267,25666,28937,33863,30453,26705,25529,25765,29122,30118,26145,27328,24333,24956,27334,30696,30158,26749,25913,26903,29668,32417,28852,28682,24192,25764,28496,30829,31095,25923,25833,27739,29496,30781,28520,26448,23882,24853,27996,31574,30174
"All fuels : Iowa","thousand megawatthours","ELEC.GEN.ALL-IA-99.M",3761,3244,3576,2916,2876,3295,3950,3899,3211,3279,3189,3463,3643,3341,3599,2974,3402,3617,4042,3781,3379,3544,3409,3798,3853,3225,3614,3176,3136,3531,3841,3991,3475,3679,3109,3487,3836,3792,3506,3146,3016,3511,3834,3812,3744,3716,3525,3810,3936,3413,3163,2811,3482,4231,4362,4231,3531,3693,3457,3845,3664,3634,3702,3381,3832,3803,4134,4167,3215,3842,3961,4146,4249,3868,3686,3880,3599,3958,4689,4767,4286,4135,4178,4495,4791,4347,4320,4230,4055,3964,4676,4589,3974,4546,4451,5144,4944,4057,4255,3767,3767,4303,4416,4568,4160,4311,4267,5046,5211,4502,4879,4323,4547,4689,5401,5450,4425,4580,4581,4920,4859,4290,4522,4692,4456,4736,5432,5104,4400,4539,4561,4779,5157,4658,4569,3950,4491,4835,5646,5045,4323,4191,4738,5072,5372,4573,4693,4370,4570,4700,5139,5057,4532,4093,4488,5083,5621,5051,5106,4201,4051,4606,4889,4927,4112,4400,4695,5464,5438,5395,5103,4402,4528,4499,5038,4993
"All fuels : Kansas","thousand megawatthours","ELEC.GEN.ALL-KS-99.M",4108,3274,3340,3246,3758,3898,4454,4406,3640,3511,3250,3863,4149,3718,3421,3074,3369,4125,4698,4542,4066,4037,3940,4050,4314,3565,3785,3606,3714,3918,4717,4559,3671,3508,2939,4270,4254,3669,3581,3481,4047,3965,4275,4116,3917,3561,3699,4218,4166,3263,3592,2925,3220,4202,4557,4488,4011,3698,3566,4175,3703,3302,2969,2966,3307,4210,4811,4769,3826,3410,3952,4299,4442,4041,3709,3600,3945,4167,4694,4895,4211,3904,4147,4367,4114,4030,3495,2759,3073,4082,4637,4504,4021,3756,3885,4275,4394,3653,3811,3331,3609,4418,4384,4137,3743,3288,3468,4442,4288,3851,3730,3623,3985,4315,4630,4855,4075,3356,3463,3751,3823,3436,3381,2975,3321,3820,4859,4537,3454,3690,3944,4119,3286,2528,2465,3032,3783,4266,4850,4476,4006,3636,3880,4218,4282,3562,3209,3489,3908,4343,4830,4710,4044,3857,3934,4305,4719,4177,3744,3387,3675,4540,4933,4794,4023,3905,4179,3968,4036,3655,3047,3268,3795,4300,4743,4321
"All fuels : Minnesota","thousand megawatthours","ELEC.GEN.ALL-MN-99.M",4333,3840,3663,3667,3414,4115,4516,4326,3970,4264,3998,4417,4583,4047,4345,4019,3888,4320,4945,4677,4355,4502,4333,4764,4771,4466,4315,4130,4192,4374,5041,5110,4429,4591,4713,4919,5063,4326,4216,3878,4053,4263,4661,4514,4330,4312,4052,4697,5011,4116,4505,3941,4152,4736,4915,4787,4069,3851,4222,4714,4608,4308,4575,4143,3967,4316,5213,4627,3977,4460,4430,4613,4837,4665,4412,3783,4163,4570,4915,4957,4395,4250,4448,5084,5257,4847,4401,4256,4437,4462,4917,4731,4004,3789,4372,5290,5162,4663,4571,3977,3919,4221,4395,4465,4086,3938,4018,5077,4984,4395,4311,3987,4536,4633,5296,5236,3693,3580,3896,5122,5168,4538,4665,3747,3902,4251,5406,4971,3922,3968,4149,4434,4661,4256,3829,3846,3836,4485,5493,4517,4047,4292,4122,4809,5105,4321,4250,3870,3654,3666,4441,4623,4141,4056,4341,4828,5301,4870,4876,4096,4710,4606,4689,4912,4196,4409,4794,5367,5282,4918,4705,3804,4202,4728,5552,4946
"All fuels : Missouri","thousand megawatthours","ELEC.GEN.ALL-MO-99.M",7120,6216,5891,5097,5472,6802,8057,8225,6662,6560,6502,6941,6872,5140,6217,5911,6068,7502,8195,8147,7065,6351,6147,7547,7839,7077,6779,5701,6603,7443,8724,8895,6735,6622,6925,7881,7954,6517,7160,6468,6515,7048,8480,8138,7608,6886,7195,7663,8276,7507,7226,6996,7498,7994,8321,8727,7250,6406,6615,8014,7860,7404,7226,6790,7082,7725,8698,8939,7575,7550,6838,7999,8040,7096,6989,6206,6699,8377,8905,9601,7158,7010,7205,7867,7789,7804,7370,7084,7344,8069,9082,8726,7459,6715,6376,7211,7929,6438,7104,6517,6807,8014,8085,8190,6999,7150,6923,8198,8347,7236,7115,6320,6852,8382,9041,9036,7250,6663,7103,8967,9041,7813,7657,6701,7485,9162,9579,8920,7409,7027,6291,7791,7404,7332,7145,6222,7259,8563,9893,8786,7602,6695,6768,8134,8155,7138,7979,6662,6804,8169,8827,8172,7355,7137,7246,7983,8788,7545,7541,5905,6983,7908,8566,8844,6501,5839,6113,7539,8168,7511,6486,5669,5782,7749,8517,8157
"All fuels : Nebraska","thousand megawatthours","ELEC.GEN.ALL-NE-99.M",2899,2425,2250,2084,2497,2669,2984,2966,2712,2634,2138,2229,2684,2570,2456,2446,2130,2696,3135,2876,2573,2526,2674,2853,2874,2497,2238,1950,2159,2249,3071,3008,2514,2407,2649,2839,2887,2621,2501,2435,2274,2451,2865,2966,2815,2629,2658,2907,2560,1945,2619,2128,2056,2489,3117,3050,2778,2858,2852,3012,2856,2437,2544,2278,2500,2885,3234,3042,2636,2309,2098,2851,2638,2400,2468,2328,2144,2750,3176,3181,2812,2777,2739,3029,2999,2759,2611,2241,2230,2562,3093,3120,2711,2529,2522,2996,2883,2412,2686,2457,2877,2828,3270,3286,2694,2772,2660,3178,3429,2994,3149,2538,2706,3024,3492,3556,2851,2727,2816,3349,3490,2989,2697,2544,2599,2829,3552,3461,2977,2910,2858,3188,3081,2812,2727,2457,2488,2880,3523,3286,2871,2633,2340,3119,3255,2907,3104,2492,2632,2997,3435,3495,3144,3129,3091,3425,3556,3291,3383,2815,3080,3359,3641,3677,3188,2895,3400,3327,3390,3070,3266,2939,2835,3269,3779,3712
"All fuels : North Dakota","thousand megawatthours","ELEC.GEN.ALL-ND-99.M",2751,2514,2690,2314,2328,2243,2688,2820,2313,2335,2481,2855,2808,2419,2762,2249,2317,2470,2780,2698,2498,2723,2743,2839,2903,2531,2854,2238,2206,2405,2858,2914,2363,2480,2678,2891,2741,2575,2498,2130,2299,2551,2697,2614,2260,2293,2566,2712,2793,2611,2584,2205,2579,2316,2878,2880,2682,2769,2741,2894,2793,2631,2598,2314,2175,2538,2944,2971,2638,2571,1846,2862,2865,2579,2542,2317,2465,2508,2924,2892,2334,2464,2430,2906,2897,2633,2537,2286,2355,2507,2932,2877,2756,2827,2982,3144,3148,2845,2974,2669,2700,2747,2838,2883,2523,2638,3093,3139,3252,2843,2972,2494,2688,2826,2963,3084,2794,2725,2892,3206,3453,3202,3176,2522,2614,2540,2885,2830,2599,2985,2997,3276,3398,3025,3139,2833,2817,2949,3231,3132,2736,2952,2932,2981,3076,2954,3243,2654,2725,2734,3125,3117,2518,2814,2858,3202,3554,3159,3123,2739,2397,2663,3121,2989,2796,3186,3438,2948,3469,3086,3166,2999,2939,2770,3184,3079
"All fuels : South Dakota","thousand megawatthours","ELEC.GEN.ALL-SD-99.M",628,572,601,447,402,597,713,827,776,598,648,592,559,490,647,670,576,826,838,815,623,435,691,550,598,505,631,676,676,677,816,817,802,717,616,414,628,584,599,656,827,674,752,732,599,404,468,587,609,450,658,439,332,602,709,729,578,465,407,544,528,495,576,404,605,617,885,894,609,492,456,571,580,592,384,416,375,592,774,799,577,503,192,354,629,612,533,593,447,432,683,815,584,629,437,689,639,498,557,587,598,728,835,895,850,770,503,735,738,606,574,601,708,761,990,1134,1061,1025,991,861,886,808,822,999,1168,1194,1331,1229,949,763,897,952,998,794,902,926,993,959,1226,1211,1121,1130,985,789,873,691,849,795,663,725,899,984,1014,826,947,842,878,760,910,1050,869,815,990,952,1106,1200,1119,882,997,885,676,802,771,682,760,967
"All fuels : South Atlantic","thousand megawatthours","ELEC.GEN.ALL-SAT-99.M",67187,54571,58511,55825,59025,66210,70455,75130,59477,55230,50733,55499,62816,55269,59590,58310,62580,68565,76906,76125,67855,64104,57773,65314,71778,61302,61495,58623,63370,67709,75233,77119,66158,59437,58414,67135,71454,63885,61011,57488,67001,71871,77669,75030,65744,61172,58390,67080,68471,59686,64261,57571,61944,73296,83121,85058,74704,64937,60751,68982,65424,62578,63609,59913,65947,73343,82288,84039,67024,62985,58718,63482,67255,65659,63506,59658,67832,74567,79100,87387,72863,68602,61462,67299,72179,64274,62583,58225,64413,75617,78553,76418,67942,58842,58281,63459,69370,57525,56929,54171,59489,69492,71302,75087,62038,58571,53805,66921,73971,63494,58267,54611,65901,76312,81656,79531,67029,55394,53826,72704,68881,55728,57312,57739,63715,72577,79741,76579,64164,53918,52999,58933,60857,54835,55467,53863,64937,66748,79300,73160,63245,58154,56716,60226,63669,57274,59320,54245,59929,69386,74878,73355,65552,60814,59135,63419,74976,62125,63519,56453,64564,70894,74525,73161,65520,58731,60169,62574,69334,66786,61068,57170,66247,74213,79656,76594
"All fuels : Delaware","thousand megawatthours","ELEC.GEN.ALL-DE-99.M",626,521,867,577,574,559,658,931,441,537,315,202,275,278,520,488,393,485,850,783,567,571,328,464,769,758,863,570,299,459,980,962,651,359,324,400,1030,625,615,676,627,614,754,594,637,266,421,997,882,571,644,327,279,801,937,1125,811,599,433,726,536,597,651,483,489,604,873,882,342,582,544,601,541,701,650,486,480,792,971,1054,725,731,678,726,783,675,650,422,373,805,920,636,623,371,619,646,719,373,309,240,115,315,429,598,420,523,255,546,588,429,210,218,424,755,894,661,507,422,257,262,328,278,450,543,539,655,877,685,540,536,606,553,580,569,607,764,809,830,1048,854,765,695,509,605,492,394,771,506,630,731,970,796,703,682,541,545,602,524,597,503,531,687,797,785,789,539,630,641,648,541,443,767,771,716,859,828
"All fuels : District Of Columbia","thousand megawatthours","ELEC.GEN.ALL-DC-99.M",9,0,0,1,6,0,24,48,0,3,32,0,-1,5,11,23,-1,31,101,86,3,-1,0,4,10,13,13,1,2,4,11,25,-1,-1,-1,-1,16,2,1,-1,3,6,2,5,1,-1,-1,4,2,0,-1,-1,-1,42,90,75,4,9,0,5,2,1,-0,0,2,4,23,48,-1,1,-1,3,-1,3,-0,-0,-0,14,11,41,6,4,-1,-1,3,1,0,0,0,50,9,5,1,3,0,0,6,3,0,1,0,8,6,12,0,0,0,0,0,0,2,1,24,74,51,24,15,3,0,5,7,4,5,5,9,31,81,33,9,6,5,6,5,4,5,7,12,6,7,6,6,5,4,5,5,5,5,5,5,6,6,7,6,6,5,5,"NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM"
"All fuels : Florida","thousand megawatthours","ELEC.GEN.ALL-FL-99.M",16937,12761,14115,14809,15818,18088,18436,19756,17107,15525,13472,14122,15378,13072,15137,15618,17743,18095,19602,20294,19577,18457,14966,15414,17879,14191,16141,15880,19225,19384,20868,20387,19577,16753,16042,16283,16522,15179,15683,15770,18970,21522,22007,21484,19196,18769,16228,16787,16855,14405,16266,15157,18332,20268,23254,23779,21506,18088,15715,16632,16565,15497,16201,17768,19308,21348,22142,23245,20792,18790,15662,16434,16864,15821,16371,16455,18703,20870,22300,24038,21395,20094,15782,16722,17210,15594,16402,16667,19660,21064,21307,21936,21010,18078,15389,15320,16545,14837,15675,16113,18757,21034,21422,21981,20502,19123,15656,16307,19419,16180,16177,15569,19800,22464,22705,22841,21160,17643,15934,19204,17195,14881,15847,18340,19323,21449,22235,22912,20669,17164,15947,15932,16674,15702,17498,16958,19853,19984,22069,21779,19871,18481,15059,17167,16383,15314,16245,17168,19125,20945,21347,22627,20499,19224,16732,16790,19061,15888,17120,18106,20399,20846,22445,23354,20547,19204,16592,17499,18179,16767,18330,19133,20911,21895,22988,22854
"All fuels : Georgia","thousand megawatthours","ELEC.GEN.ALL-GA-99.M",11084,8332,9844,9245,9949,10687,12077,12090,9237,8285,8181,9305,9890,8485,9634,9594,10794,11869,13067,12803,11509,10471,8352,10044,10864,9084,9340,9560,10424,10783,11996,12517,10657,9108,8833,10912,11008,9990,8988,9490,11447,11773,12712,11935,10389,9779,9036,10266,10047,9157,10095,9843,11282,12630,14080,14422,12726,11270,10023,11092,10348,9816,10365,10409,11806,12966,14439,14506,11676,10274,10206,11199,11763,10188,10441,10187,12479,13112,13682,15775,12868,11934,10931,11793,12365,10517,9637,9954,11536,13041,13108,13220,11784,9944,10211,10855,11212,9498,9062,8942,9529,12791,13208,13044,11059,9583,9352,11417,12153,10089,9370,9705,11704,13104,14160,14210,12061,9778,9204,12039,11433,9091,8582,9130,11700,12490,12975,13455,9963,8489,8134,9307,9375,8158,8598,9659,11425,11443,13450,12112,10391,9351,8899,9447,10190,8254,8924,8535,9805,11305,11911,12100,10889,9465,9195,10380,12091,9463,9129,8597,10743,12174,12646,12298,10479,9052,9687,9598,10933,10377,9579,9687,11206,12279,13492,12915
"All fuels : Maryland","thousand megawatthours","ELEC.GEN.ALL-MD-99.M",4603,4182,3597,3310,3631,4425,4569,5104,4176,4139,3780,3547,3746,3104,3509,3654,3359,4155,5004,5107,4328,3702,3891,4719,5488,4364,3872,3894,3246,4134,4948,5101,4269,3850,4211,4867,5160,4465,4526,3670,4246,4444,4609,4811,4307,3739,3557,4518,4882,3886,3892,3513,3307,4812,5267,5321,4579,4450,3988,4766,4540,4057,3644,3332,3492,4210,5087,4956,3894,4116,3694,3935,4579,4476,3669,3567,3878,4294,4582,4965,4023,3838,3901,4427,4616,4184,3962,3339,3189,4378,4782,4060,3854,3175,3517,4306,4655,3582,3520,3612,3511,3719,3838,4308,2907,2961,2771,4390,4165,3251,3100,2880,3322,4152,4838,4311,3577,2914,2856,4242,4131,2830,3330,3127,3743,3795,4690,3703,3157,3150,3042,3120,2842,1855,2048,2997,3781,3216,4449,3632,3098,3236,3663,2993,3120,2513,2598,2568,2587,3380,3999,3034,2805,3041,2890,3314,4218,3334,3648,3048,3346,3208,3261,2878,2903,2699,2611,2860,3274,3389,2732,2679,3328,3598,3962,3108
"All fuels : North Carolina","thousand megawatthours","ELEC.GEN.ALL-NC-99.M",10512,8862,9303,9075,9535,10469,11102,12338,9661,9078,8390,9171,10220,8992,9084,9312,9379,10933,12340,11843,10538,10524,10210,11094,11949,10664,10563,8981,9628,10608,11673,12330,10034,9427,9886,11839,11984,11221,9640,9240,11030,10620,11838,11219,9892,9423,9101,11122,11364,10054,9881,8994,9877,11322,12684,12839,11348,10056,9986,11343,10539,10283,9946,8835,10263,11219,12385,12699,9593,9218,9475,10759,11052,11212,9600,9084,10325,11396,11737,13443,10776,10590,10266,10634,11634,10527,9582,8814,10591,11964,12012,11673,10028,8751,9364,10299,11749,9158,9217,7709,9076,10727,10883,11562,8544,8707,9510,11565,12440,11060,8859,7939,10286,12299,12600,12423,10561,8869,8961,12381,11704,8905,8278,8512,10268,11628,12495,11724,9319,7926,8343,9288,10193,9375,8719,8034,9631,10269,13040,11465,8824,8168,9207,9756,10982,10291,9997,7937,9310,11404,12579,11812,10614,10157,10194,10660,13239,10405,10745,8245,10560,12219,11976,11763,10161,8734,10297,10561,11947,11705,10068,8188,10306,12839,13460,12632
"All fuels : South Carolina","thousand megawatthours","ELEC.GEN.ALL-SC-99.M",7646,6638,7385,6372,7189,8243,8638,8919,7271,6963,6889,7006,8407,7598,8031,7097,7568,8603,9464,9089,8364,7153,6788,8403,8855,7718,7470,7529,7579,8167,9156,9142,7667,6970,6180,7340,9103,8298,7805,6821,7635,8554,9413,9358,7958,7016,7417,8562,8999,7873,8861,7503,7181,8882,10079,10016,8681,7682,7543,9215,8682,8242,8261,7209,7539,8524,10094,10156,8324,7741,7085,7411,8711,8180,8548,7992,7825,9332,9785,10664,8607,7708,7439,8611,9608,8513,8467,7553,6839,8968,9828,9714,8363,7511,7349,8264,9182,8006,7780,7169,7936,9221,9474,9595,8478,7652,6757,8873,10019,8763,8517,7123,7724,9297,10002,10199,8485,6915,7275,9834,9572,8045,8524,7438,7393,9353,10237,10025,8703,7809,7522,8352,8490,7598,7360,6925,8292,8477,9814,9096,8359,7801,7097,7448,8312,7678,8291,7592,8026,8514,9280,8969,7344,6281,6894,8070,9489,7882,8012,7253,7391,8099,9031,8461,8215,7710,7482,8071,8711,8305,7215,7458,7910,8615,9446,8973
"All fuels : Virginia","thousand megawatthours","ELEC.GEN.ALL-VA-99.M",7117,5894,6358,6108,5592,6501,6950,7733,5737,5416,4875,5823,6599,5828,5835,5595,5844,6550,7648,7847,6046,5376,5311,6527,7232,6193,5642,4903,5182,6129,7566,8034,5957,5475,5617,7381,7621,6555,6072,5843,6495,6743,7840,7502,6223,5660,5495,6853,7353,6346,6881,5695,4760,6642,8157,8345,6921,5160,5475,7209,6035,5782,6102,5196,5274,6672,8310,8369,5228,5101,5189,5811,6395,7006,6082,5311,6136,6943,7559,8646,6415,6128,5359,6381,6688,6101,5722,4944,4955,7197,7792,6875,5838,4717,5430,6421,7627,6058,5436,4950,4975,5970,6435,7221,5816,4613,4496,6485,6909,6413,5426,4353,5765,7315,8151,7418,5484,4215,4447,7071,7149,5348,5691,4536,4897,5873,7869,6521,4906,3962,4051,5867,6585,6217,5329,3648,5351,6550,8437,7010,5785,4843,5071,5912,6363,6354,6578,5170,5537,6646,8164,7544,5965,5469,6150,6958,8321,6988,6559,5109,5859,6840,7069,7043,5811,5170,6197,6355,7738,7893,6527,4887,6477,8138,8421,8547
"All fuels : West Virginia","thousand megawatthours","ELEC.GEN.ALL-WV-99.M",8653,7381,7041,6328,6730,7238,8001,8212,5847,5282,4799,6324,8301,7907,7828,6928,7501,7845,8831,8273,6923,7850,7927,8646,8732,8317,7592,7305,7785,8041,8036,8621,7348,7497,7322,8115,9011,7550,7683,5979,6546,7595,8493,8122,7142,6520,7136,7972,8087,7393,7742,6541,6927,7897,8571,9136,8129,7622,7588,7993,8177,8301,8440,6680,7775,7796,8937,9179,7175,7165,6864,7329,7350,8072,8147,6576,8006,7813,8472,8760,8049,7576,7106,8005,9272,8161,8162,6532,7269,8150,8796,8299,6441,6294,6402,7347,7674,6010,5931,5435,5589,5707,5606,6767,4311,5409,5007,7337,8278,7308,6606,6822,6851,6850,8255,7444,5179,4636,4892,7666,7362,6346,6605,6108,5842,7302,8283,7521,6898,4877,5348,6509,6112,5356,5302,4871,5785,5974,6986,7206,6146,5573,7208,6894,7823,6471,5912,4762,4904,6455,6621,6467,6726,6490,6533,6699,7951,7636,7702,5586,5729,6815,7294,6572,6609,5618,6667,6983,7899,7803,6166,4367,5333,6128,7024,6732
"All fuels : East South Central","thousand megawatthours","ELEC.GEN.ALL-ESC-99.M",32115,27307,29402,26478,29569,31980,35550,36559,31970,30491,27727,31285,30899,27575,28652,27790,29326,32285,35518,34983,30433,27369,28279,30924,32578,28041,27370,25535,28424,30296,34918,36190,30088,28400,27789,31947,32587,30235,27423,26463,31380,32806,35897,34202,31016,30062,27744,33327,32623,28090,29915,27431,29908,33770,36638,37239,32410,28472,27773,33688,30687,29302,28608,27072,30069,33785,37332,38402,31175,30412,30657,32326,33209,31558,28987,27399,31214,34364,36136,40357,33114,30364,27911,31595,35139,30942,30792,28420,29256,34686,36638,35352,31418,28989,28878,32093,33930,28464,28565,26370,28656,32353,31763,33826,30240,28356,27363,32419,35792,32779,29900,25686,29638,35538,37493,37592,32094,27477,27302,35913,36647,30267,30645,27699,29334,35331,39265,38440,30508,28672,28977,31581,31880,28632,27457,26249,31191,33916,39423,37050,30385,28028,29727,31198,32351,30316,32753,27730,29303,33034,34293,34914,30656,27786,27797,31843,37119,30022,29612,26081,30018,32719,34260,35605,31375,27989,29186,31835,34958,33264,30198,25345,30061,34282,37409,35156
"All fuels : Alabama","thousand megawatthours","ELEC.GEN.ALL-AL-99.M",11327,9576,9364,7714,10049,11170,12083,12521,11015,10322,9887,10317,11220,9698,9429,9162,10444,11882,13068,12926,11568,10344,11349,11830,11999,10347,10123,9287,11679,12250,13554,14084,11763,10497,10397,11508,11708,10680,9498,9053,11607,12318,13731,13007,11649,11093,10742,12267,12094,10185,11412,9583,10869,12178,13378,13646,11960,10597,9885,12161,10550,10254,10319,10310,11357,13106,14004,14477,11693,11342,11532,11950,11404,11040,10368,10358,11548,13389,14239,15300,12655,11330,10329,11867,12544,11679,12004,10591,11364,13554,14167,13754,12103,11161,10610,12337,13385,11068,11342,9977,11151,12020,12932,13386,12254,11616,11420,12705,13792,12692,11738,10266,13038,14300,14458,13795,12764,10992,10448,13867,14177,12009,12347,10975,10660,14525,15754,15716,12667,11730,12497,13283,13202,12050,11985,10220,12188,13751,15632,15012,13010,11455,11529,12845,12878,12284,12536,10616,12054,13093,13720,14092,12554,11849,11908,12989,14291,11279,11698,10825,12590,13180,13781,13877,12579,11018,12067,12777,13476,12223,11653,10307,12397,13898,15128,14292
"All fuels : Kentucky","thousand megawatthours","ELEC.GEN.ALL-KY-99.M",8118,7534,8202,7125,7483,8466,9154,9241,7876,7583,6654,7983,8152,7217,8190,7434,7743,8023,8812,8618,7438,6504,6236,7739,8780,7601,7104,7087,6990,7727,8511,8608,7122,6828,6958,8401,9096,8064,7709,6785,7878,8008,8541,8249,7563,7341,6791,8505,8323,7372,7935,7289,7801,8571,9058,8969,8570,7485,7430,9020,8763,8118,7842,6932,7895,8332,9282,9143,7852,7907,8167,8558,9203,8370,7883,6524,7144,8240,8642,9917,7980,7708,7410,8204,9372,8338,8178,7075,7020,7910,8916,8579,8200,7555,8159,8560,8533,7291,7680,6799,6996,8132,7602,8425,7241,6988,6637,8308,9214,8499,7825,6717,7037,8794,8980,9509,7881,7164,7253,9344,9495,8122,7924,7237,7663,8388,9941,9002,7406,7757,7221,8194,8181,7075,6782,6036,7399,8145,8973,8676,6511,6975,7380,7816,8257,7687,8553,6216,6655,7331,7862,8264,7286,6876,6534,8221,9285,8311,7620,6589,6387,7474,7962,8392,6956,6455,7304,8002,8175,8469,6851,5351,7150,6980,7848,7138
"All fuels : Mississippi","thousand megawatthours","ELEC.GEN.ALL-MS-99.M",3564,2743,3643,3559,3971,4529,5824,5654,4977,5440,4366,5177,3176,2942,3128,3453,3545,4163,4926,4527,3508,3114,3136,3273,3302,2586,2949,2975,3556,3469,3947,4336,3450,3321,3025,3232,3487,3465,2602,3270,4075,4133,4758,4331,3811,3529,2744,3458,3535,3005,3567,3201,3677,4616,5259,5837,3268,2582,2934,3585,2921,3117,2778,3092,3356,4711,5307,5725,4023,3949,3456,3794,3893,4241,3108,3448,4267,4681,4861,6219,4573,4198,2919,3636,4849,3638,3733,3493,3905,5142,5396,4805,3479,2782,3324,3661,4000,3393,3468,3629,3591,4999,4461,4979,4905,3711,3501,4065,4881,4136,3601,3157,3826,5358,6112,6353,4758,3764,3744,4797,4520,3598,3237,3352,4301,5225,5873,5947,3993,3760,3553,4214,4654,4124,3798,3841,4614,5108,6348,5672,4539,4002,3976,3908,4029,4203,4207,3795,3902,5433,5398,5428,4266,3760,3906,4482,5377,3797,3125,3140,5105,5273,5245,5678,4848,4603,3982,4691,5562,5730,5458,4230,4974,6045,6597,6182
"All fuels : Tennessee","thousand megawatthours","ELEC.GEN.ALL-TN-99.M",9106,7454,8193,8078,8067,7814,8490,9143,8103,7147,6819,7808,8351,7718,7904,7741,7594,8217,8712,8911,7920,7407,7558,8082,8496,7507,7194,6186,6199,6850,8906,9162,7753,7754,7408,8806,8296,8026,7614,7356,7820,8346,8866,8614,7992,8099,7466,9098,8672,7528,7000,7357,7560,8404,8943,8787,8612,7808,7524,8922,8453,7813,7669,6738,7461,7637,8739,9056,7607,7214,7501,8023,8709,7907,7628,7070,8255,8053,8394,8922,7906,7129,7254,7888,8373,7288,6878,7261,6967,8079,8158,8214,7635,7490,6785,7535,8013,6711,6074,5966,6917,7203,6768,7036,5840,6042,5805,7341,7904,7451,6736,5546,5737,7086,7943,7935,6691,5557,5857,7905,8455,6539,7138,6136,6710,7194,7696,7775,6442,5424,5705,5889,5843,5383,4891,6152,6990,6911,8469,7690,6325,5596,6843,6630,7188,6143,7457,7103,6692,7176,7312,7129,6551,5301,5449,6152,8166,6635,7169,5528,5935,6792,7273,7657,6992,5913,5833,6364,7744,6843,6237,5458,5540,7360,7836,7544
"All fuels : West South Central","thousand megawatthours","ELEC.GEN.ALL-WSC-99.M",46990,39136,40834,41375,47244,51577,59903,59358,48880,43196,40322,44100,47019,42110,44172,43967,48950,54380,60578,61506,53384,45025,41400,44903,48675,42516,42588,42648,50414,53402,59305,61750,49775,45625,42642,45772,47968,45341,44164,42753,51293,54052,60307,59137,54068,49051,43722,49273,49158,42688,44488,42313,50378,58763,62604,63397,54818,45892,43283,47905,44110,42239,44968,46692,53907,58686,64470,66808,52759,48554,43415,47682,53004,45400,45126,44640,50501,56226,60149,67651,56666,50764,45429,49930,53354,45336,47065,45790,53719,61382,65982,64127,49406,48839,44190,49430,50088,42712,45972,44558,51166,61084,65419,65156,52689,46623,43126,52093,53962,47775,45627,43925,54038,63376,65461,70311,57807,47670,45912,51967,55008,48356,47381,49879,55359,66121,72803,74563,58048,49683,47031,52650,53115,49144,50445,51357,59624,64925,70309,69026,58022,51074,46974,52107,53332,45776,49599,47482,54763,62823,66284,69327,60959,51409,50304,57327,58691,51362,51578,48810,53479,60649,65291,68867,59198,52292,50209,52683,58458,52780,51122,49142,54354,62445,71004,70067
"All fuels : Arkansas","thousand megawatthours","ELEC.GEN.ALL-AR-99.M",3903,3372,3125,3350,3691,4133,4564,4539,4220,4087,3627,4581,4225,3761,3131,3795,3499,4121,4755,4927,4528,3668,3549,3653,3934,3641,3576,3461,4017,4976,5308,5193,4325,3876,4030,4065,4518,3942,3848,3367,4021,4863,5324,4947,4334,3999,4092,4673,4577,4120,3230,3327,4113,4624,4919,4782,4168,3503,3160,3271,3702,3657,3752,3974,4528,5356,5633,5618,4535,3731,3398,4285,4597,4309,3916,3803,4260,4965,5282,6266,4963,3832,3764,4639,5096,3896,3743,3549,4397,5129,5966,5734,4267,4646,4231,4397,4681,4356,4191,4248,4189,5862,6158,6027,4427,4331,4246,4742,5492,4584,4053,3910,5138,6049,6220,6237,5525,4180,4212,5399,5728,4667,4117,3794,4847,6009,6680,6682,5056,4547,3976,5205,5896,5770,5010,5079,5845,6026,6453,6162,4752,4341,4629,5044,5650,5139,5148,3431,4328,5482,5616,6188,5455,4596,4191,5099,5639,5169,5432,4713,4548,5357,5586,5902,5110,4864,4683,4578,4552,4850,4832,4338,4752,5349,6170,5813
"All fuels : Louisiana","thousand megawatthours","ELEC.GEN.ALL-LA-99.M",7595,6105,6321,6927,7624,7787,9025,9254,7526,6572,6191,6968,7609,6867,7601,6709,8170,8457,9765,9092,8837,7677,6846,7340,8483,6891,7197,6895,8408,8415,9168,9500,7927,7490,6729,7781,8362,7824,7715,7353,8600,8431,9206,9289,8655,7649,6944,8143,8004,6847,7662,6755,7540,8655,9439,9244,7118,7030,6719,7603,7259,6347,6725,6683,7514,8221,9309,9549,7719,7814,6972,6810,7540,6741,6998,6699,7385,8281,8814,10059,8318,7507,6781,7456,7856,6353,7082,6842,7784,8704,9724,9253,6612,7544,6977,7722,7913,6561,6829,6385,7447,8492,9001,8964,8007,6749,6575,8071,8426,7067,7606,7121,8323,9532,10135,10845,9382,8002,7754,8693,8890,8098,7842,8306,8553,9444,10410,10674,8701,7831,8387,8356,8324,7588,7758,7489,9158,9652,10611,9973,9160,8298,7187,8211,8113,7127,7693,7610,8370,9331,9827,9901,9175,7846,7976,9043,9591,7940,7887,7204,8197,9280,9883,10429,9133,7932,8179,8338,9436,8423,7570,7765,8725,9454,10841,10370
"All fuels : Oklahoma","thousand megawatthours","ELEC.GEN.ALL-OK-99.M",4491,4033,3808,3612,4346,5038,6375,6188,4662,4454,4051,4195,4672,4145,4566,4523,4768,5534,6475,6747,5355,4282,3861,4256,4776,4255,4255,4493,4900,5477,7143,7231,4814,4609,3789,4885,4931,4800,4280,4240,5005,5369,6750,6266,5763,4621,4249,4456,5082,4488,5011,4427,5604,7038,7761,7790,6598,4957,4391,5462,4324,5108,5492,5397,6498,6922,7874,8004,5398,5441,4653,5504,6136,5582,5102,5384,5910,6416,7229,8566,6518,5675,4628,5674,6509,5566,5419,5371,5816,7406,8100,7843,6204,6130,5433,6533,6691,5662,5782,5542,6127,7450,7869,7719,6096,5043,4849,6237,6086,5533,5015,4707,5342,7566,8210,8507,6531,4735,4568,5451,6093,5327,5147,5172,5987,7861,9143,8879,5728,4839,4843,5587,6193,5832,5609,6277,7198,7848,9175,8199,6249,5280,4790,5248,5778,4911,5627,5481,6186,6899,7460,7765,6559,4964,5571,6471,6584,5789,5460,5402,5632,6392,6442,7327,5613,5027,5063,5566,6418,6142,5797,5342,5555,6931,8186,7514
"All fuels : Texas","thousand megawatthours","ELEC.GEN.ALL-TX-99.M",31001,25627,27580,27486,31583,34620,39940,39377,32472,28084,26453,28357,30514,27337,28875,28940,32513,36268,39583,40740,34664,29399,27143,29654,31481,27729,27561,27799,33089,34534,37687,39826,32710,29650,28094,29040,30157,28776,28321,27792,33666,35389,39028,38636,35315,32782,28436,32001,31494,27233,28586,27803,33122,38446,40486,41581,36935,30402,29014,31568,28825,27127,28999,30638,35367,38187,41654,43637,35107,31568,28391,31082,34731,28768,29110,28754,32946,36564,38824,42760,36866,33751,30256,32161,33893,29522,30821,30029,35722,40142,42192,41297,32324,30519,27549,30779,30804,26133,29170,28383,33404,39280,42391,42447,34159,30500,27455,33043,33957,30592,28954,28187,35235,40229,40896,44722,36369,30753,29376,32424,34297,30264,30276,32607,35972,42807,46569,48328,38563,32467,29825,33502,32702,29954,32068,32513,37424,41399,44071,44691,37862,33155,30369,33604,33792,28599,31132,30960,35878,41110,43382,45474,39770,34003,32566,36713,36876,32463,32798,31491,35102,39620,43380,45210,39343,34469,32284,34201,38052,33366,32923,31697,35322,40712,45807,46371
"All fuels : Mountain","thousand megawatthours","ELEC.GEN.ALL-MTN-99.M",27506,25227,25870,23518,27220,27275,29649,29175,25513,25468,25309,26755,26445,23893,25460,23987,26614,27017,29926,28901,27198,25611,25596,27488,27358,24198,25269,23094,25968,27628,32226,31914,28115,26457,25606,27452,28510,26002,26553,24437,28063,30021,33047,32914,30034,27588,27177,29368,29039,25227,26169,25310,28071,30329,34835,33585,30160,28139,27950,30128,28620,25526,27945,24663,27321,30809,34693,35063,30261,28593,28434,30582,32138,26649,27801,25929,29972,32135,35879,35835,32472,29422,28282,30810,31637,28876,29666,28295,29126,32702,37131,36957,32843,30983,28899,32573,32178,28081,29302,26018,29646,30009,36244,35460,31806,29269,28878,32410,30790,26872,28411,26927,28422,31286,36678,35738,32668,28903,28394,30963,30947,27859,28358,25882,27461,30495,35931,36788,32198,29292,27996,31639,30861,28359,27677,25632,28455,32255,35725,36874,32007,30137,28537,31047,32280,27984,29269,27560,30173,34088,37353,36302,31803,29132,28408,32099,31353,28312,28829,27057,29292,32295,37619,35863,32974,29910,28980,30679,30420,25987,28420,27315,29007,34073,36469,37064
"All fuels : Arizona","thousand megawatthours","ELEC.GEN.ALL-AZ-99.M",7574,6617,7326,7160,7966,8174,8444,8258,7457,6386,6814,7736,7639,6912,7347,6960,7871,8043,8907,8837,8185,7184,7797,8449,7713,6827,7203,6290,7364,7860,9948,9905,9160,7975,6917,7234,8747,7765,8337,7875,8951,9196,10723,10539,9405,7698,7087,8241,8200,6578,7067,7450,8128,8531,11084,10423,9582,8047,7991,8398,8068,7155,7413,6361,7775,9345,10762,11528,9913,8619,8490,8963,9120,7522,8014,7936,9622,10320,11711,12245,10551,8431,8524,9345,10069,9022,8975,8972,8844,10606,12276,12496,11150,9759,8252,9037,8988,8106,8201,7284,9044,9473,12237,12116,10727,8912,7760,9124,8643,7403,8188,7732,8210,9907,11878,11948,10866,9049,8728,9201,8947,7674,7590,7311,7975,9620,11282,11957,10328,8796,7907,8739,9125,8439,8215,8004,9076,10307,11122,11993,10189,8608,7568,8259,8810,7295,8102,7891,9077,10935,12350,12362,10918,8559,7552,9474,9047,7691,7889,7215,8886,10500,12298,11936,11161,9289,8075,8393,8254,6562,7912,7342,8771,11372,12495,12571
"All fuels : Colorado","thousand megawatthours","ELEC.GEN.ALL-CO-99.M",4163,3777,3842,3693,3975,3907,4255,4259,3665,3637,3689,4013,3999,3342,3471,3506,3864,3988,4314,4114,3609,3790,3646,3958,4021,3560,3650,3422,3704,3681,4563,4616,3723,3654,3840,4183,4157,3798,3712,3484,3806,3819,4560,4396,3894,3895,3947,4402,4362,3895,4183,3829,4144,4055,4720,4492,4003,3640,3874,4421,4303,3622,4169,3780,4098,4483,4825,4605,3987,4097,4136,4593,4766,4117,4044,3981,4237,4582,4982,4931,4512,4537,4444,4774,4824,4526,4418,3875,4120,4355,5060,4891,4219,4249,4100,4805,4636,3914,4265,3757,3802,3970,4650,4614,4193,4020,3936,4807,4551,4148,4045,3789,3522,4140,4934,4903,4307,3793,4079,4509,4743,4313,4179,3656,3878,4054,4912,5002,4018,4172,4043,4461,4419,4166,4140,3787,4067,4669,5270,5013,4218,4192,3977,4638,4749,4208,4343,3964,4209,4569,5014,4879,4144,3910,4093,4855,4903,4433,4347,4062,4346,4447,5185,4799,4353,4242,4317,4567,4624,4091,4262,3812,3896,4477,4831,4983
"All fuels : Idaho","thousand megawatthours","ELEC.GEN.ALL-ID-99.M",605,503,595,622,971,861,1124,1141,750,702,738,736,629,700,754,961,1068,1070,1225,1097,758,535,473,516,567,711,749,1078,1184,1071,1289,1124,808,585,630,628,850,761,753,743,1221,1206,1336,1226,894,634,589,651,787,670,681,872,1319,1136,1290,1144,808,694,683,741,925,1091,1087,1422,1514,1456,1443,1236,887,754,711,858,1002,697,824,971,1379,1161,1350,1173,875,690,616,746,834,710,954,1272,1096,1439,1423,1365,915,654,580,728,1031,794,744,1490,1356,1470,1620,1397,993,771,623,812,820,780,778,827,1053,1526,1497,1372,1027,795,681,870,1294,1421,1551,1509,1396,1698,1973,1589,1320,877,929,1011,1086,1022,1576,1578,1492,1553,1727,1539,1057,894,844,1131,1185,948,1037,1564,1439,1497,1733,1546,1195,914,1018,1109,1222,1160,1493,1485,1273,1325,1638,1348,1136,944,1049,1104,1310,1229,1205,1329,1280,1424,1462,1338
"All fuels : Montana","thousand megawatthours","ELEC.GEN.ALL-MT-99.M",2301,2105,1921,1546,1887,1756,2148,2180,2000,2177,2046,2165,1857,1955,2165,2122,2376,2060,2205,2635,2047,1943,1998,2111,2012,2031,2003,1637,2258,2626,2607,2450,2115,2055,2032,2443,2294,2063,2247,1750,2029,2311,2455,2404,2215,2201,2262,2560,2255,1969,1888,2154,2539,2813,2877,2432,2079,2077,2320,2536,2246,2279,2382,2413,2422,2372,2690,2545,1979,2015,2341,2560,2552,2202,2311,2440,2498,2540,2746,2338,2341,2172,2211,2581,2322,2314,2405,2287,2461,2685,2898,2563,2191,2327,2413,2771,2547,2279,2376,1786,2312,2259,2222,1976,1848,1860,2485,2764,2463,2161,2327,2169,2664,2549,2847,2553,2558,2415,2455,2630,2406,2497,2569,2115,2237,2102,2833,2820,2451,2576,2676,2848,2514,2275,1999,2017,1833,2116,2432,2496,2203,2364,2752,2805,2817,2372,2420,2591,2534,2464,2399,1997,1767,1917,2154,2255,2340,2265,2376,2692,2383,2382,2847,2599,2442,2486,2644,2786,2814,2172,2514,2365,2433,2616,2468,2315
"All fuels : Nevada","thousand megawatthours","ELEC.GEN.ALL-NV-99.M",2966,2969,3040,2041,2806,2888,2924,3235,2896,2997,2653,2463,2760,2493,2605,1932,2591,2855,3110,2958,2789,2581,2634,2779,2791,2380,2633,1984,2029,2933,3175,3318,3081,2956,2906,3007,2574,2818,2713,2056,2828,3474,3717,3979,3542,3282,3395,3290,3367,2987,3047,2539,2914,3342,3984,4110,3637,3427,3222,3637,2319,2158,2406,2080,2321,2985,3427,3502,3024,2608,2384,2646,2861,2564,2673,2225,2576,2988,3462,3394,3003,2457,2100,2365,2563,2401,2603,2454,2556,2899,3602,3856,3308,2843,2755,3250,3141,2870,3049,2586,3260,3065,3872,3752,3262,2723,2950,3175,3061,2750,2894,2783,2725,2980,3958,3477,3034,2532,2423,2530,2369,2124,2263,2133,2399,2741,3595,3597,3060,2644,2292,2720,2506,2211,2232,2158,2831,3061,3834,4053,3434,3119,2708,3026,3093,2733,2749,2379,2819,3512,4045,3740,2982,2781,2557,3053,2757,2646,2454,2623,2870,3171,3968,3697,3437,3127,2723,2720,2715,2641,2730,3088,2901,3726,3868,4199
"All fuels : New Mexico","thousand megawatthours","ELEC.GEN.ALL-NM-99.M",2919,2713,2617,2320,3129,3053,3320,2922,2601,2725,2475,2818,2359,2167,2548,2531,2643,2940,2962,2207,2754,2653,2482,2416,2801,2403,2592,2629,2910,2859,3109,3214,2460,2473,2414,2873,2685,2356,2354,2271,2906,3013,3032,3089,2819,2736,2807,2871,2837,2820,2722,2542,2769,3140,3137,3280,3120,3130,2758,2880,3109,2476,2929,2838,3153,3096,3610,3605,3046,3136,2985,3282,3274,2651,2808,2612,2748,2904,3485,3526,3205,3134,2807,2830,2809,2411,2371,2735,2985,3440,3554,3443,3038,3416,3225,3584,3416,2798,3125,3211,3261,3352,3586,3810,3212,3139,3307,3458,3033,2338,2542,2416,2975,3237,3312,3338,3501,3241,3082,3235,3321,2853,3239,2892,2847,3355,3602,3546,3388,2798,2809,3529,3277,2929,2686,2226,2929,3345,3584,3381,3345,3028,2759,3146,3234,2818,3011,2635,2923,3217,3314,3280,2935,2838,3005,2661,2398,2552,2710,2686,2703,2751,3184,2851,2673,2319,2314,2984,2526,2277,2379,2630,2619,2772,3128,3154
"All fuels : Utah","thousand megawatthours","ELEC.GEN.ALL-UT-99.M",2957,2796,2435,2678,3050,2950,3306,3279,3160,3187,3047,3009,3354,2824,2636,2891,2928,2925,3310,3212,3270,3181,2891,3184,3373,2709,2635,2963,3338,3148,3584,3527,3228,3201,3110,3209,3238,2737,2658,2883,3406,3361,3458,3263,3263,3378,3169,3400,3384,2798,2746,2761,3206,3352,3618,3407,3134,3090,3167,3502,3513,3106,3481,2575,3130,3642,3853,3835,3509,3480,3374,3765,4587,3397,3579,2737,3479,3694,4057,4013,4066,4091,3635,4037,4063,3586,3968,3403,3767,3665,4148,4199,4037,3958,3801,3985,4042,3444,3576,3099,3681,3254,3903,3860,3748,3498,3494,3945,3847,3303,3669,3622,3689,3575,3931,3999,3527,3029,2625,3432,3579,3184,2905,2727,3386,3290,3853,4076,3625,3605,3119,3487,3056,3016,2919,2876,2868,3392,3749,3825,3493,3523,3260,3426,3566,3147,3411,2799,3411,3507,3886,3862,3732,3779,3509,3909,3892,3282,3273,2619,3287,4025,4232,4209,3777,3480,3700,3811,3774,3218,3237,2917,3483,3716,3815,3960
"All fuels : Wyoming","thousand megawatthours","ELEC.GEN.ALL-WY-99.M",4021,3747,4093,3459,3437,3686,4128,3901,2985,3657,3847,3816,3847,3501,3934,3082,3273,3135,3893,3841,3786,3744,3673,4074,4081,3577,3805,3090,3181,3451,3952,3761,3539,3557,3757,3876,3966,3703,3780,3375,2917,3641,3765,4018,4001,3765,3923,3954,3847,3511,3835,3163,3052,3959,4125,4298,3796,4034,3934,4013,4136,3638,4077,3193,2907,3430,4083,4207,3915,3884,4013,3915,3976,3499,3547,3028,3433,3946,4086,4215,3918,3909,3946,4131,4152,3906,3972,3297,3298,3612,4171,4144,3984,3777,3773,4413,4377,3876,3965,2807,2930,3168,4154,3934,3822,4347,4323,4326,4371,3990,3968,3589,3585,3372,4322,4149,3848,4049,4321,4556,4287,3793,4061,3540,3343,3634,3880,4201,4008,3824,4221,4843,4878,4303,3909,2987,3360,3811,4006,4575,4068,4409,4668,4616,4825,4463,4196,3738,3761,4387,4611,4636,4129,4433,4520,4784,4793,4284,4286,3676,3544,3694,4268,4424,3995,4023,4159,4312,4404,3798,4182,3832,3625,3970,4403,4544
"All fuels : Pacific Contiguous","thousand megawatthours","ELEC.GEN.ALL-PCC-99.M",29087,25186,27833,26042,27090,28141,29097,30865,26453,25748,23970,27185,28677,24573,27820,26647,27266,31349,33181,30717,27348,25353,24345,26799,26727,24630,27684,26803,28228,29538,33600,31759,28600,28665,26684,28930,29223,27178,28251,27180,28443,29766,32844,31812,29590,27547,26796,29696,29139,25978,28244,27250,29367,30160,35434,33997,27639,27202,26868,30306,30919,28371,30284,29494,33163,35629,38803,33718,30002,29315,27620,31024,32124,26801,30230,29713,30571,31368,36518,35814,30000,29077,28965,31735,33154,28432,29397,30810,32204,34642,36092,35179,30465,28962,27070,31123,30750,26536,29205,29157,30318,31078,36195,33338,32144,28603,27217,31396,28621,26433,29387,28030,29017,32073,34788,34053,30328,29835,29185,30975,31819,29330,31457,30499,30245,31714,35183,34610,30676,28425,29235,32570,30577,27801,30969,30100,32454,32292,35019,37021,31772,29709,28039,31531,32064,27008,28356,29858,30943,32175,36385,34619,31381,29473,28994,32890,30650,26702,30036,29768,32351,33098,36521,33607,31326,29906,28316,30504,30260,27042,29577,27612,27974,31517,34381,35000
"All fuels : California","thousand megawatthours","ELEC.GEN.ALL-CA-99.M",16619,14380,15849,15841,16875,18072,19795,20307,16853,15929,13419,14658,14591,12655,15789,13996,13934,16344,19633,18766,16987,14337,12643,14535,14215,13116,14465,13674,15700,16355,21007,19728,18013,16925,14342,15250,15285,14469,15867,15348,15719,16367,20383,19763,17635,15236,13775,14934,14708,13294,15261,15412,17042,17707,21940,21249,16956,15451,14454,16818,16364,14844,17102,15032,18167,20495,24664,21373,18971,17339,15719,16728,16424,14730,15312,15310,16149,18121,22219,22755,19003,17136,16580,17107,17534,14908,15010,17536,16445,17108,20665,22111,18514,16872,14857,16424,15066,14114,15518,15588,16833,16347,22092,21207,20480,16073,14812,16648,15804,14834,16223,15749,16012,16350,19938,20680,18493,17380,15757,16906,15483,14640,15765,15765,15249,16162,19471,20259,18730,16050,15526,17705,15905,14595,14993,14506,15954,16376,18443,21409,19230,17603,15153,15351,15458,13761,14470,14730,15987,17518,20221,19948,18906,16374,15510,17193,15663,13997,14155,15231,16447,16979,19895,19360,18984,17542,14483,14969,14034,12215,14064,14534,15506,18654,20396,20840
"All fuels : Oregon","thousand megawatthours","ELEC.GEN.ALL-OR-99.M",4150,3718,4209,3784,3928,3634,3244,3511,3328,3470,3655,4420,4768,4253,4198,3895,4003,4237,3457,3437,3502,3654,3807,3887,4455,4020,4509,4069,3667,4178,3991,3840,3812,3912,4085,4429,4925,4491,4662,4042,3946,3832,3727,3790,4152,4244,4491,5080,4899,4410,4587,4167,3805,3720,3768,3620,3762,4104,4021,4462,4882,4683,4791,4449,4551,4332,4466,3849,3976,4212,3945,5204,5613,4555,5071,4416,4253,4421,4245,4089,4122,4257,4580,5456,5845,5222,5603,4791,4920,4929,4514,4200,4226,4499,4618,5350,5815,4713,5319,4597,4246,4625,4149,4199,4467,4535,4778,5249,4959,4483,4931,4354,3851,4889,4459,4246,4341,4539,4863,5213,5724,5083,5486,4922,4892,5168,4943,4244,4511,4391,4935,5396,5728,5456,5832,4983,5140,4663,5180,4537,4771,4529,4599,5514,6168,5169,5304,5144,4725,4576,4712,4536,4499,4496,4881,5686,5459,4880,5651,4600,4942,4944,5086,4623,4607,4420,5060,5447,5499,4982,5294,4555,4367,4517,4712,4652
"All fuels : Washington","thousand megawatthours","ELEC.GEN.ALL-WA-99.M",8318,7088,7776,6417,6288,6434,6058,7046,6272,6348,6896,8108,9318,7664,7833,8755,9330,10768,10090,8514,6859,7362,7895,8376,8057,7493,8711,9061,8862,9006,8602,8191,6776,7829,8256,9251,9012,8218,7722,7791,8778,9567,8734,8259,7803,8067,8530,9683,9531,8274,8396,7670,8520,8733,9726,9129,6920,7647,8392,9027,9673,8843,8391,10013,10444,10802,9673,8497,7056,7764,7956,9092,10087,7516,9847,9987,10169,8826,10054,8970,6874,7684,7804,9172,9776,8302,8784,8482,10839,12605,10912,8868,7725,7591,7595,9349,9870,7709,8368,8972,9239,10106,9954,7932,7198,7995,7628,9499,7858,7116,8234,7927,9154,10834,10391,9127,7494,7916,8565,8856,10612,9606,10206,9813,10104,10384,10768,10108,7435,7984,8774,9469,8945,7750,10143,10611,11360,11253,11396,11075,7770,7577,8287,10667,10438,8077,8582,9983,10231,10081,11453,10134,7976,8602,8603,10011,9529,7824,10229,9937,10962,11175,11540,9624,7736,7945,8772,10088,10728,9846,10219,8523,8102,8346,9273,9507
"All fuels : Pacific Noncontiguous","thousand megawatthours","ELEC.GEN.ALL-PCN-99.M",1515,1347,1460,1325,1371,1362,1490,1545,1539,1494,1428,1503,1587,1392,1528,1490,1517,1511,1565,1569,1548,1591,1529,1602,1462,1324,1454,1354,1401,1378,1467,1458,1461,1533,1474,1550,1539,1437,1454,1392,1433,1452,1563,1582,1525,1517,1483,1561,1587,1328,1424,1379,1458,1448,1618,1665,1550,1528,1480,1635,1566,1358,1494,1424,1476,1517,1595,1677,1461,1548,1560,1558,1571,1390,1590,1460,1511,1481,1567,1584,1509,1584,1482,1625,1597,1507,1556,1458,1486,1439,1517,1484,1467,1556,1500,1582,1543,1356,1466,1400,1408,1420,1484,1479,1443,1565,1553,1597,1577,1343,1472,1418,1449,1419,1450,1496,1435,1508,1455,1573,1552,1435,1546,1416,1426,1371,1426,1440,1410,1482,1526,1563,1573,1404,1483,1351,1395,1326,1360,1437,1374,1514,1465,1735,1471,1285,1360,1338,1371,1303,1408,1424,1383,1486,1417,1517,1537,1309,1359,1245,1313,1276,1355,1369,1346,1389,1316,1333,1378,1343,1304,1310,1219,1231,1341,1391
"All fuels : Alaska","thousand megawatthours","ELEC.GEN.ALL-AK-99.M",590,546,587,489,485,488,554,587,640,580,564,634,647,550,586,539,531,524,531,507,540,579,585,649,609,540,558,490,480,458,492,472,502,540,566,632,630,567,549,485,494,500,557,549,524,521,543,607,627,525,536,492,497,497,562,568,499,559,576,637,630,539,571,529,523,517,563,559,469,556,610,609,618,552,640,539,532,511,549,543,515,579,583,660,672,627,592,538,507,484,502,504,513,583,579,675,657,560,579,542,487,485,505,491,487,571,637,703,677,558,602,561,529,508,514,518,495,555,574,669,679,611,639,531,521,495,512,494,510,560,643,675,725,603,638,533,529,498,488,534,531,628,627,612,640,541,551,511,507,463,497,499,504,569,565,650,590,523,529,484,504,476,495,494,476,511,517,551,591,519,528,530,438,443,459,454
"All fuels : Hawaii","thousand megawatthours","ELEC.GEN.ALL-HI-99.M",925,801,873,836,886,874,936,958,899,914,863,869,940,842,943,950,987,987,1034,1062,1008,1013,944,953,853,784,896,864,921,921,975,986,959,992,907,918,909,870,905,907,939,952,1006,1032,1001,995,940,953,959,802,888,887,961,951,1056,1097,1051,969,904,997,936,819,922,895,952,1000,1032,1118,992,992,950,950,954,838,950,921,979,970,1018,1042,994,1005,899,965,925,881,963,920,978,955,1015,981,954,973,922,908,886,796,887,858,921,935,979,988,956,994,916,894,900,785,871,857,920,911,936,979,940,953,880,904,873,824,907,885,905,876,914,946,900,922,883,888,849,801,845,818,865,828,872,903,843,886,838,1123,831,744,809,828,865,839,910,924,879,918,853,868,947,786,830,760,809,801,860,875,871,878,799,782,787,824,776,781,781,788,882,937
"Coal","thousand megawatthours","ELEC.GEN.COW-US-99.M","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""
"Coal : United States","thousand megawatthours","ELEC.GEN.COW-US-99.M",177287,149735,155269,140671,151593,162616,179060,183116,154158,148931,144117,157402,164358,143049,151486,142305,151406,164668,183195,179955,165366,159099,156054,172190,181313,156982,155002,141960,150263,162285,181852,185332,164910,159323,158223,176291,180657,161503,154288,141471,157016,167642,181492,178181,164253,157605,157436,176755,177014,155818,163613,143083,153958,174867,186091,187574,171656,162437,158798,177965,169236,158616,161325,141426,157010,169693,187821,189455,161590,161390,159440,173509,175739,163603,159811,146250,157513,173513,185054,190135,169391,162234,159382,173830,182876,166666,160743,146983,154916,171043,186733,180576,161356,151841,154281,167786,171925,140916,135530,125935,131673,148087,158234,163260,137145,139956,136810,166434,173320,153044,144406,126952,143272,165491,179600,177745,148746,132270,135185,167258,170803,138311,134845,124488,137102,158055,176586,171281,140941,126627,121463,132929,129091,113872,105526,96285,115983,131261,160450,152181,125589,120999,128727,134079,138105,123547,130634,111835,119513,138283,152867,149426,133110,120996,120940,141860,157316,143638,136781,109591,119033,138060,150007,148882,126484,111838,119351,124715,132742,127087,108642,88835,104857,126276,139413,135430
"Coal : New England","thousand megawatthours","ELEC.GEN.COW-NEW-99.M",1890,1688,1809,1548,1124,1547,1682,1745,1228,1566,1583,1611,1742,1549,1540,1466,1153,1571,1793,1619,1312,1532,1833,1948,1866,1752,1627,1459,1459,1357,1660,1870,1570,1732,1532,1513,1725,1702,1724,1451,1242,1510,1826,1794,1479,1380,1567,1816,1839,1659,1742,1671,1364,1792,1880,1776,1656,1518,1600,1925,1890,1657,1642,1200,1294,1696,1862,1882,1501,1424,1725,1854,1736,1725,1853,1548,1615,1817,1877,1901,1534,1514,1337,1609,1695,1578,1556,1331,1212,1553,1603,1653,1542,1659,1753,1683,1844,1436,1349,1163,1041,1119,1209,1111,768,938,932,1529,1649,1415,1182,1077,983,1180,1627,1363,944,784,574,1301,1385,1071,679,628,341,469,942,502,112,179,202,339,819,291,180,112,71,187,635,539,79,88,396,705,1064,968,787,262,61,277,848,187,119,10,409,1172,1079,1183,1265,363,25,47,237,37,61,7,545,279,1121,1126,713,40,10,10,173,44
"Coal : Connecticut","thousand megawatthours","ELEC.GEN.COW-CT-99.M",328,355,381,302,309,331,346,353,295,157,276,304,330,307,271,278,230,300,351,217,132,136,298,376,389,380,330,357,352,380,339,381,350,388,193,361,401,371,384,319,364,357,378,386,295,246,367,388,403,360,326,312,391,332,375,390,251,157,293,405,374,350,392,274,385,387,368,403,370,231,344,404,393,364,340,295,346,370,380,371,331,121,134,294,382,370,363,277,331,378,392,396,398,390,349,360,333,308,170,124,135,127,154,214,130,247,152,361,358,224,105,144,159,268,329,326,179,135,100,277,191,60,-2,-1,-1,57,161,63,-1,-1,0,0,75,46,43,37,48,58,70,63,47,42,47,76,118,185,2,-2,-1,24,96,-2,7,-1,46,209,172,221,232,34,-1,2,51,-2,-2,-2,110,11,205,224,157,2,-2,0,13,-3
"Coal : Maine","thousand megawatthours","ELEC.GEN.COW-ME-99.M",54,45,51,39,49,41,50,50,45,29,39,37,57,56,52,45,48,55,53,54,44,50,43,48,27,26,32,29,28,33,35,36,38,27,27,38,35,31,37,33,31,28,29,28,25,29,26,27,24,26,26,26,28,30,34,28,29,19,24,27,25,27,31,27,30,29,25,27,27,18,25,30,31,32,41,29,29,34,32,31,28,20,29,38,24,25,53,43,44,50,32,25,21,10,9,15,19,14,4,2,1,4,3,2,7,2,6,8,13,18,9,5,5,4,6,5,5,4,8,6,7,7,7,3,5,3,3,4,4,4,6,3,4,4,3,2,3,3,3,4,4,6,5,6,10,10,6,4,3,4,2,3,3,3,5,9,16,9,14,8,6,2,4,2,1,3,4,9,14,20,15,5,4,3,3,4
"Coal : Massachusetts","thousand megawatthours","ELEC.GEN.COW-MA-99.M",1126,966,1063,943,639,897,979,1007,539,1019,916,957,975,904,858,903,670,882,1044,976,881,1079,1165,1166,1087,980,946,944,888,579,989,1069,839,912,953,710,903,949,985,925,615,731,1044,976,777,805,774,1042,1064,990,996,977,771,1073,1075,1006,1001,1074,905,1100,1096,963,802,632,708,938,1098,1095,862,831,1017,1097,934,1013,1132,977,1073,1079,1088,1123,875,1029,806,896,930,854,805,904,639,857,908,860,869,974,1083,946,1127,838,790,743,627,711,770,788,546,589,671,829,946,865,725,705,598,626,963,722,525,598,378,656,847,682,398,442,257,199,516,280,75,132,44,188,450,69,45,65,19,99,356,369,28,39,234,364,630,459,528,250,45,185,578,156,96,8,327,697,574,662,692,274,"NM",43,119,35,50,"NM",278,167,579,547,365,31,6,"NM",138,32
"Coal : New Hampshire","thousand megawatthours","ELEC.GEN.COW-NH-99.M",383,323,315,264,127,278,308,335,349,361,352,312,380,282,359,239,206,333,344,372,256,266,327,358,363,367,319,129,191,364,296,383,344,405,358,404,386,351,319,174,232,395,374,404,381,301,400,359,347,283,394,356,174,357,397,351,375,267,379,393,395,317,418,266,170,343,371,357,242,344,339,323,378,316,341,246,167,334,377,377,300,344,368,380,359,328,335,107,198,268,270,372,254,286,312,362,366,276,386,294,278,276,283,108,85,100,104,331,333,309,344,224,221,282,329,310,234,46,89,363,340,323,276,185,80,209,262,155,34,44,152,148,290,172,89,8,1,26,205,104,0,2,110,260,306,313,251,10,15,66,171,31,14,0,31,257,317,291,327,48,2,0,64,2,11,3,153,92,322,334,177,3,1,4,19,10
"Coal : Rhode Island","thousand megawatthours","ELEC.GEN.COW-RI-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
"Coal : Vermont","thousand megawatthours","ELEC.GEN.COW-VT-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Coal : Middle Atlantic","thousand megawatthours","ELEC.GEN.COW-MAT-99.M",14533,11572,12626,10760,10942,11751,13327,14054,11295,11334,10548,11910,12799,10876,11129,10451,10262,11920,13832,14072,12440,12522,12368,14079,14219,12204,12198,11173,10427,11654,13748,13930,12438,11994,11923,13473,13414,13056,12815,11504,10985,12051,13821,13610,12151,10963,12293,13688,13124,12356,13917,11006,10729,13085,14665,14769,12733,11499,11775,13499,13366,12332,13532,11286,11786,13261,14913,14571,11459,12039,12352,13491,12981,12908,13204,12439,11248,13254,14204,14601,12138,11949,12197,13187,13956,13047,12578,10594,10059,12823,13965,12647,11485,11323,11079,12210,13058,10535,10039,8838,8996,9906,11056,11887,8498,9038,9338,12145,12906,11839,10121,8363,9065,12021,12606,12438,10334,9023,9474,12181,12807,9933,7392,7893,9211,11171,12246,11151,8924,7884,7951,7621,9082,6514,6642,5129,7301,7923,11133,9525,7167,7443,7535,8204,8950,8563,8944,7326,8295,8484,9861,7732,7224,5386,5906,8490,9709,9362,9146,7537,6538,7737,7194,6418,5393,5055,6305,6823,8284,8357,6792,4552,5812,5653,6024,6629
"Coal : New Jersey","thousand megawatthours","ELEC.GEN.COW-NJ-99.M",1190,972,457,557,820,736,821,989,767,808,630,572,725,605,806,573,421,870,933,998,919,923,871,963,1046,882,962,568,348,658,1018,1011,872,852,803,769,803,863,869,733,543,895,1140,911,974,868,790,932,1130,861,898,630,579,1036,1125,1196,1017,952,988,1212,1065,930,908,780,596,992,1131,1044,749,757,950,960,762,902,756,502,585,978,1037,1100,863,941,791,993,932,827,834,465,454,846,989,1038,892,560,478,713,818,342,513,89,107,348,409,742,256,418,266,792,850,700,306,421,378,856,919,680,263,158,264,622,664,325,227,276,457,512,701,530,177,100,98,88,137,87,93,80,94,153,527,274,112,95,142,103,200,204,222,97,147,175,263,164,133,122,126,168,399,497,277,104,129,219,263,185,121,99,137,121,303,446,115,61,107,104,120,104
"Coal : New York","thousand megawatthours","ELEC.GEN.COW-NY-99.M",2453,2158,2272,1809,1690,2001,2235,2361,1531,1708,1410,1804,1912,1556,1724,1612,1591,1901,2000,2264,2179,2181,2101,2218,2251,2114,2012,1747,1539,1835,2212,2072,1930,1893,1889,2086,2076,2156,2001,1762,1747,1994,2136,2039,1924,1698,1569,1750,1689,1625,1793,1533,1110,1704,2046,1987,1843,1664,1702,1902,1855,1795,1883,1567,1602,1783,2151,2030,1621,1477,1513,1692,1943,1935,1873,1694,1606,1740,1873,1952,1690,1574,1686,1840,1885,1751,1790,1359,1370,1649,1780,1716,1594,1459,1442,1358,1547,1473,1257,822,845,1019,961,1213,964,779,675,1203,1491,1382,992,599,841,1215,1461,1487,1239,785,687,1403,1335,1145,714,648,676,978,1222,990,739,482,231,265,586,363,92,52,149,257,824,694,299,364,454,417,585,658,608,243,374,289,577,261,177,193,165,567,835,759,789,405,167,381,350,208,195,153,168,187,319,562,252,66,122,274,214,182
"Coal : Pennsylvania","thousand megawatthours","ELEC.GEN.COW-PA-99.M",10889,8442,9896,8394,8432,9014,10270,10704,8998,8819,8508,9535,10162,8715,8600,8266,8250,9148,10899,10811,9342,9419,9397,10899,10922,9207,9224,8858,8539,9161,10519,10847,9636,9248,9230,10618,10535,10036,9945,9009,8694,9162,10546,10660,9253,8397,9934,11006,10305,9869,11226,8842,9041,10344,11494,11587,9873,8883,9085,10385,10446,9607,10740,8939,9589,10486,11632,11498,9089,9805,9889,10839,10275,10071,10575,10243,9057,10535,11295,11549,9585,9434,9719,10354,11139,10468,9955,8770,8235,10327,11195,9894,8999,9304,9158,10138,10693,8720,8269,7927,8044,8539,9685,9932,7278,7841,8397,10149,10565,9757,8823,7342,7846,9949,10226,10271,8832,8079,8523,10156,10808,8463,6451,6970,8078,9681,10322,9631,8007,7302,7622,7267,8359,6065,6458,4996,7058,7513,9782,8557,6755,6983,6940,7683,8165,7701,8114,6985,7773,8021,9021,7308,6915,5071,5615,7754,8475,8106,8080,7029,6242,7136,6581,6025,5076,4803,6000,6514,7663,7348,6424,4425,5583,5275,5690,6343
"Coal : East North Central","thousand megawatthours","ELEC.GEN.COW-ENC-99.M",39625,33972,35648,31700,33579,36212,40094,41492,34612,33653,33271,35490,37114,32228,35165,32468,34773,38501,42913,42016,38232,36306,35923,38166,41111,36043,35636,33613,34091,35779,41318,41945,37176,36317,37143,39829,41439,36560,35976,32692,35440,37917,40273,39292,37679,37572,37442,41702,41238,35969,38200,32948,33751,40655,42784,42807,39122,37492,37059,41952,38679,37194,37591,33421,35620,38141,42928,43343,35683,37624,37009,39359,41772,38219,36054,33757,34336,39074,41649,43306,39155,38660,36836,39219,42606,38845,37248,35489,34604,38546,42464,41515,36286,35986,37000,40348,40412,33769,32386,31798,29854,34396,36623,37497,32491,34132,33284,39476,40336,35651,34494,29139,32378,38044,41342,41659,33284,32447,33152,37615,37922,32689,32520,28009,29310,35639,41183,39289,31752,30914,28076,31085,30171,27206,24054,24108,26083,29878,36403,34817,26473,25553,28839,31186,32572,30160,30072,27446,27818,30868,35170,34243,30778,28961,28692,35321,37377,32817,33220,25736,25666,31363,33164,34532,27957,26426,28690,28999,31331,30438,27151,21983,22638,27293,31038,30605
"Coal : Illinois","thousand megawatthours","ELEC.GEN.COW-IL-99.M",7540,6268,6274,5644,6189,6796,7760,7983,6573,5857,5992,6677,6888,6350,6840,6232,6562,7547,8550,8544,7862,7292,6753,7266,8426,7296,6596,5977,5915,7037,8463,8722,7398,6725,7353,8073,8732,8088,7258,6179,7398,7708,8593,8191,7964,7434,7927,8929,8476,7099,7379,6303,6437,8098,8526,8562,8072,7235,7167,8912,8029,7556,7515,5732,6622,7388,8671,8821,7516,7986,7779,8035,9112,8062,8113,6488,6481,7950,8570,8874,8012,8040,7278,8285,8765,8339,8134,6993,6436,8183,8895,9025,7719,7887,7920,8348,8356,7006,6523,6917,6643,7254,8067,8036,7290,7563,7457,8855,8935,8190,7899,6085,6216,7672,8734,8812,7212,7562,7746,8547,8261,7584,7508,6249,6305,8044,8792,8496,6948,7075,7042,7710,7481,6738,5414,5219,6218,6859,8099,7653,6205,6295,7079,7566,7813,7593,7272,6215,5893,7092,7818,7976,7708,7369,6747,8432,8268,7720,7921,6478,5562,6986,7687,8189,6552,6605,7706,7697,7377,7268,6550,4767,5319,6683,7484,7235
"Coal : Indiana","thousand megawatthours","ELEC.GEN.COW-IN-99.M",10475,9146,9496,8131,9043,9999,10879,11048,9545,9597,9117,9590,10308,8516,9397,8465,8892,9752,11069,11216,10463,9715,9856,10010,11056,9836,9633,9297,9238,9410,10656,11055,9506,8574,9214,10283,11076,9500,9440,9108,9193,10407,10539,10326,10213,10062,9873,10933,10809,9469,10437,8800,9269,10743,11157,11293,10595,9679,9443,11138,10370,9787,10378,9526,9955,10439,11223,11799,9440,10057,9902,10768,11486,10637,10204,9329,9278,10316,10979,11091,10143,9547,9341,10453,11107,10257,9355,9364,9510,10079,11512,11242,9625,9345,9444,11198,10427,9107,9144,8539,8477,9180,8876,9952,8194,8060,7760,10596,11096,9461,8401,7241,8426,9874,10669,10980,8784,8439,8633,10326,10418,8331,7739,6606,7925,9272,10629,10516,8069,8359,7871,8417,8216,7264,6512,6543,6908,8123,9385,8754,7330,6930,8082,8414,8631,6983,7081,7024,7051,7647,9112,8184,7576,7363,7356,8663,9904,9054,8655,6838,7593,8848,8545,9166,7513,7170,6924,7518,7901,7356,6323,5494,6008,6931,7879,7695
"Coal : Michigan","thousand megawatthours","ELEC.GEN.COW-MI-99.M",6259,5351,5613,5076,5475,5836,6399,6670,5569,5144,5429,5442,5625,4824,4933,4723,5067,5940,6582,6514,5686,5353,5632,5820,5997,4809,5526,5577,5212,5562,6501,5727,5741,5593,5649,5883,5759,5246,5802,5030,5014,5372,5956,6037,5919,5936,6230,6305,5730,5649,5411,5349,5101,6390,6660,6702,5762,5762,5577,6229,5440,5649,5578,5048,5952,5530,6469,6432,5421,5342,5251,5669,6087,5685,5133,5417,5512,5781,6428,6526,6140,6320,5944,5837,6543,5442,5728,5652,5525,6107,6344,6001,5460,5271,5745,6037,6258,5108,5165,5448,4581,5943,6424,5979,5315,5315,5242,6070,5895,5292,5303,4890,4873,5775,6359,6476,5480,5369,4992,4900,5160,4363,4592,4536,4724,5491,5896,5659,5123,4682,4282,4439,4244,3863,3840,3681,4288,4483,5532,5459,4370,4143,4523,4710,4885,4748,4336,3698,4204,4866,5312,5323,4726,4541,4636,5018,5056,4515,4839,3197,3824,4605,5263,5442,4263,4078,4043,3962,4301,4394,4280,4209,4281,4565,5164,5046
"Coal : Ohio","thousand megawatthours","ELEC.GEN.COW-OH-99.M",11493,10019,11134,9553,9658,10249,11086,11796,9740,9498,9411,10577,11094,9727,11113,10193,11059,11827,12577,11937,10686,10549,10503,11687,12272,10811,10740,9622,10672,10604,11744,12447,10972,11733,11301,11851,12181,10199,10187,9240,10669,11197,11419,10849,10275,10542,9727,11672,12539,10620,11819,9274,9529,11712,12684,12479,11279,11351,11524,12014,11426,11115,10770,10151,9518,11225,12540,12528,10344,11224,11089,11470,11508,10937,9853,9331,9960,11466,12025,13012,11439,11333,11150,11115,12529,11583,10884,10115,10124,10876,11601,11095,10149,10267,10557,10913,11599,9693,8873,8691,7543,9199,9857,10312,8673,9746,9502,10025,10893,9646,9870,7891,9368,11081,11512,11566,8875,8266,8829,10031,10245,9393,9086,7701,7685,9440,11608,10642,8467,7696,6232,7141,7464,7134,6254,6616,6734,7555,9670,9265,5671,5391,6122,7713,8044,7748,8133,7491,7697,7711,8635,8987,7451,6731,6879,9057,9753,8386,8782,6757,6051,7399,8359,7862,6643,6157,7361,6654,8048,8329,7053,5010,4487,5836,6697,6859
"Coal : Wisconsin","thousand megawatthours","ELEC.GEN.COW-WI-99.M",3859,3189,3130,3297,3213,3333,3970,3995,3185,3557,3322,3204,3199,2811,2883,2854,3193,3434,4135,3805,3535,3396,3180,3383,3360,3290,3142,3140,3054,3165,3954,3995,3559,3692,3626,3740,3691,3527,3289,3135,3166,3233,3765,3888,3308,3597,3684,3863,3684,3132,3153,3221,3416,3711,3757,3771,3413,3465,3348,3658,3414,3087,3350,2963,3573,3559,4024,3764,2962,3015,2988,3418,3578,2898,2752,3192,3106,3561,3647,3802,3421,3419,3123,3528,3662,3224,3147,3364,3009,3301,4113,4153,3332,3216,3334,3851,3773,2856,2682,2203,2610,2821,3399,3219,3019,3448,3322,3929,3517,3063,3021,3033,3495,3642,4067,3824,2933,2811,2952,3811,3839,3018,3595,2917,2672,3391,4257,3975,3145,3102,2649,3378,2766,2207,2034,2049,1935,2859,3716,3685,2898,2794,3033,2783,3199,3089,3251,3018,2973,3551,4292,3772,3316,2958,3074,4151,4395,3142,3023,2465,2637,3526,3310,3873,2986,2416,2657,3168,3704,3091,2946,2503,2545,3278,3815,3768
"Coal : West North Central","thousand megawatthours","ELEC.GEN.COW-WNC-99.M",20101,17267,17390,15549,16345,17703,19972,20649,17578,17362,17431,19383,19573,17010,17614,16090,16527,19001,21149,20628,18446,18574,19306,21007,21305,18912,19386,16409,17195,19263,21854,21932,18729,19354,19262,21009,21267,18963,18051,17057,17352,18853,21013,20692,19429,18786,19079,20488,21541,18322,18874,17073,18173,19923,21394,21460,18852,18661,18415,20504,19972,18915,17807,16241,17733,19545,21585,21473,18776,19299,18753,20986,20694,18655,18466,17413,16953,19768,22029,22401,19069,18010,18616,20885,21135,20651,18907,17721,18050,19312,21835,21565,18960,18093,17926,20360,20977,17997,18524,15976,16637,19146,20230,20142,18021,18515,18729,21813,21686,19171,19011,16708,18465,20437,21869,21873,17478,16242,17437,21663,21990,18492,19015,17252,17894,20061,22688,21843,17989,17827,17508,19562,18662,17592,15958,13524,15181,18245,22083,20866,18117,16893,17546,20298,19724,17845,18320,15694,16043,18161,21568,21485,17450,16824,16793,19878,20861,19322,18535,13913,15523,18740,20950,21749,16354,16420,17265,19448,19240,18100,16067,14054,14876,17937,20386,19142
"Coal : Iowa","thousand megawatthours","ELEC.GEN.COW-IA-99.M",3230,2742,3005,2609,2691,2789,3342,3314,2658,2798,2634,2854,3012,2734,3047,2344,2831,2988,3371,3254,2914,2926,2787,3164,3244,2868,3083,2832,2523,2932,3221,3388,2919,3078,2843,2890,3197,3184,2818,2570,2348,2922,3194,3185,3074,3009,2803,2969,3168,2690,2230,2345,2685,3303,3427,3343,2664,2884,2596,2917,2768,2881,2787,2529,2823,2901,3105,3247,2442,2766,3039,3116,3024,3054,2994,2945,2462,2977,3734,3762,3438,3081,3154,3358,3643,3355,3299,3203,3137,3018,3679,3622,3115,3461,3315,3563,3655,3174,2913,2407,2447,3197,3307,3325,3197,3099,2928,3703,3846,3298,3488,2945,3188,3453,4009,3935,3072,3236,3308,3505,3449,2780,3062,3081,2720,3250,3987,3971,3229,2885,2761,3055,3069,2954,2601,2082,2488,2963,3803,3580,2841,2622,3110,3221,3098,2611,2644,2328,2489,2991,3468,3589,2660,2177,2128,3120,3130,3203,2800,1849,2045,2884,3338,3658,2582,2674,2495,3551,2915,3101,2823,2168,2281,2850,3305,3144
"Coal : Kansas","thousand megawatthours","ELEC.GEN.COW-KS-99.M",3055,2338,2343,2237,2721,2824,2920,3027,2670,2518,2282,2835,3090,2738,2502,2868,2620,2994,3294,3240,2989,3036,2972,3026,3270,2601,2727,2596,2694,2872,3334,3220,2718,2964,2820,3293,3207,2747,2528,2508,2998,2925,3188,3035,2835,2632,2764,3225,3381,2443,2577,2556,2682,3098,3346,3279,2893,2655,2600,2970,2691,2385,1877,1878,2207,3089,3431,3433,2807,3021,3221,3243,3378,3058,2636,2566,2834,3015,3362,3283,3042,2715,3110,3251,3107,3021,2796,2439,2321,2879,3183,3162,2894,2553,2673,2974,3117,2520,2468,2123,2389,2977,2879,2714,2581,2576,2835,3064,2965,2771,2606,2295,2687,2874,3033,3186,2767,2515,2191,2616,2570,2199,2439,2500,2879,3004,3137,2946,2201,2343,2622,2817,2351,2075,1817,1577,2070,2578,3001,2862,2625,2182,2273,2571,2586,2664,2255,2147,2216,2400,3038,2979,2653,2146,2121,2562,2607,2466,2356,2123,2158,2573,3073,2922,2167,2060,2122,2124,2125,1932,2094,2160,1972,2411,2775,2488
"Coal : Minnesota","thousand megawatthours","ELEC.GEN.COW-MN-99.M",2895,2751,2481,2104,2042,2581,2875,3044,2606,2650,2829,2961,3007,2858,2689,2426,2276,2751,3155,2981,2728,2868,2961,3220,3104,2927,2658,2668,2941,2860,3216,3182,2986,2979,2966,3167,3312,2772,2523,2324,2452,2758,2987,2986,2976,3079,2798,3032,3236,2696,3216,2613,2815,2956,2904,2882,2357,2090,2368,2816,2877,2909,2857,2584,2620,2715,3129,2756,2403,2519,2830,2869,3065,2685,2812,2319,2491,2708,3000,3010,2546,2240,2341,2974,3166,3180,2600,2304,2358,2599,2922,2809,2498,2208,2334,2777,2923,2655,2606,2243,2078,2167,2542,2438,2317,2283,2278,2798,2753,2534,2211,2134,2518,2582,2789,2649,1773,1368,1931,2841,2922,2290,2746,1932,2408,2340,2797,2766,2010,1948,1997,2104,2136,1943,1521,1405,1214,1629,2262,2222,1913,1953,1990,2534,2321,1956,1914,1530,1501,1678,2187,2244,1754,2006,1922,2503,2720,2595,2291,1597,2180,2287,2445,2780,2093,2185,2481,2888,2627,2416,1978,1509,2178,2332,2641,2023
"Coal : Missouri","thousand megawatthours","ELEC.GEN.COW-MO-99.M",6139,5232,4830,4631,4959,5398,6111,6387,5424,5349,5401,5887,5694,4426,4946,4555,4712,5981,6421,6569,5772,5631,5980,6746,6719,6174,6060,4578,5498,6389,7133,7201,5774,5832,6008,6846,6789,5883,5942,5840,5864,6236,7025,6817,6320,5794,6102,6412,6902,6306,6149,5877,6209,6547,6742,7045,6353,6289,6179,6839,6908,6423,6073,5653,6217,6496,6908,7106,6517,6423,5806,6918,6809,5800,6031,5861,5498,6763,6983,7391,5767,5668,5961,6551,6245,6507,5772,5619,5958,6464,7087,7059,5994,5594,5147,6085,6391,5364,5874,5189,5367,6365,6532,6641,5820,5710,5549,6809,6683,5755,5767,5489,6208,6888,6858,6933,5813,5299,5844,7508,7596,6578,6077,5368,5961,7346,7496,7060,6234,6280,5864,6457,5992,5936,5518,4620,5483,6629,7604,6932,6233,5458,5506,6863,6704,5835,6323,5882,5956,6499,7434,7174,5948,5851,5993,6507,7227,6273,6247,4643,5622,6586,7080,7297,5179,4847,5429,6315,6754,6212,5025,4244,4382,5966,6549,6409
"Coal : Nebraska","thousand megawatthours","ELEC.GEN.COW-NE-99.M",1872,1519,1830,1437,1468,1688,1864,1890,1701,1576,1624,1769,1747,1661,1442,1444,1632,1696,1997,1775,1536,1454,1705,1855,1898,1715,1857,1381,1189,1767,1966,1884,1808,1812,1756,1922,1864,1685,1558,1534,1208,1399,1811,1925,1814,1863,1849,1947,1870,1395,1918,1506,1336,1587,1958,1906,1791,1802,1816,1933,1798,1544,1502,1253,1566,1810,1955,1854,1862,1816,1879,1843,1477,1369,1410,1331,1147,1714,1934,1944,1805,1746,1761,1991,1930,1804,1735,1773,1951,1784,1946,2018,1706,1469,1472,1893,1842,1520,1794,1433,1815,1797,2193,2204,1798,2302,2259,2392,2335,2001,2073,1546,1593,1968,2310,2315,1721,1563,1683,2254,2343,1940,1868,2201,1891,1952,2575,2560,2179,2092,2015,2349,2262,2064,1913,1639,1615,1980,2408,2401,2094,2181,2096,2366,2432,2160,2248,1635,1752,2196,2575,2562,2270,2268,2204,2465,2326,2161,2151,1504,1713,2204,2333,2459,2053,2128,2031,1974,1951,1779,1878,1839,1922,2159,2555,2384
"Coal : North Dakota","thousand megawatthours","ELEC.GEN.COW-ND-99.M",2585,2374,2569,2203,2213,2115,2556,2688,2211,2241,2385,2736,2689,2310,2650,2156,2207,2292,2597,2516,2347,2594,2588,2665,2745,2358,2705,2081,2045,2223,2665,2728,2220,2372,2554,2732,2560,2377,2336,1974,2146,2391,2532,2453,2119,2171,2439,2565,2652,2501,2466,2045,2425,2175,2728,2731,2546,2638,2609,2743,2619,2484,2444,2172,2010,2343,2743,2764,2468,2436,1708,2689,2674,2424,2365,2167,2294,2328,2719,2715,2179,2320,2277,2702,2714,2468,2365,2090,2104,2268,2698,2590,2471,2497,2683,2723,2710,2471,2598,2322,2309,2434,2501,2543,2118,2257,2631,2714,2754,2493,2545,2038,2112,2398,2552,2569,2103,2026,2228,2644,2784,2454,2528,1932,1796,1926,2389,2293,2034,2268,2181,2523,2606,2428,2395,2013,2078,2304,2715,2580,2131,2203,2321,2442,2282,2374,2656,1963,2002,2163,2623,2654,1927,2189,2173,2472,2626,2385,2406,1957,1624,1955,2455,2423,2084,2322,2508,2359,2606,2399,2269,2135,2142,2220,2561,2486
"Coal : South Dakota","thousand megawatthours","ELEC.GEN.COW-SD-99.M",326,311,331,326,250,308,303,299,308,230,277,342,334,282,337,297,249,300,314,292,158,65,312,331,326,269,296,272,304,220,320,329,304,317,314,160,337,316,346,307,337,221,275,291,291,238,324,337,332,291,318,131,20,257,290,274,249,301,248,285,310,288,267,173,289,190,313,314,275,318,270,308,268,265,217,223,227,263,296,294,292,240,12,58,330,315,341,293,221,299,319,305,281,311,302,344,339,294,271,259,233,209,276,277,189,289,249,333,351,319,321,261,159,273,318,286,228,234,252,296,326,251,294,238,240,243,309,248,102,11,67,257,246,192,194,189,233,162,289,289,278,294,251,301,302,244,279,210,127,235,243,283,236,188,253,249,226,238,284,240,180,251,224,209,197,204,199,238,262,261,0,0,0,0,0,207
"Coal : South Atlantic","thousand megawatthours","ELEC.GEN.COW-SAT-99.M",39523,31981,33142,30503,32600,35842,38781,40462,31787,29550,27213,30793,34550,30729,33695,31169,32872,36415,41075,39906,35894,34756,32062,36975,39905,34896,33434,29484,32541,35273,38646,40720,35734,31756,31723,37937,39568,35183,33037,29098,34473,36785,39977,38040,32565,30751,31112,35864,35856,32483,34319,29579,32768,37402,40748,41914,38335,35182,33261,36956,35546,35221,35876,30794,35108,37431,40996,42301,34139,32583,31763,35267,35803,36172,35778,31117,36866,38603,40414,42217,37750,35771,34489,37401,40375,36533,34984,30005,34787,39141,41117,38618,33727,28588,30227,32941,35686,27698,25628,23875,26164,31048,31854,33658,24697,25298,23784,34341,37007,32027,27839,25709,30119,35675,38547,36492,28765,22818,22759,34904,34358,25159,24460,24434,28874,32833,35574,33186,26296,18511,19460,21291,20905,18529,18850,17970,22671,23689,31139,27581,21707,19736,22916,20693,22902,19723,22061,16417,18979,25714,27115,25746,23309,21401,22320,22896,30802,28244,25541,18877,23042,27398,28361,25812,22986,18395,22137,21368,23695,26096,19114,14456,19815,24647,26819,24944
"Coal : Delaware","thousand megawatthours","ELEC.GEN.COW-DE-99.M",474,427,468,349,278,255,325,363,116,116,96,101,143,116,274,296,267,281,396,409,305,354,256,365,405,418,478,339,193,227,441,484,391,170,227,254,501,427,437,448,341,377,493,368,415,162,251,526,427,366,467,237,170,418,453,607,484,391,331,483,395,470,456,361,342,403,520,553,180,423,428,437,381,521,403,309,294,527,577,601,441,489,543,536,594,529,500,327,313,472,522,358,352,296,505,500,520,273,208,191,32,159,210,301,125,276,167,387,462,321,93,68,140,356,338,243,164,126,92,167,246,89,78,127,155,190,230,167,53,42,39,40,46,53,30,61,156,152,218,153,147,137,175,95,93,57,99,108,113,170,213,157,126,147,142,120,167,210,131,91,92,53,55,0,60,-2,-1,9,118,192,48,0,37,35,48,67
"Coal : District Of Columbia","thousand megawatthours","ELEC.GEN.COW-DC-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Coal : Florida","thousand megawatthours","ELEC.GEN.COW-FL-99.M",6722,5359,5174,5112,5829,6199,6341,6333,5595,5607,4706,5250,5757,4889,4424,4344,5490,5623,6457,6530,5798,5687,4946,5981,6484,5332,4889,4942,6213,6019,6469,6373,5842,4690,4811,5610,5934,4849,4694,4355,5626,6075,5988,6017,5018,5073,5195,6037,5641,4465,4111,3969,5381,5546,5769,5779,5664,5206,5235,5749,5821,5069,4614,4655,5517,5820,6056,6303,5804,4953,4706,6107,6217,5065,5224,4287,5538,6066,6183,6463,6088,5594,5208,5975,6025,5371,4970,4226,5755,5813,6486,6041,5729,5028,4596,4784,4946,3815,3484,3605,4505,5066,5170,5057,4357,4576,4024,5398,5730,4870,3572,3572,5018,5822,6070,5961,5107,4217,4353,5605,4828,3964,3341,4401,4759,5288,5412,5399,4416,3488,3362,3332,3043,3031,3492,3160,3783,4079,4697,4783,4073,3822,3044,3279,3255,2701,3442,3583,4123,4429,4685,4704,4203,3981,3468,3766,4692,4435,3639,3601,4197,4727,5094,5027,4309,3871,4192,4262,3070,3161,3145,3293,3960,4307,4330,4170
"Coal : Georgia","thousand megawatthours","ELEC.GEN.COW-GA-99.M",7259,4993,6111,6117,6296,6728,7783,7794,5842,5094,4689,5856,6198,5236,6890,6418,6522,7123,7687,7573,6922,6841,5167,6253,6668,5645,6279,5710,6363,6803,7436,8059,7064,6178,5336,7098,7180,6691,5639,5707,7581,7574,8075,7466,6319,5999,5587,6125,6138,6131,6884,6372,7644,8063,8436,8612,8005,7572,6419,6906,6580,6693,7245,6480,7318,7919,8459,8528,7590,6576,6163,6953,7558,6803,7420,6643,7990,7907,8226,8485,7740,7258,6939,7329,7628,7121,6767,6685,7801,7979,7978,7874,7483,5795,5858,6524,6282,5040,4551,4570,5413,7041,7302,7250,6053,5509,4365,6104,6582,5322,5663,5550,6427,6994,7429,7309,6407,4916,4296,6403,6170,4489,4382,4419,6389,6413,6584,6560,4827,3063,3017,3847,3128,2575,2952,3188,4132,3830,5090,4319,3747,3066,2498,2189,3252,2196,2921,2186,2964,4428,4476,4398,3968,2768,2882,3793,4996,4573,3336,3005,3922,5035,5305,4401,3604,1888,2634,2577,3006,3678,2631,2896,3798,4119,4479,4393
"Coal : Maryland","thousand megawatthours","ELEC.GEN.COW-MD-99.M",2744,2479,1781,1935,2179,2574,2684,2841,2500,2484,2266,1912,2135,1813,2339,2460,2118,2584,2871,2836,2619,1891,2341,2706,3123,2692,2400,2307,1544,2109,2881,2864,2527,2155,2439,2898,2940,2738,2546,2039,2041,2488,2707,2613,2544,2070,1953,2519,2656,2376,2423,1824,1701,2650,2971,2987,2619,2414,2214,2469,2652,2631,2660,1984,1819,2454,2953,2947,2309,2482,2093,2424,2766,2728,2440,1877,2182,2602,2804,2826,2315,2190,2333,2638,2742,2597,2453,1643,1454,2584,2883,2507,2233,1655,1899,2569,2861,2206,2060,1973,1888,2068,2250,2345,1330,1335,1213,2634,2463,2221,1841,1195,1712,2269,2596,2396,1858,1314,1332,2471,2592,1680,1881,1316,1771,1985,2436,2007,1382,1374,1385,1252,1078,872,740,840,1253,1248,2323,1790,1382,1503,1898,1258,1435,1156,1391,661,854,1596,1865,1386,1174,1289,1348,1383,2328,2054,2164,1253,1488,1429,1464,1048,1277,995,1050,1055,1539,2035,1117,737,1307,1548,1599,1094
"Coal : North Carolina","thousand megawatthours","ELEC.GEN.COW-NC-99.M",6623,5342,6387,5543,5540,6444,6902,7707,5914,5630,5161,5765,6005,5225,6293,5346,5191,6635,7672,7167,6864,6431,5962,6397,7256,6480,6343,4748,5328,6089,6649,7429,6414,5209,5690,7142,7240,6971,6767,5612,6577,6274,7246,6684,5141,5590,5311,6134,6470,6057,6575,5596,5580,6728,7592,8008,7131,6165,5822,6711,5864,6197,6158,5338,6566,6867,7241,7782,5822,5579,5756,6317,6074,7018,6470,5955,6775,6846,7009,7809,6663,6727,6262,6375,7025,6374,6455,5811,6345,7223,7189,6978,5984,4996,5800,5636,6866,5079,5162,4374,4697,5836,6057,6490,4714,4480,4768,6559,7115,6404,5304,4599,5392,7039,7118,7026,5731,4655,4509,7058,7069,4604,4562,4361,5100,6173,6581,6153,4660,3266,3707,3522,4190,3693,3585,3334,4383,4651,6354,5082,3610,3341,4850,3860,3897,3876,4237,2817,3163,4627,4974,4673,3736,3478,4213,3383,5686,4971,5061,2609,3891,4925,4583,4360,3590,3287,3981,2949,4032,4901,3383,1769,2854,4933,5409,4706
"Coal : South Carolina","thousand megawatthours","ELEC.GEN.COW-SC-99.M",3620,3038,3086,2469,3080,3519,3597,3716,3081,2453,2419,2620,2886,2720,2972,2891,3200,3334,3702,3476,3225,2786,2625,3132,3501,2963,2840,2322,2757,3186,3507,3533,3255,2963,3100,3504,3733,3239,2824,2789,3237,3562,3707,3643,3032,2755,2902,3499,3382,2917,3078,2660,3362,3460,3702,3558,3583,3223,3117,3649,3234,3199,3144,2813,3298,3460,3764,3770,3135,3171,3287,3197,2884,3068,3192,3254,3342,3801,3938,4002,3521,3242,3540,3799,4038,3545,3219,2910,3650,4099,4246,4035,3202,2570,2999,3026,3528,2963,2460,2236,2498,3220,3200,3225,2342,2545,2734,3528,3914,3379,2802,2435,2739,3703,4001,3860,2939,2045,2345,3510,3617,2574,2311,2488,3396,3750,3898,3686,2643,1788,1857,2161,2298,2052,2291,2307,2440,2480,3333,2829,2073,1863,2200,2231,2083,1893,2136,1609,1839,2193,2177,2213,2038,1931,2226,2068,2820,2426,2121,2085,2722,2760,2950,2653,2323,1754,2183,2127,2411,2568,1644,1209,1887,2372,2562,2262
"Coal : Virginia","thousand megawatthours","ELEC.GEN.COW-VA-99.M",3547,3130,3284,2793,2805,3035,3310,3702,2973,2959,3159,3073,3261,2951,2874,2693,2768,3111,3595,3747,3328,3035,3018,3702,3918,3228,2803,2008,2553,2983,3419,3572,3071,3045,2972,3522,3237,2914,2648,2386,2720,3030,3400,3242,3094,2758,2969,3258,3282,2984,3273,2604,2203,2813,3435,3400,2824,2708,2688,3211,3059,2862,3328,2681,2658,2884,3328,3429,2269,2424,2688,2678,2824,3090,2721,2439,2903,3171,3327,3423,3050,2799,2717,2957,3252,3016,2690,2067,2439,2959,3135,2632,2401,2068,2325,2792,3274,2554,2035,1750,1791,2174,2217,2385,1592,1417,1718,2692,2741,2463,2256,1708,2101,2854,2893,2392,1522,1091,1147,2291,2732,1720,1612,1488,1758,1951,2333,1853,1624,860,998,950,1419,1246,818,505,1020,1475,2356,1563,693,632,1285,1169,1432,1706,2314,1016,1376,2088,2409,1986,1541,1482,1782,2030,2606,2298,1761,934,1262,1853,1824,1977,1447,1384,1764,1731,1946,2063,1369,560,948,1577,1809,1845
"Coal : West Virginia","thousand megawatthours","ELEC.GEN.COW-WV-99.M",8534,7215,6851,6185,6592,7089,7838,8006,5764,5208,4716,6218,8164,7779,7630,6722,7317,7724,8695,8167,6835,7732,7746,8440,8550,8137,7401,7109,7589,7858,7844,8406,7169,7347,7149,7909,8804,7353,7483,5763,6352,7406,8360,8007,7001,6345,6944,7766,7859,7187,7508,6318,6727,7724,8391,8963,8025,7502,7435,7779,7940,8100,8271,6481,7590,7624,8675,8990,7030,6976,6642,7154,7099,7879,7908,6352,7842,7683,8349,8609,7932,7473,6947,7792,9071,7981,7929,6337,7031,8013,8678,8193,6344,6180,6246,7112,7410,5768,5669,5176,5340,5486,5449,6603,4184,5160,4796,7039,8000,7048,6308,6583,6590,6639,8102,7304,5037,4453,4685,7399,7104,6039,6294,5833,5547,7083,8101,7361,6689,4631,5094,6188,5702,5008,4943,4575,5505,5774,6767,7062,5982,5372,6968,6611,7454,6136,5522,4438,4547,6183,6316,6229,6524,6324,6258,6353,7506,7276,7328,5300,5467,6616,7087,6346,6376,5216,6335,6656,7573,7500,5776,3991,5023,5756,6583,6405
"Coal : East South Central","thousand megawatthours","ELEC.GEN.COW-ESC-99.M",21934,18247,20067,18361,19633,20922,22761,22964,20433,19267,18113,19221,18855,16383,17668,17443,18768,20926,22438,22144,19898,18179,17731,19443,21021,18282,17982,16446,17456,19386,21973,22585,19928,19006,18095,20602,21230,18612,17889,16406,20159,20939,22526,21646,19271,19101,17829,20881,20867,18409,19161,17878,19555,21273,22376,22368,21101,19183,18685,22043,20783,19547,19009,17391,20290,21672,22684,23143,20576,20063,20613,22140,21346,20270,19699,17692,20628,21612,22610,23129,20735,19564,18615,20221,21705,19496,19700,18335,19912,21092,22347,21333,20128,18174,18665,19078,18963,16173,14994,14412,15367,17463,17037,18321,15902,15151,14017,16436,19652,17890,16679,14345,16153,19824,20671,20202,17398,14947,15097,18546,20106,16269,15894,14233,16879,19177,20987,19839,14869,14150,12953,13607,12856,11102,11141,11565,14069,15707,19193,17616,13767,13522,15300,15161,14490,13041,15313,13805,13110,15379,15412,16537,14827,13023,12575,14030,17318,15909,14777,12727,13955,16221,17202,17465,14659,11772,11892,13540,14610,14572,11664,9708,12787,14778,16357,15370
"Coal : Alabama","thousand megawatthours","ELEC.GEN.COW-AL-99.M",6558,5479,5393,4620,5986,6438,7191,7316,6301,6028,5522,5366,5561,4697,4547,4875,5472,6658,7388,7080,6729,6578,6222,6235,6493,5851,5583,5066,6196,6975,7368,7526,6959,6381,6089,6208,6064,5157,5402,4761,6631,6986,7491,7196,6115,6633,6002,6393,6851,5708,6371,5362,6042,6741,6967,7367,7088,6538,6256,6837,5977,5766,5917,5742,6685,6961,7058,7363,6605,6467,6508,7058,6096,6006,6409,6167,7108,7191,7402,7175,6611,6039,5546,6244,6304,5667,6265,6122,6669,6776,7108,6522,6229,5515,5630,5798,5771,4905,4294,3550,4485,4630,4982,5345,4827,4397,4031,4391,5634,5059,5133,4676,5838,6238,6262,5647,5129,4128,4272,5034,5618,4501,4684,3664,5006,5930,6375,5863,4005,4100,3622,3438,3106,2361,2677,2952,3417,4467,5547,5126,4182,3818,4102,3852,3558,3182,3609,3697,3956,4312,4260,4691,4418,4032,3616,3720,4490,4259,3506,3236,4192,4495,4931,4867,3901,3143,2971,3315,3063,3239,2752,2685,3736,4428,4886,4464
"Coal : Kentucky","thousand megawatthours","ELEC.GEN.COW-KY-99.M",7894,7340,7916,6875,7291,7857,8418,8402,7563,7125,6423,7694,7602,6362,7255,6405,6774,7468,7894,7868,6796,5989,5730,7132,8329,7231,6719,6289,6366,7001,7744,7775,6469,6247,6267,7624,8274,7307,6950,5960,7201,7390,7881,7577,7012,6598,6209,7760,7530,6672,7172,6665,7048,7708,8213,8097,7823,6857,6906,8393,8180,7524,7323,6348,7312,7699,8446,8303,7325,7326,7495,7917,8544,7802,7368,6029,6640,7711,8149,8926,7477,7210,6978,7648,8679,7735,7641,6539,6549,7299,8338,8052,7776,7169,7839,8005,7843,6727,6979,6182,6398,7573,7189,7880,6806,6548,6227,7684,8527,7954,7276,6254,6349,8115,8254,8729,7399,6824,6867,8507,8929,7662,7371,6646,6965,7671,9190,8438,6967,7366,6764,7688,7611,6623,6120,5149,6580,7558,8180,8086,6060,6542,6933,7320,7663,7153,7941,5637,6033,6852,7113,7713,6899,6491,6174,7634,8195,7609,6874,5934,5886,7025,7488,7855,6530,6020,6691,7390,7443,7516,6040,4544,6483,6394,7053,6508
"Coal : Mississippi","thousand megawatthours","ELEC.GEN.COW-MS-99.M",1582,985,1794,1668,1208,1714,1505,1672,1611,2056,1776,1627,710,585,676,1069,1289,1460,1461,1487,1530,1431,1611,1543,1235,1034,1172,1317,1544,1579,1654,1748,1465,1642,1265,1428,1651,1468,1146,1199,1487,1462,1706,1687,1549,1239,1225,1659,1669,1481,1258,1432,1357,1662,1704,1644,865,1255,1062,1247,1600,1492,1044,995,1435,1671,1672,1692,1591,1544,1702,1666,1645,1440,1281,1342,1590,1645,1677,1576,1438,1323,1081,1370,1468,1398,1463,1360,1602,1712,1783,1552,1214,961,880,1291,1080,813,668,941,920,1370,1197,1403,1398,1197,992,978,1396,972,774,687,1201,1373,1497,1456,1290,949,882,1151,852,631,614,756,888,1172,1240,1131,673,514,465,787,579,336,547,621,642,589,1069,805,638,257,580,549,463,587,664,816,411,1056,1058,990,751,572,591,742,1109,1049,586,608,1096,1274,1270,1176,931,627,485,519,663,786,426,486,537,632,843,813
"Coal : Tennessee","thousand megawatthours","ELEC.GEN.COW-TN-99.M",5900,4443,4965,5199,5148,4913,5647,5573,4957,4059,4393,4533,4982,4739,5190,5095,5234,5339,5694,5708,4843,4181,4169,4532,4964,4167,4507,3774,3350,3831,5206,5535,5034,4736,4475,5342,5240,4680,4391,4487,4840,5101,5448,5186,4595,4631,4393,5068,4817,4548,4359,4420,5108,5162,5492,5260,5326,4533,4461,5566,5026,4765,4724,4307,4859,5340,5507,5784,5055,4725,4908,5498,5062,5022,4641,4153,5290,5065,5382,5452,5210,4992,5010,4959,5253,4696,4332,4314,5094,5305,5119,5207,4909,4529,4317,3984,4268,3728,3053,3740,3564,3890,3669,3693,2871,3009,2767,3382,4094,3905,3497,2729,2764,4099,4659,4370,3579,3047,3075,3854,4707,3475,3225,3168,4019,4403,4182,4406,3225,2171,2102,1694,1560,1782,1796,2843,3429,3093,4397,3600,2887,2905,3686,3440,2806,2120,3100,3655,2710,3158,2980,3143,2759,1929,2194,1933,3524,2992,3811,2949,2782,3426,3512,3568,3296,1982,1745,2316,3441,3032,2447,1993,2031,3324,3575,3584
"Coal : West South Central","thousand megawatthours","ELEC.GEN.COW-WSC-99.M",19123,16267,16123,15123,18245,19558,21181,20692,18615,16272,16314,18936,19747,16826,15915,16132,18679,19240,20727,20165,19637,17938,17643,20312,20809,16878,16248,16384,19052,20000,21136,21189,19791,19241,18727,20604,21019,18644,15357,15652,19463,20069,21728,21588,20860,18427,17954,20937,21494,18456,17954,15089,19333,20300,20842,20888,19672,18302,18420,20041,19420,16827,16702,15573,18724,20749,22398,21879,20181,19258,17848,20443,21171,17913,16087,16101,18739,20402,21598,21671,19715,17675,18280,21160,21342,18272,16841,16822,19253,20632,22278,22050,19398,18281,18220,20272,20489,16045,14846,15659,18146,19674,21273,21018,18640,17827,17726,19965,19837,17768,17194,15104,18891,21832,22393,23019,20869,17479,18424,20914,22567,18414,18413,18312,20285,23005,24480,24558,21284,18473,17230,19399,18127,16199,14475,11806,17469,20265,22230,21921,19695,18466,17805,18787,18880,16419,17134,15514,18791,21664,23586,23593,21597,17146,16459,21355,20911,19306,18168,16306,19480,20260,22884,22979,20850,16790,16072,16490,17329,14824,12311,10741,14087,18989,19978,19989
"Coal : Arkansas","thousand megawatthours","ELEC.GEN.COW-AR-99.M",2150,1625,1451,1598,1926,2331,2545,2340,2330,2153,1889,2427,2275,1802,1071,2102,1611,1810,1941,2310,2228,2105,2026,1816,1739,1561,1437,1299,1566,2201,2365,2315,2354,2030,2287,2350,2400,1948,1595,1437,1820,2387,2510,2439,2429,1814,2105,2468,2395,2120,1614,1459,1872,2069,1967,1952,1937,2018,1809,1823,1886,1866,1760,1682,1714,2372,2556,2482,2196,1977,1508,2184,2561,2156,1884,1699,2101,2022,2346,2646,2322,1677,1752,2578,2577,1935,1885,1614,1873,2082,2626,2591,2009,1993,2453,2477,2247,1757,1536,1616,1807,2318,2561,2504,2433,1917,2183,2196,2327,2107,1891,2195,2473,2530,2466,2578,2753,1697,2272,2863,2999,2484,2283,1547,2283,2581,2846,2980,2470,2383,2056,2505,2750,2585,2268,1563,2597,2646,2461,2611,2474,1765,2052,2659,2718,2425,2467,2331,2412,2865,3207,3262,2911,2240,2015,3036,3073,3020,2875,2369,2915,2879,2922,3156,2762,2556,2520,2174,1627,2132,1586,1283,1967,2326,2643,2258
"Coal : Louisiana","thousand megawatthours","ELEC.GEN.COW-LA-99.M",2128,1492,1255,1459,1906,1903,2306,2209,1915,1618,1652,2125,2041,1873,1719,1295,1897,1582,2132,1283,2245,1945,1728,2311,2173,1761,1731,1098,2074,1860,2021,2229,1898,1908,1904,2231,2180,1853,1217,1568,2255,2042,2227,2267,2196,1955,1847,2051,2235,1958,2023,1129,1661,2012,2148,2084,1910,1909,1943,2076,2173,1797,1453,1511,1983,2176,2392,2325,2079,2180,2083,2245,2098,1736,1444,1326,1669,2204,2314,2295,2095,1781,1867,2224,2359,1896,1834,1683,2245,2147,2293,2279,1658,1682,1804,2219,2318,1707,1552,1206,1770,2109,2151,2181,2043,1694,2048,2288,2107,1983,2040,1259,1651,2160,2149,2255,2075,1770,2247,2229,2327,2049,1528,1858,1774,2166,2418,2454,2173,1647,2131,2102,2053,1518,1168,718,1678,1898,2331,2099,1981,1834,2058,2086,1860,1696,1903,1228,1736,1994,1957,2046,2167,1220,1333,1702,1930,1470,1414,1263,1212,1729,2050,2145,2000,1141,1270,1555,1878,1496,1254,614,966,1489,1559,1615
"Coal : Oklahoma","thousand megawatthours","ELEC.GEN.COW-OK-99.M",3162,2913,2413,2299,2964,3011,3111,3363,2792,2764,2875,2949,3306,2433,2796,2399,2883,3082,3431,3343,2996,2863,3059,3374,3326,2886,2950,2832,2974,3041,3534,3298,2794,2930,2768,3342,3311,2988,2225,1886,2276,2933,3348,3249,3097,2624,2944,2921,3340,2982,2933,2337,3057,3214,3461,3379,3098,2761,2664,3083,2603,2650,3023,2100,2876,3383,3567,3314,2885,2689,2746,3196,3329,3034,2816,2306,2747,3008,3113,3172,2975,2356,2528,3054,3164,2935,2678,2252,2846,3337,3570,3378,3046,2870,2918,3320,3458,2646,2397,2563,2821,3055,3368,3206,2600,2514,2416,3015,2754,2677,2583,1958,2191,3006,3217,3267,2803,2185,2356,2479,3273,2824,2723,2507,2836,3314,3400,3408,2521,2320,2517,2835,2833,2525,1814,1528,2419,2771,3139,3024,2367,2355,2105,2424,2569,2187,2138,1998,2382,2403,3026,3005,2750,2123,2598,2820,2792,2510,2393,1957,2604,2835,2738,3061,2642,2041,2102,2246,2375,2079,2068,1620,1738,2438,2716,2666
"Coal : Texas","thousand megawatthours","ELEC.GEN.COW-TX-99.M",11684,10237,11004,9767,11449,12313,13218,12780,11579,9736,9897,11434,12124,10718,10330,10337,12287,12765,13224,13228,12169,11023,10829,12812,13571,10670,10129,11155,12438,12899,13216,13346,12745,12373,11768,12681,13129,11855,10320,10760,13111,12706,13643,13633,13138,12035,11058,13498,13524,11397,11383,10163,12743,13005,13266,13474,12727,11614,12005,13059,12759,10513,10465,10280,12151,12819,13883,13759,13021,12412,11512,12818,13184,10987,9943,10771,12222,13168,13825,13558,12322,11861,12133,13304,13241,11506,10444,11273,12289,13066,13790,13801,12686,11736,11044,12255,12466,9935,9361,10274,11749,12192,13192,13127,11564,11703,11079,12466,12650,11000,10680,9692,12576,14137,14561,14919,13238,11827,11549,13343,13968,11057,11879,12400,13391,14944,15816,15716,14119,12124,10525,11957,10492,9571,9225,7996,10775,12950,14300,14187,12874,12512,11590,11617,11733,10111,10626,9956,12261,14401,15395,15279,13770,11563,10513,13797,13116,12305,11486,10717,12750,12817,15173,14616,13445,11053,10181,10515,11449,9117,7403,7224,9416,12736,13061,13450
"Coal : Mountain","thousand megawatthours","ELEC.GEN.COW-MTN-99.M",18957,17254,16890,15767,18108,17873,19650,19324,17063,18464,18031,18348,18257,16034,17084,16038,17282,16548,18332,17775,17821,17552,17547,18501,19292,16414,16737,15510,16825,17960,19763,19343,17904,18095,18175,19547,19246,17099,17695,16030,17175,18472,19043,19785,19051,18815,18499,19715,19299,16631,17715,16252,17567,18820,19692,19883,18463,18903,18269,19785,18668,16029,18074,15018,16095,16822,19024,19453,17966,17408,17857,18325,18692,16416,17498,14861,16253,17572,19020,19199,17680,17608,17459,18386,18507,16670,17341,15460,16376,17250,19598,19621,18152,17913,17749,19107,18803,15740,16148,13467,15159,14891,17832,18226,16691,17327,17820,19072,18620,15816,16220,15253,16557,15920,18935,18957,18097,17134,16638,18404,18271,15571,15787,13277,13956,15242,17806,19330,18071,17108,16587,18439,17364,15751,13825,11784,12878,15053,17217,18175,17240,17869,16983,17845,18450,15902,16602,14935,16100,16982,18277,18306,16327,16710,16443,17255,17692,16103,15361,13697,14539,15729,18654,18464,16800,15648,15199,16763,16355,13385,14608,13157,14488,15940,17441,17513
"Coal : Arizona","thousand megawatthours","ELEC.GEN.COW-AZ-99.M",3418,2913,2865,3558,3614,3443,3560,3583,3227,3559,3166,3154,3283,2672,3117,3110,3254,3115,3371,3160,3095,3059,3435,3556,3329,2742,2588,2708,3015,3265,3672,3436,3320,3272,3245,3497,3634,2837,3048,3126,3260,3460,3542,3565,3412,3264,3023,3639,3425,2419,2780,3242,3421,3446,3784,3610,3443,3645,3315,3612,3496,2966,3347,3087,3399,3377,3695,3738,3578,3239,3323,3199,3403,2968,3586,3246,3517,3635,3534,3811,3292,3197,3447,3640,3776,3082,3696,3463,3533,3709,3946,4040,3863,3788,3475,3469,3573,2971,2790,2570,3235,3299,3555,3726,3406,3265,3262,4054,3927,3029,3219,3018,3783,3772,3997,3903,3808,3596,3650,3942,3943,3172,3230,3126,3323,3603,3934,4148,3900,3772,3729,3823,3746,3056,2839,2723,3167,3391,3485,3646,3383,3595,3358,3728,3755,2798,3246,3554,3863,3799,3918,3917,3745,3694,3392,3810,3916,2959,3316,3044,3414,3672,4073,4074,3899,3622,3196,3480,3203,2219,2804,2532,3203,3327,3740,3482
"Coal : Colorado","thousand megawatthours","ELEC.GEN.COW-CO-99.M",3246,2882,2844,2690,3153,3049,3235,3246,2809,2648,2992,3158,3239,2730,2558,2638,3029,3038,3220,3136,2763,2951,2911,3175,3150,2764,2868,2832,2891,2969,3344,3254,2819,2954,2999,3271,3249,3045,3015,2674,2831,2856,3150,3244,2914,2879,2768,3223,3119,2820,3225,2717,3046,3027,3102,3206,2796,2554,2751,3208,3044,2496,2935,2804,3140,3202,3292,3133,3093,2849,3068,3215,3305,2980,2979,2820,2940,3011,3205,3223,2589,2748,2951,3183,3213,3077,2791,2417,2758,2986,3230,3264,2694,2575,2701,3123,2900,2285,2426,1977,2320,2509,2904,3020,2678,2863,2758,2998,3059,2762,2540,2455,2437,2619,3327,3452,3001,2743,2936,3227,3278,2967,2911,2174,2280,2505,3139,3575,2909,2718,2590,2910,2838,2775,2689,2415,2447,3001,3431,3174,2776,3046,2743,3185,3112,2728,2663,2617,2767,2738,3107,3254,2397,2563,2770,2987,3172,2946,2389,2446,2494,2652,3311,3231,2588,2337,2281,2699,2884,2680,2670,2260,2496,2822,3017,3065
"Coal : Idaho","thousand megawatthours","ELEC.GEN.COW-ID-99.M",5,4,5,6,9,9,8,8,5,4,5,4,6,5,6,8,10,10,11,9,7,6,5,5,5,6,7,9,10,9,11,10,7,5,5,5,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,7,6,8,9,9,8,8,7,9,7,7,7,7,7,7,7,7,7,7,7,7,10,8,8,6,6,4,5,5,8,8,8,8,11,11,10,8,6,2,2,2,7,9,11,11,11,8,8,6,2,2,2,4,9,10,10,11,10,9,10,8,7,1,2,5,7,10,10,10,10,9,9,4,3,1,2,5,8,10,10,11,12,7,7,2,2,2,1,3,7,12,12,11,11,8,10,7,7,4,0,2,6,12,12,12,9,"NM","NM","NM","NM",8,8,"NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM"
"Coal : Montana","thousand megawatthours","ELEC.GEN.COW-MT-99.M",1585,1466,1408,1044,1154,1047,1532,1641,1478,1654,1508,1518,1100,1296,1549,1421,1360,657,894,1620,1457,1430,1396,1157,1453,1464,1410,893,1211,1343,1557,1580,1559,1574,1395,1610,1644,1500,1674,1212,1057,1157,1418,1517,1454,1615,1542,1590,1602,1432,1397,1448,1384,1360,1604,1495,1513,1466,1512,1611,1494,1441,1603,1326,1076,899,1559,1709,1313,1420,1639,1606,1653,1528,1510,1358,1130,1370,1697,1564,1700,1605,1623,1618,1649,1618,1754,1556,1243,930,1488,1623,1443,1646,1676,1704,1725,1584,1659,999,927,654,1157,1233,1174,1142,1663,1696,1707,1503,1710,1564,1526,854,1580,1687,1696,1662,1600,1512,1480,1277,1342,673,646,482,1134,1498,1550,1733,1599,1643,1579,1528,1034,549,322,437,807,1456,1519,1635,1623,1498,1677,1533,1661,1404,965,889,1093,1156,1141,1127,1074,1161,1342,1437,1264,996,790,899,1439,1624,1565,1540,1495,1441,1592,1054,1255,1108,1075,1333,1478,1505
"Coal : Nevada","thousand megawatthours","ELEC.GEN.COW-NV-99.M",1425,1452,1431,887,1496,1589,1568,1695,1545,1705,1569,1374,1537,1336,1313,957,1387,1454,1567,1436,1416,1233,1280,1498,1636,1271,1384,948,886,1538,1428,1438,1572,1579,1707,1699,1365,1409,1627,965,1463,1621,1396,1744,1706,1669,1738,1556,1678,1332,1588,999,1539,1611,1578,1667,1510,1666,1536,1679,695,632,521,350,453,551,611,720,675,665,716,667,574,561,639,282,457,613,664,687,659,679,634,641,617,617,525,351,441,619,856,807,776,612,738,854,779,660,655,507,535,467,683,637,510,644,652,812,757,666,542,515,370,501,731,702,625,547,420,621,472,372,223,215,299,455,666,583,557,485,583,499,323,192,167,122,81,126,525,558,533,513,495,445,456,360,393,387,365,568,636,576,407,274,327,506,670,724,546,474,541,643,760,606,439,430,401,314,211,159,167,104,72,235,400,457
"Coal : New Mexico","thousand megawatthours","ELEC.GEN.COW-NM-99.M",2627,2314,2144,1797,2601,2517,2725,2371,2196,2353,2169,2588,2152,1910,2240,2217,2375,2536,2467,1790,2450,2369,2232,2166,2567,2156,2321,2377,2575,2521,2638,2709,2101,2182,2115,2549,2374,2061,2101,2027,2547,2638,2617,2740,2543,2474,2545,2598,2488,2524,2392,2147,2319,2589,2495,2728,2639,2720,2386,2521,2704,2094,2512,2163,2486,2351,2745,2822,2480,2457,2355,2691,2676,2095,2228,2041,2117,2180,2614,2598,2402,2366,2179,2108,1999,1726,1597,1943,2114,2525,2689,2610,2264,2456,2473,2618,2521,1959,2179,2419,2484,2452,2492,2734,2359,2357,2550,2610,2093,1521,1639,1584,2245,2288,2256,2238,2640,2534,2292,2287,2499,2014,2419,2080,1949,2322,2441,2409,2538,2018,1948,2504,2370,2042,1691,1294,1947,2243,2406,2155,2475,2127,2014,2230,2387,1990,2169,1595,1900,2134,2205,2081,1906,2000,2132,1646,1408,1756,1699,1679,1674,1626,2087,1673,1759,1518,1409,2067,1571,1392,1422,1589,1789,1824,1990,1923
"Coal : Utah","thousand megawatthours","ELEC.GEN.COW-UT-99.M",2769,2596,2236,2459,2811,2739,3112,3091,2988,3045,2938,2897,3236,2714,2502,2749,2752,2798,3116,2969,3004,2906,2738,3004,3178,2532,2463,2749,3163,2998,3336,3293,3065,3047,3032,3122,3154,2651,2578,2767,3227,3196,3248,3050,3124,3263,3068,3294,3245,2675,2612,2642,3017,3105,3302,3132,2944,2958,3013,3326,3308,2952,3245,2336,2900,3239,3305,3341,3033,3067,2918,3213,3301,2982,3196,2294,2846,3037,3456,3360,3288,3273,2856,3280,3305,2855,3230,2633,3179,3098,3424,3334,3283,3261,3152,3266,3264,2712,2861,2486,3038,2669,3125,3185,2994,3086,2995,3112,3091,2656,2949,2978,3091,2974,3161,3208,2837,2397,1937,2776,2966,2548,2291,2135,2752,2762,3075,3309,2982,3010,2514,2796,2362,2319,2123,2203,2072,2559,2927,3014,2811,3022,2644,2743,2898,2563,2792,2175,2925,2914,3093,3037,2967,3063,2782,3077,3115,2544,2486,1933,2502,3005,3117,3187,2898,2631,2859,2981,3044,2584,2594,2183,2643,2784,2840,2939
"Coal : Wyoming","thousand megawatthours","ELEC.GEN.COW-WY-99.M",3882,3627,3956,3327,3270,3480,3909,3690,2815,3496,3683,3655,3705,3371,3800,2937,3115,2940,3686,3653,3628,3598,3551,3939,3973,3479,3697,2993,3073,3315,3776,3622,3460,3481,3677,3793,3818,3587,3645,3251,2782,3535,3664,3917,3890,3643,3807,3807,3734,3423,3713,3049,2835,3674,3818,4037,3609,3887,3747,3820,3922,3441,3904,2946,2633,3197,3811,3983,3788,3706,3832,3728,3771,3295,3351,2812,3239,3722,3846,3951,3742,3732,3760,3907,3936,3684,3738,3089,3102,3381,3962,3941,3821,3565,3524,4064,4030,3561,3571,2503,2618,2840,3913,3688,3562,3961,3929,3778,3977,3668,3610,3130,3099,2911,3880,3761,3483,3645,3792,4029,3622,3213,3363,2870,2705,3112,3416,3803,3628,3361,3614,4254,4133,3832,3274,2476,2841,3294,3637,4170,3736,3918,4095,4005,4154,3922,3668,3196,3307,3935,4225,4284,3758,3977,3954,4057,4061,3728,3653,3120,3118,3224,3860,4061,3643,3562,3551,3773,3841,3289,3689,3374,3202,3608,3969,4134
"Coal : Pacific Contiguous","thousand megawatthours","ELEC.GEN.COW-PCC-99.M",1420,1302,1386,1211,837,1032,1420,1531,1352,1290,1436,1543,1537,1255,1499,875,901,379,753,1453,1501,1581,1460,1574,1590,1425,1560,1306,1031,1441,1584,1646,1468,1637,1457,1576,1566,1504,1561,1418,539,866,1106,1538,1574,1608,1461,1463,1565,1360,1539,1406,530,1435,1513,1516,1542,1505,1122,1065,755,743,904,318,184,201,1236,1217,1125,1508,1333,1453,1343,1138,971,1131,681,1233,1466,1519,1416,1347,1406,1555,1357,1388,1394,1043,475,504,1333,1386,1502,1637,1471,1595,1527,1383,1431,582,144,268,939,1212,1253,1533,990,1463,1429,1292,1482,1094,513,378,1429,1559,1398,1204,1446,1530,1207,531,517,272,172,285,489,1391,1483,1405,1332,1460,920,513,220,108,75,130,231,948,1162,1243,1217,1006,922,800,1260,270,148,574,847,1408,1296,1359,1163,1273,1378,1248,598,265,79,390,1179,1250,1253,1154,1076,838,616,33,34,36,205,867,1019,1009
"Coal : California","thousand megawatthours","ELEC.GEN.COW-CA-99.M",200,184,102,206,200,216,224,226,183,137,143,211,203,184,213,158,166,205,204,208,202,217,158,208,211,195,182,124,168,198,216,210,214,206,201,202,210,211,207,79,164,192,218,208,186,174,150,239,159,164,183,156,172,189,200,180,178,176,180,197,194,177,151,160,141,199,198,213,206,187,213,197,216,195,145,190,170,205,201,212,205,182,178,200,207,151,149,187,145,201,210,222,211,201,192,206,192,166,152,156,141,170,170,170,177,184,187,186,195,187,127,170,179,187,195,181,186,168,137,188,209,175,161,168,170,165,177,166,153,167,123,150,148,147,146,106,72,129,125,136,126,98,60,82,65,60,30,58,54,120,118,111,101,46,30,29,25,26,88,57,55,111,111,111,99,54,31,27,34,31,30,33,35,36,35,35
"Coal : Oregon","thousand megawatthours","ELEC.GEN.COW-OR-99.M",389,369,418,403,233,259,410,390,391,415,351,416,398,368,366,204,319,0,127,374,392,414,403,416,366,365,408,399,17,379,403,405,389,410,399,366,395,382,412,377,-0,-1,19,343,414,433,387,395,437,388,367,403,22,401,377,374,401,302,-2,-4,-4,-6,-3,-2,42,1,403,412,335,371,388,434,406,313,370,323,52,411,425,410,411,380,421,432,357,403,396,325,0,185,371,419,351,417,404,417,397,382,408,38,0,89,0,299,334,420,412,420,401,382,419,356,18,123,376,418,395,420,410,406,348,301,241,102,0,119,254,373,401,408,391,397,365,364,68,0,0,0,104,259,345,402,384,344,405,358,378,188,94,345,6,411,375,401,395,402,405,352,203,16,19,97,317,377,405,404,345,253,26,0,0,0,0,279,323,367
"Coal : Washington","thousand megawatthours","ELEC.GEN.COW-WA-99.M",831,749,865,603,403,557,787,915,779,738,942,915,936,703,920,513,416,174,422,871,907,950,899,951,1013,865,970,783,846,865,965,1030,865,1021,856,1009,961,911,942,962,376,675,869,987,975,1001,924,828,970,807,988,847,336,845,936,962,963,1026,944,872,565,571,757,161,1,2,635,592,585,950,732,822,722,631,457,618,459,617,841,898,800,785,807,923,793,834,850,531,330,118,752,745,941,1020,876,972,938,835,871,389,4,10,769,743,741,929,391,857,832,723,936,568,316,68,858,959,817,615,898,936,650,55,116,1,2,2,59,852,930,830,819,913,407,2,5,2,3,1,2,554,691,743,772,581,452,382,852,24,0,109,723,886,821,911,737,843,948,870,307,192,5,183,752,762,749,695,700,558,556,2,4,3,170,552,662,607
"Coal : Pacific Noncontiguous","thousand megawatthours","ELEC.GEN.COW-PCN-99.M",181,185,189,148,182,176,193,204,195,172,177,167,186,160,176,174,189,168,183,176,186,159,181,184,197,176,194,177,187,173,170,171,172,192,186,200,184,180,184,162,188,180,180,197,194,202,199,202,191,172,193,182,187,183,196,191,180,193,191,196,156,153,189,184,175,176,194,192,184,184,187,191,202,188,200,191,195,176,187,191,199,137,148,206,197,187,193,183,189,189,194,189,176,186,191,191,165,140,185,165,165,175,180,189,184,196,191,195,198,174,183,158,148,180,184,185,180,191,184,200,190,182,168,179,180,174,191,191,161,176,164,125,185,177,181,180,184,185,187,192,183,186,189,194,151,125,139,166,169,180,183,189,183,176,179,188,188,145,170,169,186,174,181,176,172,172,170,169,160,156,188,108,140,162,178,186
"Coal : Alaska","thousand megawatthours","ELEC.GEN.COW-AK-99.M",47,54,52,38,41,39,55,65,59,39,37,38,52,45,49,43,49,36,45,46,53,54,49,55,54,49,52,43,47,36,30,31,47,52,52,57,55,55,56,54,52,51,47,55,53,57,57,57,57,51,54,48,46,45,55,54,49,53,54,57,57,52,53,51,48,42,53,52,49,51,53,57,58,54,59,57,55,37,48,50,55,50,57,61,55,52,53,50,53,50,50,47,49,53,51,54,53,51,52,41,51,45,54,54,54,59,58,59,59,53,58,41,36,50,53,48,52,56,57,60,53,56,53,51,46,49,62,61,54,46,61,64,60,58,60,56,53,57,55,57,56,54,60,61,59,54,56,40,37,53,53,54,54,55,55,54,57,54,55,46,50,53,46,41,41,37,40,45,44,53,55,37,51,52,54,50
"Coal : Hawaii","thousand megawatthours","ELEC.GEN.COW-HI-99.M",134,131,137,111,141,137,138,139,136,133,140,129,134,115,127,130,140,133,139,129,133,105,132,129,143,127,142,134,140,137,140,140,125,140,134,143,129,126,128,109,136,129,133,142,141,146,142,144,134,120,138,134,141,138,141,137,131,140,137,139,99,100,136,133,127,134,142,140,135,133,134,135,143,133,141,134,140,139,138,141,144,88,91,146,142,135,140,134,136,138,144,141,127,133,140,137,112,89,133,124,114,129,127,135,130,138,133,137,139,122,126,117,112,131,131,137,128,135,127,140,136,126,115,128,134,125,128,130,107,130,103,62,125,119,121,124,131,129,132,135,128,132,128,133,92,72,83,126,132,127,129,134,129,121,124,135,130,92,115,123,135,121,136,135,131,135,130,124,116,103,132,71,88,111,124,136
"Petroleum liquids","thousand megawatthours","ELEC.GEN.PEL-US-99.M","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""
"Petroleum liquids : United States","thousand megawatthours","ELEC.GEN.PEL-US-99.M",17300,9626,10981,10237,9641,10997,10050,13235,6432,5573,5090,5484,5434,4388,6937,6535,6664,6429,8507,8194,6670,6910,5174,6859,11518,9740,9347,7314,6841,9534,10542,10836,7114,6970,4939,8040,13509,7701,8098,7400,8511,9185,10337,9185,7070,5928,5270,8197,10261,5575,6472,5273,4823,8740,11039,12414,10452,8385,5199,11207,4246,3257,2407,3039,2902,4060,5121,6571,3043,3354,3355,3105,4420,7596,4118,3830,3489,4213,4125,5702,3647,3558,2001,2803,3131,2438,2112,2274,2343,3707,2983,2547,2990,1943,2191,3257,4968,2267,2089,1658,2053,2090,2124,2449,1677,1815,1315,1468,3187,1251,1272,1220,1851,2656,2970,2419,1675,1221,1220,2395,1902,1217,1276,1459,1356,1374,1714,1295,1119,1114,1082,1178,1180,908,971,965,1079,1306,1530,1202,978,1061,986,1235,1733,1130,990,995,1067,1035,1458,1076,964,945,989,1438,6041,1866,2083,910,976,921,1024,1065,963,923,988,948,1953,5237,1082,922,1031,1034,1215,1116
"Petroleum liquids : New England","thousand megawatthours","ELEC.GEN.PEL-NEW-99.M",2737,1761,1918,834,1245,1340,1120,1909,793,748,821,1143,846,922,1045,643,751,600,1096,1127,980,1105,739,1231,2040,1857,1292,852,578,978,1121,1080,511,812,873,1571,2993,1324,1129,678,801,735,992,921,610,360,732,1338,2091,883,962,600,290,763,1125,1425,1121,1436,636,1896,525,326,224,268,252,363,577,521,328,456,436,407,839,1176,641,302,277,360,303,374,273,255,183,624,421,318,329,183,162,363,348,204,241,156,187,410,863,226,220,52,44,28,48,153,24,35,48,92,48,49,42,23,73,70,282,163,119,48,56,92,220,73,33,20,13,40,104,47,28,24,21,16,69,12,18,14,18,95,73,35,14,23,32,12,279,213,10,19,13,25,126,19,23,12,29,327,1289,307,421,13,17,16,31,42,15,16,23,29,258,1557,63,17,22,10,58,32
"Petroleum liquids : Connecticut","thousand megawatthours","ELEC.GEN.PEL-CT-99.M",924,485,805,294,391,449,303,636,152,200,142,393,282,189,300,126,122,93,266,347,240,219,101,53,383,353,238,51,17,112,224,240,35,44,124,242,675,53,92,84,50,126,139,179,69,42,23,206,527,64,244,198,17,276,337,403,286,450,51,302,38,52,48,30,42,103,223,185,99,200,165,95,178,206,187,61,62,85,85,100,70,87,13,176,34,41,89,36,33,79,64,15,10,11,10,93,167,1,11,9,-1,6,22,58,3,1,4,17,9,8,12,6,40,34,124,82,63,-0,5,24,53,8,5,1,1,22,36,20,12,2,5,2,0,1,6,2,8,35,29,14,2,9,4,2,93,66,1,1,1,5,39,7,4,0,3,88,288,83,95,0,"NM",2,5,10,3,2,3,6,15,375,3,6,4,"NM",20,8
"Petroleum liquids : Maine","thousand megawatthours","ELEC.GEN.PEL-ME-99.M",445,285,151,107,134,110,111,298,133,135,111,82,55,68,78,86,84,77,161,151,102,88,93,188,353,323,186,156,83,98,123,78,69,135,60,255,456,175,68,51,86,50,55,89,41,42,56,143,275,89,89,89,63,62,109,133,135,118,105,354,52,69,48,40,48,40,45,69,46,40,44,54,124,210,99,47,66,24,21,30,22,27,28,120,99,57,49,41,34,48,32,17,22,26,34,74,208,52,43,19,11,7,10,30,14,22,7,13,11,24,8,6,14,16,47,41,15,15,41,35,48,26,16,13,6,8,22,9,5,15,3,6,21,6,2,5,2,11,15,3,1,2,13,3,59,58,3,17,6,5,23,8,1,3,3,52,173,21,85,2,3,3,"NM",12,"NM",2,4,"NM",116,350,23,"NM",2,"NM",13,6
"Petroleum liquids : Massachusetts","thousand megawatthours","ELEC.GEN.PEL-MA-99.M",1329,975,946,370,650,709,632,878,479,353,539,652,487,649,657,407,466,386,590,558,573,693,499,836,1047,1008,752,433,282,592,574,573,275,462,583,878,1497,911,891,343,437,437,623,499,363,261,516,756,990,501,608,301,151,383,511,649,636,789,417,1092,301,162,110,162,129,195,263,214,163,200,208,222,454,584,320,190,147,223,193,231,178,138,141,254,256,214,185,101,93,212,194,160,205,117,142,229,373,154,161,21,33,14,11,48,5,8,18,51,17,7,20,7,17,15,88,26,35,33,7,24,68,28,10,5,5,9,37,11,7,5,4,7,34,4,7,6,6,44,19,15,10,11,13,6,99,51,5,-0,4,12,48,0,18,6,17,132,592,133,177,8,10,7,20,16,8,10,"NM",17,96,605,28,7,12,8,20,13
"Petroleum liquids : New Hampshire","thousand megawatthours","ELEC.GEN.PEL-NH-99.M",6,8,10,56,64,65,67,88,24,55,25,11,16,10,5,21,74,38,71,64,60,100,42,149,245,158,107,206,193,171,194,182,127,168,102,191,353,178,74,195,223,115,171,149,133,10,133,226,290,225,17,9,57,35,162,233,59,73,59,139,130,40,14,33,30,22,43,49,16,13,16,33,77,168,28,2,1,27,1,10,1,0,0,67,29,0,4,3,1,24,56,11,2,1,0,5,109,16,2,2,1,1,5,14,1,3,19,10,7,8,1,3,2,4,19,11,4,1,3,9,44,10,1,0,0,1,5,4,4,1,7,0,11,0,1,0,0,1,6,1,0,0,1,0,19,20,0,1,1,3,12,3,0,0,5,40,182,56,43,2,"NM","NM",3,"NM","NM","NM",3,2,18,141,6,2,"NM","NM","NM","NM"
"Petroleum liquids : Rhode Island","thousand megawatthours","ELEC.GEN.PEL-RI-99.M",19,4,4,5,5,4,5,5,5,5,4,5,5,4,4,4,4,4,7,5,5,4,5,5,7,10,5,4,2,4,6,6,3,3,3,4,4,4,4,4,4,4,4,4,4,4,4,4,8,3,4,3,2,5,6,7,5,5,3,7,4,3,3,3,2,2,3,3,2,2,2,3,5,7,6,2,1,1,1,1,1,1,0,6,3,5,1,1,1,1,2,1,2,1,1,8,6,4,3,1,0,0,0,2,0,0,0,1,3,2,0,0,0,1,3,2,1,0,0,0,5,2,1,1,0,1,2,1,1,0,0,0,3,1,1,1,1,4,3,1,1,1,1,1,"NM",17,"NM","NM","NM","NM","NM","NM","NM",3,"NM","NM",48,13,19,"NM","NM","NM","NM","NM","NM","NM",2,"NM",12,84,"NM","NM","NM","NM","NM","NM"
"Petroleum liquids : Vermont","thousand megawatthours","ELEC.GEN.PEL-VT-99.M",15,3,1,1,2,1,2,4,1,1,0,1,1,2,1,1,1,1,1,2,1,0,0,0,5,6,3,1,0,2,1,2,1,1,1,1,9,3,0,0,0,3,0,1,0,0,0,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,0,0,0,1,1,2,1,0,0,0,0,1,0,0,0,1,1,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,1,1,0,0,0,0,2,1,1,1,1,0,1,0,0,0,0,1,1,0,0,0,0,0,1,1,0,0,0,0,1,0,0,0,0,1,"NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM"
"Petroleum liquids : Middle Atlantic","thousand megawatthours","ELEC.GEN.PEL-MAT-99.M",3589,2091,2421,2185,1804,2116,1638,2283,747,689,761,838,926,605,941,981,989,1376,2021,1851,826,855,1202,1863,2932,2833,2399,2188,1084,1954,2454,2775,1356,1291,1135,2306,4921,2160,2216,2065,1943,2044,2475,2068,1172,1133,1258,2498,3377,1715,2073,1389,785,2503,3034,3694,2825,2241,1384,3215,1337,1037,489,413,248,511,1072,1092,130,334,535,646,1319,2639,1236,765,411,655,608,696,423,250,152,548,716,482,174,85,113,567,563,225,180,73,391,1075,1835,325,251,80,89,125,179,285,66,41,45,181,333,123,71,57,77,256,580,288,125,50,108,226,315,79,83,63,101,167,312,121,65,53,42,49,47,33,30,26,55,107,248,115,49,42,68,40,413,121,43,45,72,104,314,66,74,35,39,90,1947,458,458,22,35,36,56,61,39,28,44,68,447,1676,137,31,51,44,78,71
"Petroleum liquids : New Jersey","thousand megawatthours","ELEC.GEN.PEL-NJ-99.M",258,83,129,70,85,211,128,232,50,33,10,6,22,14,19,64,29,93,140,214,33,29,13,61,438,314,283,34,27,90,151,116,36,5,17,30,625,85,64,42,150,72,85,112,25,20,34,112,270,13,10,34,20,89,116,113,60,38,23,155,20,15,43,14,9,16,36,76,11,10,9,10,24,210,49,14,3,21,34,51,19,12,9,8,75,47,38,18,28,40,5,5,12,10,13,34,124,48,36,13,31,2,2,14,3,1,2,3,24,38,4,1,3,9,28,12,2,14,70,30,37,2,1,2,6,11,21,20,4,1,2,0,-1,0,1,-0,1,1,7,12,3,3,1,0,59,9,3,1,1,2,17,4,4,1,1,4,380,17,53,1,"NM",1,"NM",11,2,1,2,11,53,208,9,2,4,"NM",5,3
"Petroleum liquids : New York","thousand megawatthours","ELEC.GEN.PEL-NY-99.M",2756,1916,2042,1602,1487,1501,1140,1509,605,544,673,720,847,525,742,748,911,1009,1397,1294,631,689,1138,1506,1811,1855,1662,1845,944,1588,1904,2203,1154,1212,1061,1964,3442,1870,1828,1726,1390,1711,2074,1754,1093,1081,1176,1842,2515,1525,1694,1306,708,1980,2215,2917,2355,1846,1253,2445,1142,957,396,239,133,390,815,812,78,302,472,588,1202,2058,990,713,360,477,488,542,337,196,113,466,486,311,96,40,58,415,507,190,130,47,341,966,1361,215,137,38,29,98,140,237,44,19,17,153,226,61,40,37,52,196,391,212,96,22,22,134,226,56,41,24,38,122,220,79,41,30,21,29,31,22,20,10,26,83,190,87,27,24,40,19,296,96,28,22,50,85,251,41,54,18,19,47,1196,397,341,11,11,20,34,28,20,17,23,31,336,1170,97,14,22,21,46,46
"Petroleum liquids : Pennsylvania","thousand megawatthours","ELEC.GEN.PEL-PA-99.M",574,92,251,512,232,404,370,541,93,112,78,112,58,65,180,170,49,274,484,343,163,137,51,296,683,665,455,309,113,276,399,456,166,74,57,311,853,205,324,297,404,262,316,202,55,33,47,544,592,177,369,49,57,434,703,665,410,357,108,615,175,64,50,160,106,106,221,204,41,22,55,48,93,371,197,38,48,157,86,103,67,42,30,75,155,124,39,27,28,112,51,29,38,15,37,75,350,61,78,30,28,25,37,34,20,21,26,25,84,24,27,19,21,50,160,64,27,14,16,61,52,21,41,37,57,34,71,22,20,23,19,20,16,10,9,16,28,22,51,16,19,15,27,20,58,"NM",12,22,21,17,45,22,16,17,18,39,371,45,64,11,22,15,20,21,18,9,18,26,58,299,32,15,25,22,27,23
"Petroleum liquids : East North Central","thousand megawatthours","ELEC.GEN.PEL-ENC-99.M",177,149,292,361,163,426,571,447,214,118,110,112,153,125,176,190,175,213,296,206,166,138,104,160,409,483,312,185,109,178,215,469,93,97,75,153,412,300,217,170,136,218,184,128,79,68,89,84,220,75,81,112,107,238,186,225,122,117,72,160,77,71,59,59,104,73,153,127,78,66,72,83,74,180,81,71,104,104,95,152,90,117,67,96,93,81,106,69,75,130,83,77,70,56,67,86,79,50,66,59,93,85,60,66,50,58,52,62,68,52,66,57,95,77,71,80,63,39,48,70,87,50,54,89,72,85,76,61,38,49,59,65,63,42,40,52,47,46,75,46,42,55,59,56,58,39,41,36,67,63,61,47,53,37,45,49,137,86,77,52,57,56,48,60,36,35,67,48,56,62,50,39,56,59,53,48
"Petroleum liquids : Illinois","thousand megawatthours","ELEC.GEN.PEL-IL-99.M",16,78,173,252,26,235,351,223,107,6,10,15,35,7,9,17,12,12,42,21,30,16,9,12,218,261,166,79,13,48,73,182,9,10,11,50,175,149,120,69,10,56,10,25,8,15,11,12,20,11,11,22,15,27,30,34,13,12,14,18,10,9,4,8,7,10,23,15,9,8,7,11,8,16,10,11,9,9,10,7,11,14,15,12,16,14,12,12,13,10,8,11,12,10,13,12,13,3,14,11,8,12,9,10,6,10,8,7,9,8,10,9,10,10,9,12,9,8,8,8,11,5,5,5,9,8,7,4,6,8,7,9,5,7,5,6,6,5,6,5,5,7,9,5,8,3,5,5,11,7,7,6,5,5,6,4,"NM",9,10,6,8,6,6,7,7,5,7,6,4,"NM",4,4,4,5,4,5
"Petroleum liquids : Indiana","thousand megawatthours","ELEC.GEN.PEL-IN-99.M",36,27,24,34,26,23,24,26,24,26,28,28,25,26,38,34,40,30,19,14,13,14,37,24,31,27,35,20,17,14,13,12,16,13,11,15,27,14,13,18,17,13,11,13,9,10,12,13,27,9,8,12,19,10,13,14,10,10,13,16,8,15,10,7,11,12,15,11,25,13,9,10,12,13,12,11,21,13,12,18,11,16,13,19,17,15,23,14,18,19,10,12,10,11,15,14,13,11,10,15,16,11,12,11,11,10,13,14,10,12,16,16,14,12,17,14,12,8,10,13,21,11,13,17,15,17,17,10,8,12,15,15,8,11,11,6,11,11,13,7,8,10,9,9,14,8,12,10,14,14,9,13,11,11,10,14,"NM",17,10,15,14,12,13,12,9,10,16,11,14,"NM",14,10,16,20,11,11
"Petroleum liquids : Michigan","thousand megawatthours","ELEC.GEN.PEL-MI-99.M",67,12,42,20,48,131,150,133,43,37,29,37,50,62,78,97,64,129,185,131,80,67,26,100,111,126,60,38,34,76,78,217,29,35,22,52,132,95,38,53,62,101,125,55,25,13,23,20,121,19,21,28,37,153,97,126,59,49,16,77,30,13,16,19,40,19,65,46,12,15,17,19,15,79,26,15,41,38,38,85,39,53,10,19,18,22,37,15,22,54,31,22,21,9,16,20,24,11,17,17,27,31,18,21,12,17,10,12,15,12,14,14,30,21,16,19,15,8,10,19,13,8,10,35,17,19,22,19,8,12,7,9,8,8,7,25,15,12,13,10,7,13,10,9,13,8,6,9,18,18,10,9,11,8,8,12,16,15,10,10,10,12,9,13,9,8,23,10,8,8,10,13,12,10,12,13
"Petroleum liquids : Ohio","thousand megawatthours","ELEC.GEN.PEL-OH-99.M",40,21,38,47,52,31,38,38,27,35,31,21,37,23,43,31,50,28,37,28,33,33,26,19,31,53,38,38,38,31,41,40,26,26,22,25,38,29,35,23,33,28,24,23,30,26,34,30,37,24,29,36,30,28,28,35,31,28,21,34,22,22,21,16,40,26,25,35,25,24,26,26,26,30,24,26,24,32,25,20,18,27,22,39,27,16,26,19,18,32,26,27,22,24,21,31,26,23,21,13,35,27,18,20,18,18,18,25,30,19,24,18,39,32,27,28,22,14,18,27,42,25,23,28,28,37,24,23,14,18,27,26,39,14,16,15,14,13,30,23,17,22,24,32,20,18,17,9,21,23,33,16,23,11,19,17,84,40,39,20,21,24,17,24,10,11,15,17,24,"NM",19,10,21,23,25,15
"Petroleum liquids : Wisconsin","thousand megawatthours","ELEC.GEN.PEL-WI-99.M",19,12,15,8,11,5,9,28,13,14,13,12,7,8,8,10,9,13,14,11,10,8,6,6,18,16,12,10,7,9,10,18,12,12,9,10,40,14,12,8,14,21,14,12,6,4,8,10,15,12,12,14,7,20,18,17,9,17,8,15,6,12,9,8,6,6,26,20,7,6,13,17,14,42,9,8,9,13,11,22,11,7,7,8,14,14,8,9,4,15,8,4,5,1,3,10,3,3,4,3,6,4,3,4,2,2,3,3,5,3,1,1,2,1,2,7,6,2,2,4,1,2,2,4,3,5,6,5,1,-0,3,4,2,2,1,0,2,3,12,1,4,3,7,1,4,1,2,3,3,1,2,3,4,2,2,2,9,5,8,1,3,1,4,4,1,0,7,3,6,2,2,2,3,1,1,4
"Petroleum liquids : West North Central","thousand megawatthours","ELEC.GEN.PEL-WNC-99.M",175,121,121,109,113,97,98,128,19,35,42,31,67,84,152,64,43,27,49,83,53,53,36,68,159,153,84,85,70,103,272,222,36,41,77,115,182,163,120,42,100,97,181,118,39,35,40,73,145,60,67,85,124,136,146,203,158,84,44,230,27,26,29,24,30,31,57,32,21,25,31,38,88,185,36,34,49,57,37,29,24,30,46,61,51,42,35,27,24,37,21,18,28,30,18,46,42,15,26,22,35,19,22,23,20,23,22,25,36,22,15,21,35,37,44,22,23,35,40,18,26,23,27,26,29,29,21,21,21,22,29,38,21,22,13,35,39,35,30,16,15,20,22,23,23,16,20,36,32,25,20,16,22,24,17,45,44,47,53,17,37,26,18,22,23,22,28,24,26,22,41,18,39,19,26,20
"Petroleum liquids : Iowa","thousand megawatthours","ELEC.GEN.PEL-IA-99.M",5,6,7,7,12,6,22,21,3,4,2,3,3,4,3,4,5,6,8,9,6,3,4,3,7,11,6,4,5,7,8,15,4,5,9,11,12,1,6,5,13,8,4,8,4,7,3,5,13,6,7,13,10,15,13,13,9,12,12,19,12,6,5,7,6,10,19,11,6,11,8,7,15,34,9,9,9,27,17,13,10,16,9,11,9,8,10,6,4,16,4,4,9,4,2,4,2,3,4,3,9,4,5,7,3,6,5,5,11,2,3,6,10,8,5,6,5,9,9,4,2,6,2,8,7,12,6,5,4,5,8,4,4,6,3,13,12,15,7,2,4,9,7,8,5,3,4,12,6,6,6,6,5,4,-3,14,"NM",8,6,2,10,6,2,3,3,4,8,2,3,"NM",4,3,7,4,6,3
"Petroleum liquids : Kansas","thousand megawatthours","ELEC.GEN.PEL-KS-99.M",102,75,78,81,60,62,34,66,4,15,25,14,54,68,125,37,18,2,14,56,32,30,19,52,112,80,45,58,39,77,244,180,12,14,37,66,108,141,90,20,74,68,154,100,22,16,19,43,92,35,43,51,96,73,96,147,128,55,15,156,1,2,6,3,8,4,5,4,5,3,6,3,3,2,3,3,6,2,2,4,2,3,5,6,6,2,3,3,6,6,4,3,3,3,2,2,4,3,4,6,3,1,5,3,3,3,3,3,4,3,4,3,3,5,3,4,3,5,4,3,2,4,6,3,3,2,2,1,4,4,2,3,4,3,2,3,3,4,1,3,1,2,6,3,5,3,3,3,10,6,2,2,3,4,3,8,"NM",5,6,4,6,4,2,5,4,3,2,5,7,"NM",8,6,5,"NM",2,3
"Petroleum liquids : Minnesota","thousand megawatthours","ELEC.GEN.PEL-MN-99.M",12,11,14,7,20,12,10,16,5,7,3,4,2,3,4,5,8,6,4,4,5,4,2,2,16,21,9,7,12,7,7,8,9,9,8,20,23,13,13,5,4,12,11,3,5,4,9,13,21,10,8,9,9,26,18,13,10,8,7,24,7,8,4,4,5,6,23,7,3,4,5,11,36,92,15,17,14,14,9,3,4,4,15,20,15,20,7,9,3,4,2,2,3,2,8,18,31,5,3,5,3,3,2,3,2,4,2,4,5,3,1,2,4,2,2,3,3,4,2,1,2,1,3,3,2,1,3,1,2,1,3,18,-0,2,0,1,8,4,10,1,1,2,1,1,2,0,0,-3,-1,2,3,1,7,4,3,9,14,6,17,3,3,3,3,2,1,"NM",2,3,"NM","NM",6,"NM",4,"NM",2,3
"Petroleum liquids : Missouri","thousand megawatthours","ELEC.GEN.PEL-MO-99.M",25,7,12,7,10,9,23,13,3,4,6,6,5,6,13,12,7,7,15,8,4,10,6,4,15,23,10,8,8,5,3,10,5,5,8,7,19,3,6,6,5,2,6,4,4,4,4,4,10,5,5,5,4,5,11,24,4,5,4,20,3,4,6,6,5,4,6,6,3,4,6,8,5,9,4,4,9,2,3,2,5,5,5,7,5,6,4,5,4,5,5,4,6,4,1,7,-3,-0,10,6,9,5,3,5,6,5,6,6,7,5,3,5,8,15,31,5,10,10,14,5,11,8,6,4,10,5,4,7,7,7,6,4,9,5,4,10,6,8,9,7,5,3,3,8,7,5,7,7,8,6,5,3,3,2,6,7,"NM",20,16,4,11,8,5,6,6,6,10,9,11,"NM",5,4,17,6,9,7
"Petroleum liquids : Nebraska","thousand megawatthours","ELEC.GEN.PEL-NE-99.M",3,3,3,1,4,1,3,7,1,1,1,1,1,1,1,3,1,1,3,3,2,1,2,1,5,10,9,2,3,2,3,4,1,2,5,2,2,3,2,3,1,4,1,1,1,1,1,2,3,3,2,2,2,2,2,2,2,2,2,7,2,2,2,1,2,1,2,2,1,1,1,1,4,12,1,-2,6,4,1,5,1,-0,3,1,4,0,3,2,1,0,1,3,5,13,2,2,0,1,0,1,5,2,4,3,3,1,2,2,4,4,1,1,5,3,0,1,0,2,7,2,4,1,7,5,3,5,3,1,1,2,3,3,1,3,2,6,4,1,1,1,1,1,1,1,2,1,3,14,5,1,1,2,2,6,4,2,6,3,5,2,5,3,6,3,4,3,"NM",2,2,"NM",2,2,"NM",2,4,2
"Petroleum liquids : North Dakota","thousand megawatthours","ELEC.GEN.PEL-ND-99.M",4,5,5,4,4,4,5,3,2,3,5,3,2,3,4,2,4,4,3,2,4,4,2,5,3,5,3,4,3,4,5,3,3,5,8,5,5,3,3,4,4,2,2,3,2,4,4,4,4,1,2,3,2,4,4,2,3,2,2,3,3,3,5,2,3,4,2,2,2,2,5,8,6,5,4,2,4,6,4,2,3,2,4,8,5,3,9,3,5,5,5,3,2,3,2,4,4,3,5,2,5,3,3,3,3,4,4,5,5,4,3,3,5,3,2,3,2,2,3,3,5,2,2,2,5,3,3,4,3,2,5,5,4,2,2,3,5,3,2,1,3,3,4,1,3,2,2,2,3,3,3,2,3,2,4,4,2,3,3,1,1,1,2,2,4,3,2,3,2,2,4,1,2,3,3,1
"Petroleum liquids : South Dakota","thousand megawatthours","ELEC.GEN.PEL-SD-99.M",23,14,2,2,4,2,1,2,0,1,1,0,0,0,0,0,1,0,1,1,0,1,0,0,1,2,2,1,0,1,1,1,1,1,1,4,14,0,0,0,0,1,3,0,1,1,0,3,1,0,0,0,1,11,2,1,1,1,1,1,0,1,1,0,0,1,0,0,0,0,0,0,18,30,0,0,0,0,0,0,0,0,5,8,8,3,0,1,0,0,0,0,0,0,1,9,4,1,1,0,0,1,-0,0,1,0,0,0,0,-0,0,0,1,1,0,0,0,3,0,1,0,1,0,0,0,0,0,1,0,1,2,1,0,1,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,0,0,1,0,1,0,0,"NM",2,"NM","NM",1,"NM","NM","NM","NM","NM","NM","NM","NM","NM",12,0,2,"NM","NM",2
"Petroleum liquids : South Atlantic","thousand megawatthours","ELEC.GEN.PEL-SAT-99.M",5860,3045,4243,4841,4332,5253,4872,6673,3349,3045,2337,2117,2384,1691,3502,3637,3703,3207,4042,3908,3646,3659,2105,2490,4887,2956,3715,3028,3629,4612,4914,4934,3984,3489,1696,2619,3727,2417,2987,3176,4168,4566,4811,4562,3670,2973,2122,2746,3263,1969,2231,2086,2464,3743,5164,5145,4851,3243,2000,4067,1259,868,748,1393,1323,2051,2192,3576,1514,1457,1321,906,957,2421,1067,1639,1654,2041,2098,3335,1904,1882,652,527,879,622,544,1012,1023,1712,1055,1148,1433,682,664,610,1161,804,624,582,885,953,891,1012,664,750,287,188,1686,236,266,260,639,1403,1156,1002,531,187,142,1051,400,109,233,451,328,300,383,232,139,113,128,121,139,95,102,117,166,272,346,176,104,115,74,49,144,85,129,139,131,121,211,190,84,65,117,145,1682,207,335,199,142,125,177,138,69,84,163,116,421,1152,123,97,151,190,227,148
"Petroleum liquids : Delaware","thousand megawatthours","ELEC.GEN.PEL-DE-99.M",131,61,237,202,170,136,150,231,49,166,103,46,42,41,112,78,24,69,170,144,60,75,27,55,302,292,198,123,45,84,238,192,87,44,29,16,364,76,44,129,45,72,90,63,25,13,25,160,254,55,37,34,34,127,206,137,73,47,27,189,6,4,3,6,4,6,34,45,2,6,8,8,10,53,38,3,9,21,17,45,6,20,8,13,36,10,8,24,4,21,21,11,46,3,2,34,61,48,19,21,27,19,18,28,10,5,2,2,10,7,0,1,3,2,4,4,4,1,1,19,12,1,2,3,2,6,6,2,1,0,1,2,3,1,0,2,1,4,5,2,1,1,1,1,7,1,1,1,1,1,6,1,2,0,0,1,112,14,26,1,"NM",2,3,0,1,"NM","NM",2,33,89,4,"NM",1,3,2,5
"Petroleum liquids : District Of Columbia","thousand megawatthours","ELEC.GEN.PEL-DC-99.M",9,0,0,1,6,0,24,48,0,3,32,0,-1,5,11,23,-1,31,101,86,3,-1,0,4,10,13,13,1,2,4,11,25,-1,-1,-1,-1,16,2,1,-1,3,6,2,5,1,-1,-1,4,2,0,-1,-1,-1,42,90,75,4,9,0,5,2,1,-0,0,2,4,23,48,-1,1,-1,3,-1,3,-0,-0,-0,14,11,41,6,4,-1,-1,3,1,0,0,0,50,9,5,1,3,0,0,6,3,0,1,0,8,6,12,0,0,0,0,0,0,2,1,24,74,51,24,15,3,0,5,2,0,0,0,3,24,73,25,2,0,0,0,1,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
"Petroleum liquids : Florida","thousand megawatthours","ELEC.GEN.PEL-FL-99.M",4332,2257,2605,3394,3549,4187,3845,4957,2939,2528,1584,1499,1679,1145,2707,2890,3298,2225,2529,2766,3286,3204,1609,1538,2314,1299,2622,2066,3227,3430,3478,3341,3408,3110,1426,1545,1461,1484,2159,2294,2614,3734,3658,3453,3258,2830,1957,1770,1687,1301,1760,1891,2256,2653,3626,3608,3743,2467,1696,2470,1039,684,613,1267,1195,1817,1707,2958,1406,1333,1179,676,571,1136,639,1339,1510,1651,1841,2641,1732,1688,545,339,449,396,446,891,907,1280,812,1015,1263,596,354,267,386,469,310,483,741,832,755,831,591,659,195,60,1385,66,194,190,503,1056,739,745,333,107,34,571,149,36,143,384,189,117,96,71,74,47,52,26,41,15,37,51,72,141,132,108,39,52,13,18,21,30,62,73,46,30,44,77,12,16,34,52,"NM",18,54,140,56,48,45,40,10,25,38,22,99,65,27,48,31,76,29,29
"Petroleum liquids : Georgia","thousand megawatthours","ELEC.GEN.PEL-GA-99.M",180,43,58,77,66,57,44,72,46,44,36,39,80,28,68,61,69,26,55,26,45,61,72,82,166,53,38,40,61,44,39,40,41,72,37,50,36,39,28,49,28,28,35,43,23,21,26,47,42,29,36,35,30,24,41,43,61,42,32,56,28,20,35,24,16,14,15,22,15,16,19,27,19,20,22,21,20,18,15,32,14,16,17,18,51,29,23,20,20,26,19,17,11,11,21,24,17,26,10,18,19,10,11,7,7,10,9,25,41,13,8,12,10,7,6,6,5,8,12,28,25,10,13,13,9,6,9,10,5,9,8,18,12,10,9,12,7,9,7,7,8,5,2,-15,2,0,3,12,10,11,6,11,5,-3,11,-0,87,10,8,"NM",11,9,6,7,9,-2,19,11,41,48,8,9,11,7,"NM",6
"Petroleum liquids : Maryland","thousand megawatthours","ELEC.GEN.PEL-MD-99.M",366,243,406,272,230,312,242,495,114,155,98,89,95,95,208,145,106,253,409,249,79,199,121,322,681,509,373,338,67,220,374,524,139,43,105,200,583,212,259,325,529,313,240,484,109,17,21,205,455,103,130,21,42,511,593,507,399,316,152,577,71,52,14,16,25,52,127,145,10,10,22,37,62,358,90,37,26,82,44,130,54,29,17,55,65,57,13,6,22,69,65,17,25,12,14,39,128,20,73,7,9,13,17,12,9,15,11,15,23,21,8,8,17,28,67,44,32,18,7,50,23,11,6,9,15,39,58,15,14,7,9,23,7,-1,19,6,11,25,27,15,7,8,6,7,16,8,10,12,20,6,30,10,15,8,9,46,288,39,81,9,12,9,9,11,8,6,9,11,33,90,15,9,16,17,27,14
"Petroleum liquids : North Carolina","thousand megawatthours","ELEC.GEN.PEL-NC-99.M",113,43,81,105,52,47,39,52,33,31,29,32,89,60,74,53,54,51,43,36,29,37,28,38,185,140,57,45,63,96,50,25,27,29,32,35,105,48,40,39,90,47,35,30,45,30,40,62,81,35,44,40,42,25,38,43,46,36,32,58,51,37,35,30,34,29,33,39,28,34,40,60,61,70,36,42,37,33,34,58,28,33,28,37,53,27,23,19,25,20,14,19,19,24,37,41,51,37,35,18,24,21,18,19,18,12,20,24,69,34,15,14,21,21,14,16,12,11,16,51,50,12,16,14,26,24,13,14,14,8,12,14,31,19,8,15,25,12,12,7,11,14,16,9,26,18,24,14,18,11,22,13,12,17,26,17,254,20,27,"NM",22,21,13,15,8,9,10,19,79,180,13,8,24,19,14,13
"Petroleum liquids : South Carolina","thousand megawatthours","ELEC.GEN.PEL-SC-99.M",58,25,37,35,20,13,19,48,8,18,16,11,18,14,34,21,25,55,32,18,26,14,21,24,65,62,28,22,30,51,23,26,19,16,17,50,98,43,41,16,38,26,18,20,19,22,14,24,27,15,21,18,17,18,22,78,41,14,15,53,19,13,14,15,15,14,15,33,19,16,14,33,25,25,12,12,12,12,18,45,19,17,11,10,13,7,8,11,10,27,4,8,8,9,7,16,11,13,18,8,4,16,9,2,6,12,19,21,25,13,8,11,13,18,14,8,5,5,10,33,19,9,8,10,11,8,8,6,4,4,15,8,15,14,8,7,10,12,10,8,5,3,9,6,7,9,7,9,11,7,21,7,6,5,10,5,153,16,20,"NM",11,7,6,8,6,6,10,7,37,89,9,12,11,10,5,9
"Petroleum liquids : Virginia","thousand megawatthours","ELEC.GEN.PEL-VA-99.M",652,345,790,734,222,474,482,740,146,86,415,374,358,281,246,345,101,473,677,567,100,50,205,390,1137,548,369,373,113,665,684,746,247,165,33,701,1032,481,380,306,801,318,719,453,174,23,18,449,691,415,188,22,27,323,534,638,472,294,28,633,22,39,21,19,21,98,223,274,24,28,23,49,193,740,215,155,32,188,105,326,26,68,16,34,201,78,11,23,19,208,102,41,52,15,221,178,487,179,143,13,37,25,45,89,11,15,19,24,124,65,15,15,36,178,252,141,112,25,44,284,89,11,25,10,53,62,110,73,12,22,20,15,19,25,9,11,22,55,141,15,22,21,14,10,53,10,13,9,17,38,61,56,23,12,12,9,696,77,105,"NM",17,15,87,49,18,30,59,29,87,576,33,8,44,39,131,63
"Petroleum liquids : West Virginia","thousand megawatthours","ELEC.GEN.PEL-WV-99.M",18,27,30,21,18,27,27,32,15,14,24,27,23,22,41,21,26,23,27,16,20,20,22,37,28,40,16,22,22,19,17,15,17,12,18,22,32,32,35,20,21,22,15,10,16,18,22,24,24,16,16,26,17,20,13,16,13,17,20,25,20,16,14,17,11,16,15,12,10,14,17,12,16,17,16,31,10,22,13,17,19,7,11,21,8,16,12,18,14,10,8,16,8,9,8,10,13,10,16,12,24,10,12,13,12,20,12,17,8,17,15,9,13,18,8,14,13,9,19,11,31,19,20,7,21,14,10,15,13,14,11,14,10,12,12,10,13,14,11,13,11,11,13,12,11,9,9,9,9,17,21,15,8,10,15,16,33,12,14,10,13,14,7,9,9,11,18,13,11,16,12,7,12,18,15,11
"Petroleum liquids : East South Central","thousand megawatthours","ELEC.GEN.PEL-ESC-99.M",910,749,538,605,845,669,731,622,260,57,45,71,110,58,100,69,89,59,53,29,42,58,49,70,130,182,239,46,135,309,296,337,168,229,210,244,186,392,395,217,187,460,397,223,351,260,80,236,112,41,120,55,66,256,235,442,247,182,53,317,107,141,29,48,35,34,64,77,42,88,42,127,181,132,69,125,66,95,42,38,32,34,34,58,69,40,43,59,47,61,40,42,55,63,32,77,59,58,50,42,44,40,56,38,35,37,37,54,70,31,38,39,123,45,41,43,37,43,34,77,49,52,43,43,62,32,45,35,30,28,24,49,42,21,31,26,33,39,26,33,28,40,25,34,31,34,26,21,23,32,25,28,19,17,23,44,127,45,23,27,24,34,28,23,39,21,24,25,39,54,25,25,35,34,33,26
"Petroleum liquids : Alabama","thousand megawatthours","ELEC.GEN.PEL-AL-99.M",107,35,40,86,32,19,17,18,14,18,18,30,61,29,30,19,46,16,16,13,13,23,18,26,57,14,21,20,58,52,14,20,18,20,14,29,30,17,18,22,25,27,28,20,22,25,29,34,49,20,18,25,20,22,26,26,30,23,25,51,25,18,16,16,14,11,12,14,7,13,15,19,15,18,14,14,23,13,9,12,7,9,8,15,35,12,12,18,14,17,14,16,16,15,19,15,29,23,21,15,12,14,18,14,13,17,17,25,37,14,14,17,14,11,15,13,10,14,15,26,14,13,9,11,14,9,7,8,8,6,6,14,17,5,7,8,8,11,7,7,6,13,8,12,10,8,6,8,6,7,6,5,4,5,5,6,40,10,"NM","NM",7,10,"NM",5,8,3,8,-0,"NM","NM",8,5,7,7,"NM",6
"Petroleum liquids : Kentucky","thousand megawatthours","ELEC.GEN.PEL-KY-99.M",7,7,9,16,10,11,10,10,9,7,13,13,17,9,11,29,18,9,13,6,12,11,15,22,23,22,18,8,13,13,7,9,9,9,10,9,13,4,13,9,10,13,11,6,8,10,13,10,21,8,11,11,14,7,6,9,7,7,10,7,10,6,7,13,10,13,7,6,5,7,7,5,8,11,12,9,9,11,8,6,7,10,14,13,8,9,11,9,6,18,7,10,8,12,11,21,7,13,9,7,17,10,12,7,9,8,12,15,7,7,11,10,18,14,8,9,6,8,10,13,9,12,15,11,14,11,7,11,12,10,12,15,9,7,9,7,9,12,10,9,9,9,8,10,11,12,5,5,8,11,11,6,5,6,12,14,"NM",6,11,7,9,12,16,14,9,8,10,12,9,"NM",9,7,15,9,10,9
"Petroleum liquids : Mississippi","thousand megawatthours","ELEC.GEN.PEL-MS-99.M",656,678,463,479,755,608,688,582,229,3,2,2,1,1,1,6,4,1,1,1,3,6,4,1,7,43,162,6,11,182,260,292,130,192,161,185,121,357,352,170,133,406,345,179,307,215,23,169,8,-1,77,2,19,217,187,394,184,132,0,225,54,106,-1,-2,2,2,32,45,16,51,0,92,139,88,29,75,13,47,1,3,1,1,1,1,3,0,2,0,1,12,1,4,20,28,1,2,7,2,-0,-1,1,1,1,0,-0,1,2,2,3,1,1,2,68,1,1,0,0,2,0,2,1,20,3,3,2,1,1,1,1,1,1,2,2,1,1,1,3,2,1,4,1,1,1,1,1,1,2,2,1,2,1,1,1,1,1,1,"NM",2,"NM",2,2,1,1,"NM",2,1,1,0,"NM","NM",1,3,1,1,1,1
"Petroleum liquids : Tennessee","thousand megawatthours","ELEC.GEN.PEL-TN-99.M",139,29,27,24,49,31,15,12,7,29,12,26,30,20,58,14,21,32,23,9,14,17,12,21,42,103,37,13,53,63,15,15,11,8,24,22,22,14,13,16,19,14,13,19,14,10,15,22,34,14,14,18,12,10,16,13,26,20,18,35,19,11,7,20,9,8,12,12,14,18,19,10,19,15,14,27,22,23,23,18,17,14,11,29,22,19,17,31,26,14,18,12,10,8,1,39,17,19,21,21,13,15,26,16,13,11,6,11,22,9,12,10,22,19,17,20,20,20,8,36,25,8,15,19,33,10,29,15,8,10,5,18,15,9,13,11,13,14,8,13,12,16,8,11,10,14,14,7,8,12,8,15,10,4,6,23,71,26,5,6,7,11,7,3,21,8,5,13,11,22,7,9,11,16,14,10
"Petroleum liquids : West South Central","thousand megawatthours","ELEC.GEN.PEL-WSC-99.M",2238,566,336,324,129,210,71,224,90,31,172,338,49,96,123,41,29,21,24,25,35,76,46,89,191,544,472,160,419,547,351,84,65,96,57,194,141,119,185,237,367,240,381,253,271,219,127,403,132,120,167,147,124,271,175,233,193,225,209,381,33,45,27,42,56,85,60,92,48,51,67,67,127,132,108,51,26,43,28,97,15,44,27,17,44,41,22,24,43,28,23,12,143,21,23,46,66,37,45,28,34,23,16,9,18,14,21,26,115,15,14,17,18,10,10,26,12,15,16,18,12,90,16,16,19,12,14,8,14,20,13,24,14,11,11,14,20,21,10,12,16,11,13,19,30,10,13,16,22,15,12,9,10,18,18,26,"NM",24,24,14,15,15,10,13,19,12,15,18,33,"NM",19,44,27,22,16,11
"Petroleum liquids : Arkansas","thousand megawatthours","ELEC.GEN.PEL-AR-99.M",124,60,61,49,45,30,49,122,61,4,5,269,27,11,13,5,11,3,6,2,12,11,10,50,49,33,18,7,4,15,44,48,14,3,7,48,35,42,66,64,69,34,36,23,42,48,18,61,18,10,13,14,21,17,21,22,21,14,13,19,13,9,9,12,14,14,15,23,12,11,15,12,16,23,6,4,5,15,7,5,1,1,7,4,3,2,8,3,4,6,3,2,1,1,8,22,27,8,16,4,7,7,1,3,3,4,1,7,13,2,4,2,2,1,2,2,2,5,4,7,4,11,4,5,4,3,6,2,3,3,4,7,3,2,2,7,2,1,1,2,3,3,4,4,3,3,2,2,7,4,4,1,2,6,3,5,2,3,3,2,2,0,1,3,2,2,4,5,6,5,3,8,7,3,4,3
"Petroleum liquids : Louisiana","thousand megawatthours","ELEC.GEN.PEL-LA-99.M",635,270,165,215,62,159,7,84,18,6,111,54,6,4,11,15,5,5,4,2,5,40,11,5,37,67,227,105,171,202,106,12,28,67,25,38,66,58,99,144,279,176,325,205,203,140,79,256,93,92,138,112,83,237,132,183,129,182,183,339,5,10,4,8,6,49,24,48,21,21,32,32,29,86,7,6,7,10,13,81,5,28,5,5,14,10,5,8,25,12,11,7,136,14,6,19,14,9,10,8,10,8,11,2,10,4,9,7,59,2,3,1,6,2,3,17,4,3,1,2,2,10,2,3,10,3,2,1,3,4,4,4,2,3,3,2,6,3,2,3,4,1,2,8,14,2,5,3,4,3,4,3,2,3,7,4,"NM",3,7,6,3,3,3,4,5,2,3,5,18,"NM",4,28,2,7,2,1
"Petroleum liquids : Oklahoma","thousand megawatthours","ELEC.GEN.PEL-OK-99.M",135,5,2,6,5,3,4,4,3,2,3,5,4,4,4,3,4,2,4,5,3,7,6,5,39,48,30,5,6,6,4,4,4,4,6,6,6,5,4,10,7,7,6,5,4,6,6,3,6,5,5,6,5,6,4,6,10,5,6,6,7,7,4,10,5,1,2,4,5,4,7,8,9,8,83,30,3,6,1,3,2,6,8,2,1,4,4,3,3,0,1,1,3,0,2,0,2,1,0,0,1,1,0,1,1,0,1,1,1,2,0,0,3,0,1,1,1,3,1,3,2,1,2,2,1,1,1,1,1,2,1,2,1,1,0,2,3,1,1,"NM",1,0,1,1,0,0,0,2,1,2,0,0,0,1,1,2,"NM",1,2,"NM",2,1,"NM",1,2,1,"NM","NM","NM","NM",1,"NM","NM",1,"NM","NM"
"Petroleum liquids : Texas","thousand megawatthours","ELEC.GEN.PEL-TX-99.M",1344,232,108,55,17,17,11,15,7,19,54,11,12,76,95,19,9,12,10,16,15,18,19,30,66,396,197,44,238,324,197,20,19,22,20,103,34,14,16,19,12,23,13,19,23,25,24,83,16,12,11,15,15,11,18,22,33,24,7,17,9,19,10,12,30,20,20,17,10,14,13,15,73,16,13,11,11,12,6,9,6,9,7,6,27,24,5,10,10,9,8,3,4,5,7,4,23,19,18,16,16,7,3,3,4,6,9,12,41,9,7,14,8,7,5,6,5,4,10,6,4,68,9,5,4,6,5,4,5,11,4,11,7,5,6,4,10,16,7,8,8,7,6,7,13,6,6,9,10,6,4,4,6,7,7,15,"NM",17,12,"NM",8,11,5,6,11,7,7,8,"NM","NM",11,8,17,11,"NM",7
"Petroleum liquids : Mountain","thousand megawatthours","ELEC.GEN.PEL-MTN-99.M",270,213,198,150,159,105,109,111,167,31,20,32,23,21,22,24,16,24,19,23,20,18,19,18,16,25,24,23,27,21,18,16,16,18,19,20,69,43,20,17,16,17,18,15,11,17,22,18,21,18,21,23,22,16,13,18,17,16,16,17,22,18,19,28,21,44,29,21,19,22,18,23,17,20,16,21,34,18,14,16,16,16,25,23,31,23,20,19,24,21,13,19,15,17,18,19,15,9,19,24,18,28,20,18,20,25,18,22,20,19,21,28,24,29,18,23,13,20,27,24,22,17,19,28,28,24,22,15,18,15,23,24,13,16,18,22,19,22,16,15,20,21,20,21,20,14,19,15,19,19,12,17,15,18,23,18,19,19,32,22,21,17,17,20,15,17,16,20,20,19,18,23,19,19,19,17
"Petroleum liquids : Arizona","thousand megawatthours","ELEC.GEN.PEL-AZ-99.M",144,55,50,14,20,7,5,5,3,2,3,5,6,5,6,7,5,5,3,6,3,6,2,4,2,3,6,3,7,4,3,5,3,4,3,5,3,1,5,1,3,2,4,4,3,2,7,5,4,6,7,5,4,3,2,2,3,2,3,3,1,4,5,11,2,21,7,6,4,5,4,4,6,6,2,4,4,2,3,4,5,4,3,6,7,5,2,3,5,7,5,3,2,3,4,5,4,1,6,7,4,5,5,4,6,8,7,5,6,6,6,14,6,4,4,5,2,5,6,4,6,3,5,5,6,5,3,4,5,3,4,4,2,3,6,4,5,3,3,1,3,5,5,2,4,4,6,4,2,3,3,2,4,2,7,2,4,4,16,4,5,5,3,2,2,2,5,5,6,5,3,6,4,4,1,3
"Petroleum liquids : Colorado","thousand megawatthours","ELEC.GEN.PEL-CO-99.M",21,23,28,31,27,10,9,6,2,5,4,11,1,3,4,2,0,3,3,1,1,1,3,1,2,6,3,3,5,4,3,1,2,1,2,3,1,2,2,1,1,1,0,1,0,2,0,2,1,1,1,1,1,1,1,1,2,1,4,2,1,3,1,1,2,2,3,2,1,1,2,2,1,1,1,4,11,2,1,2,2,1,1,1,3,2,1,2,4,0,0,1,2,1,2,2,1,0,1,1,1,1,1,1,1,3,1,1,3,1,2,1,2,2,0,1,1,1,1,4,1,1,1,7,0,3,1,2,1,1,1,3,1,1,1,2,1,1,0,0,1,2,1,2,1,0,1,1,0,1,1,1,1,1,2,1,"NM","NM","NM","NM",1,1,"NM","NM","NM",2,"NM",2,"NM","NM","NM","NM","NM","NM","NM","NM"
"Petroleum liquids : Idaho","thousand megawatthours","ELEC.GEN.PEL-ID-99.M",1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM"
"Petroleum liquids : Montana","thousand megawatthours","ELEC.GEN.PEL-MT-99.M",0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,1,1,4,2,1,1,0,2,1,1,1,2,0,2,1,2,2,1,0,1,1,1,0,2,6,2,2,2,1,1,2,1,1,2,1,1,2,1,2,1,2,1,1,2,1,1,1,1,4,3,1,1,3,1,3,1,2,2,2,1,2,0,1,0,2,1,1,1,0,0,1,2,2,1,1,3,1,0,1,1,0,1,1,0,2,1,0,0,3,1,1,2,1,1,1,1,2,0,2,0,1,1,2,2,1,1,1,1,3,3,2,2,1,1,1,1,0,0,0,2,2,2,1,1,1,0,1,0,1,1,0,1,4,0,2,1,1,1,1,"NM",2,"NM",2,1,"NM",4,2,1,1,"NM",2,"NM","NM","NM",1,2,2,1,1
"Petroleum liquids : Nevada","thousand megawatthours","ELEC.GEN.PEL-NV-99.M",86,117,109,93,94,72,84,88,149,14,1,6,4,3,1,3,2,2,2,1,4,2,2,1,1,1,2,2,1,1,3,1,1,0,0,1,52,29,1,2,3,1,0,1,1,2,2,2,3,2,1,3,2,1,1,3,1,2,1,2,1,0,1,1,2,2,5,0,2,1,1,1,1,1,1,1,0,2,1,1,0,0,1,2,0,1,1,1,2,2,1,2,1,2,1,0,1,1,0,2,2,3,1,1,1,1,1,0,1,1,0,0,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,2,2,1,2,2,1,1,3,2,2,1,1,2,2,1,1,1,2,2,1,2,2,2,2,2,0,1,1,1,1,2,2,1,2,2,1,1,2,2,1,1,0,3,2,2
"Petroleum liquids : New Mexico","thousand megawatthours","ELEC.GEN.PEL-NM-99.M",13,11,5,4,10,4,4,3,6,2,5,1,3,1,2,1,3,2,4,1,5,2,6,4,4,6,4,6,5,3,2,1,3,4,8,5,4,3,4,3,1,1,4,2,0,3,6,2,5,2,3,6,4,1,2,3,2,1,3,3,10,3,2,6,4,2,1,2,4,2,3,3,1,4,5,3,3,2,4,3,3,1,11,5,12,5,7,4,3,0,2,5,3,3,5,4,4,2,5,6,3,4,3,4,4,2,4,4,4,4,5,3,5,6,4,5,1,4,4,5,3,2,3,5,6,5,3,1,2,2,2,4,3,3,3,6,3,3,2,3,5,4,5,7,6,4,4,4,5,4,3,5,3,7,6,8,6,6,6,8,7,3,4,7,3,5,4,5,6,6,6,10,6,6,6,5
"Petroleum liquids : Utah","thousand megawatthours","ELEC.GEN.PEL-UT-99.M",4,4,4,5,5,7,5,5,4,4,5,6,4,4,5,4,4,5,5,6,4,3,4,6,3,4,4,3,3,2,1,2,2,3,2,4,3,4,3,4,2,1,3,2,2,3,3,2,3,3,3,4,4,3,3,4,4,4,3,3,4,4,5,6,7,6,5,7,5,5,5,4,3,1,3,3,8,6,1,2,3,2,4,2,4,5,4,4,4,3,2,3,3,4,2,5,1,3,4,3,3,3,4,2,3,4,3,4,2,5,4,5,5,3,3,3,4,4,6,6,4,4,5,5,7,5,4,2,4,2,7,6,3,2,1,6,3,3,3,5,3,4,4,4,4,3,1,3,3,2,1,3,1,2,2,1,1,2,"NM",4,3,2,2,1,2,2,3,2,"NM","NM",1,3,2,1,2,2
"Petroleum liquids : Wyoming","thousand megawatthours","ELEC.GEN.PEL-WY-99.M",3,2,2,2,4,4,2,4,4,4,2,4,4,3,3,7,1,7,2,4,2,4,2,2,2,3,4,4,5,6,3,5,3,4,3,3,5,4,4,5,4,4,5,3,2,5,3,3,4,4,3,3,5,5,3,2,5,4,2,3,2,3,4,1,4,8,5,3,2,6,2,5,2,4,3,5,6,3,3,3,3,6,4,5,5,4,4,3,3,7,2,5,1,3,4,1,2,2,3,5,3,9,5,5,5,4,3,6,2,1,4,3,4,12,5,6,4,5,8,3,5,6,4,4,7,2,6,3,3,5,7,4,2,6,4,3,5,9,3,3,6,4,3,4,3,1,5,3,5,4,3,2,4,3,3,4,4,3,3,2,2,4,2,6,3,4,2,4,3,3,3,2,4,2,6,3
"Petroleum liquids : Pacific Contiguous","thousand megawatthours","ELEC.GEN.PEL-PCC-99.M",547,249,132,98,106,63,52,24,20,23,25,20,24,24,16,23,11,11,15,10,17,12,30,18,13,31,49,27,28,67,74,86,54,39,22,16,76,28,39,35,14,10,31,14,12,16,26,21,40,20,21,31,33,16,67,73,17,12,23,50,13,16,8,13,40,28,42,53,38,24,28,19,18,12,21,64,56,42,33,39,7,13,10,15,21,13,28,19,10,11,9,9,19,10,9,55,14,15,34,20,7,16,8,18,14,8,10,33,8,9,7,6,7,11,5,5,5,11,6,10,8,9,8,4,5,7,10,12,12,5,6,6,11,15,11,22,10,16,11,17,13,17,11,13,7,6,5,7,11,7,8,6,6,4,6,7,"NM",6,7,4,7,8,7,8,8,6,7,7,6,"NM","NM",6,22,23,8,8
"Petroleum liquids : California","thousand megawatthours","ELEC.GEN.PEL-CA-99.M",264,176,120,90,103,55,47,20,16,15,15,15,8,18,7,16,7,4,8,7,12,9,22,12,7,6,28,24,22,58,69,81,48,35,13,5,13,11,28,33,12,6,23,7,11,9,8,11,21,8,13,23,27,10,52,66,12,5,7,12,5,10,5,11,38,27,38,50,35,22,20,10,14,6,14,59,54,37,29,37,4,9,5,10,6,9,24,17,8,5,5,5,16,9,5,52,11,11,29,18,6,12,5,14,11,6,6,8,4,4,4,3,3,7,4,3,4,7,4,6,3,3,4,3,3,3,5,5,8,3,3,3,7,13,8,18,9,15,9,12,11,15,9,9,3,3,3,5,8,3,4,4,4,3,3,5,"NM",3,"NM",3,5,3,4,5,6,4,3,3,5,"NM","NM",5,20,18,5,6
"Petroleum liquids : Oregon","thousand megawatthours","ELEC.GEN.PEL-OR-99.M",56,37,1,0,0,1,0,0,0,0,6,0,1,0,2,1,1,0,2,0,0,0,0,0,1,17,12,0,2,4,3,3,2,0,0,1,39,3,0,1,0,0,6,1,0,1,8,3,9,7,3,4,0,0,10,1,1,1,11,30,1,-0,0,0,1,0,0,0,0,1,3,5,1,4,3,2,1,0,0,0,0,0,1,1,11,0,-0,0,0,1,0,0,0,-0,0,1,1,2,3,-0,0,1,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,1,1,0,0,2,1,1,0,0,1,0,1,0,0,0,0,0,2,1,0,0,0,1,0,1,0,1,1,1,1,0,0,0,0,0,"NM","NM","NM","NM",1,1,1,1,0,1,"NM",2,"NM","NM","NM","NM","NM",2,1,1
"Petroleum liquids : Washington","thousand megawatthours","ELEC.GEN.PEL-WA-99.M",227,37,11,7,3,7,5,4,4,7,3,6,15,6,7,5,4,7,5,3,5,3,8,6,5,8,9,3,4,5,3,2,4,4,9,11,24,14,11,0,2,3,1,6,1,6,10,7,9,5,5,3,6,6,4,6,3,5,5,8,7,7,3,2,1,1,4,2,3,1,5,3,3,1,4,3,2,4,3,2,2,4,4,5,3,3,3,2,2,5,4,4,2,1,4,2,2,2,2,3,1,3,3,3,2,2,4,25,4,4,3,2,3,3,1,2,0,4,2,4,4,4,3,1,2,2,4,6,4,2,2,3,3,3,2,4,1,1,1,4,2,1,2,2,3,2,2,1,2,3,3,1,1,1,3,2,"NM",2,"NM",1,"NM",3,2,2,"NM",1,"NM",2,"NM","NM","NM","NM",2,3,2,"NM"
"Petroleum liquids : Pacific Noncontiguous","thousand megawatthours","ELEC.GEN.PEL-PCN-99.M",797,681,782,730,744,718,789,814,772,796,759,781,853,764,861,862,858,891,893,933,883,937,844,852,741,676,760,719,761,764,826,834,833,860,775,802,802,753,790,764,778,796,867,883,856,846,773,783,860,673,728,744,807,799,892,956,901,830,762,873,846,708,775,753,792,840,875,980,826,831,806,790,799,698,843,759,812,799,868,925,863,919,806,833,807,777,812,776,822,778,827,793,806,836,781,832,834,728,754,749,806,773,824,826,767,824,776,786,804,696,733,712,760,718,764,768,746,771,745,808,763,715,760,718,700,679,728,742,754,785,738,786,762,641,697,638,671,653,694,737,678,716,662,971,727,592,683,661,677,624,668,677,657,715,672,687,775,667,652,540,621,588,631,678,700,683,602,593,646,670,603,622,611,614,698,735
"Petroleum liquids : Alaska","thousand megawatthours","ELEC.GEN.PEL-AK-99.M",71,68,91,76,75,58,64,67,71,92,99,105,109,96,98,70,71,100,66,65,69,75,68,76,76,66,59,60,59,58,71,66,71,79,78,103,92,79,72,54,50,47,67,66,58,56,49,57,103,58,51,48,55,62,57,62,51,63,66,84,89,62,67,63,56,57,67,74,50,55,69,62,70,54,108,65,60,59,87,110,91,110,80,116,125,114,76,77,81,54,56,55,58,66,80,136,160,118,122,125,75,73,83,83,55,54,104,105,124,98,86,77,64,50,57,58,53,64,73,134,114,102,89,57,60,56,59,53,59,105,97,96,116,68,103,64,81,66,104,97,90,67,72,111,95,65,66,76,77,55,52,51,60,58,76,86,79,64,66,56,70,51,69,68,68,70,62,64,80,65,76,69,65,59,75,81
"Petroleum liquids : Hawaii","thousand megawatthours","ELEC.GEN.PEL-HI-99.M",726,613,691,653,669,660,725,747,700,705,660,676,744,668,763,792,787,791,827,867,813,862,776,777,665,610,700,659,702,706,755,768,762,781,697,699,709,674,719,710,728,749,800,817,798,790,725,726,757,615,678,696,753,737,836,894,850,767,696,789,758,647,709,690,736,783,808,907,776,776,737,729,729,644,736,693,751,740,781,815,772,809,725,718,683,663,736,699,742,723,771,738,749,770,700,696,674,610,632,623,731,699,741,743,712,770,672,681,680,598,647,635,696,668,707,710,693,707,672,674,650,613,671,661,641,623,669,689,695,680,641,691,646,573,594,574,590,587,590,641,588,650,590,860,632,526,617,585,600,569,616,626,597,657,596,601,696,603,586,484,550,537,562,611,632,613,540,529,566,605,527,553,546,555,623,654
"Petroleum coke","thousand megawatthours","ELEC.GEN.PC-US-99.M","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""
"Petroleum coke : United States","thousand megawatthours","ELEC.GEN.PC-US-99.M",812,716,752,627,749,825,992,994,911,961,841,1055,1257,1275,1280,1299,1462,1367,1406,1543,1405,1206,1113,1252,1124,1030,876,1267,1212,1465,1659,1642,1549,1640,1541,1666,1925,1665,1634,1641,1725,1657,1761,1893,1607,1738,1604,1903,1929,1740,1880,1679,1891,2043,1995,2114,1827,1793,1668,1827,1890,1667,1607,1651,1518,1706,1881,1788,1602,1538,1392,1466,1574,1287,1297,1250,1384,1564,1369,1485,1289,1189,1135,1412,1366,1231,1039,1126,1055,1255,1174,1264,1181,1343,1154,1137,1136,1051,1260,1148,1156,1153,1234,1193,1176,746,757,954,1161,1122,1198,1067,1143,1333,1441,1157,1108,1007,860,1128,1555,1217,1416,965,1023,1220,1440,1299,1305,948,701,1007,1297,994,570,538,651,762,809,916,882,744,824,800,1042,867,1007,891,1345,1307,1354,1372,1222,1074,850,1013,1181,941,1215,811,1056,1113,1028,1009,951,580,753,1143,1039,1115,734,806,928,817,1145,1074
"Petroleum coke : New England","thousand megawatthours","ELEC.GEN.PC-NEW-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Petroleum coke : Connecticut","thousand megawatthours","ELEC.GEN.PC-CT-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Petroleum coke : Maine","thousand megawatthours","ELEC.GEN.PC-ME-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Petroleum coke : Massachusetts","thousand megawatthours","ELEC.GEN.PC-MA-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Petroleum coke : New Hampshire","thousand megawatthours","ELEC.GEN.PC-NH-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Petroleum coke : Rhode Island","thousand megawatthours","ELEC.GEN.PC-RI-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Petroleum coke : Vermont","thousand megawatthours","ELEC.GEN.PC-VT-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Petroleum coke : Middle Atlantic","thousand megawatthours","ELEC.GEN.PC-MAT-99.M",14,10,13,5,31,16,15,10,20,18,16,39,49,49,28,23,54,52,59,61,53,53,39,42,53,54,52,45,34,55,51,93,59,57,48,60,71,66,88,81,49,79,73,80,51,55,67,59,151,135,156,161,72,147,152,157,139,128,138,122,127,69,73,70,48,48,31,75,34,45,55,48,62,28,41,43,29,28,29,48,43,25,25,27,27,27,16,15,23,33,35,34,43,33,38,42,40,31,7,2,9,12,67,61,68,17,13,13,7,52,52,70,63,57,118,9,12,28,0,52,43,30,140,"NM",9,12,37,26,13,9,7,12,10,7,-3,2,7,9,10,2,6,10,8,8,21,17,-0,16,20,18,23,22,13,24,19,22,"NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM"
"Petroleum coke : New Jersey","thousand megawatthours","ELEC.GEN.PC-NJ-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",7,5,6,4,4,5,6,5,5,4,3,4,5,3,1,2,4,4,4,2,3,5,4,4,5,4,0,4,5,5,6,6,3,6,5,6,"NM","NM","NM","NM","NM","NM",0,0,0,0,0,"NM","NM","NM",0,"NM","NM","NM","NM","NM"
"Petroleum coke : New York","thousand megawatthours","ELEC.GEN.PC-NY-99.M",0,1,0,0,0,0,1,1,5,0,0,9,9,7,6,4,9,7,10,9,10,10,10,8,6,1,6,6,4,8,9,10,9,14,8,10,17,18,19,12,19,19,16,23,19,20,18,20,105,96,117,118,38,95,118,121,113,111,117,105,103,33,39,44,21,27,12,54,18,36,37,31,55,14,25,25,10,10,13,32,39,9,11,11,13,12,11,11,9,12,13,13,13,13,19,19,18,10,2,0,0,0,44,41,42,0,0,2,5,52,52,70,62,56,118,9,12,28,0,52,36,25,134,"NM",5,"NM",30,15,"NM","NM",0,"NM",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
"Petroleum coke : Pennsylvania","thousand megawatthours","ELEC.GEN.PC-PA-99.M",14,9,13,5,31,16,14,8,15,18,16,31,40,42,23,19,45,45,49,52,43,43,29,34,47,52,46,39,31,47,42,83,50,43,40,51,54,49,69,69,30,60,57,57,32,35,49,39,46,39,39,43,35,52,34,36,26,17,21,17,24,36,34,25,27,21,18,21,16,10,19,17,7,14,16,18,19,18,17,17,4,17,15,16,14,15,5,4,14,21,22,21,30,20,19,22,23,21,5,2,9,12,22,20,26,17,13,11,2,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,5,4,4,5,5,4,-4,-0,3,5,6,-1,2,5,4,5,16,12,-0,12,15,13,17,16,9,18,14,16,"NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM"
"Petroleum coke : East North Central","thousand megawatthours","ELEC.GEN.PC-ENC-99.M",34,38,25,22,25,42,55,97,39,26,34,34,68,38,58,75,73,74,62,64,33,49,33,26,64,51,46,62,65,52,62,92,66,81,59,47,194,164,146,175,194,179,170,160,165,118,195,322,173,138,168,204,186,155,133,146,134,157,146,147,156,137,161,138,150,157,178,154,148,174,166,177,181,171,150,175,186,178,187,177,129,81,146,170,194,171,179,174,165,186,163,191,174,189,176,192,164,139,171,150,160,170,172,139,165,142,165,177,164,183,137,150,177,179,178,176,172,163,165,177,204,306,299,253,285,274,246,286,295,162,138,198,315,290,121,77,133,281,180,288,277,129,114,114,280,240,302,139,263,253,319,321,214,183,349,407,281,188,362,292,295,318,330,283,313,87,194,269,280,311,180,183,223,358,335,327
"Petroleum coke : Illinois","thousand megawatthours","ELEC.GEN.PC-IL-99.M",1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,10,10,15,28,31,25,22,23,11,7,1,1,1,1,2,1,4,4,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
"Petroleum coke : Indiana","thousand megawatthours","ELEC.GEN.PC-IN-99.M",11,10,0,0,1,14,26,63,20,4,9,9,34,9,36,38,41,41,34,30,6,22,12,1,24,10,0,14,26,12,10,44,28,40,21,0,31,32,32,29,39,32,8,17,15,3,16,0,0,6,8,48,38,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29,153,168,96,140,122,68,123,157,37,0,69,174,164,0,0,36,153,27,134,145,0,0,0,146,121,164,13,171,98,160,168,77,0,136,180,133,27,167,103,109,109,122,102,106,8,58,96,112,133,0,0,38,170,150,124
"Petroleum coke : Michigan","thousand megawatthours","ELEC.GEN.PC-MI-99.M",0,0,0,0,0,0,0,0,0,0,0,0,4,4,1,4,3,3,3,3,3,1,2,2,17,16,18,15,14,15,16,18,14,13,16,15,7,0,0,0,0,0,0,0,0,0,0,147,6,5,0,5,2,7,7,9,8,8,8,8,8,7,8,6,8,8,8,8,8,6,8,8,18,20,22,22,23,13,24,23,20,21,21,15,14,11,11,10,14,14,16,18,15,18,19,13,13,14,13,8,9,19,19,19,18,19,18,14,16,21,23,6,11,18,13,18,18,18,17,13,11,12,16,15,17,17,17,15,14,9,11,9,13,16,16,13,18,17,18,18,15,14,16,13,14,15,16,10,18,22,21,22,17,55,95,99,53,50,76,68,84,82,81,76,86,60,74,61,72,68,66,64,66,78,66,80
"Petroleum coke : Ohio","thousand megawatthours","ELEC.GEN.PC-OH-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",92,78,70,92,100,94,91,89,95,44,96,94,88,53,96,87,100,89,63,91,88,97,90,90,97,56,87,91,93,86,98,71,79,101,92,95,87,77,65,80,90,89,81,67,52,0,65,82,94,92,98,97,102,96,66,103,97,101,100,102,71,75,101,95,103,82,95,64,97,77,94,96,76,102,62,97,104,97,100,94,107,107,95,103,93,86,60,98,91,92,99,96,87,94,94,84,102,89,80,41,66,86,99,106,98,99,77,80,100,91,102,99,59,100,102,103,101,104,98,100,68,91,89,99,85,100,102,73,99,9,44,94,85,92,101,98,103,99,101,101
"Petroleum coke : Wisconsin","thousand megawatthours","ELEC.GEN.PC-WI-99.M",22,27,23,21,22,26,28,32,17,21,23,25,30,25,21,33,28,30,25,30,24,25,19,23,24,25,29,32,25,25,35,30,24,28,22,32,64,55,44,53,55,54,61,43,45,57,55,49,54,53,40,53,40,57,61,45,36,50,47,45,46,61,65,40,49,62,72,76,61,68,66,74,76,73,62,73,73,76,81,87,57,60,61,73,86,68,70,67,49,77,81,71,62,70,57,77,80,51,57,47,49,60,57,56,50,46,52,67,72,60,52,46,61,64,65,65,47,38,53,61,70,55,56,44,37,44,61,53,37,22,33,37,27,22,24,24,14,25,36,30,20,16,21,21,21,13,21,17,16,34,35,29,19,24,20,27,26,21,29,23,16,28,25,32,22,10,18,18,12,17,12,21,16,11,18,22
"Petroleum coke : West North Central","thousand megawatthours","ELEC.GEN.PC-WNC-99.M",72,82,74,28,57,123,104,98,108,101,84,88,96,105,106,63,72,41,118,128,97,93,56,65,51,61,68,27,72,66,91,78,61,75,70,74,71,47,66,23,30,79,68,97,67,133,90,61,69,46,64,57,43,95,51,68,25,17,68,82,62,67,32,51,57,56,58,39,21,21,23,23,38,31,40,40,40,43,40,44,32,37,42,31,35,34,27,26,24,16,28,40,23,22,24,11,11,16,13,7,8,12,17,10,7,11,9,20,21,18,14,13,10,13,14,13,8,5,3,10,13,13,14,2,6,7,13,13,8,0,0,1,2,10,1,-0,-0,0,1,1,1,1,1,1,9,6,9,6,4,5,1,9,7,9,2,6,"NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM"
"Petroleum coke : Iowa","thousand megawatthours","ELEC.GEN.PC-IA-99.M",0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,4,4,4,4,0,0,0,0,3,4,5,5,1,1,1,0,0,0,0,0,1,1,1,1,9,9,8,8,7,8,9,10,9,9,7,8,6,11,11,14,12,11,11,12,9,12,13,11,11,10,5,14,11,4,10,11,1,1,1,1,2,3,2,1,0,1,6,1,1,2,2,9,11,9,6,5,5,6,8,6,5,3,1,7,10,10,12,0,5,6,11,8,8,0,0,1,2,10,1,-0,-0,0,1,1,1,1,1,1,9,6,9,6,4,5,1,9,7,9,2,6,"NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM"
"Petroleum coke : Kansas","thousand megawatthours","ELEC.GEN.PC-KS-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",14,14,13,14,10,14,16,16,12,13,14,14,10,8,10,8,5,2,7,11,6,5,7,9,8,11,8,3,6,6,8,7,4,8,5,8,8,7,5,6,5,6,6,6,2,2,2,2,2,3,3,2,1,2,2,5,0,0,0,0,0,0,-0,-0,0,0,0,0,0,0,-0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
"Petroleum coke : Minnesota","thousand megawatthours","ELEC.GEN.PC-MN-99.M",41,41,48,27,12,54,39,32,48,48,60,54,50,46,55,27,35,41,62,56,52,58,54,65,51,60,68,27,71,55,59,73,59,73,70,73,67,43,62,19,30,78,67,77,50,70,66,42,68,45,63,31,43,54,51,68,24,16,67,81,52,58,24,43,50,47,49,29,12,12,16,15,18,6,15,12,18,17,13,15,11,12,16,6,14,16,11,5,8,10,11,18,16,15,16,0,-1,-0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Petroleum coke : Missouri","thousand megawatthours","ELEC.GEN.PC-MO-99.M",31,41,26,0,45,68,64,67,60,53,24,34,45,58,51,35,36,0,56,71,44,35,1,0,0,0,0,0,0,11,32,5,1,2,0,0,0,0,0,0,0,1,1,20,14,60,20,14,0,0,0,25,0,41,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,-0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,2,4,3,2,5,3,2,2,1,2,3,2,1,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Petroleum coke : Nebraska","thousand megawatthours","ELEC.GEN.PC-NE-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Petroleum coke : North Dakota","thousand megawatthours","ELEC.GEN.PC-ND-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Petroleum coke : South Dakota","thousand megawatthours","ELEC.GEN.PC-SD-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Petroleum coke : South Atlantic","thousand megawatthours","ELEC.GEN.PC-SAT-99.M",203,150,171,167,208,227,328,392,348,392,331,422,382,395,337,350,563,622,443,475,543,435,385,460,474,523,282,470,460,619,677,588,570,717,536,652,693,653,534,510,662,616,723,760,584,631,616,634,710,680,666,603,817,863,895,969,746,674,591,669,752,694,638,675,542,688,849,735,680,542,425,409,537,537,500,353,497,542,375,479,370,343,208,386,378,333,264,227,214,333,323,360,315,425,357,287,350,296,407,398,452,387,424,441,364,82,47,123,322,356,403,312,343,390,395,363,353,98,34,344,353,171,158,42,133,202,281,279,276,186,32,200,274,142,30,28,25,34,125,99,86,24,58,26,36,25,147,182,337,319,312,307,296,172,48,88,222,199,218,241,239,186,17,17,15,17,13,159,142,174,110,104,119,138,221,220
"Petroleum coke : Delaware","thousand megawatthours","ELEC.GEN.PC-DE-99.M",1,1,4,5,0,1,2,0,1,7,0,2,4,3,2,0,0,2,11,10,10,8,2,0,0,0,0,1,14,11,3,3,7,9,3,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
"Petroleum coke : District Of Columbia","thousand megawatthours","ELEC.GEN.PC-DC-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Petroleum coke : Florida","thousand megawatthours","ELEC.GEN.PC-FL-99.M",164,118,137,128,177,193,284,361,306,344,301,391,324,349,300,298,527,580,380,425,493,371,341,418,426,475,247,420,410,565,621,546,517,650,484,577,638,558,453,439,603,503,608,677,504,520,536,544,614,611,577,528,737,787,787,912,698,620,543,629,693,635,595,629,495,641,799,683,628,492,382,358,490,489,447,314,451,491,325,431,333,294,164,340,335,300,230,189,172,287,279,319,259,349,324,253,305,253,333,321,356,309,321,313,299,12,0,85,275,315,346,268,301,346,350,320,320,59,-5,304,313,136,122,2,98,164,245,245,250,150,1,172,240,112,0,0,0,9,97,74,73,0,35,5,15,0,123,162,317,308,296,292,281,157,40,71,207,179,199,227,228,172,0,0,0,0,0,140,124,157,90,86,113,126,209,207
"Petroleum coke : Georgia","thousand megawatthours","ELEC.GEN.PC-GA-99.M",38,31,30,33,32,33,42,32,41,41,29,30,55,43,35,52,36,40,52,41,40,57,42,41,49,32,35,49,36,43,53,39,45,46,33,54,46,44,45,48,41,45,57,45,39,54,37,44,54,28,46,49,42,48,61,45,48,54,47,40,58,47,41,46,47,46,50,52,52,50,43,51,47,48,53,39,46,50,50,48,37,49,44,46,43,33,34,38,42,46,44,41,38,43,32,34,46,41,32,42,40,27,37,47,40,44,47,39,47,41,29,44,41,44,45,43,33,39,39,40,40,35,35,39,35,38,36,34,27,36,31,28,33,31,30,28,25,26,27,24,12,24,23,21,22,25,24,21,21,11,16,15,15,15,8,17,15,20,20,14,11,14,17,17,15,17,13,19,18,17,19,19,6,12,12,14
"Petroleum coke : Maryland","thousand megawatthours","ELEC.GEN.PC-MD-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Petroleum coke : North Carolina","thousand megawatthours","ELEC.GEN.PC-NC-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Petroleum coke : South Carolina","thousand megawatthours","ELEC.GEN.PC-SC-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,15,0,0,0,0,0,0,0,12,16,4,9,52,37,23,17,67,58,38,40,58,44,47,43,42,43,26,38,29,48,12,0,0,0,0,1,12,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,33,0,0,0,2,43,35,56,51,65,81,25,25,0,0,0,0,28,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
"Petroleum coke : Virginia","thousand megawatthours","ELEC.GEN.PC-VA-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Petroleum coke : West Virginia","thousand megawatthours","ELEC.GEN.PC-WV-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,"--",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
"Petroleum coke : East South Central","thousand megawatthours","ELEC.GEN.PC-ESC-99.M","--","--","--","--","--","--","--","--","--","--","--","--",204,318,276,344,243,116,235,328,284,190,142,215,0,2,4,332,222,292,336,328,311,227,381,359,385,328,326,442,306,186,209,244,218,370,180,306,365,293,308,254,297,298,299,275,296,359,249,270,270,249,228,255,245,262,266,273,244,320,322,311,279,181,195,178,181,255,244,219,204,227,228,281,297,250,134,196,219,251,260,220,233,265,203,215,200,181,225,164,178,188,154,154,126,95,93,132,165,144,188,186,169,221,214,188,171,187,153,176,170,159,123,109,157,137,150,128,149,132,103,77,58,58,92,117,149,145,151,144,115,110,143,147,139,124,48,113,119,118,125,109,108,108,80,111,116,78,69,60,63,51,84,144,111,88,75,94,108,109,121,68,73,84,80,77
"Petroleum coke : Alabama","thousand megawatthours","ELEC.GEN.PC-AL-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,"--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Petroleum coke : Kentucky","thousand megawatthours","ELEC.GEN.PC-KY-99.M","--","--","--","--","--","--","--","--","--","--","--","--",204,318,276,344,243,116,235,328,284,190,142,215,0,2,4,332,222,292,336,328,311,227,381,359,385,328,326,442,306,186,209,244,218,370,180,306,365,293,308,254,297,298,299,275,296,359,249,270,270,249,228,255,245,262,266,273,244,320,322,311,279,181,195,178,181,255,244,219,204,227,228,281,297,250,134,196,219,251,260,220,233,265,203,215,200,181,225,164,178,188,154,154,126,95,93,132,165,144,188,186,169,221,214,188,171,187,153,176,170,159,123,109,157,137,150,128,149,132,103,77,58,58,92,117,149,145,151,144,115,110,143,147,139,124,48,113,119,118,125,109,108,108,80,111,116,78,69,60,63,51,84,144,111,88,75,94,108,109,121,68,73,84,80,77
"Petroleum coke : Mississippi","thousand megawatthours","ELEC.GEN.PC-MS-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Petroleum coke : Tennessee","thousand megawatthours","ELEC.GEN.PC-TN-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Petroleum coke : West South Central","thousand megawatthours","ELEC.GEN.PC-WSC-99.M",252,222,268,203,224,215,262,205,190,169,136,231,261,231,261,243,281,260,264,286,221,207,280,245,284,165,225,171,156,164,200,233,248,280,298,300,303,225,260,247,290,286,283,302,294,251,254,301,229,232,281,202,264,252,244,270,244,241,260,306,291,254,255,246,289,286,272,300,263,253,217,287,254,150,173,256,250,296,279,302,291,279,269,302,256,247,245,303,259,269,227,292,237,246,172,199,199,238,286,274,200,222,233,235,288,252,271,326,351,248,267,215,258,354,404,322,312,410,374,251,690,434,553,436,310,473,586,445,458,365,327,421,540,412,278,272,288,273,306,336,350,420,453,456,515,421,458,394,563,569,534,568,542,534,314,337,500,423,502,158,401,530,556,501,451,336,415,552,444,458,270,391,450,182,445,384
"Petroleum coke : Arkansas","thousand megawatthours","ELEC.GEN.PC-AR-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
"Petroleum coke : Louisiana","thousand megawatthours","ELEC.GEN.PC-LA-99.M",167,151,162,124,123,122,163,109,91,166,133,155,159,127,172,134,164,144,167,165,104,124,165,125,146,110,145,137,131,141,177,174,132,189,186,186,180,137,152,134,176,164,157,168,169,123,144,167,118,138,162,129,148,153,140,137,112,107,135,161,139,146,127,122,142,133,134,153,119,142,97,159,130,122,150,137,146,180,192,191,191,172,176,181,144,169,188,192,148,178,146,183,169,177,169,174,133,143,177,171,102,90,104,99,178,156,190,211,250,197,228,208,199,246,319,230,302,398,363,236,540,343,479,390,262,398,480,378,393,324,308,364,392,336,192,182,205,179,208,146,214,324,305,310,427,398,372,308,474,480,432,420,470,491,299,320,484,410,484,141,385,514,539,485,439,323,401,539,431,447,258,376,439,170,433,373
"Petroleum coke : Oklahoma","thousand megawatthours","ELEC.GEN.PC-OK-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
"Petroleum coke : Texas","thousand megawatthours","ELEC.GEN.PC-TX-99.M",85,72,106,79,100,93,99,96,100,4,3,76,102,103,88,109,117,116,97,121,117,83,115,120,138,55,80,34,25,22,23,59,116,91,112,114,123,88,107,112,114,122,126,134,125,128,110,133,111,94,118,73,115,97,104,133,132,133,125,145,152,108,128,124,148,153,138,147,144,111,119,128,124,28,23,119,104,116,87,111,99,108,93,121,112,78,57,111,111,91,81,110,68,69,4,25,66,95,109,103,98,132,129,136,110,96,81,114,101,51,39,7,59,108,84,92,9,11,11,14,150,91,75,46,48,75,105,67,65,41,"NM",58,148,76,87,90,83,94,98,190,136,96,148,147,88,23,85,86,89,90,102,148,72,43,15,17,15,13,18,17,15,17,17,15,12,13,13,13,13,12,12,15,"NM",11,"NM",11
"Petroleum coke : Mountain","thousand megawatthours","ELEC.GEN.PC-MTN-99.M",40,33,37,39,36,33,35,24,52,52,64,51,55,36,58,76,40,36,40,16,0,25,31,43,39,36,39,39,40,37,31,35,50,31,2,10,37,35,37,37,37,26,34,36,36,37,27,38,38,35,38,34,33,32,27,18,33,37,37,37,38,34,37,36,33,30,27,18,34,36,36,38,45,40,44,38,43,36,25,25,40,40,41,46,37,40,43,42,42,41,7,0,27,43,41,40,43,37,43,38,42,40,37,37,41,34,43,44,40,39,43,38,42,29,41,8,0,32,41,43,21,38,42,41,42,38,39,38,37,22,40,44,40,39,42,40,42,11,30,40,41,44,42,42,42,35,43,41,36,20,38,33,37,43,38,42,36,29,37,40,34,0,20,43,41,39,41,43,41,38,39,40,41,40,41,42
"Petroleum coke : Arizona","thousand megawatthours","ELEC.GEN.PC-AZ-99.M",0,"--",0,0,"--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Petroleum coke : Colorado","thousand megawatthours","ELEC.GEN.PC-CO-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Petroleum coke : Idaho","thousand megawatthours","ELEC.GEN.PC-ID-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Petroleum coke : Montana","thousand megawatthours","ELEC.GEN.PC-MT-99.M",40,33,37,39,36,33,35,24,52,52,64,51,55,36,58,76,40,36,40,16,0,25,31,43,39,36,39,39,40,37,31,35,50,31,2,10,37,35,37,37,37,26,34,36,36,37,27,38,38,35,38,34,33,32,27,18,33,37,37,37,38,34,37,36,33,30,27,18,34,36,36,38,45,40,44,38,43,36,25,25,40,40,41,46,37,40,43,42,42,41,7,0,27,43,41,40,43,37,43,38,42,40,37,37,41,34,43,44,40,39,43,38,42,29,41,8,0,32,41,43,21,38,42,41,42,38,39,38,37,22,40,44,40,39,42,40,42,11,30,40,41,44,42,42,42,35,43,41,36,20,38,33,37,43,38,42,36,29,37,40,34,0,20,43,41,39,41,43,41,38,39,40,41,40,41,42
"Petroleum coke : Nevada","thousand megawatthours","ELEC.GEN.PC-NV-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Petroleum coke : New Mexico","thousand megawatthours","ELEC.GEN.PC-NM-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Petroleum coke : Utah","thousand megawatthours","ELEC.GEN.PC-UT-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Petroleum coke : Wyoming","thousand megawatthours","ELEC.GEN.PC-WY-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Petroleum coke : Pacific Contiguous","thousand megawatthours","ELEC.GEN.PC-PCC-99.M",196,179,164,162,168,170,193,168,153,202,176,189,142,104,156,125,137,165,184,185,173,155,148,157,158,139,159,120,164,181,213,194,184,174,147,164,171,146,176,127,156,207,202,213,192,142,175,183,194,181,200,165,178,201,195,211,210,180,178,194,195,164,182,181,153,181,200,193,179,147,148,173,178,149,155,166,160,186,190,190,179,156,176,170,143,131,131,143,109,125,131,126,128,119,144,151,128,112,108,114,107,122,131,115,118,113,116,121,91,81,95,82,81,90,77,78,81,83,89,76,61,66,87,77,79,76,89,83,68,71,53,53,58,35,"NM",2,"NM","NM","NM","NM","NM","NM","NM","NM",0,0,0,0,3,5,4,4,4,1,0,0,"NM","NM","NM","NM","NM","NM",2,3,2,0,0,"NM","NM","NM","NM","NM","NM","NM","NM","NM"
"Petroleum coke : California","thousand megawatthours","ELEC.GEN.PC-CA-99.M",196,179,164,162,168,170,193,168,153,202,176,189,142,104,156,125,137,165,184,185,173,155,148,157,158,139,159,120,164,181,213,194,184,174,147,164,171,146,176,127,156,207,202,213,192,142,175,183,194,181,200,165,178,201,195,211,210,180,178,194,195,164,182,181,153,181,200,193,179,147,148,173,178,149,155,166,160,186,190,190,179,156,176,170,143,131,131,143,109,125,131,126,128,119,144,151,128,112,108,114,107,122,131,115,118,113,116,121,91,81,95,82,81,90,77,78,81,83,89,76,61,66,87,77,79,76,89,83,68,71,53,53,58,35,"NM",2,"NM","NM","NM","NM","NM","NM","NM","NM",0,0,0,0,3,5,4,4,4,1,0,0,"NM","NM","NM","NM","NM","NM",2,3,2,0,0,"NM","NM","NM","NM","NM","NM","NM","NM","NM"
"Petroleum coke : Oregon","thousand megawatthours","ELEC.GEN.PC-OR-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Petroleum coke : Washington","thousand megawatthours","ELEC.GEN.PC-WA-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Petroleum coke : Pacific Noncontiguous","thousand megawatthours","ELEC.GEN.PC-PCN-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Petroleum coke : Alaska","thousand megawatthours","ELEC.GEN.PC-AK-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Petroleum coke : Hawaii","thousand megawatthours","ELEC.GEN.PC-HI-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Natural gas","thousand megawatthours","ELEC.GEN.NG-US-99.M","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""
"Natural gas : United States","thousand megawatthours","ELEC.GEN.NG-US-99.M",42389,37967,44364,45843,50934,57603,73030,78410,60181,56376,44491,47541,48413,44308,51214,49146,50275,65631,83917,84477,68161,54201,45161,46100,50176,43547,46699,45195,49373,54453,76938,83250,59090,51824,45328,44035,48253,50320,49801,51822,62022,64686,79290,77821,67854,57229,49693,51310,51338,44913,51897,52016,54826,75635,96819,100787,73355,55941,49440,53993,43807,47409,54922,56091,65586,81060,108094,106592,72673,70640,53440,56128,61475,57622,56204,60153,66470,81511,97483,121338,88532,78358,60637,66808,72600,60042,62171,63046,62270,84620,100321,99673,79136,73283,61454,64364,66390,62139,68203,61159,68146,84205,101894,109240,92127,72603,63285,71590,74173,66198,63431,64644,73665,92268,114624,121151,93004,77738,69227,77573,74254,65924,65947,70029,75243,90691,119624,119856,91739,78819,75441,86122,90761,90610,92251,94829,107352,115598,138863,131736,108012,91725,80169,83989,88559,80283,84725,78036,83816,99615,120771,121156,102063,88587,84287,92936,90926,75449,77950,76728,88514,98441,114582,121849,106295,97125,83990,90077,101330,91013,98889,92516,101148,120481,139997,138243
"Natural gas : New England","thousand megawatthours","ELEC.GEN.NG-NEW-99.M",1662,1790,2515,1658,2422,2745,3067,3744,3831,3569,2950,3340,3770,3031,3509,2808,3773,3443,4316,4561,4240,3874,3647,3805,3380,2817,3307,3348,3063,3587,5052,5139,4573,4844,3946,3491,3157,3561,3973,4567,3923,4513,4619,4921,4320,3897,3892,3756,3370,3744,3777,4632,4331,4866,5573,5827,4385,3683,3374,2848,3598,3609,4186,3528,4089,4681,6208,5425,4775,5418,3736,3625,3733,3217,3692,4391,4047,4396,6053,6341,5199,4587,4119,4367,3897,3420,3431,4287,3824,4297,6002,4606,4462,4660,4315,4037,4020,3720,3824,3475,3278,3643,4929,5810,4486,4677,4292,4876,4470,3618,3366,3417,4562,5535,6942,6515,5689,4674,4972,4864,4703,4315,4369,4976,4877,5056,6835,6596,5867,5446,5235,4962,4853,4818,4571,3916,4690,5394,7163,7342,5959,5512,4379,3893,3957,2953,3587,4063,4804,4525,6495,5747,4806,4417,3621,3178,2791,2644,2666,4015,3933,4747,6008,5359,4553,4151,3304,3459,3626,2791,3555,3771,4751,4707,6328,6614
"Natural gas : Connecticut","thousand megawatthours","ELEC.GEN.NG-CT-99.M",126,211,340,80,145,260,317,527,675,615,292,501,579,544,644,545,831,748,1029,1057,956,739,591,606,349,290,484,402,374,321,439,530,510,438,523,401,370,546,536,582,804,795,878,962,881,623,560,572,511,702,682,825,944,808,979,985,619,678,594,536,682,725,916,822,855,1024,1186,1011,838,910,766,751,691,676,742,804,902,765,1062,1143,919,841,671,714,737,568,383,574,729,632,1023,753,622,896,572,581,658,733,842,639,672,662,1062,1161,827,940,744,869,944,734,611,576,848,1084,1396,1193,1153,998,1266,912,1085,1100,949,980,1173,1192,1515,1591,1558,1390,1344,1309,1186,1114,1177,1055,1044,1329,1763,1778,1539,1557,1606,1390,1291,1230,1318,1239,1414,1236,1632,1449,1349,1211,1240,1171,889,960,1021,1252,1160,1306,1630,1564,1178,1041,1224,1423,1545,1107,1248,1295,1273,1352,1617,1719
"Natural gas : Maine","thousand megawatthours","ELEC.GEN.NG-ME-99.M",504,580,690,566,796,819,965,1072,1022,958,1061,1020,1236,1122,1137,974,1149,924,1129,1199,1157,1155,1189,1133,1140,605,706,739,650,685,860,810,778,928,810,726,650,837,840,822,784,785,819,934,747,845,924,846,711,753,796,732,606,778,880,904,710,693,590,245,401,494,460,455,621,629,886,705,608,828,670,541,615,491,574,490,432,541,803,795,463,358,473,639,586,414,444,647,665,494,760,577,713,665,754,661,569,522,582,446,453,658,687,679,607,741,676,737,691,556,462,436,645,807,951,926,836,723,622,719,585,394,360,569,585,564,767,691,586,542,545,690,663,632,500,275,250,444,699,781,547,482,385,385,515,332,420,351,343,406,470,387,362,365,403,518,452,306,302,320,279,542,658,408,281,239,364,280,313,229,320,182,177,141,221,325
"Natural gas : Massachusetts","thousand megawatthours","ELEC.GEN.NG-MA-99.M",626,562,902,566,824,1052,1096,1362,1364,1235,1034,1074,1275,850,1251,880,1346,1284,1619,1754,1615,1485,1103,1408,1131,1175,1219,1719,1554,2004,2698,2561,2296,2562,1801,1704,1457,1307,1761,2303,1645,1922,2056,2030,1819,1838,1414,1420,1291,1280,1430,2062,1615,1972,2335,2512,2013,1367,1270,1223,1396,1472,1765,1681,1994,2282,2958,2504,2091,2265,1538,1361,1411,1252,1772,2249,1863,2145,2738,2889,2312,2247,2094,1952,1289,1305,1460,1855,1460,2073,2732,2029,1871,1849,1909,1682,1516,1316,1526,1532,1191,1441,2003,2655,2038,2119,1796,1856,1789,1527,1579,1757,2275,2454,3198,2891,2382,1898,1861,1969,1859,1654,1770,2341,1876,2192,3015,2924,2358,2411,1916,1624,1639,1641,1827,1626,1992,2262,3127,3131,2513,2133,1627,1155,1397,880,1220,1905,2152,1878,3033,2691,1965,1960,1289,887,1031,1070,816,1504,1600,1847,2394,2176,1912,1817,1096,934,951,896,1057,1499,1987,1897,2993,2998
"Natural gas : New Hampshire","thousand megawatthours","ELEC.GEN.NG-NH-99.M",8,6,6,9,8,7,6,7,19,29,5,8,7,5,6,9,10,17,11,29,22,22,36,47,261,235,353,221,237,165,435,690,486,494,285,303,264,519,578,556,190,502,446,468,524,286,565,502,476,601,521,510,646,688,730,763,538,426,496,389,671,573,710,329,161,234,428,624,660,700,335,581,521,246,249,438,361,483,694,672,781,497,418,393,629,639,663,482,497,480,692,593,656,592,625,526,664,575,232,399,450,265,422,444,345,388,457,702,422,283,203,93,252,450,616,636,633,393,787,597,463,654,562,582,551,393,692,596,519,389,619,638,729,679,498,419,654,627,733,702,624,600,309,475,394,313,312,16,172,410,575,511,444,295,332,328,80,56,267,467,422,404,554,468,466,497,275,431,518,317,485,471,553,514,590,649
"Natural gas : Rhode Island","thousand megawatthours","ELEC.GEN.NG-RI-99.M",395,430,576,437,644,608,682,776,749,732,558,738,673,509,471,400,437,469,527,522,489,473,728,611,498,511,545,268,247,412,620,547,502,422,527,357,415,352,257,305,500,507,420,526,350,305,430,416,381,408,347,502,520,620,649,663,504,519,423,455,448,345,336,241,459,512,749,580,578,715,428,390,495,552,355,409,488,462,756,842,724,643,463,668,656,494,480,730,472,618,795,654,599,658,455,587,614,575,641,458,511,617,755,872,668,489,618,712,623,517,511,554,541,740,782,869,683,661,436,666,711,512,728,504,691,715,846,794,845,713,810,701,636,752,569,541,750,732,841,949,735,741,452,488,359,198,317,551,723,594,785,709,687,587,356,273,339,251,260,471,472,648,771,743,716,556,344,390,298,242,444,323,762,804,906,923
"Natural gas : Vermont","thousand megawatthours","ELEC.GEN.NG-VT-99.M",3,0,1,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
"Natural gas : Middle Atlantic","thousand megawatthours","ELEC.GEN.NG-MAT-99.M",2881,2865,3567,3349,4453,5894,6373,8060,6091,5736,4466,4706,4396,4243,4453,4111,4047,6175,8411,8779,6569,4926,4087,4040,3569,3022,3728,3587,3285,3971,6047,6925,4639,3623,2948,3106,2869,3499,3051,3210,5902,5168,6193,6261,5920,3208,3791,3997,3273,2912,3950,3410,3457,6583,8984,9333,6099,3609,3054,3382,3168,3601,5221,4416,5566,7564,11477,10338,6176,5708,4025,4084,4323,4033,6040,5595,6188,8026,10235,12141,8244,7288,5293,6177,5590,5274,6055,5886,4832,8867,10820,8888,8480,7058,6051,5537,6033,6025,7148,7239,7198,7695,9476,11329,8545,7257,7109,6567,6498,6043,6562,7201,7635,10402,13968,12235,10708,8421,9032,8830,7692,7592,9120,8477,9202,10353,14057,12204,10314,9444,9227,10116,10104,10598,10137,10625,11844,13130,16650,14923,12151,10728,9982,9939,10107,10028,10314,9322,10233,11355,15884,13044,10799,9673,9801,10809,9411,9407,10212,8579,10107,12797,15009,14061,13163,12114,10491,11867,11283,9473,12394,10066,12160,13088,16402,16352
"Natural gas : New Jersey","thousand megawatthours","ELEC.GEN.NG-NJ-99.M",878,912,1324,1160,1217,1718,1720,2201,1501,1651,1249,1177,1359,1231,1375,1339,1304,1863,2434,2482,1909,1223,1253,1299,1136,887,1206,1176,1125,1257,1711,1847,1228,1102,990,1110,697,871,878,1157,1796,1631,1828,1936,1478,967,1237,1484,824,902,924,1033,761,1649,2231,2763,1416,917,827,1119,923,879,883,911,1258,1634,2472,2381,1322,1087,937,980,969,834,1225,1209,1305,1802,2404,2645,1893,1493,1356,1618,1556,1516,1569,1765,1414,2404,2605,2004,2072,1297,1476,1072,1520,1289,1140,1377,1687,1757,2148,2536,2079,1902,1615,1575,1816,1583,1401,1668,1958,2520,3204,2758,2262,1883,1809,2041,1830,1695,1713,2043,1947,2283,2912,2432,2069,2056,2156,2064,1854,1856,2142,2176,2782,2804,3591,3223,2811,2194,1424,1426,1654,1693,2099,2111,2180,2487,3524,2782,2377,2069,1962,2139,1936,2112,2204,1895,2142,2827,3455,3024,2952,2665,2700,2758,2540,2290,2996,2274,3103,3175,3818,3720
"Natural gas : New York","thousand megawatthours","ELEC.GEN.NG-NY-99.M",1900,1855,2097,2057,3071,3925,4361,5451,4193,3772,2847,3167,2816,2560,2626,2513,2451,3487,4843,4997,3957,3204,2528,2470,2181,1915,2165,2056,1840,2292,3485,3932,2922,2077,1677,1614,1631,1764,1703,1664,2654,2602,2744,2958,3323,2099,2158,1993,1948,1733,2293,2069,2342,3570,4721,4576,3265,1979,1608,1769,1957,2029,3129,2779,3407,4305,6122,5440,3877,3849,2691,2548,2759,2563,3681,3205,3524,4356,5123,5993,4419,3735,2955,3321,3091,2827,3283,3044,2951,4335,5535,4455,4166,3791,3303,3075,3054,2877,3455,3425,3232,3438,4170,5096,3487,3141,3141,3263,3143,2967,3017,3257,3504,4600,6271,5654,5114,3801,4008,3579,3446,3162,3946,3482,3770,4439,6426,5562,4513,4224,3745,4089,4084,3893,3766,4117,5103,5796,7502,6585,4948,4691,4676,4301,4108,4214,4396,3642,4273,4959,7221,5345,4204,3603,3885,4503,3802,3969,4242,3565,3949,5094,6027,5563,5118,4264,4027,4360,4220,3542,4799,3575,4809,4796,6283,6375
"Natural gas : Pennsylvania","thousand megawatthours","ELEC.GEN.NG-PA-99.M",103,98,146,132,165,251,292,408,397,313,370,362,221,453,452,259,292,825,1133,1300,703,499,305,271,252,219,357,355,320,422,851,1146,489,444,280,383,540,864,470,389,1451,935,1620,1367,1119,141,396,520,501,278,732,309,354,1363,2032,1994,1418,714,619,494,287,693,1209,727,901,1625,2883,2517,976,773,396,556,595,635,1134,1182,1359,1867,2708,3503,1932,2061,982,1239,943,931,1203,1077,468,2127,2680,2429,2242,1969,1272,1391,1459,1859,2553,2436,2278,2500,3158,3698,2978,2214,2354,1729,1539,1493,2145,2276,2173,3282,4493,3824,3332,2737,3216,3209,2416,2734,3461,2951,3485,3631,4719,4209,3732,3164,3325,3963,4167,4849,4228,4331,3958,4530,5557,5114,4391,3843,3882,4213,4345,4120,3820,3568,3780,3909,5138,4917,4218,4001,3954,4168,3674,3326,3766,3120,4016,4876,5527,5474,5093,5185,3764,4749,4523,3641,4599,4216,4248,5117,6301,6258
"Natural gas : East North Central","thousand megawatthours","ELEC.GEN.NG-ENC-99.M",1218,1406,1408,1200,1483,1823,3232,3830,1906,2135,1796,1833,1856,1984,2307,2634,1751,3202,6157,4933,3120,1722,1268,1625,2111,1922,1893,1645,1442,1478,2459,4392,1379,1134,1293,1450,2182,2001,1762,1618,2577,2379,2637,2446,2054,1402,1483,1633,2221,1231,2141,2430,1586,4872,5834,5521,2918,1653,1263,1906,1275,1180,1504,1774,1970,2308,5561,4721,1496,2106,1865,1349,2006,3004,2063,2022,2591,3249,3548,6905,2884,3001,1564,2320,2561,2281,2180,1203,824,2773,4060,3245,1769,1353,1149,1828,2848,2058,2232,1831,1520,2564,1937,3915,3146,1861,1485,1479,2403,1730,1433,1421,2636,3951,6542,6645,2079,2349,2157,3726,3833,2775,4163,2705,3695,3423,7809,5394,2333,3092,3528,4831,6601,7056,7139,7182,7976,8643,11833,7135,5132,4314,4480,4124,4738,4567,5112,4350,4896,4622,6957,6235,3527,4387,4300,4307,5783,4747,4770,3843,5047,4921,4640,5860,4668,4496,4407,5202,7409,7755,7939,6014,6135,7243,8793,7721
"Natural gas : Illinois","thousand megawatthours","ELEC.GEN.NG-IL-99.M",138,260,177,211,363,372,852,1074,290,321,269,280,291,377,545,827,406,1061,2409,1710,825,278,161,190,325,332,252,214,188,300,588,1077,181,142,136,167,222,201,168,99,495,521,603,530,273,79,68,133,405,182,434,419,272,1194,1355,1380,741,301,184,247,113,134,176,379,451,524,1386,1214,219,282,245,157,295,576,372,396,577,693,832,1914,670,627,276,313,386,305,221,169,141,528,909,567,327,169,169,370,530,305,375,367,326,656,400,709,445,144,110,128,314,209,162,156,402,716,1384,1489,312,110,111,357,369,256,322,327,589,557,1660,920,313,212,172,259,620,841,946,1081,851,1466,2381,1127,777,319,460,320,419,421,792,681,494,456,1246,875,518,240,353,331,650,189,260,198,614,559,432,737,477,577,395,460,817,731,815,727,630,908,1334,1014
"Natural gas : Indiana","thousand megawatthours","ELEC.GEN.NG-IN-99.M",156,224,132,161,113,222,318,407,181,114,161,142,215,312,260,285,143,383,673,497,384,193,224,213,172,199,202,61,339,274,339,484,262,141,299,278,342,439,169,172,325,141,238,233,168,50,56,105,157,78,215,370,231,562,711,635,254,137,78,186,116,62,140,144,185,263,686,525,121,159,145,136,188,213,153,153,275,368,464,944,385,431,152,287,351,334,251,185,92,421,625,464,268,180,206,260,469,393,350,106,221,307,383,545,371,193,188,303,381,355,309,214,355,620,1026,952,376,465,490,931,927,646,1052,812,683,632,1303,911,461,500,863,1275,1347,1378,1477,999,1398,1381,1753,1151,862,1048,854,822,902,802,540,540,729,656,998,1027,614,772,731,720,1115,907,904,605,740,616,695,764,548,773,1071,879,1420,1662,1775,1294,1124,1165,1379,1333
"Natural gas : Michigan","thousand megawatthours","ELEC.GEN.NG-MI-99.M",801,722,853,692,826,986,1499,1728,1168,1460,1213,1226,1204,1112,1277,1215,1030,1387,2238,2083,1438,1063,751,1056,1305,1117,1058,1014,742,687,999,1616,715,679,661,780,1241,1134,1129,1147,1273,1298,1320,1337,1269,1152,1104,1145,1266,679,895,951,674,1695,2163,1968,1093,757,643,980,792,612,734,968,831,865,1957,1649,619,849,821,714,839,1253,893,825,994,1276,1183,2017,1044,1057,726,1035,1100,824,1006,487,397,1095,1322,1218,653,414,436,651,910,657,742,448,366,714,522,1294,968,835,503,460,808,465,450,554,1066,1440,2102,2020,647,775,682,1240,1197,844,966,674,891,942,2326,1518,551,753,1042,1280,1699,1770,1967,2492,2354,2465,3387,1822,1245,960,963,626,785,676,1102,1137,1398,1003,1472,1297,777,864,840,990,1388,1305,950,901,933,1003,634,1029,856,963,746,863,1421,1624,1600,1218,1409,1598,1947,1627
"Natural gas : Ohio","thousand megawatthours","ELEC.GEN.NG-OH-99.M",34,30,51,52,78,73,203,240,61,39,39,23,11,55,50,97,48,193,507,432,245,74,26,29,70,50,124,137,67,83,278,765,85,39,51,45,57,61,66,61,323,204,218,203,109,2,67,21,130,44,153,129,50,498,679,632,185,70,47,78,35,30,34,35,127,221,689,550,134,237,189,99,169,187,64,174,343,358,434,1102,426,385,100,233,157,189,104,74,9,406,576,456,194,20,115,185,313,230,306,345,314,378,365,799,864,315,318,101,237,135,116,294,470,647,1086,1244,472,781,700,945,965,645,1276,547,962,836,1477,1313,807,1173,937,1400,2129,1977,1880,1697,2053,1982,2395,1956,1688,1676,1527,1704,1912,2050,1893,1279,1829,1879,2306,2078,1007,1885,1830,1746,2012,1818,2190,1602,1929,2114,2275,2513,2212,1197,1451,2322,2687,2534,2539,1878,2016,2496,2692,2609
"Natural gas : Wisconsin","thousand megawatthours","ELEC.GEN.NG-WI-99.M",89,169,195,85,103,171,359,380,207,201,114,160,135,129,175,210,123,177,331,211,228,113,106,138,239,225,257,219,105,134,255,450,135,133,146,180,320,166,230,139,161,214,258,145,235,119,189,229,263,248,444,562,359,922,926,906,645,387,311,415,218,342,421,249,376,435,844,783,403,580,465,244,515,775,581,475,403,555,635,928,359,501,310,452,567,629,598,289,186,323,628,540,327,570,223,363,626,473,460,565,293,509,266,568,498,374,365,487,663,566,396,201,342,528,944,941,272,217,174,253,374,385,547,346,570,456,1044,733,200,455,515,617,805,1089,869,912,1319,1350,1917,1080,560,311,676,653,721,618,785,712,447,627,935,958,610,625,546,521,618,528,466,537,831,629,603,817,576,986,743,677,1064,1204,1210,897,956,1076,1441,1138
"Natural gas : West North Central","thousand megawatthours","ELEC.GEN.NG-WNC-99.M",204,241,431,547,573,702,1914,1689,606,504,422,441,463,414,605,544,396,909,1822,1294,798,271,255,218,418,282,293,541,310,417,1322,1684,363,286,350,309,491,415,302,415,671,586,850,633,848,430,311,445,605,462,809,773,796,1421,1819,1743,1037,534,527,748,252,321,532,539,862,1153,2573,2191,538,1088,777,736,1016,1367,657,720,1007,1342,2094,2894,1057,1123,934,1310,1215,784,990,517,544,1055,1985,1802,721,1108,1207,1514,1118,784,703,533,421,1400,1336,1576,829,551,437,835,1073,715,351,331,897,1514,2680,2908,688,717,501,782,819,554,730,480,445,1349,3296,2303,629,503,318,573,725,994,1123,1290,1970,2592,4527,2369,1049,594,809,1020,1083,942,1334,1004,1154,1173,2002,1791,1507,778,930,1405,1065,660,463,573,1334,991,1117,1578,806,1416,849,1061,985,1211,1218,1203,823,1709,2778,2248
"Natural gas : Iowa","thousand megawatthours","ELEC.GEN.NG-IA-99.M",24,22,38,41,53,54,99,103,50,39,35,35,45,36,46,38,38,51,95,68,51,30,29,26,19,21,22,18,14,25,36,69,18,17,36,16,24,11,21,16,18,42,73,51,78,158,129,202,151,130,331,207,155,267,304,305,217,96,105,212,85,48,94,82,209,220,386,302,140,336,288,209,350,443,181,167,276,242,266,324,74,227,166,374,271,223,179,50,21,176,265,269,75,156,180,300,176,89,112,72,53,116,173,183,85,24,43,59,78,52,14,25,63,152,372,348,51,19,40,99,55,27,46,19,22,64,389,267,59,14,13,15,56,55,66,40,143,282,664,227,113,65,108,123,73,101,83,38,91,89,265,229,173,45,103,140,97,49,24,64,204,168,113,233,107,154,106,156,191,207,"NM",110,125,234,426,329
"Natural gas : Kansas","thousand megawatthours","ELEC.GEN.NG-KS-99.M",63,58,85,73,99,157,626,438,112,88,83,70,70,64,137,80,60,234,486,337,159,53,57,53,71,59,88,56,67,94,234,326,61,41,65,65,32,28,42,64,50,97,72,147,182,50,33,34,56,48,54,71,81,148,213,172,106,74,56,57,35,46,104,131,142,200,442,408,87,125,62,57,61,71,62,51,118,224,379,632,205,155,55,119,135,49,71,133,135,224,438,369,145,144,181,205,158,104,183,142,152,395,452,487,147,153,133,164,189,72,88,96,117,299,472,530,162,107,59,97,81,109,101,113,102,440,704,500,162,85,65,73,153,128,170,218,391,357,649,400,191,85,67,49,57,131,164,120,196,272,265,240,226,125,85,101,161,119,72,124,213,175,192,241,133,116,122,94,67,"NM",119,115,133,205,335,240
"Natural gas : Minnesota","thousand megawatthours","ELEC.GEN.NG-MN-99.M",65,82,74,94,102,92,187,204,63,106,60,70,96,109,148,89,82,153,331,178,147,95,81,84,104,100,69,118,60,97,244,391,167,189,166,139,219,150,122,123,126,75,180,49,170,73,75,94,158,130,125,202,104,365,436,363,210,208,198,210,100,81,85,44,108,200,564,372,112,362,259,275,235,424,266,303,152,297,416,471,237,292,337,412,212,211,341,108,240,155,349,288,167,122,213,458,309,194,176,177,136,316,140,292,388,234,162,322,342,245,131,168,493,351,790,832,180,322,252,235,295,198,246,179,99,222,911,509,163,173,99,257,234,475,508,610,758,851,1446,688,299,230,383,608,535,392,584,587,442,361,735,679,573,338,469,607,382,187,174,159,460,334,224,423,205,595,276,446,330,483,661,624,297,638,996,836
"Natural gas : Missouri","thousand megawatthours","ELEC.GEN.NG-MO-99.M",43,55,171,272,248,333,852,839,350,247,223,241,231,185,261,311,186,405,773,638,388,57,69,40,203,73,93,319,142,145,651,761,88,15,56,78,193,209,98,195,420,307,450,343,378,126,54,91,197,118,248,224,377,468,649,732,406,105,122,219,18,125,213,239,346,425,836,901,160,199,129,136,195,312,86,154,364,476,700,1139,472,397,330,354,531,283,355,214,138,420,678,608,298,649,556,464,452,391,215,122,62,497,505,532,185,125,83,248,449,337,108,34,208,645,915,990,276,247,139,342,377,211,311,158,210,580,1036,887,213,213,132,222,277,330,370,396,601,931,1315,879,416,195,236,220,387,313,493,231,402,411,529,420,423,224,176,391,380,281,171,146,330,267,455,538,336,498,285,265,313,346,333,290,181,474,739,653
"Natural gas : Nebraska","thousand megawatthours","ELEC.GEN.NG-NE-99.M",5,7,21,24,25,34,98,57,16,21,20,20,20,8,8,22,25,52,102,68,44,34,17,14,8,13,9,20,23,37,112,102,13,17,19,8,13,14,16,16,54,53,43,28,21,14,13,12,37,32,38,41,50,122,154,129,80,45,34,42,11,17,31,40,48,72,243,145,28,55,29,39,161,98,52,27,84,65,252,257,49,30,10,25,56,16,43,11,9,59,163,191,25,36,73,76,18,4,15,16,13,44,64,65,17,9,5,40,14,8,10,7,15,51,88,139,14,11,10,7,9,8,25,9,13,38,169,107,26,9,8,5,5,4,8,23,67,143,342,126,24,12,14,3,3,5,9,11,22,38,110,121,54,13,29,22,8,7,15,56,86,32,52,64,19,32,20,27,19,"NM",16,25,18,68,140,84
"Natural gas : North Dakota","thousand megawatthours","ELEC.GEN.NG-ND-99.M",0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,-0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,0,0,0,0,3,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,2,2,2,1,1,1,1,1,1,2,2,1,-0,-0,-0,-0,-0,0,-0,-0,0,-0,-0,-0,2,1,1,1,1,2,2,2,1,1,1,1,1,1,0,0,1,2,3,4,1,1,1,1,1,1,1,1,1,2,5,4,1,1,1,1,1,1,1,1,2,3,5,3,1,1,1,1,1,1,1,1,1,1,2,2,9,5,12,17,"NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM",6,5
"Natural gas : South Dakota","thousand megawatthours","ELEC.GEN.NG-SD-99.M",5,17,42,43,45,31,51,48,14,4,1,4,0,10,3,4,4,13,35,4,11,1,0,1,12,15,12,10,3,18,44,33,14,7,7,3,9,1,2,0,2,10,32,15,19,6,5,11,5,2,12,26,29,50,62,41,17,6,11,8,1,2,3,1,8,36,103,62,10,11,9,19,13,18,9,16,12,37,79,69,19,20,33,25,10,2,1,1,1,21,91,76,10,0,5,11,2,1,2,2,4,31,-0,16,6,6,11,1,-0,-0,-0,1,0,14,40,66,4,11,-0,0,1,0,-0,-0,0,2,82,29,5,9,-0,0,0,0,0,2,8,25,106,47,4,6,-0,17,27,0,0,15,0,1,95,100,50,29,57,127,35,15,"NM","NM",40,"NM",79,77,3,18,37,70,64,62,"NM",36,66,88,136,103
"Natural gas : South Atlantic","thousand megawatthours","ELEC.GEN.NG-SAT-99.M",2658,2193,3256,3889,3934,5598,6870,8083,6735,6014,4164,4560,5129,4299,4970,6319,6575,9005,11308,11862,9410,7654,5113,4755,6325,4356,5947,6568,7273,7404,9301,9950,7458,6296,6754,5738,6210,6300,5800,7065,9872,10221,11283,11005,9916,8178,6230,6575,7919,6186,7875,6867,7927,11423,15331,16467,11647,8533,7020,6806,6176,7286,8928,9661,11060,13902,17206,17334,11568,10549,7969,7291,8012,8417,8135,9847,10599,13683,15962,21214,15071,13196,8880,9228,9799,8063,8995,9536,10560,15733,15691,16426,14206,11921,9880,8617,10643,10295,12032,11895,13780,16846,17918,19361,18176,14406,12305,11260,13231,12150,11657,12198,16443,20820,22494,22071,19352,15790,13004,15583,14334,12684,14700,16382,17449,20497,23397,23382,19981,17694,15368,16829,18916,18484,20231,20121,24254,24098,28460,26289,23935,20719,17451,20016,19185,19208,19476,19031,20346,22727,24491,25470,23035,21340,18328,18281,19582,14326,18757,19658,21821,23333,25608,27020,23768,20916,18020,19577,23067,20941,22653,23057,26168,28774,31183,30170
"Natural gas : Delaware","thousand megawatthours","ELEC.GEN.NG-DE-99.M",7,20,143,9,115,154,168,322,263,233,102,38,71,117,112,114,88,113,274,220,168,113,24,30,52,41,173,101,38,112,287,272,147,114,54,72,156,105,113,86,225,140,142,130,168,58,114,281,178,130,122,34,54,188,249,297,168,91,54,25,55,47,105,28,65,162,248,191,87,64,38,79,78,70,123,106,121,191,305,338,220,166,63,121,56,64,55,49,34,233,291,206,177,49,87,87,92,33,71,16,46,80,143,219,227,224,77,148,106,91,107,139,269,384,537,401,327,282,157,65,56,178,359,399,350,421,593,460,438,466,532,480,496,489,546,671,620,632,772,655,588,536,317,494,373,324,656,383,497,543,714,609,539,518,375,401,299,284,420,391,417,603,701,744,669,515,594,613,477,239,369,747,707,643,777,720
"Natural gas : District Of Columbia","thousand megawatthours","ELEC.GEN.NG-DC-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",5,4,5,5,6,7,8,8,7,6,5,6,4,4,5,5,6,6,7,6,6,5,4,5,5,5,5,5,5,6,6,7,6,6,5,5,"NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM"
"Natural gas : Florida","thousand megawatthours","ELEC.GEN.NG-FL-99.M",2204,1867,2752,3239,3180,4096,4546,4711,4857,4574,3505,4039,4041,3414,4159,4845,5034,6266,6685,7139,6682,6250,4696,3954,5009,3871,5201,5219,6419,6211,6623,6472,6377,5756,6053,5083,4796,4879,5046,5633,6587,7743,8087,7736,7955,7434,5496,5187,5993,5042,6240,5767,6838,8074,9667,9885,7891,7133,6196,4870,5618,5866,7405,8071,9165,9934,9994,9829,9478,8503,6439,5882,5934,5950,6441,7678,8261,9442,10489,11222,10292,9911,7536,7151,6933,6438,7647,8298,9466,10312,10113,11370,10290,8899,7125,6472,7387,7107,8237,8890,10517,11665,11958,12251,12327,11095,9082,7806,9075,8198,9092,9406,11697,13014,12754,13049,12828,10815,8875,9830,9468,8574,10168,11757,11830,12984,13439,14320,13026,10950,9869,9981,10935,10219,12089,11928,13911,13484,14909,14866,13842,12444,9915,11156,10265,10333,10593,10661,11672,13006,12917,14203,12812,12512,10302,9691,10682,8183,10814,11981,12646,12735,14182,15198,13194,12427,9217,9744,11439,10429,11974,13309,13626,14084,14934,15099
"Natural gas : Georgia","thousand megawatthours","ELEC.GEN.NG-GA-99.M",78,89,82,310,302,476,787,899,433,240,84,88,164,113,122,339,358,959,1579,1433,946,555,131,191,445,111,121,565,309,356,741,1102,333,79,45,72,163,234,286,690,900,782,1043,973,509,233,80,236,495,163,274,100,380,1143,1780,2010,1508,630,429,859,191,587,508,892,987,1606,2403,2582,1091,983,532,596,715,730,653,979,1113,1801,1924,3839,1777,1125,593,829,1224,667,469,481,474,1756,1801,1868,1483,1287,1173,745,1344,1639,1556,1524,1596,2415,2396,2222,1795,1125,1406,1488,1720,1692,1198,1209,1651,2668,3237,3392,2240,1362,1460,2058,1755,1365,1427,2057,2099,2716,2980,3518,2270,2560,1713,2083,2709,2691,2673,3198,3967,4267,4929,4367,3774,3276,2950,3736,3379,3537,3559,2951,3037,3649,3483,3937,3644,3571,2874,2709,3139,2060,2692,2558,3151,3705,3927,4505,4011,4062,3524,3509,4302,3812,3746,3181,3813,4655,5416,4976
"Natural gas : Maryland","thousand megawatthours","ELEC.GEN.NG-MD-99.M",54,60,143,103,115,141,243,401,222,159,61,58,58,50,60,128,94,188,400,640,284,120,87,105,111,89,46,77,72,189,190,164,71,60,62,64,83,82,50,79,182,147,127,121,112,55,68,76,82,68,74,68,74,252,273,424,200,183,89,101,69,70,76,64,98,196,475,421,79,73,68,81,79,132,73,77,110,186,312,593,303,207,75,93,92,77,86,61,75,300,419,133,235,104,205,62,141,99,146,78,54,141,220,444,186,91,58,109,81,61,67,117,190,457,804,513,366,54,46,141,51,36,48,114,248,331,772,302,215,62,38,93,56,29,337,862,865,455,785,539,339,239,314,125,38,104,99,284,378,291,578,205,335,253,65,256,149,125,194,137,210,280,360,367,244,224,150,172,140,184,214,312,483,498,724,562
"Natural gas : North Carolina","thousand megawatthours","ELEC.GEN.NG-NC-99.M",27,13,22,46,52,212,342,570,116,87,19,28,101,206,201,176,164,402,719,752,413,233,17,177,188,45,34,55,62,47,429,490,125,21,23,60,218,116,10,25,533,337,447,442,204,42,28,156,236,78,226,176,75,263,714,748,354,84,25,180,24,34,202,123,164,333,847,997,165,104,95,107,141,198,98,287,198,510,571,1389,614,289,40,122,258,89,131,13,55,821,674,730,436,418,352,200,221,243,360,150,227,544,642,918,797,167,304,278,552,394,265,342,680,1200,1296,1134,694,613,542,735,547,452,638,421,958,1266,1626,1302,930,829,1000,1186,1323,1720,1462,1416,1615,1674,2395,2048,1753,1220,1047,1628,2278,2058,2229,2001,2200,2379,2609,2662,2520,2125,2188,2733,2502,1207,2048,2201,2270,2850,2916,2902,2743,1744,2391,3046,3164,2844,2725,2626,3251,3454,3459,3403
"Natural gas : South Carolina","thousand megawatthours","ELEC.GEN.NG-SC-99.M",42,32,40,41,41,139,197,283,74,160,59,69,410,253,131,345,581,602,824,781,366,133,43,29,91,61,25,122,117,177,340,507,79,40,25,78,295,295,71,120,451,371,548,643,367,175,119,343,423,232,380,255,344,518,1061,1294,550,82,27,248,99,234,255,292,287,685,1240,1376,388,471,495,245,483,665,95,212,297,582,778,1619,656,413,43,122,566,149,313,302,291,967,592,682,505,522,456,383,405,363,702,546,737,1004,1136,1274,1271,1060,791,492,550,494,403,486,991,1224,1335,1383,1217,1035,745,1064,957,735,930,995,1104,1142,1289,1281,1200,1150,1068,1085,1173,1117,988,870,1289,1186,1504,1171,1331,1352,1347,1003,915,897,1028,906,880,1204,1440,1291,1096,811,666,702,890,575,871,1014,1132,1075,1304,1189,849,828,740,822,943,911,1071,1185,1155,1711,1769,1615
"Natural gas : Virginia","thousand megawatthours","ELEC.GEN.NG-VA-99.M",235,100,67,131,115,371,540,807,750,540,312,227,269,134,163,346,243,451,801,853,534,235,101,258,414,129,333,408,241,294,658,879,299,209,469,286,485,570,212,381,962,674,874,942,587,167,311,272,480,455,532,450,146,963,1556,1761,965,318,180,489,105,433,359,177,267,960,1915,1867,263,320,268,283,550,644,626,474,476,945,1550,2130,1173,1063,508,764,649,559,274,317,157,1323,1791,1421,1067,637,468,652,1042,795,952,682,595,990,1420,2023,1562,633,576,931,1139,1216,522,495,957,1865,2504,2165,1664,1628,1173,1670,1485,1337,1120,629,816,1588,2628,2156,1852,1671,1139,1910,2202,2201,2120,1151,1952,2375,3103,2608,2288,1630,1544,1864,1912,1933,1291,1822,1647,1627,2664,2531,2062,1541,1849,1772,1820,1823,1669,1362,1965,2047,2152,2043,1977,982,1366,1644,2570,2476,2511,1609,3012,3573,3889,3600
"Natural gas : West Virginia","thousand megawatthours","ELEC.GEN.NG-WV-99.M",11,13,7,10,14,10,46,90,19,20,22,13,15,12,22,27,14,24,26,46,17,14,13,11,14,10,14,19,15,18,34,64,26,18,24,22,14,20,12,51,33,27,16,18,13,14,14,24,33,18,28,17,15,21,30,48,11,12,20,35,15,14,17,13,26,26,83,70,17,30,34,17,31,29,25,34,23,26,32,84,38,22,21,25,21,21,19,15,9,20,10,17,14,6,13,16,10,15,8,9,8,7,4,10,10,10,11,9,8,5,2,5,7,9,26,35,18,1,5,19,9,4,4,5,39,42,63,35,42,0,3,6,18,13,12,18,28,20,56,29,14,17,13,5,20,17,15,18,30,22,80,24,22,4,5,14,97,62,44,8,24,35,60,66,75,131,34,23,26,41,36,84,116,150,209,189
"Natural gas : East South Central","thousand megawatthours","ELEC.GEN.NG-ESC-99.M",871,474,802,1498,1861,2200,3939,4161,3193,3365,2639,3446,2775,2656,2616,2490,2377,3845,5071,4549,3399,1920,1412,1608,2597,1379,1202,1791,1650,2006,2876,3865,1908,848,1141,1530,1974,2125,2081,2101,2877,2874,4076,3457,2282,1997,1135,1489,1658,1290,2158,1271,2217,3646,4706,5660,3035,1538,1734,2502,689,1278,1896,2453,2792,4887,6469,6972,2962,2732,1742,2083,2119,3970,2420,3399,3351,4363,4763,8823,5057,3917,2115,2789,4788,2940,2576,2008,2022,5282,5810,5443,3526,3590,3628,2803,4210,4143,4243,4060,3966,6513,5854,6359,5424,3362,3509,4528,5587,4810,4373,3711,5390,7285,8699,9434,6244,5230,4887,7346,6819,5445,4578,4389,6360,8107,9468,9886,6849,6281,6934,7337,8167,8313,8052,8620,10430,10527,11641,10298,8216,6602,6720,7691,7646,7494,7640,5210,5625,7790,8197,8619,6574,6604,6674,6726,8808,5348,6580,4910,7540,7983,7983,9065,7825,7469,7844,7979,9650,10020,9066,7091,9000,10547,11351,10552
"Natural gas : Alabama","thousand megawatthours","ELEC.GEN.NG-AL-99.M",566,277,389,492,640,922,1151,1233,990,1020,1034,897,1296,1169,1070,980,1032,1741,2123,2220,1671,989,796,818,1326,716,574,823,620,1235,1793,2393,989,375,506,892,1264,1164,1217,1172,1345,1557,2386,1994,1341,999,664,873,808,582,918,502,858,1604,2077,2378,1233,750,827,1334,479,676,1045,1247,1488,2623,3356,3532,1525,1425,982,1031,1034,2038,1114,1855,1401,2261,2517,4131,2208,1926,1247,1499,2111,1427,1176,855,730,2604,3049,3043,1887,1931,2132,1419,2208,2400,2424,2330,2322,3683,3567,3642,2820,1884,2003,2334,2838,2543,2369,1949,2808,3908,4408,4837,3522,3246,2796,4011,3780,3334,2847,2481,3253,4363,5014,5606,4302,3709,4439,4553,4580,4871,4177,4319,5282,5233,5874,5437,4442,3408,3731,4352,3751,4362,4451,3145,2988,4044,4212,4564,3696,3759,3807,3808,4366,2487,3758,2627,3833,4168,4293,4781,4432,4239,4746,4382,5047,4432,4295,3500,4518,5081,5457,5250
"Natural gas : Kentucky","thousand megawatthours","ELEC.GEN.NG-KY-99.M",22,20,32,31,39,47,114,139,60,39,39,49,43,64,86,70,65,208,421,186,122,39,34,35,63,27,23,28,36,25,51,92,24,19,20,35,42,40,43,81,72,75,58,55,25,12,22,55,88,36,62,51,123,306,254,308,180,64,73,109,35,44,58,31,100,136,325,303,33,29,35,48,37,139,67,114,118,136,112,617,190,142,55,69,136,99,66,25,23,190,146,149,69,7,22,47,116,86,48,48,19,89,45,151,99,29,45,104,189,46,26,33,136,227,342,383,137,19,45,257,98,47,52,98,184,195,347,247,84,80,63,51,109,78,217,605,527,294,486,245,136,81,115,55,113,82,206,143,167,87,267,112,64,68,55,54,531,296,374,340,139,115,129,107,74,54,185,134,220,518,314,324,330,257,336,229
"Natural gas : Mississippi","thousand megawatthours","ELEC.GEN.NG-MS-99.M",265,162,364,954,1150,1180,2559,2684,2119,2287,1547,2478,1413,1402,1429,1403,1258,1851,2444,2062,1579,866,555,711,1052,599,570,856,978,708,987,1261,864,435,593,575,611,902,806,834,1397,1222,1604,1383,903,975,440,541,750,660,1163,708,1220,1693,2278,2735,1584,701,818,1049,167,543,772,1124,1181,2063,2580,2977,1375,1259,706,959,1015,1753,1224,1414,1801,1946,2094,3736,2582,1788,797,1185,2438,1399,1320,1123,1263,2398,2539,2206,1513,1646,1449,1312,1851,1618,1740,1667,1613,2638,2213,2513,2485,1442,1455,2033,2432,2208,1973,1717,2347,2958,3560,3847,2433,1745,1816,2584,2621,2022,1582,1601,2416,3139,3616,3790,2313,2226,2222,2418,3051,3116,3122,3105,3845,4134,4245,3764,2775,2539,2273,2582,3148,2565,2341,1835,2293,3258,3229,3424,2393,2381,2347,2564,3237,2336,2260,1627,2871,2930,2870,3401,2799,2796,2340,3003,3743,4238,3873,2637,3280,4313,4588,4234
"Natural gas : Tennessee","thousand megawatthours","ELEC.GEN.NG-TN-99.M",17,14,16,21,32,51,115,105,24,20,19,21,23,21,31,38,22,45,83,81,27,26,28,44,156,37,35,83,15,37,45,118,31,20,22,28,58,19,15,15,62,22,27,25,13,11,8,19,12,13,15,11,16,43,96,240,39,23,15,9,9,15,21,51,23,65,208,160,28,19,19,46,34,40,15,16,31,20,40,338,76,61,17,35,103,14,14,5,7,90,77,44,58,6,24,25,35,39,31,14,12,103,29,53,21,8,7,57,128,14,4,12,99,192,389,368,152,220,230,494,320,41,97,210,507,410,490,244,150,266,210,316,427,248,536,591,776,865,1037,852,864,574,602,703,635,485,642,87,177,400,489,519,421,396,465,300,674,228,188,316,697,770,690,776,520,380,573,460,642,831,583,631,871,896,970,840
"Natural gas : West South Central","thousand megawatthours","ELEC.GEN.NG-WSC-99.M",17687,14772,17170,19181,21003,23840,30631,30866,22777,20275,16321,16611,18745,17333,19948,20949,21965,26495,30856,32415,25595,20860,17692,17134,19636,18276,18333,18641,23442,25026,30465,32124,21775,19176,16196,16377,18125,18457,19489,19889,22534,24810,28835,28602,24684,22354,17237,18262,18157,16318,18763,20000,22813,29756,32633,33549,26911,21047,17413,19068,15697,17545,19190,22554,26047,29174,33105,36054,24451,22755,16866,18628,22132,18511,20700,20819,22796,26602,28887,35809,27624,23799,18191,19086,22732,18599,20501,19840,24284,29937,33121,32288,21892,21705,16891,19036,19401,16979,20501,17817,22519,30951,33910,33891,25602,20192,16052,21108,22813,20067,16599,19284,23884,29775,31873,37132,26826,19737,16948,19698,21676,19637,17629,22034,23522,30473,37328,39156,26427,20805,19405,22513,23522,22427,24140,28048,30524,33731,37240,36773,28298,22529,19824,21550,23667,18894,20784,21286,22711,28470,31401,34010,28212,22070,21953,25045,24261,20903,20412,21525,23628,26925,30083,33881,26874,24064,21418,23305,28514,26387,27517,25434,26386,30990,36860,37008
"Natural gas : Arkansas","thousand megawatthours","ELEC.GEN.NG-AR-99.M",192,59,139,251,170,143,348,422,287,308,235,153,176,217,227,283,266,485,897,744,598,394,166,149,334,423,322,441,687,911,1150,1177,640,520,419,277,295,391,316,280,536,686,712,673,331,479,198,172,185,173,307,290,498,790,1085,1045,532,388,375,339,176,285,340,720,1047,1365,1392,1445,1058,856,277,321,168,288,270,529,805,1216,1209,1755,927,458,412,327,785,633,379,292,596,1123,1311,1100,453,766,506,517,704,946,967,739,602,1684,1675,1646,870,585,277,525,998,694,499,435,927,1595,1864,2117,1247,874,360,860,1039,851,769,739,897,1572,2000,1836,842,891,731,779,1335,1391,891,1533,1496,1824,2393,2024,1180,1245,1033,772,1277,1214,1253,685,749,1345,1323,1295,829,746,558,868,1011,590,792,742,847,1066,902,1045,757,625,534,729,1345,1736,1494,1252,1037,1317,1708,1658
"Natural gas : Louisiana","thousand megawatthours","ELEC.GEN.NG-LA-99.M",2776,2478,2754,3445,3582,3725,4583,4925,3813,3233,2417,2642,3458,3079,4028,3768,4177,4693,5467,5543,4502,3465,2875,2846,3971,3286,3350,3726,3831,4092,4684,4933,3878,3644,3010,3029,3794,3774,4081,3371,3779,3901,4332,4591,4017,3725,3302,3503,3408,2969,3388,3653,4358,4752,4982,4855,3387,2830,2601,2984,2855,2735,2964,3263,3594,3870,4706,4988,3543,3515,2872,3029,3143,2834,3237,3246,3682,4060,4179,5427,4089,3984,2989,3045,3907,3033,3387,3029,4155,4346,5105,4703,3597,3654,3091,3338,3460,2868,3078,2972,3494,4256,4686,4649,4101,3661,3168,3608,3972,3024,3255,3590,4390,5084,5588,6345,4993,3778,3195,4131,4396,4254,3925,4774,4923,4864,5389,5817,4214,3853,3987,3926,3877,3787,4386,4668,5750,5987,6141,5920,5158,4558,3692,4642,4286,3336,3729,4126,3987,4852,5269,5291,4507,3999,4276,4851,5026,4147,3892,4324,5067,4957,5141,5721,4652,4557,4484,4215,5053,4698,4608,4732,5267,6176,6700,6233
"Natural gas : Oklahoma","thousand megawatthours","ELEC.GEN.NG-OK-99.M",969,727,961,1082,1225,1653,3094,2714,1790,1545,1082,1103,1251,1484,1588,1839,1540,2086,2829,3283,2298,1307,727,817,1301,1235,1087,1438,1589,2190,3489,3808,1833,1567,939,1346,1395,1594,1621,1987,2281,2157,2978,2788,2565,1890,896,1135,1294,1169,1704,1738,2255,3413,3941,4136,3231,2013,1539,2158,1482,2264,2244,3049,3262,3332,4126,4535,2363,2559,1686,2078,2371,2185,1833,2553,2584,2888,3579,4835,3176,2981,1844,2315,2903,2152,2082,2327,2249,3450,3947,4058,2746,2809,2176,2875,2880,2620,2936,2283,2614,3790,4121,4097,3043,1792,1731,2725,2790,2241,1673,2003,2534,3843,4326,4820,3259,2195,1729,2529,2385,1935,1628,1937,2175,3812,5362,5058,2827,1985,1622,2111,2569,2585,2772,3751,3858,4342,5420,4684,3315,2075,1818,1836,2268,1819,2350,2016,2390,3082,3525,3725,2834,1639,1747,2661,2447,2429,1737,2049,1945,2212,2764,3345,2020,1908,1663,2210,2859,2872,2611,2229,2362,2959,3947,3658
"Natural gas : Texas","thousand megawatthours","ELEC.GEN.NG-TX-99.M",13751,11508,13316,14402,16026,18320,22606,22805,16888,15189,12587,12713,13860,12552,14105,15059,15981,19232,21662,22845,18197,15693,13924,13322,14031,13331,13574,13036,17335,17834,21142,22206,15424,13445,11828,11725,12641,12698,13470,14251,15939,18067,20814,20549,17770,16261,12840,13453,13269,12007,13364,14320,15702,20802,22625,23513,19762,15816,12898,13587,11185,12261,13642,15522,18145,20608,22881,25085,17488,15824,12031,13200,16450,13204,15361,14491,15725,18438,19919,23791,19432,16376,12946,13398,15136,12781,14654,14193,17284,21018,22758,22428,15095,14477,11119,12305,12358,10544,13520,11823,15809,21221,23428,23499,17587,14154,10876,14249,15053,14109,11172,13256,16033,19254,20096,23850,17327,12889,11665,12178,13856,12596,11306,14584,15527,20225,24577,26445,18545,14076,13065,15697,15741,14664,16091,18097,19420,21579,23287,24145,18645,14651,13280,14301,15836,12525,13453,14460,15585,19191,21285,23699,20042,15686,15372,16665,15777,13737,13991,14411,15769,18691,21277,23770,19445,16975,14737,16151,19258,17080,18803,17221,17720,20538,24505,25458
"Natural gas : Mountain","thousand megawatthours","ELEC.GEN.NG-MTN-99.M",3047,3340,3594,3311,3569,3561,4047,4153,3518,3761,2966,3261,2797,2863,3373,2784,3003,3856,4803,4855,4461,4312,3564,3742,3120,3154,3541,2753,2913,3516,6221,6627,5192,4424,3359,3174,3781,4328,3909,3782,4892,5897,7624,7056,5724,4898,4737,4487,4568,4378,3545,4462,4707,5328,8486,8255,6602,5704,5259,5672,4787,4403,4708,4726,5243,7525,9192,9364,7417,7618,5722,6411,7537,5524,4389,5306,7177,9005,10908,10450,9441,7980,6914,7557,7889,6706,6043,7080,6495,7780,10003,10573,9068,8226,6458,7554,6596,6553,6733,6183,7791,7354,11101,10647,9088,6686,6063,6976,"NM","NM","NM","NM","NM",7040,9923,"NM",8072,6672,5721,5476,5138,4521,3957,4769,4658,5993,8740,9506,7038,5959,5087,5724,5841,5938,6101,5846,6874,8282,10052,11057,8336,6598,4772,5022,6134,5023,5178,5154,5333,8400,10935,10808,8799,6112,5698,7686,5615,5081,4400,4651,6007,7693,10387,10032,9122,7606,6434,5867,5830,4838,5260,6396,6187,10108,11033,11931
"Natural gas : Arizona","thousand megawatthours","ELEC.GEN.NG-AZ-99.M",652,920,912,1029,1356,1270,1370,1259,1074,1099,827,1103,802,1032,1088,961,1077,1469,1945,2117,1980,1812,1438,1572,1003,1024,1375,1032,934,1361,2704,2917,2507,2094,1149,831,1497,2004,2088,2043,2461,2954,3655,3418,2769,2085,1735,1556,1523,1564,1088,1816,2251,2428,4043,4046,2965,2627,2226,2316,1892,1735,1611,1854,2231,3374,3980,4270,3488,3716,2359,2360,2503,1878,1006,1855,3171,4185,5340,4928,4081,3365,2979,3179,3343,2602,1714,2911,2614,3709,4681,4825,4158,3395,2299,2572,1793,1915,1830,2048,3202,2756,5078,4817,3991,3179,2128,2004,1201,1264,1810,2102,1608,2757,4239,4455,3708,2923,1947,1662,1541,1171,669,1411,1056,2141,3310,4121,2890,2223,1502,1217,1704,2028,2159,2285,2136,3267,3980,4673,3415,2600,1136,910,1497,1167,1231,1665,1500,3412,4701,4729,3662,2033,1584,2503,1410,1365,736,1248,1875,2993,4271,4028,3631,2657,1900,1231,1343,1006,1183,1805,1797,4141,4662,5091
"Natural gas : Colorado","thousand megawatthours","ELEC.GEN.NG-CO-99.M",785,798,896,874,640,693,870,837,728,874,632,765,663,534,810,751,681,799,960,849,770,804,672,735,781,735,726,514,708,579,1047,1185,763,626,757,806,824,680,621,704,875,895,1242,1004,826,904,1127,1047,1036,871,720,938,888,816,1420,1135,1027,960,1012,1100,1046,921,1005,737,749,1030,1273,1253,717,1069,939,1180,1212,960,855,969,1129,1426,1575,1460,1600,1400,1155,1271,1118,1024,1114,964,868,951,1449,1332,1156,1238,1075,1197,1150,1201,1370,1309,1021,1098,1406,1325,1047,666,882,1365,1065,974,1019,792,679,1045,1199,1113,831,748,777,821,845,764,655,795,839,888,1225,1026,592,715,874,969,843,779,760,721,1030,1033,1328,1240,921,464,717,690,807,606,845,665,709,1070,1268,1208,1139,660,673,1059,785,780,1031,637,1010,1004,1276,1093,1146,1168,1140,1102,832,646,755,773,626,1057,1232,1239
"Natural gas : Idaho","thousand megawatthours","ELEC.GEN.NG-ID-99.M",20,20,24,24,28,30,122,218,220,225,256,219,26,25,53,23,27,31,47,25,18,21,15,17,64,148,135,44,28,36,248,149,152,105,158,109,199,193,138,21,146,66,151,165,158,152,170,145,165,159,148,130,37,33,127,171,156,161,163,149,33,75,67,20,52,56,162,164,174,187,121,188,122,150,42,54,33,87,128,189,216,225,199,212,222,185,182,197,41,5,88,178,168,140,111,183,124,147,86,45,56,14,168,260,213,187,128,214,138,186,201,171,28,2,105,200,199,200,132,126,80,66,13,72,18,21,60,123,163,74,189,232,190,194,127,73,24,37,243,333,228,212,142,95,339,176,232,105,156,216,382,442,372,215,311,447,397,316,53,32,71,76,283,390,342,172,202,162,326,60,118,167,294,458,432,467
"Natural gas : Montana","thousand megawatthours","ELEC.GEN.NG-MT-99.M",2,1,1,1,1,2,4,4,1,1,1,2,1,1,1,1,2,3,3,3,1,1,1,1,1,2,2,1,1,4,2,4,2,1,1,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,3,4,4,3,2,2,2,2,2,2,2,2,8,13,12,7,8,6,5,8,6,6,7,9,10,12,12,10,10,8,8,9,5,3,6,6,6,3,4,8,4,4,7,7,7,5,4,1,9,7,5,12,8,6,7,"NM","NM","NM","NM","NM",7,3,"NM",5,9,3,25,2,17,16,55,34,1,83,67,22,13,78,30,32,32,33,32,38,45,55,61,46,36,26,27,67,54,41,68,17,58,101,42,25,16,48,78,59,52,"NM","NM","NM","NM",46,67,"NM","NM","NM","NM","NM","NM","NM","NM","NM",71,97,83
"Natural gas : Nevada","thousand megawatthours","ELEC.GEN.NG-NV-99.M",1135,1045,1122,690,866,873,936,1135,946,1066,855,844,1007,928,1007,631,840,1065,1195,1218,1126,1115,1065,1015,870,848,903,747,828,1102,1546,1677,1338,1239,1027,1128,973,1172,836,765,1017,1544,2045,2003,1653,1462,1447,1464,1496,1482,1282,1227,1082,1429,2060,2162,1891,1525,1468,1731,1410,1298,1577,1419,1528,2099,2492,2501,2120,1690,1372,1677,1939,1692,1667,1575,1782,2071,2505,2435,2100,1579,1331,1588,1856,1680,1761,1699,1772,1911,2416,2719,2231,1988,1778,2160,2084,1938,2038,1639,2342,2236,2824,2728,2440,1749,1895,1966,1958,1823,1937,1852,1931,2009,2823,2372,2044,1698,1674,1566,1547,1388,1586,1488,1645,1841,2482,2608,2151,1871,1369,1865,1829,1660,1662,1514,2277,2398,2787,2995,2439,2214,1738,2134,2197,1926,1721,1330,1815,2350,2875,2634,2100,1973,1777,2069,1573,1396,1241,1495,1649,1917,2642,2555,2456,2216,1784,1909,1847,1863,1873,2241,2142,2828,2818,3109
"Natural gas : New Mexico","thousand megawatthours","ELEC.GEN.NG-NM-99.M",265,363,442,495,490,505,563,523,383,356,288,214,185,234,281,285,236,373,462,393,276,262,227,226,218,230,253,231,314,315,450,484,302,238,229,255,247,235,189,174,292,323,372,305,225,225,199,208,267,236,233,295,357,461,557,488,408,344,287,254,242,254,251,508,546,617,764,704,466,558,498,484,478,430,432,404,482,597,765,791,662,600,482,536,600,508,579,594,682,729,727,720,652,808,592,774,725,669,756,611,631,771,965,923,733,597,601,679,763,706,713,614,509,775,923,952,706,544,583,722,617,630,583,532,629,795,1008,1011,706,590,626,837,637,635,725,683,728,853,993,1056,692,658,518,621,617,576,565,768,758,844,935,1039,847,589,664,772,700,556,694,681,759,825,892,997,711,583,631,691,783,679,737,732,557,731,932,1023
"Natural gas : Utah","thousand megawatthours","ELEC.GEN.NG-UT-99.M",130,142,139,157,153,143,130,127,119,89,55,60,59,56,77,80,86,65,132,186,206,217,98,120,142,123,117,158,88,109,189,179,114,104,28,32,31,34,26,62,89,107,151,153,85,63,51,57,71,59,63,47,65,117,222,191,115,58,77,93,118,73,148,144,99,304,466,417,411,348,388,472,1210,348,323,396,522,588,543,594,722,759,719,702,689,652,640,670,472,434,602,758,664,613,560,612,662,629,597,482,498,435,639,555,619,260,382,687,629,544,577,502,446,419,600,614,545,512,564,504,458,439,384,381,398,270,528,544,484,437,409,524,557,564,586,492,597,612,632,660,557,372,457,493,557,472,494,500,336,416,632,679,629,586,598,706,638,570,573,497,569,812,942,867,746,715,686,677,590,493,486,575,680,768,799,864
"Natural gas : Wyoming","thousand megawatthours","ELEC.GEN.NG-WY-99.M",58,50,58,41,35,45,50,50,48,52,51,54,55,52,56,53,53,52,60,64,84,80,48,56,41,44,29,27,13,11,35,32,14,15,11,9,7,7,8,10,9,6,6,7,6,6,7,9,9,7,10,8,26,41,53,56,38,27,25,26,44,46,47,43,36,38,43,44,33,43,39,45,64,58,58,47,49,42,39,42,50,43,41,61,52,50,48,40,41,35,38,36,30,39,38,48,53,47,52,45,39,35,16,33,33,40,42,54,47,44,47,38,33,25,31,32,35,37,40,50,49,45,51,36,38,35,44,6,31,35,39,49,49,46,48,47,43,37,33,40,37,41,38,52,52,46,50,52,42,33,40,35,25,40,43,53,53,46,47,36,39,35,36,35,36,38,"NM",46,53,49,54,53,44,53,61,55
"Natural gas : Pacific Contiguous","thousand megawatthours","ELEC.GEN.NG-PCC-99.M",11793,10552,11278,10920,11351,10966,12644,13491,11169,10704,8440,8980,8116,7190,9111,6194,6088,8431,10875,10951,10261,8336,7806,8798,8677,8040,8156,6055,5738,6788,12922,12300,11561,10940,9052,8530,9105,9316,9143,8910,8479,7938,12867,13172,11839,10579,10572,10296,9228,8093,8576,7890,6712,7478,13136,14110,10443,9319,9454,10684,7789,7857,8409,6127,7639,9552,15958,13862,13018,12325,10357,11535,10231,9263,7766,7762,8416,10548,14737,16482,13663,13128,12265,13585,13742,11627,11048,12382,8588,8616,12506,16088,14701,13299,11512,13080,11168,11289,10486,7857,7391,6979,15170,16112,16547,13299,11694,13578,11934,11214,12449,10700,6661,5667,11239,14190,13067,13824,11670,10918,8862,8078,6358,5497,4721,5144,8391,11138,11996,9276,9989,12871,11644,11648,10417,8878,8503,8937,11044,15290,14681,13823,11418,10447,11696,10893,10994,8346,8438,10312,14131,15168,14526,12965,12694,15147,13307,12055,9438,8751,8869,8828,13508,14736,15298,14620,10958,11484,10677,7361,9043,9215,9360,13110,15055,15447
"Natural gas : California","thousand megawatthours","ELEC.GEN.NG-CA-99.M",10192,8871,9474,9209,9699,9350,10846,11506,9413,8943,7011,7418,6687,5888,7704,5635,5662,7875,10383,9814,9012,7071,6586,7307,6915,6628,6957,5628,5447,6278,10817,10190,9443,8937,7040,7153,7166,7262,7721,7545,7259,7130,10566,10565,9721,8531,8388,8369,7132,6231,6636,6091,6187,6706,11150,11416,8433,7475,7606,8291,6896,6573,7289,5870,7394,8931,13706,11213,10305,9547,8655,9312,8392,7629,7063,7052,7823,9336,12446,13821,10934,10343,9870,10991,10792,9042,8486,9647,7644,8382,10943,12825,11567,10792,9384,10487,9450,8697,8076,6941,7053,6511,11916,12241,12808,10052,9172,10548,9877,9075,9680,8143,5921,5520,9113,10752,9916,11216,9448,8862,7513,7404,5881,5004,4460,4959,7946,9762,9942,7983,7877,10244,9419,9416,8947,8275,8218,8703,10270,13519,12311,11409,9863,9318,9693,8942,8590,7392,7789,9217,11680,11937,11891,10316,10190,11885,10424,9552,8507,8135,8156,8205,11359,11659,12160,11919,8785,9408,8865,6617,7603,7448,7393,10349,11728,12344
"Natural gas : Oregon","thousand megawatthours","ELEC.GEN.NG-OR-99.M",846,775,876,782,764,862,852,1165,1054,1068,908,1031,937,844,835,323,306,457,288,692,778,806,753,795,1149,788,549,222,183,398,1253,1276,1301,1151,1088,888,1234,1171,909,889,757,646,1295,1384,1268,1286,1416,1268,1239,1143,1290,1225,296,451,1049,1345,1239,1311,1238,1365,573,828,963,156,143,400,1394,1387,1400,1474,1073,1446,1280,1212,515,623,465,1043,1434,1669,1635,1590,1585,1806,1882,1747,1711,1631,782,188,1080,1713,1632,1704,1531,1787,1369,1566,1545,683,213,309,1587,1845,1914,1709,1627,1766,1603,1497,1607,1376,514,83,1145,1685,1644,1489,1537,1473,894,506,377,368,190,120,282,698,1123,923,1335,1682,1647,1549,1070,448,199,158,533,1004,1511,1522,1178,804,1457,1306,1461,683,397,507,1188,1551,1278,1307,1458,1771,1670,1464,395,311,371,321,1109,1496,1579,1408,1328,1214,1160,484,835,1179,1193,1460,1688,1659
"Natural gas : Washington","thousand megawatthours","ELEC.GEN.NG-WA-99.M",754,906,928,930,889,755,946,820,702,693,521,532,492,458,573,236,120,99,204,445,471,459,467,697,613,625,651,205,107,112,852,834,817,852,925,490,706,883,512,476,463,162,1007,1223,850,762,769,658,857,719,650,574,229,321,937,1349,771,533,610,1028,319,456,157,100,101,221,857,1262,1313,1304,629,777,559,421,187,87,129,169,857,991,1094,1195,811,787,1069,838,850,1104,163,46,483,1549,1502,803,596,806,349,1026,864,232,125,159,1667,2026,1825,1538,895,1264,454,643,1163,1181,227,64,981,1753,1507,1119,685,582,455,167,99,125,71,65,164,678,931,370,777,946,578,683,399,155,86,76,241,767,859,892,377,326,546,645,943,271,252,588,1264,1680,1356,1342,1046,1492,1213,1040,535,306,342,302,1041,1581,1559,1294,846,862,651,261,605,589,773,1301,1639,1445
"Natural gas : Pacific Noncontiguous","thousand megawatthours","ELEC.GEN.NG-PCN-99.M",368,334,344,290,283,272,315,331,355,314,326,364,366,297,323,314,301,271,301,278,308,327,318,375,344,299,298,267,257,260,273,243,243,253,288,330,358,317,291,266,295,299,305,268,266,284,305,370,339,298,304,281,281,263,319,321,278,321,342,378,377,330,347,313,317,314,345,332,274,341,382,386,366,316,341,291,298,298,296,279,292,339,362,389,388,347,353,306,296,280,324,314,311,364,364,356,353,294,301,269,281,260,263,240,285,312,338,381,360,310,336,309,319,279,264,282,279,325,334,351,377,324,345,321,314,296,301,290,304,319,350,365,385,334,339,303,286,263,253,260,257,307,335,286,345,281,306,270,276,243,278,264,278,241,288,351,301,279,253,221,228,223,239,257,218,273,264,277,289,237,245,270,178,205,213,199
"Natural gas : Alaska","thousand megawatthours","ELEC.GEN.NG-AK-99.M",368,334,344,290,283,272,315,331,355,314,326,364,366,297,323,314,301,271,301,278,308,327,318,375,344,299,298,267,257,260,273,243,243,253,288,330,358,317,291,266,295,299,305,268,266,284,305,370,339,298,304,281,281,263,319,321,278,321,342,378,377,330,347,313,317,314,345,332,274,341,382,386,366,316,341,291,298,298,296,279,292,339,362,389,388,347,353,306,296,280,324,314,311,364,364,356,353,294,301,269,281,260,263,240,285,312,338,381,360,310,336,309,319,279,264,282,279,325,334,351,377,324,345,321,314,296,301,290,304,319,350,365,385,334,339,303,286,263,253,260,257,307,335,286,345,281,306,270,276,243,278,264,278,241,288,351,301,279,253,221,228,223,239,257,218,273,264,277,289,237,245,270,178,205,213,199
"Natural gas : Hawaii","thousand megawatthours","ELEC.GEN.NG-HI-99.M",0,0,0,0,0,0,0,0,0,0,0,0,"--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,"--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Other gases","thousand megawatthours","ELEC.GEN.OOG-US-99.M","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""
"Other gases : United States","thousand megawatthours","ELEC.GEN.OOG-US-99.M",718,676,769,698,785,733,840,848,767,737,699,770,923,760,904,890,910,1009,1071,1117,1053,908,894,1025,1283,1132,1267,1305,1310,1235,1292,1284,1309,1291,1451,1441,1182,1194,1292,1345,1302,1333,1284,1290,1341,1269,1216,1205,1126,1076,1214,1121,1191,1149,1161,1172,1145,1080,965,1062,1157,1114,1234,1180,1295,1167,1267,1292,1153,1185,1065,1068,1154,981,1234,1163,1175,1154,1154,1132,1120,1134,1031,1022,1063,972,1049,1021,1044,1132,1174,1147,823,806,721,753,807,784,834,758,773,876,966,1012,1022,960,910,930,909,825,1010,943,1017,964,963,1061,954,808,907,952,930,807,945,918,875,1013,1098,1087,1004,941,943,1005,1017,1044,1076,1057,1002,972,1042,1050,904,895,875,963,1144,968,1070,1020,1088,1048,1148,1143,1087,1072,1060,1006,943,760,847,784,936,962,1069,1064,1104,1034,1012,1061,1086,1020,951,915,1011,1079,1202,1172
"Other gases : New England","thousand megawatthours","ELEC.GEN.OOG-NEW-99.M",0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,4,3,"--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Other gases : Connecticut","thousand megawatthours","ELEC.GEN.OOG-CT-99.M",0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,4,3,"--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Other gases : Maine","thousand megawatthours","ELEC.GEN.OOG-ME-99.M",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Other gases : Massachusetts","thousand megawatthours","ELEC.GEN.OOG-MA-99.M","--","--","--","--","--","--",0,"--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Other gases : New Hampshire","thousand megawatthours","ELEC.GEN.OOG-NH-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,0,"--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Other gases : Rhode Island","thousand megawatthours","ELEC.GEN.OOG-RI-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Other gases : Vermont","thousand megawatthours","ELEC.GEN.OOG-VT-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Other gases : Middle Atlantic","thousand megawatthours","ELEC.GEN.OOG-MAT-99.M",90,88,98,100,101,88,101,105,103,104,100,99,43,49,54,56,58,59,62,62,56,58,46,55,61,60,70,63,61,57,66,66,64,67,61,67,53,54,43,62,59,50,31,51,55,61,52,52,50,47,37,45,44,52,68,58,57,51,47,49,56,51,46,54,66,62,62,62,59,48,46,54,60,48,45,56,60,63,63,66,59,55,55,65,67,64,72,63,65,66,69,70,63,62,53,55,53,52,58,48,44,46,50,51,52,47,52,60,61,59,64,58,60,53,43,55,52,39,49,65,63,60,63,61,55,60,64,64,56,64,73,73,72,71,68,62,61,56,54,59,60,51,63,63,72,68,70,79,82,73,78,74,62,69,71,75,64,45,57,47,54,50,55,53,59,45,52,57,58,50,45,50,48,51,53,54
"Other gases : New Jersey","thousand megawatthours","ELEC.GEN.OOG-NJ-99.M",41,37,38,36,33,36,39,40,37,37,37,38,7,7,7,6,6,8,9,10,8,6,7,8,24,24,26,20,20,20,21,20,19,19,17,24,4,3,4,4,3,3,3,3,3,3,3,3,5,5,6,5,5,5,6,6,6,6,5,5,9,9,10,10,10,9,10,10,9,9,7,8,16,14,15,13,13,14,13,13,12,10,12,15,15,14,15,13,15,12,12,12,13,12,12,13,17,16,16,14,11,13,13,13,12,13,14,15,9,9,11,9,8,6,4,9,9,7,11,13,13,12,12,11,11,11,10,11,11,11,13,13,12,12,13,10,12,10,11,11,11,12,13,13,20,18,20,19,19,17,18,18,18,18,19,19,18,11,"NM",12,17,15,16,16,14,"NM",13,16,17,18,"NM","NM","NM",19,19,17
"Other gases : New York","thousand megawatthours","ELEC.GEN.OOG-NY-99.M",7,8,9,10,10,11,10,11,9,10,10,10,"--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
"Other gases : Pennsylvania","thousand megawatthours","ELEC.GEN.OOG-PA-99.M",42,43,51,54,58,42,52,54,57,57,53,50,36,42,47,50,52,51,53,53,48,52,38,47,37,36,44,43,40,37,45,47,45,48,43,43,49,51,39,58,56,48,28,49,51,57,48,49,45,42,31,40,39,47,62,52,51,45,43,44,46,42,36,44,56,53,52,52,49,39,39,46,44,34,30,43,46,50,50,53,47,45,43,50,52,49,57,51,50,54,57,57,50,49,41,42,36,36,41,34,32,33,37,38,39,33,38,45,52,49,53,49,52,46,39,46,43,32,38,52,50,48,51,50,44,49,54,53,44,54,60,60,60,59,54,52,49,46,43,48,49,39,50,50,52,50,50,59,63,56,60,57,45,51,52,56,46,34,39,34,37,35,39,38,45,34,40,41,41,33,35,40,35,32,34,36
"Other gases : East North Central","thousand megawatthours","ELEC.GEN.OOG-ENC-99.M",260,256,292,302,305,326,348,353,317,309,281,294,270,257,282,285,299,305,338,345,325,246,239,263,248,214,236,240,237,250,266,257,252,259,269,282,339,344,371,369,364,362,371,387,377,354,318,327,306,334,398,276,283,259,268,292,292,304,291,286,301,301,363,333,330,340,347,338,341,313,233,251,298,204,321,280,274,272,265,284,277,287,259,278,238,243,262,269,300,287,310,320,270,171,131,134,154,152,191,136,99,173,205,211,211,220,197,199,181,175,234,234,273,268,232,272,259,232,242,257,228,203,217,233,254,279,301,307,292,254,242,266,332,338,365,321,333,346,361,379,331,295,311,348,438,363,399,368,383,365,396,403,406,409,373,372,355,263,354,282,404,359,410,418,412,369,329,381,391,393,336,322,407,453,464,464
"Other gases : Illinois","thousand megawatthours","ELEC.GEN.OOG-IL-99.M",28,27,30,28,29,31,33,33,29,29,29,30,18,17,19,17,18,21,24,23,20,19,18,20,19,16,17,15,15,16,19,20,17,16,16,17,20,20,21,22,19,19,19,19,20,24,22,21,19,16,19,16,18,17,16,16,17,17,16,12,7,16,17,15,11,14,12,10,8,17,8,13,15,14,15,11,13,7,7,12,11,13,10,7,4,4,4,4,4,6,6,8,4,4,3,4,10,12,6,3,5,11,13,7,9,1,7,5,7,9,6,13,9,13,25,21,2,13,22,21,30,27,28,5,29,28,33,35,29,12,30,32,28,28,28,9,27,23,26,30,24,18,25,29,64,19,23,22,28,27,33,28,26,19,32,34,28,17,28,21,29,24,27,27,25,"NM",22,26,27,28,"NM","NM","NM",31,31,28
"Other gases : Indiana","thousand megawatthours","ELEC.GEN.OOG-IN-99.M",209,207,237,257,251,266,282,289,262,256,224,239,237,229,245,250,266,268,285,295,284,209,209,228,212,181,202,211,207,218,230,215,215,223,235,244,253,258,280,272,262,255,271,288,277,267,224,230,245,260,283,216,225,199,201,215,214,230,217,216,228,232,273,252,248,254,267,265,263,241,169,180,225,155,261,222,202,205,213,232,225,227,205,218,175,202,203,215,231,217,243,257,220,147,126,121,131,130,170,114,89,146,174,176,172,192,162,164,140,134,183,173,204,207,157,202,207,173,176,186,150,135,140,176,182,201,209,215,210,191,176,198,206,204,226,197,201,215,221,232,206,179,196,207,212,193,191,176,173,190,228,236,224,205,186,194,174,131,170,143,193,173,217,212,203,177,163,200,194,167,140,149,171,212,218,222
"Other gases : Michigan","thousand megawatthours","ELEC.GEN.OOG-MI-99.M",0,1,1,1,1,0,0,1,0,1,0,0,1,1,1,1,1,1,1,2,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,46,47,46,49,52,53,55,55,53,49,47,46,15,36,72,29,19,24,27,34,27,24,33,32,37,28,40,31,35,36,31,30,38,30,39,37,36,17,25,25,24,29,18,15,16,20,25,32,35,12,24,19,33,31,26,29,33,15,0,8,13,9,13,18,4,15,18,28,29,20,17,19,22,19,21,21,29,27,29,28,29,24,26,25,24,17,24,27,17,21,30,29,30,24,13,14,25,29,31,28,19,24,30,31,33,28,10,28,80,76,99,88,102,67,59,58,77,103,79,69,77,68,82,64,108,92,89,102,105,116,82,84,95,123,129,105,151,124,129,132
"Other gases : Ohio","thousand megawatthours","ELEC.GEN.OOG-OH-99.M",23,22,25,17,24,28,32,30,26,24,27,24,14,11,18,17,14,16,28,25,20,17,13,15,18,16,17,14,14,15,17,21,20,20,19,21,20,19,23,26,31,35,26,25,27,14,25,31,27,23,24,15,22,19,23,27,33,33,26,26,30,25,33,34,37,36,37,33,31,25,17,21,21,18,20,23,35,31,27,26,24,26,18,20,25,25,31,31,32,34,35,27,12,6,1,1,1,1,2,1,1,1,0,0,1,8,10,12,12,12,24,27,30,21,21,22,20,22,17,25,25,24,26,24,26,28,29,28,23,26,23,22,72,77,81,87,86,84,84,86,68,70,80,84,82,75,86,82,80,80,76,80,78,81,77,75,75,47,74,54,74,69,78,77,78,57,61,71,74,76,51,50,63,86,85,82
"Other gases : Wisconsin","thousand megawatthours","ELEC.GEN.OOG-WI-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,0,"--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Other gases : West North Central","thousand megawatthours","ELEC.GEN.OOG-WNC-99.M",4,5,5,5,6,6,6,6,5,6,6,6,6,6,8,6,2,1,0,0,3,7,8,8,5,4,5,4,4,4,5,5,4,4,4,5,5,5,6,5,5,6,6,6,6,3,5,5,4,4,5,4,5,5,6,6,5,6,5,5,4,4,5,5,5,6,6,6,6,5,5,5,6,5,6,7,7,8,9,7,7,6,6,7,3,2,2,1,2,1,4,1,2,5,2,4,6,4,6,4,6,9,6,6,9,2,5,13,4,3,4,4,6,3,2,3,5,3,3,4,2,1,4,3,2,3,3,5,6,7,2,2,3,2,3,9,2,4,3,4,2,1,1,1,4,3,3,5,2,4,3,4,3,2,5,4,"NM","NM","NM","NM","NM","NM",3,"NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM"
"Other gases : Iowa","thousand megawatthours","ELEC.GEN.OOG-IA-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Other gases : Kansas","thousand megawatthours","ELEC.GEN.OOG-KS-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Other gases : Minnesota","thousand megawatthours","ELEC.GEN.OOG-MN-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",2,2,2,2,2,3,3,2,2,2,2,2,3,2,2,1,2,1,3,1,2,4,2,4,2,1,2,1,2,3,2,2,3,1,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Other gases : Missouri","thousand megawatthours","ELEC.GEN.OOG-MO-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,1,0,1,1,0,0,1,1,0,1,1,1,1,0,0,1,0,0,1,"--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Other gases : Nebraska","thousand megawatthours","ELEC.GEN.OOG-NE-99.M","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Other gases : North Dakota","thousand megawatthours","ELEC.GEN.OOG-ND-99.M",4,5,5,5,6,6,6,6,5,6,6,6,6,6,8,6,2,1,0,"--",3,7,8,8,5,4,5,4,4,4,5,5,4,4,4,5,5,4,6,5,5,5,5,5,5,3,5,5,4,4,5,4,5,5,5,6,5,6,5,5,4,4,5,4,5,6,6,6,6,5,4,5,4,3,4,4,5,5,5,5,5,4,4,5,0,0,0,0,0,0,0,0,0,0,0,0,3,2,3,2,4,5,3,4,5,1,3,7,4,2,4,3,5,3,1,2,5,2,2,3,2,1,4,3,2,3,3,5,6,7,2,2,3,2,3,9,2,4,3,4,2,1,1,1,4,3,3,5,2,4,3,4,3,2,5,4,"NM","NM","NM","NM","NM","NM",3,"NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM"
"Other gases : South Dakota","thousand megawatthours","ELEC.GEN.OOG-SD-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Other gases : South Atlantic","thousand megawatthours","ELEC.GEN.OOG-SAT-99.M",51,53,59,57,58,58,63,66,54,57,54,59,73,54,72,57,77,82,71,66,86,83,66,53,59,48,57,48,46,61,45,56,57,70,58,89,53,56,69,63,71,70,81,81,80,81,80,78,67,63,63,51,46,93,68,133,126,110,60,61,126,108,120,123,121,64,78,124,113,128,99,108,102,93,121,101,85,96,109,108,91,81,96,87,121,107,112,45,59,99,105,96,68,33,16,14,36,21,26,21,29,82,75,65,78,36,37,35,33,29,44,38,38,35,26,4,4,4,4,4,4,3,4,2,24,45,62,72,64,50,35,34,28,38,50,57,44,38,42,37,23,16,10,10,12,8,7,9,11,11,32,23,30,10,20,18,18,11,12,12,11,21,30,32,52,20,33,13,16,14,15,13,18,26,23,27
"Other gases : Delaware","thousand megawatthours","ELEC.GEN.OOG-DE-99.M",13,11,15,12,11,13,14,15,12,14,12,16,15,0,19,0,14,20,0,0,24,22,18,14,9,7,13,7,10,25,11,12,18,22,12,41,10,18,21,13,16,25,30,33,28,33,31,31,24,20,18,21,22,68,30,84,87,68,22,28,79,76,87,88,78,32,70,93,73,89,70,75,68,53,82,65,52,49,68,66,54,52,61,52,80,66,70,8,8,61,70,51,33,9,10,11,32,7,0,0,2,48,47,34,47,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,24,31,43,35,18,21,18,20,16,18,21,18,31,38,34,20,13,8,7,10,5,5,7,8,8,29,20,27,7,16,14,16,8,9,9,9,17,27,28,48,16,29,10,12,11,12,12,15,23,20,24
"Other gases : District Of Columbia","thousand megawatthours","ELEC.GEN.OOG-DC-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Other gases : Florida","thousand megawatthours","ELEC.GEN.OOG-FL-99.M",0,0,0,0,0,0,0,0,0,0,0,0,1,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,1,2,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,1,1,0,0,0,0,0,0,0,1,1,1,2,1,1,1,1,1,1,0,1,1,1,1,1,0,0,1,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,1
"Other gases : Georgia","thousand megawatthours","ELEC.GEN.OOG-GA-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Other gases : Maryland","thousand megawatthours","ELEC.GEN.OOG-MD-99.M",29,32,34,37,40,39,43,44,36,34,34,38,42,36,37,43,49,45,55,52,46,46,32,22,33,28,31,27,22,20,19,25,22,33,30,34,29,28,36,37,40,32,37,35,35,32,35,35,32,29,32,17,14,18,31,39,34,36,33,27,40,27,29,29,38,25,1,25,36,33,22,28,29,34,36,33,26,40,34,34,31,22,30,29,36,35,36,32,45,33,31,40,30,19,1,0,0,12,24,18,23,31,25,25,26,25,30,31,29,25,41,34,34,31,21,0,0,0,0,0,0,0,0,0,3,18,29,27,26,29,11,12,4,19,28,33,24,3,"--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Other gases : North Carolina","thousand megawatthours","ELEC.GEN.OOG-NC-99.M",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Other gases : South Carolina","thousand megawatthours","ELEC.GEN.OOG-SC-99.M",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Other gases : Virginia","thousand megawatthours","ELEC.GEN.OOG-VA-99.M","--","--",0,0,0,0,"--","--",0,"--","--",0,"--",0,0,"--","--",0,0,0,0,0,0,0,"--",0,"--","--",0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Other gases : West Virginia","thousand megawatthours","ELEC.GEN.OOG-WV-99.M",9,9,10,8,6,7,6,7,7,9,8,4,15,15,14,14,13,16,15,13,15,14,14,16,16,12,13,13,14,16,13,15,16,14,15,14,14,9,10,12,13,11,13,11,15,15,13,11,10,12,12,10,9,6,6,4,3,4,4,5,6,4,3,4,4,5,5,4,4,5,5,4,5,5,3,2,5,5,5,6,5,6,4,5,4,5,5,4,5,4,3,4,5,4,4,2,3,2,1,2,2,2,3,4,5,3,5,4,3,3,3,3,3,4,4,3,3,3,3,4,3,3,4,1,3,2,2,2,3,2,2,3,3,3,3,2,2,3,3,3,3,3,3,3,2,3,2,2,2,2,3,3,2,2,4,3,2,3,3,2,1,2,3,3,3,3,3,3,3,3,2,1,3,3,3,3
"Other gases : East South Central","thousand megawatthours","ELEC.GEN.OOG-ESC-99.M",26,15,14,15,14,19,21,22,19,17,14,12,13,13,13,16,14,15,17,14,15,12,15,5,20,13,20,16,19,19,18,16,14,19,21,11,15,15,19,18,19,20,20,22,22,24,24,21,18,17,18,6,15,12,12,10,11,9,10,9,15,19,17,21,18,14,15,11,14,16,15,16,23,9,17,23,20,21,20,15,15,30,20,25,23,20,24,18,21,21,27,26,20,20,18,21,15,14,14,12,6,2,11,18,22,21,16,23,20,8,27,22,30,28,31,31,29,21,24,24,26,27,9,27,29,28,23,27,27,28,28,29,29,30,31,32,30,6,6,6,6,6,5,4,21,20,23,20,29,26,32,28,28,24,24,5,17,17,14,24,20,25,28,6,6,11,25,24,14,8,"NM","NM","NM",5,29,"NM"
"Other gases : Alabama","thousand megawatthours","ELEC.GEN.OOG-AL-99.M",25,14,13,14,12,17,19,20,17,16,12,10,10,9,10,11,11,9,10,8,10,10,13,2,17,11,17,13,15,16,15,12,11,16,18,9,10,11,14,13,15,15,15,17,17,19,19,16,14,14,14,4,11,9,8,6,8,6,7,6,10,15,11,16,12,10,11,6,9,10,10,11,14,3,16,17,17,16,16,12,13,18,16,21,18,17,19,13,16,17,21,22,15,16,14,16,11,11,11,10,2,0,8,15,18,17,13,19,18,7,26,20,29,26,29,29,27,20,23,23,25,26,8,26,28,27,19,26,26,27,27,28,28,29,30,31,29,5,5,5,5,5,4,3,20,19,22,19,28,25,30,27,27,23,23,4,16,16,13,23,19,24,27,5,5,10,25,23,13,8,"NM","NM","NM",4,28,"NM"
"Other gases : Kentucky","thousand megawatthours","ELEC.GEN.OOG-KY-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,1,0,0,1,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,"--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Other gases : Mississippi","thousand megawatthours","ELEC.GEN.OOG-MS-99.M","--","--","--","--","--","--","--","--","--","--","--",0,2,3,2,3,2,5,6,5,4,2,2,2,3,2,2,2,3,3,3,3,3,3,2,3,4,3,3,3,3,4,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,1,1,2,4,3,4,4,4,3,4,4,3,4,3,4,7,6,0,5,1,3,3,2,1,10,3,2,4,3,4,3,3,3,4,3,3,3,2,5,2,2,1,1,2,1,1,3,3,3,2,3,1,0,0,0,0,0,0,0,0,0,0,0,"--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,"--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Other gases : Tennessee","thousand megawatthours","ELEC.GEN.OOG-TN-99.M",1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1
"Other gases : West South Central","thousand megawatthours","ELEC.GEN.OOG-WSC-99.M",185,153,193,122,191,133,191,190,187,173,173,190,381,273,316,325,320,371,405,502,448,355,427,499,750,661,684,760,761,662,696,698,735,689,853,782,500,503,539,626,601,597,576,571,584,538,572,530,466,408,484,542,521,434,448,371,397,365,341,409,422,398,442,428,502,453,516,524,389,439,453,444,472,435,476,467,469,443,460,455,444,501,426,388,400,366,372,390,389,464,474,445,236,325,310,341,341,349,400,398,410,390,419,445,442,452,421,410,414,375,440,397,407,396,414,453,413,349,402,392,423,359,428,407,341,413,448,425,351,350,353,384,335,361,345,382,339,342,380,372,321,343,331,395,420,338,359,353,411,396,423,430,373,395,386,362,316,263,285,272,292,350,371,383,396,414,375,388,392,367,374,352,342,340,404,403
"Other gases : Arkansas","thousand megawatthours","ELEC.GEN.OOG-AR-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Other gases : Louisiana","thousand megawatthours","ELEC.GEN.OOG-LA-99.M",35,33,36,35,37,37,40,38,37,38,37,37,55,41,54,95,127,116,108,194,176,142,190,198,190,172,204,260,221,202,208,208,206,190,323,303,185,177,189,220,210,226,210,235,214,197,233,237,185,141,177,216,228,147,176,143,135,128,113,107,133,137,155,110,128,125,136,137,104,139,146,145,133,148,155,179,168,170,153,134,149,158,138,125,102,93,88,105,85,139,140,105,45,73,58,67,52,85,101,126,109,94,86,121,114,110,103,124,110,100,148,127,126,123,125,153,132,134,138,144,130,111,128,128,58,111,154,114,85,91,89,95,83,112,90,122,80,66,90,84,100,134,125,160,193,161,194,163,229,204,175,200,170,183,190,184,150,133,149,106,127,178,189,165,187,188,157,169,170,179,200,180,179,180,222,189
"Other gases : Oklahoma","thousand megawatthours","ELEC.GEN.OOG-OK-99.M",4,5,5,6,6,5,5,6,6,7,7,6,5,6,6,7,6,6,7,6,5,5,5,6,4,3,3,3,4,4,5,5,4,3,3,4,"--","--","--","--","--","--","--","--","--","--","--","--",2,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Other gases : Texas","thousand megawatthours","ELEC.GEN.OOG-TX-99.M",146,114,152,81,148,91,147,146,145,128,130,147,321,226,256,222,186,250,289,302,267,208,232,295,556,486,477,497,536,456,483,485,526,496,527,475,315,326,350,406,391,371,366,336,370,342,339,293,280,266,306,324,291,285,270,226,261,236,226,301,288,260,285,317,372,326,378,386,283,299,306,298,337,285,319,286,298,271,305,318,293,341,286,261,297,273,283,284,302,325,332,339,190,251,251,273,289,264,299,272,301,296,332,325,328,342,317,286,304,275,291,270,281,273,289,300,281,215,264,248,294,249,301,279,283,302,295,311,266,260,264,288,251,249,255,259,258,276,290,288,221,209,206,235,227,176,165,190,182,192,248,230,203,212,196,178,167,130,136,166,165,172,182,218,209,226,219,219,222,188,174,172,163,159,182,214
"Other gases : Mountain","thousand megawatthours","ELEC.GEN.OOG-MTN-99.M",1,1,1,1,1,1,0,1,1,1,0,1,2,2,2,2,2,3,2,1,1,14,17,20,4,3,4,4,3,4,3,3,3,4,2,3,5,5,4,6,5,5,4,4,5,5,5,5,3,3,3,2,31,35,35,40,38,35,31,32,32,32,36,31,25,27,27,24,12,27,24,30,36,26,34,23,30,25,25,24,27,28,25,35,38,37,35,25,26,24,25,26,14,26,25,32,26,30,33,28,25,25,9,25,26,26,27,36,30,32,36,31,26,13,23,24,25,20,28,36,35,32,34,26,26,24,23,1,19,23,27,35,31,29,29,25,22,19,22,21,21,21,24,30,30,25,29,27,25,22,23,26,4,19,27,34,35,29,33,23,23,22,22,25,24,24,30,30,36,34,35,36,28,39,39,34
"Other gases : Arizona","thousand megawatthours","ELEC.GEN.OOG-AZ-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Other gases : Colorado","thousand megawatthours","ELEC.GEN.OOG-CO-99.M","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Other gases : Idaho","thousand megawatthours","ELEC.GEN.OOG-ID-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Other gases : Montana","thousand megawatthours","ELEC.GEN.OOG-MT-99.M","--","--","--","--","--","--","--","--","--","--","--","--",2,2,1,2,2,3,2,0,1,2,1,2,2,1,2,1,1,3,2,2,2,2,0,1,2,2,2,2,2,2,2,1,2,2,2,2,1,1,1,1,1,2,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,2,2,1,2,1,1,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2,1,2,2,0
"Other gases : Nevada","thousand megawatthours","ELEC.GEN.OOG-NV-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",12,16,17,2,1,1,1,2,1,1,1,1,2,2,2,2,2,1,2,2,2,1,1,1,2,2,1,2,2,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,0,1,1,1,1,0,1,1,1,1,1,1,1,0,1,1,0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,1,0,1,0,1,1,0,0,0,0,0,1,0,1,1,1
"Other gases : New Mexico","thousand megawatthours","ELEC.GEN.OOG-NM-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Other gases : Utah","thousand megawatthours","ELEC.GEN.OOG-UT-99.M","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,4,4,3,3,3,3,3,1,3,3,3,2,3,3,2,2,2,1,2,2,2,2,3,3,4,4,3,3,1,3,3,3,2,3,4,4,3,4,3,3,3,2,0,2,3,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"NM",0,0,0,0,"NM",0,0,0,0,0,0,"NM","NM","NM","NM","NM","NM"
"Other gases : Wyoming","thousand megawatthours","ELEC.GEN.OOG-WY-99.M",1,1,1,1,1,1,0,1,1,1,0,1,"--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,28,33,33,38,36,35,29,30,31,31,34,30,24,25,26,23,10,25,23,28,34,24,31,21,28,23,23,23,24,26,23,32,32,32,30,22,23,21,21,23,12,23,22,28,23,27,30,25,22,23,8,22,24,24,24,32,26,27,31,27,22,11,20,21,21,17,24,31,31,28,30,23,22,21,20,0,16,21,23,30,30,28,28,24,21,18,21,20,20,20,23,29,29,24,29,27,24,21,22,25,3,18,26,33,34,29,32,23,23,22,21,24,23,24,30,30,35,32,34,33,26,36,36,33
"Other gases : Pacific Contiguous","thousand megawatthours","ELEC.GEN.OOG-PCC-99.M",98,102,103,92,108,100,107,102,79,67,66,106,129,102,144,140,135,169,174,122,115,129,73,120,132,125,188,167,177,175,189,180,177,175,179,198,208,206,237,194,172,220,191,164,213,199,155,183,209,195,202,192,243,255,252,258,216,196,176,207,196,197,203,183,223,196,212,200,215,205,185,156,153,158,211,204,227,222,200,167,195,141,140,134,169,130,167,207,179,166,158,158,148,162,164,149,175,160,106,108,152,147,189,188,180,155,154,152,164,144,158,158,177,166,191,214,164,136,150,165,146,119,184,157,141,158,170,182,187,160,181,180,183,170,181,165,168,157,170,167,135,158,127,107,142,140,176,157,142,148,157,151,177,140,152,133,132,126,87,118,123,130,145,142,151,147,162,161,174,146,139,134,160,161,181,174
"Other gases : California","thousand megawatthours","ELEC.GEN.OOG-CA-99.M",98,102,103,92,108,100,107,102,79,67,66,106,103,79,116,115,106,145,143,93,87,100,62,91,106,101,162,143,151,150,169,158,151,149,153,167,195,181,234,172,146,195,162,137,186,171,129,156,182,171,175,166,215,225,223,231,190,171,152,178,170,173,176,157,188,165,178,164,189,176,158,130,125,130,186,182,196,194,164,135,163,119,114,111,143,110,136,180,154,142,133,135,146,137,141,126,150,140,106,97,137,124,167,164,155,129,128,125,139,122,133,135,153,141,166,190,139,111,124,141,124,98,160,133,118,137,145,154,162,131,157,147,151,137,147,133,131,126,135,131,98,125,94,76,110,113,151,128,112,111,116,115,138,101,117,92,93,98,84,111,93,97,113,108,119,113,130,127,141,116,109,104,125,129,151,140
"Other gases : Oregon","thousand megawatthours","ELEC.GEN.OOG-OR-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,0,"--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Other gases : Washington","thousand megawatthours","ELEC.GEN.OOG-WA-99.M","--","--","--","--","--","--","--","--","--","--","--","--",25,23,28,25,29,24,31,30,28,29,11,29,26,24,25,24,26,25,20,22,26,26,27,31,13,24,3,21,26,25,28,27,27,27,26,26,26,24,27,26,28,30,29,28,26,26,24,29,27,25,27,25,35,32,33,36,26,29,27,26,28,28,24,23,32,28,36,33,32,22,25,23,26,21,31,27,25,23,25,23,1,25,23,22,25,20,0,11,16,23,22,24,25,25,26,27,24,22,24,23,24,25,25,25,24,25,27,24,22,21,23,24,23,22,25,28,25,29,25,32,32,33,35,32,37,31,35,36,37,33,33,31,32,27,25,29,31,37,41,36,39,39,35,41,39,28,2,7,30,33,33,34,31,34,32,34,33,30,30,30,35,31,30,35
"Other gases : Pacific Noncontiguous","thousand megawatthours","ELEC.GEN.OOG-PCN-99.M",4,3,3,3,3,2,3,2,2,4,5,4,5,4,4,3,3,3,2,4,3,4,3,2,3,3,3,3,3,3,4,4,4,4,3,3,4,5,5,4,5,3,4,4,1,4,5,5,4,4,4,4,4,3,3,3,3,3,3,3,3,2,1,3,5,5,5,3,4,4,4,4,4,3,4,2,3,3,4,5,5,4,5,4,4,3,3,3,3,4,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,4,3,3,3,3,5,5,4,4,4,4,4,5,4,4,3,4,4,3,3,3,3,3,4,4,4,4,3,4,"NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM"
"Other gases : Alaska","thousand megawatthours","ELEC.GEN.OOG-AK-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","--","--","--","--","--","--","--","--","--","--"
"Other gases : Hawaii","thousand megawatthours","ELEC.GEN.OOG-HI-99.M",4,3,3,3,3,2,3,2,2,4,5,4,5,4,4,3,3,3,2,4,3,4,3,2,3,3,3,3,3,3,4,4,4,4,3,3,4,5,5,4,5,3,4,4,1,4,5,5,4,4,4,4,4,3,3,3,3,3,3,3,3,2,1,3,5,5,5,3,4,4,4,4,4,3,4,2,3,3,4,5,5,4,5,4,4,3,3,3,3,4,4,4,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,4,3,3,4,4,3,3,3,3,3,4,4,4,4,3,4,"NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM"
"Nuclear","thousand megawatthours","ELEC.GEN.NUC-US-99.M","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""
"Nuclear : United States","thousand megawatthours","ELEC.GEN.NUC-US-99.M",68707,61272,62141,56003,61512,68023,69166,68389,63378,60461,62342,67431,70926,61658,63041,58437,63032,66372,70421,70778,64481,60493,61520,68905,69211,60942,59933,56776,62202,64181,69653,69024,63584,60016,59600,68612,70806,64102,63285,58620,64917,67734,71975,71068,65932,62530,58941,68617,69828,60947,61539,55484,62970,66144,71070,71382,66739,61236,62913,71735,71912,62616,63721,57567,62776,68391,72186,72016,66642,57509,61392,70490,74006,65225,64305,57301,65025,68923,72739,72751,67579,61690,64899,71983,70735,65130,64716,57333,64826,70319,74318,72617,67054,62820,63408,72931,74102,64227,67241,59408,65395,69735,72949,72245,65752,58021,59069,70710,72569,65245,64635,57611,66658,68301,71913,71574,69371,62751,62655,73683,72743,64789,65662,54547,57013,65270,72345,71339,66849,63337,64474,71837,72381,63847,61729,55871,62081,65140,69129,69602,64511,59743,56713,68584,71406,61483,62947,56767,62848,66430,70539,71344,65799,63184,64975,71294,73064,62639,62397,56385,62947,68138,71940,71129,67535,62391,65140,73363,74270,63462,64547,59757,65833,68546,71412,72415
"Nuclear : New England","thousand megawatthours","ELEC.GEN.NUC-NEW-99.M",2291,2203,1939,2845,2461,3103,3197,3015,3111,3097,3037,3135,3229,2595,2554,2814,2275,3031,3184,3011,2394,2703,3147,3007,3200,2802,2807,2955,2941,3058,3238,3223,3027,1869,2408,3250,3282,3069,3066,2034,2892,3000,3152,3232,3131,3260,3126,3270,3254,2949,3168,1186,2537,3189,3246,3268,3129,2391,3053,3195,3285,2933,3244,3071,3374,3267,3375,3339,3149,1923,2550,3412,3251,3050,3223,2133,2403,3180,3319,3265,3133,3358,3300,3358,3053,3162,3394,1794,2661,3161,3252,3357,3241,2625,2455,3393,3453,3124,3460,3130,3135,3312,2966,3417,3322,2001,2397,2514,3296,3087,3454,2650,2407,3341,3430,3314,3316,3454,3185,3426,3475,3044,3444,1613,2371,3230,3420,3364,2947,1687,2473,3215,3194,3071,3254,3084,3211,3075,3226,2999,2753,1976,2824,3449,3299,2959,3077,2450,2392,3324,3426,3146,3120,3321,3269,3399,3440,3070,3454,2058,2718,3240,3336,3344,3297,2797,2766,3318,2926,2507,2999,2588,2600,2885,2984,2917
"Nuclear : Connecticut","thousand megawatthours","ELEC.GEN.NUC-CT-99.M",1366,621,643,1369,1342,1441,1465,1397,1435,1491,1373,1485,1477,1020,850,1160,1497,1421,1484,1292,750,1252,1454,1260,1448,1365,1088,1458,1510,1419,1497,1486,1443,1053,823,1490,1515,1417,1357,670,1198,1466,1501,1494,1456,1514,1436,1515,1518,1371,1513,615,1098,1464,1507,1498,1406,720,1459,1393,1519,1308,1518,1281,1517,1463,1502,1498,1454,959,1055,1513,1413,1365,1510,790,959,1455,1499,1493,1447,1497,1456,1501,1507,1408,1504,924,1032,1394,1463,1484,1440,941,771,1565,1569,1417,1561,1519,1567,1513,1087,1547,1502,1034,1131,1212,1403,1368,1560,919,948,1518,1562,1446,1507,1565,1425,1529,1573,1417,1572,927,1502,1438,1556,1499,1189,859,823,1572,1558,1456,1571,1518,1547,1513,1528,1287,1491,1016,1024,1569,1570,1418,1568,1007,998,1514,1554,1396,1501,1552,1435,1565,1548,1370,1565,985,915,1434,1456,1545,1493,958,1003,1569,1569,1416,1566,1387,1564,1512,1555,1548
"Nuclear : Maine","thousand megawatthours","ELEC.GEN.NUC-ME-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Nuclear : Massachusetts","thousand megawatthours","ELEC.GEN.NUC-MA-99.M",491,450,491,316,150,455,492,411,476,498,484,431,498,453,493,482,493,461,466,493,462,496,480,491,497,316,465,283,182,435,509,498,456,337,491,508,513,480,456,495,510,489,502,508,480,507,488,512,508,454,496,243,292,489,507,503,492,497,487,511,476,462,417,493,508,479,507,498,488,501,492,508,496,434,383,73,345,491,444,500,487,503,495,467,512,479,510,448,507,484,508,497,488,503,492,441,510,452,508,263,185,488,499,500,488,503,492,509,509,460,505,492,496,489,496,497,485,498,485,503,507,395,483,235,201,486,498,501,481,503,354,441,507,468,505,489,442,477,492,498,486,505,483,507,352,315,470,189,8,474,500,381,328,387,486,441,509,459,502,491,413,483,506,426,487,500,492,500,429,253,506,303,108,476,503,442
"Nuclear : New Hampshire","thousand megawatthours","ELEC.GEN.NUC-NH-99.M",42,778,448,832,840,834,862,835,835,723,802,862,862,778,862,834,75,776,861,859,832,862,833,862,861,777,861,833,862,835,862,862,820,125,716,862,861,806,862,834,863,835,861,862,834,863,834,863,862,779,779,0,769,878,907,907,879,910,879,908,907,819,908,877,909,879,909,901,774,0,588,925,878,836,871,857,927,897,927,926,897,925,898,926,568,840,922,0,668,856,927,926,897,926,895,926,925,837,925,896,926,896,926,926,892,0,340,326,928,838,926,898,929,898,928,926,894,926,893,927,927,815,923,0,218,864,928,926,896,231,899,737,686,736,782,699,785,759,782,786,352,17,888,916,929,838,928,899,929,898,927,928,897,927,900,928,928,838,924,146,928,898,928,926,897,927,899,928,927,838,927,898,928,897,926,926
"Nuclear : Rhode Island","thousand megawatthours","ELEC.GEN.NUC-RI-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Nuclear : Vermont","thousand megawatthours","ELEC.GEN.NUC-VT-99.M",392,355,358,328,129,372,379,372,365,385,378,357,392,343,350,338,210,373,373,366,350,93,380,394,394,343,393,380,387,369,370,378,308,354,378,389,393,367,391,36,320,209,288,368,361,377,369,381,366,345,380,328,378,359,326,360,352,265,228,383,383,343,401,420,440,445,456,442,433,463,415,465,464,415,458,413,171,337,449,346,303,433,451,464,467,435,457,422,455,427,354,450,416,255,297,460,449,419,467,452,457,414,454,444,439,464,434,467,456,420,462,341,34,435,445,445,429,465,382,467,467,417,466,450,451,442,439,438,381,95,397,465,443,411,396,378,436,326,424,428,425,438,428,457,448,387,111,356,457,439,445,442,394,455,448,464,456,402,463,436,461,425,446,446,421,412,372,322,"--","--","--","--","--","--","--","--"
"Nuclear : Middle Atlantic","thousand megawatthours","ELEC.GEN.NUC-MAT-99.M",13040,12026,12307,10350,11003,12559,12887,12883,11488,11103,12042,12907,13378,11540,11053,10968,12595,12729,13198,13173,12209,11372,11477,12880,13630,11911,10728,10168,12780,12897,13029,12425,10777,11588,11741,13077,13295,12334,11411,10410,12226,12730,13191,13291,11552,11762,11082,11898,13057,11919,11393,10831,13188,12638,13007,13261,12374,12142,12431,13884,13722,11937,11291,11111,12560,13006,13382,13246,12545,10713,12600,13976,13834,12528,11150,11016,13163,13207,13552,13406,12635,11400,12087,13862,13894,12518,11412,10444,12823,13393,13737,13733,12529,12510,12883,14184,13993,12588,13043,11047,12563,13254,13871,13709,12770,12550,12153,13599,13210,12733,12350,10283,13654,13279,12828,13616,12121,12109,12236,14051,14125,12724,12240,10493,11428,11539,13481,13532,12853,13399,12743,13892,14128,13106,12758,11120,11380,11993,13152,13702,12229,11015,10640,13837,14611,13047,13513,12212,11544,12614,13669,13970,12634,12239,12852,13945,13974,12817,12019,10949,11459,12446,13396,13834,12369,13080,12634,14283,14633,12833,13110,11766,11740,13833,14183,14077
"Nuclear : New Jersey","thousand megawatthours","ELEC.GEN.NUC-NJ-99.M",2850,2622,2896,2095,1900,2741,2856,2866,2514,1880,2511,2739,2769,2628,2580,2098,2264,2596,2872,2829,2745,1929,2610,2946,2943,2614,2373,2354,2388,2795,2818,2708,2095,2070,2017,2534,2733,2729,2587,1444,1684,2536,2661,2897,2361,2417,1774,1257,2231,2689,2879,1835,2664,2537,2926,2807,2702,2394,2714,3014,2937,2619,2912,2264,2678,2860,2902,2856,2743,2083,2690,3024,2884,2721,2791,2131,2526,2772,2798,2863,2806,2437,2451,2830,2894,2766,2319,1969,2558,2929,3006,3039,2930,2451,2264,3069,3103,2613,3062,2341,2820,2981,2965,3018,2974,2587,2711,3152,2877,2834,3116,2175,3063,2865,2484,3002,2927,2335,2211,2883,3149,2848,2980,2206,2678,2850,2812,2985,2748,2838,2377,3135,3115,2950,2912,2479,2602,2962,2943,3027,2929,2365,1789,3038,3143,2849,3130,2561,2281,2779,2992,2960,2930,2372,2625,2759,3130,2747,3135,2225,2059,2147,2501,3051,2524,2505,2353,3131,3147,2803,2663,2379,2570,2966,3029,2923
"Nuclear : New York","thousand megawatthours","ELEC.GEN.NUC-NY-99.M",3333,3367,3334,3095,2676,3558,3451,3544,3546,3494,3520,3477,3768,3380,3101,2881,3669,3542,3675,3636,3499,2997,2368,3101,3726,3229,3228,2495,3685,3487,3505,2993,3387,3559,3610,3776,3609,3417,3243,2884,3709,3610,3693,3585,3061,2963,3082,3784,3822,3423,2992,2943,3681,3625,3451,3702,3560,3705,3729,3809,3839,3454,3359,3012,3284,3624,3702,3719,3666,3061,3583,3920,3886,3456,2775,2897,3650,3754,3838,3742,3635,3715,3193,3912,3908,3674,3443,2536,3703,3719,3790,3823,3382,3622,3683,3927,3921,3531,3215,3153,3717,3446,3866,3740,3508,3806,3696,3887,3649,3493,3366,2659,3782,3726,3812,3771,2909,3531,3252,3920,3859,3427,3126,3126,3059,3617,3825,3638,3746,3846,3760,3666,3648,3546,3236,3024,3061,3302,3672,3900,3414,3342,2754,3875,4045,3558,3184,3599,3730,3724,3663,3905,3762,3992,3829,3765,3930,3469,3010,2924,3597,3686,3853,3614,3232,3774,3913,4037,4036,3480,3123,3721,3572,3844,3899,3927
"Nuclear : Pennsylvania","thousand megawatthours","ELEC.GEN.NUC-PA-99.M",6857,6038,6077,5161,6427,6259,6581,6474,5428,5728,6012,6691,6841,5532,5372,5989,6661,6591,6651,6709,5966,6446,6498,6833,6961,6068,5126,5319,6707,6615,6706,6724,5295,5959,6114,6767,6952,6187,5580,6082,6832,6583,6837,6809,6131,6382,6226,6857,7005,5807,5521,6053,6843,6475,6630,6753,6112,6043,5988,7060,6946,5865,5020,5835,6598,6523,6778,6670,6135,5569,6326,7032,7064,6351,5584,5988,6987,6680,6915,6801,6194,5248,6443,7120,7092,6078,5650,5938,6563,6745,6941,6872,6216,6438,6936,7188,6970,6443,6765,5553,6026,6827,7041,6952,6288,6156,5746,6560,6684,6407,5868,5449,6809,6688,6533,6843,6285,6243,6772,7248,7117,6449,6134,5161,5691,5072,6843,6908,6359,6715,6605,7092,7365,6610,6610,5618,5717,5729,6538,6775,5887,5308,6096,6923,7423,6640,7200,6053,5532,6112,7014,7105,5941,5875,6399,7420,6915,6601,5874,5800,5803,6613,7043,7169,6613,6801,6368,7115,7449,6549,7324,5666,5598,7022,7254,7227
"Nuclear : East North Central","thousand megawatthours","ELEC.GEN.NUC-ENC-99.M",13667,11760,12981,11558,12335,12992,12245,12379,10384,11770,11277,12694,12086,10853,12454,11193,11150,11911,12752,13084,11889,12117,12518,13254,12668,11325,13065,9793,10245,12015,13183,12710,12524,12061,10929,12859,12458,11500,12521,12549,12878,13209,13720,13305,12856,11627,10503,13322,12608,11206,10950,10456,12629,12566,13389,14041,12801,13367,12545,14300,13819,11887,12463,10041,12252,13584,13553,13932,12237,12071,12308,14154,14407,12844,13575,11783,12768,13250,13441,14030,12634,10581,12638,13968,12534,11965,13295,11402,13517,13795,14212,13929,13309,12588,12629,13129,13339,11760,12092,8838,11936,12762,13189,13014,12321,10414,11741,13808,13927,12249,11891,12228,13062,12571,14011,13603,13754,12056,11656,13891,13972,11908,12818,12098,11988,12917,14200,14255,13040,11616,12762,13587,14673,13144,13219,10295,12765,12833,12947,13478,12829,13545,12293,13788,14205,12406,12939,10306,12230,12723,13298,13722,12304,12582,13019,14115,14037,10729,11385,11434,12982,13661,14130,13750,13298,12020,13005,14404,14275,12134,11843,11572,13681,13022,13444,13867
"Nuclear : Illinois","thousand megawatthours","ELEC.GEN.NUC-IL-99.M",8238,7217,8158,7117,7925,7900,7953,7601,7211,7557,7536,7946,7268,6836,7464,6616,7425,7935,7964,8198,7616,7553,7607,8378,8139,7211,8526,7661,8115,7728,8357,8547,7933,7682,7010,7824,7705,6751,7504,7718,7862,7986,8169,8117,7800,7609,6890,7937,8374,6737,6646,7218,7949,7997,8362,8385,7520,8076,7450,8549,8144,6633,7632,7333,7992,8251,8416,8369,7665,7634,7547,8536,8608,7606,8017,7390,7863,8077,8492,8377,8084,7029,7740,8447,7594,7031,7711,7557,8070,8261,8502,8487,8016,7872,7891,8161,8271,7471,8522,7493,7762,8224,8376,8267,7626,7242,7666,8553,8080,7034,8089,7588,8370,8263,8477,7937,8209,7718,7710,8715,8705,7125,7970,7294,7507,7980,8419,8492,7983,8042,8187,8119,8731,7511,7902,7513,7994,8248,8175,8404,7557,7923,7794,8650,8695,7387,8062,6840,8635,8300,8471,8604,7673,7893,8014,8557,8768,7418,7931,7394,7688,8464,8692,8326,8365,7745,8196,8871,8654,7107,7547,7789,8219,8435,8675,8429
"Nuclear : Indiana","thousand megawatthours","ELEC.GEN.NUC-IN-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Nuclear : Michigan","thousand megawatthours","ELEC.GEN.NUC-MI-99.M",2824,2565,2933,2199,2680,2624,2222,2137,795,1916,1491,2325,2091,1979,2910,2794,1978,2387,2746,2828,2782,2896,2894,2802,2454,2321,2595,1331,1165,2305,2932,2334,2721,2657,2195,2945,2907,2819,2904,2507,2990,2863,2796,2533,2398,1599,1401,2846,2589,2577,2879,2231,2999,2679,2499,2921,2700,2982,2805,3013,2914,2735,2612,736,1958,2672,2381,2823,2377,2260,2514,3084,3080,2737,2956,2959,2891,2881,2938,2896,1954,895,2252,3078,2991,2680,2886,2181,2956,2874,2936,2699,2611,2233,2183,2255,2254,1940,1708,-6,1982,2066,2054,1969,2094,1401,1863,2526,3028,2736,2067,2650,2821,2420,2844,2906,2837,1545,1305,2464,2603,2308,2866,2936,3010,2884,2940,2928,2329,2305,2816,2963,3002,2874,2535,883,2554,2366,1946,2293,2502,2712,2122,2231,2792,2388,2621,1827,1533,2310,2609,2680,2346,2178,2578,3059,2760,1680,1902,2578,3052,2783,2944,2977,2540,2411,2574,3046,3111,2814,2526,2128,3032,2168,2269,2940
"Nuclear : Ohio","thousand megawatthours","ELEC.GEN.NUC-OH-99.M",1482,1005,779,1434,801,1435,973,1567,1538,1555,1515,1379,1583,1057,935,897,928,478,906,918,592,742,902,928,927,762,785,79,-12,863,912,674,791,915,854,925,882,852,965,1518,1279,1330,1576,1470,1509,1582,1544,1444,455,945,660,628,1302,1524,1559,1562,1525,1504,1535,1603,1567,1442,1032,902,1440,1520,1569,1578,1453,1590,1392,1361,1595,1443,1547,652,924,1325,831,1590,1528,1593,1484,1253,945,1189,1549,1236,1609,1511,1589,1603,1545,1633,1577,1526,1630,1276,674,254,1073,1330,1584,1603,1558,1122,1472,1632,1630,1405,929,889,680,845,1572,1594,1554,1604,1480,1622,1468,1443,1556,1086,666,1194,1588,1598,1521,372,910,1487,1624,1527,1472,1031,1044,988,1586,1544,1530,1605,1533,1604,1403,1443,1144,651,1082,1247,1328,1589,1430,1616,1561,1627,1614,825,905,910,1364,1551,1601,1593,1529,1380,1389,1623,1615,1405,880,791,1535,1557,1609,1611
"Nuclear : Wisconsin","thousand megawatthours","ELEC.GEN.NUC-WI-99.M",1123,973,1111,808,929,1032,1097,1074,840,742,735,1043,1145,981,1144,885,820,1111,1136,1140,899,925,1115,1145,1149,1030,1159,723,976,1119,983,1154,1079,808,871,1165,964,1078,1148,807,748,1030,1180,1184,1149,837,669,1094,1190,947,766,379,379,367,968,1173,1056,805,756,1135,1193,1076,1187,1070,862,1141,1186,1162,743,587,854,1173,1125,1059,1054,781,1090,968,1180,1167,1068,1064,1162,1191,1004,1066,1149,427,881,1149,1184,1141,1137,851,979,1187,1185,1073,1187,1098,1118,1143,1176,1176,1043,649,739,1097,1189,1073,806,1100,1192,1043,1118,1166,1154,1189,1161,1090,1195,1032,425,781,805,859,1252,1237,1207,898,849,1018,1316,1232,1310,868,1174,1231,1241,1237,1240,1304,843,1303,1315,1188,1112,988,979,865,890,850,856,895,866,872,894,807,648,552,879,862,893,855,864,485,846,863,894,808,890,865,894,863,891,887
"Nuclear : West North Central","thousand megawatthours","ELEC.GEN.NUC-WNC-99.M",4129,3490,3053,2798,2913,3949,4177,3763,3981,4168,3228,3449,4162,3135,3939,3347,3411,4071,4218,4123,3990,4063,3206,4146,4309,3587,3308,3234,3843,3555,4198,4158,3612,3192,2860,4131,4321,3516,4305,3402,3398,3633,4222,4178,3850,3582,3699,4322,3671,3304,3272,2244,2951,3724,4259,4277,3681,3495,3709,4439,4407,3742,4421,4161,3353,3996,4254,4298,3932,3088,2909,4189,4231,3667,3576,2884,3796,4207,4334,4321,4224,4443,4304,4419,4306,3933,3500,2891,3219,3967,4295,4204,3852,3418,3963,4087,4382,3298,3840,3667,4069,4189,4360,4181,3865,2753,2741,4178,4439,4039,4213,3544,3078,3781,4317,4299,4212,3821,3610,4181,4460,4021,3324,2180,2155,2801,3835,3831,3908,3261,3046,3974,3571,2854,2866,3557,3639,3827,3907,3732,3816,3193,2597,3537,4031,2971,2752,2287,2433,3377,3364,3342,3123,3366,3587,3796,4133,3989,3695,3387,3886,4095,4355,4328,4036,2221,2789,3881,4419,3827,3287,2568,3285,3968,4186,4379
"Nuclear : Iowa","thousand megawatthours","ELEC.GEN.NUC-IA-99.M",382,356,393,140,25,335,371,347,388,300,386,431,419,389,341,416,363,413,420,297,256,416,415,429,426,175,315,130,428,412,421,419,415,429,48,370,437,406,435,349,430,412,425,425,411,359,406,434,435,389,335,-4,350,417,431,436,425,441,433,450,448,404,446,409,440,422,428,431,407,443,365,453,448,39,112,389,451,425,447,442,430,445,438,454,457,428,452,440,451,425,440,431,432,452,439,436,394,5,361,400,453,434,452,451,431,401,444,453,448,416,452,365,411,428,445,442,418,323,-4,305,460,414,453,442,453,430,443,328,439,454,438,461,461,424,455,441,446,431,440,430,396,57,29,337,456,410,459,442,452,431,448,447,430,449,440,457,455,407,454,438,441,427,428,418,390,31,33,231,419,415,454,439,434,432,435,444
"Nuclear : Kansas","thousand megawatthours","ELEC.GEN.NUC-KS-99.M",888,803,834,855,878,854,874,875,853,887,857,888,888,799,609,42,624,850,873,874,850,887,858,888,831,801,886,855,882,850,873,805,849,463,-13,808,884,721,882,854,880,847,837,810,843,833,857,885,619,716,885,209,329,846,869,871,847,885,858,886,886,801,887,856,883,847,870,870,847,155,560,887,888,802,882,858,879,847,870,867,848,883,859,886,719,828,464,-9,438,847,871,865,848,883,858,886,886,798,872,786,820,844,869,701,849,242,213,889,883,803,654,857,884,842,864,865,847,427,856,774,884,797,498,-6,-26,7,774,873,862,896,864,896,357,-11,82,870,888,855,837,878,861,900,863,903,902,73,-8,327,612,843,883,884,292,582,875,904,900,817,185,-11,495,863,891,886,868,904,852,910,910,787,-7,-16,762,863,886,887
"Nuclear : Minnesota","thousand megawatthours","ELEC.GEN.NUC-MN-99.M",1059,730,808,1138,933,1095,1188,805,1038,1202,767,1025,1152,770,1223,1180,1223,1159,1189,1203,1179,1241,1003,1163,1243,1126,1238,1030,834,1119,1199,1187,926,1070,1207,1233,1245,1151,1254,1178,1200,1082,1198,1178,882,835,848,1244,1240,951,768,762,832,1018,1194,1201,1167,1246,1207,1249,1206,917,1250,1126,823,1071,1157,1196,1171,1228,989,1050,1044,1124,851,694,1015,1160,1200,1205,1163,1255,1196,1196,1251,926,909,1188,1209,1158,1179,1165,780,836,1152,1243,1208,1116,974,761,928,1159,1201,1195,917,820,876,1238,1239,1120,1238,989,864,1145,1184,1169,1151,1201,932,1248,1253,1132,865,756,418,935,1164,1170,1188,915,1059,1103,1255,1035,839,808,824,1135,1181,990,1135,1104,804,832,1168,1130,822,778,752,701,776,1121,978,835,816,831,957,1058,1263,1175,1133,1155,1205,1204,1095,624,815,1023,1214,997,964,578,656,1050,1258,1269
"Nuclear : Missouri","thousand megawatthours","ELEC.GEN.NUC-MO-99.M",864,778,699,112,170,818,841,844,824,859,833,742,847,335,845,828,823,816,839,841,819,588,68,741,873,785,585,774,863,831,851,851,829,750,835,872,819,377,869,228,-12,411,860,860,836,869,840,874,801,788,699,774,864,757,852,854,437,-6,293,918,916,831,917,880,431,766,888,891,879,912,886,919,921,832,773,17,593,867,895,889,869,906,889,920,920,862,897,880,905,862,879,889,869,282,579,555,928,536,827,796,910,836,899,900,878,919,891,927,928,837,918,464,-15,491,890,891,873,908,889,923,898,831,914,883,906,866,885,891,856,405,116,922,922,862,911,875,901,867,888,896,874,912,890,920,922,834,894,173,34,870,720,320,872,912,892,924,924,834,920,884,903,865,891,889,871,288,210,796,911,753,916,881,903,864,784,839
"Nuclear : Nebraska","thousand megawatthours","ELEC.GEN.NUC-NE-99.M",936,823,320,551,906,847,903,893,878,920,385,364,855,842,922,881,378,834,898,909,884,931,862,926,936,700,284,446,834,342,853,895,594,480,783,849,936,860,865,793,899,881,901,905,879,687,749,886,577,460,585,503,576,685,912,914,805,929,919,936,950,788,920,891,775,890,910,910,629,350,109,880,930,871,957,925,859,908,922,918,913,953,922,963,959,889,778,391,217,676,926,853,924,965,934,968,966,843,807,924,958,916,938,934,790,371,316,672,941,863,952,868,935,875,935,932,923,962,936,932,965,848,595,106,404,563,568,569,563,590,570,592,576,544,579,563,579,538,561,538,550,220,10,544,584,525,585,567,582,533,538,570,551,586,564,680,897,873,873,901,915,786,940,931,812,374,879,921,966,876,961,687,530,760,823,940
"Nuclear : North Dakota","thousand megawatthours","ELEC.GEN.NUC-ND-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Nuclear : South Dakota","thousand megawatthours","ELEC.GEN.NUC-SD-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Nuclear : South Atlantic","thousand megawatthours","ELEC.GEN.NUC-SAT-99.M",17043,15352,15374,14195,16189,17430,17854,17641,15758,14603,15197,15689,18206,16060,14918,14327,16365,17119,18051,17966,16370,15215,15266,17375,17352,16029,14570,15664,15819,16382,18268,17729,15781,14613,15044,16816,18340,16548,16034,15052,15312,17335,18295,18059,15718,15612,15434,17412,17454,15581,15933,15254,15314,16859,17725,17602,16635,14837,15357,17482,18287,15788,14902,14992,15411,16949,18349,17638,16751,15334,14336,16881,18461,15761,15134,14050,16071,17467,18077,17879,15842,15449,15185,17325,18353,16291,15192,14816,15529,16629,18263,17684,16309,15242,15238,18428,18743,16297,15439,14807,15621,17416,17923,18225,15738,15385,14104,16861,18023,15043,14818,13441,15789,15642,16962,17449,15929,14201,15498,17946,16948,15165,14518,13266,14178,16271,17761,17071,14979,14888,15443,17211,17338,14894,13511,13125,15075,16317,16925,16729,15243,15050,13655,16785,18057,14779,14280,15411,16402,17271,18330,18211,16144,15089,15447,18092,18402,15970,15135,13920,16048,16858,17499,17318,15934,16319,16933,18054,18621,15614,15595,15790,17025,17360,17804,18151
"Nuclear : Delaware","thousand megawatthours","ELEC.GEN.NUC-DE-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Nuclear : District Of Columbia","thousand megawatthours","ELEC.GEN.NUC-DC-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Nuclear : Florida","thousand megawatthours","ELEC.GEN.NUC-FL-99.M",2943,2632,2874,2367,2508,2840,2835,2790,2852,1857,2778,2307,2964,2661,2853,2739,2826,2818,2962,2910,2772,2411,2802,2987,2914,2600,2464,2482,2264,2464,2931,2909,2730,1874,2610,2737,2996,2785,2685,2338,2799,2751,2915,2906,1878,2271,2351,2541,2212,2351,2879,2367,2413,2517,2647,2859,2825,2079,1398,2213,2685,2656,2301,2486,2264,2508,2916,2804,2821,2883,2341,2760,2978,2559,2959,2241,2363,2554,2810,2608,2308,2010,1700,2200,2824,2513,2443,2376,2710,2747,2958,2578,2864,2659,2480,2982,2952,2659,2690,2205,2092,2552,2594,2865,2316,2182,1739,2271,2286,2131,2316,1537,1684,1647,2156,2134,1963,1801,2044,2236,1749,1548,1360,1103,1750,2230,2329,2174,2251,1852,1970,1700,1740,1711,1178,1170,1406,1658,1543,1295,1239,1513,1423,1993,2101,1615,1329,2049,2252,2500,2709,2691,2557,1935,2263,2524,2735,2453,1691,1479,2593,2479,2410,2370,2365,2194,2461,2639,2734,2352,2420,1731,2485,2597,2694,2614
"Nuclear : Georgia","thousand megawatthours","ELEC.GEN.NUC-GA-99.M",3064,2766,2977,2245,2883,2928,3014,2878,2557,2481,2963,2927,2863,2647,2083,1831,3049,2923,3009,3010,2889,2164,2106,2535,3063,2758,2255,2621,2900,2906,3005,2704,2718,2336,2919,3073,3045,2450,2551,2555,2531,2925,3009,2939,2809,2990,2858,3087,2749,2263,2206,2602,2652,2654,3017,3021,2565,2482,2607,2717,2940,1994,2086,2525,2964,2931,3004,2851,2496,2185,2962,3067,2920,2158,1835,2098,2889,2899,2994,2905,2869,3016,2922,3039,3045,2279,1963,2220,2834,2905,2910,3011,2385,2349,2704,3087,3088,2352,2395,2328,2026,2827,2989,3028,2594,2318,2893,2845,3088,2315,1875,2393,3054,2905,2960,3004,2936,3031,2987,2965,3010,2776,2204,2105,2722,2870,2964,2905,2421,2452,2981,2897,3041,2481,2590,2882,2892,2936,3009,3007,2505,2514,2993,3092,3045,1968,1940,2845,3064,2671,2991,3023,2773,2594,2928,3060,3040,2200,2465,2327,3044,2884,2866,2876,2376,2581,2997,2914,2979,2343,2603,2945,3018,2929,3018,3000
"Nuclear : Maryland","thousand megawatthours","ELEC.GEN.NUC-MD-99.M",1294,1169,963,623,939,1203,1253,1246,1213,1223,1244,1287,1288,862,645,620,639,830,1147,1242,1211,1271,1079,1292,1293,872,647,785,1259,1240,1270,1258,1226,1294,1245,1301,1246,1219,1261,816,1105,1251,1279,1273,1231,1302,1275,1323,1323,1047,950,1268,1308,1240,1255,1252,1218,1283,1249,1309,1297,993,648,1015,1304,1246,1264,1259,1233,1288,1153,1131,1298,1086,661,1182,1303,1241,1267,1251,1223,1265,1263,1313,1315,1070,977,1262,1292,1232,1242,1235,1213,1273,1261,1306,1304,1045,941,1260,1292,1227,1159,1246,1226,1283,1259,1309,1312,743,807,1258,1141,1208,1229,1235,1215,1280,1256,1310,1315,866,965,1265,1299,1183,1248,1172,1218,1278,1273,1317,1317,663,650,1052,1309,1245,1170,1148,1231,1302,1197,1297,1326,950,785,1284,1095,1250,1262,1258,1140,1307,1279,1329,1131,920,885,1284,1258,1238,1238,1262,1226,1297,1277,1326,1328,919,1036,1185,1302,1255,1280,1282
"Nuclear : North Carolina","thousand megawatthours","ELEC.GEN.NUC-NC-99.M",3418,3144,2406,2965,3568,3420,3449,3512,3189,2938,2847,2919,3551,3066,2159,3330,3615,3494,3510,3492,2830,3330,3572,3679,3622,3333,3196,3342,3217,3491,3600,3538,2797,3520,3503,3749,3733,3431,2368,3151,3400,3568,3629,3510,3604,2992,2937,3767,3774,3329,2341,2528,3681,3628,3542,3395,3245,3207,3619,3694,3841,3460,3150,2983,3107,3605,3737,3400,3116,2950,2921,3693,3833,3473,2496,2296,2957,3589,3743,3709,3200,3238,3699,3811,3832,3570,2465,2497,3790,3518,3733,3460,3233,2948,2895,3835,3837,3417,3111,2708,3468,3589,3747,3688,2455,3418,3577,3834,3778,3264,2584,2478,3675,3498,3749,3750,3626,3130,3381,3827,3500,3366,2348,3069,3703,3633,3746,3729,3225,3354,3109,3746,3844,3364,3114,2765,3043,3397,3770,3762,2925,2961,2719,3723,3854,3294,2682,2395,2923,3474,3795,3650,3656,3829,3139,3550,3768,3424,2869,2700,3678,3680,3799,3793,3172,2973,3261,3850,3899,3119,3200,2957,3499,3697,3769,3738
"Nuclear : South Carolina","thousand megawatthours","ELEC.GEN.NUC-SC-99.M",3769,3438,4070,3709,3976,4534,4779,4823,4028,4222,4315,4209,4928,4464,4737,3732,3641,4547,4843,4742,4686,4117,3931,4959,4971,4426,4112,4596,4188,4338,4877,4739,4137,3775,2846,3413,4716,4384,4581,3671,3730,4368,4883,4847,4118,3639,4089,4175,4808,4362,4967,4128,3145,4492,4874,4753,4321,4170,4151,4968,4982,4502,4597,3875,3738,4179,4884,4775,4599,3925,3031,3711,4938,4166,4916,4272,4005,4730,4886,4856,4259,3917,3696,4559,4811,4627,4777,4171,2752,3767,4885,4862,4524,4227,3713,4646,4992,4503,4262,4097,4425,4752,4891,4865,4680,3809,2733,4142,4989,4272,4915,3923,3735,4134,4514,4757,4155,3641,3966,4985,4716,4506,4973,3578,2648,4266,4852,4837,4647,4669,4376,4834,4703,4130,3820,3478,4304,4619,4786,4874,4738,4381,3312,4001,5011,4503,4787,4745,4937,4764,4904,4906,3940,3271,3617,4866,4966,4528,4541,3703,3199,3978,4512,4334,4741,4865,4268,4784,4972,4444,4123,4671,4592,4289,4829,4848
"Nuclear : Virginia","thousand megawatthours","ELEC.GEN.NUC-VA-99.M",2556,2204,2083,2286,2315,2506,2525,2392,1921,1882,1050,2040,2612,2360,2441,2075,2594,2507,2581,2570,1982,1922,1778,1923,1490,2040,1896,1838,1992,1944,2586,2580,2172,1814,1921,2544,2604,2279,2588,2521,1748,2472,2580,2584,2078,2418,1923,2519,2589,2229,2591,2362,2116,2327,2390,2323,2461,1616,2333,2581,2541,2183,2119,2108,2035,2480,2544,2548,2485,2103,1928,2519,2494,2319,2266,1961,2554,2453,2377,2550,1982,2003,1905,2404,2526,2232,2567,2289,2152,2461,2535,2537,2089,1786,2184,2572,2571,2322,2041,2208,2319,2469,2542,2533,2468,2376,1903,2461,2569,2319,2321,1851,2500,2250,2354,2569,2034,1317,1863,2624,2657,2103,2667,2145,2057,2090,2623,2255,1217,1283,1733,2717,2693,2546,2159,1778,2120,2462,2647,2643,2605,2380,2012,2678,2720,2448,2758,2093,2131,2611,2668,2682,2077,2153,2222,2763,2762,2445,2684,2427,2276,2600,2673,2681,2054,2409,2668,2542,2709,2436,2213,2301,2129,2593,2213,2669
"Nuclear : West Virginia","thousand megawatthours","ELEC.GEN.NUC-WV-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Nuclear : East South Central","thousand megawatthours","ELEC.GEN.NUC-ESC-99.M",6468,5676,5372,4317,5993,6019,5950,5954,6084,5626,5220,6177,6472,5731,5585,5216,5463,5980,6077,6206,5087,5197,6230,6245,6138,5452,4752,4522,5453,5351,6184,6188,5471,5724,5449,6047,5907,5733,4297,5888,6438,6196,6265,6345,6071,5625,5190,6524,6513,5316,5268,5415,5591,6098,6342,6269,5612,5392,5372,6388,6273,5719,5602,5071,4924,5396,6205,6001,5612,5283,5293,5628,6329,5412,5105,4764,5767,6670,7133,6524,6066,5531,5920,7164,6529,6130,6017,6161,5713,6764,6854,6520,6332,5727,5417,7256,7359,6167,6384,5394,5979,6203,7091,6983,6389,6207,6238,7284,7089,6537,6035,5922,5716,6612,6610,5943,6743,5663,5389,7063,7188,6406,6400,5663,3930,6083,6936,6831,6817,6479,6708,7170,7220,6363,5420,4830,5414,6208,6990,7018,6497,5784,5574,5922,6533,6136,6661,5975,7103,6932,7224,7114,6903,5879,6348,7368,7249,5696,5746,6068,6486,6470,7138,6883,6898,6198,6815,7416,7475,6197,6296,5507,6502,7020,7019,6978
"Nuclear : Alabama","thousand megawatthours","ELEC.GEN.NUC-AL-99.M",2940,2516,1873,1460,2677,2725,2830,2893,2820,2409,2489,2724,2950,2665,2687,2309,2853,2805,2783,2850,2346,1918,2833,2858,2812,2279,2222,2193,2820,2516,2739,2887,2817,2806,2612,2974,2968,2667,1650,2462,2929,2825,2798,2884,2798,2317,2373,2964,2961,2512,2581,2340,2899,2724,2879,2832,2700,2478,1940,2849,2774,2568,2297,2362,2243,2808,2850,2772,2817,2622,2871,2927,2855,2192,2119,1775,2443,3289,3653,3255,3283,2833,3019,3608,3185,3533,3350,2800,3239,3564,3397,3372,3409,3137,2321,3686,3793,2946,3167,2828,2735,2875,3666,3552,3337,3468,3582,3767,3612,3353,2791,2811,3318,3410,3190,2591,3512,3035,2633,3685,3676,3254,2988,3124,1589,3543,3652,3541,3542,3264,3475,3709,3737,3523,3757,2440,2995,3502,3605,3704,3646,3467,2909,3556,3825,3005,2987,2455,3444,3563,3720,3718,3542,3218,3603,3735,3745,3061,3256,3705,3632,3589,3736,3414,3469,2597,3272,3769,3860,3484,3193,2687,3377,3620,3704,3697
"Nuclear : Kentucky","thousand megawatthours","ELEC.GEN.NUC-KY-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Nuclear : Mississippi","thousand megawatthours","ELEC.GEN.NUC-MS-99.M",947,827,943,373,769,887,922,578,893,939,910,936,943,851,938,899,921,774,930,882,324,733,910,956,913,835,959,726,940,910,946,943,906,951,919,955,954,630,205,926,947,918,945,944,920,952,927,962,960,765,963,925,949,915,941,927,517,352,927,937,954,867,859,846,601,836,869,868,906,951,924,938,949,854,471,478,740,909,946,770,435,946,916,945,792,709,812,905,944,905,938,928,617,14,880,952,947,860,937,904,935,897,925,926,892,936,912,927,927,838,721,641,103,900,927,916,903,933,904,931,916,812,906,861,905,795,878,887,873,887,735,883,897,537,-8,-7,-10,271,900,971,1000,1078,996,671,311,955,1070,1030,1067,983,979,878,990,697,851,1053,908,293,138,779,1033,937,967,965,994,1048,1035,1053,1030,586,1058,975,1048,971,1031,1004
"Nuclear : Tennessee","thousand megawatthours","ELEC.GEN.NUC-TN-99.M",2581,2333,2556,2484,2547,2407,2198,2484,2371,2278,1822,2517,2580,2215,1960,2008,1689,2401,2365,2474,2417,2546,2488,2430,2413,2338,1571,1603,1694,1925,2499,2358,1748,1966,1918,2118,1985,2435,2442,2500,2562,2453,2521,2517,2353,2356,1890,2599,2591,2039,1724,2150,1743,2459,2522,2511,2396,2561,2505,2602,2545,2284,2445,1863,2080,1752,2487,2361,1889,1710,1499,1763,2525,2366,2516,2510,2584,2472,2534,2499,2348,1751,1985,2611,2552,1889,1855,2456,1529,2294,2519,2221,2306,2575,2215,2618,2619,2361,2280,1662,2308,2431,2500,2505,2160,1803,1743,2590,2551,2346,2523,2470,2295,2302,2493,2437,2328,1695,1852,2446,2595,2341,2506,1679,1436,1745,2406,2403,2402,2328,2499,2579,2586,2303,1671,2397,2429,2434,2485,2342,1850,1239,1669,1695,2397,2176,2605,2490,2591,2385,2525,2518,2370,1964,1894,2580,2597,2342,2352,1585,1822,1944,2434,2504,2435,2553,2507,2594,2586,2127,2046,1845,2077,2428,2284,2277
"Nuclear : West South Central","thousand megawatthours","ELEC.GEN.NUC-WSC-99.M",6113,5592,5060,5032,6295,6154,6265,6031,5986,5091,6196,6465,6459,5837,6135,4489,5964,6043,6284,6416,6015,4167,4198,5476,5653,4818,5183,5039,4998,5341,4984,5974,5823,5000,5366,6072,6439,6035,6386,4424,6057,6136,6489,6390,6221,6079,5820,6487,6549,5350,4943,4384,5715,5834,6490,6426,5929,4444,5418,6116,6670,5750,6672,6174,6296,6358,6567,6545,6003,4147,6120,5929,6567,5892,5475,4647,6013,6194,6667,6610,6348,6153,6270,6683,6165,5218,5711,4683,5806,6371,6631,6648,5491,5235,5829,6478,6738,5953,6661,6549,6627,6471,6665,6658,5193,4236,5058,6640,6457,5908,6451,4289,6634,6456,6678,6272,6418,6785,5804,6844,6378,5591,6001,4043,5747,6484,6408,6543,6523,5719,5354,5668,5755,5441,5747,5648,6322,6241,6705,6546,5942,4966,4341,5937,5298,4952,5012,3773,5867,5780,6044,6400,6302,6195,6066,5525,6414,6138,6198,4084,4236,6093,6675,6656,6460,5706,5753,6666,6548,5387,5932,5531,6353,5950,6586,6615
"Nuclear : Arkansas","thousand megawatthours","ELEC.GEN.NUC-AR-99.M",1029,1215,1031,1109,1322,1285,1268,1318,1286,1333,1244,1341,1334,1209,1341,875,1223,1334,1367,1370,1264,807,1082,1353,1392,1256,1391,1340,1370,1334,1333,1233,971,1027,1008,1034,1395,1217,1393,1130,1095,1159,1375,1348,1262,1341,1348,1387,1395,1260,832,1049,1386,1330,1365,1365,1315,826,725,843,1386,1260,1393,1336,1384,1331,1369,1364,1043,651,1320,1394,1237,1225,1382,1143,979,1331,1372,1363,1328,1383,1349,1394,1393,951,1009,1053,1359,1331,1335,1369,1335,1265,726,1044,1300,1061,1263,1328,1385,1324,1368,1367,722,1386,1348,1317,1390,1196,1164,763,1334,1319,1361,1141,1242,1381,1343,1388,1389,1042,744,1211,1170,1324,1360,1364,1327,1015,876,1371,1368,1299,1381,1331,1372,1321,1357,1315,890,1128,1343,1389,1389,1255,1148,26,743,713,735,1109,1296,1351,1342,837,1128,1254,1387,1160,440,994,1366,1360,1321,1376,1340,1354,1209,669,1346,1325,1372,1317,1344,1329
"Nuclear : Louisiana","thousand megawatthours","ELEC.GEN.NUC-LA-99.M",1539,1340,1566,1254,1553,1463,1536,1538,1317,1142,1516,1571,1569,1416,1294,1018,1419,1503,1485,1546,1427,1560,1512,1556,1564,1165,1130,1150,1545,1486,1541,1536,1406,1128,915,1563,1547,1440,1552,1503,1516,1489,1527,1453,1477,1125,957,1493,1513,1154,1395,1126,704,998,1520,1473,1149,1580,1466,1597,1609,1168,1604,1297,1263,1510,1574,1561,1527,1466,1356,802,1599,1452,1586,1400,1295,1273,1596,1582,1441,1041,1278,1533,994,819,1225,1447,711,1455,1604,1589,718,1618,1573,1617,1622,1458,1610,1558,1594,1541,1593,1584,1266,782,696,1476,1615,1451,1592,1556,1597,1523,1563,1461,1535,1609,1525,1612,1203,1076,1449,809,1196,1514,1587,1586,1537,1612,1564,1483,1566,1507,1598,1510,1148,1266,1587,1476,1434,1164,702,702,959,1146,1096,1421,1511,1414,1582,1574,1519,1579,1554,1599,1601,1445,1602,1027,1018,1535,1577,1568,1515,1372,1553,1500,1523,1276,891,1509,1556,1065,1528,1579
"Nuclear : Oklahoma","thousand megawatthours","ELEC.GEN.NUC-OK-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Nuclear : Texas","thousand megawatthours","ELEC.GEN.NUC-TX-99.M",3545,3038,2463,2669,3420,3406,3460,3175,3383,2616,3436,3553,3555,3211,3500,2596,3321,3206,3432,3500,3324,1800,1604,2567,2697,2398,2663,2549,2082,2522,2110,3205,3447,2845,3444,3475,3498,3378,3441,1791,3446,3488,3587,3589,3482,3614,3515,3607,3641,2936,2716,2208,3625,3506,3604,3589,3465,2038,3228,3677,3675,3322,3675,3541,3650,3517,3624,3620,3433,2031,3444,3733,3731,3216,2507,2104,3738,3590,3698,3664,3579,3729,3643,3756,3778,3448,3477,2183,3736,3585,3692,3690,3438,2352,3531,3817,3816,3434,3788,3663,3648,3606,3705,3707,3204,2068,3014,3846,3453,3261,3695,1970,3703,3613,3754,3670,3641,3795,2936,3844,3786,3473,3808,2022,3380,3646,3461,3594,3660,3091,2913,2813,2821,2635,2769,2807,3803,3654,3761,3756,3618,2674,2297,3846,2951,2550,2769,2326,3613,3652,3727,3718,3487,3265,3170,3088,3685,3439,3210,1897,2778,3564,3732,3728,3624,2958,2860,3812,3817,3442,3694,2697,3425,3568,3715,3707
"Nuclear : Mountain","thousand megawatthours","ELEC.GEN.NUC-MTN-99.M",2733,2186,2754,1838,2267,2724,2701,2656,2616,1200,2263,2786,2844,2567,2344,2170,2819,2718,2792,2794,2615,1880,2507,2813,2819,2545,2560,1801,2742,2499,2604,2486,2574,1849,1809,2292,2888,2155,2339,1945,2470,1975,2655,2777,2692,1893,1804,2520,2818,2194,2710,1788,1790,1986,2550,2115,2712,1317,1861,1967,2102,1891,1917,779,1498,1838,2358,2849,2361,1209,2299,2910,2750,2266,2885,2224,2333,1785,2115,2842,2666,1391,1566,1958,2301,2783,2872,1905,1955,2519,2927,2931,2577,2047,1945,2490,2981,2695,2889,2016,2037,2867,2939,2947,2856,2036,1909,2490,2935,2688,2504,1973,2156,2782,2932,2925,2851,1994,2483,2978,2846,2688,2879,1930,2697,2857,2934,2626,2808,2124,1928,2962,2959,2697,2453,2240,2953,2835,2831,2899,2799,1861,2437,2970,2859,2684,2897,1925,2945,2846,2892,2930,2843,2095,1977,2537,2977,2686,2967,2028,2675,2848,2927,2910,2832,2280,2218,2973,2974,2683,2968,2007,2764,2849,2945,2929
"Nuclear : Arizona","thousand megawatthours","ELEC.GEN.NUC-AZ-99.M",2733,2186,2754,1838,2267,2724,2701,2656,2616,1200,2263,2786,2844,2567,2344,2170,2819,2718,2792,2794,2615,1880,2507,2813,2819,2545,2560,1801,2742,2499,2604,2486,2574,1849,1809,2292,2888,2155,2339,1945,2470,1975,2655,2777,2692,1893,1804,2520,2818,2194,2710,1788,1790,1986,2550,2115,2712,1317,1861,1967,2102,1891,1917,779,1498,1838,2358,2849,2361,1209,2299,2910,2750,2266,2885,2224,2333,1785,2115,2842,2666,1391,1566,1958,2301,2783,2872,1905,1955,2519,2927,2931,2577,2047,1945,2490,2981,2695,2889,2016,2037,2867,2939,2947,2856,2036,1909,2490,2935,2688,2504,1973,2156,2782,2932,2925,2851,1994,2483,2978,2846,2688,2879,1930,2697,2857,2934,2626,2808,2124,1928,2962,2959,2697,2453,2240,2953,2835,2831,2899,2799,1861,2437,2970,2859,2684,2897,1925,2945,2846,2892,2930,2843,2095,1977,2537,2977,2686,2967,2028,2675,2848,2927,2910,2832,2280,2218,2973,2974,2683,2968,2007,2764,2849,2945,2929
"Nuclear : Colorado","thousand megawatthours","ELEC.GEN.NUC-CO-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Nuclear : Idaho","thousand megawatthours","ELEC.GEN.NUC-ID-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Nuclear : Montana","thousand megawatthours","ELEC.GEN.NUC-MT-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Nuclear : Nevada","thousand megawatthours","ELEC.GEN.NUC-NV-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Nuclear : New Mexico","thousand megawatthours","ELEC.GEN.NUC-NM-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Nuclear : Utah","thousand megawatthours","ELEC.GEN.NUC-UT-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Nuclear : Wyoming","thousand megawatthours","ELEC.GEN.NUC-WY-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Nuclear : Pacific Contiguous","thousand megawatthours","ELEC.GEN.NUC-PCC-99.M",3222,2988,3300,3071,2058,3094,3890,4066,3969,3802,3882,4129,4090,3341,4058,3914,2990,2769,3863,4005,3912,3779,2970,3710,3441,2473,2960,3599,3381,3083,3965,4131,3994,4121,3993,4068,3877,3212,2927,2915,3246,3520,3986,3491,3841,3090,2282,2862,3904,3128,3901,3927,3256,3250,4063,4123,3865,3851,3166,3965,3346,2969,3210,2166,3106,3997,4144,4169,4052,3740,2977,3411,4175,3804,4183,3800,2711,2963,4102,3874,4032,3383,3629,3245,3599,3131,3324,3239,3603,3719,4147,3612,3414,3428,3049,3487,3113,2345,3433,3961,3431,3259,3945,3109,3298,2438,2731,3335,3192,2961,2920,3282,4161,3837,4144,4153,4028,2668,2794,3303,3351,3242,4038,3261,2519,3089,3371,3286,2974,4164,4017,4158,3543,2277,2501,1971,1323,1812,2447,2499,2403,2354,2351,2359,2512,1551,1816,2427,1932,1562,2292,2509,2427,2418,2409,2517,2437,1544,1796,2456,2457,2427,2483,2107,2413,1769,2227,2366,2400,2281,2517,2429,1882,1660,2263,2503
"Nuclear : California","thousand megawatthours","ELEC.GEN.NUC-CA-99.M",2380,2230,2469,2319,1668,3101,3295,3280,3164,2961,3068,3287,3247,2869,3227,3111,2182,2217,3168,3196,3150,2949,2163,2873,2611,1754,2508,2805,3310,3071,3298,3311,3198,3304,3186,3237,3079,2432,2096,2116,2459,2750,3215,3284,3050,2268,1485,2033,3075,2391,3084,3144,3113,3174,3294,3296,3063,3015,2384,3120,2539,2248,2400,1364,2318,3249,3350,3355,3249,2924,2382,2579,3337,3045,3372,3181,2456,2921,3333,3109,3248,2552,2833,2406,2777,2350,2519,2436,2851,3006,3344,2893,2625,2606,2416,2658,2309,1751,2611,3251,3263,3239,3249,3003,2751,1717,2118,2501,2384,2218,2138,2500,3355,3269,3378,3382,3237,1848,1997,2495,2529,2497,3223,3239,2519,3089,3371,3286,2960,3359,3268,3325,2700,1491,1675,1185,823,1097,1674,1673,1604,1521,1541,1524,1673,793,996,1626,1678,1484,1486,1688,1634,1581,1595,1678,1597,799,960,1645,1680,1628,1663,1508,1612,941,1423,1530,1564,1526,1694,1645,1696,1640,1682,1666
"Nuclear : Oregon","thousand megawatthours","ELEC.GEN.NUC-OR-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Nuclear : Washington","thousand megawatthours","ELEC.GEN.NUC-WA-99.M",842,758,831,752,390,-7,596,786,805,841,814,842,843,472,831,803,808,552,695,809,761,830,807,837,831,718,452,793,71,12,667,820,796,817,807,831,799,780,831,799,787,770,771,206,791,822,797,828,829,737,816,782,143,76,769,826,802,836,782,844,807,722,811,801,788,748,794,814,803,816,594,831,838,759,811,620,255,42,769,765,784,831,796,840,822,781,806,803,752,713,802,719,789,822,633,829,805,593,822,710,167,20,695,106,547,721,613,834,808,743,782,783,806,568,765,770,791,819,798,808,823,746,815,23,0,0,0,0,14,805,748,833,844,786,826,786,500,716,773,826,799,833,810,836,839,757,821,802,255,78,806,821,793,837,814,839,840,745,836,812,777,800,820,598,801,828,804,837,836,755,823,783,186,20,581,837
"Nuclear : Pacific Noncontiguous","thousand megawatthours","ELEC.GEN.NUC-PCN-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Nuclear : Alaska","thousand megawatthours","ELEC.GEN.NUC-AK-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Nuclear : Hawaii","thousand megawatthours","ELEC.GEN.NUC-HI-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Conventional hydroelectric","thousand megawatthours","ELEC.GEN.HYC-US-99.M","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""
"Conventional hydroelectric : United States","thousand megawatthours","ELEC.GEN.HYC-US-99.M",18852,17473,20477,18013,19176,20728,18079,18914,15256,15235,15413,19346,21795,20192,21009,24247,26663,28213,25471,21084,17087,17171,19730,21669,20600,19780,24202,24759,29395,28586,24843,22972,18480,18428,19715,24044,22983,20914,22914,20888,24020,25252,23318,21592,20525,18863,20937,26211,24272,21607,22936,23058,27279,26783,25957,21566,17364,18006,19353,22141,27437,24762,24625,28556,30818,29757,25439,21728,17201,17055,20272,21596,26045,18567,24163,23891,26047,22817,22478,19941,14743,14796,15682,18342,20779,18789,21669,22234,27221,29177,25555,21229,16178,15470,15668,20861,23490,17812,21827,25770,29560,29233,23385,19580,17359,19691,21008,24730,22383,20590,20886,19097,25079,29854,24517,20119,17265,17683,19562,23169,25531,24131,31134,31194,32587,32151,31285,25764,21378,19787,20681,23732,23107,20283,25909,26294,28643,26659,26491,23034,17604,16501,18732,22984,24829,20418,20534,25097,28450,27384,27255,21633,16961,17199,17677,21128,21636,17449,24219,25053,26406,25814,24260,19757,15933,17088,18712,22420,24459,22590,24696,22468,20102,20002,21029,19320
"Conventional hydroelectric : New England","thousand megawatthours","ELEC.GEN.HYC-NEW-99.M",618,498,529,719,589,587,407,316,293,282,311,363,369,383,594,727,764,734,492,365,332,375,549,553,496,400,537,722,681,574,421,583,484,707,797,901,969,569,700,834,718,458,444,604,617,398,446,641,807,645,707,942,807,736,600,507,424,770,850,832,930,828,744,781,889,911,850,818,556,608,723,748,682,512,585,781,832,515,433,359,341,450,667,658,816,789,894,990,776,731,718,907,515,547,762,856,784,679,929,969,879,681,910,768,405,536,690,865,724,638,863,980,729,548,440,421,344,812,807,722,718,586,864,957,1077,721,417,424,695,829,627,819,708,585,805,643,817,643,445,368,389,630,597,729,669,625,695,831,728,856,771,450,499,433,527,590,746,583,555,712,734,586,544,539,413,513,519,661,663,518,615,756,563,682,644,524
"Conventional hydroelectric : Connecticut","thousand megawatthours","ELEC.GEN.HYC-CT-99.M",38,33,33,60,25,41,15,9,8,8,6,11,32,19,24,34,46,38,13,8,7,14,47,54,47,31,58,54,40,57,24,33,39,49,59,73,255,11,22,13,30,15,40,73,1,1,0,1,49,40,44,44,38,42,44,37,31,30,36,44,50,46,40,44,54,52,54,54,35,32,39,44,36,26,30,43,46,28,22,19,17,24,36,35,44,45,51,63,47,45,45,57,33,32,44,50,44,37,50,55,49,37,51,45,24,31,39,48,35,31,43,48,35,26,21,21,18,40,38,36,46,38,53,65,74,44,29,30,46,53,40,51,30,24,34,26,35,28,20,17,17,26,25,30,34,34,36,43,39,45,40,24,27,24,26,29,41,31,31,"NM","NM","NM","NM","NM","NM","NM","NM",32,33,25,"NM","NM","NM","NM","NM","NM"
"Conventional hydroelectric : Maine","thousand megawatthours","ELEC.GEN.HYC-ME-99.M",261,230,246,280,289,277,206,183,176,162,161,175,147,138,240,306,349,316,267,209,183,189,216,209,192,161,210,275,261,262,207,276,231,353,332,414,403,377,340,308,265,209,219,267,301,247,217,277,373,321,351,407,376,336,282,280,210,356,396,402,417,387,362,334,388,397,384,369,285,277,330,347,371,330,309,348,409,314,241,240,251,242,328,355,390,399,433,390,381,358,341,400,321,281,355,408,411,370,395,391,378,314,384,398,265,246,279,380,372,333,381,418,328,265,254,239,238,325,328,327,367,325,376,357,380,307,249,251,354,349,306,358,362,307,322,285,334,323,290,256,262,324,323,344,333,314,332,314,328,395,323,235,263,250,230,243,331,280,259,289,318,284,261,271,216,244,240,296,322,264,305,307,257,290,287,256
"Conventional hydroelectric : Massachusetts","thousand megawatthours","ELEC.GEN.HYC-MA-99.M",106,72,88,94,50,74,48,35,29,29,34,44,51,59,84,85,93,83,62,66,67,73,74,80,86,74,88,111,100,80,66,93,76,91,101,109,92,55,89,107,112,67,38,78,94,59,79,129,106,81,91,111,100,95,77,56,50,80,93,101,144,132,116,133,146,148,139,137,84,96,117,122,67,48,81,99,105,58,54,26,16,58,90,96,112,112,122,105,93,82,83,108,47,70,102,120,95,77,133,119,95,92,126,99,34,91,118,122,94,84,115,122,95,63,43,42,22,106,108,102,86,62,118,116,134,105,46,43,75,116,112,135,103,79,114,89,120,88,34,20,25,68,73,99,78,75,94,118,95,107,110,52,63,41,73,85,106,77,79,94,95,77,79,70,"NM",70,75,96,90,63,80,104,71,88,90,"NM"
"Conventional hydroelectric : New Hampshire","thousand megawatthours","ELEC.GEN.HYC-NH-99.M",117,78,80,173,133,101,70,42,37,39,53,68,65,66,110,187,151,149,54,31,28,55,122,122,82,66,97,149,150,90,62,88,73,116,179,179,136,74,107,239,164,65,65,82,128,59,76,120,156,101,110,250,189,165,106,61,70,206,217,168,173,131,110,143,153,168,119,108,55,114,132,124,136,63,103,212,200,78,65,48,39,81,141,98,123,98,126,270,131,134,145,202,76,79,119,132,117,80,166,231,190,116,189,133,46,101,142,168,113,92,183,217,133,87,48,61,35,197,164,147,104,76,144,256,313,112,53,69,118,157,77,125,110,85,189,115,189,127,63,48,49,103,86,124,105,116,121,198,156,163,160,67,78,67,89,108,143,95,89,194,194,107,97,88,"NM",82,89,135,113,85,87,192,124,180,118,79
"Conventional hydroelectric : Rhode Island","thousand megawatthours","ELEC.GEN.HYC-RI-99.M",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,0,1,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,1,1,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM"
"Conventional hydroelectric : Vermont","thousand megawatthours","ELEC.GEN.HYC-VT-99.M",97,84,80,111,91,95,68,47,44,44,57,66,74,101,136,115,126,149,95,50,48,44,89,89,89,68,85,133,129,84,61,92,64,97,126,126,83,51,142,167,147,100,81,104,93,33,73,113,122,101,110,130,103,99,91,73,63,97,107,116,146,132,115,127,148,146,153,150,97,89,105,111,71,45,62,80,71,36,50,25,17,44,71,74,146,135,161,162,124,111,104,140,37,84,142,146,115,114,185,171,166,122,160,93,35,66,112,147,108,97,142,174,138,106,73,57,30,143,169,109,114,84,172,161,175,153,40,30,101,154,92,150,103,90,145,128,139,76,37,27,36,109,89,131,118,85,111,158,110,145,138,71,68,51,108,124,125,99,97,102,97,90,81,83,"NM",89,88,103,105,80,107,115,85,"NM",113,"NM"
"Conventional hydroelectric : Middle Atlantic","thousand megawatthours","ELEC.GEN.HYC-MAT-99.M",2204,2195,2451,2351,2174,2057,1889,1758,1640,1805,1967,2261,2177,2243,2602,2463,2687,2499,2152,1919,1801,1963,2321,2442,2274,1913,2397,2173,2387,2380,2160,2340,2079,2203,2563,2785,2310,2011,2502,2245,2289,2166,2214,2293,2224,2106,2290,2532,2667,2435,2712,2661,2453,2207,2122,1920,1784,2068,2451,2567,2843,2591,2673,2408,2529,2379,2649,2484,2197,2352,2705,2413,2943,2182,2868,2524,2516,2074,1960,1987,1838,1924,2225,2468,2598,2283,2913,2589,2666,2289,2396,2261,2050,2099,2418,2735,2479,2301,2847,2617,2717,2487,2510,2501,2183,2354,2550,2783,2487,2170,2691,2312,2303,2191,2231,2140,1990,2241,2418,2649,2182,1988,2848,2602,2955,2733,2527,2430,2435,2671,2789,3078,2816,2648,2845,2312,2413,2101,1911,1862,1742,1792,2194,2269,2476,2127,2429,2213,2184,2131,2426,2215,2020,2198,2459,2638,2439,2136,2425,2504,2597,2368,2322,2301,2084,2248,2314,2560,2357,1947,2483,2554,2277,2374,2845,2533
"Conventional hydroelectric : New Jersey","thousand megawatthours","ELEC.GEN.HYC-NJ-99.M",2,1,2,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,4,3,3,3,3,3,4,4,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,4,3,2,2,2,1,3,3,3,4,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,3,2,2,2,2,2,2,2,2,2,3,2,3,3,3,3,3,3,2,2,3,3,2,1,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,1,1,2,1,1,1,2,2,"NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM"
"Conventional hydroelectric : New York","thousand megawatthours","ELEC.GEN.HYC-NY-99.M",2017,2013,2203,2043,2053,1921,1801,1698,1575,1740,1909,2110,2051,2047,2392,2221,2369,2258,2041,1849,1727,1798,2113,2182,1998,1712,2040,1861,2125,2065,1945,2078,1794,1955,2271,2425,2043,1833,2133,1890,1958,1969,2022,2020,1918,1890,2080,2233,2398,2197,2458,2365,2288,2087,2004,1850,1718,1888,2230,2301,2472,2318,2471,2187,2305,2135,2379,2317,1992,2156,2418,2195,2608,2067,2468,2159,2302,1986,1905,1913,1797,1851,2047,2150,2293,1915,2484,2259,2363,2174,2302,2197,1988,2035,2307,2407,2263,2079,2542,2329,2452,2246,2357,2300,2082,2160,2335,2469,2205,1978,2325,2052,2070,2064,2158,2073,1947,2012,2218,2369,2077,1800,2398,2174,2538,2520,2431,2312,2188,2322,2516,2721,2505,2417,2581,2148,2104,1917,1846,1786,1669,1668,1997,2016,2198,1878,2167,1913,1971,1918,2206,2096,1926,2071,2329,2300,2127,1956,2124,2086,2233,2134,2165,2149,1983,2116,2190,2283,2152,1833,2162,2116,2086,2129,2512,2402
"Conventional hydroelectric : Pennsylvania","thousand megawatthours","ELEC.GEN.HYC-PA-99.M",185,181,246,307,119,134,86,58,64,63,57,149,124,195,208,242,317,240,110,69,74,164,208,259,272,198,353,309,259,312,211,258,282,245,289,358,264,175,366,352,328,194,189,269,303,213,207,295,266,236,251,292,162,117,116,68,65,177,218,263,368,271,199,218,221,240,267,164,203,194,285,215,333,113,398,363,212,86,54,73,39,71,177,316,303,366,427,328,301,112,92,62,61,62,109,325,214,219,302,286,262,238,150,198,98,192,212,312,281,190,364,259,231,126,72,65,41,228,198,278,104,186,448,426,414,211,94,116,245,347,271,355,310,231,263,164,308,183,64,75,72,124,195,252,277,248,261,298,211,212,218,117,92,126,129,337,309,178,299,415,362,232,155,150,99,131,121,275,203,112,319,435,189,242,330,129
"Conventional hydroelectric : East North Central","thousand megawatthours","ELEC.GEN.HYC-ENC-99.M",374,324,414,502,509,491,380,396,297,330,357,470,414,351,395,491,503,505,447,410,398,515,416,367,327,299,348,456,495,398,372,343,290,330,321,323,340,325,536,419,587,411,381,372,312,387,371,406,384,351,384,371,374,412,432,357,285,271,314,350,404,374,347,358,439,428,449,434,325,281,312,342,354,288,424,474,403,266,247,272,201,283,265,324,393,266,213,388,303,404,399,318,340,230,332,357,296,266,407,528,332,334,298,292,240,322,348,269,321,239,320,511,363,515,442,360,224,326,401,343,376,296,267,400,295,516,465,420,377,413,357,255,221,315,399,416,316,311,286,270,250,306,311,295,348,334,380,505,514,438,266,391,338,378,374,189,330,261,424,425,447,451,444,338,283,289,336,388,429,420,400,340,368,335,316,329
"Conventional hydroelectric : Illinois","thousand megawatthours","ELEC.GEN.HYC-IL-99.M",13,11,13,14,12,12,13,12,11,11,12,13,11,9,12,11,11,12,12,12,10,9,10,12,12,11,11,10,10,11,12,13,12,12,11,13,9,9,13,13,16,18,18,16,10,8,12,12,14,13,14,12,10,11,11,10,10,7,8,8,15,13,13,15,17,16,17,17,13,12,13,13,13,9,14,17,13,14,13,17,14,10,8,12,12,12,13,13,13,13,10,10,14,9,7,11,10,11,13,15,13,13,11,11,9,10,10,10,6,5,7,10,14,18,16,16,10,5,6,7,7,10,13,14,12,16,10,16,11,9,11,11,8,11,10,13,11,10,10,6,7,8,9,8,7,11,12,11,12,14,12,8,8,7,10,8,"NM",9,12,"NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM"
"Conventional hydroelectric : Indiana","thousand megawatthours","ELEC.GEN.HYC-IN-99.M",52,37,51,42,46,58,55,47,42,48,43,51,46,21,13,29,30,51,50,29,25,46,42,29,22,21,26,40,36,31,52,48,39,50,27,33,0,23,31,24,42,37,65,59,35,62,40,27,17,27,32,31,45,52,51,41,20,31,49,43,32,36,33,32,49,52,54,49,46,35,32,39,18,43,16,30,51,44,45,50,33,38,52,30,44,20,7,35,35,48,54,41,28,31,47,45,45,30,38,34,39,49,53,47,43,51,43,34,34,34,22,49,33,41,47,43,23,39,48,39,45,25,6,8,13,48,60,53,51,47,34,19,19,34,24,48,33,41,41,38,41,44,43,29,30,30,27,30,37,35,24,47,41,43,31,14,27,19,28,18,22,29,38,25,34,37,40,33,30,26,"NM","NM",38,31,23,35
"Conventional hydroelectric : Michigan","thousand megawatthours","ELEC.GEN.HYC-MI-99.M",123,122,133,154,159,144,114,148,94,117,115,140,134,122,154,161,165,153,138,139,116,141,125,121,113,102,122,136,143,122,109,105,91,97,122,123,116,77,283,182,313,138,56,42,49,54,81,145,147,127,138,134,122,135,144,120,100,87,94,114,147,132,117,127,149,145,152,150,98,89,104,111,158,76,234,246,141,42,43,52,33,58,43,144,128,138,147,177,93,138,84,75,149,52,64,118,86,125,216,340,130,86,37,42,39,81,98,90,92,64,173,192,122,186,90,48,51,65,69,98,63,77,194,299,177,116,50,46,45,75,106,109,110,111,258,117,137,84,52,60,33,70,56,127,123,120,173,280,205,136,51,49,38,63,84,98,108,86,145,149,158,153,145,108,83,87,106,132,148,145,146,120,115,107,99,99
"Conventional hydroelectric : Ohio","thousand megawatthours","ELEC.GEN.HYC-OH-99.M",48,31,41,40,45,56,50,39,32,33,36,60,55,54,44,27,25,55,50,30,26,39,46,38,46,35,28,47,42,35,50,55,45,64,33,31,49,50,43,35,52,54,77,90,53,98,72,57,31,33,36,36,48,52,55,45,38,41,52,48,44,45,56,48,66,60,63,58,57,42,39,56,18,35,7,19,45,35,45,54,37,33,57,25,42,15,5,30,31,38,53,39,29,26,45,32,41,23,34,34,40,52,56,58,40,49,63,38,32,15,16,42,31,49,52,44,24,39,52,32,42,32,3,7,10,58,55,46,38,46,31,14,14,33,16,55,23,37,41,38,38,41,48,29,40,34,33,35,59,58,41,64,56,60,62,9,30,23,33,38,"NM",38,41,41,39,31,31,28,29,33,"NM","NM",39,"NM",39,"NM"
"Conventional hydroelectric : Wisconsin","thousand megawatthours","ELEC.GEN.HYC-WI-99.M",139,122,177,252,247,222,149,150,120,121,151,206,169,146,172,262,272,234,197,199,222,279,194,167,134,131,160,223,264,199,148,123,103,107,127,124,165,165,165,165,165,165,165,165,165,165,165,165,175,151,163,158,149,162,171,142,117,104,111,136,166,147,128,136,159,156,164,161,110,104,123,124,147,125,153,163,153,130,100,100,84,144,105,113,167,80,40,133,131,167,198,152,119,111,168,151,115,78,106,105,110,134,141,135,109,131,134,97,156,120,100,218,162,222,237,209,116,177,225,167,218,152,52,72,83,277,289,260,232,236,175,101,70,126,91,183,112,139,142,127,131,143,154,103,147,141,136,150,201,195,138,224,195,206,187,60,154,124,206,209,223,219,208,154,118,124,151,187,212,209,208,170,166,151,142,142
"Conventional hydroelectric : West North Central","thousand megawatthours","ELEC.GEN.HYC-WNC-99.M",671,678,736,484,494,827,917,957,801,757,728,643,574,611,720,866,975,1233,1078,1050,918,784,784,575,577,558,700,821,873,934,1051,968,870,687,600,611,674,610,745,865,1066,913,977,888,678,483,563,770,882,655,751,704,684,782,789,815,660,464,429,577,560,498,614,518,696,797,885,926,645,400,420,541,625,603,455,540,585,800,904,820,530,523,439,577,595,624,709,849,739,653,864,808,726,653,363,612,642,519,607,784,983,1024,950,948,991,984,752,767,853,754,643,654,1015,883,1124,1189,1396,1307,1219,901,891,777,937,1012,1556,1542,1432,1391,1186,948,1086,919,927,834,1023,1130,1136,1081,1129,1172,1048,904,844,539,622,556,772,851,916,1048,878,1031,912,659,609,596,731,581,795,1043,969,974,1074,1055,1092,1131,973,767,857,828,879,982,1004,1055,1112,995
"Conventional hydroelectric : Iowa","thousand megawatthours","ELEC.GEN.HYC-IA-99.M",67,77,87,56,37,66,84,81,74,75,73,70,72,67,74,67,69,76,93,96,90,88,83,72,58,48,71,84,78,93,94,53,40,40,63,66,49,57,91,92,88,59,91,82,78,88,93,78,76,76,92,81,98,96,87,56,56,95,73,73,89,73,96,84,94,96,60,58,58,57,60,85,81,55,80,65,90,93,78,74,87,92,89,79,57,64,72,85,73,61,88,84,76,64,36,59,64,51,55,75,93,100,95,95,100,100,70,75,68,60,47,50,81,69,89,96,113,106,97,71,60,52,61,67,104,103,97,94,83,66,76,63,61,54,64,71,69,67,75,79,71,61,57,36,52,46,63,68,73,71,69,84,74,53,49,47,58,42,"NM",71,"NM",74,74,"NM","NM","NM",54,70,79,77,75,60,58,52,"NM","NM"
"Conventional hydroelectric : Kansas","thousand megawatthours","ELEC.GEN.HYC-KS-99.M","--","--","--","--","--",1,1,1,1,3,2,17,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,2,1,1,1,1,"NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM"
"Conventional hydroelectric : Minnesota","thousand megawatthours","ELEC.GEN.HYC-MN-99.M",61,55,61,91,107,99,53,59,42,57,64,83,55,53,49,88,79,50,78,98,81,79,56,44,48,37,47,68,72,65,125,90,78,66,67,51,30,30,47,57,61,94,76,61,67,79,69,68,75,66,72,71,69,75,77,60,51,47,51,62,59,52,47,47,54,53,53,51,36,35,42,42,33,20,42,71,77,72,21,21,39,70,112,76,71,40,65,72,78,117,64,27,26,59,45,66,44,46,91,84,120,89,51,39,37,37,104,67,51,51,89,66,58,69,74,67,71,77,90,77,63,58,82,80,92,95,75,80,33,27,26,36,37,38,78,87,118,102,28,15,12,15,13,16,11,10,18,34,39,213,55,19,28,23,25,36,38,31,"NM",53,"NM",56,52,"NM","NM","NM","NM",46,51,53,50,42,52,"NM","NM","NM"
"Conventional hydroelectric : Missouri","thousand megawatthours","ELEC.GEN.HYC-MO-99.M",31,117,176,92,52,194,186,99,23,60,30,45,54,137,110,164,305,311,106,38,43,28,34,25,45,39,48,33,99,69,68,80,43,24,22,83,120,49,188,168,213,79,130,92,48,22,139,233,286,227,111,90,41,138,71,75,53,24,20,23,7,14,9,3,51,15,44,27,9,6,4,11,100,126,57,117,168,196,215,128,35,24,11,28,63,107,267,282,250,241,297,119,208,105,62,46,97,100,95,250,297,191,86,53,58,255,231,103,172,196,174,172,230,140,158,68,98,41,36,55,66,66,191,114,252,202,90,34,34,22,34,79,63,78,164,166,111,27,27,18,16,12,17,15,13,22,102,186,218,202,67,172,26,33,37,59,97,40,57,90,30,77,55,53,41,67,36,57,48,59,73,113,143,263,293,151
"Conventional hydroelectric : Nebraska","thousand megawatthours","ELEC.GEN.HYC-NE-99.M",81,71,74,68,91,96,114,118,115,115,106,74,58,56,81,93,93,111,134,119,106,104,87,55,19,51,71,94,103,95,127,114,89,89,77,51,65,52,53,83,105,107,103,99,95,58,39,54,70,51,70,70,85,88,85,93,93,53,50,64,62,61,62,64,83,93,100,108,92,58,52,58,30,30,22,24,26,37,45,41,26,24,18,26,24,27,30,36,31,26,37,35,32,27,15,25,29,23,25,33,41,44,42,42,44,45,31,33,95,83,65,69,113,96,124,133,157,146,134,98,104,90,106,117,182,180,170,164,144,116,133,111,100,89,105,116,114,110,124,130,117,100,93,59,77,69,95,102,109,106,103,126,111,80,74,71,87,72,122,122,132,128,120,88,"NM","NM",86,105,119,118,119,98,96,88,82,81
"Conventional hydroelectric : North Dakota","thousand megawatthours","ELEC.GEN.HYC-ND-99.M",157,129,111,101,104,116,120,122,94,84,85,109,110,99,98,84,105,172,179,180,144,117,145,160,148,162,140,148,154,173,183,177,135,86,91,127,153,169,130,129,124,139,144,138,115,91,96,117,115,87,91,127,123,115,125,127,109,100,102,120,137,106,111,103,121,158,169,175,135,93,97,115,115,105,109,98,103,121,154,129,90,85,82,115,115,107,94,91,96,109,114,119,105,95,91,118,132,121,82,73,117,140,148,153,135,118,116,141,162,136,113,87,134,137,143,161,258,289,255,168,221,217,202,136,281,219,207,223,191,228,263,193,200,197,192,240,243,230,229,228,194,180,190,154,186,176,153,162,177,167,178,178,146,117,71,143,159,144,148,197,264,278,282,274,234,210,189,153,185,197,183,193,214,196,202,194
"Conventional hydroelectric : South Dakota","thousand megawatthours","ELEC.GEN.HYC-SD-99.M",274,230,227,75,103,255,359,477,453,364,368,245,225,198,306,369,322,513,488,518,454,367,377,218,258,219,321,392,367,438,451,453,483,382,279,231,256,252,235,335,474,433,433,415,274,144,126,221,259,146,315,264,267,270,343,403,297,144,133,235,205,192,289,216,293,381,459,506,313,149,165,229,265,267,143,164,121,280,389,426,252,229,128,252,263,279,180,282,211,100,263,423,278,303,114,298,275,177,258,268,314,458,528,565,615,428,199,348,304,228,153,209,398,371,535,662,696,648,605,430,376,292,294,498,644,741,791,794,700,488,552,436,465,377,420,449,479,543,645,699,639,536,472,258,283,232,340,297,299,288,404,450,526,352,353,239,290,252,349,508,413,361,491,545,678,708,570,335,374,323,378,475,441,406,439,472
"Conventional hydroelectric : South Atlantic","thousand megawatthours","ELEC.GEN.HYC-SAT-99.M",720,802,1251,1152,720,887,748,860,659,615,547,755,820,882,928,1000,1014,768,700,594,643,883,1341,1805,1397,1349,2191,1942,2280,2113,2039,1883,1403,1250,1355,1852,1449,1483,1243,1127,1076,983,1058,1269,2030,1665,1520,2345,1775,1389,1728,1764,1249,1556,1693,1385,1051,1079,1074,1524,1698,1250,976,925,994,996,1201,988,908,1012,1349,1150,1950,958,1404,1179,817,804,700,808,559,552,592,762,1046,1092,1187,1099,970,699,693,805,715,670,555,1211,1324,814,1293,1196,1325,1464,877,983,1018,1289,1871,2530,2178,2223,1806,1240,1246,1078,785,878,746,870,911,1205,932,975,1673,1606,1290,979,826,837,977,1001,973,1475,1467,1041,1142,927,1205,857,728,820,793,898,927,861,1538,1754,1476,1399,1838,1535,2578,1628,1073,1014,1016,1898,2205,1446,1485,1590,1403,1159,1001,1114,948,1073,962,1299,1348,993,1424,1635,1010,1082,1323,964
"Conventional hydroelectric : Delaware","thousand megawatthours","ELEC.GEN.HYC-DE-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Conventional hydroelectric : District Of Columbia","thousand megawatthours","ELEC.GEN.HYC-DC-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Conventional hydroelectric : Florida","thousand megawatthours","ELEC.GEN.HYC-FL-99.M",8,7,17,16,14,13,15,17,10,9,9,12,13,16,22,20,14,9,10,9,12,15,24,19,19,21,19,23,17,22,23,31,24,22,20,23,22,22,22,22,22,22,22,22,22,22,22,22,27,23,25,24,22,25,26,22,18,16,17,21,20,18,16,17,20,20,21,20,13,12,14,15,27,13,20,17,12,11,9,11,8,8,9,11,21,22,24,21,20,13,13,15,13,12,10,23,17,11,17,16,18,19,11,13,13,17,24,32,25,25,21,15,15,12,9,10,9,11,11,15,12,13,23,21,18,13,10,11,13,14,13,20,19,14,15,12,16,11,9,10,10,11,12,12,22,24,21,20,25,21,34,21,14,14,13,26,24,20,"NM","NM","NM","NM","NM","NM","NM","NM","NM","NM",21,"NM","NM","NM","NM","NM","NM","NM"
"Conventional hydroelectric : Georgia","thousand megawatthours","ELEC.GEN.HYC-GA-99.M",240,189,369,245,179,274,208,227,154,165,171,175,220,217,221,243,214,162,177,160,178,208,316,400,264,290,414,326,527,427,497,348,260,225,254,308,298,324,228,174,184,227,270,305,548,318,305,512,333,306,381,393,305,417,462,399,274,225,241,296,252,229,231,182,234,217,229,228,178,188,202,200,262,178,203,138,174,187,203,221,186,201,165,119,170,199,182,153,159,145,150,205,201,207,189,184,210,168,245,249,216,223,235,233,280,310,340,550,401,438,368,243,310,267,254,238,203,192,176,231,200,215,313,278,227,214,210,242,225,191,191,199,220,178,171,160,189,184,185,194,181,211,191,173,231,310,252,256,365,247,555,380,227,239,210,441,442,307,272,359,260,227,248,248,213,234,223,268,286,231,260,293,212,238,270,241
"Conventional hydroelectric : Maryland","thousand megawatthours","ELEC.GEN.HYC-MD-99.M",72,154,218,291,77,97,46,21,34,34,27,110,67,164,160,201,291,186,46,20,20,117,178,211,182,121,302,279,203,283,128,184,208,196,256,304,204,124,299,301,271,135,132,205,200,196,150,291,262,204,212,241,98,59,61,25,29,137,170,207,329,219,137,149,129,156,180,73,151,157,263,161,268,75,302,286,151,55,33,49,26,46,122,238,295,295,321,254,228,71,59,41,40,41,70,258,152,155,210,201,180,161,96,152,65,141,146,230,191,133,272,190,154,78,44,42,32,176,141,214,68,150,342,322,329,151,60,83,216,300,214,310,256,170,204,110,230,130,41,49,51,87,144,185,196,184,203,229,133,136,163,73,53,84,77,197,205,103,198,249,269,145,86,81,43,63,"NM",175,111,51,222,313,110,152,220,56
"Conventional hydroelectric : North Carolina","thousand megawatthours","ELEC.GEN.HYC-NC-99.M",146,163,250,229,168,213,200,321,257,224,170,254,266,256,207,221,195,210,242,232,253,321,447,640,512,451,732,601,762,720,734,656,499,440,440,653,500,488,290,255,235,235,302,391,740,581,608,810,597,386,516,478,347,504,565,450,377,368,309,500,545,367,218,192,225,231,324,292,269,339,458,377,730,294,333,324,187,253,175,284,110,109,68,117,250,284,315,304,234,204,194,309,222,205,100,412,503,203,353,281,470,554,244,270,410,485,714,684,712,757,533,336,330,320,207,286,274,275,299,426,311,262,506,438,269,282,251,258,239,242,281,555,550,339,311,261,323,263,223,283,283,352,315,224,665,780,528,440,709,599,863,492,396,406,340,682,757,521,443,405,388,398,322,391,353,398,347,384,447,333,412,456,295,312,350,303
"Conventional hydroelectric : South Carolina","thousand megawatthours","ELEC.GEN.HYC-SC-99.M",102,101,151,131,87,90,96,114,92,96,84,83,106,96,128,107,95,81,91,84,85,103,148,266,187,215,473,447,447,395,408,354,175,149,161,253,187,239,191,119,122,124,147,139,293,285,200,401,249,215,289,328,216,312,336,269,174,168,152,229,255,169,161,133,139,145,153,157,118,106,130,141,274,167,258,112,131,118,100,94,88,76,66,72,88,105,93,111,99,88,81,77,88,88,85,120,155,83,187,172,151,173,110,108,97,119,375,604,468,500,252,171,167,177,109,144,97,94,92,105,140,100,185,244,128,108,141,112,106,98,91,101,133,114,136,122,140,117,112,129,116,112,91,97,164,204,194,176,263,247,618,425,200,138,235,296,462,244,296,297,215,188,179,200,162,175,175,212,251,177,242,272,188,184,210,186
"Conventional hydroelectric : Virginia","thousand megawatthours","ELEC.GEN.HYC-VA-99.M",73,74,106,139,99,98,99,85,70,56,57,59,65,54,72,67,73,62,69,61,61,51,96,137,125,151,124,143,195,149,133,194,129,127,127,186,118,171,93,139,126,118,104,136,139,149,110,182,161,110,145,148,114,123,121,123,110,90,95,145,127,108,92,99,117,109,146,122,74,92,129,138,213,109,111,164,46,109,115,109,93,57,58,64,76,69,81,117,40,101,120,110,104,78,38,79,134,64,113,115,107,180,91,101,98,72,155,249,216,213,167,148,97,112,96,103,90,65,101,93,88,69,135,154,136,113,92,92,87,49,71,124,110,54,109,127,128,81,95,97,82,55,63,43,100,99,89,125,163,133,199,98,63,42,46,96,166,114,111,140,129,97,89,93,83,82,73,103,105,80,108,132,84,81,102,80
"Conventional hydroelectric : West Virginia","thousand megawatthours","ELEC.GEN.HYC-WV-99.M",79,114,139,100,96,102,83,75,42,31,29,62,82,78,117,140,131,57,66,29,33,69,131,132,108,100,127,123,130,118,116,115,107,91,96,124,120,116,121,117,116,122,81,71,88,115,126,127,146,145,159,152,148,117,122,97,69,75,91,128,171,141,119,152,130,117,150,94,105,120,154,119,176,123,177,138,117,71,65,39,49,55,104,140,147,118,172,138,191,77,77,47,46,39,63,135,153,130,168,164,184,153,90,105,56,145,116,183,165,156,193,137,173,111,66,56,41,57,90,122,113,167,170,148,182,98,61,39,90,106,113,166,177,172,196,135,178,71,63,58,70,71,112,128,160,152,190,154,181,152,147,139,119,90,94,161,147,136,146,122,124,86,60,84,79,103,120,137,127,106,158,147,105,97,149,79
"Conventional hydroelectric : East South Central","thousand megawatthours","ELEC.GEN.HYC-ESC-99.M",1366,1712,2170,1255,816,1658,1641,2316,1539,1603,1215,1868,1920,1928,1952,1793,1968,920,1118,1238,1243,1434,2341,2968,2190,2360,2755,1986,3098,2542,2774,2444,1874,1857,2041,2695,2356,2587,1962,883,950,1680,1887,1767,2360,2180,2801,3403,2573,2269,2389,2106,1625,1680,2209,1754,1642,1324,1176,1667,1986,1892,1348,1370,1247,1032,1102,1401,1231,1372,2142,1470,2413,1118,994,701,682,844,794,1110,544,552,468,525,1181,1602,1802,1229,880,781,798,1307,688,656,507,2269,2658,1342,2188,1867,2633,1521,1075,1466,1872,2972,2943,3528,2800,2969,2099,1039,1670,1109,822,1330,1066,983,1291,2243,1783,1456,3120,2759,1466,1323,1208,1239,1335,1149,1746,2845,3056,2296,2270,647,589,812,909,1448,1276,1525,1489,1776,3018,3022,2579,2157,2813,2258,2768,1930,1716,1692,1592,3074,2925,2467,1911,1770,1434,1458,1291,1512,1391,1940,2026,2239,2536,1829,2559,2439,1205,1329,2055,1678
"Conventional hydroelectric : Alabama","thousand megawatthours","ELEC.GEN.HYC-AL-99.M",727,922,1300,696,395,696,502,667,556,489,479,927,948,786,775,664,729,305,356,373,479,585,1228,1598,969,1189,1393,864,1696,1162,1297,921,656,596,838,1083,1046,1353,890,294,344,592,676,560,1066,790,1342,1671,1078,1042,1193,1071,722,765,1135,743,589,499,526,781,924,916,714,623,593,371,365,447,400,479,846,574,1064,491,396,225,232,299,292,376,213,203,179,167,584,753,888,520,415,289,277,479,263,259,240,1169,1283,541,1167,1003,1300,528,376,499,922,1517,1495,1905,1413,1502,1176,566,805,475,312,437,340,342,486,850,778,626,1548,1406,498,372,403,386,526,395,671,1275,1474,1000,1112,226,200,278,331,470,468,541,531,805,1458,1473,1230,1071,1399,895,1230,813,612,608,626,1483,1345,1194,901,956,610,618,497,515,489,766,794,1000,1199,794,1135,1161,501,503,755,581
"Conventional hydroelectric : Kentucky","thousand megawatthours","ELEC.GEN.HYC-KY-99.M",194,165,244,203,143,550,611,689,243,411,179,226,254,435,529,554,622,185,212,198,193,242,282,320,329,298,338,418,328,364,341,370,279,294,246,343,341,347,339,261,261,311,347,332,266,312,328,333,278,325,339,280,283,218,251,243,228,165,152,199,226,256,182,245,187,185,196,214,215,184,267,234,301,196,198,153,152,83,89,107,72,74,96,147,205,204,287,267,187,114,85,115,92,60,58,244,324,249,379,357,346,234,167,194,189,295,248,336,290,311,265,193,326,176,121,162,126,97,153,360,246,199,319,334,304,339,207,148,180,133,238,322,353,276,335,149,95,97,107,173,172,200,151,254,307,290,323,291,302,239,323,281,201,180,171,367,382,284,248,206,246,230,202,229,211,241,290,320,340,272,328,367,204,189,327,277
"Conventional hydroelectric : Mississippi","thousand megawatthours","ELEC.GEN.HYC-MS-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Conventional hydroelectric : Tennessee","thousand megawatthours","ELEC.GEN.HYC-TN-99.M",445,625,627,357,279,412,528,960,739,702,557,716,719,708,648,575,617,430,551,668,571,607,831,1050,892,873,1024,704,1074,1016,1136,1152,938,968,957,1269,968,887,733,327,345,776,863,875,1028,1078,1131,1398,1217,902,857,755,620,697,823,768,825,660,498,687,836,720,452,502,467,477,540,740,616,710,1028,661,1049,431,400,323,299,461,412,627,259,275,193,211,392,645,628,442,278,377,436,713,333,338,209,856,1051,551,642,507,988,759,532,773,761,1160,1200,1287,1098,1156,658,280,539,458,388,731,600,544,652,1034,760,631,1254,1019,664,612,597,704,629,620,837,1249,1229,1020,824,272,294,437,472,806,636,784,806,717,1252,1260,1026,794,1112,1124,1215,835,903,903,795,1224,1198,989,762,607,577,611,592,768,691,933,942,918,997,762,1097,910,501,636,973,820
"Conventional hydroelectric : West South Central","thousand megawatthours","ELEC.GEN.HYC-WSC-99.M",626,841,1018,631,498,830,576,407,287,327,263,521,467,747,695,895,825,945,838,606,424,383,283,329,528,421,612,572,742,800,548,543,474,310,282,410,497,474,963,715,965,961,1138,647,305,299,888,1167,1091,977,902,841,590,763,780,584,515,271,253,288,220,255,258,279,592,331,302,304,174,191,271,372,966,885,519,728,870,945,1088,1041,725,353,236,419,476,656,1028,1330,1202,1136,1203,1022,733,808,581,399,497,718,601,1041,1024,1032,798,677,650,953,991,1029,1270,1089,1048,922,791,1049,974,580,474,197,183,263,283,335,550,512,973,757,545,588,397,196,279,656,485,614,786,1071,563,221,172,128,140,202,100,126,337,312,372,666,729,953,489,819,523,229,433,494,619,383,517,611,498,660,546,418,353,428,320,372,478,341,578,796,698,854,877,805
"Conventional hydroelectric : Arkansas","thousand megawatthours","ELEC.GEN.HYC-AR-99.M",272,287,325,206,159,256,255,179,120,127,113,248,231,374,340,379,273,367,392,350,271,190,128,141,240,211,245,210,249,358,243,254,185,133,146,179,224,196,320,295,361,441,523,305,123,150,268,436,431,424,313,367,197,274,329,252,216,96,90,93,81,93,104,100,234,135,145,151,82,84,124,216,456,482,226,294,224,257,213,351,249,187,101,197,199,245,319,438,436,471,565,530,344,488,410,213,254,450,257,412,233,407,414,320,262,308,303,572,638,464,352,379,270,473,376,259,145,78,91,134,156,151,175,150,350,372,310,353,268,119,158,395,291,343,320,501,235,101,100,64,70,62,48,62,108,104,148,251,277,399,200,371,285,137,148,226,286,175,233,293,204,276,246,193,147,167,141,164,222,171,275,344,241,258,334,441
"Conventional hydroelectric : Louisiana","thousand megawatthours","ELEC.GEN.HYC-LA-99.M",6,72,93,87,84,109,68,40,24,30,32,88,54,92,86,121,114,132,62,31,25,57,57,61,86,54,105,95,87,114,85,62,47,38,40,78,92,94,99,94,113,114,113,57,57,58,91,115,116,116,113,116,90,68,53,24,34,27,23,32,54,82,79,82,101,51,32,19,19,45,75,74,102,77,100,105,118,81,54,36,44,26,32,52,75,75,104,126,133,125,130,92,53,60,36,56,101,87,106,126,130,131,98,85,58,90,110,113,105,116,117,115,101,115,117,110,66,58,30,61,51,48,99,111,111,120,124,99,65,46,54,115,122,110,111,91,87,34,20,14,16,19,21,34,87,103,107,98,127,127,125,89,39,34,38,71,107,79,105,110,134,117,112,63,64,72,56,71,84,57,87,93,88,103,117,109
"Conventional hydroelectric : Oklahoma","thousand megawatthours","ELEC.GEN.HYC-OK-99.M",209,372,420,213,140,367,152,96,64,121,73,116,93,204,180,273,338,357,196,107,50,91,55,44,98,80,176,202,318,232,113,111,176,102,67,123,167,162,372,302,362,229,377,186,58,59,354,349,402,281,310,235,199,304,280,204,174,81,74,85,32,32,29,42,184,66,50,55,28,27,35,44,262,169,174,307,420,388,438,383,202,105,72,146,199,292,439,548,497,420,402,306,272,234,122,80,131,173,167,410,506,397,199,201,294,477,426,172,288,411,340,317,304,338,394,148,144,36,42,47,64,100,245,180,419,171,39,60,21,15,58,137,65,159,242,341,171,35,30,19,29,32,12,11,35,56,109,313,320,387,114,331,184,52,161,115,150,97,128,127,110,231,139,122,91,156,88,107,104,89,158,245,296,401,366,212
"Conventional hydroelectric : Texas","thousand megawatthours","ELEC.GEN.HYC-TX-99.M",138,110,180,124,115,97,101,92,80,49,46,68,89,77,90,122,101,90,187,118,78,45,44,83,104,75,85,65,87,96,107,115,66,36,28,30,14,22,171,24,129,178,125,99,67,31,174,267,142,155,166,122,104,118,119,104,92,67,66,78,53,48,46,55,73,78,74,78,45,35,37,39,147,156,18,21,107,219,384,272,230,36,31,24,3,44,166,219,136,119,106,94,63,26,13,49,11,7,71,93,154,97,88,72,35,78,151,172,239,99,239,111,115,124,87,62,120,25,20,21,12,36,32,71,92,94,73,76,43,17,9,10,7,3,113,138,69,51,22,31,25,88,19,19,107,49,9,3,5,40,51,27,16,7,86,81,75,32,51,81,51,37,50,40,51,33,35,30,68,23,58,113,73,92,59,42
"Conventional hydroelectric : Mountain","thousand megawatthours","ELEC.GEN.HYC-MTN-99.M",2222,2004,2188,2198,2863,2763,2877,2669,1867,1699,1712,2032,2234,2169,2346,2668,3228,3627,3690,3220,2039,1567,1668,2089,1824,1812,2124,2749,3205,3382,3161,2879,1890,1544,1740,2027,2059,1949,2133,2195,3043,3269,3283,2869,2146,1537,1687,2114,1901,1612,1701,2365,3537,3730,3660,2944,1924,1785,2065,2190,2404,2609,2618,3517,3946,4084,3600,2931,2042,1751,1947,2353,2541,1871,2409,2963,3679,3263,3381,2801,2055,1681,1565,2043,2055,1860,2422,2884,3413,4298,3930,3142,2377,1902,1713,2257,2537,2048,2339,3274,3738,4054,3586,2758,2206,1990,1819,2439,2196,1816,2009,2089,3014,4325,3790,3005,2509,1748,1969,2392,2874,3322,3842,3977,4232,4691,5071,3990,3013,2323,2265,2497,2324,2129,3033,3843,3844,4119,4074,3094,2077,1645,2105,2455,2347,1853,2033,3058,3480,3631,3352,2512,1716,1697,1740,1810,2015,1890,3082,3700,3527,3475,3595,2504,2092,1810,2109,2509,2637,2553,2775,2943,2931,2927,2675,2226
"Conventional hydroelectric : Arizona","thousand megawatthours","ELEC.GEN.HYC-AZ-99.M",608,527,727,704,672,691,769,716,495,500,539,676,687,621,777,701,702,721,776,737,455,401,384,464,536,491,656,724,635,692,710,705,467,467,479,514,620,660,738,645,630,683,725,653,434,357,411,417,432,383,479,580,625,644,685,632,435,441,580,494,572,557,524,614,622,706,683,628,459,441,500,489,458,405,534,598,577,681,683,623,486,469,525,559,637,551,689,672,722,646,682,651,515,515,516,490,626,490,658,618,548,505,607,570,437,395,431,542,554,382,550,557,590,548,655,620,461,495,626,585,589,598,764,793,822,933,1028,986,670,622,680,689,640,578,651,648,629,619,638,591,416,352,478,477,555,475,518,517,519,608,598,544,414,403,371,394,499,442,527,534,494,544,648,573,468,431,487,515,539,391,609,570,567,604,709,615
"Conventional hydroelectric : Colorado","thousand megawatthours","ELEC.GEN.HYC-CO-99.M",111,87,98,95,152,175,162,188,146,120,78,83,106,85,96,112,153,151,147,133,72,36,63,57,81,57,49,70,101,140,176,187,145,77,77,101,84,71,76,89,106,87,175,154,140,89,35,87,125,118,135,126,167,147,147,127,124,85,55,59,145,129,147,166,158,194,211,190,144,93,71,143,180,119,125,119,115,102,163,207,205,186,111,97,180,116,209,191,232,184,227,129,218,186,3,165,161,148,198,146,229,214,198,65,216,171,10,130,166,176,182,168,65,199,193,121,212,25,26,45,204,193,221,224,252,230,241,59,191,224,26,18,114,72,134,102,158,140,165,170,157,183,13,89,164,142,143,115,156,163,128,30,54,14,14,89,134,135,201,191,213,192,167,100,132,88,77,111,146,130,132,95,124,148,118,97
"Conventional hydroelectric : Idaho","thousand megawatthours","ELEC.GEN.HYC-ID-99.M",526,430,509,537,882,772,932,851,466,426,430,465,552,632,646,881,983,979,1103,1012,679,451,409,442,451,511,558,974,1098,970,972,910,616,428,418,449,591,510,564,662,1014,1083,1124,999,685,422,363,443,565,456,485,685,1226,1059,1099,911,591,473,461,530,820,955,945,1341,1386,1344,1206,996,644,492,511,602,817,482,724,854,1274,1007,1158,906,591,402,340,466,536,450,686,999,980,1363,1269,1117,688,439,380,454,813,569,570,1368,1222,1379,1380,1056,698,493,398,489,594,516,498,563,929,1440,1307,1085,740,472,414,597,1097,1196,1327,1249,1204,1498,1746,1320,1030,614,527,597,654,655,1195,1315,1271,1330,1321,1029,669,448,451,603,622,493,489,1094,1002,1028,1112,856,534,441,383,419,520,496,1087,1098,926,969,1111,765,547,480,514,656,744,896,795,865,741,755,813,650
"Conventional hydroelectric : Montana","thousand megawatthours","ELEC.GEN.HYC-MT-99.M",669,598,468,456,690,668,571,506,464,467,467,589,692,614,551,617,966,1354,1260,985,583,479,563,903,509,521,542,696,996,1233,1007,822,497,439,626,813,603,518,526,490,922,1113,991,840,713,537,682,920,605,493,441,662,1112,1409,1235,904,522,564,762,879,655,745,697,1002,1268,1393,1053,771,581,517,606,842,763,571,684,987,1271,1086,981,698,543,460,491,828,541,570,528,616,1101,1651,1349,883,662,560,608,930,644,572,568,653,1273,1497,965,655,553,585,627,913,607,538,465,435,976,1556,1125,759,760,591,675,928,726,1028,1053,1206,1386,1470,1472,1128,741,665,789,932,667,564,727,1275,1303,1483,1454,851,514,495,902,1048,798,530,503,887,1356,1357,1050,681,449,573,766,688,619,545,847,1429,1405,1310,1222,743,653,621,800,1021,845,843,902,991,1137,1058,691,539
"Conventional hydroelectric : Nevada","thousand megawatthours","ELEC.GEN.HYC-NV-99.M",211,260,273,273,258,259,239,219,158,107,126,131,110,135,187,249,269,254,229,216,157,129,182,150,184,170,246,190,226,207,113,112,82,69,76,82,67,98,134,215,238,203,168,122,74,39,105,154,83,76,67,205,185,196,228,171,130,128,111,123,97,122,191,200,234,227,207,165,121,135,179,181,226,210,257,261,244,197,180,156,133,89,27,24,46,64,173,245,187,215,186,185,164,96,99,91,133,138,193,285,235,211,216,234,167,220,225,203,179,125,218,219,203,260,219,195,170,89,142,138,137,164,236,210,231,229,242,198,161,97,140,148,157,169,197,314,233,281,252,231,186,102,178,141,134,151,306,334,303,278,247,237,182,207,142,160,172,200,288,288,297,236,208,167,169,105,157,124,270,202,226,261,199,199,168,164
"Conventional hydroelectric : New Mexico","thousand megawatthours","ELEC.GEN.HYC-NM-99.M",12,23,24,23,27,26,26,24,15,13,10,14,17,21,23,27,28,29,28,21,23,19,15,15,12,11,14,15,16,20,18,19,12,11,10,12,12,12,12,12,12,12,12,12,12,12,12,12,14,13,13,13,18,17,16,13,11,11,12,14,18,16,17,21,22,23,19,15,11,11,12,13,22,17,21,26,32,29,30,25,18,15,14,18,20,19,23,28,33,41,37,30,22,18,18,22,21,17,20,27,30,32,29,23,18,17,17,21,16,12,14,15,21,29,26,21,17,13,15,17,13,15,17,18,20,22,23,19,14,11,11,12,15,14,19,25,24,26,26,20,13,10,14,16,7,6,7,9,11,11,10,8,5,6,6,6,"NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM"
"Conventional hydroelectric : Utah","thousand megawatthours","ELEC.GEN.HYC-UT-99.M",40,41,42,43,80,45,42,40,36,32,33,34,36,31,34,42,67,40,39,37,35,33,31,33,31,33,33,36,66,20,40,35,31,31,31,33,33,31,34,32,71,39,39,40,39,32,30,31,51,48,51,52,104,111,74,63,55,57,57,62,67,61,66,72,110,77,59,50,42,42,45,56,54,47,37,35,100,50,40,37,37,37,35,29,43,40,50,59,70,88,80,65,48,39,39,47,65,53,61,82,93,100,89,71,54,51,51,65,50,40,46,48,69,94,83,66,55,41,48,56,80,94,110,116,125,136,146,120,87,68,71,78,51,47,64,82,82,88,87,66,44,35,48,54,40,32,36,52,59,62,57,44,30,30,31,32,38,39,"NM",65,76,71,60,"NM","NM","NM",43,46,52,54,58,49,49,"NM","NM","NM"
"Conventional hydroelectric : Wyoming","thousand megawatthours","ELEC.GEN.HYC-WY-99.M",44,38,47,68,103,127,136,126,87,34,29,41,34,30,33,39,61,99,107,78,36,20,20,26,20,18,27,43,66,99,126,88,39,23,22,23,49,49,49,49,49,49,49,49,49,49,49,49,28,24,30,41,99,148,175,122,57,26,28,30,30,26,32,103,147,120,163,114,39,21,24,25,22,19,27,84,66,110,146,149,43,25,21,20,53,50,63,74,88,110,100,81,60,49,49,59,75,61,71,95,107,116,102,83,63,59,59,75,30,27,35,84,162,199,182,138,94,23,24,26,26,35,113,161,192,173,174,161,120,24,21,23,26,30,46,83,143,153,131,137,77,20,21,26,26,24,31,49,74,125,150,113,48,22,27,22,27,25,42,80,98,136,166,106,69,36,23,29,31,28,42,100,103,107,125,115
"Conventional hydroelectric : Pacific Contiguous","thousand megawatthours","ELEC.GEN.HYC-PCC-99.M",9940,8320,9613,8627,10420,10502,8516,9102,7709,7673,8199,10299,12690,10756,10653,13226,14581,16856,14826,11556,9171,9139,9872,10393,10846,10537,12384,13210,15510,15351,12191,10849,8970,9380,9862,12289,12201,10783,11988,11473,13218,14302,11794,10719,9708,9682,10232,12697,12060,11151,11531,11179,15831,14780,13528,11159,8947,9845,10618,12026,16272,14361,14929,18284,19371,18687,14294,11333,9021,8970,10289,12095,13437,10015,14367,13867,15543,13189,12849,10632,7863,8390,9137,10455,11499,9485,10382,10765,16184,18088,14475,10567,7941,7804,8352,10028,12175,9019,10493,13369,15849,16526,12267,9071,7699,8135,8894,10357,9414,8592,9282,9209,13837,18022,13764,10084,8404,9086,10248,12320,15356,14265,16874,17260,18627,18786,18705,14354,10869,10169,10405,11018,10940,9669,13450,15182,17642,16391,16753,13745,9759,8401,10009,13771,13330,9698,9681,13303,15139,14436,13630,10541,8071,8694,8793,9693,9492,7589,12885,12553,14656,14546,13310,9853,7137,7535,9020,11470,12989,13010,12843,9882,9907,9245,9073,9146
"Conventional hydroelectric : California","thousand megawatthours","ELEC.GEN.HYC-CA-99.M",1590,1290,1765,2096,3045,3054,3002,2809,2028,1819,1357,1685,2516,1921,2452,2914,3463,3379,3282,3069,2400,1864,1771,2109,2600,2673,2579,2802,4508,4226,4040,3481,2830,2209,1942,2480,2742,2509,3562,3441,3182,3449,3618,3142,2368,2032,1820,2274,2308,2568,3045,3501,4842,4767,4473,3645,2803,2463,2173,3044,4488,3791,4821,5382,5827,5279,4648,3855,2790,2324,2345,2497,1988,1721,2296,2251,2987,2741,3385,2865,2139,1784,1716,1454,1553,1229,1439,2720,3231,2745,3336,3423,1713,1098,787,854,1088,1446,2289,2714,3714,3359,3701,3018,2248,1784,1238,1291,1327,1447,2039,2581,3945,4440,4176,3520,2643,1975,2070,3268,3274,2387,3901,4609,5120,4979,4993,4040,3242,2277,1959,1776,1335,1105,1493,2307,3472,3050,3282,2975,2439,1890,1521,1968,1694,1504,1786,2254,2707,2861,3193,2629,1766,1409,1033,919,811,722,951,1411,2063,2206,2304,1885,1242,1001,827,985,849,884,891,972,1240,1529,1885,1670
"Conventional hydroelectric : Oregon","thousand megawatthours","ELEC.GEN.HYC-OR-99.M",2805,2494,2823,2521,2865,2440,1906,1876,1809,1903,2315,2888,3337,2965,2892,3281,3298,3700,2944,2271,2237,2337,2559,2592,2847,2758,3404,3372,3377,3323,2253,2077,2027,2244,2475,3093,3160,2859,3215,2686,3083,3091,2312,1956,2376,2412,2611,3317,3100,2767,2779,2412,3355,2730,2196,1754,1982,2343,2608,2922,4128,3722,3683,4163,4224,3789,2520,1890,2091,2186,2282,3172,3764,2870,4014,3300,3557,2784,2194,1800,1881,2108,2388,2927,3323,2846,3176,2508,3806,4132,2719,1748,2021,2135,2488,2903,3758,2599,2949,3456,3634,3731,2154,1531,1824,2048,2442,2907,2737,2458,2506,2042,2781,4114,2402,1594,1946,2298,2604,3060,4112,3898,4496,3884,4196,4306,3879,2528,2651,2619,2717,3030,3232,3000,4024,3971,4241,3737,3742,2548,2407,2117,2689,3704,3741,2759,2780,3231,3472,2978,2559,1843,2095,2340,2467,2833,2803,2418,4289,3450,3663,3402,2826,1993,1972,2088,2631,3403,3958,3963,3941,2638,2421,2002,1777,1786
"Conventional hydroelectric : Washington","thousand megawatthours","ELEC.GEN.HYC-WA-99.M",5545,4536,5025,4009,4510,5008,3608,4417,3872,3952,4528,5726,6838,5871,5309,7031,7820,9776,8600,6216,4534,4938,5543,5692,5399,5106,6400,7036,7625,7802,5898,5291,4112,4927,5444,6716,6299,5414,5210,5346,6953,7762,5863,5621,4963,5237,5801,7106,6652,5816,5707,5266,7634,7282,6859,5761,4162,5039,5837,6059,7655,6848,6425,8739,9319,9620,7126,5588,4139,4460,5661,6427,7684,5424,8058,8316,8999,7664,7270,5966,3843,4498,5032,6074,6624,5409,5767,5537,9146,11210,8420,5397,4208,4571,5077,6270,7329,4975,5255,7200,8501,9437,6412,4522,3626,4303,5214,6159,5350,4687,4737,4586,7111,9468,7186,4970,3814,4814,5573,5992,7971,7980,8477,8767,9311,9502,9833,7787,4976,5274,5729,6212,6373,5564,7932,8904,9929,9604,9729,8222,4913,4395,5799,8100,7895,5435,5114,7818,8960,8597,7878,6069,4210,4944,5293,5941,5878,4449,7645,7692,8930,8938,8180,5975,3923,4446,5562,7082,8182,8163,8011,6271,6247,5715,5411,5690
"Conventional hydroelectric : Pacific Noncontiguous","thousand megawatthours","ELEC.GEN.HYC-PCN-99.M",111,98,108,94,94,126,128,133,163,145,112,134,128,121,124,117,118,125,129,126,117,127,155,148,141,132,155,127,124,112,127,139,147,162,155,151,128,122,142,131,106,110,141,163,146,126,138,137,131,122,131,125,127,137,144,140,130,131,122,121,119,103,117,114,114,114,107,109,103,118,114,112,135,134,139,134,119,118,121,110,85,89,87,112,119,132,118,112,88,100,78,91,94,100,86,138,98,107,123,124,79,110,114,117,95,156,151,162,139,99,127,142,113,133,144,132,113,113,116,132,135,132,159,110,116,104,89,90,92,89,152,170,165,152,156,123,118,121,85,128,129,196,156,162,144,137,118,115,111,97,97,117,92,204,135,146,134,113,140,145,141,136,133,123,141,119,133,155,166,151,140,141,138,120,108,121
"Conventional hydroelectric : Alaska","thousand megawatthours","ELEC.GEN.HYC-AK-99.M",105,90,100,85,85,118,121,123,155,135,102,127,119,112,115,111,109,117,119,117,109,121,149,142,135,126,148,119,116,104,118,131,141,156,148,141,124,115,129,110,96,102,137,160,146,125,131,123,128,118,127,114,116,127,132,130,121,121,114,118,106,94,104,102,101,104,98,101,95,109,106,104,122,127,132,125,118,116,117,103,77,79,83,94,104,113,109,105,77,99,72,86,94,100,83,129,89,97,102,105,79,104,103,113,91,145,135,158,134,96,120,133,109,128,138,127,109,108,109,124,135,130,150,101,101,93,87,87,92,88,133,149,163,142,134,107,107,111,74,118,124,194,154,147,130,122,112,112,102,90,94,107,91,201,131,144,129,110,131,138,134,129,123,116,136,113,125,148,159,145,133,131,127,113,103,111
"Conventional hydroelectric : Hawaii","thousand megawatthours","ELEC.GEN.HYC-HI-99.M",7,8,8,10,9,7,8,10,8,10,9,7,9,9,9,5,9,8,10,10,8,6,6,6,6,7,7,8,8,8,9,8,6,6,8,10,4,7,14,21,10,8,4,4,0,2,7,14,4,4,5,11,11,10,12,10,9,9,8,4,12,9,14,12,13,9,9,8,7,9,8,8,14,7,7,9,1,2,4,7,8,10,4,18,15,19,9,7,10,1,6,5,0,0,3,10,9,10,20,19,0,6,11,4,4,11,15,4,5,4,7,9,5,5,6,5,4,5,7,8,0,2,9,8,15,11,2,4,0,1,19,21,2,10,21,16,11,10,11,9,5,2,2,14,14,16,6,3,9,7,3,9,1,3,4,2,"NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM"
"Other renewables","thousand megawatthours","ELEC.GEN.AOR-US-99.M","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""
"Other renewables : United States","thousand megawatthours","ELEC.GEN.AOR-US-99.M",6025,5310,5795,5827,5738,5964,6244,6293,5770,6050,5713,6038,6599,5800,6354,6543,6760,7066,7056,7044,6582,6559,6250,6497,6500,5962,6719,6674,6473,6678,7009,6790,6537,6548,6531,7067,6888,6489,7001,6895,7339,7098,7267,7027,6697,6851,6492,7024,7004,6221,7369,7201,7544,7636,7565,7236,7294,7182,7322,7756,8435,7374,8199,7860,8036,7782,8121,7894,7720,8295,8304,8505,8668,7877,8778,8693,8621,8549,8371,8895,8843,9362,9029,9553,10243,9349,10703,10971,11100,11145,10333,9514,8924,10647,10782,12390,11739,11231,12950,12986,11864,11467,11187,11791,10524,12668,12810,13061,12805,10901,14654,15607,14631,14209,13107,13100,13227,13791,15782,15359,14742,16116,16650,18125,17638,17284,14000,14054,13048,16550,18589,17185,19906,16996,20200,18563,18898,18470,15725,15330,15401,19225,18217,21402,21518,20330,22810,23961,23254,20954,18593,17382,18991,21058,23030,21626,25705,20955,26005,26776,23994,24526,21059,19141,19994,22969,27228,22708,23448,22830,24106,26584,26252,22733,23540,22960
"Other renewables : New England","thousand megawatthours","ELEC.GEN.AOR-NEW-99.M",678,599,660,593,640,633,632,684,635,551,604,650,646,574,657,575,621,611,646,644,633,604,596,661,598,534,578,511,567,564,615,648,604,555,580,573,573,574,608,517,597,540,567,614,584,570,576,654,611,564,643,526,618,613,661,684,647,585,620,670,648,605,636,527,561,593,624,663,609,620,609,661,664,613,662,546,644,673,688,720,684,649,670,706,699,636,668,612,629,623,681,682,624,609,674,668,670,633,627,580,585,627,641,696,640,628,687,684,675,666,699,598,670,688,693,692,627,635,650,727,697,627,716,544,568,674,718,719,658,639,713,743,724,704,722,616,615,697,726,732,713,725,745,838,823,747,838,665,709,795,785,808,787,782,894,851,934,800,952,776,783,813,854,818,841,877,953,891,979,890,974,845,827,795,871,879
"Other renewables : Connecticut","thousand megawatthours","ELEC.GEN.AOR-CT-99.M",75,77,96,92,72,71,72,72,69,69,70,73,67,59,73,67,71,70,73,71,66,66,68,71,62,60,67,67,67,64,70,65,66,66,65,66,55,57,64,67,67,65,64,64,64,67,63,61,57,49,57,65,68,66,69,65,63,66,64,65,58,60,63,64,67,66,67,66,62,64,65,60,65,55,63,59,66,63,59,62,61,57,60,60,55,52,61,64,65,65,64,60,58,64,61,63,60,59,60,65,69,63,65,65,63,63,64,63,55,55,63,66,68,64,61,65,59,59,60,63,47,36,51,59,61,58,58,59,53,59,58,61,53,50,60,56,60,58,59,57,54,51,55,52,51,45,56,56,59,55,54,58,51,54,56,56,68,55,72,56,74,66,60,70,64,67,77,72,70,58,71,58,72,69,73,73
"Other renewables : Maine","thousand megawatthours","ELEC.GEN.AOR-ME-99.M",348,293,327,277,336,324,323,365,339,250,299,344,362,309,346,300,335,339,358,348,349,328,318,351,313,279,296,258,295,286,317,359,328,272,299,284,283,307,324,258,294,274,289,323,307,277,301,360,344,310,354,278,327,326,358,385,361,304,347,375,355,328,347,282,281,324,336,363,349,324,317,360,351,330,343,280,328,375,377,390,379,332,340,382,392,338,352,321,317,308,358,373,320,290,346,340,356,345,323,297,256,307,309,364,315,309,384,373,356,357,380,309,338,354,374,363,312,303,320,386,403,375,399,302,317,385,395,393,364,332,413,415,360,353,346,270,245,328,345,348,354,381,352,418,442,405,438,316,327,419,422,423,415,390,466,430,450,392,446,353,318,353,390,357,367,361,425,428,462,420,447,353,289,306,340,352
"Other renewables : Massachusetts","thousand megawatthours","ELEC.GEN.AOR-MA-99.M",113,103,101,106,109,113,111,113,103,116,114,112,109,93,110,100,110,106,109,109,111,110,102,104,101,88,102,107,107,104,100,105,101,109,115,115,98,95,104,105,106,102,98,104,101,103,105,109,95,96,106,100,110,107,108,108,105,109,105,108,111,100,109,100,112,102,110,110,102,105,108,110,105,91,108,83,104,102,104,105,101,112,113,112,104,102,99,97,105,104,108,111,101,104,110,110,91,84,109,110,113,105,110,102,102,99,97,107,88,97,108,110,106,110,105,106,107,113,112,113,93,66,106,103,97,99,106,105,103,109,106,115,146,142,158,146,155,157,164,157,159,153,146,159,107,98,126,118,115,113,119,123,122,137,133,138,135,119,153,156,163,160,164,161,164,162,157,136,152,143,170,194,191,186,188,194
"Other renewables : New Hampshire","thousand megawatthours","ELEC.GEN.AOR-NH-99.M",91,83,93,81,86,88,90,85,81,80,82,85,76,76,83,85,68,67,68,68,61,55,71,87,69,63,69,51,55,68,75,74,71,71,65,65,76,75,78,64,74,72,75,76,74,74,74,74,78,73,80,69,79,77,83,85,80,78,78,83,62,57,60,46,55,52,60,64,57,71,74,88,89,80,96,85,95,85,102,105,92,92,100,101,99,89,92,87,99,96,103,99,96,101,105,109,101,105,87,69,99,106,110,114,108,102,105,91,115,103,96,75,103,107,98,110,100,109,107,111,98,100,104,50,62,88,103,105,92,104,88,96,112,114,111,105,114,116,108,115,113,114,125,135,152,140,147,129,142,136,132,139,136,135,161,147,184,151,177,132,152,152,164,152,166,193,199,173,191,168,175,159,189,153,179,168
"Other renewables : Rhode Island","thousand megawatthours","ELEC.GEN.AOR-RI-99.M",10,9,9,9,9,9,8,8,8,8,8,9,9,8,8,8,8,8,8,8,8,8,9,9,9,8,9,8,9,8,9,9,8,9,9,9,8,7,9,8,9,9,9,9,9,9,8,9,0,0,0,0,0,0,0,0,0,0,0,0,13,12,13,10,12,13,13,13,12,13,13,12,13,11,14,11,13,13,13,13,13,13,14,13,13,12,13,12,13,14,14,14,13,14,14,14,11,10,12,13,13,12,13,12,12,12,12,12,10,11,12,12,12,12,12,12,11,12,12,12,10,8,11,11,11,11,11,11,11,12,11,12,8,8,9,8,9,9,9,9,8,9,9,8,0,0,0,0,0,14,5,0,3,10,8,10,17,13,21,20,21,21,22,21,16,17,21,21,23,21,23,20,22,23,23,23
"Other renewables : Vermont","thousand megawatthours","ELEC.GEN.AOR-VT-99.M",42,35,33,27,27,29,28,41,35,29,30,27,22,29,37,16,28,22,30,39,38,37,29,39,44,36,35,21,35,33,43,37,29,29,27,34,52,32,30,15,47,18,33,39,30,40,25,42,38,37,46,15,34,38,43,42,38,28,26,38,48,48,45,25,35,35,38,46,26,42,32,29,41,46,38,28,38,35,34,44,37,42,44,37,36,43,52,31,30,36,33,24,36,36,37,32,50,30,36,26,34,34,34,38,40,43,26,38,51,42,40,26,43,41,42,37,39,39,39,43,46,41,45,19,20,33,44,47,35,24,37,43,45,37,38,32,33,31,40,46,24,17,58,66,69,59,71,45,66,58,53,65,60,56,71,70,80,71,82,59,54,60,56,57,65,78,73,61,80,81,89,60,65,59,68,69
"Other renewables : Middle Atlantic","thousand megawatthours","ELEC.GEN.AOR-MAT-99.M",371,338,381,361,392,380,400,407,374,371,377,388,359,344,378,364,419,408,428,418,396,383,391,427,389,341,375,370,398,375,419,408,405,397,411,451,412,388,444,399,408,391,428,421,400,418,433,451,419,385,444,411,442,428,445,434,426,437,458,462,507,489,499,480,493,462,500,492,479,528,491,566,538,489,572,517,484,486,501,497,501,506,518,557,594,513,574,554,607,630,560,537,520,577,612,751,633,671,687,789,738,645,668,653,690,778,825,1002,897,779,871,833,778,744,713,699,836,900,904,955,750,941,950,940,748,739,716,711,682,840,958,975,1128,944,1001,963,748,857,750,730,807,963,900,1140,1260,1035,1210,1255,1087,949,825,856,893,1092,1373,1253,1364,1160,1371,1409,1093,953,1041,961,999,1265,1427,1251,1420,1156,1403,1310,1098,1043,946,943
"Other renewables : New Jersey","thousand megawatthours","ELEC.GEN.AOR-NJ-99.M",66,59,73,66,73,72,76,74,70,70,72,73,69,67,68,62,72,73,76,75,71,72,69,74,79,69,74,72,76,77,83,80,73,68,70,85,62,61,67,66,72,70,70,70,65,65,70,67,69,61,69,67,79,78,78,77,73,74,76,74,74,70,80,74,77,78,80,79,73,78,78,76,67,62,70,58,68,76,76,73,74,73,66,79,73,67,75,72,79,77,77,80,75,75,75,81,69,72,76,74,80,89,86,87,88,79,74,86,69,58,69,68,78,76,76,69,73,69,71,73,70,69,79,64,83,85,88,85,85,87,72,89,103,101,108,110,116,119,118,114,113,99,82,97,99,93,122,132,127,125,131,128,127,130,118,114,110,109,140,152,159,170,165,162,155,140,134,116,126,131,149,164,173,175,176,178
"Other renewables : New York","thousand megawatthours","ELEC.GEN.AOR-NY-99.M",154,141,156,141,159,154,153,159,147,138,145,154,138,125,140,141,134,161,168,162,156,155,150,178,144,126,134,136,149,138,158,152,140,151,151,155,154,146,180,147,149,155,168,162,155,164,164,168,159,142,168,152,166,165,172,168,171,170,178,177,215,217,205,206,204,201,217,209,212,235,209,268,239,222,270,244,212,219,219,226,225,215,240,244,273,238,259,245,283,336,269,244,245,260,282,384,333,357,356,463,396,330,330,323,331,381,376,491,408,365,419,409,385,351,355,348,431,451,446,446,332,474,467,480,352,359,344,330,329,425,507,496,576,466,484,452,347,395,330,336,389,456,423,538,601,423,493,575,481,418,364,388,411,522,650,562,650,549,621,645,497,403,468,413,453,568,677,538,687,522,631,585,520,432,413,423
"Other renewables : Pennsylvania","thousand megawatthours","ELEC.GEN.AOR-PA-99.M",151,138,153,154,161,154,171,174,157,164,160,161,152,152,169,162,213,175,184,180,169,157,173,176,166,147,167,162,173,159,177,176,191,178,190,211,196,181,196,185,188,166,190,189,181,188,199,215,191,182,207,192,197,185,196,189,183,193,204,210,217,203,214,200,212,182,203,204,195,215,205,222,232,205,233,215,204,192,206,197,202,217,211,233,248,208,239,237,244,217,213,212,201,243,255,286,230,242,254,251,262,227,252,242,271,318,376,426,420,356,383,355,315,317,282,281,332,380,387,436,348,397,404,395,313,295,285,295,268,328,379,390,448,378,409,401,286,344,302,280,305,408,395,504,560,519,595,548,479,406,330,340,354,440,606,577,603,502,610,612,437,379,407,387,391,557,616,596,608,502,624,562,406,436,357,343
"Other renewables : East North Central","thousand megawatthours","ELEC.GEN.AOR-ENC-99.M",402,348,387,372,367,365,417,430,384,420,402,394,366,282,379,355,334,328,382,386,377,356,341,342,463,424,446,410,394,382,440,454,412,425,414,437,403,401,411,409,382,383,465,447,437,445,433,442,394,373,415,399,404,415,427,436,408,424,409,469,450,405,439,410,437,420,440,458,415,454,452,455,434,392,422,450,503,469,467,471,497,563,515,514,705,632,632,690,705,693,601,578,599,810,870,1000,854,961,971,1006,872,726,674,761,591,955,1169,1292,1244,959,1231,1470,1215,913,869,838,1191,1416,1627,1417,1327,1604,1536,1790,1421,1234,914,915,1171,1407,2105,1727,2214,1677,2109,1984,1604,1526,1137,1080,1329,2007,1665,2335,2787,2133,2369,2598,2074,1577,1329,1193,1527,2010,2877,2414,3071,2208,2623,2679,2248,1754,1608,1301,1521,2300,3109,2384,2746,2487,2675,2708,2430,1721,1483,1568
"Other renewables : Illinois","thousand megawatthours","ELEC.GEN.AOR-IL-99.M",59,48,54,50,56,60,64,63,56,55,55,57,53,45,62,60,62,67,77,79,69,50,49,51,78,69,69,64,67,62,66,74,70,65,67,68,62,63,70,71,72,67,67,67,67,71,71,75,57,52,61,62,65,61,61,60,59,61,67,119,71,66,77,68,68,63,64,62,63,79,80,86,71,64,73,101,122,96,84,85,120,171,142,155,294,244,235,287,271,221,142,132,156,290,357,404,320,355,315,351,263,197,156,204,149,327,406,485,415,295,462,556,455,280,263,256,436,567,667,486,463,643,621,778,589,472,298,288,463,564,960,725,942,660,920,834,693,634,376,334,499,824,654,1004,1242,934,1059,1130,824,649,456,369,568,798,1268,987,1367,897,1129,1157,935,684,564,416,518,902,1343,886,1062,977,1053,1129,948,572,456,501
"Other renewables : Indiana","thousand megawatthours","ELEC.GEN.AOR-IN-99.M",9,9,9,8,7,10,11,13,11,8,11,9,8,8,9,10,8,10,12,12,11,7,9,11,12,11,11,8,8,8,9,10,9,10,10,11,11,11,11,11,11,11,11,11,11,11,11,11,5,5,5,5,6,6,6,6,6,6,6,6,20,18,19,15,18,18,19,19,18,19,19,19,16,14,15,18,22,22,22,22,20,26,18,16,22,20,19,24,51,53,40,39,42,61,63,78,71,130,156,183,123,95,71,92,65,172,251,297,296,213,256,347,251,183,143,116,273,364,416,386,341,413,401,455,299,234,110,116,193,275,463,323,440,330,399,414,241,213,146,126,190,360,268,421,476,300,368,433,339,221,167,125,191,332,489,447,452,285,367,433,351,240,217,151,207,371,550,407,453,455,473,478,420,327,231,222
"Other renewables : Michigan","thousand megawatthours","ELEC.GEN.AOR-MI-99.M",195,169,193,196,197,180,217,223,190,220,207,175,199,137,205,188,174,173,198,202,197,194,186,166,224,203,218,202,184,195,225,227,198,212,197,214,204,199,200,208,179,190,236,237,230,229,223,224,206,191,205,196,208,206,227,234,206,213,189,212,215,196,198,190,207,204,206,221,200,199,209,199,193,185,188,187,206,210,211,208,216,217,200,196,221,197,219,215,222,225,212,223,200,222,207,228,213,203,213,194,232,210,220,227,183,234,242,252,250,233,255,255,260,227,229,228,223,213,217,241,249,242,224,234,237,240,243,252,223,257,289,274,315,281,291,288,297,294,300,299,279,355,338,449,516,442,486,531,456,385,366,371,411,466,579,506,666,573,621,578,533,461,453,406,470,590,694,647,734,611,683,626,612,455,451,472
"Other renewables : Ohio","thousand megawatthours","ELEC.GEN.AOR-OH-99.M",42,34,40,36,33,33,33,36,37,33,36,37,12,10,13,13,12,12,17,12,14,13,10,12,38,34,35,36,37,29,36,41,39,40,36,39,37,37,36,34,32,36,37,38,36,40,36,30,28,34,40,39,30,38,40,40,37,42,41,35,39,36,36,38,35,38,39,39,36,40,41,41,41,34,36,36,34,36,39,37,37,35,32,38,54,53,51,46,43,62,50,51,51,43,58,62,51,55,51,57,44,46,53,56,47,58,56,59,60,52,57,59,50,61,58,55,59,55,67,67,69,57,63,70,55,65,77,74,86,67,119,134,180,149,190,167,113,130,113,94,118,181,123,179,218,174,179,173,172,114,123,115,146,155,222,217,235,156,194,206,171,136,135,115,110,172,215,173,198,176,177,190,164,151,123,122
"Other renewables : Wisconsin","thousand megawatthours","ELEC.GEN.AOR-WI-99.M",97,87,91,82,74,82,90,95,90,103,94,117,94,82,90,84,77,67,77,81,85,91,86,102,111,107,113,100,98,88,104,103,95,97,104,105,89,90,94,85,88,79,114,94,93,94,92,101,98,91,103,96,95,104,92,96,102,102,106,96,106,90,110,99,108,96,112,117,98,117,103,110,113,94,111,108,118,105,112,119,104,115,123,109,115,117,108,117,117,132,157,133,150,193,184,230,199,218,235,221,211,178,174,182,148,162,215,199,223,165,200,252,199,162,176,183,199,216,261,238,205,249,227,254,242,223,185,185,206,244,274,271,337,258,309,283,260,255,202,227,242,287,281,282,336,283,278,331,282,208,217,212,210,260,319,257,351,298,311,305,257,233,240,213,216,265,307,271,297,268,289,285,286,216,221,250
"Other renewables : West North Central","thousand megawatthours","ELEC.GEN.AOR-WNC-99.M",234,196,205,244,230,204,171,178,183,239,254,307,337,347,284,326,297,266,187,222,233,244,269,294,313,306,361,336,301,238,261,231,292,344,382,425,314,344,382,331,360,259,215,252,324,312,314,369,328,363,464,477,512,420,372,295,456,466,636,590,696,608,717,702,679,473,462,411,510,677,635,794,918,687,889,814,858,598,500,500,797,834,912,778,1090,900,1012,1321,1235,946,841,859,1106,1385,1476,2064,1865,1896,2174,2195,1972,1345,1242,1495,1284,1950,2127,2104,2066,1633,2394,2514,2373,1809,1613,1939,2229,2446,2863,2541,2496,3160,2792,3169,3390,2643,1718,1621,1937,3288,3679,3431,4038,3060,3716,3640,3624,3123,2164,2270,2626,3887,3909,3672,4593,3775,4062,4358,4266,3431,2811,2413,3687,4202,4906,3908,5540,4214,5103,5211,3983,3613,3266,2323,3573,4561,5797,4265,5205,4461,4891,4985,4721,3158,2953,3303
"Other renewables : Iowa","thousand megawatthours","ELEC.GEN.AOR-IA-99.M",53,41,45,62,57,44,30,34,36,63,60,68,91,110,87,105,94,83,55,56,61,80,90,104,97,101,115,107,87,59,60,44,77,108,108,133,112,128,129,110,118,65,46,61,95,90,85,116,91,120,165,166,184,133,100,76,158,163,235,173,253,213,265,260,252,145,126,107,153,220,193,269,324,232,296,289,299,181,135,137,238,260,308,207,343,260,303,432,358,264,190,169,266,408,479,780,651,731,808,809,711,453,379,507,343,679,776,742,748,665,868,926,789,573,473,615,761,884,1129,930,824,1002,887,1074,1146,871,499,430,579,1114,1265,1179,1505,1155,1380,1304,1332,1077,657,727,898,1376,1427,1346,1680,1396,1431,1477,1455,1107,883,694,1183,1355,1768,1298,1868,1337,1747,1771,1273,1042,931,556,989,1493,1997,1448,1826,1587,1665,1619,1619,925,811,1016
"Other renewables : Kansas","thousand megawatthours","ELEC.GEN.AOR-KS-99.M","--","--","--","--","--","--","--","--","--","--","--",40,46,47,47,47,46,43,30,33,34,30,32,31,29,23,40,40,31,23,31,27,30,26,29,37,23,31,37,34,43,26,23,23,34,28,26,30,18,19,33,36,30,35,32,17,36,28,36,105,88,67,94,97,66,69,63,54,79,105,102,108,97,93,113,105,98,63,63,91,101,135,103,90,137,121,150,183,167,124,133,93,124,166,164,198,220,218,275,270,237,193,169,224,159,305,278,314,238,194,372,366,288,288,251,263,292,299,350,258,283,325,333,362,361,364,239,211,223,361,390,329,421,331,393,363,429,471,360,332,326,466,669,690,732,691,794,891,874,821,640,603,869,998,850,729,1044,769,1123,1145,801,925,774,738,849,820,1080,834,926,829,832,1002,922,818,743,702
"Other renewables : Minnesota","thousand megawatthours","ELEC.GEN.AOR-MN-99.M",178,152,157,179,169,157,138,142,145,173,192,196,197,187,148,171,154,137,99,129,135,131,143,156,176,173,198,181,175,146,160,149,176,178,202,208,142,142,170,148,156,138,117,135,156,149,163,180,187,192,227,225,253,215,207,172,224,212,296,243,281,258,282,271,283,201,213,191,216,274,265,325,378,289,379,338,365,272,228,202,365,347,399,370,501,429,445,544,510,393,361,392,487,514,576,701,620,627,693,678,621,456,429,470,406,545,569,622,577,424,622,608,578,463,438,490,495,582,664,698,608,834,694,769,850,624,426,413,495,871,934,887,970,733,853,901,879,732,533,568,651,953,895,786,1039,807,892,921,896,687,648,522,768,811,1069,811,1164,971,1049,1076,843,738,726,434,741,940,1153,933,1032,941,1021,1017,982,625,577,739
"Other renewables : Missouri","thousand megawatthours","ELEC.GEN.AOR-MO-99.M",1,1,1,1,1,1,1,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,3,3,2,3,3,3,3,2,3,2,2,2,2,3,2,3,2,2,14,10,17,22,20,18,19,15,25,37,16,33,31,29,43,67,47,30,30,43,34,75,77,68,53,52,81,77,95,73,63,72,92,107,140,82,97,110,112,150,117,105,64,53,74,111,144,103,139,117,140,114,121,107,70,67,69,119,121,114,127,126,125,116,108,98,64,57,84,109,129,99,149,91,137,132,99,91,74,59,69,111,144,87,122,97,101,106,94,69,55,56
"Other renewables : Nebraska","thousand megawatthours","ELEC.GEN.AOR-NE-99.M",2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,2,2,9,8,7,7,7,7,9,9,8,8,8,9,6,6,6,6,6,6,6,6,6,6,6,6,3,5,7,6,7,6,6,5,7,27,31,30,32,25,27,28,25,20,24,23,23,28,29,30,36,20,27,23,22,22,21,17,19,23,25,24,26,22,23,28,23,17,20,20,19,19,25,32,28,21,45,50,44,25,28,37,42,44,47,39,41,34,48,47,45,31,34,37,36,42,44,55,65,101,95,106,108,91,69,58,64,102,129,128,137,109,120,110,109,108,87,90,85,119,125,147,157,148,165,163,161,123,108,114,156,175,216,185,232,174,218,230,231,206,190,132,230,285,379,298,334,289,290,289,267,193,175,221
"Other renewables : North Dakota","thousand megawatthours","ELEC.GEN.AOR-ND-99.M",1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,0,1,1,13,20,21,17,21,23,18,20,14,12,14,18,22,21,20,16,16,20,25,22,17,15,14,17,22,23,24,28,32,32,32,36,27,24,23,26,35,31,45,64,40,57,44,58,46,41,40,55,52,62,74,59,50,65,99,145,120,110,161,174,228,202,294,297,246,284,269,266,162,180,179,260,256,339,270,324,204,304,360,428,281,258,342,422,401,401,383,437,524,436,445,526,382,273,298,361,476,542,548,580,390,541,562,481,399,271,311,399,559,410,376,598,395,426,518,536,393,312,274,427,497,590,559,757,620,557,578,500,422,375,283,466,643,732,426,668,480,702,661,574,341,405,387
"Other renewables : South Dakota","thousand megawatthours","ELEC.GEN.AOR-SD-99.M",0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,10,14,16,13,15,16,13,15,9,9,11,14,15,13,15,12,10,13,17,16,13,12,10,14,13,14,15,12,12,16,13,14,9,10,11,11,13,12,14,16,11,14,12,15,12,10,9,15,14,13,10,11,9,10,14,12,9,8,8,11,14,15,26,17,25,25,53,45,26,27,34,39,45,42,49,84,60,99,130,150,102,97,119,132,130,134,134,183,264,234,263,283,208,149,157,142,253,275,257,286,224,288,287,272,228,186,175,199,295,262,212,260,213,230,272,236,201,157,150,202,256,284,227,326,252,272,279,235,188,194,121,228,269,313,239,297,238,279,292,262,187,185,183
"Other renewables : South Atlantic","thousand megawatthours","ELEC.GEN.AOR-SAT-99.M",1056,913,926,969,960,951,994,985,880,1003,946,992,1157,1006,1012,1420,1380,1527,1430,1408,1330,1393,1328,1370,1224,1090,1177,1246,1158,1125,1257,1150,1074,1092,1101,1255,1273,1127,1174,1227,1261,1207,1290,1201,1101,1171,1107,1235,1252,1122,1213,1188,1174,1185,1307,1260,1208,1147,1193,1247,1319,1170,1238,1210,1192,1183,1320,1280,1199,1149,1211,1276,1246,1161,1205,1200,1152,1236,1301,1277,1226,1223,1238,1305,1281,1143,1204,1219,1183,1243,1298,1268,1150,1195,1232,1273,1278,1171,1223,1201,1128,1206,1254,1298,1165,1200,1201,1318,1317,1138,1256,1272,1225,1277,1337,1301,1285,1283,1350,1454,1430,1303,1343,1352,1269,1388,1423,1452,1350,1344,1409,1558,1586,1424,1402,1375,1372,1410,1509,1406,1346,1421,1450,1633,1613,1484,1587,1493,1661,1557,1581,1584,1438,1536,1693,1795,1829,1622,1845,1764,1753,1824,1839,1788,1704,1813,1835,1849,1916,1686,1873,1778,1822,1967,2026,1971
"Other renewables : Delaware","thousand megawatthours","ELEC.GEN.AOR-DE-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,0,4,4,4,3,4,4,4,4,4,4,4,4,17,6,16,15,14,15,15,8,15,13,14,15,14,11,10,13,7,7,11,14,11,10,9,9,10,10,9,11,12,13,15,13,13,12,7,12,13,10,12,14,14,14,16,14,14,9,14,13,15,11,13,9,13,12,15,10,9,8,9,8,8,8,9,8,10,10,9,9,9,9,9,9,8,8,11,11,12,12,12,11,11,10,9,7,8,9,10,11,12,12,12,12
"Other renewables : District Of Columbia","thousand megawatthours","ELEC.GEN.AOR-DC-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0
"Other renewables : Florida","thousand megawatthours","ELEC.GEN.AOR-FL-99.M",335,298,310,321,324,320,321,315,276,323,306,340,344,297,335,261,339,361,350,291,303,295,270,293,394,323,382,415,369,370,402,382,358,337,344,397,399,338,355,391,401,390,400,391,314,354,367,403,397,333,359,332,371,360,394,385,362,314,349,373,388,320,373,355,357,350,379,388,372,331,343,374,380,350,361,323,319,369,362,368,363,345,359,403,370,334,381,394,372,371,381,347,331,332,334,355,385,329,354,338,316,371,372,393,356,354,362,410,394,350,397,358,346,339,379,377,356,388,392,410,404,351,387,375,388,372,404,404,367,395,410,415,378,363,401,373,378,365,402,374,342,384,351,413,412,363,398,397,399,386,395,371,361,370,384,422,439,392,452,431,416,426,455,460,423,424,446,441,447,390,429,407,417,437,492,437
"Other renewables : Georgia","thousand megawatthours","ELEC.GEN.AOR-GA-99.M",261,256,256,258,248,250,259,250,221,269,243,232,348,238,258,688,597,698,577,630,554,645,568,581,278,243,255,290,269,261,285,243,238,251,255,305,293,256,284,299,260,268,290,254,265,252,219,253,266,257,282,290,254,266,296,282,276,285,268,251,293,267,271,285,270,263,306,280,292,284,288,318,256,271,282,295,277,276,301,289,286,298,279,307,239,222,229,232,230,215,245,251,231,238,221,228,210,202,240,199,228,240,233,242,257,246,259,267,262,230,267,270,245,260,278,262,283,274,261,290,281,239,245,233,259,285,276,275,276,257,264,297,276,248,230,245,279,276,294,280,267,280,290,314,309,265,277,305,354,313,343,338,293,333,349,360,359,306,346,322,374,371,376,374,355,368,375,382,383,314,377,359,394,394,387,395
"Other renewables : Maryland","thousand megawatthours","ELEC.GEN.AOR-MD-99.M",27,27,30,29,31,36,34,34,34,30,30,31,41,68,40,40,40,44,49,44,44,37,34,42,45,37,49,56,52,47,57,56,50,48,51,46,50,43,50,49,51,51,58,54,50,47,40,46,49,41,48,51,49,55,55,59,53,54,55,52,55,45,54,51,52,54,58,57,50,51,50,50,53,42,45,52,54,58,59,54,49,52,44,42,49,38,51,55,47,60,56,59,54,48,48,49,47,33,46,50,43,53,48,56,45,48,38,44,45,33,45,53,50,55,53,55,50,49,50,36,61,64,65,77,55,62,61,69,60,75,86,87,97,80,59,72,61,78,75,66,64,74,80,92,85,87,88,75,81,73,72,72,62,75,89,82,91,73,100,91,80,77,75,79,78,89,94,97,100,89,107,96,82,96,83,70
"Other renewables : North Carolina","thousand megawatthours","ELEC.GEN.AOR-NC-99.M",157,132,132,161,131,116,152,154,143,166,150,156,171,158,150,169,140,136,135,137,141,142,156,149,151,187,171,175,159,140,174,158,159,171,165,166,158,141,134,154,173,141,155,133,118,151,138,136,163,136,139,152,128,151,170,150,157,158,148,155,170,151,149,148,137,140,172,156,142,155,150,158,152,121,124,147,134,135,157,137,124,156,141,143,185,149,170,157,129,158,180,159,126,160,176,173,179,151,154,165,174,168,165,169,139,136,121,173,164,154,139,150,164,190,191,193,184,156,174,224,200,181,179,175,168,202,228,220,210,181,189,212,218,205,201,203,199,225,244,247,205,246,229,283,234,230,260,230,254,261,272,268,237,242,227,240,252,245,279,304,290,324,323,281,275,275,259,274,283,296,304,345,355,386,402,421
"Other renewables : South Carolina","thousand megawatthours","ELEC.GEN.AOR-SC-99.M",115,64,64,74,80,76,70,75,69,70,65,72,110,106,77,85,118,114,122,117,112,95,98,91,118,107,106,102,119,107,115,118,106,95,94,109,153,141,134,153,169,146,151,148,142,155,115,155,166,149,147,157,154,152,158,158,148,118,138,168,168,155,162,169,155,161,171,171,157,119,173,149,176,153,164,154,161,177,177,180,176,150,171,157,161,157,138,141,148,151,164,176,145,142,143,149,150,155,154,147,156,113,163,162,124,149,151,124,148,141,138,150,161,151,164,164,157,145,171,183,183,161,158,171,177,187,189,194,177,162,166,204,216,198,170,199,171,154,177,171,184,152,173,179,181,178,190,190,186,192,188,200,156,177,194,195,204,184,187,201,204,207,172,179,192,163,167,172,183,164,159,142,175,177,189,188
"Other renewables : Virginia","thousand megawatthours","ELEC.GEN.AOR-VA-99.M",161,134,132,123,142,150,156,156,137,144,151,160,143,140,153,176,146,173,197,187,175,177,200,205,222,177,197,192,176,189,212,189,150,174,173,211,196,191,199,165,196,203,227,218,202,202,213,222,198,190,221,189,208,193,228,220,203,205,217,226,222,208,213,187,207,210,227,220,176,189,196,203,202,200,207,207,195,212,234,240,217,205,221,227,238,220,194,205,223,246,238,246,223,206,228,231,207,203,196,217,173,205,213,229,188,185,194,207,202,142,176,195,181,200,207,204,175,146,205,187,186,182,185,192,157,202,203,207,185,141,156,198,184,173,191,143,211,209,216,217,209,178,217,212,208,200,190,148,243,246,246,268,268,271,284,333,309,269,303,259,277,343,349,340,302,330,327,327,354,288,305,281,313,361,396,404
"Other renewables : West Virginia","thousand megawatthours","ELEC.GEN.AOR-WV-99.M",1,2,2,3,2,2,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,9,16,15,17,18,14,10,11,5,12,16,19,21,24,17,18,17,12,8,9,4,9,11,15,19,14,15,17,17,11,9,5,7,8,12,18,22,24,23,16,13,13,6,8,7,10,19,11,23,22,20,17,19,9,7,7,5,6,13,19,22,22,19,25,20,20,26,19,22,24,56,67,72,86,86,69,71,31,49,49,32,46,71,67,86,92,79,85,86,66,69,49,33,66,114,89,112,102,114,112,114,50,63,46,69,61,123,125,133,202,148,137,131,60,91,86,42,66,99,101,134,175,154,174,141,135,78,55,58,52,58,158,153,166,146,168,143,100,62,76,64,67,154,157,149,158,137,182,138,75,104,65,44
"Other renewables : East South Central","thousand megawatthours","ELEC.GEN.AOR-ESC-99.M",591,482,489,498,468,567,593,584,510,570,538,563,599,528,500,461,457,486,542,527,479,435,399,436,516,436,470,450,444,474,526,512,487,503,507,500,582,513,495,569,524,532,589,572,516,559,547,537,583,503,523,496,546,533,529,529,525,535,525,530,616,499,510,529,562,556,603,587,553,575,526,578,579,509,520,567,566,568,612,586,537,557,559,569,578,519,539,478,489,512,590,525,501,543,469,431,487,415,476,425,504,461,519,540,501,508,481,472,450,412,461,429,425,451,456,463,447,430,437,447,521,464,488,498,454,479,497,502,455,435,491,494,473,474,422,408,481,452,485,464,460,419,456,459,479,443,472,429,482,501,509,549,480,438,481,498,551,491,525,525,538,533,561,559,499,521,510,540,544,490,498,526,498,519,567,552
"Other renewables : Alabama","thousand megawatthours","ELEC.GEN.AOR-AL-99.M",401,332,355,347,306,352,371,372,315,342,333,362,394,342,310,304,301,320,357,338,309,240,240,290,322,285,310,305,271,291,325,321,310,300,320,314,324,308,304,327,315,315,333,333,289,307,312,311,328,304,313,278,315,311,285,293,312,301,305,301,359,294,316,301,321,322,350,341,328,326,298,328,326,292,300,304,324,320,350,339,318,300,314,312,306,269,293,262,281,288,300,300,283,288,252,234,258,213,237,214,262,255,282,284,284,281,246,235,219,187,196,196,190,199,213,208,196,176,191,206,265,226,233,241,237,245,246,248,223,194,224,236,243,244,209,224,236,236,243,241,244,185,227,244,255,235,231,221,232,248,262,273,254,204,228,232,290,252,257,266,298,276,291,289,276,259,251,289,277,244,266,265,254,256,290,288
"Other renewables : Kentucky","thousand megawatthours","ELEC.GEN.AOR-KY-99.M",1,1,1,1,1,1,1,1,1,1,1,1,31,30,35,32,22,35,37,32,31,33,33,14,34,20,1,10,22,30,30,30,28,32,32,29,38,36,37,30,27,32,33,33,33,37,36,39,40,35,40,26,34,33,34,35,35,33,38,40,40,37,42,38,38,34,39,40,28,40,41,42,31,39,42,39,42,41,39,38,28,44,38,45,47,40,39,39,35,34,79,32,21,42,25,27,41,33,39,38,37,36,33,37,11,11,11,36,36,37,59,39,37,39,39,35,39,27,24,28,41,42,42,38,37,35,39,29,14,36,41,41,41,33,9,10,38,36,40,19,19,31,29,29,24,25,29,26,26,23,22,41,8,21,41,40,45,38,45,42,44,36,39,39,13,37,44,39,45,40,39,41,40,41,40,33
"Other renewables : Mississippi","thousand megawatthours","ELEC.GEN.AOR-MS-99.M",115,91,79,85,89,140,150,138,125,156,132,133,108,101,81,72,72,71,84,91,67,75,54,59,92,74,84,68,80,87,97,88,83,98,86,86,146,103,90,137,107,122,154,134,129,145,125,122,146,99,103,132,129,127,146,135,116,139,124,125,142,104,98,124,132,133,149,137,130,139,119,134,138,101,103,133,121,130,140,132,116,129,119,132,142,126,129,101,92,111,130,111,111,129,111,98,112,97,121,115,119,90,123,133,127,132,137,119,121,116,131,110,105,125,127,134,131,135,141,128,129,112,132,131,91,118,139,137,132,131,131,123,125,135,136,121,135,112,134,128,125,127,126,106,106,95,130,112,130,134,131,136,131,108,116,120,121,117,140,124,104,129,136,135,121,130,120,116,125,117,100,129,108,126,134,130
"Other renewables : Tennessee","thousand megawatthours","ELEC.GEN.AOR-TN-99.M",75,59,54,65,72,73,71,73,70,72,72,68,65,54,73,52,63,60,64,66,72,87,72,72,68,58,75,67,71,67,73,73,67,72,69,71,73,66,64,74,75,63,69,72,65,69,74,66,69,63,66,60,68,62,65,66,62,62,58,64,75,64,54,66,71,67,66,69,67,69,68,74,84,78,75,91,79,77,83,77,75,84,88,79,84,84,78,75,82,79,80,82,85,84,81,72,76,71,80,59,87,80,81,85,79,85,86,83,74,72,76,84,93,87,77,86,81,92,81,85,86,84,82,89,89,81,73,87,86,73,95,94,64,63,68,54,72,68,69,76,73,76,74,80,94,88,82,70,93,96,95,99,87,105,95,106,94,84,83,93,92,92,95,95,89,95,95,97,97,89,92,92,96,97,103,101
"Other renewables : West South Central","thousand megawatthours","ELEC.GEN.AOR-WSC-99.M",558,572,526,577,479,456,536,551,548,663,551,611,797,650,698,692,727,763,732,779,698,714,682,678,699,664,726,816,740,783,813,765,759,731,772,942,841,780,877,874,928,850,794,718,763,789,765,866,863,715,914,1035,958,1051,876,820,870,939,894,1159,1233,1031,1229,1262,1265,1118,1123,983,1142,1322,1440,1366,1168,1357,1481,1455,1228,1175,1035,1558,1412,1800,1645,1707,1879,1836,2290,2311,2385,2450,1913,1264,1227,2182,2100,2576,2300,2328,2604,2753,2115,2249,2031,2128,1814,2625,2518,2519,2651,2264,3539,3633,3085,3423,2651,2433,2410,2645,3703,3521,2923,3448,3741,4058,4098,4437,2933,2795,2549,3699,4009,3521,4285,3614,4609,4070,4042,3775,3214,2888,3207,4087,4047,4791,4120,4360,5382,5400,5599,4925,3735,3432,3316,4722,4584,4078,5563,3849,5429,5802,4870,5754,4103,3952,3719,4463,5761,4785,4619,4899,4032,5777,5912,5017,5729,4756
"Other renewables : Arkansas","thousand megawatthours","ELEC.GEN.AOR-AR-99.M",137,126,119,136,69,88,98,158,136,161,142,143,172,137,128,142,106,113,128,121,133,142,136,129,168,147,152,156,131,144,164,156,149,156,153,168,165,144,154,155,134,150,160,153,140,164,149,142,148,130,147,145,137,141,145,143,145,158,145,150,158,138,143,121,131,135,151,148,141,149,152,155,148,133,146,131,140,123,129,139,132,125,142,136,137,127,132,136,126,112,121,133,117,129,126,118,143,128,146,140,128,115,135,137,132,128,132,122,123,120,140,133,130,129,149,137,134,142,142,146,139,126,140,139,129,146,151,140,140,131,144,143,138,137,133,141,141,128,138,141,132,133,145,154,151,135,127,130,139,144,140,142,128,115,124,126,130,122,134,136,129,130,141,136,117,137,143,151,141,136,124,124,127,123,131,120
"Other renewables : Louisiana","thousand megawatthours","ELEC.GEN.AOR-LA-99.M",226,203,222,234,200,197,246,237,242,263,216,217,244,217,214,211,238,240,252,246,252,242,242,214,239,210,228,243,261,268,271,273,266,270,263,288,257,230,257,255,207,256,256,247,258,261,227,257,260,235,239,247,242,241,240,238,219,248,232,245,250,222,242,249,240,251,249,259,261,239,242,258,245,230,262,234,234,245,254,252,258,256,249,261,231,209,227,214,230,255,238,246,210,247,211,191,176,163,177,192,191,213,226,211,208,206,203,197,174,160,170,212,195,221,216,221,228,215,223,234,202,177,205,188,170,225,210,202,209,224,212,220,205,185,186,167,168,186,197,202,219,232,243,241,236,229,227,206,247,224,239,230,238,258,209,243,227,205,214,211,225,218,241,243,237,235,219,235,234,218,230,207,195,230,241,234
"Other renewables : Oklahoma","thousand megawatthours","ELEC.GEN.AOR-OK-99.M",20,19,17,15,20,12,27,22,17,23,21,19,15,20,20,15,11,22,25,21,21,24,21,24,24,17,26,23,24,23,19,23,21,19,25,78,69,67,72,73,100,61,63,60,63,62,66,64,57,60,75,123,100,118,91,79,102,98,105,129,198,154,190,194,169,149,149,116,135,180,189,185,168,187,205,198,169,137,113,189,177,235,187,162,249,192,230,252,236,214,196,116,155,227,219,265,229,228,290,298,197,221,186,223,168,271,286,333,266,214,429,439,323,394,293,292,340,329,439,403,380,478,560,558,570,577,361,366,371,529,657,512,732,566,787,663,756,710,597,484,547,828,865,987,917,858,1034,1157,1101,1034,804,712,799,1157,1071,864,1203,759,1209,1278,981,1124,809,809,865,928,1214,1006,1080,1104,963,1250,1162,1135,1166,987
"Other renewables : Texas","thousand megawatthours","ELEC.GEN.AOR-TX-99.M",176,223,169,192,190,158,165,134,153,215,172,232,366,276,336,325,372,388,327,391,293,307,282,312,269,291,320,394,325,348,359,312,324,286,331,408,350,339,394,390,486,383,316,258,302,302,324,403,399,291,453,521,478,550,399,360,404,434,412,634,627,517,654,698,724,584,574,459,605,753,857,767,606,807,868,892,684,670,539,979,845,1184,1067,1148,1261,1308,1701,1709,1792,1870,1358,769,745,1579,1544,2002,1752,1809,1991,2122,1599,1699,1485,1556,1307,2021,1897,1867,2088,1772,2800,2848,2436,2679,1994,1784,1708,1958,2900,2739,2202,2667,2837,3173,3229,3489,2212,2088,1829,2816,2996,2646,3210,2726,3503,3099,2978,2752,2281,2061,2310,2894,2794,3409,2817,3138,3995,3907,4113,3525,2552,2348,2150,3192,3179,2844,4003,2763,3872,4178,3535,4282,2912,2764,2500,3162,4186,3393,3164,3442,2715,4195,4428,3528,4191,3415
"Other renewables : Mountain","thousand megawatthours","ELEC.GEN.AOR-MTN-99.M",209,184,207,186,172,199,209,214,202,235,237,240,232,204,218,215,210,196,241,201,206,223,223,242,232,201,237,207,195,191,184,188,216,224,278,301,330,287,310,303,315,263,253,259,266,290,296,380,417,343,432,367,352,353,365,313,358,343,412,428,568,510,531,523,444,425,405,386,407,519,536,501,527,487,519,489,412,411,367,449,531,663,672,755,780,731,860,833,799,740,590,616,586,787,937,1057,1147,914,1050,943,816,697,658,733,826,1111,1144,1294,1104,874,1178,1362,1305,1076,928,982,1033,1220,1453,1568,1697,1626,1753,1816,1773,1567,1219,1216,1136,1653,1982,1868,2247,1726,2125,1797,1790,1870,1433,1534,1416,2009,2103,2626,2375,2396,2429,2367,2209,2125,1776,1625,2017,2402,2426,2689,2930,2449,2873,2870,2435,2474,1979,1842,2056,2477,2928,2468,2527,2438,2703,2709,2538,2108,2232,2319
"Other renewables : Arizona","thousand megawatthours","ELEC.GEN.AOR-AZ-99.M",0,0,1,1,5,4,6,6,5,4,4,3,6,5,6,4,4,4,4,4,4,4,5,4,2,2,3,5,5,5,4,4,4,5,4,2,3,4,4,4,4,4,4,4,4,5,4,4,5,5,7,6,7,7,7,6,6,6,6,5,6,6,5,3,5,5,5,5,4,3,3,3,2,3,4,4,4,4,4,3,3,4,3,3,3,3,4,4,7,9,13,15,15,13,14,15,12,12,13,11,15,15,16,17,14,28,20,27,22,20,30,27,37,29,24,19,21,27,23,40,24,45,50,55,49,54,35,33,32,38,60,56,77,77,98,94,171,174,163,168,168,182,153,173,138,167,204,223,246,254,224,224,249,337,228,239,235,243,332,361,417,420,359,338,333,303,275,196,193,265,347,421,431,425,414,427
"Other renewables : Colorado","thousand megawatthours","ELEC.GEN.AOR-CO-99.M",9,8,8,8,8,7,7,9,7,10,10,21,19,17,14,15,14,12,10,12,12,12,15,17,19,13,20,16,14,12,11,11,12,15,16,19,17,17,20,15,16,12,10,11,14,30,32,63,109,88,101,51,47,61,66,43,67,57,61,60,77,80,90,92,65,75,61,53,58,101,74,70,82,64,86,84,52,58,58,58,129,204,224,225,329,306,312,307,301,252,172,199,173,263,337,334,431,284,274,329,239,157,155,212,255,317,283,309,254,239,308,375,344,273,213,219,269,285,351,425,424,398,405,480,529,444,325,365,345,521,562,569,636,551,568,568,450,514,371,455,369,503,516,691,691,736,715,582,602,620,536,412,572,692,647,730,828,577,720,790,637,613,455,401,511,665,837,673,786,655,719,706,669,467,487,597
"Other renewables : Idaho","thousand megawatthours","ELEC.GEN.AOR-ID-99.M",43,39,49,46,43,48,52,54,49,37,37,36,35,28,41,42,38,46,56,43,45,48,40,44,44,42,45,44,42,48,51,49,28,43,44,61,48,46,39,48,50,46,50,51,39,50,44,51,47,44,38,48,46,34,51,50,51,50,49,50,59,49,63,49,62,44,62,62,56,62,66,55,49,51,44,52,58,58,54,65,55,50,62,54,63,58,68,61,64,62,58,62,47,59,73,74,76,64,75,64,71,68,64,69,66,76,81,92,72,64,65,79,85,76,74,74,73,105,119,128,101,144,195,179,165,172,158,134,113,173,195,164,223,160,241,184,190,180,157,170,146,214,233,417,208,265,298,352,269,242,232,240,277,240,305,224,295,339,345,348,269,273,236,184,240,285,325,278,231,265,285,290,238,203,209,213
"Other renewables : Montana","thousand megawatthours","ELEC.GEN.AOR-MT-99.M",5,6,6,6,6,6,6,6,5,4,5,5,6,5,5,5,5,6,5,6,4,6,6,6,6,6,6,6,6,6,6,6,4,6,7,6,5,5,5,5,5,5,5,5,5,5,5,5,6,6,6,5,6,6,7,7,6,6,6,6,55,56,40,46,41,36,34,33,42,30,54,64,81,53,63,44,44,33,29,38,45,53,46,77,79,76,66,55,55,45,38,41,37,62,72,78,113,65,91,84,64,48,45,30,59,85,140,93,90,62,100,112,92,77,71,69,68,89,109,88,150,108,84,112,102,84,76,59,73,113,138,164,163,87,130,94,98,110,57,58,54,121,127,164,206,189,140,164,132,110,88,57,85,129,198,261,256,172,175,189,102,127,101,100,109,198,235,203,251,167,233,150,106,84,130,117
"Other renewables : Nevada","thousand megawatthours","ELEC.GEN.AOR-NV-99.M",109,94,106,98,92,94,96,98,97,104,103,108,103,91,97,91,93,80,118,88,86,91,90,98,98,89,97,96,86,84,84,87,87,68,95,96,115,108,114,107,106,103,108,108,107,108,101,113,106,94,107,103,105,105,115,107,105,108,105,103,117,105,117,110,103,106,113,115,105,117,116,119,121,99,110,106,92,106,111,115,110,110,107,109,43,39,143,157,155,153,142,142,137,145,138,144,143,134,162,152,146,148,148,153,144,110,177,192,166,135,196,196,219,207,183,206,194,196,185,203,209,197,214,216,220,211,198,203,186,186,195,202,194,187,204,206,236,254,266,265,273,287,295,302,302,294,325,325,331,312,283,288,288,323,307,313,340,322,376,363,380,371,354,364,368,372,377,371,383,414,461,479,486,458,478,463
"Other renewables : New Mexico","thousand megawatthours","ELEC.GEN.AOR-NM-99.M",2,1,2,2,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,3,5,0,0,0,0,0,0,0,0,43,38,51,51,49,46,49,56,54,39,28,31,40,23,46,52,63,46,82,80,70,72,67,47,61,53,70,88,135,110,147,142,95,103,81,63,85,109,116,91,96,105,122,138,114,96,72,110,121,152,121,163,177,153,164,165,153,145,99,77,97,130,137,166,145,151,166,148,111,93,97,126,98,166,135,143,157,95,170,200,195,140,103,122,137,146,187,204,189,192,217,256,243,212,127,106,129,177,222,172,252,236,248,219,227,220,158,148,160,229,208,271,216,242,267,259,248,223,161,147,174,236,196,230,277,225,293,302,245,279,188,166,189,203,262,213,157,189,202,289,255,201,191,196
"Other renewables : Utah","thousand megawatthours","ELEC.GEN.AOR-UT-99.M",14,13,14,13,0,15,16,16,14,16,15,11,20,18,19,16,19,17,18,14,21,21,20,21,18,16,18,17,18,17,17,17,16,14,18,18,17,16,16,17,17,17,17,18,13,18,17,16,13,12,17,16,17,16,17,17,17,13,16,17,15,16,17,17,13,17,18,18,18,19,18,19,18,18,20,10,3,13,16,19,16,20,19,24,19,15,22,21,27,24,28,29,28,24,32,33,32,28,34,27,31,29,30,30,60,77,44,65,60,43,75,72,74,65,64,87,66,55,51,70,50,80,94,76,90,102,85,92,53,71,100,65,69,72,133,85,113,125,88,70,64,74,91,116,57,61,72,59,73,103,87,86,88,79,83,84,84,116,124,102,120,118,104,98,86,92,110,105,85,87,96,104,107,104,119,103
"Other renewables : Wyoming","thousand megawatthours","ELEC.GEN.AOR-WY-99.M",26,23,22,13,16,23,23,23,23,58,62,54,42,38,35,40,34,30,30,34,34,39,45,46,45,33,48,23,24,19,12,14,22,35,44,48,77,46,63,50,63,37,31,33,44,51,46,76,68,48,74,57,53,52,35,37,46,50,98,98,104,88,51,65,59,39,32,37,38,78,88,80,77,94,71,52,44,43,23,40,52,70,90,99,67,81,82,63,37,51,41,51,53,91,133,213,194,177,235,128,139,138,103,96,129,252,263,373,283,217,235,301,260,208,196,187,204,316,429,410,550,461,494,442,374,290,214,223,203,375,511,476,632,357,503,347,304,294,174,201,184,399,481,493,556,442,407,404,308,262,165,170,285,366,461,608,614,454,508,416,264,273,182,192,221,359,507,430,440,396,359,270,246,165,206,204
"Other renewables : Pacific Contiguous","thousand megawatthours","ELEC.GEN.AOR-PCC-99.M",1883,1642,1984,1982,1982,2162,2248,2218,2018,1952,1764,1854,2069,1829,2195,2116,2280,2442,2427,2420,2194,2183,2002,2022,2043,1942,2312,2280,2222,2496,2441,2383,2239,2228,2035,2135,2112,2028,2263,2218,2519,2626,2616,2491,2259,2255,1972,2039,2088,1808,2270,2268,2494,2589,2533,2421,2348,2267,2129,2153,2347,2008,2352,2172,2349,2499,2588,2584,2353,2398,2352,2248,2544,2141,2456,2586,2706,2860,2820,2769,2601,2484,2240,2598,2567,2390,2860,2890,2996,3233,3184,3106,2549,2500,2349,2521,2453,2181,3073,3037,3096,3447,3430,3416,2938,2862,2593,2331,2362,2137,2965,3431,3479,3752,3774,3658,3097,2744,2744,2681,2852,2894,3244,3900,3839,4041,3780,4029,3040,3163,3157,2788,3164,3311,4016,3631,4526,4679,4202,4143,3406,3633,2852,3824,3394,3842,4382,5301,5059,4956,5107,4787,4715,3764,3692,4034,3806,4072,5160,5593,6178,6676,5665,5483,4984,4569,4784,4156,3394,4215,4943,5797,6271,6293,6610,6539
"Other renewables : California","thousand megawatthours","ELEC.GEN.AOR-CA-99.M",1717,1505,1788,1797,1832,1983,2064,2041,1843,1759,1611,1690,1812,1627,1934,1895,2077,2234,2205,2190,1955,1942,1759,1777,1788,1704,1983,1994,1971,2239,2167,2121,1999,1949,1733,1897,1808,1768,1932,1949,2249,2371,2337,2205,1978,1941,1709,1723,1795,1546,1927,1981,2229,2288,2215,2087,2025,1947,1782,1831,1879,1670,2005,1870,2021,2203,2227,2236,2025,2021,1853,1904,2136,1741,1991,2104,2242,2383,2358,2264,2096,1964,1744,1821,1869,1760,2072,2092,2253,2332,2430,2370,2051,1914,1786,1854,1752,1767,2119,2204,2292,2509,2648,2399,2127,2037,1820,1864,1769,1712,2002,2076,2288,2560,2673,2473,2212,1902,1869,1914,1825,1922,2236,2475,2655,2647,2588,2646,2163,2068,2010,1989,1990,2108,2435,2359,3039,3102,2809,2777,2442,2484,2032,2389,2175,2283,2887,3234,3575,3553,3422,3433,3223,2807,2471,2513,2636,2749,3512,3856,4427,4648,4131,4070,3676,3417,3217,2885,2593,3062,3710,4229,4844,4810,4751,4824
"Other renewables : Oregon","thousand megawatthours","ELEC.GEN.AOR-OR-99.M",51,40,87,75,62,69,73,77,71,80,72,81,92,73,101,83,75,77,95,97,92,94,89,81,91,90,132,73,83,70,77,76,89,104,118,79,94,72,122,84,102,92,91,102,90,109,65,93,112,102,145,120,128,134,132,142,135,143,162,145,180,136,146,128,136,138,145,156,146,178,196,143,159,153,165,167,175,180,188,206,191,176,182,286,267,222,316,324,327,420,341,316,219,239,192,238,285,162,411,416,395,492,404,519,390,353,294,151,212,144,395,576,534,564,532,544,352,327,306,270,365,372,367,564,503,618,524,640,332,436,487,283,479,539,666,560,695,764,795,721,505,484,342,657,560,742,680,1040,762,745,955,728,747,443,557,676,577,644,759,820,885,1120,830,753,647,516,753,572,351,532,516,735,750,771,920,836
"Other renewables : Washington","thousand megawatthours","ELEC.GEN.AOR-WA-99.M",114,97,109,110,88,109,111,101,104,112,82,83,165,129,159,138,128,131,128,134,147,147,155,165,164,147,197,213,168,187,197,186,151,175,184,159,210,188,208,184,168,163,188,184,190,206,199,223,181,161,198,167,137,167,185,191,188,176,185,177,288,201,201,173,191,158,216,191,181,199,303,200,248,247,300,315,288,297,274,300,314,344,314,491,431,407,471,473,416,482,413,420,278,346,371,429,415,252,543,417,409,446,378,497,421,471,479,316,380,281,568,779,657,627,570,641,533,514,568,498,662,601,641,861,681,777,669,743,545,659,660,516,695,664,915,713,791,812,598,645,459,666,478,778,659,816,814,1028,722,657,730,626,746,514,665,845,594,679,889,917,867,908,703,660,662,636,814,699,450,621,717,833,677,713,938,879
"Other renewables : Pacific Noncontiguous","thousand megawatthours","ELEC.GEN.AOR-PCN-99.M",42,36,30,44,48,49,46,43,36,46,39,40,36,35,34,19,35,38,41,39,38,24,18,25,22,23,36,47,52,51,53,51,50,49,52,47,48,46,36,49,45,48,50,49,47,42,49,50,48,44,50,35,44,49,50,43,47,38,46,49,51,47,49,44,55,54,57,50,54,53,51,59,50,41,51,69,69,74,80,67,57,82,59,65,68,47,64,63,73,75,76,79,63,59,64,49,53,61,66,57,39,65,70,73,75,51,66,42,40,38,59,66,75,77,73,94,73,73,51,47,50,48,86,58,78,82,81,94,70,82,86,81,47,62,77,79,96,79,105,83,89,73,90,84,74,115,79,93,107,138,134,135,131,108,104,107,117,89,122,147,114,133,143,114,98,123,125,119,99,108,113,147,134,112,123,130
"Other renewables : Alaska","thousand megawatthours","ELEC.GEN.AOR-AK-99.M",0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,1,2,2,2,2,1,2,1,1,1,2,2,2,2,2,3,2,2,1,1,1,0,2,1,1,1,2,2,1,1,2,2,"NM",2,2,2,2,2,3,2,5,6,"NM",7,11,19,11,12,15,23,21,22,20,15,15,15,22,17,20,20,16,15,13,11,13,18,22,17,19,18,19,18,16,14,14,13
"Other renewables : Hawaii","thousand megawatthours","ELEC.GEN.AOR-HI-99.M",42,36,30,43,48,49,45,43,36,46,39,40,35,34,33,18,34,38,41,38,36,23,17,24,21,23,35,47,52,50,53,51,49,49,51,47,47,45,35,49,45,47,49,49,46,41,48,49,48,44,49,34,43,49,50,43,47,38,46,48,50,47,48,44,54,54,57,50,53,52,50,58,49,40,50,67,68,73,79,66,57,81,58,64,68,47,64,63,72,74,76,79,62,59,64,49,53,60,65,57,38,63,68,71,73,50,65,42,40,37,57,64,73,75,71,92,71,72,50,46,49,48,84,57,77,81,79,92,69,81,84,79,46,60,75,76,93,77,102,81,84,68,84,77,64,96,68,81,92,115,113,112,111,93,89,92,95,72,102,127,98,118,129,102,84,105,102,102,80,91,94,130,117,98,109,117
"Wind","thousand megawatthours","ELEC.GEN.WND-US-99.M","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""
"Wind : United States","thousand megawatthours","ELEC.GEN.WND-US-99.M",389,431,532,685,635,670,635,577,490,607,470,616,811,714,852,1024,1078,1126,890,977,736,734,656,755,632,745,1036,1093,1006,1047,953,815,895,897,961,1105,999,1022,1291,1295,1702,1397,1164,1051,1090,1029,932,1172,1132,966,1561,1698,1746,1797,1421,1138,1468,1446,1610,1828,2383,1922,2359,2472,2459,2052,1955,1655,1879,2442,2540,2472,2452,2520,3047,3172,2952,2620,2158,2699,2867,3377,3095,3490,4273,3852,4782,5225,5340,5140,4008,3264,3111,4756,4994,6616,5951,5852,7099,7458,6262,5599,4955,5464,4651,6814,6875,6906,6854,5432,8589,9764,8698,8049,6724,6686,7106,7944,9748,9059,8550,10452,10545,12422,11772,10985,7489,7474,6869,10525,12439,10656,13632,11052,14026,12709,12541,11972,8822,8469,8790,12636,11649,14524,14739,14076,15756,17476,16239,13748,11094,9634,11674,13635,15803,13967,18017,13976,17753,18731,15519,15688,12105,10197,11479,14575,19055,14696,15258,14964,15361,17835,17060,13398,13632,13040
"Wind : New England","thousand megawatthours","ELEC.GEN.WND-NEW-99.M",1,1,1,1,1,1,1,0,1,1,1,1,2,0,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,13,11,9,7,8,14,15,11,18,19,13,14,12,10,8,7,8,10,15,15,25,21,40,34,37,30,25,18,23,27,38,46,38,47,49,54,41,49,"NM",39,"NM",38,86,72,84,71,86,82,74,49,44,49,48,50,103,115,99,133,131,120,127,72,84,76,67,92,131,96,166,190,164,174,176,138,126,101,123,137,161,219,171,224,187,218,202,145,125,121,94,145,193,226,168,241,202,231,209,182,137,119,103
"Wind : Connecticut","thousand megawatthours","ELEC.GEN.WND-CT-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Wind : Maine","thousand megawatthours","ELEC.GEN.WND-ME-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",12,10,8,6,8,14,14,10,17,17,12,12,11,9,7,7,7,10,14,14,13,16,31,27,29,23,20,14,18,21,31,38,30,38,40,44,33,40,26,31,21,30,70,59,68,63,76,71,64,40,36,40,39,41,81,85,73,106,97,84,82,48,55,50,44,61,96,58,104,106,89,100,98,73,66,56,70,75,87,130,97,121,100,119,104,67,68,67,46,81,105,125,92,132,111,128,111,98,74,62,54
"Wind : Massachusetts","thousand megawatthours","ELEC.GEN.WND-MA-99.M","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,0,"--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,1,1,1,1,2,2,2,"NM",2,"NM",2,3,3,3,2,2,3,3,5,4,5,5,5,9,11,9,9,8,8,8,5,5,5,4,6,8,6,16,23,17,19,18,13,14,10,11,12,17,24,25,26,21,23,23,18,14,13,11,13,20,24,17,23,19,22,22,18,15,13,13
"Wind : New Hampshire","thousand megawatthours","ELEC.GEN.WND-NH-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,10,4,7,6,7,5,4,3,4,5,5,6,5,6,6,7,5,6,4,5,3,5,11,9,10,6,7,6,6,4,3,4,4,4,8,9,7,6,17,20,25,11,16,16,14,18,14,19,32,38,36,35,41,31,30,21,26,31,33,39,28,46,41,45,42,33,25,24,21,28,36,43,34,49,41,46,42,36,26,23,19
"Wind : Rhode Island","thousand megawatthours","ELEC.GEN.WND-RI-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM"
"Wind : Vermont","thousand megawatthours","ELEC.GEN.WND-VT-99.M",1,1,1,1,1,1,1,0,1,1,1,1,2,0,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,2,1,1,1,1,0,1,0,1,1,1,2,1,2,1,1,1,1,1,1,1,2,1,2,1,1,1,1,0,1,1,1,0,5,11,11,12,9,8,11,7,7,4,4,7,12,14,13,23,22,18,20,21,15,13,16,18,23,25,21,31,25,30,33,26,17,17,16,23,31,33,24,36,29,33,31,28,20,20,16
"Wind : Middle Atlantic","thousand megawatthours","ELEC.GEN.WND-MAT-99.M",3,2,3,3,3,3,3,3,3,3,2,3,14,10,12,11,10,9,9,8,8,9,12,29,11,10,10,10,8,6,7,5,7,12,23,45,54,39,44,43,30,23,20,17,23,33,41,55,36,36,44,34,25,20,17,16,23,35,52,49,97,99,95,88,71,53,66,56,70,106,83,149,135,141,161,134,72,82,68,74,83,112,121,141,188,146,159,144,177,199,117,93,104,164,188,321,221,278,231,361,298,139,200,172,227,313,383,539,455,398,415,388,324,289,235,231,368,443,438,478,353,539,528,543,301,265,215,246,238,386,526,492,647,503,530,485,275,356,229,226,306,478,450,647,779,627,709,768,575,410,267,309,363,540,852,704,861,703,803,844,520,355,416,350,421,716,872,705,873,656,851,741,527,452,323,319
"Wind : New Jersey","thousand megawatthours","ELEC.GEN.WND-NJ-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,2,2,2,1,1,1,1,2,2,2,2,2,3,2,1,1,1,1,1,2,2,2,2,1,2,1,2,2,1,1,1,2,2,3,1,2,2,2,2,1,1,1,1,2,2,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,"NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM"
"Wind : New York","thousand megawatthours","ELEC.GEN.WND-NY-99.M",2,1,2,2,2,2,2,2,2,2,2,2,5,5,5,5,5,6,6,6,5,5,5,24,3,3,4,3,3,3,3,3,3,4,4,5,13,11,13,11,10,7,6,5,6,9,12,15,9,9,11,8,6,5,5,5,8,8,15,13,59,61,54,55,42,33,46,38,47,68,53,100,84,93,107,87,45,50,44,51,55,65,73,78,109,85,88,83,110,157,88,62,68,94,99,208,163,208,176,298,222,96,153,128,134,184,202,302,230,206,238,236,196,173,157,157,235,255,257,255,178,326,312,325,187,173,146,156,151,242,330,304,394,308,321,274,168,206,123,149,184,271,242,352,422,290,312,404,280,207,145,180,205,299,445,350,456,368,399,443,289,191,236,185,240,362,471,331,484,340,435,391,316,219,185,195
"Wind : Pennsylvania","thousand megawatthours","ELEC.GEN.WND-PA-99.M",1,1,1,1,1,1,1,1,1,1,1,1,9,5,7,6,5,3,3,2,3,4,7,5,7,7,6,7,6,3,4,2,4,8,18,40,41,29,31,32,21,16,14,12,17,24,30,40,26,27,33,26,19,15,12,11,15,26,37,36,37,38,39,31,27,19,19,18,22,37,27,46,49,45,51,45,26,30,23,22,26,46,46,61,77,60,69,59,65,40,27,30,35,69,87,109,57,69,53,60,74,43,46,43,92,127,178,234,224,190,176,151,128,116,77,73,132,186,179,222,174,212,215,217,114,92,69,90,87,144,195,187,252,194,207,209,107,150,106,76,120,206,207,294,356,336,396,363,294,202,121,128,158,240,405,353,404,333,403,400,231,163,179,163,181,354,400,373,388,315,415,348,210,231,137,123
"Wind : East North Central","thousand megawatthours","ELEC.GEN.WND-ENC-99.M",4,4,3,5,4,4,4,4,6,12,11,10,5,6,5,5,4,2,2,2,3,3,4,5,7,10,12,12,10,7,8,6,10,10,13,14,11,13,21,20,18,10,7,9,13,20,17,26,15,15,20,21,18,13,9,6,14,16,27,75,32,29,35,43,31,20,19,15,22,40,38,50,40,33,41,64,77,47,31,31,77,119,109,121,256,200,215,244,264,224,151,120,161,364,446,575,430,560,549,620,442,290,206,300,190,513,667,822,782,516,748,994,729,448,399,372,743,995,1174,951,839,1172,1071,1327,972,735,400,382,694,931,1597,1220,1710,1223,1632,1511,1102,1003,580,535,825,1491,1170,1830,2280,1671,1836,2065,1524,1054,794,652,996,1486,2366,1886,2522,1709,2053,2185,1684,1199,1023,702,976,1770,2561,1824,2198,1998,2167,2218,1910,1206,928,997
"Wind : Illinois","thousand megawatthours","ELEC.GEN.WND-IL-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",2,1,1,1,1,1,2,2,1,1,1,2,0,3,8,10,9,5,3,4,5,9,9,13,6,7,10,10,9,5,3,2,5,7,12,65,19,18,23,29,21,14,13,10,15,28,28,36,28,21,28,51,64,40,26,26,66,106,95,112,240,189,201,226,208,160,82,69,93,229,298,342,252,302,264,306,204,148,97,147,101,259,329,411,357,242,402,503,392,218,205,196,373,524,609,432,407,598,567,723,538,423,239,224,402,512,908,672,880,613,869,782,641,565,320,277,443,771,608,958,1185,880,999,1077,766,594,413,323,511,739,1209,929,1311,848,1068,1096,873,621,498,352,458,841,1283,828,1003,927,1000,1072,889,518,400,446
"Wind : Indiana","thousand megawatthours","ELEC.GEN.WND-IN-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",26,27,18,14,17,37,43,57,49,109,133,161,94,69,43,64,45,145,220,272,271,187,225,316,221,157,119,91,246,342,396,364,315,390,377,429,270,203,82,83,164,246,432,295,416,307,374,386,212,184,113,94,162,328,242,394,450,276,334,396,303,184,138,92,155,297,449,405,415,252,323,388,304,190,167,101,158,325,507,366,411,413,424,425,365,272,176,165
"Wind : Michigan","thousand megawatthours","ELEC.GEN.WND-MI-99.M","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,6,10,12,13,8,8,5,6,12,16,36,30,31,28,36,29,12,13,19,9,27,22,43,38,24,33,37,27,16,15,19,32,33,39,46,34,52,31,49,35,24,12,18,27,40,73,62,107,88,99,88,66,68,38,52,64,121,110,229,309,259,256,294,218,142,128,137,176,230,374,279,421,355,381,387,292,222,211,157,231,355,457,407,502,407,472,435,410,262,228,247
"Wind : Ohio","thousand megawatthours","ELEC.GEN.WND-OH-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,2,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,3,1,1,1,2,1,1,1,1,0,1,2,2,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,2,1,1,12,13,26,28,50,62,113,94,117,111,50,68,42,36,52,119,72,112,140,107,114,111,102,59,49,36,55,93,143,137,166,96,118,135,96,64,57,37,38,99,144,102,126,109,107,120,95,80,48,46
"Wind : Wisconsin","thousand megawatthours","ELEC.GEN.WND-WI-99.M",4,4,3,5,4,4,4,4,6,12,11,10,5,6,5,5,4,2,2,2,3,3,4,5,5,9,10,10,8,5,6,4,8,8,12,12,10,9,13,10,9,5,4,5,8,11,8,13,8,7,9,9,8,7,5,3,8,7,13,8,11,9,10,12,8,5,5,4,7,10,8,12,11,10,12,11,11,6,4,4,9,11,12,8,5,3,3,5,16,28,43,30,45,85,86,137,98,117,123,116,114,60,52,69,35,80,94,94,114,61,86,136,89,57,59,65,90,94,128,108,83,131,96,124,128,83,56,44,76,105,134,128,194,122,173,144,133,117,66,76,104,152,138,137,196,148,132,187,136,74,67,64,99,127,192,136,210,159,163,180,118,101,90,56,91,150,171,121,156,142,162,165,150,73,76,94
"Wind : West North Central","thousand megawatthours","ELEC.GEN.WND-WNC-99.M",130,106,105,146,122,100,79,74,82,144,149,192,229,255,186,240,217,196,111,140,163,165,190,215,200,210,252,229,190,131,149,112,185,233,276,301,220,253,280,237,272,161,123,153,222,224,221,267,238,269,357,383,407,312,258,186,354,366,524,477,600,512,611,618,579,368,353,297,408,577,533,688,803,579,760,708,741,475,382,371,636,697,761,622,950,763,870,1183,1096,784,678,693,942,1238,1328,1929,1727,1760,2009,2050,1817,1162,1049,1312,1107,1794,1943,1908,1902,1445,2186,2357,2202,1603,1404,1740,2048,2270,2674,2349,2323,2988,2610,3014,3220,2460,1550,1445,1778,3120,3529,3249,3856,2891,3528,3481,3459,2943,1974,2072,2445,3702,3728,3482,4430,3637,3881,4215,4129,3270,2636,2224,3491,4046,4735,3741,5365,4060,4921,5048,3824,3424,3075,2144,3387,4380,5619,4085,5024,4304,4726,4829,4542,2983,2767,3123
"Wind : Iowa","thousand megawatthours","ELEC.GEN.WND-IA-99.M",44,33,38,54,48,35,23,25,26,52,51,59,84,103,80,97,87,75,45,47,53,73,81,95,87,91,105,99,78,50,50,33,67,99,100,123,103,119,120,101,109,57,38,52,86,82,76,107,81,111,156,156,174,122,90,66,148,154,226,163,244,204,251,251,239,132,113,93,141,209,181,258,312,221,280,283,288,171,125,120,223,244,297,195,327,245,288,420,340,253,174,160,253,391,464,766,640,720,797,796,697,440,362,491,328,663,760,726,738,649,851,908,771,555,452,596,745,873,1115,917,807,989,872,1065,1129,850,484,414,572,1102,1257,1167,1490,1141,1368,1296,1316,1063,643,711,887,1366,1415,1336,1671,1388,1422,1470,1446,1094,866,673,1165,1336,1755,1283,1854,1326,1733,1759,1261,1028,916,543,976,1478,1985,1435,1811,1578,1653,1608,1608,913,799,1004
"Wind : Kansas","thousand megawatthours","ELEC.GEN.WND-KS-99.M","--","--","--","--","--","--","--","--","--","--","--",40,46,47,47,47,46,43,30,33,34,30,32,31,29,23,40,40,31,23,31,27,30,26,29,37,23,31,37,34,43,26,23,23,34,28,26,30,18,19,33,36,30,35,32,17,36,28,36,105,88,67,94,97,66,69,63,54,79,105,102,108,97,93,113,105,98,63,63,91,101,135,103,90,137,121,150,183,167,124,133,93,124,166,164,198,220,218,275,270,237,193,169,224,159,305,278,314,235,190,367,362,284,283,246,258,288,294,345,254,279,320,328,357,356,358,234,205,218,355,386,324,416,327,388,358,425,466,355,327,321,461,665,686,727,687,789,886,869,817,634,597,864,993,845,724,1039,765,1118,1140,796,920,769,733,845,815,1075,830,921,825,827,997,917,812,738,697
"Wind : Minnesota","thousand megawatthours","ELEC.GEN.WND-MN-99.M",86,73,67,91,73,64,56,49,55,91,97,92,98,103,58,95,83,77,34,58,74,61,76,88,79,92,103,86,78,54,64,47,84,82,110,100,61,64,81,68,82,53,38,50,67,74,84,92,110,112,133,146,164,123,108,78,138,126,199,145,199,175,194,199,202,116,124,98,133,193,183,239,284,199,276,247,268,167,128,100,230,236,267,236,385,313,326,427,397,251,223,246,349,397,453,587,504,509,556,560,493,299,269,317,258,418,411,459,440,274,449,482,440,294,268,329,344,432,505,534,465,691,543,642,712,479,290,272,359,732,807,733,817,592,693,764,744,581,372,402,496,793,740,620,903,691,737,800,784,555,508,372,606,694,930,678,1023,845,903,942,718,586,574,290,588,797,1006,787,890,816,890,891,840,480,430,590
"Wind : Missouri","thousand megawatthours","ELEC.GEN.WND-MO-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",11,7,13,19,17,16,17,12,19,30,12,30,26,26,34,59,41,23,23,37,29,70,74,57,45,40,76,75,92,67,57,67,87,104,136,79,93,106,108,143,112,99,58,48,69,106,139,98,135,112,135,111,116,103,66,62,64,115,116,110,120,120,118,111,102,92,58,51,79,101,122,91,141,83,127,126,88,79,62,49,60,101,137,78,111,87,92,97,79,61,41,47
"Wind : Nebraska","thousand megawatthours","ELEC.GEN.WND-NE-99.M",0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1,1,1,1,1,1,1,1,1,4,3,3,3,3,3,4,4,3,3,3,4,3,3,3,3,3,3,3,3,3,3,3,3,1,2,3,3,3,3,2,2,3,23,27,26,28,21,23,25,22,16,19,18,18,22,23,25,31,15,22,18,17,17,15,12,14,18,20,18,22,18,18,23,18,12,14,14,13,14,20,28,24,17,39,43,39,19,21,31,36,39,41,33,36,28,41,42,39,24,28,30,30,36,38,49,60,96,90,101,102,85,63,52,59,96,124,122,132,105,115,104,104,102,82,84,80,113,120,142,152,143,159,157,156,117,101,107,150,169,210,179,226,170,212,224,225,200,184,126,224,279,373,292,328,284,284,283,262,187,170,215
"Wind : North Dakota","thousand megawatthours","ELEC.GEN.WND-ND-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",1,0,0,1,1,0,0,1,1,13,19,21,17,20,22,18,20,13,12,14,17,22,20,20,15,15,19,24,21,16,15,13,16,22,22,23,28,32,32,32,36,27,24,23,26,34,31,45,63,39,56,44,57,45,40,39,54,50,61,73,58,49,64,97,144,119,109,159,173,227,201,293,296,245,283,268,265,161,179,178,259,255,338,269,323,203,303,359,427,280,257,341,421,400,400,382,436,523,435,444,525,381,272,297,360,475,541,547,579,390,541,561,481,399,271,310,399,558,410,376,597,394,425,518,536,393,312,273,426,497,589,559,755,619,557,577,500,422,375,283,466,641,729,424,666,477,701,661,574,341,405,387
"Wind : South Dakota","thousand megawatthours","ELEC.GEN.WND-SD-99.M",0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,0,10,14,16,13,15,16,13,15,9,9,11,14,15,13,15,12,10,13,17,16,13,12,10,14,13,14,15,12,12,16,13,14,9,10,11,11,13,12,14,16,11,14,12,15,12,10,9,15,14,13,10,11,9,10,14,12,9,8,8,10,14,15,26,17,25,25,53,45,25,27,33,37,43,41,49,84,60,99,130,150,102,97,119,132,130,134,134,183,264,234,263,283,208,149,157,142,253,275,257,286,224,288,287,272,228,186,175,199,295,262,212,260,213,230,272,236,201,157,150,202,256,284,227,326,252,272,279,235,188,194,121,228,269,313,239,297,238,279,292,262,187,185,183
"Wind : South Atlantic","thousand megawatthours","ELEC.GEN.WND-SAT-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",9,16,15,17,17,14,10,11,4,12,16,19,20,24,17,18,16,12,8,8,4,9,10,15,19,14,15,17,16,11,9,5,7,8,12,18,22,24,23,16,13,13,6,8,7,10,19,11,23,22,20,17,19,9,7,7,5,6,13,19,22,22,19,25,20,20,26,19,22,24,56,68,72,86,86,69,71,31,49,49,32,46,71,68,86,92,79,85,86,66,69,49,33,67,114,90,114,121,137,135,139,60,74,52,87,79,162,163,169,253,185,169,159,74,113,103,52,80,123,131,171,211,193,210,175,167,94,68,69,63,77,197,188,202,171,205,175,120,75,93,78,85,186,194,196,204,177,237,177,96,136,84,57
"Wind : Delaware","thousand megawatthours","ELEC.GEN.WND-DE-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,1,0,"NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM"
"Wind : District Of Columbia","thousand megawatthours","ELEC.GEN.WND-DC-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Wind : Florida","thousand megawatthours","ELEC.GEN.WND-FL-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Wind : Georgia","thousand megawatthours","ELEC.GEN.WND-GA-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Wind : Maryland","thousand megawatthours","ELEC.GEN.WND-MD-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",1,19,23,23,25,10,12,7,19,19,39,39,37,52,37,32,29,14,22,17,11,15,24,31,37,36,39,36,34,33,16,13,12,12,19,39,35,35,25,37,31,19,13,17,14,17,32,37,47,45,40,55,39,21,33,19,12
"Wind : North Carolina","thousand megawatthours","ELEC.GEN.WND-NC-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Wind : South Carolina","thousand megawatthours","ELEC.GEN.WND-SC-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Wind : Virginia","thousand megawatthours","ELEC.GEN.WND-VA-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Wind : West Virginia","thousand megawatthours","ELEC.GEN.WND-WV-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",9,16,15,17,17,14,10,11,4,12,16,19,20,24,17,18,16,12,8,8,4,9,10,15,19,14,15,17,16,11,9,5,7,8,12,18,22,24,23,16,13,13,6,8,7,10,19,11,23,22,20,17,19,9,7,7,5,6,13,19,22,22,19,25,20,20,26,19,22,24,56,68,72,86,86,69,71,31,49,49,32,46,71,68,86,92,79,85,86,66,69,49,33,66,114,89,112,102,113,112,114,49,62,45,68,60,122,124,132,201,147,136,130,59,90,85,41,65,98,100,133,175,154,174,140,134,78,55,58,51,58,157,152,166,146,167,143,100,62,76,64,67,154,157,149,158,137,181,137,75,103,65,44
"Wind : East South Central","thousand megawatthours","ELEC.GEN.WND-ESC-99.M","--","--","--","--","--","--","--","--","--","--","--","--",1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,7,5,6,5,4,2,3,2,4,5,6,6,8,5,5,5,2,2,3,1,2,5,6,7,5,5,6,4,6,3,1,1,3,3,4,8,5,5,7,6,5,2,3,2,2,5,3,6,4,3,4,5,5,2,1,1,2,4,5,4,4,6,6,8,4,3,1,2,3,4,8,6,7,6,5,5,2,2,2,1,3,4,3,7,5,4,4,5,4,3,2,2,2,3,6,6,7,5,5,6,4,2,2,2,2,5,6,4,5,4,5,6,3,2,2,1
"Wind : Alabama","thousand megawatthours","ELEC.GEN.WND-AL-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Wind : Kentucky","thousand megawatthours","ELEC.GEN.WND-KY-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Wind : Mississippi","thousand megawatthours","ELEC.GEN.WND-MS-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Wind : Tennessee","thousand megawatthours","ELEC.GEN.WND-TN-99.M","--","--","--","--","--","--","--","--","--","--","--","--",1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,1,0,7,5,6,5,4,2,3,2,4,5,6,6,8,5,5,5,2,2,3,1,2,5,6,7,5,5,6,4,6,3,1,1,3,3,4,8,5,5,7,6,5,2,3,2,2,5,3,6,4,3,4,5,5,2,1,1,2,4,5,4,4,6,6,8,4,3,1,2,3,4,8,6,7,6,5,5,2,2,2,1,3,4,3,7,5,4,4,5,4,3,2,2,2,3,6,6,7,5,5,6,4,2,2,2,2,5,6,4,5,4,5,6,3,2,2,1
"Wind : West South Central","thousand megawatthours","ELEC.GEN.WND-WSC-99.M",84,142,88,115,103,92,76,56,76,123,89,143,287,195,238,237,264,258,218,248,164,173,170,204,171,190,215,260,209,213,240,193,196,168,228,341,298,297,346,354,470,327,260,198,257,254,279,371,347,245,404,530,463,543,378,314,391,422,405,645,706,555,716,780,772,611,597,453,610,822,931,829,644,877,956,983,743,684,520,1030,891,1267,1103,1159,1377,1355,1802,1833,1911,1945,1393,748,781,1659,1642,2138,1865,1929,2178,2300,1704,1817,1557,1660,1371,2186,2071,2088,2215,1859,3064,3138,2639,2928,2125,1919,1900,2129,3173,2970,2411,2977,3218,3600,3666,3918,2418,2291,2036,3170,3458,2990,3758,3136,4098,3602,3570,3293,2683,2325,2691,3541,3474,4201,3542,3811,4829,4887,5033,4386,3170,2811,2774,4207,4074,3512,5023,3353,4884,5260,4326,5155,3465,3341,3162,3887,5180,4197,4052,4331,3485,5261,5388,4454,5128,4152
"Wind : Arkansas","thousand megawatthours","ELEC.GEN.WND-AR-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Wind : Louisiana","thousand megawatthours","ELEC.GEN.WND-LA-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Wind : Oklahoma","thousand megawatthours","ELEC.GEN.WND-OK-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",54,45,46,54,49,77,38,39,38,48,41,41,58,35,36,54,98,78,92,69,52,76,74,80,103,171,130,164,175,141,123,125,95,109,153,165,161,146,165,199,184,147,108,84,162,150,209,159,136,227,175,220,237,228,197,171,101,143,204,209,247,209,209,272,272,184,204,163,202,152,253,269,308,232,187,398,407,302,365,262,261,311,299,408,375,348,449,529,534,567,561,333,336,343,498,626,482,701,536,757,632,729,679,568,453,518,799,832,955,886,828,1019,1127,1069,1007,772,681,769,1125,1044,835,1175,735,1182,1251,955,1098,781,781,838,901,1187,978,1052,1080,936,1226,1137,1110,1139,961
"Wind : Texas","thousand megawatthours","ELEC.GEN.WND-TX-99.M",84,142,88,115,103,92,76,56,76,123,89,143,287,195,238,237,264,258,218,248,164,173,170,204,171,190,215,260,209,213,240,193,196,168,228,286,253,251,293,305,393,289,221,160,209,212,238,313,312,209,350,432,385,451,309,261,315,348,325,541,535,425,552,605,632,488,472,358,501,669,766,668,498,712,757,798,596,577,436,867,741,1057,944,1024,1150,1180,1581,1596,1683,1748,1222,647,638,1455,1433,1891,1656,1719,1905,2028,1520,1613,1394,1458,1218,1933,1802,1780,1983,1672,2666,2731,2337,2562,1863,1658,1589,1830,2765,2595,2064,2528,2689,3066,3099,3357,2085,1955,1694,2671,2832,2507,3057,2599,3341,2969,2841,2615,2115,1872,2174,2742,2643,3246,2656,2984,3810,3761,3963,3379,2398,2130,2005,3082,3030,2677,3848,2618,3702,4009,3370,4057,2684,2560,2324,2986,3993,3220,3000,3251,2549,4035,4251,3344,3990,3192
"Wind : Mountain","thousand megawatthours","ELEC.GEN.WND-MTN-99.M",30,25,24,16,19,25,25,26,25,63,67,70,58,53,46,53,45,40,38,44,44,48,57,61,62,44,65,37,36,28,20,22,75,85,108,115,140,106,129,118,130,85,66,71,95,102,121,188,236,179,254,185,168,182,164,123,171,158,226,243,372,332,335,349,264,257,205,185,221,320,340,306,334,320,345,319,256,232,177,250,347,482,485,560,658,621,626,593,547,492,346,370,356,550,690,805,905,690,782,704,568,438,399,463,575,893,860,982,831,641,885,1062,975,753,630,664,728,908,1160,1247,1374,1326,1428,1482,1427,1228,893,879,817,1326,1639,1496,1903,1395,1772,1429,1295,1353,911,1011,881,1457,1577,2097,1841,1858,1813,1753,1576,1473,1155,998,1385,1628,1789,2016,2240,1793,2062,2048,1535,1566,1119,985,1207,1659,2193,1808,1828,1654,1760,1693,1476,1069,1185,1276
"Wind : Arizona","thousand megawatthours","ELEC.GEN.WND-AZ-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",12,8,10,6,7,15,14,18,12,7,6,6,9,13,23,9,27,31,38,34,33,13,11,9,14,26,10,47,47,61,51,59,52,34,30,30,41,32,48,31,35,45,55,60,49,24,18,30,41,27,35,29,36,44,58,62,62,27,26,24,22,53,30,16,35,31,53,45,34,32,30
"Wind : Colorado","thousand megawatthours","ELEC.GEN.WND-CO-99.M",4,2,2,3,3,2,1,3,2,5,5,16,16,15,11,13,11,10,8,10,10,10,12,15,17,11,17,13,11,9,8,9,10,12,14,16,14,14,17,12,13,9,7,8,11,27,29,60,106,85,98,48,44,58,63,40,64,55,58,57,74,78,88,90,62,73,58,51,56,99,71,68,80,62,84,82,50,55,55,56,126,201,221,220,326,303,307,302,296,246,165,193,166,257,332,329,426,278,267,321,231,150,147,204,248,311,277,304,249,234,301,368,335,262,204,209,257,275,341,416,415,387,392,465,513,426,310,348,332,507,551,556,629,544,560,551,426,489,347,432,345,478,495,672,669,714,688,555,570,588,505,381,543,662,624,706,805,552,688,757,603,576,422,365,480,635,813,654,765,630,685,671,635,430,451,560
"Wind : Idaho","thousand megawatthours","ELEC.GEN.WND-ID-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",14,10,18,16,16,14,10,12,9,15,21,14,10,16,17,13,16,15,9,17,14,13,17,14,20,19,19,18,17,16,11,12,12,18,22,25,30,23,32,29,23,18,16,18,21,33,34,38,26,20,28,33,34,26,22,23,26,57,69,78,52,101,158,134,113,123,106,81,65,122,143,108,169,110,200,132,134,127,104,116,93,160,180,366,154,216,239,294,207,183,174,185,227,172,243,165,243,289,291,291,213,222,179,130,181,235,282,222,174,215,243,235,180,150,152,165
"Wind : Montana","thousand megawatthours","ELEC.GEN.WND-MT-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",47,48,32,38,34,29,25,24,34,21,46,56,72,44,53,36,35,24,19,28,35,47,37,66,69,67,56,46,45,37,29,36,27,52,62,68,107,58,81,77,64,40,36,20,49,75,130,82,81,55,92,104,85,69,62,60,60,81,101,80,150,108,84,112,102,84,76,59,73,113,138,164,163,87,130,94,98,110,57,58,54,121,127,164,206,189,140,164,132,110,88,57,85,127,197,259,256,172,175,189,102,127,101,100,109,198,235,203,251,167,233,150,106,84,130,117
"Wind : Nevada","thousand megawatthours","ELEC.GEN.WND-NV-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",14,16,12,20,26,41,13,19,23,25,29,24,20,22,20,17,24,14,15,25,32,26,31,24,25,19,21,22,25,36,25,27,21,34,25,18,27,23
"Wind : New Mexico","thousand megawatthours","ELEC.GEN.WND-NM-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",43,38,51,51,49,46,49,56,54,39,28,31,40,23,46,52,62,45,81,80,70,72,66,47,60,53,70,88,133,108,145,140,93,102,80,61,84,107,114,89,95,104,121,136,113,95,70,109,120,151,120,161,176,151,162,163,151,143,97,76,95,128,135,164,143,149,163,145,109,90,94,123,95,163,133,140,156,94,168,199,194,139,102,120,136,144,182,199,183,186,210,248,235,203,118,92,113,159,206,152,230,213,220,193,194,188,124,119,131,198,182,234,190,214,232,224,210,185,124,111,139,197,166,200,248,195,251,256,189,210,125,104,133,149,222,182,124,144,142,220,183,128,118,125
"Wind : Utah","thousand megawatthours","ELEC.GEN.WND-UT-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,3,3,3,4,5,6,5,4,5,4,3,3,2,3,33,47,15,35,30,15,45,43,50,37,36,59,39,26,26,42,16,54,60,43,56,70,56,64,21,36,65,30,33,38,98,61,79,93,56,39,33,40,55,79,22,31,40,32,61,71,54,53,56,45,47,28,29,69,74,55,70,73,58,50,38,39,56,52,31,41,46,60,57,59,68,52
"Wind : Wyoming","thousand megawatthours","ELEC.GEN.WND-WY-99.M",26,23,22,13,16,23,23,23,23,58,62,54,42,38,35,40,34,30,30,34,34,39,45,46,45,33,48,23,24,19,12,14,22,35,44,48,77,46,63,50,63,37,31,33,44,51,46,76,68,48,74,57,53,52,35,37,46,50,98,98,104,88,51,65,59,39,32,37,38,78,88,80,77,94,71,52,44,43,23,40,52,70,90,99,67,81,82,63,37,51,41,51,53,91,133,213,194,177,235,128,139,138,103,96,129,252,263,373,283,217,235,301,260,208,196,187,204,316,429,410,550,461,494,442,374,290,214,223,203,375,511,476,632,357,503,347,304,294,174,201,184,399,481,493,556,442,407,404,308,262,165,170,285,366,461,608,614,454,508,416,264,273,182,192,221,359,507,430,440,396,359,270,246,165,206,204
"Wind : Pacific Contiguous","thousand megawatthours","ELEC.GEN.WND-PCC-99.M",137,151,308,399,383,445,448,413,298,261,150,197,217,195,362,478,536,621,512,534,354,333,222,231,165,264,464,527,538,651,519,472,409,372,293,267,250,294,452,505,769,782,679,596,469,385,235,245,245,206,462,526,654,715,589,485,507,435,354,316,544,365,544,573,721,725,689,626,522,545,590,409,456,536,753,906,1024,1060,932,904,785,635,467,811,768,719,1050,1174,1290,1437,1271,1180,711,689,597,733,677,479,1217,1289,1366,1654,1439,1467,1075,986,802,430,516,427,1119,1663,1688,1898,1812,1662,1186,971,947,854,1042,1218,1421,2222,2047,2228,1874,2052,1153,1290,1355,888,1349,1558,2135,1875,2652,2795,2210,2144,1432,1688,978,1881,1423,2036,2267,3400,3049,2850,2833,2367,2395,1444,1520,1699,1519,1960,2539,2874,3310,3710,2717,2441,2052,1714,2134,1650,794,1586,1841,2619,2862,2900,3035,2958
"Wind : California","thousand megawatthours","ELEC.GEN.WND-CA-99.M",133,148,300,393,378,438,440,408,293,253,143,172,131,153,267,409,478,557,443,476,295,284,158,149,109,193,326,424,453,549,432,396,340,285,188,201,130,202,288,399,634,683,588,492,359,259,155,117,175,150,334,429,551,584,497,384,404,322,217,214,281,215,389,430,577,596,538,500,402,396,292,267,233,307,442,612,732,729,675,600,486,349,188,233,271,262,450,538,691,658,700,648,406,298,223,240,150,245,442,603,701,850,879,679,480,406,235,170,150,221,399,546,689,867,925,731,551,372,305,324,234,429,612,960,1026,1021,869,908,522,415,428,325,419,581,769,768,1316,1362,1001,1001,697,776,385,679,482,727,1056,1550,1740,1631,1413,1297,1158,750,556,460,607,881,1140,1389,1804,1914,1439,1312,995,829,810,656,249,662,853,1299,1686,1639,1447,1505
"Wind : Oregon","thousand megawatthours","ELEC.GEN.WND-OR-99.M",3,3,8,6,6,6,7,5,5,7,7,25,37,21,44,33,30,31,34,26,25,23,30,40,28,36,67,27,43,28,26,22,36,45,54,33,50,32,79,44,63,52,52,58,54,61,23,52,40,33,72,55,55,69,58,62,63,69,88,70,112,69,70,66,71,70,70,73,72,86,114,59,73,75,100,97,109,121,101,105,98,79,84,206,183,159,239,261,269,383,264,235,136,153,121,173,211,90,339,364,336,448,321,443,314,273,233,98,145,77,320,499,477,511,465,460,274,251,240,202,289,305,296,516,464,570,475,571,263,378,427,221,398,465,589,499,654,709,741,660,419,397,249,564,438,636,563,959,698,682,852,615,649,343,459,561,464,540,645,716,783,1013,726,639,540,406,646,462,239,433,415,639,651,671,816,737
"Wind : Washington","thousand megawatthours","ELEC.GEN.WND-WA-99.M","--","--","--","--","--","--","--","--","--","--","--","--",48,21,51,35,28,33,36,31,34,26,33,42,28,35,71,76,42,74,61,55,33,42,52,33,70,59,85,62,72,48,39,47,57,65,58,75,30,23,56,42,48,63,34,38,40,44,49,31,151,81,85,77,73,59,81,53,49,63,184,82,151,155,211,197,183,211,156,200,201,206,196,372,314,297,361,375,330,397,307,297,170,238,253,319,316,144,435,322,330,356,239,345,282,307,334,161,221,130,401,619,522,519,422,471,361,348,402,329,519,484,513,745,557,637,529,572,367,497,499,342,531,511,777,607,682,724,469,484,316,516,345,638,502,672,649,890,610,537,568,456,587,350,505,677,448,539,753,769,723,782,552,490,516,480,679,532,305,492,573,681,524,590,771,716
"Wind : Pacific Noncontiguous","thousand megawatthours","ELEC.GEN.WND-PCN-99.M",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,3,10,15,14,11,7,8,11,9,9,8,21,16,22,32,24,25,32,13,28,31,12,17,19,21,22,25,30,17,19,17,12,14,25,24,20,1,23,35,33,32,13,32,8,9,15,30,30,22,27,30,38,26,25,16,8,12,2,44,12,27,31,37,41,21,33,48,46,16,26,37,37,40,30,54,36,34,21,40,44,36,74,33,32,44,84,69,78,67,43,45,44,53,36,63,88,51,76,75,61,44,65,70,57,39,53,56,84,75,59,61,53
"Wind : Alaska","thousand megawatthours","ELEC.GEN.WND-AK-99.M",0,0,0,0,0,0,0,0,0,0,0,0,"--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,0,1,1,1,1,1,1,2,1,1,1,0,0,0,2,0,1,1,1,1,1,1,2,2,"NM",1,2,2,2,2,3,2,4,"NM","NM",7,8,17,7,7,10,19,15,17,15,10,10,10,16,13,15,16,13,11,10,"NM",9,13,17,12,"NM",13,14,14,12,10,"NM",10
"Wind : Hawaii","thousand megawatthours","ELEC.GEN.WND-HI-99.M",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,1,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,3,9,15,14,11,7,8,11,9,9,8,21,16,22,32,24,25,32,13,28,31,12,17,19,21,22,25,30,17,19,17,12,14,25,24,20,1,22,33,32,30,13,31,8,9,14,28,28,21,26,28,37,24,23,15,7,11,2,43,12,26,30,36,39,21,32,46,44,15,24,35,35,38,29,52,35,29,15,35,37,28,57,26,25,34,65,53,61,52,33,35,34,36,23,48,72,39,65,66,54,34,52,52,45,25,40,42,70,63,49,50,43
"Solar","thousand megawatthours","ELEC.GEN.SUN-US-99.M","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""
"Solar : United States","thousand megawatthours","ELEC.GEN.SUN-US-99.M",7,13,31,39,81,91,92,85,65,21,14,4,11,24,44,46,58,96,86,75,53,31,28,4,13,18,50,60,68,91,62,62,56,35,14,4,13,11,53,57,82,88,82,73,61,34,15,8,9,13,38,58,81,88,72,76,61,38,13,3,13,20,33,52,71,70,62,83,54,32,16,3,13,19,48,54,84,84,86,75,68,49,24,5,16,36,75,94,99,128,111,105,93,60,29,19,7,30,78,99,110,103,121,116,95,68,40,21,10,33,76,112,153,176,161,156,138,75,77,44,40,85,122,164,191,223,191,229,186,159,107,121,95,135,231,319,463,527,510,461,458,431,347,349,310,433,619,667,753,871,829,944,949,988,824,850,816,896,1412,1633,1876,2036,1844,1914,1871,1680,1357,985,1173,1634,2221,2567,2665,2765,2813,2880
"Solar : New England","thousand megawatthours","ELEC.GEN.SUN-NEW-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,0,1,1,2,3,4,4,4,4,4,3,3,3,5,8,8,10,11,11,13,14,15,13,15,18,19,30,38,49,57,52,51,56,46,36,23,32,49,74,84,86,87,88,89
"Solar : Connecticut","thousand megawatthours","ELEC.GEN.SUN-CT-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,"NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM"
"Solar : Maine","thousand megawatthours","ELEC.GEN.SUN-ME-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Solar : Massachusetts","thousand megawatthours","ELEC.GEN.SUN-MA-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,1,2,3,4,4,4,4,3,3,2,3,4,7,7,8,10,9,11,11,13,10,13,15,16,25,33,43,51,46,46,50,41,32,21,28,42,64,73,75,76,76,77
"Solar : New Hampshire","thousand megawatthours","ELEC.GEN.SUN-NH-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Solar : Rhode Island","thousand megawatthours","ELEC.GEN.SUN-RI-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,"NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM"
"Solar : Vermont","thousand megawatthours","ELEC.GEN.SUN-VT-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"NM","NM","NM","NM","NM",0,1,1,1,1,1,1,1,2,3,2,2,"NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM",4,6,7,7,7,7,8
"Solar : Middle Atlantic","thousand megawatthours","ELEC.GEN.SUN-MAT-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,1,1,0,0,1,2,2,3,4,4,4,3,2,2,1,1,3,6,8,10,12,10,11,8,8,10,11,22,27,33,41,35,42,41,40,35,27,28,18,29,30,46,64,58,60,57,50,56,52,39,27,36,45,71,83,90,103,90,86,82,62,55,32,49,75,91,106,107,108,105,110
"Solar : New Jersey","thousand megawatthours","ELEC.GEN.SUN-NJ-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,2,2,1,1,0,0,1,1,2,3,3,3,3,2,1,1,1,1,3,4,6,7,9,8,8,6,7,4,6,17,21,26,32,27,33,32,31,28,21,22,15,22,23,35,49,44,46,44,38,43,41,31,22,29,36,57,66,73,83,73,70,68,51,45,26,40,62,76,88,87,90,87,90
"Solar : New York","thousand megawatthours","ELEC.GEN.SUN-NY-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",3,3,3,4,5,6,5,6,5,5,5,3,3,2,4,4,6,8,7,7,7,6,7,6,4,3,3,5,7,8,8,9,8,8,7,5,5,3,5,6,8,10,10,9,10,11
"Solar : Pennsylvania","thousand megawatthours","ELEC.GEN.SUN-PA-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,1,1,2,2,3,3,3,2,2,2,2,2,2,3,3,3,3,3,3,3,2,2,1,3,4,5,7,7,7,7,6,6,5,4,3,"NM","NM",7,8,9,11,9,8,8,5,5,"NM","NM",7,8,9,9,9,8,9
"Solar : East North Central","thousand megawatthours","ELEC.GEN.SUN-ENC-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,3,4,4,4,4,3,2,2,1,1,2,2,3,4,4,3,4,3,2,1,1,1,2,4,5,8,8,8,7,7,7,5,5,4,5,8,8,9,11,10,12,12,12,19,20,11,13,22,26,28,33,29,29,28,22,18,13,17,25,32,37,37,38,37,40
"Solar : Illinois","thousand megawatthours","ELEC.GEN.SUN-IL-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,2,2,2,2,2,1,1,0,0,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,4,4,4,3,3,3,2,2,2,3,4,4,4,5,5,5,5,6,5,5,"NM","NM",5,6,7,8,6,6,6,4,"NM","NM","NM",5,6,6,6,7,6,7
"Solar : Indiana","thousand megawatthours","ELEC.GEN.SUN-IN-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,"NM",0,0,1,1,1,1,1,1,1,1,10,11,"NM",6,11,13,15,18,16,17,"NM",14,11,9,10,15,19,22,22,23,23,25
"Solar : Michigan","thousand megawatthours","ELEC.GEN.SUN-MI-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Solar : Ohio","thousand megawatthours","ELEC.GEN.SUN-OH-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,1,2,2,2,2,2,1,1,0,0,1,1,2,2,2,2,2,1,1,1,1,1,1,2,3,4,5,4,4,4,4,3,2,2,2,3,4,4,5,4,5,5,5,4,4,"NM","NM",5,6,7,8,6,6,6,4,"NM","NM","NM",6,7,8,8,8,7,8
"Solar : Wisconsin","thousand megawatthours","ELEC.GEN.SUN-WI-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","NM","NM","NM","NM","NM","NM"
"Solar : West North Central","thousand megawatthours","ELEC.GEN.SUN-WNC-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM"
"Solar : Iowa","thousand megawatthours","ELEC.GEN.SUN-IA-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Solar : Kansas","thousand megawatthours","ELEC.GEN.SUN-KS-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","NM","NM","NM","NM","NM","NM","NM"
"Solar : Minnesota","thousand megawatthours","ELEC.GEN.SUN-MN-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM"
"Solar : Missouri","thousand megawatthours","ELEC.GEN.SUN-MO-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM"
"Solar : Nebraska","thousand megawatthours","ELEC.GEN.SUN-NE-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Solar : North Dakota","thousand megawatthours","ELEC.GEN.SUN-ND-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Solar : South Dakota","thousand megawatthours","ELEC.GEN.SUN-SD-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Solar : South Atlantic","thousand megawatthours","ELEC.GEN.SUN-SAT-99.M",0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,1,1,1,1,1,0,4,3,3,4,3,5,9,10,10,9,9,9,9,7,7,11,13,23,15,16,8,11,10,16,9,13,9,17,12,28,33,30,28,38,29,28,37,38,62,26,39,52,45,67,70,67,63,67,73,52,58,66,76,116,131,151,162,148,148,149,135,104,86,108,142,193,224,249,252,262,279
"Solar : Delaware","thousand megawatthours","ELEC.GEN.SUN-DE-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,1,1,2,1,1,1,1,1,2,3,2,2,3,2,2,2,1,1,2,3,4,3,5,5,4,4,5,5,3,3,"NM","NM",5,6,6,7,6,6,"NM",5,"NM","NM","NM",4,5,6,6,7,7,7
"Solar : District Of Columbia","thousand megawatthours","ELEC.GEN.SUN-DC-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Solar : Florida","thousand megawatthours","ELEC.GEN.SUN-FL-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",4,3,2,4,3,5,8,9,9,8,8,8,8,6,6,9,12,20,13,14,7,8,8,12,7,10,7,12,9,21,23,21,18,22,17,15,15,11,10,11,15,20,17,25,25,23,21,17,19,8,9,11,15,21,21,27,24,23,24,21,26,14,14,12,11,21,24,30,29,30,29
"Solar : Georgia","thousand megawatthours","ELEC.GEN.SUN-GA-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,"NM","NM","NM","NM","NM","NM","NM",0,0,0,0,0,0,0,0,0,0,5,6,8,8,11,12,14,14,13,13,"NM",11,9,6,8,10,12,14,16,15,16,15
"Solar : Maryland","thousand megawatthours","ELEC.GEN.SUN-MD-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,4,3,3,3,3,3,2,4,5,4,6,6,5,5,9,8,6,5,"NM",6,10,11,13,13,12,12,11,9,7,4,"NM",8,10,13,15,14,15,17
"Solar : North Carolina","thousand megawatthours","ELEC.GEN.SUN-NC-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,1,1,1,2,1,1,1,2,2,4,6,6,6,9,7,9,17,23,48,10,17,24,21,32,34,34,32,36,40,30,35,39,43,68,81,90,103,93,92,99,84,71,58,80,109,143,167,181,186,195,210
"Solar : South Carolina","thousand megawatthours","ELEC.GEN.SUN-SC-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,"NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM"
"Solar : Virginia","thousand megawatthours","ELEC.GEN.SUN-VA-99.M",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Solar : West Virginia","thousand megawatthours","ELEC.GEN.SUN-WV-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Solar : East South Central","thousand megawatthours","ELEC.GEN.SUN-ESC-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM",1,1,1,2,2,2,2,2,2,2,2,2,"NM","NM",2,"NM","NM","NM","NM","NM","NM","NM","NM","NM","NM",7,9,11,11,11,11,11
"Solar : Alabama","thousand megawatthours","ELEC.GEN.SUN-AL-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Solar : Kentucky","thousand megawatthours","ELEC.GEN.SUN-KY-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Solar : Mississippi","thousand megawatthours","ELEC.GEN.SUN-MS-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Solar : Tennessee","thousand megawatthours","ELEC.GEN.SUN-TN-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM",1,1,1,2,2,2,2,2,2,2,2,2,"NM","NM",2,"NM","NM","NM","NM","NM","NM","NM","NM","NM","NM",7,9,11,11,11,11,11
"Solar : West South Central","thousand megawatthours","ELEC.GEN.SUN-WSC-99.M",0,0,0,0,0,0,0,-0,-0,0,0,0,"--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,5,3,1,2,2,3,3,4,3,4,3,2,1,1,4,4,6,9,13,14,12,13,11,10,9,15,8,10,15,12,15,16,17,18,15,14,9,14,15,14,24,28,28,29,30,39,27,32,23,15,20,24,31,34,34,44,47,49
"Solar : Arkansas","thousand megawatthours","ELEC.GEN.SUN-AR-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Solar : Louisiana","thousand megawatthours","ELEC.GEN.SUN-LA-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Solar : Oklahoma","thousand megawatthours","ELEC.GEN.SUN-OK-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0
"Solar : Texas","thousand megawatthours","ELEC.GEN.SUN-TX-99.M",0,0,0,0,0,0,0,-0,-0,0,0,0,"--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,5,3,1,2,2,3,3,4,3,4,3,2,1,1,4,4,6,9,13,14,12,13,11,10,9,15,8,10,15,12,15,16,17,18,15,14,9,14,15,14,24,28,28,29,30,39,27,32,23,15,20,24,31,34,34,44,47,49
"Solar : Mountain","thousand megawatthours","ELEC.GEN.SUN-MTN-99.M",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,0,0,0,0,1,1,1,3,10,11,11,8,4,4,4,8,18,22,23,27,21,20,19,14,7,5,5,8,21,24,28,21,24,28,23,16,11,6,3,8,17,22,30,36,28,35,35,24,27,18,25,31,39,52,56,63,49,61,54,55,52,70,46,53,70,99,195,209,213,213,222,230,190,190,174,210,258,285,321,341,316,311,319,407,278,275,279,288,411,440,512,544,493,482,469,441,341,242,281,387,519,607,629,648,628,643
"Solar : Arizona","thousand megawatthours","ELEC.GEN.SUN-AZ-99.M",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,0,0,0,0,1,1,1,1,1,1,1,1,0,0,1,1,2,2,2,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,2,1,2,1,1,1,2,1,1,2,2,3,3,3,3,3,3,6,7,17,31,11,14,18,28,94,107,110,119,119,125,104,106,92,115,140,159,180,199,194,190,202,274,185,182,186,189,269,289,334,338,311,291,287,264,201,143,155,212,295,354,366,370,359,376
"Solar : Colorado","thousand megawatthours","ELEC.GEN.SUN-CO-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,2,0,1,2,2,2,3,2,2,2,1,1,1,1,1,3,3,3,2,3,3,3,2,1,1,0,1,2,3,4,5,4,4,7,5,5,4,5,6,8,10,11,13,10,11,9,8,6,8,2,3,4,11,19,20,19,18,19,20,16,13,15,17,21,20,25,25,24,24,22,23,16,16,16,18,24,25,27,30,26,28,24,22,17,12,13,19,26,28,28,30,28,30
"Solar : Idaho","thousand megawatthours","ELEC.GEN.SUN-ID-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Solar : Montana","thousand megawatthours","ELEC.GEN.SUN-MT-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Solar : Nevada","thousand megawatthours","ELEC.GEN.SUN-NV-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,2,9,10,10,8,4,1,2,6,15,19,19,24,18,16,16,12,5,4,3,6,17,20,23,17,20,23,19,13,8,4,3,6,14,18,25,30,23,29,27,17,16,10,13,18,22,31,34,39,28,33,24,23,14,12,12,15,22,34,50,51,51,50,56,54,44,34,42,51,63,73,79,80,62,62,62,72,49,48,52,54,78,83,97,110,97,103,104,104,86,59,82,114,140,159,164,178,169,165
"Solar : New Mexico","thousand megawatthours","ELEC.GEN.SUN-NM-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",1,4,4,5,5,6,7,8,8,8,13,15,17,15,19,21,21,27,25,32,31,32,27,27,30,25,36,25,27,34,33,37,36,35,35,33,38,28,28,26,27,39,43,53,67,59,59,53,52,37,28,31,43,58,66,70,70,70,68
"Solar : Utah","thousand megawatthours","ELEC.GEN.SUN-UT-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM"
"Solar : Wyoming","thousand megawatthours","ELEC.GEN.SUN-WY-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Solar : Pacific Contiguous","thousand megawatthours","ELEC.GEN.SUN-PCC-99.M",7,13,31,39,81,91,92,85,65,21,14,4,11,24,44,46,58,95,86,75,53,31,28,4,13,18,50,60,68,91,62,62,56,35,14,4,12,10,53,56,81,88,82,73,60,33,15,8,8,12,37,57,80,87,71,75,60,37,12,2,12,19,32,51,69,68,60,81,53,32,15,3,13,19,48,53,83,81,76,64,57,41,20,2,12,28,56,71,76,100,90,85,73,46,21,11,2,22,55,73,80,81,95,86,69,47,25,12,2,20,51,75,106,121,117,105,86,39,34,14,1,34,50,83,101,130,112,139,102,81,29,28,4,36,88,129,177,220,192,153,148,116,72,54,65,131,230,241,269,358,347,474,462,410,411,437,390,437,732,880,1009,1096,994,1067,1048,932,770,566,656,917,1263,1454,1503,1567,1624,1645
"Solar : California","thousand megawatthours","ELEC.GEN.SUN-CA-99.M",7,13,31,39,81,91,92,85,65,21,14,4,11,24,44,46,58,95,86,75,53,31,28,4,13,18,50,60,68,91,62,62,56,35,14,4,12,10,53,56,81,88,82,73,60,33,15,8,8,12,37,57,80,87,71,75,60,37,12,2,12,19,32,51,69,68,60,81,53,32,15,3,13,19,48,53,83,81,76,64,57,41,20,2,12,28,56,71,76,100,90,85,73,46,21,11,2,22,55,73,80,81,95,86,69,47,25,12,2,20,51,75,106,121,117,105,86,39,34,14,1,34,49,82,100,130,112,139,102,81,29,28,4,36,88,128,176,219,191,152,148,115,72,53,65,130,228,239,267,356,345,471,460,408,409,435,388,436,729,877,1006,1092,990,1064,1045,929,769,565,655,915,1260,1451,1500,1563,1620,1641
"Solar : Oregon","thousand megawatthours","ELEC.GEN.SUN-OR-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,1,1,1,2,2,2,2,2,2,2,2,"NM","NM",3,3,3,3,3,"NM","NM","NM","NM","NM","NM","NM",3,3,"NM","NM","NM","NM"
"Solar : Washington","thousand megawatthours","ELEC.GEN.SUN-WA-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
"Solar : Pacific Noncontiguous","thousand megawatthours","ELEC.GEN.SUN-PCN-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,"NM","NM",3,4,"NM",5,"NM",7,"NM",5,"NM","NM","NM",5,6,7,7,7,7,10
"Solar : Alaska","thousand megawatthours","ELEC.GEN.SUN-AK-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Solar : Hawaii","thousand megawatthours","ELEC.GEN.SUN-HI-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,1,1,1,1,2,2,2,2,2,2,2,2,"NM","NM",3,4,"NM",5,"NM",7,"NM",5,"NM","NM","NM",5,6,7,7,7,7,10
"Geothermal","thousand megawatthours","ELEC.GEN.GEO-US-99.M","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""
"Geothermal : United States","thousand megawatthours","ELEC.GEN.GEO-US-99.M",1229,1073,1190,1095,1071,1088,1179,1167,1139,1162,1157,1190,1287,1132,1245,1115,1216,1151,1262,1227,1195,1235,1189,1236,1258,1130,1213,1166,1169,1223,1228,1219,1203,1195,1151,1268,1295,1214,1241,1161,1208,1225,1278,1257,1188,1276,1212,1256,1252,1063,1204,1187,1264,1248,1273,1254,1223,1247,1220,1257,1230,1111,1261,1129,1096,1199,1261,1289,1219,1275,1207,1290,1296,1122,1204,1158,1155,1238,1250,1255,1218,1265,1211,1266,1209,1087,1251,1218,1259,1260,1279,1273,1234,1277,1233,1261,1289,1168,1300,1222,1235,1209,1255,1251,1217,1221,1273,1368,1312,1159,1307,1240,1311,1264,1274,1297,1253,1222,1252,1330,1347,1215,1337,1239,1318,1215,1269,1275,1226,1281,1271,1324,1263,1193,1285,1248,1304,1277,1321,1304,1300,1329,1347,1390,1382,1236,1378,1274,1308,1278,1337,1322,1299,1363,1230,1366,1419,1272,1400,1378,1401,1360,1384,1382,1368,1397,1424,1443,1448,1330,1447,1344,1447,1373,1428,1417
"Geothermal : New England","thousand megawatthours","ELEC.GEN.GEO-NEW-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Geothermal : Connecticut","thousand megawatthours","ELEC.GEN.GEO-CT-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Geothermal : Maine","thousand megawatthours","ELEC.GEN.GEO-ME-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Geothermal : Massachusetts","thousand megawatthours","ELEC.GEN.GEO-MA-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Geothermal : New Hampshire","thousand megawatthours","ELEC.GEN.GEO-NH-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Geothermal : Rhode Island","thousand megawatthours","ELEC.GEN.GEO-RI-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Geothermal : Vermont","thousand megawatthours","ELEC.GEN.GEO-VT-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Geothermal : Middle Atlantic","thousand megawatthours","ELEC.GEN.GEO-MAT-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Geothermal : New Jersey","thousand megawatthours","ELEC.GEN.GEO-NJ-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Geothermal : New York","thousand megawatthours","ELEC.GEN.GEO-NY-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Geothermal : Pennsylvania","thousand megawatthours","ELEC.GEN.GEO-PA-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Geothermal : East North Central","thousand megawatthours","ELEC.GEN.GEO-ENC-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Geothermal : Illinois","thousand megawatthours","ELEC.GEN.GEO-IL-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Geothermal : Indiana","thousand megawatthours","ELEC.GEN.GEO-IN-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Geothermal : Michigan","thousand megawatthours","ELEC.GEN.GEO-MI-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Geothermal : Ohio","thousand megawatthours","ELEC.GEN.GEO-OH-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Geothermal : Wisconsin","thousand megawatthours","ELEC.GEN.GEO-WI-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Geothermal : West North Central","thousand megawatthours","ELEC.GEN.GEO-WNC-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Geothermal : Iowa","thousand megawatthours","ELEC.GEN.GEO-IA-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Geothermal : Kansas","thousand megawatthours","ELEC.GEN.GEO-KS-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Geothermal : Minnesota","thousand megawatthours","ELEC.GEN.GEO-MN-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Geothermal : Missouri","thousand megawatthours","ELEC.GEN.GEO-MO-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Geothermal : Nebraska","thousand megawatthours","ELEC.GEN.GEO-NE-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Geothermal : North Dakota","thousand megawatthours","ELEC.GEN.GEO-ND-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Geothermal : South Dakota","thousand megawatthours","ELEC.GEN.GEO-SD-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Geothermal : South Atlantic","thousand megawatthours","ELEC.GEN.GEO-SAT-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Geothermal : Delaware","thousand megawatthours","ELEC.GEN.GEO-DE-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Geothermal : District Of Columbia","thousand megawatthours","ELEC.GEN.GEO-DC-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Geothermal : Florida","thousand megawatthours","ELEC.GEN.GEO-FL-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Geothermal : Georgia","thousand megawatthours","ELEC.GEN.GEO-GA-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Geothermal : Maryland","thousand megawatthours","ELEC.GEN.GEO-MD-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Geothermal : North Carolina","thousand megawatthours","ELEC.GEN.GEO-NC-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Geothermal : South Carolina","thousand megawatthours","ELEC.GEN.GEO-SC-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Geothermal : Virginia","thousand megawatthours","ELEC.GEN.GEO-VA-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Geothermal : West Virginia","thousand megawatthours","ELEC.GEN.GEO-WV-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Geothermal : East South Central","thousand megawatthours","ELEC.GEN.GEO-ESC-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Geothermal : Alabama","thousand megawatthours","ELEC.GEN.GEO-AL-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Geothermal : Kentucky","thousand megawatthours","ELEC.GEN.GEO-KY-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Geothermal : Mississippi","thousand megawatthours","ELEC.GEN.GEO-MS-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Geothermal : Tennessee","thousand megawatthours","ELEC.GEN.GEO-TN-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Geothermal : West South Central","thousand megawatthours","ELEC.GEN.GEO-WSC-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Geothermal : Arkansas","thousand megawatthours","ELEC.GEN.GEO-AR-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Geothermal : Louisiana","thousand megawatthours","ELEC.GEN.GEO-LA-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Geothermal : Oklahoma","thousand megawatthours","ELEC.GEN.GEO-OK-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Geothermal : Texas","thousand megawatthours","ELEC.GEN.GEO-TX-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Geothermal : Mountain","thousand megawatthours","ELEC.GEN.GEO-MTN-99.M",122,107,119,111,92,109,112,114,110,120,117,118,123,109,116,107,112,97,135,101,106,112,109,119,115,105,115,112,103,101,100,103,102,82,112,113,132,124,130,124,123,119,125,125,119,125,118,129,119,106,124,119,121,120,132,123,121,121,121,120,131,121,134,126,116,122,129,132,121,134,132,136,137,114,127,113,92,114,116,121,114,120,119,129,61,48,156,165,169,159,156,157,151,159,166,174,171,155,176,157,152,160,157,159,153,127,200,222,194,157,213,209,219,207,189,207,195,211,195,223,231,206,227,219,221,204,200,198,195,198,215,225,219,207,216,195,219,234,232,230,236,247,259,262,277,250,266,249,231,234,228,232,232,263,264,301,326,288,313,297,299,280,276,287,288,297,318,327,328,318,349,328,344,305,328,320
"Geothermal : Arizona","thousand megawatthours","ELEC.GEN.GEO-AZ-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Geothermal : Colorado","thousand megawatthours","ELEC.GEN.GEO-CO-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Geothermal : Idaho","thousand megawatthours","ELEC.GEN.GEO-ID-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",3,3,8,8,8,8,8,8,8,8,8,9,7,6,7,6,6,6,6,6,6,5,8,8,6,5,6,6,6,6,6,6,6,6,6,7,6,5,6,5,6,5,5,5,5,5,5,6,6,6,6,5,6,6,6,6,6,7,7,7,4,3,3,3,3,3,3,3,3,3,3,4,4,4,4,4,4,4,4,5,4,5,"NM",4,"NM","NM","NM","NM","NM","NM","NM","NM"
"Geothermal : Montana","thousand megawatthours","ELEC.GEN.GEO-MT-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Geothermal : Nevada","thousand megawatthours","ELEC.GEN.GEO-NV-99.M",109,94,106,98,92,94,96,98,97,104,103,108,103,91,97,91,93,80,118,88,86,91,90,98,98,89,97,96,86,84,84,87,87,68,95,96,115,108,114,107,106,103,108,108,107,108,101,113,106,94,107,103,105,105,115,107,105,108,105,103,117,105,117,110,103,106,113,115,105,117,116,119,121,99,110,106,92,104,102,104,100,103,103,108,41,33,128,138,136,129,124,126,121,134,133,141,140,128,144,132,123,131,128,129,125,97,168,188,163,130,182,178,193,177,160,177,167,179,169,194,195,179,192,185,186,172,170,170,162,163,180,190,182,172,180,170,184,201,199,198,204,211,222,225,244,222,237,225,221,205,198,202,203,232,232,248,271,241,263,251,250,236,231,240,240,244,265,273,274,271,298,285,295,260,280,273
"Geothermal : New Mexico","thousand megawatthours","ELEC.GEN.GEO-NM-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,"NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM"
"Geothermal : Utah","thousand megawatthours","ELEC.GEN.GEO-UT-99.M",14,12,14,13,-0,15,16,16,13,16,14,10,20,18,18,16,19,17,17,14,20,21,19,21,18,16,17,16,17,17,17,16,16,14,17,17,17,16,16,17,16,17,17,17,12,17,16,16,13,12,17,16,17,15,16,16,16,13,16,17,15,15,17,16,13,15,17,17,16,17,16,17,16,15,17,7,-0,10,14,16,13,18,17,21,17,13,20,19,25,22,23,24,23,18,25,25,24,21,25,19,23,23,23,23,22,25,24,26,25,23,25,24,19,23,23,24,23,25,20,23,30,22,30,29,29,27,25,23,27,30,29,30,31,29,30,20,29,27,27,26,26,29,30,31,30,25,25,21,6,26,27,27,26,28,29,49,49,42,44,40,44,39,39,41,42,47,47,48,48,41,44,37,43,39,41,40
"Geothermal : Wyoming","thousand megawatthours","ELEC.GEN.GEO-WY-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Geothermal : Pacific Contiguous","thousand megawatthours","ELEC.GEN.GEO-PCC-99.M",1086,951,1053,966,960,960,1048,1037,1020,1022,1022,1055,1148,1010,1118,1005,1101,1051,1124,1122,1085,1119,1077,1114,1138,1020,1088,1038,1050,1104,1108,1097,1083,1097,1021,1136,1145,1072,1093,1019,1070,1088,1134,1113,1051,1136,1076,1108,1114,940,1061,1053,1125,1110,1121,1110,1082,1112,1080,1116,1078,972,1107,986,959,1057,1114,1141,1084,1125,1062,1137,1139,990,1056,1028,1041,1104,1113,1113,1088,1123,1075,1119,1127,1019,1074,1036,1070,1082,1102,1096,1064,1100,1048,1066,1097,994,1106,1053,1072,1038,1089,1082,1051,1081,1057,1132,1104,991,1082,1021,1073,1038,1064,1069,1038,995,1039,1087,1096,991,1091,1001,1077,991,1055,1057,1013,1063,1038,1080,1025,965,1047,1031,1061,1021,1066,1058,1041,1058,1063,1107,1087,964,1093,1000,1051,1019,1084,1072,1044,1076,942,1038,1068,960,1061,1057,1077,1056,1084,1082,1062,1085,1091,1097,1101,996,1078,988,1085,1050,1082,1073
"Geothermal : California","thousand megawatthours","ELEC.GEN.GEO-CA-99.M",1086,951,1053,966,960,960,1048,1037,1020,1022,1022,1055,1148,1010,1118,1005,1101,1051,1124,1122,1085,1119,1077,1114,1138,1020,1088,1038,1050,1104,1108,1097,1083,1097,1021,1136,1145,1072,1093,1019,1070,1088,1134,1113,1051,1136,1076,1108,1114,940,1061,1053,1125,1110,1121,1110,1082,1112,1080,1116,1078,972,1107,986,959,1057,1114,1141,1084,1125,1062,1137,1139,990,1056,1028,1041,1104,1113,1113,1088,1123,1075,1119,1127,1019,1074,1036,1070,1082,1102,1096,1064,1100,1048,1066,1097,994,1106,1053,1072,1038,1089,1082,1051,1081,1057,1132,1104,991,1082,1021,1073,1038,1064,1069,1038,995,1039,1087,1096,991,1091,1001,1077,991,1055,1057,1013,1063,1038,1080,1025,965,1047,1031,1061,1021,1066,1058,1041,1058,1054,1091,1068,949,1079,988,1041,1010,1073,1063,1034,1061,924,1018,1048,942,1043,1041,1065,1043,1075,1071,1049,1069,1072,1077,1082,979,1061,972,1077,1041,1072,1063
"Geothermal : Oregon","thousand megawatthours","ELEC.GEN.GEO-OR-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","NM",16,19,16,14,12,11,10,11,9,10,15,18,20,20,18,18,16,12,12,8,11,13,16,19,19,19,17,18,16,8,10,10,10
"Geothermal : Washington","thousand megawatthours","ELEC.GEN.GEO-WA-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Geothermal : Pacific Noncontiguous","thousand megawatthours","ELEC.GEN.GEO-PCN-99.M",21,15,18,18,20,19,18,16,8,19,18,18,17,13,12,3,3,3,3,4,4,4,3,4,4,5,10,16,15,18,19,19,18,16,18,19,18,18,19,19,15,18,19,19,18,15,18,19,19,17,19,15,18,18,20,20,19,15,19,21,20,18,21,17,21,21,18,16,14,16,14,18,19,19,21,17,21,20,21,21,17,21,17,17,21,19,21,17,20,20,21,20,19,18,19,21,21,19,18,13,11,11,9,10,12,13,17,14,14,11,12,11,19,19,21,20,19,16,18,19,20,18,19,19,19,19,14,20,18,20,18,19,19,21,22,22,23,22,23,15,23,24,24,21,17,21,19,25,26,24,25,19,23,25,25,26,26,24,26,24,25,24,25,13,19,15,15,20,19,16,20,27,18,17,18,25
"Geothermal : Alaska","thousand megawatthours","ELEC.GEN.GEO-AK-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Geothermal : Hawaii","thousand megawatthours","ELEC.GEN.GEO-HI-99.M",21,15,18,18,20,19,18,16,8,19,18,18,17,13,12,3,3,3,3,4,4,4,3,4,4,5,10,16,15,18,19,19,18,16,18,19,18,18,19,19,15,18,19,19,18,15,18,19,19,17,19,15,18,18,20,20,19,15,19,21,20,18,21,17,21,21,18,16,14,16,14,18,19,19,21,17,21,20,21,21,17,21,17,17,21,19,21,17,20,20,21,20,19,18,19,21,21,19,18,13,11,11,9,10,12,13,17,14,14,11,12,11,19,19,21,20,19,16,18,19,20,18,19,19,19,19,14,20,18,20,18,19,19,21,22,22,23,22,23,15,23,24,24,21,17,21,19,25,26,24,25,19,23,25,25,26,26,24,26,24,25,24,25,13,19,15,15,20,19,16,20,27,18,17,18,25
"Biomass","thousand megawatthours","ELEC.GEN.BIO-US-99.M","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""
"Biomass : United States","thousand megawatthours","ELEC.GEN.BIO-US-99.M",4400,3793,4042,4008,3951,4116,4339,4464,4076,4261,4071,4228,4489,3930,4213,4358,4408,4693,4818,4765,4598,4559,4376,4501,4597,4068,4420,4354,4230,4318,4765,4693,4383,4420,4404,4690,4581,4243,4415,4382,4348,4388,4743,4646,4358,4512,4332,4589,4611,4179,4566,4258,4452,4503,4799,4768,4542,4451,4480,4669,4810,4322,4546,4207,4411,4462,4843,4867,4568,4545,4541,4740,4907,4215,4479,4309,4430,4606,4877,4866,4690,4671,4698,4791,4744,4374,4596,4433,4402,4616,4935,4872,4486,4554,4527,4494,4493,4180,4472,4207,4257,4556,4856,4959,4562,4565,4621,4765,4629,4277,4682,4490,4470,4720,4948,4961,4732,4550,4706,4925,4805,4364,4646,4301,4358,4862,5052,5076,4768,4585,4772,5084,4915,4615,4657,4287,4591,4693,5073,5096,4854,4829,4874,5138,5088,4586,5057,4544,4955,5057,5333,5481,5069,5071,5172,5443,5453,4811,5439,5034,5199,5442,5724,5648,5276,5317,5391,5585,5569,4902,5078,4837,5080,5197,5666,5622
"Biomass : New England","thousand megawatthours","ELEC.GEN.BIO-NEW-99.M",677,598,658,592,639,632,631,683,635,550,603,648,644,574,655,574,620,610,645,644,632,603,595,659,598,533,577,510,567,563,614,647,603,554,579,572,571,573,607,516,596,540,567,614,583,569,575,653,610,563,642,526,617,613,660,684,646,584,619,669,647,604,635,526,561,592,623,662,608,618,608,660,663,612,660,533,633,664,681,712,670,634,659,688,681,623,654,601,619,615,674,674,614,594,659,643,649,593,592,542,555,602,622,673,614,590,640,646,628,617,645,557,622,656,654,666,590,550,579,643,625,541,634,470,518,628,669,670,607,535,598,643,590,573,601,488,541,609,646,660,617,590,645,670,629,578,657,481,562,658,674,672,636,606,663,665,692,594,704,536,589,630,682,672,640,638,690,700,705,639,669,552,560,571,664,686
"Biomass : Connecticut","thousand megawatthours","ELEC.GEN.BIO-CT-99.M",75,77,96,92,72,71,72,72,69,69,70,73,67,59,73,67,71,70,73,71,66,66,68,71,62,60,67,67,67,64,70,65,66,66,65,66,55,57,64,67,67,65,64,64,64,67,63,61,57,49,57,65,68,66,69,65,63,66,64,65,58,60,63,64,67,66,67,66,62,64,65,60,65,55,63,59,66,63,59,62,61,57,60,60,55,52,61,64,65,65,64,60,58,64,61,63,60,59,60,65,69,63,65,65,63,63,64,63,55,55,63,66,68,64,61,65,59,59,60,63,47,36,51,59,61,58,58,59,53,59,58,61,53,50,60,56,60,58,59,57,54,51,55,52,51,45,56,56,59,55,54,58,51,54,56,56,68,54,71,55,73,65,"NM",69,62,66,76,72,69,56,68,56,69,67,70,70
"Biomass : Maine","thousand megawatthours","ELEC.GEN.BIO-ME-99.M",348,293,327,277,336,324,323,365,339,250,299,344,362,309,346,300,335,339,358,348,349,328,318,351,313,279,296,258,295,286,317,359,328,272,299,284,283,307,324,258,294,274,289,323,307,277,301,360,344,310,354,278,327,326,358,385,361,304,347,375,355,328,347,282,281,324,336,363,349,324,317,360,351,330,343,268,318,367,371,383,365,319,330,365,375,326,340,311,308,301,352,366,311,277,332,328,340,314,297,268,233,287,295,345,294,278,345,343,318,317,336,276,298,329,343,342,281,233,261,317,340,299,328,239,277,349,356,353,323,251,328,343,253,256,262,187,197,272,295,304,293,285,294,314,336,316,338,219,255,353,365,353,340,303,336,333,329,292,327,249,251,285,323,310,286,256,300,335,331,309,319,242,191,232,278,298
"Biomass : Massachusetts","thousand megawatthours","ELEC.GEN.BIO-MA-99.M",113,103,101,106,109,113,111,113,103,116,114,112,109,93,110,100,110,106,109,109,111,110,102,104,101,88,102,107,107,104,100,105,101,109,115,115,98,95,104,105,106,102,98,104,101,103,105,109,95,96,106,100,110,107,108,108,105,109,105,108,111,100,109,100,112,102,110,110,102,105,108,110,105,91,108,83,104,102,104,105,101,112,113,112,104,102,98,96,105,104,108,111,100,103,110,110,91,83,108,109,112,104,109,102,102,98,96,106,86,96,106,108,104,108,104,105,105,110,109,109,91,64,102,100,91,94,101,100,98,99,95,106,137,134,149,135,148,148,155,149,149,142,137,141,81,76,100,93,94,89,100,101,98,107,98,101,95,82,"NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM",82,"NM","NM","NM","NM","NM","NM"
"Biomass : New Hampshire","thousand megawatthours","ELEC.GEN.BIO-NH-99.M",91,83,93,81,86,88,90,85,81,80,82,85,76,76,83,85,68,67,68,68,61,55,71,87,69,63,69,51,55,68,75,74,71,71,65,65,76,75,78,64,74,72,75,76,74,74,74,74,78,73,80,69,79,77,83,85,80,78,78,83,62,57,60,46,55,52,60,64,57,71,74,88,89,80,96,85,95,85,102,105,92,92,100,101,99,89,92,87,99,96,103,99,96,101,105,99,97,98,81,63,94,101,106,110,104,97,99,86,109,97,89,70,97,103,93,107,95,98,98,100,92,94,98,44,58,85,100,101,88,96,80,89,105,97,92,80,102,99,92,101,95,99,106,104,114,104,111,88,111,106,111,113,105,102,122,120,138,110,132,91,120,127,140,131,138,157,156,139,142,127,129,117,153,126,157,149
"Biomass : Rhode Island","thousand megawatthours","ELEC.GEN.BIO-RI-99.M",10,9,9,9,9,9,8,8,8,8,8,9,9,8,8,8,8,8,8,8,8,8,9,9,9,8,9,8,9,8,9,9,8,9,9,9,8,7,9,8,9,9,9,9,9,9,8,9,0,0,0,0,0,0,0,0,0,0,0,0,13,12,13,10,12,13,13,13,12,13,13,12,13,11,14,11,13,13,13,13,13,13,14,13,13,12,13,12,13,14,14,14,13,14,14,14,11,10,12,13,13,12,13,12,12,12,12,12,10,10,12,12,12,12,12,12,11,12,12,12,10,7,11,11,11,11,11,11,11,11,11,12,8,8,9,8,9,8,9,9,8,8,9,8,0,0,0,0,0,14,5,0,3,10,8,9,16,11,19,18,19,19,19,19,14,15,19,20,20,18,19,16,19,20,19,20
"Biomass : Vermont","thousand megawatthours","ELEC.GEN.BIO-VT-99.M",41,33,32,26,26,28,28,40,34,27,29,26,21,29,36,15,27,21,29,39,38,36,28,38,44,35,34,20,35,32,43,36,28,28,26,33,51,31,29,14,46,17,32,39,29,39,24,40,36,36,45,14,33,37,42,41,37,27,24,37,48,47,44,24,34,35,37,45,25,41,31,28,40,45,37,28,37,34,33,43,37,41,43,36,35,42,51,30,29,35,33,24,35,35,36,31,49,29,35,24,33,34,33,38,40,42,25,36,49,40,39,25,42,41,42,36,38,37,38,42,45,40,43,18,19,32,43,46,34,19,26,33,33,28,29,20,25,23,36,41,17,4,44,52,46,37,52,25,44,41,39,48,39,30,43,47,47,45,50,23,"NM","NM",36,38,40,43,38,"NM","NM","NM","NM","NM","NM","NM",40,"NM"
"Biomass : Middle Atlantic","thousand megawatthours","ELEC.GEN.BIO-MAT-99.M",369,336,379,358,390,377,397,404,371,369,375,385,345,334,365,354,409,400,420,410,388,374,380,399,379,332,366,361,390,369,412,403,398,385,388,406,358,349,400,356,378,368,408,404,377,385,391,396,384,349,401,377,417,408,429,418,404,403,405,412,410,390,404,392,422,409,434,435,410,422,408,417,402,348,412,383,411,405,433,422,418,393,397,416,406,367,415,409,429,431,442,443,415,413,424,430,411,392,455,426,439,505,466,479,461,463,442,463,441,381,454,442,451,451,474,464,464,456,465,475,395,399,417,389,436,462,491,454,436,445,422,472,458,414,438,438,438,459,480,464,466,459,423,474,452,377,455,423,455,480,501,497,474,501,483,522,467,412,498,482,482,495,535,526,496,486,500,514,498,424,461,463,465,483,518,514
"Biomass : New Jersey","thousand megawatthours","ELEC.GEN.BIO-NJ-99.M",66,59,73,66,73,72,76,74,70,70,72,73,69,67,68,62,72,73,76,75,71,72,69,74,79,69,74,72,76,77,83,80,73,68,70,85,62,61,67,66,72,70,70,70,65,65,70,67,69,61,69,67,79,78,78,77,73,74,76,74,74,70,79,72,75,77,79,78,72,76,76,74,64,60,67,56,67,74,75,72,73,72,65,77,71,66,74,70,77,74,75,79,73,73,73,78,68,70,74,71,77,87,84,85,85,76,71,82,67,56,67,65,75,72,72,66,70,66,69,71,68,65,74,57,74,75,79,77,78,79,67,82,85,79,81,77,88,85,85,83,85,77,59,81,76,69,86,82,82,79,86,89,84,88,86,91,80,72,82,84,85,86,91,91,87,88,88,89,85,68,71,75,84,84,88,87
"Biomass : New York","thousand megawatthours","ELEC.GEN.BIO-NY-99.M",153,140,154,139,157,152,151,157,145,136,144,152,134,121,136,136,129,155,162,156,151,150,145,153,141,123,131,133,146,136,155,149,137,147,147,150,142,135,167,136,139,149,162,156,148,155,152,154,150,133,157,144,160,160,167,163,163,162,163,164,156,156,151,151,161,168,171,171,165,168,155,167,155,129,163,157,166,169,175,175,170,150,167,167,164,153,172,161,173,179,181,182,177,166,183,176,170,149,180,165,174,234,177,195,197,196,173,189,178,159,181,173,190,178,197,191,196,196,189,191,153,149,156,155,164,186,198,175,179,183,173,189,179,154,158,172,174,183,202,181,200,181,178,184,175,129,175,162,195,204,212,202,200,217,201,210,191,177,215,194,200,204,224,219,207,201,201,204,198,176,188,184,193,203,218,217
"Biomass : Pennsylvania","thousand megawatthours","ELEC.GEN.BIO-PA-99.M",150,137,152,153,160,153,170,173,156,163,159,161,143,147,162,156,209,172,182,178,167,153,166,171,159,140,161,155,168,156,173,174,187,170,171,171,154,152,165,153,167,150,176,177,164,165,170,175,164,155,174,167,178,170,184,177,168,167,167,174,179,165,175,169,185,164,184,187,173,178,177,176,183,160,182,170,178,162,183,175,176,171,166,172,171,148,170,178,179,178,186,182,165,174,168,177,173,173,201,191,188,184,205,199,179,191,197,192,196,166,207,204,186,201,205,207,198,193,207,214,173,185,187,177,197,201,214,202,179,183,182,201,194,181,199,188,175,191,193,200,181,200,186,209,201,179,194,178,178,197,203,206,190,196,196,221,196,164,201,204,197,205,220,215,203,198,212,221,216,180,201,204,187,196,212,211
"Biomass : East North Central","thousand megawatthours","ELEC.GEN.BIO-ENC-99.M",397,344,383,367,364,361,413,426,377,408,391,384,361,276,374,350,330,326,380,384,374,352,337,337,455,414,434,398,384,375,433,448,402,415,401,424,392,388,391,390,365,373,458,438,424,425,416,416,379,358,395,378,386,402,418,429,394,409,382,394,418,377,405,367,406,400,421,443,392,415,415,405,394,359,381,385,426,421,436,440,421,444,406,392,450,432,417,446,441,469,450,458,437,446,424,425,425,402,421,386,430,436,468,461,401,441,503,470,462,443,483,473,482,461,466,463,445,419,452,466,488,430,462,460,445,495,510,529,474,473,506,505,504,452,473,468,494,515,549,538,496,509,490,500,503,457,526,525,540,513,525,529,519,513,492,508,538,486,548,468,535,521,556,571,517,508,529,546,531,464,477,454,484,477,518,530
"Biomass : Illinois","thousand megawatthours","ELEC.GEN.BIO-IL-99.M",59,48,54,50,56,60,64,63,56,55,55,57,53,45,62,60,62,67,77,79,69,50,49,51,77,68,68,63,65,60,64,72,69,64,66,66,61,60,62,61,62,63,63,63,62,62,62,62,50,45,51,51,56,55,58,57,54,54,56,54,52,48,53,39,48,49,52,52,48,51,52,51,44,43,45,50,58,56,58,59,54,65,46,43,54,55,34,62,63,61,60,63,63,62,59,61,68,54,51,45,58,49,59,57,48,68,77,74,58,52,59,52,62,60,56,58,61,42,57,54,56,44,53,53,49,47,58,62,61,52,51,52,62,46,49,49,49,65,52,54,53,49,43,44,55,51,56,49,54,50,38,40,52,54,55,54,53,46,56,55,56,55,59,58,55,57,56,55,56,45,48,50,52,47,49,49
"Biomass : Indiana","thousand megawatthours","ELEC.GEN.BIO-IN-99.M",9,9,9,8,7,10,11,13,11,8,11,9,8,8,9,10,8,10,12,12,11,7,9,11,12,11,11,8,8,8,9,10,9,10,10,11,11,11,11,11,11,11,11,11,11,11,11,11,5,5,5,5,6,6,6,6,6,6,6,6,20,18,19,15,18,18,19,19,18,19,19,19,16,14,15,18,22,22,22,22,20,26,18,16,22,20,19,24,25,26,22,25,25,25,20,20,22,20,24,22,30,26,28,27,20,27,31,25,25,26,31,31,30,27,24,26,27,22,20,22,26,23,24,26,29,30,29,33,29,28,32,28,24,23,25,28,29,29,33,33,28,33,26,27,25,23,33,35,36,36,28,32,35,33,30,31,31,27,33,33,32,32,34,34,32,32,32,32,32,27,29,30,32,32,32,32
"Biomass : Michigan","thousand megawatthours","ELEC.GEN.BIO-MI-99.M",195,169,193,196,197,180,217,223,190,220,207,174,199,137,205,188,174,173,198,202,197,194,186,166,223,202,218,202,183,195,225,227,197,212,196,214,203,199,200,208,179,189,236,237,230,229,223,224,206,191,205,196,208,206,227,234,206,213,189,212,214,195,198,190,207,204,205,221,200,198,209,198,192,185,187,186,206,210,211,208,216,217,200,196,211,191,209,203,209,218,204,218,194,210,191,192,184,172,185,158,202,198,207,208,174,207,220,209,212,209,222,218,233,211,214,209,191,180,178,195,215,190,193,185,201,216,232,234,196,216,215,212,208,193,191,200,231,226,261,247,215,234,228,220,207,183,230,237,239,243,238,234,235,236,206,227,245,218,240,191,241,238,242,249,239,235,237,240,233,205,211,191,203,193,224,226
"Biomass : Ohio","thousand megawatthours","ELEC.GEN.BIO-OH-99.M",42,34,40,36,33,33,33,36,37,33,36,37,12,10,13,13,12,12,17,12,14,13,10,12,38,34,35,36,37,29,36,41,39,40,36,39,37,37,36,34,32,36,37,38,36,40,36,30,28,34,39,38,29,37,40,39,35,41,38,34,38,34,35,37,34,37,38,39,35,39,40,39,40,33,35,35,33,35,38,36,35,33,30,37,53,52,50,45,42,61,49,50,50,41,56,59,50,54,50,55,42,45,53,55,47,57,54,57,59,52,56,56,47,58,56,53,57,53,64,65,68,54,61,66,52,62,63,60,59,38,68,71,67,54,71,53,59,57,67,54,63,58,49,65,76,65,62,59,66,51,70,75,87,57,75,76,66,57,71,65,68,64,71,72,66,68,67,69,68,62,63,62,61,64,68,68
"Biomass : Wisconsin","thousand megawatthours","ELEC.GEN.BIO-WI-99.M",93,84,87,77,70,78,87,91,83,90,83,107,89,76,85,80,74,64,75,79,82,87,82,97,106,99,103,90,90,84,98,99,87,88,92,93,79,81,82,76,80,73,110,89,85,84,84,89,90,84,94,87,87,97,87,93,94,95,93,88,95,81,100,87,100,91,106,113,91,107,95,98,102,84,99,96,108,98,107,115,95,103,111,101,110,114,105,112,101,103,114,103,105,108,98,93,101,101,112,105,97,117,122,113,113,82,121,104,108,104,114,115,111,105,117,118,109,123,132,129,123,118,131,129,114,140,130,141,130,139,140,142,143,136,136,138,127,138,136,150,138,135,143,145,139,135,145,144,146,134,150,149,112,133,127,120,141,139,148,125,139,132,149,158,126,115,137,150,141,126,126,120,135,142,145,156
"Biomass : West North Central","thousand megawatthours","ELEC.GEN.BIO-WNC-99.M",103,90,100,99,108,104,92,104,102,95,105,115,108,93,98,86,80,70,77,83,70,79,79,79,114,95,110,107,111,107,112,119,107,110,106,124,94,91,103,94,88,99,92,99,102,88,93,103,90,93,108,94,104,107,115,110,102,100,112,113,96,96,106,84,100,104,109,114,102,100,102,106,115,109,129,106,117,123,118,129,160,137,151,155,140,138,142,138,139,161,163,166,164,147,149,135,138,136,165,146,155,183,192,183,177,156,183,196,163,188,208,157,171,206,208,199,182,177,189,192,173,172,182,155,171,183,168,175,159,167,150,182,182,169,188,159,166,180,190,198,181,185,181,190,162,138,180,143,137,161,175,189,196,156,170,166,175,154,181,161,158,186,188,178,184,179,177,179,180,156,162,154,176,172,182,177
"Biomass : Iowa","thousand megawatthours","ELEC.GEN.BIO-IA-99.M",9,7,7,8,9,9,7,9,10,11,8,10,8,7,7,8,7,8,10,9,8,8,10,10,11,9,10,8,9,9,10,11,10,10,8,10,9,8,9,9,9,9,8,9,9,8,9,9,10,9,9,10,10,10,10,11,11,9,10,9,9,8,13,9,13,13,13,13,12,11,12,11,12,11,17,7,11,10,10,17,16,17,11,13,16,14,14,12,18,11,16,9,13,16,15,14,11,11,12,12,14,13,17,15,15,16,16,16,10,15,17,18,19,18,20,19,15,11,13,14,16,13,15,10,17,20,15,16,7,12,8,12,15,13,12,8,16,14,14,16,11,10,12,10,10,8,9,6,9,13,16,21,19,19,13,16,14,11,15,12,12,14,15,13,13,14,12,13,15,10,13,11,11,11,12,12
"Biomass : Kansas","thousand megawatthours","ELEC.GEN.BIO-KS-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,0,3,4,5,4,4,5,5,5,4,5,5,5,4,5,5,5,5,5,5,5,5,5,4,5,5,4,5,5,4,5,5,5,5,5,5,5,5,4,5,5,4,4,6,6,5,5,5,5,5,4,5,5,5,5,5,5,5,5,5,5,5,4,4,5,5,5,5,5
"Biomass : Minnesota","thousand megawatthours","ELEC.GEN.BIO-MN-99.M",91,79,89,88,96,92,82,92,90,82,94,103,98,84,90,76,71,60,65,72,61,70,68,68,97,81,94,95,97,93,96,102,92,95,93,108,81,78,89,80,74,85,80,86,89,75,79,89,77,80,94,79,89,92,99,93,86,86,97,98,82,83,88,71,81,85,89,93,83,81,82,86,94,90,103,91,97,104,99,102,136,111,132,134,116,115,119,117,113,142,138,147,137,117,123,114,116,117,138,118,128,157,160,153,148,127,158,163,137,150,173,126,138,169,170,161,151,150,159,164,142,144,151,127,138,146,136,141,136,139,127,153,153,142,160,137,135,151,161,166,155,159,155,165,136,116,155,121,112,131,140,150,162,117,139,132,141,125,145,133,125,152,151,144,153,143,146,146,142,125,131,126,141,145,147,148
"Biomass : Missouri","thousand megawatthours","ELEC.GEN.BIO-MO-99.M",1,1,1,1,1,1,1,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,3,3,2,3,3,3,3,2,3,2,2,2,2,3,2,3,2,2,3,3,3,3,3,2,2,3,6,7,4,3,6,2,9,8,6,7,7,6,5,6,3,11,8,12,5,2,3,6,6,6,4,4,4,3,4,4,4,7,5,6,6,5,6,5,5,5,4,4,5,3,5,4,4,5,5,4,5,4,7,6,6,5,6,6,6,6,4,8,7,7,8,8,10,"NM",11,10,10,9,7,9,"NM",8,10,9,"NM","NM",13,"NM",12,"NM"
"Biomass : Nebraska","thousand megawatthours","ELEC.GEN.BIO-NE-99.M",2,2,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,5,4,4,4,4,5,5,5,5,5,5,3,3,3,3,3,3,3,3,3,3,3,3,1,3,4,4,4,4,4,4,4,4,4,4,4,3,4,3,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,4,4,5,5,5,5,5,6,6,5,5,4,4,4,6,6,6,6,7,6,6,5,6,6,4,6,7,5,6,6,7,7,6,6,6,6,5,5,6,6,5,6,5,6,5,6,5,6,5,5,5,5,5,5,5,6,5,6,5,5,5,4,5,6,5,5,7,6,6,6,6,6,6,5,6,6,6,6,6,6,6,6,6,6,6,5,5,5,6,6,6,5
"Biomass : North Dakota","thousand megawatthours","ELEC.GEN.BIO-ND-99.M",1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,"NM","NM","NM","NM",0,0,0,0,0,3,"NM","NM","NM","NM","NM",0,"NM",0,0,0
"Biomass : South Dakota","thousand megawatthours","ELEC.GEN.BIO-SD-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
"Biomass : South Atlantic","thousand megawatthours","ELEC.GEN.BIO-SAT-99.M",1056,913,926,969,960,951,994,985,880,1003,946,992,1157,1006,1012,1420,1380,1527,1430,1408,1330,1393,1328,1361,1208,1075,1160,1229,1145,1115,1246,1146,1062,1077,1083,1235,1249,1110,1156,1211,1249,1199,1282,1197,1091,1161,1093,1216,1238,1107,1196,1171,1164,1176,1301,1254,1201,1135,1174,1225,1295,1147,1222,1197,1178,1177,1312,1272,1189,1130,1200,1254,1224,1141,1188,1181,1143,1229,1294,1273,1219,1210,1219,1283,1259,1125,1180,1199,1163,1217,1279,1246,1125,1139,1164,1199,1192,1085,1153,1129,1096,1157,1205,1265,1119,1125,1130,1230,1221,1056,1166,1177,1150,1198,1279,1260,1209,1159,1252,1333,1298,1153,1185,1197,1193,1306,1360,1355,1255,1174,1232,1380,1316,1228,1205,1183,1268,1270,1368,1325,1238,1260,1281,1400,1376,1253,1324,1273,1426,1394,1445,1452,1308,1387,1445,1549,1561,1374,1524,1458,1483,1587,1598,1562,1470,1491,1537,1568,1604,1367,1443,1376,1477,1578,1680,1635
"Biomass : Delaware","thousand megawatthours","ELEC.GEN.BIO-DE-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,0,4,4,4,3,4,4,4,4,4,4,4,4,17,6,16,15,14,15,15,8,15,13,14,15,14,11,10,13,7,7,11,14,11,10,9,9,10,10,9,11,12,13,15,13,13,11,7,11,13,9,11,13,14,14,15,13,11,8,12,12,13,9,10,6,11,9,12,8,8,6,7,6,5,5,5,5,5,5,5,4,4,5,5,5,5,4,5,5,5,5,5,5,5,5,5,"NM",5,4,4,5,5,5,5,5
"Biomass : District Of Columbia","thousand megawatthours","ELEC.GEN.BIO-DC-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0
"Biomass : Florida","thousand megawatthours","ELEC.GEN.BIO-FL-99.M",335,298,310,321,324,320,321,315,276,323,306,340,344,297,335,261,339,361,350,291,303,295,270,293,394,323,382,415,369,370,402,382,358,337,344,397,399,338,355,391,401,390,400,391,314,354,367,403,397,333,359,332,371,360,394,385,362,314,349,373,388,320,373,355,357,350,379,388,372,331,343,374,380,350,361,323,319,369,362,368,363,345,359,403,370,334,381,394,372,371,381,347,331,332,334,355,385,329,354,338,316,371,372,393,356,350,359,407,390,347,392,350,338,331,371,370,349,380,386,404,395,339,367,361,374,365,395,396,355,388,400,409,366,354,380,350,357,347,380,357,327,369,341,402,401,348,378,380,374,361,372,350,344,351,376,413,429,377,431,411,389,402,432,436,402,398,433,426,436,379,408,383,387,408,462,407
"Biomass : Georgia","thousand megawatthours","ELEC.GEN.BIO-GA-99.M",261,256,256,258,248,250,259,250,221,269,243,232,348,238,258,688,597,698,577,630,554,645,568,581,278,243,255,290,269,261,285,243,238,251,255,305,293,256,284,299,260,268,290,254,265,252,219,253,266,257,282,290,254,266,296,282,276,285,268,251,293,267,271,285,270,263,306,280,292,284,288,318,256,271,282,295,277,276,301,289,286,298,279,307,239,222,229,232,230,215,245,251,231,238,221,228,210,202,240,199,228,240,233,242,257,246,259,267,262,230,267,270,245,260,278,262,283,274,261,290,281,239,245,233,259,285,276,275,276,257,264,297,276,248,230,245,279,276,294,280,266,279,290,313,309,265,277,305,353,312,342,338,293,333,345,354,351,298,335,310,360,358,363,361,343,357,367,376,375,304,364,345,378,379,371,380
"Biomass : Maryland","thousand megawatthours","ELEC.GEN.BIO-MD-99.M",27,27,30,29,31,36,34,34,34,30,30,31,41,68,40,40,40,44,49,44,44,37,34,42,45,37,49,56,52,47,57,56,50,48,51,46,50,43,50,49,51,51,58,54,50,47,40,46,49,41,48,51,49,55,55,59,53,54,55,52,55,45,54,51,52,54,58,57,50,51,50,50,53,42,45,52,54,58,59,54,49,52,44,42,49,38,51,55,47,60,56,59,54,48,48,49,47,33,46,50,43,53,48,56,45,48,38,44,45,33,45,53,50,55,53,55,50,49,50,34,42,41,42,52,45,50,53,50,41,36,47,50,45,43,26,42,46,56,54,52,46,47,47,52,47,45,47,37,43,52,54,56,41,48,44,43,50,42,53,48,48,51,47,53,50,49,50,46,49,41,42,45,46,50,50,"NM"
"Biomass : North Carolina","thousand megawatthours","ELEC.GEN.BIO-NC-99.M",157,132,132,161,131,116,152,154,143,166,150,156,171,158,150,169,140,136,135,137,141,142,156,149,151,187,171,175,159,140,174,158,159,171,165,166,158,141,134,154,173,141,155,133,118,151,138,136,163,136,139,152,128,151,170,150,157,158,148,155,170,151,149,148,137,140,172,156,142,155,150,158,152,121,124,147,134,135,157,137,124,156,141,143,185,149,170,157,129,158,180,159,126,160,176,172,179,151,154,164,173,168,165,169,138,135,120,173,164,153,138,149,163,188,190,192,183,155,173,223,198,180,177,174,166,201,227,219,208,181,187,211,216,203,197,197,193,219,235,239,197,229,206,235,224,212,236,209,222,227,238,236,202,202,196,205,213,202,211,223,200,221,230,189,176,191,188,216,203,187,161,177,173,200,207,211
"Biomass : South Carolina","thousand megawatthours","ELEC.GEN.BIO-SC-99.M",115,64,64,74,80,76,70,75,69,70,65,72,110,106,77,85,118,114,122,117,112,95,98,91,118,107,106,102,119,107,115,118,106,95,94,109,153,141,134,153,169,146,151,148,142,155,115,155,166,149,147,157,154,152,158,158,148,118,138,168,168,155,162,169,155,161,171,171,157,119,173,149,176,153,164,154,161,177,177,180,176,150,171,157,161,157,138,141,148,151,164,176,145,142,143,149,150,155,154,147,156,113,163,162,124,149,151,124,148,141,138,150,161,151,164,164,157,145,171,183,183,161,158,171,177,187,189,194,177,162,166,204,216,198,170,199,171,154,177,171,184,152,173,179,181,178,190,190,186,192,188,200,156,177,194,195,204,183,186,201,203,206,171,178,191,163,167,172,182,164,158,141,174,176,188,188
"Biomass : Virginia","thousand megawatthours","ELEC.GEN.BIO-VA-99.M",161,134,132,123,142,150,156,156,137,144,151,160,143,140,153,176,146,173,197,187,175,177,200,205,222,177,197,192,176,189,212,189,150,174,173,211,196,191,199,165,196,203,227,218,202,202,213,222,198,190,221,189,208,193,228,220,203,205,217,226,222,208,213,187,207,210,227,220,176,189,196,203,202,200,207,207,195,212,234,240,217,205,221,227,238,220,194,205,223,246,238,246,223,206,228,231,207,203,196,217,173,205,213,229,188,185,194,207,202,142,176,195,181,200,207,204,175,146,205,187,186,182,185,192,157,202,203,207,185,141,156,198,184,173,191,143,211,209,216,217,209,178,217,212,208,200,190,148,243,246,246,268,268,271,284,333,309,269,303,259,277,343,349,340,302,330,327,327,354,288,305,281,313,361,396,404
"Biomass : West Virginia","thousand megawatthours","ELEC.GEN.BIO-WV-99.M",1,2,2,3,2,2,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,"NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM"
"Biomass : East South Central","thousand megawatthours","ELEC.GEN.BIO-ESC-99.M",591,482,489,498,468,567,593,584,510,570,538,563,598,528,500,461,456,486,542,527,478,435,399,435,516,436,469,449,444,474,526,512,487,502,506,499,581,513,495,568,524,532,589,572,516,559,546,537,582,502,522,495,546,533,529,529,525,535,524,530,609,494,503,524,558,554,601,586,550,570,520,572,571,504,515,562,564,566,610,585,535,552,554,562,573,514,533,473,483,509,588,524,498,540,464,423,481,409,469,419,499,460,516,537,499,503,477,466,446,409,457,424,421,449,454,462,445,425,433,443,518,458,483,490,450,476,496,500,453,431,483,488,466,468,417,403,478,449,482,461,456,414,451,451,473,438,467,422,476,496,506,545,476,432,473,490,543,485,519,516,530,527,556,554,495,514,500,532,534,479,484,510,484,506,555,539
"Biomass : Alabama","thousand megawatthours","ELEC.GEN.BIO-AL-99.M",401,332,355,347,306,352,371,372,315,342,333,362,394,342,310,304,301,320,357,338,309,240,240,290,322,285,310,305,271,291,325,321,310,300,320,314,324,308,304,327,315,315,333,333,289,307,312,311,328,304,313,278,315,311,285,293,312,301,305,301,359,294,316,301,321,322,350,341,328,326,298,328,326,292,300,304,324,320,350,339,318,300,314,312,306,269,293,262,281,288,300,300,283,288,252,234,258,213,237,214,262,255,282,284,284,281,246,235,219,187,196,196,190,199,213,208,196,176,191,206,265,226,233,241,237,245,246,248,223,194,224,236,243,244,209,224,236,236,243,241,244,185,227,244,255,235,231,221,232,248,262,273,254,204,228,232,"NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM"
"Biomass : Kentucky","thousand megawatthours","ELEC.GEN.BIO-KY-99.M",1,1,1,1,1,1,1,1,1,1,1,1,31,30,35,32,22,35,37,32,31,33,33,14,34,20,1,10,22,30,30,30,28,32,32,29,38,36,37,30,27,32,33,33,33,37,36,39,40,35,40,26,34,33,34,35,35,33,38,40,40,37,42,38,38,34,39,40,28,40,41,42,31,39,42,39,42,41,39,38,28,44,38,45,47,40,39,39,35,34,79,32,21,42,25,27,41,33,39,38,37,36,33,37,11,11,11,36,36,37,59,39,37,39,39,35,39,27,24,28,41,42,42,38,37,35,39,29,14,36,41,41,41,33,9,10,38,36,40,19,19,31,29,29,24,25,29,26,26,23,22,41,8,21,41,40,45,38,45,42,44,36,39,39,13,37,44,39,45,40,39,41,40,41,40,33
"Biomass : Mississippi","thousand megawatthours","ELEC.GEN.BIO-MS-99.M",115,91,79,85,89,140,150,138,125,156,132,133,108,101,81,72,72,71,84,91,67,75,54,59,92,74,84,68,80,87,97,88,83,98,86,86,146,103,90,137,107,122,154,134,129,145,125,122,146,99,103,132,129,127,146,135,116,139,124,125,142,104,98,124,132,133,149,137,130,139,119,134,138,101,103,133,121,130,140,132,116,129,119,132,142,126,129,101,92,111,130,111,111,129,111,98,112,97,121,115,119,90,123,133,127,132,137,119,121,116,131,110,105,125,127,134,131,135,141,128,129,112,132,131,91,118,139,137,132,131,131,123,125,135,136,121,135,112,134,128,125,127,126,106,106,95,130,112,130,134,131,136,131,108,116,120,"NM",117,"NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM"
"Biomass : Tennessee","thousand megawatthours","ELEC.GEN.BIO-TN-99.M",75,59,54,65,72,73,71,73,70,72,72,68,65,54,72,52,62,60,64,66,72,87,72,71,68,57,75,66,71,66,73,73,66,71,69,70,73,66,64,74,75,63,69,71,65,69,73,65,68,63,66,59,68,62,65,66,62,61,58,64,67,59,48,61,68,65,63,68,63,65,62,68,76,73,70,86,76,75,80,76,73,79,83,72,78,79,72,70,76,76,79,81,82,82,76,64,70,66,73,53,82,78,78,83,78,79,83,76,70,69,72,78,88,85,75,85,79,88,77,81,83,78,76,81,85,79,73,85,83,69,87,87,56,57,63,49,69,64,66,73,69,70,69,72,89,83,77,63,87,91,91,95,83,100,87,99,86,78,77,84,85,86,90,91,85,88,85,88,87,78,78,75,82,84,90,89
"Biomass : West South Central","thousand megawatthours","ELEC.GEN.BIO-WSC-99.M",474,430,439,462,376,363,459,495,472,539,462,468,510,455,460,455,462,506,514,531,534,541,511,474,528,474,511,555,531,570,573,572,563,562,545,601,543,483,530,520,458,523,534,520,506,535,486,496,517,471,510,505,495,508,498,506,480,517,490,514,527,476,512,482,492,507,526,530,532,500,509,536,525,480,525,472,484,490,515,529,521,534,542,548,502,481,489,478,474,505,520,516,446,523,458,438,435,399,426,453,411,431,474,468,443,439,447,431,436,405,475,494,446,495,526,514,509,516,524,548,511,470,521,455,429,515,511,501,510,527,550,530,523,474,505,459,459,468,519,550,505,537,564,575,570,538,539,501,552,523,548,603,527,502,501,552,525,483,521,515,516,570,608,571,529,544,559,573,546,544,516,482,490,519,553,555
"Biomass : Arkansas","thousand megawatthours","ELEC.GEN.BIO-AR-99.M",137,126,119,136,69,88,98,158,136,161,142,143,172,137,128,142,106,113,128,121,133,142,136,129,168,147,152,156,131,144,164,156,149,156,153,168,165,144,154,155,134,150,160,153,140,164,149,142,148,130,147,145,137,141,145,143,145,158,145,150,158,138,143,121,131,135,151,148,141,149,152,155,148,133,146,131,140,123,129,139,132,125,142,136,137,127,132,136,126,112,121,133,117,129,126,118,143,128,146,140,128,115,135,137,132,128,132,122,123,120,140,133,130,129,149,137,134,142,142,146,139,126,140,139,129,146,151,140,140,131,144,143,138,137,133,141,141,128,138,141,132,133,145,154,151,135,127,130,139,144,140,142,128,115,124,126,130,122,134,136,129,130,141,136,117,137,143,151,141,136,124,124,127,123,131,120
"Biomass : Louisiana","thousand megawatthours","ELEC.GEN.BIO-LA-99.M",226,203,222,234,200,197,246,237,242,263,216,217,244,217,214,211,238,240,252,246,252,242,242,214,239,210,228,243,261,268,271,273,266,270,263,288,257,230,257,255,207,256,256,247,258,261,227,257,260,235,239,247,242,241,240,238,219,248,232,245,250,222,242,249,240,251,249,259,261,239,242,258,245,230,262,234,234,245,254,252,258,256,249,261,231,209,227,214,230,255,238,246,210,247,211,191,176,163,177,192,191,213,226,211,208,206,203,197,174,160,170,212,195,221,216,221,228,215,223,234,202,177,205,188,170,225,210,202,209,224,212,220,205,185,186,167,168,186,197,202,219,232,243,241,236,229,227,206,247,224,239,230,238,258,209,243,227,205,214,211,225,218,241,243,237,235,219,235,234,218,230,207,195,230,241,234
"Biomass : Oklahoma","thousand megawatthours","ELEC.GEN.BIO-OK-99.M",20,19,17,15,20,12,27,22,17,23,21,19,15,20,20,15,11,22,25,21,21,24,21,24,24,17,26,23,24,23,19,23,21,19,25,24,24,21,18,24,23,24,24,22,16,21,26,7,22,24,21,25,23,26,22,26,26,25,25,26,27,24,27,19,29,26,24,22,26,27,25,24,22,22,6,14,22,29,29,27,28,26,28,26,22,17,10,15,9,17,25,15,12,23,10,18,20,18,17,27,13,17,23,21,15,17,17,25,34,27,31,32,22,29,31,31,29,30,31,27,33,29,30,25,3,17,28,30,28,31,31,30,31,30,30,30,27,31,30,31,29,29,33,32,31,30,15,31,31,27,32,31,30,31,27,29,28,24,27,27,26,27,29,28,27,27,27,28,28,25,26,25,"NM",25,28,26
"Biomass : Texas","thousand megawatthours","ELEC.GEN.BIO-TX-99.M",92,82,81,77,87,66,89,78,78,92,83,89,79,82,98,88,107,130,109,143,129,133,112,108,98,101,105,134,115,135,119,119,128,118,103,121,97,88,101,85,93,94,95,98,92,90,85,90,87,82,104,89,93,99,90,99,89,86,87,93,93,91,101,93,92,96,102,101,104,85,91,99,109,95,111,93,88,93,103,111,104,127,123,124,112,128,120,113,109,121,135,123,107,124,111,111,96,90,86,94,79,86,91,98,88,89,95,87,106,99,134,116,99,116,130,126,119,128,129,141,138,138,146,104,126,128,123,130,133,142,163,138,148,123,156,121,124,123,153,177,126,143,142,149,153,144,170,134,135,129,137,201,130,97,140,154,140,131,145,141,136,195,198,164,149,144,170,159,144,166,135,126,144,140,154,175
"Biomass : Mountain","thousand megawatthours","ELEC.GEN.BIO-MTN-99.M",56,52,63,59,62,65,72,73,66,52,53,52,51,42,56,56,53,60,68,55,56,63,57,63,55,52,57,58,56,62,64,62,38,57,58,73,59,57,51,60,62,59,62,63,51,62,57,63,62,58,53,61,62,49,67,65,65,64,64,65,64,57,61,47,62,44,69,68,63,65,63,60,55,53,46,56,62,62,65,67,59,53,64,62,58,54,60,53,60,62,68,69,59,63,74,72,66,61,70,58,67,78,78,83,74,75,73,85,75,68,63,69,81,80,82,76,74,77,72,79,66,63,57,63,69,72,77,78,71,74,75,76,78,71,66,74,81,75,78,80,77,76,76,77,82,77,92,80,82,77,78,84,80,104,94,97,85,80,87,85,89,83,92,88,93,80,76,91,91,79,74,81,89,86,91,81
"Biomass : Arizona","thousand megawatthours","ELEC.GEN.BIO-AZ-99.M",0,0,1,1,5,4,6,5,5,4,4,3,6,4,6,4,4,4,4,4,4,4,5,4,2,2,3,5,5,4,4,4,4,5,4,2,3,3,4,4,4,4,3,4,4,4,4,4,5,5,6,4,5,5,5,5,5,5,5,5,5,5,4,3,3,3,3,3,3,3,3,3,2,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,6,8,12,13,14,12,13,14,11,11,12,9,14,14,15,16,13,15,11,17,16,11,13,11,18,16,16,12,14,17,9,16,13,15,16,14,12,17,19,19,17,17,17,14,19,17,19,15,17,16,18,19,18,16,17,19,15,17,20,9,6,6,6,16,17,22,17,21,20,18,18,15,21,21,21,21,22,18,21,23,21,18,21,15,20,21,22,22
"Biomass : Colorado","thousand megawatthours","ELEC.GEN.BIO-CO-99.M",5,5,6,5,6,5,6,6,5,5,5,5,3,3,3,3,3,2,2,2,2,3,3,2,3,2,3,3,3,3,3,3,3,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,3,3,3,3,3,2,3,2,2,2,2,3,3,3,2,2,3,3,3,3,3,2,2,3,3,3,3,3,3,3,3,3,5,5,4,4,4,5,5,4,5,5,5,5,5,5,5,5,5,5,5,4,5,5,5,7,5,5,5,5,5,5,5,5,5,5,5,5,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,7,6,7,7,7,7,7,7,7,7,7,9,8,7,8,8,7,7,7,7,7,8,8,7,8,7,7,6,7,7,7,7
"Biomass : Idaho","thousand megawatthours","ELEC.GEN.BIO-ID-99.M",43,39,49,46,43,48,52,54,49,37,37,36,35,28,41,42,38,46,56,43,45,48,40,44,44,42,45,44,42,48,51,49,28,43,44,61,48,46,39,48,50,46,50,51,39,50,44,51,47,44,38,48,46,34,51,50,51,50,49,50,45,39,44,33,47,29,52,50,47,47,45,42,39,35,27,38,43,43,45,48,40,37,45,40,39,36,42,34,38,39,39,42,28,33,43,41,40,35,37,30,42,44,42,45,40,38,40,45,41,39,31,40,44,44,46,45,41,42,44,44,43,38,31,39,47,44,47,47,43,46,47,50,49,44,35,46,51,46,46,48,47,47,46,44,51,46,56,54,59,55,55,52,47,64,58,55,48,47,50,52,52,46,53,49,55,45,38,52,53,46,37,50,53,49,52,43
"Biomass : Montana","thousand megawatthours","ELEC.GEN.BIO-MT-99.M",5,6,6,6,6,6,6,6,5,4,5,5,6,5,5,5,5,6,5,6,4,6,6,6,6,6,6,6,6,6,6,6,4,6,7,6,5,5,5,5,5,5,5,5,5,5,5,5,6,6,6,5,6,6,7,7,6,6,6,6,8,7,8,7,7,7,8,9,8,8,8,8,9,9,10,8,9,9,10,10,10,6,9,11,10,10,10,9,10,8,9,5,10,10,10,10,6,6,10,7,0,8,9,9,10,11,10,10,8,7,8,8,8,8,9,8,8,8,8,8,"--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
"Biomass : Nevada","thousand megawatthours","ELEC.GEN.BIO-NV-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,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,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,"NM","NM","NM",2,2,2,2,"NM","NM","NM","NM","NM","NM","NM",2,"NM"
"Biomass : New Mexico","thousand megawatthours","ELEC.GEN.BIO-NM-99.M",2,1,2,2,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,3,3,3,3,3,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,2,2,2,2,2,2,2,2,"NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM"
"Biomass : Utah","thousand megawatthours","ELEC.GEN.BIO-UT-99.M",1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,2,2,2,2,2,2,2,2,2,3,3,3,3,3,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,4,4,4,5,4,4,4,4,4,5,4,5,5,5,5,5,5,5,5,5,5,5,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,5,6,6,6,6,6,6,6,6,6,6,6,5,6,6,6,6,6,6,6,6,6,6,6,5,5,6,6,6,6,6
"Biomass : Wyoming","thousand megawatthours","ELEC.GEN.BIO-WY-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Biomass : Pacific Contiguous","thousand megawatthours","ELEC.GEN.BIO-PCC-99.M",654,528,593,579,558,665,660,682,636,648,578,598,693,600,670,587,586,674,705,689,702,699,675,674,727,639,710,655,565,650,751,752,691,724,707,728,705,651,666,638,598,668,721,709,678,702,646,679,721,651,710,632,636,677,753,751,699,683,682,719,713,651,670,561,601,649,725,736,693,696,685,700,935,596,599,599,557,614,698,688,671,685,678,666,660,625,680,608,561,613,721,745,701,666,683,711,677,686,695,622,577,674,807,781,742,747,708,757,740,699,713,672,613,695,782,822,787,739,724,726,714,651,682,594,614,692,739,781,773,729,734,792,787,752,746,596,636,642,734,788,785,771,738,783,818,711,792,661,690,729,844,874,814,834,819,859,829,714,828,782,783,815,871,893,823,838,788,843,843,716,760,735,822,776,868,863
"Biomass : California","thousand megawatthours","ELEC.GEN.BIO-CA-99.M",492,393,404,400,413,493,483,510,466,463,431,460,521,440,505,435,441,531,552,516,522,508,495,510,528,473,519,472,399,495,564,566,520,532,510,556,521,483,499,474,464,513,533,528,508,513,462,490,498,444,494,443,474,508,527,518,478,477,473,499,508,464,478,403,417,483,514,514,487,468,484,497,752,426,445,411,386,469,493,487,465,450,461,467,459,452,491,447,417,491,538,541,509,471,494,536,503,507,516,476,438,540,585,553,527,503,503,549,513,481,471,434,420,534,567,567,537,497,492,489,495,468,484,431,451,505,551,542,526,508,514,555,543,526,531,431,486,500,551,566,557,534,521,566,560,477,524,456,527,557,592,603,570,588,582,599,593,491,599,549,552,598,627,623,586,591,566,587,607,507,536,506,581,567,611,615
"Biomass : Oregon","thousand megawatthours","ELEC.GEN.BIO-OR-99.M",48,37,80,69,56,63,66,72,66,73,65,56,55,52,57,50,45,45,61,70,67,70,59,41,63,54,65,46,40,42,51,54,53,59,65,46,44,39,43,41,39,40,39,44,36,48,42,41,72,69,73,64,73,66,74,80,72,74,74,75,68,67,76,62,66,68,75,83,75,92,82,84,86,78,66,70,67,59,87,101,93,97,98,80,84,63,78,63,59,37,77,81,83,86,71,65,75,72,71,51,60,44,83,76,76,80,61,53,68,67,75,77,57,53,67,84,78,77,66,68,75,67,71,48,39,48,48,69,68,58,59,62,81,74,77,60,41,53,54,60,85,86,83,77,103,90,102,67,51,52,91,101,86,83,77,92,91,84,93,85,87,90,92,100,91,91,86,90,91,81,80,76,88,86,90,86
"Biomass : Washington","thousand megawatthours","ELEC.GEN.BIO-WA-99.M",114,97,109,110,88,109,111,101,104,112,82,83,117,108,108,102,100,98,92,103,113,121,121,123,135,112,126,137,125,113,136,132,117,133,132,126,140,128,124,122,96,115,149,137,134,141,141,148,151,138,142,125,89,104,151,153,148,132,135,145,137,120,116,96,118,99,135,139,132,136,119,118,97,92,89,118,105,86,118,100,112,137,119,119,117,110,111,98,86,85,106,123,109,109,118,110,99,108,108,95,79,90,139,152,139,164,144,155,159,152,167,160,135,108,148,171,172,166,166,169,143,117,127,115,124,140,139,171,178,162,161,174,163,153,138,105,109,88,129,162,143,150,133,140,156,144,166,138,112,120,162,170,158,163,160,168,145,140,136,148,144,126,152,170,146,156,135,167,145,129,144,153,153,123,167,163
"Biomass : Pacific Noncontiguous","thousand megawatthours","ELEC.GEN.BIO-PCN-99.M",21,21,12,25,28,30,28,27,27,27,21,22,20,22,23,16,31,35,38,35,34,20,15,21,18,18,26,31,37,33,34,32,32,33,33,28,29,28,17,30,30,29,30,30,29,26,30,30,29,27,30,19,24,30,29,23,27,23,27,27,30,29,28,27,31,24,25,21,28,30,30,30,22,14,22,31,32,31,28,22,15,29,30,19,17,16,27,27,32,33,30,30,27,22,28,17,19,17,24,25,27,31,26,29,31,25,17,20,17,12,17,25,34,30,22,35,28,32,17,20,18,28,22,26,32,32,30,33,30,30,21,16,11,15,18,20,31,26,27,31,32,28,25,19,21,19,25,35,36,28,38,36,39,38,33,35,37,27,30,31,34,28,39,33,29,38,35,39,38,35,32,29,34,29,37,42
"Biomass : Alaska","thousand megawatthours","ELEC.GEN.BIO-AK-99.M","--","--","--","--","--","--","--","--","--","--","--","--",1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,5,5,4,5,5,5,5,4,5,5,4,4,4,4,4,4,4,4,5,5,5,5,"NM",5,"NM",4,"NM","NM","NM"
"Biomass : Hawaii","thousand megawatthours","ELEC.GEN.BIO-HI-99.M",21,21,12,25,28,30,28,27,27,27,21,22,19,21,22,15,30,34,37,34,33,19,14,20,17,17,25,30,37,32,33,31,31,32,32,28,28,27,16,29,30,28,29,29,28,25,29,30,29,26,30,18,24,30,28,22,27,22,27,27,30,29,27,26,30,24,24,20,27,29,29,30,21,13,21,30,31,30,27,22,15,28,29,18,17,16,26,27,32,33,29,29,26,22,28,17,19,16,23,24,27,31,26,28,30,24,17,20,17,12,17,25,33,30,21,34,27,31,17,19,18,28,21,26,31,31,29,33,30,29,20,15,11,15,18,19,31,25,27,31,32,28,25,19,18,17,22,30,31,24,33,31,34,33,28,30,32,23,25,27,30,24,35,29,25,33,30,34,32,30,27,26,30,25,33,38
"Wood and wood-derived fuels","thousand megawatthours","ELEC.GEN.WWW-US-99.M","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""
"Wood and wood-derived fuels : United States","thousand megawatthours","ELEC.GEN.WWW-US-99.M",3191,2697,2853,2821,2740,2891,3053,3179,2874,3046,2879,2975,3255,2844,2961,3196,3161,3395,3440,3369,3313,3346,3161,3222,3269,2905,3080,3036,2928,3028,3361,3310,3079,3139,3119,3275,3318,3020,3124,3091,2989,3083,3416,3317,3119,3264,3074,3302,3333,3055,3288,3036,3101,3174,3417,3420,3259,3246,3190,3338,3422,3051,3201,2980,3039,3134,3444,3478,3260,3213,3182,3358,3536,3015,3106,3055,3081,3213,3434,3426,3290,3246,3273,3339,3338,3010,3123,2930,2927,3114,3327,3342,3059,3064,3077,2988,3030,2823,2919,2664,2735,2997,3227,3355,3061,3032,3049,3158,3126,2895,3090,2932,2893,3094,3308,3319,3157,3003,3080,3275,3290,2937,3081,2798,2794,3230,3362,3384,3178,2954,3088,3353,3314,3111,3034,2704,2937,3081,3352,3370,3227,3113,3190,3365,3400,3083,3300,2863,3174,3330,3536,3634,3353,3341,3407,3606,3701,3327,3637,3251,3418,3675,3838,3784,3525,3508,3594,3793,3752,3379,3437,3168,3321,3475,3817,3809
"Wood and wood-derived fuels : New England","thousand megawatthours","ELEC.GEN.WWW-NEW-99.M",456,390,430,327,425,416,412,465,426,331,383,428,434,390,437,369,402,400,428,427,423,393,366,417,401,354,370,306,359,357,402,435,392,347,362,354,374,372,385,293,367,323,354,390,384,364,372,449,424,398,455,335,411,413,456,483,451,382,423,469,441,410,430,323,342,384,405,446,406,412,398,451,458,438,451,360,427,460,476,505,463,427,448,480,485,437,458,410,413,403,462,464,421,383,447,434,460,417,384,327,340,396,406,460,408,385,438,438,451,435,441,352,415,446,448,455,391,343,374,436,454,412,445,283,328,435,470,474,418,339,404,440,414,399,403,306,342,419,449,469,433,399,451,483,468,435,478,306,377,469,490,490,463,411,475,479,503,434,494,337,380,430,472,461,443,444,489,503,506,473,492,365,368,380,466,486
"Wood and wood-derived fuels : Connecticut","thousand megawatthours","ELEC.GEN.WWW-CT-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,"--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,12,7,11,2,14,4,"NM",9,6,11,18,16,14,8,16,9,20,16,17,16
"Wood and wood-derived fuels : Maine","thousand megawatthours","ELEC.GEN.WWW-ME-99.M",327,275,308,228,317,304,298,341,314,224,275,319,338,285,319,273,307,311,330,320,323,300,292,326,291,259,270,235,271,259,288,330,300,251,273,259,250,269,281,218,250,237,249,279,284,255,278,338,312,291,332,255,302,302,334,359,337,280,323,351,332,307,328,257,256,299,310,338,326,301,295,336,331,313,321,248,297,344,345,359,341,296,307,345,354,307,319,294,288,276,328,343,289,255,308,307,320,295,274,244,214,264,272,320,268,255,321,319,295,299,317,256,278,305,319,317,259,210,240,295,321,281,307,219,256,323,329,329,296,229,303,318,233,237,238,167,173,250,271,280,271,263,271,292,319,301,323,204,235,333,345,333,321,282,314,315,311,277,308,231,230,266,303,291,267,240,284,318,314,295,303,226,174,215,260,280
"Wood and wood-derived fuels : Massachusetts","thousand megawatthours","ELEC.GEN.WWW-MA-99.M",13,12,11,9,11,10,11,12,9,12,9,12,10,9,10,9,11,10,10,10,10,11,7,0,11,9,10,11,11,10,11,10,6,10,10,11,10,10,10,10,10,10,10,10,10,10,10,10,10,10,10,9,10,9,11,11,10,10,10,11,12,11,11,7,9,9,11,12,10,11,10,11,12,10,11,11,11,8,9,11,6,11,10,10,12,11,10,10,11,9,11,11,11,6,11,10,9,9,10,10,12,11,10,8,10,6,10,11,11,11,10,11,12,10,7,9,10,12,11,11,8,7,8,9,6,6,10,11,10,7,7,12,58,51,59,50,56,59,64,62,61,47,45,49,3,6,6,1,1,2,9,10,10,11,9,8,8,7,"NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM",7,"NM","NM","NM","NM","NM","NM"
"Wood and wood-derived fuels : New Hampshire","thousand megawatthours","ELEC.GEN.WWW-NH-99.M",75,70,79,65,71,75,75,71,69,68,69,72,66,67,72,73,57,57,59,59,52,46,39,53,55,50,55,39,42,56,61,59,58,59,52,51,63,62,65,51,61,59,62,63,61,61,61,61,66,62,67,57,65,63,69,71,67,65,65,70,49,45,46,34,42,39,46,50,44,58,61,75,76,70,82,73,82,74,89,92,79,78,87,89,84,77,78,75,85,83,90,86,87,88,92,86,84,86,67,51,83,88,93,97,92,84,85,74,97,87,78,62,86,92,82,96,86,87,87,91,82,85,88,40,49,76,90,91,80,86,71,80,93,85,79,71,91,89,80,89,85,87,94,92,102,93,99,79,99,94,99,101,95,90,110,109,126,100,119,78,107,114,126,118,125,145,144,127,130,117,118,105,141,115,144,137
"Wood and wood-derived fuels : Rhode Island","thousand megawatthours","ELEC.GEN.WWW-RI-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Wood and wood-derived fuels : Vermont","thousand megawatthours","ELEC.GEN.WWW-VT-99.M",41,33,32,26,26,28,28,40,34,27,29,26,21,29,36,15,27,21,29,39,38,36,28,38,44,35,34,20,35,32,43,36,28,28,26,33,51,31,29,14,46,17,32,39,29,39,24,40,36,36,45,14,33,37,42,41,37,27,24,37,48,47,44,24,34,35,37,45,25,41,31,28,40,45,37,28,37,34,33,43,37,41,43,36,35,42,51,30,29,35,33,24,35,35,36,31,47,27,33,22,31,32,31,36,38,40,23,34,47,38,37,23,40,38,40,34,36,35,36,39,43,39,41,16,17,30,41,44,32,17,23,30,31,26,27,18,23,21,33,39,15,2,42,50,44,35,50,22,42,39,37,45,37,28,41,45,45,43,47,21,23,37,34,36,37,41,36,33,39,45,47,"NM",27,28,38,43
"Wood and wood-derived fuels : Middle Atlantic","thousand megawatthours","ELEC.GEN.WWW-MAT-99.M",95,91,99,87,101,91,89,101,87,81,91,84,80,83,94,80,114,101,110,111,104,108,94,101,94,86,84,87,96,80,102,103,116,108,98,94,92,92,107,94,92,93,107,105,96,102,100,97,101,96,109,93,96,96,108,106,107,105,97,101,103,99,106,92,101,88,103,105,102,103,97,104,100,87,101,90,93,89,104,97,99,83,81,88,103,86,97,97,101,107,112,110,102,96,105,98,100,89,109,89,81,146,94,114,108,103,92,104,116,103,114,100,86,84,110,102,98,111,96,102,100,97,92,73,84,95,109,102,85,72,71,89,95,79,84,77,65,73,89,101,89,90,82,98,90,79,79,68,80,89,102,95,94,107,99,117,111,105,125,99,95,114,124,121,110,102,112,115,111,108,107,100,84,107,113,116
"Wood and wood-derived fuels : New Jersey","thousand megawatthours","ELEC.GEN.WWW-NJ-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Wood and wood-derived fuels : New York","thousand megawatthours","ELEC.GEN.WWW-NY-99.M",53,47,49,38,50,48,36,44,39,25,37,37,30,27,33,28,11,41,43,42,37,43,36,42,34,31,23,34,34,26,43,40,33,39,38,37,39,38,47,36,35,43,48,46,44,42,39,40,44,41,47,36,40,44,45,45,51,44,43,46,45,46,47,39,38,46,42,45,46,44,39,47,38,34,44,40,40,46,44,44,45,34,39,44,48,44,48,40,43,51,48,46,51,41,50,45,45,39,48,31,20,94,30,49,53,46,31,48,57,52,53,49,36,32,48,42,43,50,39,47,39,42,37,27,28,43,45,37,37,33,33,42,44,37,39,35,32,35,47,50,49,37,38,44,41,41,44,28,44,50,61,53,58,66,57,66,60,62,73,52,52,61,69,68,62,55,57,59,59,60,56,48,47,63,66,69
"Wood and wood-derived fuels : Pennsylvania","thousand megawatthours","ELEC.GEN.WWW-PA-99.M",42,44,51,49,51,43,53,57,48,57,54,47,51,56,61,52,102,60,67,69,67,65,58,59,60,54,61,53,62,54,59,63,83,69,60,57,53,53,61,57,57,50,60,59,52,59,61,58,57,55,62,58,56,52,63,61,57,61,53,54,58,53,59,54,63,42,61,61,56,60,59,57,62,52,57,51,53,42,60,53,55,49,42,44,54,42,49,57,58,56,64,63,52,55,55,53,55,50,61,59,61,52,64,64,55,57,61,56,59,51,61,51,49,51,62,61,56,61,58,55,61,55,55,46,57,53,65,65,47,38,38,48,51,41,45,41,32,38,43,51,40,53,45,54,50,38,36,40,36,39,41,42,36,41,42,52,51,43,51,47,43,52,55,54,49,46,55,55,52,48,52,51,37,45,47,47
"Wood and wood-derived fuels : East North Central","thousand megawatthours","ELEC.GEN.WWW-ENC-99.M",254,216,240,240,225,218,240,249,224,247,238,218,203,146,214,187,180,165,186,186,198,202,194,186,269,245,254,234,224,211,256,268,229,247,243,253,233,231,228,224,194,201,284,264,252,256,250,253,242,234,254,234,225,241,256,266,241,255,228,245,252,219,234,231,241,232,249,269,226,245,247,241,253,230,230,217,229,236,247,244,247,245,249,249,253,239,249,229,229,251,252,256,222,240,248,236,221,221,216,192,196,219,235,235,218,230,240,244,250,238,240,232,250,234,262,247,223,244,254,272,272,244,252,236,234,259,282,279,248,262,263,270,288,260,250,242,257,269,290,279,258,251,278,276,277,254,279,270,272,262,298,282,246,270,249,261,295,279,294,214,281,264,283,296,258,246,272,294,276,255,250,213,229,232,259,277
"Wood and wood-derived fuels : Illinois","thousand megawatthours","ELEC.GEN.WWW-IL-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
"Wood and wood-derived fuels : Indiana","thousand megawatthours","ELEC.GEN.WWW-IN-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
"Wood and wood-derived fuels : Michigan","thousand megawatthours","ELEC.GEN.WWW-MI-99.M",145,126,143,151,148,132,154,154,133,155,145,115,131,85,144,124,119,115,126,126,132,132,131,110,160,147,151,139,129,131,158,166,136,150,146,154,152,149,147,150,118,128,174,175,168,170,166,171,153,143,151,139,142,139,163,168,143,151,128,156,154,139,137,136,143,139,141,155,135,135,149,140,147,144,137,128,133,141,136,139,149,142,146,149,153,141,154,138,138,143,146,149,124,142,140,142,133,121,120,95,115,122,125,128,120,131,134,145,148,140,134,128,150,141,151,143,120,129,139,147,153,137,139,125,128,138,161,153,126,145,134,140,151,136,123,121,148,150,161,148,134,133,152,139,147,127,144,138,142,147,163,146,143,150,132,147,163,149,155,104,154,147,146,149,145,142,149,154,147,134,132,105,110,103,128,134
"Wood and wood-derived fuels : Ohio","thousand megawatthours","ELEC.GEN.WWW-OH-99.M",39,32,38,35,31,30,30,33,35,31,33,35,10,9,11,11,11,11,14,9,12,11,8,9,35,32,33,34,35,26,33,37,37,38,33,36,35,35,33,31,29,33,34,35,34,37,33,28,25,32,37,36,27,35,37,37,33,38,36,31,34,31,32,34,30,35,35,36,32,36,37,36,39,32,33,33,30,33,36,35,34,31,29,35,36,34,35,30,25,42,36,36,35,33,37,38,34,35,35,37,28,30,34,35,33,36,36,37,36,33,36,34,28,32,34,32,34,32,33,36,36,31,30,32,26,33,35,34,34,27,36,37,35,29,30,27,31,24,30,30,28,27,28,32,34,28,30,29,28,23,28,30,28,27,28,30,31,26,33,28,30,27,32,33,29,30,29,31,30,30,29,27,25,27,29,29
"Wood and wood-derived fuels : Wisconsin","thousand megawatthours","ELEC.GEN.WWW-WI-99.M",70,58,59,55,46,55,57,61,56,60,60,67,62,52,59,52,50,39,45,52,54,59,55,67,74,66,70,61,60,54,64,65,56,60,64,63,47,47,48,43,47,39,75,53,51,49,50,54,63,60,66,59,56,67,56,61,65,66,63,58,64,49,65,61,68,59,72,79,59,73,61,65,67,54,60,57,66,61,75,70,64,72,74,65,64,64,60,60,66,65,69,72,63,66,71,56,55,65,61,60,53,67,76,71,65,63,70,62,66,66,70,70,72,61,77,73,69,82,82,90,82,76,82,79,80,89,86,92,87,91,93,93,101,95,96,95,79,95,99,101,96,91,98,104,96,99,105,102,102,93,107,106,75,93,89,84,101,104,106,83,97,90,106,114,84,74,94,109,99,91,88,81,94,102,102,114
"Wood and wood-derived fuels : West North Central","thousand megawatthours","ELEC.GEN.WWW-WNC-99.M",49,45,53,43,47,47,37,49,50,43,52,60,60,51,46,38,26,20,19,25,18,30,22,22,57,51,55,52,56,53,54,60,52,54,56,57,53,50,61,53,47,58,52,58,61,48,51,61,46,50,59,45,54,56,61,56,52,54,60,64,48,51,54,38,45,50,52,57,49,46,47,52,59,58,64,57,58,65,65,63,56,57,62,65,64,60,61,48,51,76,68,64,65,53,58,59,65,63,60,34,54,77,73,69,72,61,82,90,81,77,89,63,67,88,86,75,78,66,75,86,76,72,69,47,66,65,58,57,57,52,56,72,70,66,75,51,61,66,76,74,71,70,74,85,90,78,107,70,68,88,80,97,114,71,92,89,98,90,100,82,80,107,103,98,107,90,93,99,97,88,89,80,95,95,103,97
"Wood and wood-derived fuels : Iowa","thousand megawatthours","ELEC.GEN.WWW-IA-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,"--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,"--","--","--","--","--","--","--","--",0,0,"--","--","--","--","--","--","--","--",0,0,"--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
"Wood and wood-derived fuels : Kansas","thousand megawatthours","ELEC.GEN.WWW-KS-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Wood and wood-derived fuels : Minnesota","thousand megawatthours","ELEC.GEN.WWW-MN-99.M",49,45,53,43,47,47,37,49,50,43,52,60,60,51,46,38,26,20,19,25,18,30,22,22,56,51,55,52,56,53,54,60,52,54,56,57,53,50,61,53,47,58,52,58,61,48,51,61,46,50,59,45,54,56,61,56,52,54,60,64,48,51,54,38,45,50,52,57,49,46,47,51,59,58,63,57,58,65,65,63,56,57,62,65,64,60,61,48,51,76,68,64,65,52,57,59,64,62,60,34,53,77,72,68,72,61,82,90,81,77,89,63,67,88,86,75,78,66,75,86,76,72,69,47,66,65,58,57,57,52,56,72,70,66,75,51,61,66,76,74,71,70,74,85,90,78,107,70,68,88,80,97,114,69,89,86,95,86,96,82,75,103,99,95,104,88,93,97,93,84,87,78,88,95,97,97
"Wood and wood-derived fuels : Missouri","thousand megawatthours","ELEC.GEN.WWW-MO-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,3,3,3,3,4,"NM",5,4,4,4,2,2,"NM",2,4,4,"NM","NM",8,"NM",6,"NM"
"Wood and wood-derived fuels : Nebraska","thousand megawatthours","ELEC.GEN.WWW-NE-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
"Wood and wood-derived fuels : North Dakota","thousand megawatthours","ELEC.GEN.WWW-ND-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Wood and wood-derived fuels : South Dakota","thousand megawatthours","ELEC.GEN.WWW-SD-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Wood and wood-derived fuels : South Atlantic","thousand megawatthours","ELEC.GEN.WWW-SAT-99.M",782,673,665,728,702,683,728,719,626,761,693,714,840,736,706,1159,1092,1229,1103,1091,1039,1128,1064,1088,887,810,841,900,831,821,922,848,789,798,804,916,933,826,855,893,901,879,967,889,824,888,811,899,902,828,878,883,840,864,968,935,902,880,879,901,955,858,910,904,860,881,993,953,898,852,897,919,881,831,862,900,858,895,950,939,913,897,909,932,905,836,808,835,821,875,914,906,825,834,844,837,810,772,811,787,808,832,878,926,813,817,816,879,862,748,833,837,812,853,910,910,875,817,879,924,930,826,846,873,857,962,973,977,906,826,841,977,957,887,866,841,920,914,973,946,921,889,892,956,972,887,921,880,987,978,1002,1060,955,1027,1055,1127,1150,1031,1111,1059,1080,1193,1180,1149,1092,1088,1136,1174,1193,1017,1074,1004,1080,1189,1238,1212
"Wood and wood-derived fuels : Delaware","thousand megawatthours","ELEC.GEN.WWW-DE-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Wood and wood-derived fuels : District Of Columbia","thousand megawatthours","ELEC.GEN.WWW-DC-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Wood and wood-derived fuels : Florida","thousand megawatthours","ELEC.GEN.WWW-FL-99.M",164,139,136,166,162,156,159,156,114,172,146,160,133,117,130,97,159,181,157,101,129,129,104,114,190,151,173,197,171,186,205,205,190,172,176,195,196,160,167,184,174,191,216,201,161,186,184,197,176,151,151,157,165,169,187,190,176,167,168,165,169,133,172,162,157,172,178,188,189,156,147,155,158,147,149,159,162,164,156,164,172,163,161,173,157,153,165,164,170,187,196,174,167,160,148,129,156,137,136,138,163,181,180,188,174,164,163,175,163,146,170,154,154,157,179,190,178,177,176,174,182,151,160,177,196,189,202,210,183,193,184,182,175,166,174,150,171,178,194,184,173,179,136,179,184,156,167,191,189,184,187,185,182,166,167,182,224,206,219,213,203,220,237,241,224,199,231,236,226,199,219,202,201,225,237,198
"Wood and wood-derived fuels : Georgia","thousand megawatthours","ELEC.GEN.WWW-GA-99.M",258,254,254,255,246,247,256,247,219,266,241,230,329,223,243,676,586,686,559,615,541,632,558,572,265,233,245,277,260,254,272,231,227,240,243,291,286,246,278,292,255,261,282,247,258,244,212,247,258,250,275,282,247,258,289,276,271,280,263,246,288,263,267,282,265,258,300,275,287,279,283,314,254,267,278,292,270,271,295,283,283,292,274,302,233,216,225,227,225,206,207,220,224,234,217,225,204,199,235,189,222,237,224,239,246,243,250,257,252,222,261,259,237,249,264,250,271,261,250,278,269,229,232,225,249,275,259,263,267,253,259,291,269,239,223,237,270,268,274,252,257,262,270,288,280,241,254,274,311,271,303,300,256,297,308,315,319,269,303,278,331,328,332,331,316,327,338,348,347,279,337,319,342,349,336,350
"Wood and wood-derived fuels : Maryland","thousand megawatthours","ELEC.GEN.WWW-MD-99.M",1,1,1,1,1,1,1,1,1,1,1,1,14,47,14,16,12,12,12,12,10,9,10,16,18,16,19,24,17,13,21,22,19,17,20,19,15,15,16,17,15,15,18,18,16,17,15,16,17,17,16,18,17,16,15,19,17,17,19,18,18,17,20,20,17,19,19,18,15,20,18,17,19,14,17,17,17,17,18,17,18,16,19,15,17,15,16,18,10,18,18,19,18,15,18,17,13,15,17,15,11,17,12,17,16,13,14,16,14,11,15,16,13,17,16,17,15,15,14,1,15,13,11,20,14,17,18,13,10,6,13,17,13,13,11,14,10,15,16,15,12,13,13,13,14,14,15,4,7,13,15,16,7,13,11,14,15,14,17,14,10,13,7,14,13,13,14,11,15,11,13,9,9,8,12,"NM"
"Wood and wood-derived fuels : North Carolina","thousand megawatthours","ELEC.GEN.WWW-NC-99.M",136,125,124,155,125,108,143,144,135,158,142,147,162,150,141,161,132,128,125,128,133,134,149,140,140,178,161,167,149,131,164,149,149,162,155,156,148,131,124,145,162,132,146,124,109,142,130,128,154,129,131,144,120,143,161,141,149,150,140,146,160,143,141,142,129,133,165,148,135,148,142,151,148,115,118,140,128,129,150,129,116,145,132,136,171,140,132,152,125,149,172,152,118,150,171,169,158,132,142,156,161,157,156,162,130,128,112,163,155,140,135,141,154,169,173,175,155,142,153,185,172,159,169,160,142,173,184,174,160,145,142,172,191,186,187,191,184,195,197,204,172,187,183,185,198,183,195,163,162,176,176,193,179,194,189,191,180,173,177,190,167,188,194,153,142,159,157,184,171,160,131,146,140,168,171,177
"Wood and wood-derived fuels : South Carolina","thousand megawatthours","ELEC.GEN.WWW-SC-99.M",113,61,61,73,78,72,68,73,66,68,63,69,109,104,76,83,117,112,121,115,111,94,97,90,114,103,101,97,115,103,111,113,102,91,90,104,147,136,128,147,163,140,146,143,137,150,110,149,158,143,139,149,146,144,150,151,141,112,130,161,159,147,153,162,146,151,162,162,148,110,164,140,168,145,156,146,153,168,168,172,167,142,163,148,152,149,127,132,139,142,155,166,135,132,129,137,135,141,139,135,144,101,152,151,115,140,141,118,136,131,127,139,150,140,153,153,147,134,160,171,172,151,147,160,166,175,177,182,165,150,153,190,198,181,154,182,154,138,159,155,170,136,155,159,162,161,172,173,168,174,170,183,141,160,176,175,187,169,169,183,186,189,152,160,174,145,150,154,165,149,142,124,157,159,169,169
"Wood and wood-derived fuels : Virginia","thousand megawatthours","ELEC.GEN.WWW-VA-99.M",110,92,88,78,90,98,101,99,90,95,100,106,93,95,103,126,85,110,129,120,115,130,146,156,160,129,142,138,119,135,150,126,103,116,120,151,141,139,143,108,133,140,160,157,143,149,160,161,140,138,165,132,144,133,166,159,147,154,159,165,160,154,157,137,146,149,169,161,124,139,142,142,135,143,145,146,129,147,163,174,156,139,159,157,175,164,142,143,152,172,166,175,162,143,161,160,145,149,143,154,108,140,154,168,133,129,137,150,142,98,126,129,103,120,125,126,109,88,125,114,120,123,126,131,90,134,133,136,121,78,90,125,110,102,118,67,132,121,132,137,138,112,136,132,133,131,119,76,150,160,151,182,191,197,204,250,225,200,227,180,183,255,259,250,222,245,245,241,269,219,231,204,230,280,313,316
"Wood and wood-derived fuels : West Virginia","thousand megawatthours","ELEC.GEN.WWW-WV-99.M",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,-0,0,0,0,0,"--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Wood and wood-derived fuels : East South Central","thousand megawatthours","ELEC.GEN.WWW-ESC-99.M",587,478,485,493,464,561,587,577,506,566,533,558,593,523,496,456,452,481,537,521,473,430,389,429,509,430,462,444,438,467,517,502,478,494,498,491,571,502,484,557,513,522,578,561,505,548,535,526,571,492,510,484,535,520,516,516,503,524,511,518,594,481,489,512,544,540,584,570,535,555,505,557,560,491,502,550,549,550,594,569,524,534,542,545,560,487,517,463,474,500,534,516,489,528,455,416,457,399,457,408,487,447,505,522,487,487,465,458,435,399,429,412,411,438,444,452,436,415,423,439,503,443,467,477,438,465,482,488,444,420,474,480,458,457,400,384,457,432,465,445,446,394,436,437,459,426,448,406,461,480,492,486,461,418,462,475,525,470,500,498,512,510,538,536,477,496,482,514,516,464,468,493,466,488,537,522
"Wood and wood-derived fuels : Alabama","thousand megawatthours","ELEC.GEN.WWW-AL-99.M",399,330,354,345,306,351,370,370,314,341,331,361,393,341,309,303,299,318,355,335,307,239,239,289,320,283,308,304,269,289,323,318,307,298,317,312,323,307,303,325,314,314,330,330,286,305,310,309,327,303,311,277,313,310,283,292,311,299,303,299,357,293,314,299,319,321,348,339,326,325,297,326,326,291,299,303,324,319,348,337,316,297,313,311,304,252,292,261,279,286,299,298,281,286,251,233,257,212,236,213,260,254,281,283,282,279,245,234,218,186,194,195,189,198,212,208,195,175,190,206,264,224,232,240,236,244,245,247,223,193,224,235,243,243,208,223,235,235,242,240,243,185,226,244,254,234,230,221,232,247,262,261,252,202,227,232,289,251,256,265,297,275,290,288,275,258,250,288,276,243,266,264,253,255,289,287
"Wood and wood-derived fuels : Kentucky","thousand megawatthours","ELEC.GEN.WWW-KY-99.M",1,1,1,1,1,1,1,1,1,1,1,1,31,30,35,32,22,35,37,32,31,33,33,14,34,20,1,10,22,30,30,30,28,32,32,29,32,30,32,25,21,27,28,28,28,32,30,34,35,31,35,20,29,28,28,29,29,29,32,34,33,29,34,32,30,26,31,33,21,32,33,34,26,30,33,33,32,31,30,30,23,34,33,35,39,34,32,34,30,29,29,28,18,35,20,23,21,27,31,31,30,28,26,28,4,1,4,31,29,30,34,31,31,32,33,29,33,21,19,27,32,32,32,29,29,27,30,21,9,29,35,36,37,26,1,1,27,27,30,9,13,22,22,23,19,20,21,20,21,17,17,8,1,13,36,35,37,31,36,33,36,28,31,31,4,29,35,31,37,33,32,33,32,32,31,24
"Wood and wood-derived fuels : Mississippi","thousand megawatthours","ELEC.GEN.WWW-MS-99.M",115,91,79,85,89,140,150,138,125,156,132,133,108,101,81,72,72,71,84,91,67,75,54,59,91,73,83,68,80,86,96,87,82,98,85,85,146,103,90,137,107,121,153,134,129,145,125,121,145,99,102,131,129,126,146,135,115,139,124,125,141,103,97,124,132,132,148,136,130,139,118,134,137,100,103,132,121,129,139,132,115,129,119,132,141,126,125,101,92,111,130,111,111,129,110,98,111,96,120,114,118,90,123,132,126,131,137,119,121,116,131,110,105,125,127,134,131,135,141,128,128,112,131,130,91,118,138,137,132,131,131,123,125,134,134,120,133,111,132,127,124,125,125,104,105,95,128,111,129,133,130,131,129,107,115,119,120,115,139,123,102,128,135,134,120,129,119,114,124,116,99,128,106,125,133,129
"Wood and wood-derived fuels : Tennessee","thousand megawatthours","ELEC.GEN.WWW-TN-99.M",72,56,51,62,69,69,66,68,67,69,69,64,61,51,70,49,60,57,61,63,69,83,63,66,64,54,70,62,67,62,68,66,61,66,63,65,69,62,60,70,71,60,66,68,61,66,70,62,64,59,61,55,64,56,59,61,48,56,52,59,62,55,44,56,63,60,58,62,58,60,57,63,72,70,66,82,72,71,76,71,69,74,78,67,75,75,68,67,74,73,76,78,79,78,73,62,67,64,71,50,79,75,75,79,74,76,78,74,67,66,69,76,85,83,72,82,77,85,73,78,79,75,73,78,82,75,69,83,80,66,85,85,54,55,56,40,61,58,60,69,66,63,64,67,80,77,68,55,79,83,84,85,78,95,83,90,79,72,69,77,77,79,82,83,78,80,78,81,80,72,72,68,75,77,83,82
"Wood and wood-derived fuels : West South Central","thousand megawatthours","ELEC.GEN.WWW-WSC-99.M",459,418,426,452,363,351,445,481,459,523,444,452,487,441,446,441,436,464,498,483,502,497,493,455,490,438,470,501,490,518,527,522,515,529,511,555,512,453,500,490,428,493,504,490,476,506,456,466,485,444,480,477,464,478,466,475,450,491,461,483,494,446,480,457,463,479,495,499,503,466,475,503,489,446,480,441,459,463,475,488,485,470,483,491,470,407,437,418,431,445,434,456,396,437,403,370,372,342,367,382,369,381,417,404,388,383,379,358,374,353,396,424,396,441,459,450,454,448,454,466,427,382,436,401,368,446,445,427,442,448,450,441,440,411,405,386,387,426,454,474,431,455,466,474,467,430,421,413,471,458,469,519,448,445,410,460,430,404,427,423,428,482,515,477,440,446,461,478,448,461,427,400,402,436,470,472
"Wood and wood-derived fuels : Arkansas","thousand megawatthours","ELEC.GEN.WWW-AR-99.M",136,125,119,135,68,87,97,157,135,160,141,143,171,137,127,141,105,113,128,120,132,142,135,128,161,140,145,149,123,135,154,146,141,149,146,161,162,141,151,153,132,147,157,151,138,161,146,140,145,128,144,143,134,139,143,141,143,156,143,148,155,136,140,119,129,133,149,146,140,144,147,150,145,129,141,127,137,119,126,135,128,122,139,133,133,123,128,132,121,108,117,129,113,125,122,114,137,123,140,133,124,110,130,133,126,128,127,118,120,115,133,128,125,125,144,132,130,139,137,140,134,122,135,135,122,138,142,130,132,123,135,138,139,132,126,135,133,122,132,133,125,128,138,146,141,126,118,121,128,134,131,133,121,108,118,116,118,113,124,126,120,121,131,126,108,126,131,140,129,126,114,115,117,114,125,112
"Wood and wood-derived fuels : Louisiana","thousand megawatthours","ELEC.GEN.WWW-LA-99.M",220,199,217,231,196,192,242,231,236,257,209,210,238,211,209,206,233,236,247,241,247,237,237,207,232,207,222,237,257,264,265,268,260,263,257,282,250,223,250,249,201,250,249,241,251,255,220,250,253,229,233,240,235,235,233,231,212,243,225,238,243,216,235,243,233,244,242,252,254,232,235,252,238,225,256,226,227,242,246,244,251,249,241,253,224,203,222,208,225,251,232,239,205,240,203,187,172,159,171,187,185,207,220,205,202,200,198,191,168,153,164,206,189,217,209,214,221,209,216,227,196,173,199,183,168,218,203,195,202,217,205,214,205,185,184,160,160,180,193,194,211,224,235,237,234,221,218,198,240,219,235,224,230,250,201,235,220,199,206,204,218,211,233,236,230,228,211,228,226,211,224,201,188,223,234,227
"Wood and wood-derived fuels : Oklahoma","thousand megawatthours","ELEC.GEN.WWW-OK-99.M",20,19,17,15,20,12,27,22,17,23,21,19,15,20,20,15,11,22,25,21,21,24,21,24,24,17,26,23,24,23,19,23,21,19,25,24,24,21,18,24,23,24,24,22,16,21,26,7,22,24,21,25,23,26,22,26,26,25,25,26,27,24,27,19,29,26,24,22,26,27,25,24,22,22,6,13,22,27,29,27,28,26,28,26,22,0,0,0,0,0,0,0,0,0,0,0,6,5,5,8,4,6,9,7,5,4,4,5,23,19,22,24,17,21,19,19,23,24,23,21,23,19,23,9,2,11,22,23,24,26,24,21,21,21,21,23,19,23,23,25,22,23,24,23,21,19,7,19,20,18,21,18,19,21,18,18,17,16,17,17,17,17,19,18,17,17,17,18,18,16,16,16,"NM",16,18,17
"Wood and wood-derived fuels : Texas","thousand megawatthours","ELEC.GEN.WWW-TX-99.M",83,74,73,71,79,59,80,71,70,84,73,80,62,74,89,79,86,93,98,100,102,95,100,96,73,75,78,91,86,97,89,85,93,98,83,89,76,67,80,64,72,73,74,76,72,69,65,69,65,63,82,69,72,79,68,78,69,68,68,71,69,70,79,76,72,76,80,79,84,63,68,77,84,70,76,74,73,74,74,83,79,74,76,78,91,81,86,79,84,86,85,88,78,72,77,69,57,55,51,54,55,58,59,60,55,52,50,44,63,66,77,66,65,79,87,85,81,76,78,77,74,68,79,74,76,79,79,79,84,83,87,68,74,72,74,68,76,101,106,123,73,80,69,68,71,63,78,76,83,88,83,144,78,66,73,90,74,76,79,76,73,132,132,97,86,76,101,93,75,108,74,69,82,83,94,117
"Wood and wood-derived fuels : Mountain","thousand megawatthours","ELEC.GEN.WWW-MTN-99.M",49,45,55,52,49,54,59,60,54,41,42,41,41,33,45,47,44,52,60,49,49,54,46,50,50,48,51,50,48,54,57,55,31,50,51,67,53,51,44,53,55,52,55,56,44,55,50,56,54,51,45,54,53,41,59,57,58,57,56,57,54,47,53,41,55,37,61,60,56,56,54,50,48,44,37,47,52,52,55,58,50,43,54,52,49,46,52,44,52,54,58,59,50,53,64,62,55,51,57,44,54,64,64,69,61,62,60,71,61,55,48,54,66,65,66,61,59,62,57,64,49,47,39,46,51,53,58,58,52,54,56,56,58,51,43,51,57,51,52,53,52,50,50,49,47,45,53,42,42,39,38,44,42,64,54,54,49,49,49,48,53,47,53,49,56,43,39,54,54,47,40,46,53,50,54,44
"Wood and wood-derived fuels : Arizona","thousand megawatthours","ELEC.GEN.WWW-AZ-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,"--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,4,6,10,11,12,10,11,12,9,9,10,8,12,12,13,14,12,13,9,15,13,9,11,9,15,13,13,9,12,14,7,13,10,12,12,10,8,13,15,15,13,13,13,10,15,13,15,12,14,12,14,14,13,11,11,13,10,12,14,4,0,0,0,10,12,16,11,15,15,13,13,9,15,15,15,15,16,12,15,17,15,14,16,10,14,16,16,16
"Wood and wood-derived fuels : Colorado","thousand megawatthours","ELEC.GEN.WWW-CO-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,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,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
"Wood and wood-derived fuels : Idaho","thousand megawatthours","ELEC.GEN.WWW-ID-99.M",43,39,49,46,43,48,52,54,49,37,37,36,35,28,41,42,38,46,56,43,45,48,40,44,44,42,45,44,42,48,51,49,28,43,44,61,48,46,39,48,50,46,50,51,39,50,44,51,47,44,38,48,46,34,51,50,51,50,49,50,45,39,44,33,47,29,52,50,47,47,45,42,39,35,27,38,43,43,45,48,40,37,45,40,39,36,42,34,38,39,39,42,28,33,43,41,40,35,37,30,42,44,42,45,40,38,40,45,39,38,29,38,42,42,44,43,39,40,42,42,39,35,28,36,43,39,43,43,39,42,43,46,42,38,28,39,43,39,38,40,39,39,38,36,37,33,39,38,42,39,38,34,30,47,41,36,34,35,36,38,38,32,38,34,41,31,24,37,38,33,24,37,39,35,37,28
"Wood and wood-derived fuels : Montana","thousand megawatthours","ELEC.GEN.WWW-MT-99.M",5,6,6,6,6,6,6,6,5,4,5,5,6,5,5,5,5,6,5,6,4,6,6,6,6,6,6,6,6,6,6,6,4,6,7,6,5,5,5,5,5,5,5,5,5,5,5,5,6,6,6,5,6,6,7,7,6,6,6,6,8,7,8,7,7,7,8,9,8,8,8,8,9,9,10,8,9,9,10,10,10,6,9,11,10,10,10,9,10,8,9,5,10,10,10,10,6,6,10,7,0,8,9,9,10,11,10,10,8,7,8,8,8,8,9,8,8,8,8,8,"--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
"Wood and wood-derived fuels : Nevada","thousand megawatthours","ELEC.GEN.WWW-NV-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Wood and wood-derived fuels : New Mexico","thousand megawatthours","ELEC.GEN.WWW-NM-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Wood and wood-derived fuels : Utah","thousand megawatthours","ELEC.GEN.WWW-UT-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Wood and wood-derived fuels : Wyoming","thousand megawatthours","ELEC.GEN.WWW-WY-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Wood and wood-derived fuels : Pacific Contiguous","thousand megawatthours","ELEC.GEN.WWW-PCC-99.M",461,343,400,398,364,470,456,478,444,453,403,422,517,442,477,420,417,483,499,476,506,504,493,474,513,444,493,464,387,466,523,516,476,510,497,488,497,444,459,435,392,464,515,504,477,498,449,495,507,462,498,430,422,465,526,525,494,497,475,501,481,440,446,381,389,442,502,517,484,476,462,481,686,391,380,393,356,404,468,462,453,489,445,439,448,413,445,385,355,404,493,513,489,440,454,475,490,470,458,400,346,435,555,557,505,503,477,516,496,486,500,457,390,446,523,566,543,497,468,487,479,416,433,361,367,450,485,521,527,481,473,528,535,502,508,367,390,430,503,527,527,515,461,506,530,450,513,407,416,466,564,562,531,529,513,544,540,465,537,490,510,528,570,596,541,553,510,562,550,467,489,467,543,497,580,583
"Wood and wood-derived fuels : California","thousand megawatthours","ELEC.GEN.WWW-CA-99.M",313,225,230,240,238,316,298,319,289,286,271,298,364,296,330,286,292,360,366,322,342,334,333,332,336,297,327,305,245,331,354,353,327,341,324,340,335,299,315,294,279,331,350,346,329,332,288,329,306,275,306,263,283,319,327,324,298,314,291,305,300,275,277,245,230,299,318,319,300,273,285,302,525,240,246,232,207,281,300,294,278,279,261,264,273,260,284,249,239,301,337,334,321,271,290,324,342,309,302,282,234,323,359,352,316,287,295,332,305,296,292,249,231,320,341,339,326,293,273,286,288,262,265,224,232,293,328,313,308,300,295,335,329,315,329,241,283,324,361,346,340,318,284,328,322,263,297,251,296,332,359,345,335,331,327,334,349,279,355,303,324,356,372,374,349,354,336,351,361,297,307,280,347,331,369,380
"Wood and wood-derived fuels : Oregon","thousand megawatthours","ELEC.GEN.WWW-OR-99.M",44,33,76,64,52,58,62,67,63,68,61,52,51,49,53,46,41,41,57,66,63,66,54,37,58,47,57,39,33,35,44,47,46,52,57,39,37,32,36,34,32,32,32,37,29,41,35,33,65,63,66,57,66,58,65,66,64,66,66,67,60,59,69,54,56,60,65,75,67,83,74,77,78,71,58,60,57,46,68,85,76,90,80,73,72,53,67,52,47,29,65,70,72,74,61,54,63,62,62,40,48,37,72,65,65,69,52,40,51,55,59,62,42,34,51,64,62,57,47,49,56,49,52,31,23,28,29,49,51,41,41,42,61,54,63,41,21,34,33,40,65,68,64,56,76,65,76,43,32,34,66,73,62,57,51,65,67,64,68,60,63,66,67,74,67,65,61,65,66,59,58,53,63,62,65,61
"Wood and wood-derived fuels : Washington","thousand megawatthours","ELEC.GEN.WWW-WA-99.M",104,84,95,93,74,95,97,91,92,99,70,71,102,97,94,87,84,81,76,88,100,105,105,106,119,100,109,119,109,100,126,116,103,117,116,109,124,113,108,107,81,100,133,122,118,125,126,133,137,124,126,110,73,87,134,136,133,118,118,130,121,106,101,82,103,83,119,123,117,120,103,102,84,80,75,101,91,76,101,83,99,121,104,102,102,101,93,84,69,74,90,108,96,96,103,96,85,98,94,79,63,75,125,140,124,148,129,144,140,135,150,147,118,92,131,162,154,147,148,152,134,105,116,106,112,128,128,158,168,139,137,150,146,133,116,85,87,72,109,141,122,129,113,122,132,121,141,113,88,101,139,144,134,140,135,144,124,122,115,127,123,106,131,148,125,134,113,146,124,111,125,133,133,103,146,142
"Wood and wood-derived fuels : Pacific Noncontiguous","thousand megawatthours","ELEC.GEN.WWW-PCN-99.M","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"--",0,"--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
"Wood and wood-derived fuels : Alaska","thousand megawatthours","ELEC.GEN.WWW-AK-99.M","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"--",0,"--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
"Wood and wood-derived fuels : Hawaii","thousand megawatthours","ELEC.GEN.WWW-HI-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,"--","--","--","--","--","--","--","--","--","--"
"Other biomass","thousand megawatthours","ELEC.GEN.WAS-US-99.M","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""
"Other biomass : United States","thousand megawatthours","ELEC.GEN.WAS-US-99.M",1209,1096,1189,1187,1211,1225,1286,1285,1201,1215,1192,1253,1233,1086,1252,1162,1247,1298,1378,1396,1285,1213,1215,1279,1328,1163,1340,1318,1301,1290,1404,1383,1303,1281,1285,1415,1263,1223,1291,1291,1359,1306,1327,1329,1239,1248,1258,1287,1278,1123,1278,1223,1351,1329,1381,1348,1283,1205,1290,1330,1388,1270,1344,1227,1371,1328,1399,1389,1308,1332,1359,1382,1371,1200,1373,1254,1349,1392,1443,1440,1400,1426,1425,1452,1407,1364,1472,1504,1475,1502,1608,1529,1427,1490,1449,1506,1462,1357,1553,1542,1522,1558,1628,1604,1501,1533,1572,1608,1503,1382,1592,1558,1577,1627,1640,1642,1575,1547,1625,1650,1515,1427,1565,1503,1563,1632,1690,1692,1589,1631,1684,1731,1601,1504,1623,1583,1654,1612,1721,1726,1626,1716,1684,1773,1688,1503,1757,1681,1781,1727,1797,1847,1716,1731,1765,1837,1752,1484,1802,1783,1781,1767,1887,1864,1751,1809,1798,1792,1818,1523,1641,1669,1759,1722,1849,1814
"Other biomass : New England","thousand megawatthours","ELEC.GEN.WAS-NEW-99.M",221,208,229,265,214,216,219,218,209,219,220,220,210,184,219,205,218,211,217,216,209,210,229,242,196,179,207,205,208,206,212,212,211,207,217,218,197,202,222,223,229,216,213,224,199,205,202,203,185,165,186,190,206,200,204,201,194,202,196,200,206,194,205,203,219,209,218,216,202,206,210,209,205,174,209,173,206,204,206,206,207,207,211,208,195,186,196,191,206,211,212,211,192,211,211,209,188,176,208,216,215,206,216,212,206,205,202,208,177,181,204,204,207,210,206,211,199,206,205,207,171,129,188,187,189,193,198,195,189,197,194,203,176,174,198,182,198,190,197,191,183,191,194,186,162,143,179,175,185,189,184,182,174,195,188,185,189,161,210,199,209,200,209,211,197,193,201,197,199,166,177,187,191,191,198,201
"Other biomass : Connecticut","thousand megawatthours","ELEC.GEN.WAS-CT-99.M",75,77,96,92,72,71,72,72,69,69,70,73,67,59,73,67,71,70,73,71,66,66,68,71,62,60,67,67,67,64,70,65,66,66,65,66,55,57,63,67,66,64,63,64,63,67,62,60,56,48,56,64,68,65,68,64,62,65,64,65,58,59,62,64,67,66,66,65,61,63,64,60,65,55,63,59,66,63,59,61,61,57,60,60,55,52,60,64,65,65,64,60,58,64,61,62,60,59,60,65,69,63,65,65,63,63,64,63,55,55,63,66,68,64,61,65,59,59,60,63,47,36,51,59,61,58,58,59,53,59,57,61,53,50,60,56,60,58,59,57,54,51,55,51,51,44,56,56,59,55,54,58,51,54,56,53,55,48,61,53,59,61,58,60,57,55,58,56,55,48,52,47,49,51,54,54
"Other biomass : Maine","thousand megawatthours","ELEC.GEN.WAS-ME-99.M",21,18,19,50,19,21,25,24,25,26,24,25,25,24,27,27,28,27,28,29,26,28,26,25,22,20,26,22,23,28,30,29,28,21,25,25,34,39,43,40,44,38,39,44,23,23,23,22,32,19,22,23,25,24,24,26,24,24,24,24,23,21,19,25,25,25,26,25,24,23,23,25,20,17,21,20,21,23,25,24,24,23,23,20,21,19,21,16,20,25,24,23,22,22,24,21,20,19,22,24,19,23,23,26,26,23,25,24,23,19,19,20,21,23,24,25,23,24,22,22,20,18,21,20,21,26,27,25,27,22,26,25,21,20,24,20,24,22,24,24,21,22,24,21,17,15,15,15,19,19,20,20,19,21,21,18,18,15,19,18,21,19,20,19,19,16,16,17,16,14,15,17,17,17,19,18
"Other biomass : Massachusetts","thousand megawatthours","ELEC.GEN.WAS-MA-99.M",100,92,90,97,98,102,99,101,94,104,105,100,99,84,100,91,100,96,99,99,100,99,95,104,90,78,92,96,96,94,89,95,95,99,105,104,88,86,94,95,97,93,88,94,92,94,95,99,85,86,96,91,100,97,98,97,95,100,95,97,100,89,98,93,103,92,99,98,92,94,97,99,93,81,97,72,93,93,95,95,96,100,102,102,92,91,88,86,95,94,97,100,90,98,99,99,82,75,98,100,101,94,100,94,91,92,87,95,75,85,96,97,93,98,96,95,95,98,98,99,83,57,94,91,85,88,90,89,87,92,88,94,79,83,91,85,92,88,91,88,88,95,93,92,78,70,93,92,93,87,91,90,88,96,89,92,86,74,97,95,95,86,96,97,93,93,94,90,94,75,77,93,91,89,91,95
"Other biomass : New Hampshire","thousand megawatthours","ELEC.GEN.WAS-NH-99.M",16,13,14,17,16,13,14,13,13,12,13,13,10,9,11,12,11,10,9,9,9,9,32,33,14,12,14,12,13,12,14,15,13,12,13,15,13,13,13,13,13,13,13,13,13,13,13,13,12,11,12,12,14,14,14,14,13,13,13,13,13,12,13,12,13,13,14,14,13,13,13,13,13,11,14,11,13,12,13,13,13,13,13,13,14,12,14,12,14,13,13,13,10,14,14,12,14,12,14,11,11,13,13,13,11,13,13,12,11,10,11,8,11,11,11,11,9,11,11,10,10,9,10,5,9,9,10,10,8,10,9,9,13,11,12,9,11,11,12,12,10,12,12,11,13,11,12,9,12,12,12,12,10,12,12,10,12,10,13,13,13,13,14,13,12,12,12,12,12,10,11,12,12,12,13,12
"Other biomass : Rhode Island","thousand megawatthours","ELEC.GEN.WAS-RI-99.M",10,9,9,9,9,9,8,8,8,8,8,9,9,8,8,8,8,8,8,8,8,8,9,9,9,8,9,8,9,8,9,9,8,9,9,9,8,7,9,8,9,9,9,9,9,9,8,9,0,0,0,0,0,0,0,0,0,0,0,0,13,12,13,10,12,13,13,13,12,13,13,12,13,11,14,11,13,13,13,13,13,13,14,13,13,12,13,12,13,14,14,14,13,14,14,14,11,10,12,13,13,12,13,12,12,12,12,12,10,10,12,12,12,12,12,12,11,12,12,12,10,7,11,11,11,11,11,11,11,11,11,12,8,8,9,8,9,8,9,9,8,8,9,8,0,0,0,0,0,14,5,0,3,10,8,9,16,11,19,18,19,19,19,19,14,15,19,20,20,18,19,16,19,20,19,20
"Other biomass : Vermont","thousand megawatthours","ELEC.GEN.WAS-VT-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,"NM","NM",2,2,2,2,2,"NM","NM","NM","NM","NM","NM","NM",2,"NM"
"Other biomass : Middle Atlantic","thousand megawatthours","ELEC.GEN.WAS-MAT-99.M",273,245,279,271,289,286,308,303,284,287,283,301,265,251,272,274,296,299,310,299,284,266,286,298,285,246,282,273,294,289,310,300,282,277,290,312,266,257,293,262,286,275,301,299,281,283,291,299,283,253,291,284,321,312,320,312,296,298,309,312,307,292,298,300,321,321,330,330,307,319,311,313,302,262,311,293,318,316,328,325,318,310,316,329,303,281,318,312,329,324,330,334,313,317,319,332,312,303,346,337,358,359,372,365,353,359,349,359,325,278,340,342,365,367,364,362,366,345,368,373,295,302,324,316,352,367,382,352,351,373,351,383,363,335,354,361,373,386,391,363,378,368,340,376,362,298,376,354,375,390,399,402,380,394,384,405,356,307,373,383,388,381,411,404,386,385,388,399,387,316,353,364,381,376,405,398
"Other biomass : New Jersey","thousand megawatthours","ELEC.GEN.WAS-NJ-99.M",66,59,73,66,73,72,76,74,70,70,72,73,69,67,68,62,72,73,76,75,71,72,69,74,79,69,74,72,76,77,83,80,73,68,70,85,62,61,67,66,72,70,70,70,65,65,70,67,69,61,69,67,79,78,78,77,73,74,76,74,74,70,79,72,75,77,79,78,72,76,76,74,64,60,67,56,67,74,75,72,73,72,65,77,71,66,74,70,77,74,75,79,73,73,73,78,68,70,74,71,77,87,84,85,85,76,71,82,67,56,67,65,75,72,72,66,70,66,69,71,68,65,74,57,74,75,79,77,78,79,67,82,85,79,81,77,88,85,85,83,85,77,59,81,76,69,86,82,82,79,86,89,84,88,86,91,80,72,82,84,85,86,91,91,87,88,88,89,85,68,71,75,84,84,88,87
"Other biomass : New York","thousand megawatthours","ELEC.GEN.WAS-NY-99.M",100,93,106,102,107,104,115,113,106,111,107,115,104,94,103,108,118,113,119,114,113,107,109,112,106,91,107,99,112,110,112,110,104,108,109,113,102,97,121,100,104,106,114,110,104,113,113,114,106,92,110,108,120,115,121,118,112,118,119,118,112,110,104,112,124,122,129,127,119,124,117,120,117,95,119,118,127,122,131,131,125,116,127,123,116,110,124,121,131,128,133,136,126,125,133,131,125,110,132,134,153,140,147,146,144,150,142,141,120,107,128,125,153,145,150,149,153,146,150,144,114,107,119,129,137,144,153,138,141,150,140,147,135,117,119,137,142,148,155,131,152,144,140,140,135,88,131,135,151,154,152,149,142,151,144,144,131,115,142,141,149,142,155,152,145,146,144,145,139,116,132,136,147,141,152,148
"Other biomass : Pennsylvania","thousand megawatthours","ELEC.GEN.WAS-PA-99.M",107,93,101,103,108,110,117,116,108,106,105,114,93,91,101,105,106,112,115,109,100,88,108,112,99,86,100,102,106,102,115,111,104,101,111,114,101,99,105,96,110,100,116,118,112,105,109,117,108,100,113,109,122,118,121,117,111,106,114,119,121,112,116,115,122,121,123,126,116,119,119,119,121,108,125,119,124,120,123,122,121,122,123,128,116,106,121,121,121,122,122,119,113,119,113,124,119,123,140,132,127,133,141,135,124,133,136,136,138,114,145,152,137,149,143,147,143,133,150,159,112,130,132,131,141,148,149,138,132,145,144,153,144,140,154,147,143,153,150,149,141,147,142,155,152,141,159,138,142,158,161,164,154,155,154,170,145,120,149,157,154,153,165,161,154,151,157,165,163,132,150,153,150,151,165,164
"Other biomass : East North Central","thousand megawatthours","ELEC.GEN.WAS-ENC-99.M",143,128,143,127,138,143,173,178,153,161,153,167,158,130,160,163,150,161,194,197,175,151,143,151,186,169,181,165,160,165,177,180,173,168,158,170,159,157,163,166,171,172,174,174,172,169,166,164,137,124,141,144,161,161,162,163,153,153,154,149,166,157,171,136,165,167,172,174,166,170,168,163,141,129,151,168,196,186,189,196,174,199,156,143,197,194,168,217,211,218,198,202,216,206,176,189,203,180,205,195,233,217,233,226,183,211,263,226,211,204,243,241,233,227,204,216,222,175,198,193,215,186,211,224,212,236,228,250,227,211,243,235,216,193,223,226,237,246,259,258,239,258,212,224,226,203,247,255,268,250,227,247,273,243,244,247,243,208,255,254,254,257,272,275,259,262,257,253,255,210,227,241,255,245,259,253
"Other biomass : Illinois","thousand megawatthours","ELEC.GEN.WAS-IL-99.M",59,48,54,50,56,60,64,63,56,55,55,57,53,45,62,60,62,67,77,79,69,50,49,51,77,68,68,63,65,60,64,72,69,64,66,66,61,60,62,61,62,63,63,63,62,62,62,62,50,45,51,51,56,55,58,57,54,54,56,54,52,48,53,39,48,49,52,52,48,51,52,51,44,43,45,50,58,56,58,59,54,65,46,43,54,55,34,62,63,61,60,63,63,62,59,61,68,54,51,45,58,49,59,57,48,68,77,74,58,52,59,52,62,60,56,58,61,42,57,54,56,44,53,53,49,47,58,62,60,52,51,52,62,46,49,49,49,65,52,54,53,49,43,44,55,51,56,49,54,50,38,40,52,54,55,54,53,46,56,55,56,55,59,58,55,57,56,55,56,45,48,50,52,47,49,49
"Other biomass : Indiana","thousand megawatthours","ELEC.GEN.WAS-IN-99.M",9,9,9,8,7,10,11,13,11,8,11,9,8,8,9,10,8,10,12,12,11,7,9,11,12,11,11,8,8,8,9,10,9,10,10,11,11,11,11,11,11,11,11,11,11,11,11,11,5,5,5,5,6,6,6,6,6,6,6,6,20,18,19,15,18,18,19,19,18,19,19,19,16,14,15,18,22,22,22,22,20,26,18,16,22,20,19,24,25,26,22,25,25,25,20,20,22,20,24,22,30,26,28,27,20,27,31,25,25,26,31,31,30,27,24,26,27,22,20,22,26,23,24,26,29,30,29,33,29,28,32,28,24,23,25,28,29,29,33,33,28,33,26,27,25,23,33,35,36,36,28,32,35,33,30,31,31,27,33,33,32,32,34,34,32,32,32,32,32,27,29,30,32,32,32,32
"Other biomass : Michigan","thousand megawatthours","ELEC.GEN.WAS-MI-99.M",50,43,49,45,49,48,64,69,57,65,62,59,68,52,61,65,56,58,72,76,65,62,55,56,63,55,66,63,54,64,67,61,61,62,50,59,51,50,53,58,61,61,62,62,62,59,57,53,53,48,54,57,66,67,65,66,62,62,60,57,61,56,61,53,64,65,65,66,65,63,60,58,45,41,50,59,73,69,75,69,66,75,54,47,58,50,55,65,71,75,58,69,70,68,50,50,51,51,65,63,87,76,82,80,54,76,86,64,64,69,88,91,83,70,62,66,72,51,39,48,62,53,54,60,74,78,70,81,70,72,81,72,57,57,68,79,83,75,101,98,81,101,76,80,60,56,86,99,97,96,75,88,92,86,73,80,82,70,85,87,87,92,96,100,94,93,88,87,86,71,78,86,93,90,96,91
"Other biomass : Ohio","thousand megawatthours","ELEC.GEN.WAS-OH-99.M",3,2,2,1,2,3,3,3,2,2,3,2,2,1,2,2,2,2,3,3,2,3,2,2,3,3,3,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,4,3,3,3,3,3,3,3,1,1,2,2,2,2,3,2,2,2,1,1,17,18,15,15,16,19,13,14,15,9,20,21,16,19,15,19,14,16,18,20,14,21,18,21,23,19,20,22,19,26,21,21,22,20,31,29,31,24,30,34,26,29,28,26,25,11,32,34,32,25,41,26,28,33,37,24,35,31,21,32,42,37,32,30,38,28,42,45,59,30,47,46,36,31,38,37,38,37,40,39,37,38,38,37,38,31,33,35,37,37,39,39
"Other biomass : Wisconsin","thousand megawatthours","ELEC.GEN.WAS-WI-99.M",23,26,28,22,23,23,30,30,27,30,23,40,28,24,26,27,23,25,30,27,28,28,27,30,31,33,33,28,30,30,33,34,31,28,28,31,32,33,34,33,33,34,35,35,34,35,34,34,27,25,28,28,31,30,31,31,29,29,30,30,31,32,35,26,32,33,34,34,32,34,34,33,36,29,39,39,41,37,32,44,31,31,37,36,46,51,44,52,36,38,45,31,42,42,28,37,46,36,50,45,44,50,46,42,48,19,50,42,42,38,44,45,38,44,40,45,40,40,50,40,40,42,49,50,34,51,44,48,43,48,47,49,41,41,39,44,48,44,37,50,42,44,45,41,43,36,41,42,44,41,44,43,36,40,38,37,40,35,42,42,41,42,44,44,41,42,43,41,42,35,38,40,41,40,42,42
"Other biomass : West North Central","thousand megawatthours","ELEC.GEN.WAS-WNC-99.M",54,45,47,55,61,57,55,55,52,52,54,56,49,42,52,48,55,50,57,57,52,49,57,57,57,45,55,56,55,54,58,59,55,56,49,67,41,41,41,41,41,41,40,41,41,40,42,42,44,43,49,49,50,52,53,54,50,45,52,49,48,45,52,46,55,54,57,57,54,54,55,54,56,51,66,49,59,58,53,66,105,80,90,90,76,78,81,90,88,86,95,102,99,94,91,76,73,73,105,112,101,106,120,114,105,95,102,107,82,110,118,94,104,118,122,124,103,111,113,106,97,100,113,108,105,118,110,118,102,115,94,110,112,104,113,108,105,113,114,124,110,115,108,104,73,61,73,73,69,72,95,91,82,84,79,77,77,65,81,80,78,79,85,79,77,89,84,80,83,68,73,74,81,77,79,80
"Other biomass : Iowa","thousand megawatthours","ELEC.GEN.WAS-IA-99.M",9,7,7,8,9,9,7,9,10,11,8,10,8,7,7,8,7,8,10,9,8,8,10,10,11,9,10,8,9,9,10,11,10,10,8,10,9,8,9,9,9,9,8,9,9,8,9,9,10,9,9,10,10,10,10,11,11,9,10,9,9,8,13,9,13,13,13,13,12,11,12,11,12,11,17,7,11,10,10,17,16,17,11,13,16,14,14,12,18,11,16,9,13,16,15,14,11,11,12,12,14,13,17,15,15,16,16,16,10,15,17,18,19,18,20,19,15,11,13,14,16,13,15,10,17,20,15,16,7,12,8,12,15,13,12,8,16,14,14,16,11,10,12,10,10,8,9,6,9,13,16,21,19,19,13,16,14,11,15,12,12,14,15,13,13,14,12,13,15,10,13,11,11,11,12,12
"Other biomass : Kansas","thousand megawatthours","ELEC.GEN.WAS-KS-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,0,3,4,5,4,4,5,5,5,4,5,5,5,4,5,5,5,5,5,5,5,5,5,4,5,5,4,5,5,4,5,5,5,5,5,5,5,5,4,5,5,4,4,6,6,5,5,5,5,5,4,5,5,5,5,5,5,5,5,5,5,5,4,4,5,5,5,5,5
"Other biomass : Minnesota","thousand megawatthours","ELEC.GEN.WAS-MN-99.M",42,35,37,45,48,45,45,43,40,39,43,44,38,33,43,38,46,40,45,46,43,40,45,46,40,31,40,43,41,40,42,42,40,41,36,51,28,28,28,28,28,28,28,28,28,28,28,28,31,30,35,34,35,36,38,37,34,31,37,34,34,32,34,33,36,35,36,36,34,35,35,35,35,32,40,34,39,40,35,39,80,54,70,69,52,55,58,69,61,66,69,82,72,65,66,55,52,55,78,84,74,80,88,85,77,66,76,73,56,73,84,63,71,81,84,86,73,84,83,78,66,72,82,80,72,80,78,85,79,86,71,81,83,76,85,86,74,85,85,92,84,89,81,80,46,38,48,51,44,43,60,53,48,48,50,46,46,39,49,52,50,49,53,49,48,55,53,49,49,42,44,48,53,50,51,51
"Other biomass : Missouri","thousand megawatthours","ELEC.GEN.WAS-MO-99.M",1,1,1,1,1,1,1,1,0,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,3,3,2,3,3,3,2,2,3,2,2,2,2,3,2,3,2,2,3,3,3,3,3,2,2,3,6,7,4,2,5,2,8,8,6,6,7,6,5,6,3,11,8,12,5,2,3,6,6,6,4,4,4,3,4,4,4,7,5,6,6,5,6,5,5,5,4,4,5,3,5,4,4,5,5,4,5,4,7,6,6,5,6,6,6,6,4,5,4,5,6,5,5,5,6,5,6,6,5,6,6,6,6,5,5,5,5,5,6,6
"Other biomass : Nebraska","thousand megawatthours","ELEC.GEN.WAS-NE-99.M",2,2,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,5,5,4,4,4,4,5,5,5,5,5,5,3,3,3,3,3,3,3,3,3,3,3,3,1,3,4,4,4,4,4,4,4,4,4,4,4,3,4,3,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,4,4,5,5,5,5,5,6,6,5,5,4,4,4,6,6,6,6,7,6,6,5,6,6,4,6,7,5,6,6,7,7,6,6,6,6,5,5,6,6,5,6,5,6,5,6,5,6,5,5,5,5,5,5,5,6,5,6,5,5,5,4,5,6,5,5,7,6,6,6,6,6,6,5,6,6,6,6,6,6,6,6,6,6,6,5,5,5,6,6,6,5
"Other biomass : North Dakota","thousand megawatthours","ELEC.GEN.WAS-ND-99.M",1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,"NM","NM","NM","NM",0,0,0,0,0,3,"NM","NM","NM","NM","NM",0,"NM",0,0,0
"Other biomass : South Dakota","thousand megawatthours","ELEC.GEN.WAS-SD-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0
"Other biomass : South Atlantic","thousand megawatthours","ELEC.GEN.WAS-SAT-99.M",275,240,260,241,258,268,266,266,254,242,253,278,317,271,305,261,288,297,327,317,290,264,264,273,322,265,319,330,314,294,324,298,273,278,278,319,315,284,301,318,348,321,314,308,267,273,282,317,335,279,318,288,324,312,333,318,299,254,295,324,340,289,312,293,318,296,319,319,291,278,303,335,343,310,326,281,285,334,344,333,306,313,309,351,354,289,372,364,342,342,366,340,300,306,321,362,382,312,342,341,288,324,327,339,307,308,314,351,358,307,332,340,337,345,369,350,334,342,374,409,368,327,339,324,336,343,387,378,349,348,391,403,359,340,339,342,348,356,395,379,317,371,388,444,404,366,403,393,439,415,444,392,353,360,390,422,411,343,413,399,403,394,418,413,378,404,401,394,411,350,369,373,397,389,442,423
"Other biomass : Delaware","thousand megawatthours","ELEC.GEN.WAS-DE-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,0,4,4,4,3,4,4,4,4,4,4,4,4,17,6,16,15,14,15,15,8,15,13,14,15,14,11,10,13,7,7,11,14,11,10,9,9,10,10,9,11,12,13,15,13,13,11,7,11,13,9,11,13,14,14,15,13,11,8,12,12,13,9,10,6,11,9,12,8,8,6,7,6,5,5,5,5,5,5,5,4,4,5,5,5,5,4,5,5,5,5,5,5,5,5,5,"NM",5,4,4,5,5,5,5,5
"Other biomass : District Of Columbia","thousand megawatthours","ELEC.GEN.WAS-DC-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0
"Other biomass : Florida","thousand megawatthours","ELEC.GEN.WAS-FL-99.M",171,159,174,156,163,164,163,159,162,152,160,180,211,180,205,164,180,180,192,190,174,166,166,179,204,172,209,218,199,185,198,176,169,165,168,201,203,178,188,206,227,199,184,190,153,168,184,206,221,181,208,175,206,191,207,195,186,147,181,208,219,187,201,193,200,178,201,200,183,176,196,219,222,203,212,164,157,205,206,204,191,182,198,230,214,181,216,230,202,184,185,173,164,172,186,226,230,192,218,200,153,190,191,204,183,187,196,232,228,201,222,196,183,173,192,180,171,203,209,229,212,189,207,184,178,176,193,186,172,195,216,227,191,188,206,200,187,169,186,174,155,190,205,223,217,191,211,190,185,177,185,165,162,185,209,231,205,170,212,197,186,182,195,195,177,199,201,190,210,180,189,181,186,183,225,209
"Other biomass : Georgia","thousand megawatthours","ELEC.GEN.WAS-GA-99.M",2,2,2,2,2,3,3,3,2,2,2,2,19,15,15,12,11,13,18,16,13,13,10,9,13,10,10,12,9,7,13,12,10,11,12,14,7,10,6,6,5,7,9,8,7,8,6,6,8,7,7,7,7,8,6,6,5,5,5,5,5,4,4,4,5,5,6,5,5,5,5,4,2,4,4,3,7,4,6,5,3,6,4,5,5,6,4,5,4,9,39,31,7,5,4,3,6,4,5,10,6,3,9,3,10,3,10,10,10,8,6,11,8,11,14,12,12,13,11,12,12,10,12,8,10,11,18,13,10,5,5,6,7,9,7,8,9,8,20,28,9,17,20,25,29,24,23,31,42,41,39,38,37,36,36,39,32,29,32,32,29,29,32,30,28,30,28,28,29,25,27,25,36,29,35,30
"Other biomass : Maryland","thousand megawatthours","ELEC.GEN.WAS-MD-99.M",26,26,29,28,30,34,33,33,33,30,29,30,27,20,26,24,28,32,37,33,34,28,24,25,28,21,30,32,35,34,36,34,31,31,31,28,35,28,34,33,36,37,40,35,35,30,25,30,32,25,32,33,32,39,40,40,36,37,37,35,37,28,34,32,35,35,39,39,34,31,32,33,34,28,29,35,37,41,41,37,31,37,25,26,32,23,35,37,37,42,38,40,36,33,30,33,34,18,29,35,32,37,36,39,29,35,24,28,31,22,30,38,36,38,37,38,35,34,36,32,27,28,31,31,31,34,35,37,31,30,33,33,32,30,14,28,35,40,38,36,34,34,34,40,33,32,32,33,36,38,39,39,34,35,33,29,35,28,36,34,38,38,39,40,37,36,36,35,34,31,29,36,37,41,38,39
"Other biomass : North Carolina","thousand megawatthours","ELEC.GEN.WAS-NC-99.M",21,7,7,6,6,8,9,10,8,8,8,9,9,8,9,8,8,8,10,9,9,8,7,9,11,9,10,8,9,9,10,9,10,9,9,10,10,10,10,9,11,10,9,9,9,9,8,8,8,7,8,8,8,8,9,8,8,7,8,9,9,8,8,7,7,7,8,8,7,7,8,8,5,7,7,7,6,6,7,8,9,12,9,7,14,9,38,5,4,9,8,7,8,9,6,2,21,19,11,9,12,11,9,7,8,7,8,10,9,13,3,8,9,19,18,18,28,13,19,39,26,20,7,14,24,28,43,45,49,35,45,39,24,17,10,6,9,25,38,36,25,41,23,50,26,29,42,46,60,51,62,43,22,8,8,14,33,29,34,33,33,34,37,36,34,32,31,32,32,27,30,32,33,33,36,34
"Other biomass : South Carolina","thousand megawatthours","ELEC.GEN.WAS-SC-99.M",2,2,2,1,2,3,3,2,2,2,2,3,1,1,1,2,1,1,1,1,1,1,1,1,4,4,5,5,4,4,4,4,4,4,4,5,6,6,6,6,6,6,6,6,6,6,6,6,7,7,8,7,7,8,8,8,7,6,8,7,9,8,9,7,9,9,9,9,9,9,9,9,9,8,9,8,8,9,9,8,9,8,8,9,10,8,11,10,10,8,9,10,10,9,14,12,15,14,15,12,12,12,12,11,10,9,10,5,12,10,11,11,11,11,11,11,10,11,12,12,12,11,11,10,11,11,13,12,11,12,13,14,17,17,17,17,17,16,17,16,14,16,18,20,19,17,18,17,18,17,18,17,16,17,19,20,17,14,17,18,18,18,19,18,17,17,17,18,17,15,16,17,17,17,19,18
"Other biomass : Virginia","thousand megawatthours","ELEC.GEN.WAS-VA-99.M",51,42,44,45,52,53,54,57,47,49,51,54,51,45,49,50,61,63,68,67,59,47,54,49,62,49,55,54,57,54,62,62,48,58,53,60,55,52,56,57,63,63,66,61,58,53,53,61,59,52,55,56,63,60,63,61,57,51,57,61,61,54,56,50,62,61,57,59,52,50,54,61,67,57,61,60,66,65,72,66,60,66,62,71,63,56,52,62,71,74,72,71,61,64,67,71,63,54,53,63,65,65,59,61,56,57,57,56,60,43,50,66,78,79,82,79,66,58,80,73,66,60,59,62,67,68,71,71,64,64,66,72,74,71,73,76,79,87,84,80,71,66,81,80,75,69,71,72,93,86,95,86,77,74,80,83,84,69,76,79,94,88,91,90,80,84,82,86,84,69,74,77,83,81,84,88
"Other biomass : West Virginia","thousand megawatthours","ELEC.GEN.WAS-WV-99.M",1,2,2,3,2,2,1,1,0,0,0,0,0,0,0,0,0,1,0,1,1,1,2,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,"NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM"
"Other biomass : East South Central","thousand megawatthours","ELEC.GEN.WAS-ESC-99.M",5,5,4,4,4,6,6,7,4,4,4,5,5,4,4,4,4,5,5,6,5,5,10,6,7,6,7,6,6,7,8,10,8,8,8,9,11,11,11,11,11,10,11,11,11,11,11,11,11,10,12,11,11,13,13,13,22,11,13,12,15,13,15,12,14,14,16,15,15,15,15,15,11,13,14,12,15,16,16,16,12,18,12,17,13,27,16,10,9,9,54,8,9,12,10,7,24,11,12,11,12,12,11,15,12,17,13,8,11,10,29,12,10,11,11,10,9,10,9,4,14,15,15,13,12,12,14,11,9,11,9,8,8,11,16,19,20,17,17,16,10,20,15,14,14,11,19,16,15,16,13,60,15,14,11,15,17,15,18,18,18,18,18,19,18,18,18,17,18,15,16,17,18,18,18,18
"Other biomass : Alabama","thousand megawatthours","ELEC.GEN.WAS-AL-99.M",2,1,1,1,1,2,2,2,1,1,2,1,2,1,1,1,1,2,2,2,2,1,1,1,2,2,1,1,2,2,3,3,2,2,2,2,1,2,2,2,2,1,3,3,2,2,2,2,1,1,1,2,1,1,1,2,2,1,1,2,2,1,2,1,1,1,2,2,2,1,1,2,1,1,1,1,1,1,2,2,2,3,1,2,2,16,1,2,2,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,1,1,1,1,1,1,0,1,1,1,0,1,1,0,0,1,1,12,2,1,1,0,"NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM"
"Other biomass : Kentucky","thousand megawatthours","ELEC.GEN.WAS-KY-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,1,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,6,6,5,4,6,5,8,7,8,6,7,8,8,8,7,8,8,7,5,8,8,7,9,10,9,8,5,9,5,10,8,7,6,5,5,5,50,4,4,7,5,3,20,7,8,7,8,8,7,9,7,10,7,5,8,7,25,8,6,7,7,6,6,6,5,0,9,10,10,9,8,7,9,8,6,7,6,5,5,7,8,9,11,9,9,10,6,9,8,7,5,5,8,6,6,6,5,33,7,7,5,5,8,7,9,8,8,8,9,9,8,8,8,8,8,7,7,8,8,8,9,8
"Other biomass : Mississippi","thousand megawatthours","ELEC.GEN.WAS-MS-99.M",0,0,0,0,0,0,"--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,1,1,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,1,1,1,0,1,1,1,1,1,1,1,0,1,0,0,1,0,1,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,2,2,2,1,1,2,1,1,1,1,4,1,2,1,1,"NM",2,"NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM"
"Other biomass : Tennessee","thousand megawatthours","ELEC.GEN.WAS-TN-99.M",3,3,3,3,3,5,5,5,3,3,3,4,4,3,3,3,3,3,3,3,3,4,9,5,4,4,5,4,4,4,5,6,5,6,5,6,4,4,4,4,4,3,3,3,3,3,4,3,5,4,5,4,4,6,6,5,14,5,5,5,5,4,4,4,5,5,5,5,5,5,5,5,4,3,4,4,4,4,4,5,4,5,5,5,3,4,4,3,2,3,3,3,3,3,3,2,3,2,2,3,3,3,3,4,3,4,4,2,3,2,2,2,3,3,3,2,2,3,4,3,4,3,4,3,3,3,3,3,3,3,3,2,2,2,7,8,7,7,6,4,2,8,5,5,8,5,9,8,8,8,7,10,5,4,4,9,7,6,7,7,7,7,7,7,7,7,7,7,7,6,6,7,7,7,7,7
"Other biomass : West South Central","thousand megawatthours","ELEC.GEN.WAS-WSC-99.M",16,12,13,10,12,12,14,14,14,16,17,16,24,14,14,14,27,41,16,49,33,44,19,19,39,36,40,55,41,51,46,50,48,33,34,46,31,30,30,30,30,30,30,30,30,30,30,30,32,27,30,28,31,30,32,31,30,25,28,31,33,30,32,25,30,28,31,31,29,33,34,34,35,34,45,31,26,28,40,40,36,63,59,57,32,74,52,60,43,59,85,60,50,87,55,68,63,57,60,71,42,50,57,64,55,56,68,73,62,52,80,70,50,54,67,64,55,67,70,82,84,88,85,54,61,70,66,74,68,79,100,89,83,63,100,73,72,42,64,76,74,82,98,101,103,109,117,87,81,65,78,84,78,57,91,92,95,79,93,91,88,88,93,94,89,98,98,95,98,83,89,82,88,83,83,83
"Other biomass : Arkansas","thousand megawatthours","ELEC.GEN.WAS-AR-99.M",1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,7,7,7,7,8,9,10,10,8,7,8,8,3,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,5,5,5,3,4,4,3,3,4,3,4,4,3,3,3,4,4,4,4,4,4,4,4,4,4,4,4,6,5,6,7,4,5,5,4,6,0,4,4,3,5,7,5,5,4,5,5,4,3,5,5,5,4,4,4,7,9,9,10,8,7,9,5,-1,4,6,6,7,6,6,8,7,5,7,8,10,8,8,9,10,10,10,9,7,7,6,10,11,9,10,10,9,9,10,10,9,12,12,11,11,10,10,9,10,9,6,9
"Other biomass : Louisiana","thousand megawatthours","ELEC.GEN.WAS-LA-99.M",7,4,5,4,4,5,4,6,6,7,7,6,6,6,5,5,5,4,5,5,5,5,6,6,6,3,7,6,4,4,5,6,5,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,7,6,7,6,7,7,7,7,7,6,6,7,7,7,7,5,7,7,7,7,7,7,7,7,7,5,6,8,7,2,8,8,7,7,8,8,7,7,5,6,5,4,6,7,6,7,7,4,4,4,6,6,6,6,6,7,6,6,6,6,6,6,6,6,6,4,7,7,6,7,7,7,6,4,6,4,2,7,7,7,7,7,7,6,0,0,2,7,8,6,5,7,8,8,8,3,2,8,9,8,8,5,4,6,8,9,8,8,7,6,7,7,7,7,7,8,7,8,8,7,8,7,7,7,7,7,7,7
"Other biomass : Oklahoma","thousand megawatthours","ELEC.GEN.WAS-OK-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,17,10,15,9,17,25,15,11,23,10,18,15,13,12,18,9,11,14,15,10,13,13,19,11,8,9,9,5,8,12,12,6,6,7,6,10,10,8,16,1,5,6,7,4,5,8,8,10,8,9,7,8,8,7,6,7,6,9,9,10,11,8,12,12,9,11,12,10,10,10,10,11,9,10,10,9,9,10,10,9,10,10,10,10,9,10,9,10,9,10,9
"Other biomass : Texas","thousand megawatthours","ELEC.GEN.WAS-TX-99.M",9,7,8,6,8,7,9,7,8,9,10,9,17,8,8,9,22,37,11,43,27,38,12,12,25,26,27,43,29,38,31,34,34,20,20,33,22,21,21,21,21,21,21,21,21,21,21,21,22,19,21,20,21,21,22,21,20,17,19,22,24,21,23,17,21,20,22,22,21,22,22,22,25,25,35,19,15,19,29,29,25,53,48,46,20,47,33,35,25,35,50,35,29,53,34,42,39,35,35,39,24,28,32,39,33,37,44,44,42,33,57,50,35,38,44,41,39,51,51,64,64,70,67,30,51,48,44,51,49,59,76,70,74,50,83,52,48,23,47,54,52,63,73,81,81,82,92,58,51,41,54,57,53,30,67,64,66,55,66,64,63,63,66,67,63,69,69,66,68,58,62,58,61,58,60,58
"Other biomass : Mountain","thousand megawatthours","ELEC.GEN.WAS-MTN-99.M",8,8,9,8,13,11,13,13,12,12,11,11,10,9,10,8,10,8,8,7,7,9,11,13,5,4,6,8,8,8,8,7,7,8,7,6,6,7,7,7,7,7,6,7,7,7,7,7,8,7,8,7,8,8,8,8,7,7,8,7,11,10,8,6,7,7,8,8,8,8,9,9,7,9,10,10,10,9,9,9,9,10,10,10,8,8,9,9,9,9,10,10,10,10,10,10,11,11,14,14,13,14,14,14,13,13,13,14,14,13,15,15,15,15,16,16,15,15,15,16,17,16,18,17,18,19,20,20,19,19,19,20,21,20,24,23,24,24,25,27,25,27,27,28,36,32,39,38,39,38,40,40,38,40,40,42,37,31,37,37,36,36,39,38,36,37,37,37,37,32,34,34,36,36,38,36
"Other biomass : Arizona","thousand megawatthours","ELEC.GEN.WAS-AZ-99.M",0,0,1,1,5,4,6,5,5,4,4,3,6,4,6,4,4,4,4,4,4,4,5,4,2,2,3,5,5,4,4,4,4,5,4,2,3,3,4,4,4,4,3,4,4,4,4,4,4,4,5,3,5,4,4,4,4,4,4,4,5,4,3,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,3,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,6,5,5,6,6,6,5,6,6,6,6,6,6,6,6,6,6,6,5,6,6,6,6,6,6,6,6,6,6,6,5,5,5,6,6,6,6
"Other biomass : Colorado","thousand megawatthours","ELEC.GEN.WAS-CO-99.M",5,5,6,5,6,5,6,6,5,5,5,5,3,3,3,3,3,2,2,2,2,3,3,2,3,2,3,3,3,3,3,3,3,2,2,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,2,3,3,3,3,3,2,3,2,2,2,2,3,3,3,2,2,3,3,3,3,3,2,2,3,3,3,3,3,3,3,3,3,5,5,4,4,4,5,4,4,5,5,5,5,5,5,5,5,5,5,5,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,7,6,7,7,7,7,7,7,7,7,7,7,7,6,7,7,7,7,7,7,7,8,8,7,8,7,7,6,7,7,7,7
"Other biomass : Idaho","thousand megawatthours","ELEC.GEN.WAS-ID-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,2,2,3,3,4,4,4,4,4,4,4,4,4,5,6,6,7,7,7,7,8,8,8,8,8,8,14,12,17,16,17,17,17,18,16,17,18,18,14,12,15,15,14,14,15,15,14,14,14,14,14,12,13,14,14,14,15,14
"Other biomass : Montana","thousand megawatthours","ELEC.GEN.WAS-MT-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Other biomass : Nevada","thousand megawatthours","ELEC.GEN.WAS-NV-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,"NM","NM","NM",2,2,2,2,"NM","NM","NM","NM","NM","NM","NM",2,"NM"
"Other biomass : New Mexico","thousand megawatthours","ELEC.GEN.WAS-NM-99.M",2,1,2,2,1,1,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,3,2,3,3,3,3,3,3,3,3,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,2,1,2,2,2,2,2,2,2,2,"NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM","NM"
"Other biomass : Utah","thousand megawatthours","ELEC.GEN.WAS-UT-99.M",1,0,0,0,1,0,0,0,1,1,1,1,1,1,1,1,1,0,1,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,2,2,2,2,2,2,2,2,2,3,3,3,3,3,2,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,4,4,4,4,5,4,4,4,4,4,5,4,5,5,5,5,5,5,5,5,5,5,5,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,5,6,6,6,6,6,6,6,6,6,6,6,5,6,6,6,6,6,6,6,6,6,6,6,5,5,6,6,6,6,6
"Other biomass : Wyoming","thousand megawatthours","ELEC.GEN.WAS-WY-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Other biomass : Pacific Contiguous","thousand megawatthours","ELEC.GEN.WAS-PCC-99.M",193,185,193,181,194,196,204,205,192,194,175,177,176,158,193,168,168,191,206,214,196,195,182,199,214,196,217,191,178,184,228,236,215,214,210,241,208,208,206,203,207,204,206,205,201,204,197,184,214,189,211,203,214,213,226,226,204,186,208,218,231,211,223,180,212,207,223,218,209,220,223,219,249,205,220,206,202,210,230,226,218,195,233,227,212,211,234,223,206,210,228,233,212,226,229,236,187,217,238,222,232,239,252,224,237,244,231,241,244,214,213,214,223,249,258,256,244,243,256,239,235,235,250,233,247,242,254,260,246,248,261,264,252,250,238,229,245,211,231,261,258,256,277,277,288,261,279,254,274,263,279,312,283,305,306,316,290,250,291,292,273,286,301,297,282,285,278,282,293,249,271,268,278,279,289,280
"Other biomass : California","thousand megawatthours","ELEC.GEN.WAS-CA-99.M",178,168,174,160,175,177,185,190,177,177,159,161,158,144,175,149,149,171,186,195,180,174,162,178,192,176,192,167,154,164,211,213,193,190,186,216,186,185,184,181,184,182,183,182,179,181,175,161,193,169,188,180,191,189,200,194,180,163,182,195,208,189,200,157,187,183,197,195,187,195,200,196,227,186,198,179,178,188,194,193,187,171,201,203,186,192,207,198,178,191,201,207,188,200,204,212,161,197,214,194,204,217,226,201,211,216,208,217,208,185,180,185,189,214,225,228,211,204,219,203,207,206,219,207,218,211,223,229,218,208,219,220,214,211,202,190,203,176,190,220,217,216,237,238,237,214,228,206,231,226,233,258,235,257,255,265,244,211,244,246,228,242,255,250,237,237,230,236,246,209,229,226,234,235,242,235
"Other biomass : Oregon","thousand megawatthours","ELEC.GEN.WAS-OR-99.M",4,4,4,4,4,4,4,4,3,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,6,7,7,6,8,8,7,7,7,7,8,7,7,7,7,7,7,7,7,7,7,7,7,7,6,6,7,7,7,8,9,14,8,9,9,8,7,8,7,8,9,9,10,8,8,9,8,8,8,7,7,10,10,12,19,16,17,7,18,7,12,11,10,11,12,8,12,11,11,12,10,10,11,10,10,11,11,7,11,12,11,12,9,13,17,12,16,16,16,19,16,20,16,20,19,19,19,18,19,17,17,20,19,20,17,17,18,21,20,19,14,19,20,19,21,20,20,18,19,21,27,25,26,24,19,18,24,28,24,25,26,27,25,21,25,25,24,24,25,26,24,25,25,25,25,21,23,23,24,24,25,24
"Other biomass : Washington","thousand megawatthours","ELEC.GEN.WAS-WA-99.M",11,13,14,17,14,14,15,10,12,13,12,11,15,11,14,16,15,17,16,15,13,17,16,17,16,13,17,18,16,12,10,16,14,16,16,17,16,16,15,15,15,15,16,15,15,16,15,15,15,14,16,16,16,16,18,17,16,14,17,16,16,14,16,14,15,16,16,16,14,16,16,16,13,13,14,17,14,10,17,17,13,16,15,17,14,9,17,14,16,11,16,15,13,13,15,14,14,9,14,16,16,14,14,12,15,16,15,11,19,17,18,13,17,16,17,9,18,19,18,17,9,12,12,9,12,11,12,12,10,23,24,24,18,20,22,21,22,16,20,21,21,21,21,18,24,22,25,25,24,19,23,26,25,23,25,23,21,18,21,21,21,20,21,22,20,22,22,21,21,18,19,19,20,20,21,21
"Other biomass : Pacific Noncontiguous","thousand megawatthours","ELEC.GEN.WAS-PCN-99.M",21,21,12,25,28,30,28,27,27,27,21,22,20,22,23,16,31,35,38,35,34,20,15,21,18,18,26,30,37,33,34,32,31,33,33,28,29,28,17,30,30,29,30,30,29,26,30,30,29,27,30,19,24,30,29,23,27,23,27,27,30,29,28,27,31,24,25,21,28,30,30,30,22,14,22,31,32,31,28,22,15,29,30,19,17,16,27,27,32,33,30,30,27,22,28,17,19,17,24,25,27,31,26,29,31,25,17,20,17,12,17,25,34,30,22,35,28,32,17,20,18,28,22,26,32,32,30,33,30,30,21,16,11,15,18,20,31,26,27,31,32,28,25,19,21,19,25,35,36,28,38,36,39,38,33,35,37,27,30,31,34,28,39,33,29,38,35,39,38,35,32,29,34,29,37,42
"Other biomass : Alaska","thousand megawatthours","ELEC.GEN.WAS-AK-99.M","--","--","--","--","--","--","--","--","--","--","--","--",1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,1,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,3,5,5,4,5,5,5,5,4,5,5,4,4,4,4,4,4,4,4,5,5,5,5,"NM",5,"NM",4,"NM","NM","NM"
"Other biomass : Hawaii","thousand megawatthours","ELEC.GEN.WAS-HI-99.M",21,21,12,25,28,30,28,27,27,27,21,22,19,21,22,15,30,34,37,34,33,19,14,20,17,17,25,30,37,32,33,31,31,32,32,28,28,27,16,29,30,28,29,29,28,25,29,30,29,26,30,18,24,30,28,22,27,22,27,27,30,29,27,26,30,24,24,20,27,29,29,30,21,13,21,30,31,30,27,22,15,28,29,18,17,16,26,27,32,33,29,29,26,22,28,17,19,16,23,24,27,31,26,28,30,24,17,20,17,12,17,25,33,30,21,34,27,31,17,19,18,28,21,26,31,31,29,33,30,29,20,15,11,15,18,19,31,25,27,31,32,28,25,19,18,17,22,30,31,24,33,31,34,33,28,30,32,23,25,27,30,24,35,29,25,33,30,34,32,30,27,26,30,25,33,38
"Hydro-electric pumped storage","thousand megawatthours","ELEC.GEN.HPS-US-99.M","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","",""
"Hydro-electric pumped storage : United States","thousand megawatthours","ELEC.GEN.HPS-US-99.M",-589,-707,-773,-796,-623,-774,-871,-715,-928,-615,-811,-623,-750,-586,-684,-585,-539,-863,-998,-935,-777,-681,-666,-680,-802,-759,-778,-546,-597,-762,-745,-806,-769,-615,-695,-661,-768,-692,-653,-669,-689,-718,-693,-818,-770,-703,-665,-650,-725,-346,-497,-338,-466,-415,-625,-623,-680,-611,-554,-678,-533,-447,-435,-587,-444,-423,-638,-695,-629,-507,-553,-667,-572,-447,-458,-374,-547,-523,-595,-651,-743,-760,-662,-565,-746,-451,-553,-132,-587,-372,-799,-648,-517,-497,-489,-498,-501,-413,-315,-272,-349,-226,-491,-613,-348,-385,-330,-383,-565,-351,-325,-335,-441,-472,-557,-600,-421,-438,-467,-530,-659,-413,-349,-466,-417,-567,-708,-692,-583,-601,-458,-509,-348,-237,-281,-265,-371,-507,-619,-529,-431,-378,-409,-576,-465,-320,-462,-292,-334,-358,-340,-465,-439,-373,-413,-421,-290,-445,-421,-378,-636,-653,-545,-840,-542,-448,-531,-480,-528,-416,-358,-208,-357,-374,-507,-623
"Hydro-electric pumped storage : New England","thousand megawatthours","ELEC.GEN.HPS-NEW-99.M",-52,-42,-51,-57,-61,-66,-63,-70,-74,-71,-49,-55,-61,-42,-46,-45,-75,-66,-69,-113,-88,-92,-92,-64,-45,-40,-41,-45,-29,-51,-47,-43,-44,-36,-39,-51,-54,-31,-37,-37,-43,-42,-33,-47,-41,-43,-40,-42,-39,-15,-29,-17,-43,-54,-50,-50,-38,-43,-43,-42,-47,-37,-41,-43,-54,-51,-55,-57,-50,-43,-43,-60,-60,-43,-40,-44,-50,-51,-63,-74,-80,-228,-51,-62,-55,-53,-38,-58,-48,-61,-253,-63,-40,-40,-40,-44,-29,-41,-25,-43,-33,-37,-52,-70,-51,-49,-43,-54,-59,-41,-47,-33,-24,-20,-17,-13,-6,-12,-21,-34,-39,-30,-47,-23,-29,-33,-53,-44,-36,-47,-27,-26,-13,-17,-27,12,-40,-35,-41,-42,-34,-22,-17,-28,-27,-30,-32,-29,-33,-29,-53,6,-34,-28,-30,-48,-31,-42,-38,-37,-35,-38,-45,-38,-37,-44,-33,-34,-37,-30,-53,-38,-32,-39,-51,-52
"Hydro-electric pumped storage : Connecticut","thousand megawatthours","ELEC.GEN.HPS-CT-99.M",0,0,0,0,0,0,0,0,0,0,0,0,-2,0,-0,-5,0,-1,-1,-0,-0,-0,-0,0,0,-0,-0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,3,3,0,0,-2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1,-5,-2,-2,-2,-2,-0,-0,-0,-0,-1,2,-1,2,-1,-2,0,-1,-0,1,1,3,3,6,-2,-4,-3,-2,1,1,1,1,0,1,4,1,1,-0,1,-0,-1,-0,0,0,-0,3,6,2,-0,-5,-1,1,1,1,1,3,1,2,1,6,-1,-7,-0,1,1,0,0,0,0,0,2,5,-1,-10,-1,0,3,1,0,0,0,0,1,4,-2,-5,-0,2,0,1,0,1,0,3,3,2,0,-8,-0,1,0,1,0
"Hydro-electric pumped storage : Maine","thousand megawatthours","ELEC.GEN.HPS-ME-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Hydro-electric pumped storage : Massachusetts","thousand megawatthours","ELEC.GEN.HPS-MA-99.M",-52,-42,-51,-57,-61,-66,-63,-70,-74,-71,-49,-55,-60,-42,-45,-39,-75,-64,-68,-112,-88,-92,-92,-64,-45,-40,-41,-45,-29,-51,-47,-43,-44,-36,-39,-51,-54,-31,-37,-37,-43,-42,-33,-47,-41,-44,-43,-45,-39,-15,-27,-17,-43,-54,-50,-50,-38,-43,-43,-42,-47,-37,-41,-43,-54,-51,-55,-57,-50,-43,-43,-60,-60,-42,-35,-42,-48,-49,-61,-74,-80,-227,-51,-61,-56,-51,-40,-58,-46,-61,-253,-63,-40,-40,-43,-47,-35,-40,-22,-40,-32,-38,-53,-71,-52,-49,-44,-57,-60,-42,-47,-33,-24,-19,-17,-13,-6,-12,-24,-40,-41,-30,-41,-22,-30,-34,-54,-45,-39,-48,-29,-26,-19,-16,-20,12,-41,-36,-42,-43,-34,-22,-17,-29,-32,-29,-23,-28,-33,-32,-54,6,-34,-28,-31,-49,-35,-40,-33,-37,-37,-38,-46,-38,-38,-44,-36,-37,-39,-30,-45,-37,-32,-39,-52,-52
"Hydro-electric pumped storage : New Hampshire","thousand megawatthours","ELEC.GEN.HPS-NH-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Hydro-electric pumped storage : Rhode Island","thousand megawatthours","ELEC.GEN.HPS-RI-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Hydro-electric pumped storage : Vermont","thousand megawatthours","ELEC.GEN.HPS-VT-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Hydro-electric pumped storage : Middle Atlantic","thousand megawatthours","ELEC.GEN.HPS-MAT-99.M",-93,-114,-132,-155,-138,-167,-177,-162,-171,-107,-122,-149,-131,-117,-151,-130,-142,-181,-165,-160,-130,-145,-130,-142,-138,-138,-151,-125,-134,-183,-141,-152,-152,-153,-161,-141,-158,-119,-127,-115,-170,-162,-163,-165,-160,-167,-138,-142,-156,-113,-115,-122,-149,-153,-177,-165,-156,-156,-150,-162,-150,-137,-107,-137,-120,-173,-190,-178,-132,-126,-141,-162,-154,-122,-142,-117,-157,-157,-179,-159,-146,-122,-147,-158,-145,-136,-151,43,-151,56,-165,-152,-127,-106,-141,-127,-132,-118,-108,-107,-141,-114,-122,-151,-90,-124,-105,-99,-135,-117,-91,-106,-126,-123,-150,-121,-129,-122,-86,-124,-129,-97,-76,-94,-80,-99,-120,-114,-95,-81,-70,-69,-73,-46,-70,-66,-78,-112,-123,-108,-85,-90,-74,-98,-92,-71,-92,-70,-89,-134,-120,-102,-127,-91,-92,-104,-106,-108,-102,-89,-112,-117,-123,-125,-96,-118,-125,-86,-84,-87,-108,-63,-97,-116,-103,-120
"Hydro-electric pumped storage : New Jersey","thousand megawatthours","ELEC.GEN.HPS-NJ-99.M",-13,-11,-11,-10,-12,-13,-15,-14,-12,-8,-10,-11,-11,-10,-11,-6,-12,-14,-14,-14,-15,-12,-13,-12,-12,-12,-11,-10,12,-13,-13,-13,-12,-12,-12,-12,-24,-23,-22,-21,-25,-25,-27,-27,-22,-23,-23,-25,-25,-23,-20,-19,-24,-25,-28,-29,-25,-14,-22,-26,-26,-23,-21,-21,-23,-27,-29,-29,-28,-22,-24,-25,-22,-23,-24,-19,-24,-25,-27,-26,-23,-15,-20,-21,-21,-20,-24,-20,-27,-26,-29,-31,-23,-15,-20,-19,-19,-16,-13,-17,-21,-21,-18,-23,-16,-10,-12,-15,-14,-14,-11,-10,-21,-23,-23,-22,-15,-12,-9,-20,-18,-15,-18,-18,-17,-10,-25,-22,-20,-5,-14,-15,-11,-8,-8,-4,-5,-20,-24,-22,-19,-14,-18,-12,-13,-13,-17,-9,-17,-24,-22,-21,-20,-18,-14,-14,-22,-19,-18,-12,-16,-18,-22,-21,-19,-17,-36,-16,-17,-18,-15,-11,-15,-14,-20,-18
"Hydro-electric pumped storage : New York","thousand megawatthours","ELEC.GEN.HPS-NY-99.M",-61,-57,-65,-88,-82,-98,-97,-86,-95,-58,-64,-77,-66,-58,-79,-74,-78,-98,-91,-101,-82,-71,-57,-67,-68,-66,-73,-60,-92,-102,-69,-72,-78,-83,-79,-71,-68,-48,-55,-54,-94,-80,-75,-74,-74,-77,-60,-55,-66,-36,-38,-50,-57,-71,-84,-80,-77,-81,-72,-69,-66,-61,-44,-67,-57,-86,-87,-80,-46,-35,-56,-71,-73,-43,-59,-73,-78,-71,-78,-76,-53,-35,-65,-65,-57,-55,-59,-60,-65,-67,-64,-61,-39,-34,-61,-51,-49,-37,-36,-32,-49,-43,-37,-49,-25,-48,-41,-33,-42,-39,-35,-39,-46,-41,-61,-55,-52,-46,-28,-47,-42,-31,-32,-37,-41,-46,-53,-42,-27,-39,-22,-20,-28,-20,-17,-35,-33,-49,-52,-44,-38,-43,-20,-36,-45,-39,-27,-30,-31,-42,-49,-27,-49,-35,-26,-44,-42,-47,-56,-37,-36,-41,-47,-41,-34,-47,-31,-33,-13,-30,-54,-28,-36,-43,-33,-41
"Hydro-electric pumped storage : Pennsylvania","thousand megawatthours","ELEC.GEN.HPS-PA-99.M",-19,-46,-56,-56,-43,-56,-66,-62,-64,-40,-48,-60,-54,-49,-61,-51,-52,-69,-60,-44,-33,-62,-60,-63,-58,-61,-67,-55,-55,-68,-60,-67,-61,-58,-71,-58,-66,-48,-50,-39,-51,-57,-61,-65,-63,-67,-56,-62,-64,-54,-57,-53,-67,-57,-65,-55,-55,-61,-56,-67,-58,-53,-42,-48,-39,-61,-75,-69,-59,-68,-61,-66,-60,-56,-59,-25,-54,-61,-74,-57,-71,-71,-61,-72,-66,-61,-68,123,-59,148,-72,-60,-64,-58,-60,-57,-64,-64,-59,-58,-71,-50,-67,-79,-50,-65,-51,-51,-79,-64,-45,-58,-60,-60,-66,-44,-62,-65,-49,-56,-69,-51,-26,-39,-22,-43,-43,-50,-47,-37,-33,-33,-34,-18,-45,-27,-40,-43,-48,-42,-28,-33,-37,-49,-34,-19,-48,-31,-41,-68,-49,-54,-58,-37,-52,-47,-41,-43,-28,-40,-60,-58,-55,-63,-44,-53,-58,-37,-55,-39,-39,-24,-46,-59,-49,-61
"Hydro-electric pumped storage : East North Central","thousand megawatthours","ELEC.GEN.HPS-ENC-99.M",-99,-81,-99,-92,-96,-99,-122,-120,-117,-20,-86,-95,-87,-64,-84,-79,-68,-90,-119,-116,-94,-78,-77,-80,-84,-78,-83,-65,-69,-75,-119,-117,-90,-76,-77,-84,-91,-83,-89,-80,-103,-92,-103,-106,-105,-84,-79,-95,-96,-71,-80,-82,-86,-98,-117,-113,-104,-97,-75,-87,-82,-74,-73,-88,-85,-92,-105,-117,-86,-67,-81,-89,-96,-92,-87,-84,-92,-99,-98,-112,-100,-86,-91,-93,-85,-81,-88,-79,-77,-99,-102,-99,-22,-62,-60,-61,-72,-51,-71,-59,-96,-93,-94,-103,-20,-47,-73,-78,-99,-86,-74,-77,-81,-101,-118,-117,-28,-75,-77,-89,-69,-59,-65,-70,-89,-106,-121,-119,-67,-72,-53,-56,-46,-40,-44,-43,-73,-72,-115,-98,-65,-65,-55,-57,-52,-46,-71,-65,-77,-82,-101,-113,-69,-73,-53,-69,-58,-50,-59,-35,-67,-95,-82,-98,-19,-28,-67,-43,-43,-31,-11,-24,-41,-32,-70,-82
"Hydro-electric pumped storage : Illinois","thousand megawatthours","ELEC.GEN.HPS-IL-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Hydro-electric pumped storage : Indiana","thousand megawatthours","ELEC.GEN.HPS-IN-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Hydro-electric pumped storage : Michigan","thousand megawatthours","ELEC.GEN.HPS-MI-99.M",-99,-81,-99,-92,-96,-99,-122,-120,-117,-20,-86,-95,-87,-64,-84,-79,-68,-90,-119,-116,-94,-78,-77,-80,-84,-78,-83,-65,-69,-75,-119,-117,-90,-76,-77,-84,-91,-83,-89,-80,-103,-92,-103,-106,-105,-84,-79,-95,-96,-71,-80,-82,-86,-98,-117,-113,-104,-97,-75,-87,-82,-74,-73,-88,-85,-92,-105,-117,-86,-67,-81,-89,-96,-92,-87,-84,-92,-99,-98,-112,-100,-86,-91,-93,-85,-81,-88,-79,-77,-99,-102,-99,-22,-62,-60,-61,-72,-51,-71,-59,-96,-93,-94,-103,-20,-47,-73,-78,-99,-86,-74,-77,-81,-101,-118,-117,-28,-75,-77,-89,-69,-59,-65,-70,-89,-106,-121,-119,-67,-72,-53,-56,-46,-40,-44,-43,-73,-72,-115,-98,-65,-65,-55,-57,-52,-46,-71,-65,-77,-82,-101,-113,-69,-73,-53,-69,-58,-50,-59,-35,-67,-95,-82,-98,-19,-28,-67,-43,-43,-31,-11,-24,-41,-32,-70,-82
"Hydro-electric pumped storage : Ohio","thousand megawatthours","ELEC.GEN.HPS-OH-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Hydro-electric pumped storage : Wisconsin","thousand megawatthours","ELEC.GEN.HPS-WI-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Hydro-electric pumped storage : West North Central","thousand megawatthours","ELEC.GEN.HPS-WNC-99.M",-19,-16,-27,-19,-19,-25,-27,-31,-27,-17,-21,-18,-10,-10,-13,0,-7,-20,-22,-23,-13,-7,-18,-17,-25,-24,-26,-19,-18,-18,-27,-28,-20,-11,-16,-21,3,-14,46,23,19,-4,-3,-10,-0,1,26,28,75,56,8,-4,-3,32,-12,-12,-11,-20,-12,-11,2,1,0,3,25,9,7,1,-0,-0,-0,-0,3,14,31,47,60,67,102,44,5,4,6,1,9,29,57,62,67,55,114,29,57,41,13,12,26,14,34,82,111,81,28,11,11,59,79,31,52,49,59,73,114,127,124,72,83,48,36,50,-7,8,45,23,29,54,-1,-13,-10,-11,-5,3,2,2,36,39,33,-9,-22,-16,-12,-5,-6,-8,-7,0,34,64,78,83,9,26,-2,5,11,-7,2,5,-8,5,-15,12,-1,-8,-2,23,-2,9,4,29,30,25,59,104,84,36
"Hydro-electric pumped storage : Iowa","thousand megawatthours","ELEC.GEN.HPS-IA-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Hydro-electric pumped storage : Kansas","thousand megawatthours","ELEC.GEN.HPS-KS-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Hydro-electric pumped storage : Minnesota","thousand megawatthours","ELEC.GEN.HPS-MN-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Hydro-electric pumped storage : Missouri","thousand megawatthours","ELEC.GEN.HPS-MO-99.M",-19,-16,-27,-19,-19,-25,-27,-31,-27,-17,-21,-18,-10,-10,-13,0,-7,-20,-22,-23,-13,-7,-18,-17,-25,-24,-26,-19,-18,-18,-27,-28,-20,-11,-16,-21,3,-14,46,23,19,-4,-3,-10,-0,1,26,28,75,56,8,-4,-3,32,-12,-12,-11,-20,-12,-11,2,1,0,3,25,9,7,1,-0,-0,-0,-0,3,14,31,47,60,67,102,44,5,4,6,1,9,29,57,62,67,55,114,29,57,41,13,12,26,14,34,82,111,81,28,11,11,59,79,31,52,49,59,73,114,127,124,72,83,48,36,50,-7,8,45,23,29,54,-1,-13,-10,-11,-5,3,2,2,36,39,33,-9,-22,-16,-12,-5,-6,-8,-7,0,34,64,78,83,9,26,-2,5,11,-7,2,5,-8,5,-15,12,-1,-8,-2,23,-2,9,4,29,30,25,59,104,84,36
"Hydro-electric pumped storage : Nebraska","thousand megawatthours","ELEC.GEN.HPS-NE-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Hydro-electric pumped storage : North Dakota","thousand megawatthours","ELEC.GEN.HPS-ND-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Hydro-electric pumped storage : South Dakota","thousand megawatthours","ELEC.GEN.HPS-SD-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Hydro-electric pumped storage : South Atlantic","thousand megawatthours","ELEC.GEN.HPS-SAT-99.M",-238,-216,-235,-258,-296,-357,-380,-390,-430,-388,-408,-249,-224,-215,-243,-265,-271,-470,-540,-373,-383,-274,-244,-252,-256,-285,-286,-227,-234,-270,-330,-323,-307,-249,-233,-223,-232,-236,-235,-227,-316,-320,-290,-332,-267,-252,-221,-187,-204,-148,-183,-200,-230,-221,-275,-262,-305,-221,-187,-246,-153,-157,-211,-249,-218,-281,-295,-318,-225,-151,-120,-179,-193,-215,-221,-188,-273,-288,-338,-347,-330,-254,-237,-132,-406,-212,-257,-98,-277,-334,-373,-357,-335,-207,-135,-191,-150,-146,-85,-141,-195,-230,-236,-291,-174,-168,-124,-57,-184,-32,-130,-168,-269,-340,-390,-362,-282,-187,-213,-147,-246,-194,-171,-191,-236,-341,-392,-348,-284,-253,-236,-202,-174,-155,-230,-227,-279,-334,-368,-356,-348,-188,-198,-243,-214,-148,-224,-172,-195,-268,-171,-212,-246,-186,-216,-158,-87,-185,-153,-129,-249,-356,-353,-424,-280,-243,-236,-186,-222,-158,-137,-87,-253,-332,-352,-391
"Hydro-electric pumped storage : Delaware","thousand megawatthours","ELEC.GEN.HPS-DE-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Hydro-electric pumped storage : District Of Columbia","thousand megawatthours","ELEC.GEN.HPS-DC-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Hydro-electric pumped storage : Florida","thousand megawatthours","ELEC.GEN.HPS-FL-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Hydro-electric pumped storage : Georgia","thousand megawatthours","ELEC.GEN.HPS-GA-99.M",-36,-36,-38,-40,-57,-60,-60,-61,-57,-48,-34,-42,-42,-38,-44,-39,-52,-65,-71,-72,-67,-63,-53,-42,-73,-48,-59,-44,-44,-58,-61,-21,-46,-82,-49,-51,-55,-48,-76,-37,-79,-81,-74,-94,-126,-90,-78,-40,-33,-24,-19,-3,-29,13,-18,4,-15,-25,-24,-36,-2,-30,-60,-34,-39,-40,-40,-49,-49,-18,-15,-26,-26,-27,-36,-35,-38,-34,-41,-55,-50,-39,-35,96,-39,-36,-34,122,-28,-37,-43,-52,-51,8,9,24,11,30,33,10,-12,6,2,15,32,19,30,96,10,35,-38,-16,-36,-42,-50,-43,-46,-44,-27,21,-50,-40,-37,-16,-42,-54,-85,-93,-94,-82,-74,-65,-49,-60,-61,-58,-71,-90,-98,-91,-105,-34,-53,-69,-56,-52,-57,-48,-16,-34,33,-12,-44,-62,-74,-5,6,-19,-17,-3,-35,-76,-106,-135,-111,-103,-98,-83,-84,-66,-64,-14,-63,-90,-109,-125
"Hydro-electric pumped storage : Maryland","thousand megawatthours","ELEC.GEN.HPS-MD-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Hydro-electric pumped storage : North Carolina","thousand megawatthours","ELEC.GEN.HPS-NC-99.M",0,0,"--",0,0,0,"--",0,0,0,0,0,15,2,-4,-3,-3,-5,-2,10,-9,7,11,7,13,9,9,-4,19,10,17,10,-9,16,14,15,6,2,8,-18,-0,-5,1,6,16,15,15,33,22,15,15,-3,0,14,24,17,9,12,7,15,18,12,3,-5,-2,1,-0,2,23,31,30,20,33,15,11,5,6,15,16,22,7,7,0,0,0,9,-11,-10,-15,-17,-11,-17,-15,-16,-11,-8,32,0,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,28,19,24,16,13,7,8,18,36,29
"Hydro-electric pumped storage : South Carolina","thousand megawatthours","ELEC.GEN.HPS-SC-99.M",-62,-61,-64,-88,-97,-129,-123,-142,-83,-57,-70,-60,-52,-55,-48,-83,-93,-129,-150,-129,-135,-94,-77,-98,-81,-133,-119,-84,-82,-91,-120,-141,-110,-85,-84,-76,-95,-104,-79,-77,-135,-118,-106,-129,-63,-82,-72,-88,-107,-67,-72,-75,-104,-106,-131,-119,-145,-101,-64,-108,-86,-49,-82,-97,-99,-128,-141,-136,-99,-75,-54,-73,-77,-71,-97,-32,-131,-94,-120,-140,-120,-115,-97,-116,-77,-82,-89,-101,-119,-138,-151,-137,-137,-90,-61,-85,-67,-83,-53,-79,-99,-121,-110,-129,-71,-70,-52,-43,-80,-41,-32,-57,-86,-115,-141,-122,-90,-55,-61,-54,-68,-44,-46,-54,-76,-112,-144,-97,-80,-68,-56,-46,-52,-39,-62,-67,-71,-101,-113,-96,-99,-72,-45,-77,-59,-19,-55,-47,-94,-95,-73,-79,-95,-55,-57,-66,-13,-93,-29,-61,-96,-120,-96,-105,-61,-84,-67,-59,-90,-50,-38,-38,-103,-133,-122,-138
"Hydro-electric pumped storage : Virginia","thousand megawatthours","ELEC.GEN.HPS-VA-99.M",-140,-120,-132,-130,-142,-168,-197,-186,-291,-283,-304,-147,-145,-124,-147,-140,-123,-270,-317,-182,-172,-125,-126,-119,-115,-112,-116,-95,-127,-131,-166,-171,-142,-97,-114,-110,-88,-86,-88,-95,-101,-116,-111,-116,-94,-95,-86,-91,-87,-72,-106,-119,-98,-142,-150,-164,-154,-108,-106,-117,-83,-90,-72,-112,-77,-114,-113,-136,-100,-90,-81,-100,-123,-132,-99,-126,-109,-175,-193,-174,-166,-107,-105,-112,-290,-104,-123,-110,-114,-143,-168,-150,-132,-110,-72,-122,-126,-93,-75,-73,-85,-114,-128,-177,-135,-117,-102,-110,-113,-27,-59,-95,-146,-183,-199,-196,-146,-88,-124,-114,-128,-109,-88,-121,-118,-175,-163,-158,-110,-102,-106,-90,-73,-56,-107,-101,-137,-143,-157,-169,-144,-81,-99,-97,-100,-77,-112,-77,-85,-139,-130,-121,-108,-69,-85,-87,-81,-73,-107,-65,-118,-160,-151,-184,-109,-87,-99,-63,-72,-57,-48,-42,-94,-127,-158,-157
"Hydro-electric pumped storage : West Virginia","thousand megawatthours","ELEC.GEN.HPS-WV-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Hydro-electric pumped storage : East South Central","thousand megawatthours","ELEC.GEN.HPS-ESC-99.M",-52,-51,-53,-73,-62,-77,-87,-65,-67,-14,-57,-75,-50,-42,-58,-43,-54,-92,-67,-96,-26,-58,-42,-68,-40,-70,-57,-58,-59,-89,-70,-90,-76,-15,-59,-45,-52,-76,-45,-64,-84,-84,-77,-81,-77,-57,-47,-75,-70,-54,-37,-57,-9,-31,-74,-74,-64,-52,-34,-42,-58,-47,-37,-72,-51,-75,-82,-72,-64,-39,-41,-31,-66,-47,-34,-53,-49,-67,-81,-90,-79,-50,-51,-38,-35,-59,-55,-64,-50,-81,-91,-67,-65,-50,-62,-59,-53,-60,-33,-39,-56,-75,-70,-89,-65,-34,-5,-70,-64,-53,-34,-39,-77,-72,-82,-78,-71,-63,-43,-46,-40,-42,-42,-48,-40,-68,-85,-86,-59,-45,-44,-60,-39,-42,-19,-18,-25,-1,0,0,0,1,-3,-17,-8,-0,-13,-1,-1,-1,-1,-1,-1,-1,-1,-15,7,-28,-34,-31,-44,-65,-60,-59,-62,-41,-38,-37,-32,-22,-37,-24,-50,-41,-86,-91
"Hydro-electric pumped storage : Alabama","thousand megawatthours","ELEC.GEN.HPS-AL-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Hydro-electric pumped storage : Kentucky","thousand megawatthours","ELEC.GEN.HPS-KY-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Hydro-electric pumped storage : Mississippi","thousand megawatthours","ELEC.GEN.HPS-MS-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Hydro-electric pumped storage : Tennessee","thousand megawatthours","ELEC.GEN.HPS-TN-99.M",-52,-51,-53,-73,-62,-77,-87,-65,-67,-14,-57,-75,-50,-42,-58,-43,-54,-92,-67,-96,-26,-58,-42,-68,-40,-70,-57,-58,-59,-89,-70,-90,-76,-15,-59,-45,-52,-76,-45,-64,-84,-84,-77,-81,-77,-57,-47,-75,-70,-54,-37,-57,-9,-31,-74,-74,-64,-52,-34,-42,-58,-47,-37,-72,-51,-75,-82,-72,-64,-39,-41,-31,-66,-47,-34,-53,-49,-67,-81,-90,-79,-50,-51,-38,-35,-59,-55,-64,-50,-81,-91,-67,-65,-50,-62,-59,-53,-60,-33,-39,-56,-75,-70,-89,-65,-34,-5,-70,-64,-53,-34,-39,-77,-72,-82,-78,-71,-63,-43,-46,-40,-42,-42,-48,-40,-68,-85,-86,-59,-45,-44,-60,-39,-42,-19,-18,-25,-1,0,0,0,1,-3,-17,-8,-0,-13,-1,-1,-1,-1,-1,-1,-1,-1,-15,7,-28,-34,-31,-44,-65,-60,-59,-62,-41,-38,-37,-32,-22,-37,-24,-50,-41,-86,-91
"Hydro-electric pumped storage : West South Central","thousand megawatthours","ELEC.GEN.HPS-WSC-99.M",-9,-9,-10,-9,-13,-14,-18,-16,-9,-9,-10,-3,-3,-6,-28,-12,-14,-20,-17,-18,-17,-16,-12,-13,-16,-15,-16,-12,-14,-14,-23,-20,-16,-16,-18,-15,-18,-16,-15,-15,-21,-15,-20,-20,-21,-19,-15,-14,-14,-9,-18,-13,-15,-18,-13,-16,-18,-1,1,1,1,3,0,1,1,-8,-20,-19,-18,-21,-14,-7,2,-5,-12,-13,-14,-16,-16,-15,-14,-11,-13,-8,-8,-10,-6,-1,-17,-15,-14,-13,-14,-9,-5,-7,-6,-2,-5,-6,13,-8,-4,39,-7,-10,-11,-9,-13,-12,-11,-10,-13,-15,-20,-20,-16,-14,1,-11,-12,-10,-11,-11,-3,-9,-15,-11,-11,-10,-9,-6,-0,6,6,-7,-10,-10,-12,-9,-9,-10,-11,-10,-10,-8,-3,-1,-8,1,-4,-3,-6,-8,-6,8,-3,-4,-2,0,-2,-2,-3,-4,-5,-6,-5,-4,-2,-4,-3,-4,-4,-1,-7,-8
"Hydro-electric pumped storage : Arkansas","thousand megawatthours","ELEC.GEN.HPS-AR-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--",1,0,0,5,0,1,1,1,0,0,0,0,0,2,1,4,4,3,3,1,2,4,5,2,1,0,1,2,4,2,1,1,1,1,1,3,0,1,1,2,2,2,1,1,1,1,9,2,1,1,4,0,4,5,2,1,1,0,1,1,9,11,1,2,5,6,5,3,1,3,4,5,3,6,25,5,2,48,2,-0,0,0,0,0,-0,-0,0,-0,0,0,0,-0,-0,0,0,0,0,0,11,5,4,4,2,2,2,4,7,11,12,0,0,2,1,4,2,2,0,1,1,0,1,4,0,11,5,6,2,0,-0,0,7,4,7,10,8,10,8,8,3,0,0,1,0,1,1,0,0,4,5,3
"Hydro-electric pumped storage : Louisiana","thousand megawatthours","ELEC.GEN.HPS-LA-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Hydro-electric pumped storage : Oklahoma","thousand megawatthours","ELEC.GEN.HPS-OK-99.M",-9,-9,-10,-9,-13,-14,-18,-16,-9,-9,-10,-3,-3,-6,-28,-12,-14,-20,-17,-18,-17,-16,-12,-13,-16,-15,-17,-12,-14,-19,-23,-22,-17,-17,-19,-15,-18,-16,-15,-17,-22,-19,-24,-23,-24,-20,-17,-18,-19,-11,-19,-13,-16,-20,-17,-18,-19,-2,0,0,0,0,0,0,0,-10,-22,-21,-19,-21,-14,-8,-7,-7,-14,-14,-17,-17,-19,-20,-16,-12,-14,-9,-9,-11,-15,-12,-18,-17,-19,-19,-19,-12,-6,-10,-10,-7,-8,-12,-12,-14,-6,-8,-9,-10,-11,-9,-13,-12,-11,-10,-13,-15,-20,-20,-16,-14,2,-11,-12,-10,-11,-11,-15,-13,-19,-15,-13,-12,-12,-10,-7,-5,-5,-7,-10,-12,-12,-13,-10,-12,-12,-11,-11,-8,-4,-6,-8,-9,-9,-9,-8,-8,-6,8,-9,-8,-9,-10,-10,-12,-10,-12,-7,-7,-5,-5,-3,-5,-4,-4,-4,-5,-12,-11
"Hydro-electric pumped storage : Texas","thousand megawatthours","ELEC.GEN.HPS-TX-99.M","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--","--"
"Hydro-electric pumped storage : Mountain","thousand megawatthours","ELEC.GEN.HPS-MTN-99.M",10,-5,-14,10,28,7,4,5,9,3,-14,-17,-22,-24,-9,-9,-9,-8,-18,-7,13,-2,1,-2,8,3,-1,3,10,11,18,10,13,1,4,-0,-29,-26,-23,-1,-27,-29,-12,-20,-6,-15,-24,-33,-35,5,-5,10,23,20,-2,-10,4,-8,-9,-8,-12,-11,-6,-6,3,5,21,7,-7,-9,-16,-20,-21,-16,-7,-13,-1,8,8,10,2,-3,-2,-7,-16,-6,-14,6,-38,-14,2,-5,-7,-19,-21,-22,-12,15,7,4,-10,12,20,19,7,-2,1,-1,-2,4,57,32,21,9,22,10,1,-10,-25,-30,-18,-17,-25,-38,-7,5,10,8,-4,0,-12,-25,-22,-19,-12,-18,-12,-8,-8,-17,-8,0,-18,-23,-28,-10,-30,-17,-26,-13,-17,-14,-20,-31,-25,-25,-14,-18,-6,-9,-10,-1,-13,-19,-33,-28,-29,-31,-33,-30,-21,-25,-17,0,-1,4
"Hydro-electric pumped storage : Arizona","thousand megawatthours","ELEC.GEN.HPS-AZ-99.M",18,15,18,15,32,34,32,33,36,22,12,8,6,4,4,4,4,6,7,10,22,13,18,26,22,19,15,16,25,34,36,33,31,20,15,17,-10,-9,-1,-3,-3,2,8,-3,-6,-6,-9,-12,-6,7,-5,13,29,17,15,11,16,9,0,1,-2,-4,4,14,19,25,35,32,20,7,1,-2,-2,-5,-2,4,14,28,33,34,18,2,-0,-0,4,-5,-2,16,8,7,22,32,20,-2,-1,-4,-2,22,15,13,2,26,38,35,16,2,2,0,-2,12,66,40,30,13,26,20,14,7,-8,-10,-3,-4,-6,-9,20,24,35,37,21,13,3,-11,-4,-2,5,6,11,16,21,13,3,12,0,-1,1,-1,-1,3,2,13,13,16,2,-6,-8,-11,6,-9,-6,-3,5,18,17,11,-5,-7,-7,-7,-3,-6,-2,0,7,21,25,23