-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathelectricity.csv
We can't make this file beautiful and searchable because it's too large.
2117 lines (2117 loc) · 706 KB
/
electricity.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
"Utility.Number","Utility.Name","Utility.State","Utility.Type","Demand.Summer Peak","Demand.Winter Peak","Sources.Generation","Sources.Purchased","Sources.Other","Sources.Total","Uses.Retail","Uses.Resale","Uses.No Charge","Uses.Consumed","Uses.Losses","Uses.Total","Revenues.Retail","Revenue.Delivery","Revenue.Resale","Revenue.Adjustments","Revenue.Transmission","Revenue.Other","Revenue.Total","Retail.Residential.Revenue","Retail.Residential.Sales","Retail.Residential.Customers","Retail.Commercial.Revenue","Retail.Commercial.Sales","Retail.Commercial.Customers","Retail.Industrial.Revenue","Retail.Industrial.Sales","Retail.Industrial.Customers","Retail.Transportation.Revenue","Retail.Transportation.Sales","Retail.Transportation.Customers","Retail.Total.Revenue","Retail.Total.Sales","Retail.Total.Customers"
"55","City of Aberdeen - (MS)","MS","Municipal","32.7","30.7","0.0","204875.0","0.0","204875.0","198442.0","0.0","0.0","70.0","6363.0","204875.0","14649.0","0.0","0.0","0.0","0.0","300.5","14949.5","3644.0","32158.0","2595.0","4980.0","47295.0","661.0","6025.0","118989.0","2.0","0.0","0.0","0.0","14649.0","198442.0","3258.0"
"59","City of Abbeville - (LA)","LA","Municipal","31.4","22.9","0.0","137537.0","0.0","137537.0","127849.0","0.0","0.0","0.0","9688.0","137537.0","12574.4","0.0","0.0","0.0","0.0","0.0","12574.4","5279.9","52746.0","4464.0","4082.7","37537.0","1032.0","3211.8","37566.0","27.0","0.0","0.0","0.0","12574.4","127849.0","5523.0"
"84","A & N Electric Coop","VA","Cooperative","152.6","156.1","19.0","714961.0","0.0","714980.0","672572.0","0.0","0.0","1687.0","40721.0","714980.0","68496.7","0.0","0.0","0.0","0.0","1008.5","69505.2","38544.0","346555.0","31583.0","16000.0","156716.0","4019.0","13952.7","169301.0","8.0","0.0","0.0","0.0","68496.7","672572.0","35610.0"
"97","Adams Electric Coop","IL","Cooperative","37.0","37.0","4677.0","170432.0","0.0","175109.0","164358.0","0.0","0.0","318.0","10433.0","175109.0","22070.0","0.0","0.0","0.0","0.0","241.0","22311.0","16341.0","109301.0","8603.0","5729.0","55057.0","222.0","0.0","0.0","0.0","0.0","0.0","0.0","22070.0","164358.0","8825.0"
"108","Adams-Columbia Electric Coop","WI","Cooperative","109.1","83.4","0.0","524637.0","0.0","524637.0","493241.0","35.0","0.0","1122.0","30239.0","524637.0","67563.0","0.0","3.0","0.0","0.0","0.0","67566.0","42976.0","260879.0","34138.0","9189.0","72087.0","2074.0","15398.0","160275.0","926.0","0.0","0.0","0.0","67563.0","493241.0","37138.0"
"113","Agway Energy Services, LLC","NY","Retail Power Marketer","62.0","80.0","0.0","423959.0","0.0","423959.0","422061.0","0.0","0.0","0.0","1898.0","423959.0","34283.3","0.0","0.0","0.0","0.0","0.0","34283.3","25624.0","310489.0","39431.0","8659.300000000001","111572.0","6451.0","0.0","0.0","0.0","0.0","0.0","0.0","34283.3","422061.0","45882.0"
"118","Adams Rural Electric Coop, Inc","OH","Cooperative","22.2","28.7","0.0","110314.0","0.0","110314.0","103329.0","0.0","119.0","0.0","6866.0","110314.0","14853.0","0.0","0.0","0.0","0.0","401.0","15254.0","12805.0","87563.0","7136.0","2048.0","15766.0","364.0","0.0","0.0","0.0","0.0","0.0","0.0","14853.0","103329.0","7500.0"
"122","Village of Arcade - (NY)","NY","Municipal","23.1","37.8","0.0","156270.0","0.0","156270.0","150083.0","0.0","0.0","697.0","5490.0","156270.0","7186.0","0.0","0.0","0.0","0.0","514.0","7700.0","3600.0","69274.0","3619.0","1923.0","41552.0","587.0","1663.0","39257.0","15.0","0.0","0.0","0.0","7186.0","150083.0","4221.0"
"123","City of Adel- (GA)","GA","Municipal","21.6","20.2","0.0","120306.0","0.0","120306.0","115802.0","0.0","0.0","787.0","3717.0","120306.0","12952.0","0.0","0.0","0.0","0.0","0.0","12952.0","3659.0","25660.0","2041.0","5056.0","35325.0","572.0","4237.0","54817.0","15.0","0.0","0.0","0.0","12952.0","115802.0","2628.0"
"150","Adrian Public Utilities Comm","MN","Municipal","3.0","3.0","20.0","13846.0","-20.0","13846.0","12761.0","0.0","194.0","245.0","646.0","13846.0","1473.0","0.0","0.0","0.0","0.0","0.0","1473.0","722.0","6257.0","536.0","676.0","5994.0","113.0","75.0","510.0","2.0","0.0","0.0","0.0","1473.0","12761.0","651.0"
"155","Agralite Electric Coop","MN","Cooperative","46.4","46.7","528.0","247365.0","0.0","247893.0","232971.0","0.0","0.0","322.0","14600.0","247893.0","22389.0","0.0","0.0","0.0","0.0","355.0","22744.0","10250.0","82639.0","4382.0","5799.0","76847.0","273.0","6340.0","73485.0","571.0","0.0","0.0","0.0","22389.0","232971.0","5226.0"
"162","Aiken Electric Coop Inc","SC","Cooperative","211.5","232.0","0.0","937586.0","0.0","937586.0","897388.0","0.0","0.0","1230.0","38968.0","937586.0","110523.0","0.0","0.0","0.0","0.0","894.0","111417.0","81884.0","582815.0","44525.0","14999.0","128748.0","2748.0","13640.0","185825.0","15.0","0.0","0.0","0.0","110523.0","897388.0","47288.0"
"176","Ajo Improvement Co","AZ","Investor Owned","1.5","1.0","0.0","7596.0","0.0","7596.0","7596.0","0.0","0.0","0.0","0.0","7596.0","826.3","0.0","0.0","0.0","0.0","0.0","826.3","519.1","4597.0","776.0","307.2","2999.0","204.0","0.0","0.0","0.0","0.0","0.0","0.0","826.3","7596.0","980.0"
"195","Alabama Power Co","AL","Investor Owned","10967.0","10660.0","60332669.0","5816459.0","396391.0","66545519.0","53709666.0","9580895.0","1427.0","125373.0","3128158.0","66545519.0","5457826.0","0.0","372499.0","-3864.0","67236.0","145697.0","6039394.0","2302495.0","17218624.0","1268271.0","1678662.0","13804123.0","200600.0","1476669.0","22686919.0","6171.0","0.0","0.0","0.0","5457826.0","53709666.0","1475042.0"
"201","City of Alachua - (FL)","FL","Municipal","28.3","23.8","0.0","132183.0","0.0","132183.0","127049.0","0.0","0.0","1190.0","3944.0","132183.0","13844.0","0.0","0.0","0.0","0.0","57.0","13901.0","4923.0","42300.0","3787.0","8921.0","84749.0","719.0","0.0","0.0","0.0","0.0","0.0","0.0","13844.0","127049.0","4506.0"
"207","City of Alameda","CA","Municipal","59.6","63.7","0.0","357084.0","0.0","357084.0","343270.0","0.0","0.0","0.0","13814.0","357084.0","58111.6","0.0","0.0","0.0","0.0","4907.7","63019.3","22851.0","126480.0","30811.0","35260.6","216790.0","4307.0","0.0","0.0","0.0","0.0","0.0","0.0","58111.6","343270.0","35118.0"
"213","Alaska Electric Light&Power Co","AK","Investor Owned","71.0","79.0","130872.0","302805.0","0.0","433677.0","414210.0","0.0","0.0","4423.0","15044.0","433677.0","47342.2","0.0","0.0","0.0","0.0","518.4","47860.6","17950.6","151017.0","14579.0","11798.6","119953.0","2295.0","17593.0","143240.0","131.0","0.0","0.0","0.0","47342.2","414210.0","17005.0"
"219","Alaska Power and Telephone Co","WA","Investor Owned","1.0","1.0","23304.0","51004.0","0.0","74308.0","65793.0","833.0","0.0","1689.0","5993.0","74308.0","17957.0","0.0","95.0","0.0","0.0","1719.0","19771.0","8095.0","26264.0","5496.0","9862.0","39529.0","2370.0","0.0","0.0","0.0","0.0","0.0","0.0","17957.0","65793.0","7866.0"
"221","Alaska Village Elec Coop, Inc","AK","Cooperative","19.4","23.6","124113.0","0.0","0.0","124113.0","115837.0","0.0","0.0","0.0","8276.0","124113.0","45588.0","0.0","0.0","0.0","0.0","899.0","46487.0","18561.0","41535.0","8158.0","27027.0","74302.0","3256.0","0.0","0.0","0.0","0.0","0.0","0.0","45588.0","115837.0","11414.0"
"230","Albany Water Gas & Light Comm","GA","Municipal","183.4","159.0","0.0","925393.0","0.0","925393.0","876832.0","0.0","0.0","0.0","48561.0","925393.0","95182.0","0.0","0.0","0.0","0.0","690.0","95872.0","36596.0","337765.0","31473.0","58586.0","539067.0","5610.0","0.0","0.0","0.0","0.0","0.0","0.0","95182.0","876832.0","37083.0"
"232","City of Albemarle - (NC)","NC","Municipal","62.6","67.9","0.0","296364.0","0.0","296364.0","278239.0","0.0","0.0","115.0","18010.0","296364.0","32610.2","0.0","0.0","0.0","0.0","326.9","32937.1","16072.9","120632.0","9876.0","14016.0","127049.0","2233.0","2521.3","30558.0","15.0","0.0","0.0","0.0","32610.2","278239.0","12124.0"
"240","Albemarle Electric Member Corp","NC","Cooperative","55.1","73.1","0.0","227274.0","0.0","227274.0","213329.0","0.0","0.0","599.0","13346.0","227274.0","26714.0","0.0","0.0","0.0","0.0","736.0","27450.0","22346.0","171386.0","11679.0","3873.0","35031.0","1120.0","495.0","6912.0","19.0","0.0","0.0","0.0","26714.0","213329.0","12818.0"
"241","Albertville Municipal Utilities Board","AL","Municipal","103.9","102.1","0.0","604928.0","0.0","604928.0","585580.0","0.0","0.0","0.0","19348.0","604928.0","46505.0","0.0","0.0","0.0","0.0","705.8","47210.8","10986.0","111770.0","7931.0","17258.0","168164.0","2237.0","18261.0","305646.0","15.0","0.0","0.0","0.0","46505.0","585580.0","10183.0"
"261","AGC Division of APG Inc","PA","Investor Owned","538.0","531.0","1874348.0","0.0","0.0","1874348.0","431636.0","1442712.0","0.0","0.0","0.0","1874348.0","65899.0","0.0","25734.0","811.0","0.0","14373.0","106817.0","0.0","0.0","0.0","0.0","0.0","0.0","65899.0","431636.0","1.0","0.0","0.0","0.0","65899.0","431636.0","1.0"
"276","Alcorn County Elec Power Assn","MS","Cooperative","126.2","108.3","0.0","607950.0","0.0","607950.0","585887.0","0.0","0.0","699.0","21364.0","607950.0","55375.0","0.0","0.0","0.0","0.0","1289.0","56664.0","23515.0","204068.0","14646.0","19909.0","167000.0","4123.0","11951.0","214819.0","6.0","0.0","0.0","0.0","55375.0","585887.0","18775.0"
"289","City of Alexander City","AL","Municipal","30.7","32.4","0.0","149183.0","0.0","149183.0","123075.0","0.0","0.0","0.0","26108.0","149183.0","13107.0","0.0","0.0","0.0","0.0","0.0","13107.0","5397.0","50590.0","5083.0","3936.0","27354.0","993.0","3774.0","45131.0","68.0","0.0","0.0","0.0","13107.0","123075.0","6144.0"
"295","City of Alexandria - (MN)","MN","Municipal","58.5","47.9","0.0","295978.0","0.0","295978.0","280236.0","0.0","0.0","0.0","15742.0","295978.0","24724.0","0.0","0.0","0.0","0.0","567.3","25291.3","7636.1","72706.0","7995.0","3687.0","36462.0","1672.0","13400.9","171068.0","203.0","0.0","0.0","0.0","24724.0","280236.0","9870.0"
"296","Alfalfa Electric Coop, Inc","OK","Cooperative","144.2","148.9","0.0","1002739.0","0.0","1002739.0","983883.0","0.0","0.0","341.0","18515.0","1002739.0","65254.0","0.0","0.0","0.0","0.0","372.0","65626.0","4996.0","51363.0","2964.0","6558.0","47819.0","5408.0","53700.0","884701.0","251.0","0.0","0.0","0.0","65254.0","983883.0","8623.0"
"298","City of Alexandria - (LA)","LA","Municipal","161.0","126.0","194158.0","734723.0","0.0","928881.0","660204.0","194158.0","9804.0","0.0","64715.0","928881.0","66890.5","0.0","8560.6","0.0","0.0","0.0","75451.1","28514.0","274578.0","20216.0","37961.3","380802.0","3779.0","415.2","4824.0","5.0","0.0","0.0","0.0","66890.5","660204.0","24000.0"
"305","Alger-Delta Coop Electric Assn","MI","Cooperative","14.6","14.1","0.0","91074.0","0.0","91074.0","83141.0","0.0","0.0","0.0","7933.0","91074.0","14836.0","0.0","0.0","0.0","0.0","0.0","14836.0","9842.0","47807.0","9439.0","2125.0","13598.0","511.0","2869.0","21736.0","1.0","0.0","0.0","0.0","14836.0","83141.0","9951.0"
"307","Algoma Utility Comm","WI","Municipal","7.6","8.0","0.0","42514.0","0.0","42514.0","40444.0","0.0","0.0","79.0","1991.0","42514.0","4302.5","0.0","0.0","0.0","0.0","31.5","4334.0","1393.6","10921.0","1658.0","2029.6","19496.0","358.0","879.3","10027.0","2.0","0.0","0.0","0.0","4302.5","40444.0","2018.0"
"308","City of Acworth - (GA)","GA","Municipal","26.9","16.2","0.0","97683.0","3406.0","101089.0","95288.0","0.0","0.0","1538.0","4263.0","101089.0","13082.7","0.0","0.0","0.0","0.0","1097.4","14180.1","8459.9","59403.0","5930.0","4383.0","34101.0","587.0","239.8","1784.0","3.0","0.0","0.0","0.0","13082.7","95288.0","6520.0"
"309","City of Algona - (IA)","IA","Municipal","24.0","18.0","66365.0","55064.0","106098.0","227527.0","114097.0","109603.0","0.0","0.0","3827.0","227527.0","11375.0","0.0","4064.0","0.0","0.0","0.0","15439.0","4045.0","28107.0","3035.0","3476.0","29898.0","681.0","3854.0","56092.0","14.0","0.0","0.0","0.0","11375.0","114097.0","3730.0"
"329","Allamakee-Clayton El Coop, Inc","IA","Cooperative","26.9","28.3","102.0","142742.0","0.0","142844.0","126114.0","8804.0","0.0","498.0","7428.0","142844.0","18427.6","0.0","355.0","0.0","0.0","171.8","18954.4","16669.1","112248.0","9454.0","1758.5","13866.0","517.0","0.0","0.0","0.0","0.0","0.0","0.0","18427.6","126114.0","9971.0"
"367","City of Alliance- (NE)","NE","Municipal","25.6","20.9","26.0","118825.0","-4404.0","114447.0","108117.0","0.0","1911.0","0.0","4419.0","114447.0","12687.5","0.0","0.0","0.0","0.0","919.0","13606.5","4873.6","37878.0","4150.0","4980.5","42016.0","1056.0","2833.4","28223.0","11.0","0.0","0.0","0.0","12687.5","108117.0","5217.0"
"392","Alpena Power Co","MI","Investor Owned","61.0","55.0","0.0","374043.0","0.0","374043.0","358831.0","0.0","0.0","133.0","15079.0","374043.0","34742.1","0.0","0.0","0.0","0.0","247.1","34989.2","11842.0","85293.0","13708.0","12453.7","104553.0","3979.0","10446.4","168985.0","4.0","0.0","0.0","0.0","34742.1","358831.0","17691.0"
"407","Altamaha Electric Member Corp","GA","Cooperative","91.6","95.8","0.0","406461.0","0.0","406461.0","406461.0","0.0","0.0","0.0","0.0","406461.0","49254.9","0.0","0.0","0.0","0.0","0.0","49254.9","31461.4","228658.0","18537.0","8624.5","65704.0","1858.0","9169.0","112099.0","235.0","0.0","0.0","0.0","49254.9","406461.0","20630.0"
"416","City of Altus - (OK)","OK","Municipal","57.9","31.8","0.0","216495.0","0.0","216495.0","199088.0","0.0","9231.0","0.0","8176.0","216495.0","23342.2","0.0","0.0","0.0","0.0","0.0","23342.2","12512.1","86753.0","7571.0","7181.7","66330.0","1193.0","3648.4","46005.0","2.0","0.0","0.0","0.0","23342.2","199088.0","8766.0"
"471","Amana Society Service Co","IA","Investor Owned","16.0","15.0","1924.0","99779.0","0.0","101703.0","99621.0","0.0","0.0","0.0","2082.0","101703.0","7914.0","0.0","0.0","0.0","0.0","59.0","7973.0","889.0","6850.0","703.0","955.0","8312.0","182.0","6070.0","84459.0","1.0","0.0","0.0","0.0","7914.0","99621.0","886.0"
"540","BP Energy Company","TX","Retail Power Marketer","13.0","13.0","0.0","881120.0","0.0","881120.0","881120.0","0.0","0.0","0.0","0.0","881120.0","23647.0","0.0","0.0","0.0","0.0","0.0","23647.0","0.0","0.0","0.0","0.0","0.0","0.0","23647.0","881120.0","4.0","0.0","0.0","0.0","23647.0","881120.0","4.0"
"554","City of Ames - (IA)","IA","Municipal","149.2","110.3","281373.0","505745.0","0.0","787118.0","640964.0","126140.0","0.0","404.0","19610.0","787118.0","60180.3","0.0","3148.1","0.0","1822.0","6568.5","71718.9","19848.1","164873.0","23445.0","29230.5","340083.0","2986.0","11101.7","136008.0","6.0","0.0","0.0","0.0","60180.3","640964.0","26437.0"
"560","City of Amherst- (OH)","OH","Municipal","27.0","18.0","0.0","108152.0","0.0","108152.0","99933.0","0.0","0.0","0.0","8219.0","108152.0","11096.0","0.0","0.0","0.0","0.0","0.0","11096.0","6069.0","55291.0","5443.0","1703.0","13412.0","501.0","3324.0","31230.0","68.0","0.0","0.0","0.0","11096.0","99933.0","6012.0"
"562","Amicalola Electric Member Corp","GA","Cooperative","175.7","212.8","0.0","741061.0","0.0","741061.0","698503.0","0.0","0.0","948.0","41610.0","741061.0","82368.8","0.0","0.0","0.0","0.0","6893.2","89262.0","68442.4","588113.0","43564.0","13926.4","110390.0","4818.0","0.0","0.0","0.0","0.0","0.0","0.0","82368.8","698503.0","48382.0"
"571","City of Amory","MS","Municipal","29.9","21.9","0.0","136792.0","0.0","136792.0","133137.0","0.0","0.0","0.0","3655.0","136792.0","13311.0","0.0","0.0","0.0","0.0","336.2","13647.2","4035.0","37913.0","2915.0","6212.0","55387.0","1092.0","3064.0","39837.0","3.0","0.0","0.0","0.0","13311.0","133137.0","4010.0"
"577","City of Alcoa Utilities","TN","Municipal","137.9","173.8","0.0","620728.0","0.0","620728.0","590397.0","0.0","0.0","15.0","30317.0","620728.0","62499.0","0.0","0.0","0.0","0.0","1542.6","64041.6","38559.0","360955.0","25382.0","23802.0","228445.0","3598.0","138.0","997.0","1.0","0.0","0.0","0.0","62499.0","590397.0","28980.0"
"590","City of Anaheim - (CA)","CA","Municipal","562.0","344.0","418882.0","2925011.0","0.0","3343893.0","2344878.0","908838.0","0.0","0.0","90177.0","3343893.0","375052.0","0.0","33213.0","0.0","30725.0","1120.0","440110.0","99455.0","601952.0","111347.0","137843.0","766709.0","15086.0","137754.0","976217.0","304.0","0.0","0.0","0.0","375052.0","2344878.0","126737.0"
"599","Anchorage Municipal Light and Power","AK","Municipal","145.0","163.0","1286344.0","95933.0","0.0","1382277.0","966678.0","387688.0","0.0","0.0","27911.0","1382277.0","166730.4","0.0","23344.4","-5810.3","0.0","779.0","185043.5","26125.8","127375.0","24680.0","140604.6","839303.0","6392.0","0.0","0.0","0.0","0.0","0.0","0.0","166730.4","966678.0","31072.0"
"604","City of Andalusia","AL","Municipal","59.3","49.1","0.0","373093.0","0.0","373093.0","369185.0","0.0","0.0","0.0","3908.0","373093.0","27337.0","0.0","0.0","0.0","0.0","0.0","27337.0","5245.0","39538.0","3605.0","8639.0","60978.0","987.0","13453.0","268669.0","2.0","0.0","0.0","0.0","27337.0","369185.0","4594.0"
"636","City of Anderson - (IN)","IN","Municipal","166.3","136.5","0.0","858810.0","0.0","858810.0","843558.0","0.0","0.0","0.0","15252.0","858810.0","83762.5","0.0","0.0","0.0","0.0","2256.6","86019.1","34765.8","291037.0","31302.0","31040.6","315130.0","4251.0","17956.1","237391.0","57.0","0.0","0.0","0.0","83762.5","843558.0","35610.0"
"689","Connexus Energy","MN","Cooperative","504.7","347.2","0.0","2315519.0","0.0","2315519.0","1918613.0","320350.0","0.0","0.0","76556.0","2315519.0","235678.3","0.0","25402.6","0.0","0.0","0.0","261080.9","154207.5","1127318.0","120470.0","68811.3","659735.0","11420.0","12659.5","131560.0","399.0","0.0","0.0","0.0","235678.3","1918613.0","132289.0"
"690","City of Bardstown - (KY)","KY","Municipal","37.8","32.1","0.0","200526.0","0.0","200526.0","192741.0","0.0","0.0","0.0","7785.0","200526.0","16095.0","0.0","0.0","0.0","0.0","0.0","16095.0","3815.0","42315.0","3372.0","4817.0","54265.0","1197.0","7463.0","96161.0","15.0","0.0","0.0","0.0","16095.0","192741.0","4584.0"
"691","City of Anoka","MN","Municipal","61.2","40.9","0.0","275812.0","0.0","275812.0","268852.0","0.0","0.0","0.0","6960.0","275812.0","27493.0","0.0","0.0","0.0","0.0","157.0","27650.0","9158.0","71616.0","10765.0","9610.0","96583.0","1323.0","8725.0","100653.0","17.0","0.0","0.0","0.0","27493.0","268852.0","12105.0"
"694","Anza Electric Coop Inc","CA","Cooperative","14.5","11.3","0.0","64082.0","0.0","64082.0","59236.0","0.0","0.0","125.0","4721.0","64082.0","10611.0","0.0","0.0","0.0","0.0","0.0","10611.0","8498.0","47396.0","4338.0","2113.0","11840.0","333.0","0.0","0.0","0.0","0.0","0.0","0.0","10611.0","59236.0","4671.0"
"719","Town of Apex- (NC)","NC","Municipal","95.1","54.4","0.0","325569.0","0.0","325569.0","303798.0","0.0","1735.0","11263.0","8773.0","325569.0","29220.1","0.0","0.0","0.0","0.0","0.0","29220.1","19078.7","188460.0","16934.0","10141.4","115338.0","1469.0","0.0","0.0","0.0","0.0","0.0","0.0","29220.1","303798.0","18403.0"
"727","Appalachian Electric Coop","TN","Cooperative","197.1","252.2","0.0","939489.0","0.0","939489.0","890133.0","0.0","0.0","1144.0","48212.0","939489.0","98267.0","0.0","0.0","0.0","0.0","3191.0","101458.0","66123.0","573078.0","39763.0","28123.0","246674.0","6524.0","4021.0","70381.0","5.0","0.0","0.0","0.0","98267.0","890133.0","46291.0"
"733","Appalachian Power Co","OH","Investor Owned","5596.0","6967.0","25686531.0","9976293.0","0.0","35662824.0","27429334.0","6008360.0","501.0","0.0","2224629.0","35662824.0","2544960.0","889.0","288636.0","-12774.0","92074.0","53117.0","2966902.0","1242766.0","10700872.0","808570.0","664060.0","7289120.0","143172.0","639023.0","9603041.0","4118.0","0.0","0.0","0.0","2545849.0","27593033.0","955860.0"
"750","Arab Electric Coop Inc","AL","Cooperative","69.9","81.6","0.0","315553.0","0.0","315553.0","288438.0","0.0","0.0","378.0","26736.0","315553.0","31823.0","0.0","0.0","0.0","0.0","1282.9","33105.9","19778.0","179106.0","12510.0","11676.0","105036.0","2963.0","369.0","4296.0","1.0","0.0","0.0","0.0","31823.0","288438.0","15473.0"
"803","Arizona Public Service Co","AZ","Investor Owned","7367.0","4303.0","24920924.0","7825768.0","-6122.0","32740570.0","28018011.0","2892159.0","0.0","61297.0","1769103.0","32740570.0","3407017.0","0.0","117096.0","0.0","0.0","66454.0","3590567.0","1792453.0","13207135.0","1080665.0","1423610.0","12526675.0","129904.0","190954.0","2284201.0","4058.0","0.0","0.0","0.0","3407017.0","28018011.0","1214627.0"
"814","Entergy Arkansas Inc","AR","Investor Owned","4616.0","3735.0","26473510.0","4134405.0","640971.0","31248886.0","20888456.0","8331076.0","0.0","52893.0","1976461.0","31248886.0","1739545.3","0.0","249028.4","-430.4","109073.4","28076.1","2125292.8","761280.5","7298416.0","591113.0","509947.3","6061661.0","94323.0","468307.8","7528301.0","23426.0","9.7","78.0","1.0","1739545.3","20888456.0","708863.0"
"817","Arkansas Valley Elec Coop Corp","AR","Cooperative","303.2","320.1","0.0","1252032.0","0.0","1252032.0","1186080.0","0.0","0.0","362.0","65590.0","1252032.0","113969.3","0.0","0.0","0.0","0.0","2902.2","116871.5","80211.2","730227.0","55062.0","19720.7","198136.0","4253.0","14037.4","257717.0","26.0","0.0","0.0","0.0","113969.3","1186080.0","59341.0"
"828","City of Arlington - (MN)","MN","Municipal","15.8","11.3","0.0","16785.0","0.0","16785.0","15679.0","0.0","0.0","0.0","1106.0","16785.0","1518.8","0.0","0.0","0.0","0.0","56.5","1575.3","783.7","8148.0","972.0","735.1","7531.0","162.0","0.0","0.0","0.0","0.0","0.0","0.0","1518.8","15679.0","1134.0"
"887","Arrowhead Electric Coop, Inc","MN","Cooperative","7.8","23.3","0.0","76768.0","0.0","76768.0","71976.0","0.0","0.0","4792.0","0.0","76768.0","9608.0","0.0","0.0","0.0","0.0","77.9","9685.9","6338.6","42863.0","3803.0","3269.4","29113.0","431.0","0.0","0.0","0.0","0.0","0.0","0.0","9608.0","71976.0","4234.0"
"907","City of Ashland - (OR)","OR","Municipal","42.0","38.0","3071.0","180005.0","0.0","183076.0","177290.0","0.0","0.0","0.0","5786.0","183076.0","15377.5","0.0","0.0","0.0","0.0","0.0","15377.5","8112.8","92940.0","10386.0","7264.7","84350.0","1613.0","0.0","0.0","0.0","0.0","0.0","0.0","15377.5","177290.0","11999.0"
"918","City of Aspen- (CO)","CO","Municipal","11.1","14.5","18989.0","50039.0","0.0","69028.0","64474.0","0.0","0.0","0.0","4554.0","69028.0","6970.0","0.0","0.0","0.0","0.0","0.0","6970.0","2622.0","22063.0","2017.0","4348.0","42411.0","1005.0","0.0","0.0","0.0","0.0","0.0","0.0","6970.0","64474.0","3022.0"
"942","Atchison-Holt Electric Coop","MO","Cooperative","17.2","15.1","0.0","88979.0","0.0","88979.0","83215.0","0.0","0.0","203.0","5561.0","88979.0","9320.0","0.0","0.0","0.0","0.0","0.0","9320.0","4863.0","34445.0","3372.0","2165.0","20160.0","282.0","2292.0","28610.0","202.0","0.0","0.0","0.0","9320.0","83215.0","3856.0"
"944","City of Athens - (AL)","AL","Municipal","255.2","315.4","0.0","1159739.0","0.0","1159739.0","1093809.0","0.0","0.0","0.0","65930.0","1159739.0","103405.0","0.0","0.0","0.0","0.0","2396.0","105801.0","59036.0","595013.0","38921.0","33652.0","317955.0","6985.0","10717.0","180841.0","11.0","0.0","0.0","0.0","103405.0","1093809.0","45917.0"
"947","Athens Utility Board","TN","Municipal","113.1","109.3","0.0","657367.0","0.0","657367.0","628761.0","0.0","0.0","435.0","28171.0","657367.0","48777.0","0.0","0.0","0.0","0.0","875.3","49652.3","15008.0","146564.0","10903.0","16578.0","151618.0","2295.0","17191.0","330579.0","8.0","0.0","0.0","0.0","48777.0","628761.0","13207.0"
"963","Atlantic City Electric Co","NJ","Investor Owned","2401.0","1628.0","0.0","6098878.0","254375.0","6353253.0","4448035.0","1238364.0","0.0","9417.0","657437.0","6353253.0","750735.3","236593.9","65465.8","11621.1","135191.4","0.0","1199607.5","618836.4","3852703.0","485990.0","332803.4","3989999.0","64538.0","35689.4","741851.0","804.0","0.0","0.0","0.0","987329.2000000001","8584553.0","551332.0"
"965","Atlantic Municipal Utilities","IA","Municipal","24.5","21.8","117328.0","41072.0","-658.0","157742.0","108113.0","44210.0","0.0","0.0","5419.0","157742.0","8366.0","0.0","1242.0","0.0","824.0","112.0","10544.0","3385.2","39357.0","3825.0","4329.2","57288.0","832.0","651.6","11468.0","1.0","0.0","0.0","0.0","8366.0","108113.0","4658.0"
"970","Homefield Energy","IL","Retail Power Marketer","0.0","0.0","0.0","8812911.0","0.0","8812911.0","8812911.0","0.0","0.0","0.0","0.0","8812911.0","527741.6","0.0","0.0","0.0","0.0","0.0","527741.6","329545.6","5467544.0","567576.0","172680.5","2812500.0","3279.0","23667.0","510028.0","126.0","1848.5","22839.0","1.0","527741.6","8812911.0","570982.0"
"993","Auburn Board of Public Works","NE","Municipal","13.2","13.4","0.0","61516.0","0.0","61516.0","55590.0","0.0","0.0","241.0","5685.0","61516.0","5207.0","0.0","0.0","0.0","0.0","864.0","6071.0","2215.0","23303.0","1857.0","2711.0","29459.0","913.0","281.0","2828.0","1.0","0.0","0.0","0.0","5207.0","55590.0","2771.0"
"994","City of Auburn - (IN)","IN","Municipal","75.7","66.1","0.0","434660.0","0.0","434660.0","426676.0","0.0","876.0","0.0","7108.0","434660.0","38677.6","0.0","0.0","0.0","0.0","2827.1","41504.7","5699.6","61201.0","6436.0","2936.8","27486.0","985.0","30041.2","337989.0","136.0","0.0","0.0","0.0","38677.6","426676.0","7557.0"
"998","City of Augusta - (KS)","KS","Municipal","21.9","11.7","-795.0","79733.0","-2375.0","76563.0","66039.0","81.0","2717.0","0.0","7726.0","76563.0","6996.2","0.0","4.9","1911.4","367.7","0.0","9280.2","4061.5","36003.0","3895.0","2140.9","21373.0","412.0","793.8","8663.0","24.0","0.0","0.0","0.0","6996.2","66039.0","4331.0"
"1009","City of Austin - (MN)","MN","Municipal","66.4","49.1","0.0","342558.0","0.0","342558.0","335917.0","0.0","0.0","0.0","6641.0","342558.0","35895.2","0.0","0.0","0.0","0.0","697.1","36592.3","10523.5","75834.0","10468.0","14442.0","131572.0","1710.0","10929.7","128511.0","1.0","0.0","0.0","0.0","35895.2","335917.0","12179.0"
"1015","Austin Energy","TX","Municipal","2654.0","2123.0","9408274.0","5120522.0","192308.0","14721104.0","12905561.0","1071191.0","0.0","0.0","744352.0","14721104.0","1179480.0","0.0","37391.5","0.0","78528.2","0.0","1295399.7","461460.3","4314170.0","424554.0","543609.9","5748031.0","51086.0","174409.8","2843360.0","104.0","0.0","0.0","0.0","1179480.0","12905561.0","475744.0"
"1024","City of Ava - (MO)","MO","Municipal","14.0","11.0","0.0","65800.0","0.0","65800.0","61245.0","0.0","1823.0","0.0","2732.0","65800.0","3031.0","0.0","0.0","0.0","0.0","0.0","3031.0","829.0","10925.0","1198.0","315.0","4336.0","297.0","1887.0","45984.0","49.0","0.0","0.0","0.0","3031.0","61245.0","1544.0"
"1036","Town of Ayden - (NC)","NC","Municipal","20.2","22.6","0.0","105174.0","0.0","105174.0","101787.0","0.0","1386.0","0.0","2001.0","105174.0","10924.0","0.0","0.0","0.0","0.0","406.3","11330.3","5305.7","43798.0","3592.0","3089.7","26713.0","478.0","2528.6","31276.0","1.0","0.0","0.0","0.0","10924.0","101787.0","4071.0"
"1050","City of Azusa","CA","Municipal","62.4","41.1","0.0","343640.0","-19055.0","324585.0","255975.0","59692.0","0.0","0.0","8918.0","324585.0","36845.0","0.0","4017.0","0.0","0.0","542.0","41404.0","11498.0","86287.0","14667.0","15201.0","82792.0","1854.0","10146.0","86896.0","34.0","0.0","0.0","0.0","36845.0","255975.0","16555.0"
"1062","BARC Electric Coop Inc","VA","Cooperative","31.5","47.6","127.0","187870.0","0.0","187997.0","173401.0","0.0","0.0","1458.0","13138.0","187997.0","21170.0","0.0","0.0","0.0","0.0","540.0","21710.0","15561.8","121043.0","11944.0","5608.2","52358.0","779.0","0.0","0.0","0.0","0.0","0.0","0.0","21170.0","173401.0","12723.0"
"1101","Bagley Public Utilities Comm","MN","Municipal","4.8","4.9","0.0","26740.0","0.0","26740.0","24112.0","0.0","204.0","247.0","2177.0","26740.0","2710.3","0.0","0.0","0.0","0.0","39.7","2750.0","697.2","5488.0","546.0","396.0","3430.0","145.0","1617.1","15194.0","70.0","0.0","0.0","0.0","2710.3","24112.0","761.0"
"1148","City of Baldwin City- (KS)","KS","Municipal","9.0","5.5","223.0","33717.0","0.0","33940.0","30691.0","0.0","267.0","0.0","2982.0","33940.0","4313.8","0.0","0.0","0.0","0.0","0.0","4313.8","2353.1","16267.0","1741.0","1960.7","14424.0","241.0","0.0","0.0","0.0","0.0","0.0","0.0","4313.8","30691.0","1982.0"
"1149","Baldwin County El Member Corp","AL","Cooperative","319.0","342.0","0.0","1414087.0","0.0","1414087.0","1347727.0","0.0","0.0","0.0","66360.0","1414087.0","152638.0","0.0","0.0","0.0","0.0","0.0","152638.0","107591.0","884595.0","67787.0","45047.0","463132.0","7078.0","0.0","0.0","0.0","0.0","0.0","0.0","152638.0","1347727.0","74865.0"
"1167","Baltimore Gas & Electric Co","MD","Investor Owned","6448.0","5665.0","0.0","13669290.0","0.0","13669290.0","11645890.0","0.0","0.0","16164.0","2007236.0","13669290.0","1588834.2","585879.6","0.0","0.0","228054.0","86342.9","2489110.7","1428236.8","12093862.0","1155397.0","700708.0","15319973.0","119919.0","43609.3","1280776.0","5725.0","2159.7","276155.0","3.0","2174713.8","28970766.0","1281044.0"
"1169","Bailey County Elec Coop Assn","TX","Cooperative","86.7","57.3","0.0","273402.0","0.0","273402.0","245155.0","0.0","0.0","82.0","28165.0","273402.0","25730.3","0.0","0.0","0.0","0.0","151.5","25881.8","2856.1","24276.0","3395.0","4942.5","50164.0","795.0","17931.7","170715.0","4734.0","0.0","0.0","0.0","25730.3","245155.0","8924.0"
"1175","Bandera Electric Coop, Inc","TX","Cooperative","156.7","206.1","0.0","630828.0","0.0","630828.0","581899.0","0.0","0.0","805.0","48124.0","630828.0","58533.3","0.0","0.0","0.0","0.0","5168.6","63701.9","43195.3","408561.0","30087.0","13867.1","153184.0","5306.0","1470.9","20154.0","59.0","0.0","0.0","0.0","58533.3","581899.0","35452.0"
"1176","City of Bandon - (OR)","OR","Municipal","10.4","17.8","0.0","68619.0","0.0","68619.0","65315.0","0.0","0.0","169.0","3135.0","68619.0","5649.0","0.0","0.0","0.0","0.0","0.0","5649.0","3034.0","35667.0","2970.0","2460.0","28099.0","848.0","155.0","1549.0","2.0","0.0","0.0","0.0","5649.0","65315.0","3820.0"
"1179","Emera Maine","ME","Investor Owned","350.0","381.0","0.0","1772518.0","0.0","1772518.0","1382488.0","333133.0","0.0","3642.0","53255.0","1772518.0","205439.6","30720.9","11824.0","-522.7","8280.7","2541.9","258284.4","137844.8","802910.0","132585.0","79197.9","703036.0","25230.0","19117.8","430994.0","252.0","0.0","0.0","0.0","236160.5","1936940.0","158067.0"
"1181","Village of Bangor - (WI)","WI","Municipal","5.3","5.0","0.0","27127.0","0.0","27127.0","25232.0","0.0","0.0","0.0","1895.0","27127.0","3124.1","0.0","0.0","0.0","0.0","0.0","3124.1","1505.7","11540.0","1305.0","1164.0","9469.0","439.0","454.4","4223.0","8.0","0.0","0.0","0.0","3124.1","25232.0","1752.0"
"1192","City of Banning - (CA)","CA","Municipal","46.3","20.8","199657.0","170295.0","0.0","369952.0","145337.0","221483.0","0.0","0.0","3132.0","369952.0","28758.1","0.0","6961.2","0.0","1509.9","1113.6","38342.8","14902.3","73845.0","10985.0","11518.4","55493.0","1132.0","2337.4","15999.0","12.0","0.0","0.0","0.0","28758.1","145337.0","12129.0"
"1196","Village of Baraga - (MI)","MI","Municipal","3.8","3.6","0.0","21138.0","0.0","21138.0","19176.0","0.0","0.0","0.0","1962.0","21138.0","2432.0","0.0","0.0","0.0","0.0","0.0","2432.0","379.0","2886.0","652.0","2053.0","16290.0","242.0","0.0","0.0","0.0","0.0","0.0","0.0","2432.0","19176.0","894.0"
"1201","Barbourville Utility Comm","KY","Municipal","19.0","17.9","0.0","88488.0","0.0","88488.0","88488.0","0.0","0.0","0.0","0.0","88488.0","8282.1","0.0","0.0","0.0","0.0","0.0","8282.1","4026.3","38879.0","3430.0","701.6","6956.0","513.0","3554.2","42653.0","185.0","0.0","0.0","0.0","8282.1","88488.0","4128.0"
"1233","City of Barnesville - (MN)","MN","Municipal","4.2","5.7","0.0","24220.0","-524.0","23696.0","21830.0","0.0","1048.0","182.0","636.0","23696.0","2052.5","0.0","0.0","0.0","0.0","0.0","2052.5","1578.8","16933.0","1193.0","473.7","4897.0","129.0","0.0","0.0","0.0","0.0","0.0","0.0","2052.5","21830.0","1322.0"
"1251","Barron Electric Coop","WI","Cooperative","45.9","46.2","128.0","380268.0","0.0","380396.0","354193.0","0.0","0.0","668.0","25535.0","380396.0","38106.0","0.0","0.0","0.0","0.0","125.0","38231.0","25252.0","192140.0","18106.0","3251.0","32448.0","206.0","9603.0","129605.0","165.0","0.0","0.0","0.0","38106.0","354193.0","18477.0"
"1273","Bartlett Electric Coop, Inc","TX","Cooperative","50.7","70.8","0.0","200039.0","0.0","200039.0","189532.0","0.0","0.0","0.0","10507.0","200039.0","20189.7","0.0","0.0","0.0","0.0","354.6","20544.3","16497.6","153436.0","10790.0","3692.1","36096.0","987.0","0.0","0.0","0.0","0.0","0.0","0.0","20189.7","189532.0","11777.0"
"1276","Barrow Utils & Elec Coop, Inc","AK","Cooperative","6.1","8.2","51369.0","0.0","0.0","51369.0","49165.0","0.0","0.0","0.0","2204.0","51369.0","5955.4","0.0","0.0","0.0","0.0","0.0","5955.4","1486.0","11243.0","1513.0","4469.4","37922.0","500.0","0.0","0.0","0.0","0.0","0.0","0.0","5955.4","49165.0","2013.0"
"1279","Barry Electric Coop","MO","Cooperative","42.8","39.7","0.0","178319.0","0.0","178319.0","168340.0","0.0","347.0","0.0","9632.0","178319.0","18056.9","0.0","0.0","0.0","0.0","429.5","18486.4","12318.5","105857.0","8433.0","4472.5","46799.0","1278.0","1265.9","15684.0","3.0","0.0","0.0","0.0","18056.9","168340.0","9714.0"
"1283","Bartholomew County Rural E M C","IN","Cooperative","85.5","79.9","0.0","415750.0","0.0","415750.0","403712.0","0.0","0.0","0.0","12038.0","415750.0","40168.0","0.0","0.0","0.0","0.0","376.4","40544.4","19025.0","148983.0","10918.0","4371.0","41016.0","635.0","16772.0","213713.0","11.0","0.0","0.0","0.0","40168.0","403712.0","11564.0"
"1300","City of Bartow - (FL)","FL","Municipal","63.0","50.0","0.0","285148.0","0.0","285148.0","268964.0","0.0","0.0","0.0","16184.0","285148.0","34283.0","0.0","0.0","0.0","0.0","0.0","34283.0","17568.0","135411.0","10533.0","8821.0","69602.0","1445.0","7894.0","63951.0","288.0","0.0","0.0","0.0","34283.0","268964.0","12266.0"
"1301","Barton County Elec Coop, Inc","MO","Cooperative","38.1","30.2","0.0","153735.0","0.0","153735.0","145477.0","0.0","0.0","384.0","7874.0","153735.0","16265.0","0.0","0.0","0.0","0.0","161.0","16426.0","10346.0","77955.0","5906.0","4061.0","36555.0","651.0","1858.0","30967.0","6.0","0.0","0.0","0.0","16265.0","145477.0","6563.0"
"1307","Basin Electric Power Coop","ND","Cooperative","3578.0","3885.0","18584473.0","12942620.0","32303.0","31559396.0","1022273.0","30427892.0","0.0","0.0","109231.0","31559396.0","54146.0","0.0","1683371.0","0.0","132373.0","0.0","1869890.0","0.0","0.0","0.0","25.0","435.0","1.0","54121.0","1021838.0","1.0","0.0","0.0","0.0","54146.0","1022273.0","2.0"
"1325","City of Batavia - (IL)","IL","Municipal","87.1","66.4","0.0","441580.0","0.0","441580.0","416903.0","0.0","0.0","0.0","24677.0","441580.0","46984.7","0.0","0.0","0.0","0.0","2491.2","49475.9","12050.2","85510.0","9596.0","18486.6","157845.0","1323.0","16447.9","173548.0","10.0","0.0","0.0","0.0","46984.7","416903.0","10929.0"
"1366","City of Bay City - (MI)","MI","Municipal","66.8","48.3","1982.0","332176.0","0.0","334158.0","307941.0","0.0","0.0","0.0","26217.0","334158.0","38275.0","0.0","0.0","0.0","0.0","290.0","38565.0","16979.0","129556.0","17858.0","15765.0","127254.0","2221.0","5531.0","51131.0","127.0","0.0","0.0","0.0","38275.0","307941.0","20206.0"
"1367","Bayfield Electric Coop, Inc","WI","Cooperative","17.0","20.0","0.0","84895.0","0.0","84895.0","77625.0","0.0","0.0","0.0","7270.0","84895.0","13367.0","0.0","0.0","0.0","0.0","0.0","13367.0","12337.0","68489.0","8930.0","1030.0","9136.0","70.0","0.0","0.0","0.0","0.0","0.0","0.0","13367.0","77625.0","9000.0"
"1417","Beartooth Electric Coop, Inc","MT","Cooperative","14.9","17.6","0.0","73436.0","0.0","73436.0","66719.0","0.0","0.0","0.0","6717.0","73436.0","8662.7","0.0","0.0","0.0","0.0","39.5","8702.2","7099.400000000001","52799.0","5541.0","1423.7","12471.0","616.0","139.6","1449.0","1.0","0.0","0.0","0.0","8662.699999999999","66719.0","6158.0"
"1427","City of Beatrice - (NE)","NE","Municipal","39.4","38.8","0.0","183763.0","0.0","183763.0","178043.0","0.0","1442.0","0.0","4278.0","183763.0","15856.0","0.0","0.0","0.0","144.4","0.0","16000.4","6660.3","65812.0","5761.0","2510.4","25006.0","880.0","6685.3","87225.0","124.0","0.0","0.0","0.0","15856.0","178043.0","6765.0"
"1456","Town of Bedford - (VA)","VA","Municipal","35.6","51.3","9209.0","199954.0","0.0","209163.0","203552.0","0.0","0.0","0.0","5611.0","209163.0","20505.5","0.0","0.0","0.0","0.0","0.0","20505.5","10280.0","78494.0","5730.0","4931.8","39666.0","870.0","5293.7","85392.0","29.0","0.0","0.0","0.0","20505.5","203552.0","6629.0"
"1458","Beauregard Electric Coop, Inc","LA","Cooperative","222.0","224.0","0.0","1102226.0","0.0","1102226.0","1055813.0","0.0","0.0","1219.0","45194.0","1102226.0","93573.0","0.0","0.0","0.0","0.0","0.0","93573.0","61806.0","585358.0","38958.0","31767.0","470455.0","3753.0","0.0","0.0","0.0","0.0","0.0","0.0","93573.0","1055813.0","42711.0"
"1523","Town of Belmont - (MA)","MA","Municipal","33.9","23.6","0.0","124281.0","0.0","124281.0","122072.0","0.0","0.0","488.0","1721.0","124281.0","24415.9","0.0","0.0","0.0","0.0","151.6","24567.5","14274.0","67886.0","10594.0","5529.0","27375.0","842.0","4612.9","26811.0","20.0","0.0","0.0","0.0","24415.9","122072.0","11456.0"
"1525","City of Beloit - (KS)","KS","Municipal","12.9","7.6","151.0","47825.0","0.0","47976.0","41992.0","0.0","560.0","0.0","5424.0","47976.0","4828.0","0.0","0.0","0.0","0.0","526.0","5354.0","1979.0","15909.0","1815.0","1536.0","11976.0","469.0","1313.0","14107.0","33.0","0.0","0.0","0.0","4828.0","41992.0","2317.0"
"1529","Beltrami Electric Coop, Inc","MN","Cooperative","66.8","114.6","0.0","496513.0","0.0","496513.0","363492.0","119265.0","0.0","1623.0","12133.0","496513.0","44025.0","0.0","7662.0","0.0","0.0","758.0","52445.0","35802.0","287164.0","19469.0","8207.0","76274.0","1403.0","16.0","54.0","18.0","0.0","0.0","0.0","44025.0","363492.0","20890.0"
"1566","City of Bennettsville - (SC)","SC","Municipal","20.5","18.8","0.0","92354.0","0.0","92354.0","78248.0","0.0","0.0","6091.0","8015.0","92354.0","8920.0","0.0","0.0","0.0","0.0","0.0","8920.0","5720.0","44211.0","4013.0","3200.0","34037.0","536.0","0.0","0.0","0.0","0.0","0.0","0.0","8920.0","78248.0","4549.0"
"1573","City of Benson - (MN)","MN","Municipal","7.6","6.3","44.0","35586.0","-270.0","35360.0","33217.0","44.0","0.0","0.0","2099.0","35360.0","2923.3","0.0","0.6","0.0","80.6","942.2","3946.7","1315.7","14463.0","1519.0","491.4","4673.0","262.0","1116.2","14081.0","56.0","0.0","0.0","0.0","2923.3","33217.0","1837.0"
"1578","Benton County","TN","Municipal","45.8","42.2","0.0","200248.0","0.0","200248.0","189242.0","0.0","0.0","470.0","10536.0","200248.0","23359.0","0.0","0.0","0.0","0.0","632.7","23991.7","13386.0","104219.0","8505.0","7497.0","57831.0","1895.0","2476.0","27192.0","3.0","0.0","0.0","0.0","23359.0","189242.0","10403.0"
"1579","PUD No 1 of Benton County","WA","Political Subdivision","426.0","371.0","0.0","2486361.0","-26100.0","2460261.0","1785098.0","609721.0","0.0","3001.0","62441.0","2460261.0","125489.0","0.0","14543.0","0.0","1285.0","9960.0","151277.0","63129.0","760746.0","45813.0","37096.0","551463.0","6306.0","25264.0","472889.0","992.0","0.0","0.0","0.0","125489.0","1785098.0","53111.0"
"1581","City of Benton - (AR)","AR","Municipal","72.4","43.0","0.0","280708.0","0.0","280708.0","249400.0","0.0","14145.0","0.0","17163.0","280708.0","21769.3","0.0","0.0","0.0","0.0","241.3","22010.6","12873.5","138216.0","13252.0","5826.3","72406.0","1774.0","3069.5","38778.0","22.0","0.0","0.0","0.0","21769.3","249400.0","15048.0"
"1582","City of Benton - (KY)","KY","Municipal","17.4","11.0","0.0","72206.0","0.0","72206.0","67399.0","0.0","0.0","59.0","4748.0","72206.0","7422.0","0.0","0.0","0.0","0.0","101.7","7523.7","2739.0","22544.0","1820.0","3720.0","32746.0","702.0","963.0","12109.0","1.0","0.0","0.0","0.0","7422.0","67399.0","2523.0"
"1586","City of Bentonville - (AR)","AR","Municipal","152.0","108.0","0.0","675914.0","0.0","675914.0","649067.0","0.0","0.0","0.0","26847.0","675914.0","61780.0","0.0","0.0","0.4","0.0","605.0","62385.4","24922.0","218437.0","19416.0","36858.0","430630.0","2945.0","0.0","0.0","0.0","0.0","0.0","0.0","61780.0","649067.0","22361.0"
"1591","Big Country Electric Coop, Inc","TX","Cooperative","62.0","62.0","0.0","258190.0","0.0","258190.0","237411.0","0.0","0.0","0.0","20779.0","258190.0","26798.0","0.0","0.0","0.0","0.0","0.0","26798.0","10072.0","76818.0","8663.0","14935.0","138940.0","3505.0","1791.0","21653.0","695.0","0.0","0.0","0.0","26798.0","237411.0","12863.0"
"1601","City of Beresford","SD","Municipal","6.5","5.5","0.0","29962.0","0.0","29962.0","28839.0","0.0","0.0","0.0","1123.0","29962.0","3440.0","0.0","0.0","0.0","0.0","0.0","3440.0","1283.0","9279.0","929.0","625.0","4920.0","229.0","1532.0","14640.0","18.0","0.0","0.0","0.0","3440.0","28839.0","1176.0"
"1611","Linde Energy Services, Inc.","NJ","Retail Power Marketer","200.0","200.0","0.0","1477012.0","0.0","1477012.0","1446025.0","0.0","0.0","0.0","30987.0","1477012.0","67771.0","0.0","0.0","0.0","0.0","0.0","67771.0","0.0","0.0","0.0","0.0","0.0","0.0","67771.0","1446025.0","22.0","0.0","0.0","0.0","67771.0","1446025.0","22.0"
"1613","Berkeley Electric Coop Inc","SC","Cooperative","529.0","546.8","0.0","2655117.0","0.0","2655117.0","2584555.0","0.0","0.0","3166.0","67396.0","2655117.0","277408.0","0.0","0.0","0.0","2079.4","0.0","279487.4","164917.0","1251505.0","85472.0","42571.0","348568.0","10943.0","69920.0","984482.0","42.0","0.0","0.0","0.0","277408.0","2584555.0","96457.0"
"1625","Benton Rural Electric Assn","WA","Cooperative","117.0","116.7","0.0","575649.0","0.0","575649.0","548599.0","0.0","0.0","82.0","26968.0","575649.0","40465.0","0.0","0.0","0.0","0.0","1055.0","41520.0","19626.0","228300.0","11524.0","8678.0","128010.0","1365.0","12161.0","192289.0","1371.0","0.0","0.0","0.0","40465.0","548599.0","14260.0"
"1640","City of Bessemer Utilities","AL","Municipal","66.2","51.0","0.0","309708.0","0.0","309708.0","286940.0","0.0","0.0","385.0","22383.0","309708.0","31284.0","0.0","0.0","0.0","0.0","856.2","32140.2","11850.0","108455.0","9385.0","19433.0","178477.0","1766.0","1.0","8.0","1.0","0.0","0.0","0.0","31284.0","286940.0","11152.0"
"1675","Big Horn Rural Electric Co","WY","Cooperative","24.8","23.9","0.0","136349.0","0.0","136349.0","130689.0","0.0","0.0","0.0","5660.0","136349.0","15177.0","0.0","0.0","0.0","0.0","328.0","15505.0","4388.0","29350.0","3016.0","2918.0","25455.0","484.0","7871.0","75884.0","306.0","0.0","0.0","0.0","15177.0","130689.0","3806.0"
"1683","Big Horn County Elec Coop, Inc","MT","Cooperative","17.0","19.1","0.0","69808.0","0.0","69808.0","64853.0","0.0","0.0","336.0","4619.0","69808.0","7586.1","0.0","0.0","0.0","0.0","98.6","7684.7","4997.0","42780.0","3357.0","2589.1","22073.0","611.0","0.0","0.0","0.0","0.0","0.0","0.0","7586.099999999999","64853.0","3968.0"
"1708","Big Sandy Rural Elec Coop Corp","KY","Cooperative","43.3","58.7","0.0","202641.0","0.0","202641.0","191158.0","0.0","0.0","0.0","11483.0","202641.0","22147.0","0.0","0.0","0.0","0.0","764.0","22911.0","17073.0","143088.0","11848.0","3948.0","34150.0","1081.0","1126.0","13920.0","10.0","0.0","0.0","0.0","22147.0","191158.0","12939.0"
"1723","Big Bend Electric Coop, Inc","WA","Cooperative","150.4","67.2","0.0","558606.0","0.0","558606.0","529634.0","0.0","0.0","596.0","28376.0","558606.0","33846.0","0.0","0.0","0.0","0.0","357.0","34203.0","8325.0","113164.0","4910.0","8227.0","113702.0","1854.0","17294.0","302768.0","2450.0","0.0","0.0","0.0","33846.0","529634.0","9214.0"
"1736","Blachly-Lane County Coop El Assn","OR","Cooperative","29.5","40.9","0.0","180578.0","0.0","180578.0","173492.0","0.0","0.0","280.0","6806.0","180578.0","13721.0","0.0","0.0","0.0","0.0","7.0","13728.0","6698.0","54508.0","3239.0","933.0","10668.0","358.0","6090.0","108316.0","24.0","0.0","0.0","0.0","13721.0","173492.0","3621.0"
"1738","Bonneville Power Administration","OR","Federal","8226.0","10943.0","89094156.0","4314511.0","0.0","93408667.0","4534358.0","87984007.0","0.0","890302.0","0.0","93408667.0","58916.4","1665.0","2601440.0","0.0","924503.0","0.0","3586524.4","0.0","0.0","0.0","33183.0","803025.0","8.0","27398.4","4039051.0","4.0","0.0","0.0","0.0","60581.4","4842076.0","12.0"
"1763","Black River Electric Coop, Inc - (SC)","SC","Cooperative","157.9","198.2","0.0","700405.0","0.0","700405.0","669774.0","0.0","0.0","352.0","30279.0","700405.0","75374.1","0.0","0.0","0.0","0.0","1279.3","76653.4","52048.5","437750.0","28085.0","13645.0","109489.0","4033.0","9680.6","122535.0","18.0","0.0","0.0","0.0","75374.1","669774.0","32136.0"
"1764","Black Diamond Power Co","WV","Investor Owned","10.2","13.2","0.0","54392.0","0.0","54392.0","49598.0","0.0","0.0","0.0","4794.0","54392.0","6047.0","0.0","0.0","0.0","0.0","0.0","6047.0","4276.6","34680.0","3457.0","1770.4","14918.0","481.0","0.0","0.0","0.0","0.0","0.0","0.0","6047.0","49598.0","3938.0"
"1769","Black Hills Electric Coop, Inc","SD","Cooperative","27.3","41.8","0.0","153290.0","0.0","153290.0","141883.0","823.0","0.0","669.0","9915.0","153290.0","20197.5","0.0","61.1","0.0","0.0","86.6","20345.2","15795.1","108911.0","8572.0","4084.6","30837.0","1234.0","317.8","2135.0","84.0","0.0","0.0","0.0","20197.5","141883.0","9890.0"
"1775","Black River Electric Coop - (MO)","MO","Cooperative","94.6","113.8","0.0","463132.0","0.0","463132.0","445094.0","0.0","0.0","1139.0","16899.0","463132.0","43855.0","0.0","0.0","0.0","0.0","763.0","44618.0","28804.0","279527.0","20494.0","13374.0","138698.0","3754.0","1677.0","26869.0","2.0","0.0","0.0","0.0","43855.0","445094.0","24250.0"
"1776","City of Black River Falls","WI","Municipal","11.3","10.2","6352.0","53827.0","0.0","60179.0","56736.0","0.0","0.0","235.0","3208.0","60179.0","6805.0","0.0","0.0","0.0","0.0","54.1","6859.1","2350.2","18087.0","2215.0","4454.8","38649.0","522.0","0.0","0.0","0.0","0.0","0.0","0.0","6805.0","56736.0","2737.0"
"1780","Black Warrior Elec Member Corp","AL","Cooperative","92.9","121.9","0.0","390520.0","0.0","390520.0","367409.0","0.0","0.0","0.0","23111.0","390520.0","40278.3","0.0","0.0","0.0","0.0","0.0","40278.3","28104.6","252569.0","20484.0","11053.3","101147.0","6137.0","1120.4","13693.0","2.0","0.0","0.0","0.0","40278.3","367409.0","26623.0"
"1818","City of Blaine - (WA)","WA","Municipal","11.2","15.8","0.0","83250.0","0.0","83250.0","78433.0","0.0","0.0","0.0","4817.0","83250.0","6121.0","0.0","0.0","0.0","0.0","328.0","6449.0","1947.0","26619.0","2771.0","3263.0","40552.0","522.0","911.0","11262.0","13.0","0.0","0.0","0.0","6121.0","78433.0","3306.0"
"1857","Block Island Power Co","RI","Investor Owned","4.2","1.7","2970.0","10734.0","0.0","13704.0","11885.0","0.0","0.0","0.0","1819.0","13704.0","4784.2","0.0","0.0","0.0","0.0","0.0","4784.2","1489.1","4075.0","1336.0","3295.1","7810.0","576.0","0.0","0.0","0.0","0.0","0.0","0.0","4784.2","11885.0","1912.0"
"1869","City of Bloomfield - (IA)","IA","Municipal","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0"
"1883","Blue Earth Light & Water","MN","Municipal","11.9","8.3","51.0","55091.0","0.0","55142.0","53400.0","0.0","556.0","0.0","1186.0","55142.0","5411.0","0.0","0.0","0.0","218.0","44.0","5673.0","1548.0","13505.0","1912.0","644.0","5327.0","330.0","3219.0","34568.0","64.0","0.0","0.0","0.0","5411.0","53400.0","2306.0"
"1884","BENCO Electric Cooperative","MN","Cooperative","83.4","67.7","0.0","410052.0","0.0","410052.0","393014.0","0.0","0.0","0.0","17038.0","410052.0","45194.5","0.0","0.0","0.0","0.0","0.0","45194.5","28671.6","213028.0","16942.0","7308.2","66650.0","1364.0","9214.7","113336.0","220.0","0.0","0.0","0.0","45194.5","393014.0","18526.0"
"1886","Blue Grass Energy Coop Corp","KY","Cooperative","260.0","334.0","0.0","1337803.0","0.0","1337803.0","1274926.0","0.0","1253.0","0.0","61624.0","1337803.0","118843.0","0.0","0.0","0.0","0.0","2689.0","121532.0","82206.0","765413.0","55117.0","16319.0","165630.0","2784.0","20318.0","343883.0","11.0","0.0","0.0","0.0","118843.0","1274926.0","57912.0"
"1889","Blue Ridge Elec Member Corp - (NC)","NC","Cooperative","216.0","332.0","0.0","1321977.0","0.0","1321977.0","1047118.0","209353.0","2576.0","62930.0","0.0","1321977.0","122342.0","0.0","13094.0","0.0","0.0","3327.0","138763.0","87260.0","682580.0","67829.0","27763.0","251454.0","8023.0","7319.0","113084.0","7.0","0.0","0.0","0.0","122342.0","1047118.0","75859.0"
"1890","Blue Ridge Electric Coop Inc - (SC)","SC","Cooperative","259.0","281.0","0.0","1077668.0","0.0","1077668.0","1016349.0","0.0","0.0","0.0","61319.0","1077668.0","145809.7","0.0","0.0","0.0","0.0","1934.2","147743.9","113200.8","719403.0","62786.0","26045.6","201698.0","5263.0","6563.3","95248.0","26.0","0.0","0.0","0.0","145809.7","1016349.0","68075.0"
"1891","Blue Ridge Mountain EMC - (GA)","GA","Cooperative","141.9","197.5","0.0","676940.0","0.0","676940.0","620906.0","0.0","0.0","2385.0","53649.0","676940.0","82405.0","0.0","0.0","0.0","0.0","1707.2","58030.8","53072.0","409428.0","40785.0","29333.0","211478.0","11243.0","0.0","0.0","0.0","0.0","0.0","0.0","82405.0","620906.0","52029.0"
"1892","Bluebonnet Electric Coop, Inc","TX","Cooperative","458.4","522.7","0.0","2162307.0","0.0","2162307.0","2023673.0","0.0","0.0","3375.0","135259.0","2162307.0","203325.0","0.0","0.0","0.0","2073.1","3497.1","208895.2","127470.9","1152620.0","80588.0","55018.9","561162.0","11506.0","20835.2","309891.0","1578.0","0.0","0.0","0.0","203325.0","2023673.0","93672.0"
"1896","City of Bluffton - (IN)","IN","Municipal","47.9","44.4","0.0","279779.0","0.0","279779.0","273123.0","0.0","0.0","0.0","6656.0","279779.0","22275.0","0.0","0.0","0.0","0.0","0.0","22275.0","4152.0","43663.0","4882.0","3111.0","31052.0","956.0","15012.0","198408.0","36.0","0.0","0.0","0.0","22275.0","273123.0","5874.0"
"1898","Bon Homme Yankton El Assn, Inc","SD","Cooperative","24.2","23.4","0.0","91643.0","0.0","91643.0","87618.0","0.0","0.0","262.0","3763.0","91643.0","9711.9","0.0","0.0","0.0","0.0","70.2","9782.1","6356.7","55267.0","3253.0","2446.9","23360.0","503.0","908.3","8991.0","2.0","0.0","0.0","0.0","9711.9","87618.0","3758.0"
"1913","City of Boerne","TX","Municipal","33.1","36.8","0.0","149852.0","0.0","149852.0","132474.0","0.0","6751.0","0.0","10627.0","149852.0","15678.0","0.0","0.0","0.0","0.0","0.0","15678.0","6215.0","56123.0","4113.0","9463.0","76351.0","1228.0","0.0","0.0","0.0","0.0","0.0","0.0","15678.0","132474.0","5341.0"
"1936","Bolivar Energy Authority","TN","Municipal","52.5","50.4","0.0","230243.0","0.0","230243.0","215820.0","0.0","0.0","0.0","14423.0","230243.0","26511.0","0.0","0.0","0.0","0.0","431.0","26942.0","14830.0","119997.0","8714.0","10399.0","79464.0","2345.0","1282.0","16359.0","1.0","0.0","0.0","0.0","26511.0","215820.0","11061.0"
"1997","City of Boscobel - (WI)","WI","Municipal","9.6","6.8","0.0","45644.0","0.0","45644.0","44095.0","0.0","0.0","0.0","1549.0","45644.0","4209.0","0.0","0.0","0.0","0.0","40.6","4249.6","1231.7","11318.0","1437.0","2977.3","32777.0","334.0","0.0","0.0","0.0","0.0","0.0","0.0","4209.0","44095.0","1771.0"
"2001","Boone Electric Coop","MO","Cooperative","139.5","125.1","0.0","557033.0","0.0","557033.0","529808.0","0.0","0.0","1055.0","26170.0","557033.0","56203.0","0.0","0.0","0.0","0.0","578.0","56781.0","43829.0","392229.0","31027.0","7449.0","80540.0","1050.0","4925.0","57039.0","7.0","0.0","0.0","0.0","56203.0","529808.0","32084.0"
"2008","City of Boulder City - (NV)","NV","Municipal","50.9","22.8","0.0","159370.0","0.0","159370.0","153373.0","0.0","185.0","59.0","5753.0","159370.0","16388.6","0.0","0.0","0.0","0.0","0.0","16388.6","9930.8","98270.0","6960.0","6318.8","54007.0","1025.0","139.0","1096.0","4.0","0.0","0.0","0.0","16388.6","153373.0","7989.0"
"2010","City of Bountiful","UT","Municipal","79.0","47.0","39682.0","272832.0","-11837.0","300677.0","288409.0","0.0","1319.0","647.0","10302.0","300677.0","26976.0","0.0","0.0","0.0","0.0","607.0","27583.0","15783.0","155694.0","15511.0","8651.0","92094.0","1387.0","2542.0","40621.0","1.0","0.0","0.0","0.0","26976.0","288409.0","16899.0"
"2049","Bowie-Cass Electric Coop, Inc","TX","Cooperative","149.3","188.4","0.0","636352.0","0.0","636352.0","581164.0","0.0","0.0","8687.0","46501.0","636352.0","71272.4","0.0","0.0","0.0","72.7","1051.4","72396.5","55394.6","438418.0","33168.0","11911.3","100904.0","4174.0","3966.5","41842.0","7.0","0.0","0.0","0.0","71272.4","581164.0","37349.0"
"2054","City of Bowling Green - (OH)","OH","Municipal","99.6","77.4","0.0","544657.0","0.0","544657.0","527310.0","5466.0","2525.0","0.0","9356.0","544657.0","55845.0","0.0","605.0","0.0","0.0","718.0","57168.0","13012.0","95049.0","12776.0","7150.0","57572.0","1786.0","35683.0","374689.0","79.0","0.0","0.0","0.0","55845.0","527310.0","14641.0"
"2056","City of Bowling Green - (KY)","KY","Municipal","195.9","139.6","0.0","906744.0","0.0","906744.0","877253.0","0.0","0.0","1335.0","28156.0","906744.0","82848.0","0.0","0.0","0.0","0.0","1671.2","84519.2","28038.0","265606.0","24848.0","47129.0","490232.0","4875.0","7681.0","121415.0","6.0","0.0","0.0","0.0","82848.0","877253.0","29729.0"
"2089","Bozrah Light & Power Company","CT","Municipal","29.9","27.3","0.0","212709.0","0.0","212709.0","209538.0","0.0","102.0","0.0","3069.0","212709.0","16089.0","0.0","0.0","0.0","0.0","43.1","16132.1","3736.4","22146.0","2441.0","1267.8","6860.0","345.0","11084.8","180532.0","15.0","0.0","0.0","0.0","16089.0","209538.0","2801.0"
"2138","Brainerd Public Utilities","MN","Municipal","37.1","28.5","19401.0","165645.0","0.0","185046.0","178511.0","0.0","0.0","0.0","6535.0","185046.0","19412.0","0.0","0.0","0.0","0.0","396.0","19808.0","5694.0","49948.0","6686.0","8359.0","75139.0","1326.0","5359.0","53424.0","27.0","0.0","0.0","0.0","19412.0","178511.0","8039.0"
"2144","Town of Braintree - (MA)","MA","Municipal","78.7","67.4","44977.0","311061.0","21490.0","377528.0","335165.0","28452.0","4773.0","1480.0","7658.0","377528.0","49399.0","0.0","12226.0","85.0","0.0","736.0","62446.0","16048.0","113659.0","13902.0","30791.0","202391.0","2727.0","2560.0","19115.0","6.0","0.0","0.0","0.0","49399.0","335165.0","16635.0"
"2182","City of Breckenridge- (MN)","MN","Municipal","7.5","8.0","0.0","39935.0","0.0","39935.0","36659.0","0.0","711.0","0.0","2565.0","39935.0","2987.0","0.0","0.0","0.0","0.0","122.0","3109.0","1451.0","18188.0","1535.0","687.0","7892.0","294.0","849.0","10579.0","18.0","0.0","0.0","0.0","2987.0","36659.0","1847.0"
"2192","Bremen Electric Light & Power Co","IN","Municipal","27.5","24.8","0.0","168603.0","0.0","168603.0","163218.0","0.0","677.0","400.0","4308.0","168603.0","12925.1","0.0","0.0","0.0","0.0","28.4","12953.5","1534.5","14305.0","1906.0","1543.4","14823.0","359.0","9847.2","134090.0","32.0","0.0","0.0","0.0","12925.1","163218.0","2297.0"
"2194","City of Brenham - (TX)","TX","Municipal","60.1","43.6","0.0","284561.0","0.0","284561.0","270776.0","0.0","0.0","0.0","13785.0","284561.0","21690.7","0.0","0.0","-59.5","0.0","506.1","22137.3","7174.3","75566.0","5758.0","6556.0","80655.0","1331.0","7960.4","114555.0","22.0","0.0","0.0","0.0","21690.7","270776.0","7111.0"
"2206","City of Brewster - (MN)","MN","Municipal","1.2","1.1","0.0","5026.0","0.0","5026.0","4503.0","0.0","0.0","0.0","523.0","5026.0","522.7","0.0","0.0","0.0","0.0","0.0","522.7","220.0","2058.0","219.0","105.0","1003.0","39.0","197.7","1442.0","3.0","0.0","0.0","0.0","522.7","4503.0","261.0"
"2212","Broad River Electric Coop, Inc","SC","Cooperative","99.2","103.2","0.0","383804.0","0.0","383804.0","362826.0","0.0","0.0","0.0","20978.0","383804.0","47606.0","0.0","0.0","0.0","0.0","830.5","48436.5","38047.9","258771.0","20386.0","4638.099999999999","35722.0","985.0","4920.0","68333.0","8.0","0.0","0.0","0.0","47606.0","362826.0","21379.0"
"2215","Bridger Valley Elec Assn, Inc","WY","Cooperative","24.5","26.4","0.0","151847.0","0.0","151847.0","143274.0","0.0","672.0","0.0","7901.0","151847.0","13289.7","0.0","0.0","0.0","28.2","128.1","13446.0","5478.0","45934.0","5397.0","2658.9","26267.0","1082.0","5152.8","71073.0","220.0","0.0","0.0","0.0","13289.7","143274.0","6699.0"
"2220","Brigham City Corporation","UT","Municipal","37.7","27.0","10961.0","163156.0","0.0","174117.0","159167.0","0.0","6579.0","0.0","8371.0","174117.0","14419.0","0.0","0.0","0.0","0.0","0.0","14419.0","5882.0","52925.0","6873.0","5585.0","57984.0","987.0","2952.0","48258.0","1.0","0.0","0.0","0.0","14419.0","159167.0","7861.0"
"2247","City of Bristol - (TN)","TN","Municipal","159.4","216.0","0.0","901831.0","0.0","901831.0","853068.0","0.0","0.0","1534.0","47229.0","901831.0","81840.0","0.0","0.0","0.0","0.0","6947.7","88787.7","41508.0","423553.0","28893.0","33171.0","310410.0","4677.0","7161.0","119105.0","10.0","0.0","0.0","0.0","81840.0","853068.0","33579.0"
"2248","Bristol Virginia Utilities","VA","Municipal","87.0","109.2","0.0","503114.0","0.0","503114.0","481990.0","0.0","0.0","0.0","21124.0","503114.0","49447.0","0.0","0.0","0.0","0.0","1687.9","51134.9","20906.0","184316.0","13628.0","19950.0","170816.0","2680.0","8591.0","126858.0","6.0","0.0","0.0","0.0","49447.0","481990.0","16314.0"
"2273","Brodhead Water & Lighting Comm","WI","Municipal","7.5","6.3","0.0","35308.0","0.0","35308.0","33766.0","0.0","0.0","0.0","1542.0","35308.0","3826.2","0.0","0.0","0.0","0.0","43.6","3869.8","1519.2","12106.0","1493.0","1155.0","9812.0","314.0","1152.0","11848.0","2.0","0.0","0.0","0.0","3826.2","33766.0","1809.0"
"2277","City of Broken Bow - (NE)","NE","Municipal","18.3","19.2","62.0","102350.0","0.0","102412.0","97863.0","0.0","0.0","2206.0","2343.0","102412.0","8833.6","0.0","0.0","0.0","0.0","0.0","8833.6","2434.3","21463.0","2172.0","2241.0","20913.0","836.0","4158.3","55487.0","10.0","0.0","0.0","0.0","8833.6","97863.0","3018.0"
"2285","City of Brookings - (SD)","SD","Municipal","60.5","56.3","0.0","325443.0","0.0","325443.0","316571.0","0.0","0.0","0.0","8872.0","325443.0","27752.0","0.0","0.0","0.0","0.0","751.0","28503.0","9679.0","94138.0","9399.0","3951.0","37461.0","1392.0","14122.0","184972.0","174.0","0.0","0.0","0.0","27752.0","316571.0","10965.0"
"2316","Brown County Rural Elec Assn","MN","Cooperative","22.6","18.1","0.0","133943.0","0.0","133943.0","129324.0","0.0","237.0","0.0","4382.0","133943.0","14548.9","0.0","0.0","0.0","0.0","0.0","14548.9","7898.5","65007.0","3693.0","4207.0","38604.0","758.0","2443.4","25713.0","47.0","0.0","0.0","0.0","14548.9","129324.0","4498.0"
"2354","Brown-Atchison E C A Inc","KS","Cooperative","12.2","8.8","0.0","50859.0","0.0","50859.0","47130.0","0.0","0.0","0.0","3729.0","50859.0","6542.5","0.0","0.0","0.0","0.0","21.9","6564.4","4185.7","29418.0","2812.0","2356.8","17712.0","424.0","0.0","0.0","0.0","0.0","0.0","0.0","6542.5","47130.0","3236.0"
"2394","Burke-Divide Electric Coop Inc","ND","Cooperative","27.8","40.2","0.0","249552.0","0.0","249552.0","235970.0","0.0","0.0","904.0","12678.0","249552.0","26281.0","0.0","0.0","0.0","0.0","0.0","26281.0","3300.0","40249.0","2165.0","22981.0","195721.0","1329.0","0.0","0.0","0.0","0.0","0.0","0.0","26281.0","235970.0","3494.0"
"2409","Brownsville Public Utilities Board","TX","Municipal","284.0","232.0","1274576.0","323514.0","0.0","1598090.0","1271903.0","138749.0","39609.0","32377.0","115452.0","1598090.0","121431.0","0.0","8831.0","0.0","738.0","43582.0","174582.0","59392.0","576488.0","43306.0","24263.0","138356.0","4780.0","37776.0","557059.0","672.0","0.0","0.0","0.0","121431.0","1271903.0","48758.0"
"2411","City of Brownsville","TN","Municipal","40.8","32.2","0.0","212597.0","0.0","212597.0","206973.0","0.0","0.0","73.0","5551.0","212597.0","16479.0","0.0","0.0","0.0","0.0","455.0","16934.0","5183.0","52821.0","4187.0","5981.0","59636.0","1191.0","5315.0","94516.0","4.0","0.0","0.0","0.0","16479.0","206973.0","5383.0"
"2439","City of Bryan - (OH)","OH","Municipal","39.2","34.8","13918.0","198886.0","-2033.0","210771.0","177461.0","17084.0","6464.0","0.0","9762.0","210771.0","19793.2","0.0","806.4","0.0","324.0","2662.5","23586.1","5216.9","43691.0","5065.0","3209.3","25806.0","704.0","11367.0","107964.0","58.0","0.0","0.0","0.0","19793.2","177461.0","5827.0"
"2442","City of Bryan - (TX)","TX","Municipal","322.0","267.0","101191.0","2074674.0","0.0","2175865.0","1400442.0","694702.0","0.0","0.0","80721.0","2175865.0","133945.0","0.0","35211.3","0.0","28572.0","9322.1","207050.4","69187.0","655803.0","47685.0","51728.0","569043.0","7799.0","13030.0","175596.0","13.0","0.0","0.0","0.0","133945.0","1400442.0","55497.0"
"2481","Cargill Power Markets LLC","MN","Wholesale Power Marketer","0.0","0.0","0.0","26292106.0","0.0","26292106.0","0.0","26222073.0","0.0","0.0","70033.0","26292106.0","0.0","0.0","845742.7","0.0","0.0","0.0","845742.7","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0"
"2485","City of Buffalo - (MN)","MN","Municipal","27.8","18.4","0.0","115948.0","0.0","115948.0","109253.0","0.0","0.0","0.0","6695.0","115948.0","13739.1","0.0","0.0","0.0","0.0","0.0","13739.1","5350.2","40760.0","5129.0","7156.7","57966.0","798.0","1232.2","10527.0","8.0","0.0","0.0","0.0","13739.1","109253.0","5935.0"
"2487","City of Buford","GA","Municipal","42.2","38.7","0.0","208123.0","0.0","208123.0","200420.0","0.0","1893.0","0.0","5810.0","208123.0","20505.0","0.0","0.0","0.0","0.0","0.0","20505.0","3531.4","30275.0","2528.0","9060.5","77092.0","933.0","7913.1","93053.0","4.0","0.0","0.0","0.0","20505.0","200420.0","3465.0"
"2502","Buckeye Rural Elec Coop, Inc","OH","Cooperative","54.0","64.0","0.0","251888.0","0.0","251888.0","234739.0","0.0","716.0","0.0","16433.0","251888.0","36778.9","0.0","0.0","0.0","0.0","1497.3","38276.2","33921.1","214581.0","17865.0","2857.8","20158.0","794.0","0.0","0.0","0.0","0.0","0.0","0.0","36778.9","234739.0","18659.0"
"2507","City of Burbank Water and Power","CA","Municipal","277.5","190.8","425733.0","1588548.0","0.0","2014281.0","1079709.0","831339.0","0.0","0.0","103233.0","2014281.0","172811.0","0.0","23512.0","0.0","701.0","8364.0","205388.0","44978.0","272378.0","46215.0","127833.0","807331.0","7057.0","0.0","0.0","0.0","0.0","0.0","0.0","172811.0","1079709.0","53272.0"
"2545","City of Burley - (ID)","ID","Municipal","17.8","23.1","0.0","121785.0","0.0","121785.0","119241.0","0.0","0.0","540.0","2004.0","121785.0","8103.9","0.0","0.0","0.0","0.0","0.0","8103.9","3727.0","46865.0","3943.0","4376.9","72376.0","773.0","0.0","0.0","0.0","0.0","0.0","0.0","8103.9","119241.0","4716.0"
"2548","City of Burlington Electric - (VT)","VT","Municipal","60.8","49.0","167763.0","205535.0","-34522.0","338776.0","331960.0","0.0","0.0","955.0","5861.0","338776.0","47016.8","0.0","0.0","0.0","0.0","12107.9","59124.7","12645.3","79794.0","16957.0","26237.5","181695.0","3867.0","8134.0","70471.0","10.0","0.0","0.0","0.0","47016.8","331960.0","20834.0"
"2551","City of Burlington - (KS)","KS","Municipal","8.9","4.1","30.0","33641.0","0.0","33671.0","29781.0","0.0","0.0","320.0","3570.0","33671.0","3606.7","0.0","0.0","0.0","0.0","0.0","3606.7","1581.3","12604.0","1290.0","1758.4","14683.0","296.0","267.0","2494.0","1.0","0.0","0.0","0.0","3606.7","29781.0","1587.0"
"2599","Burt County Public Power Dist","NE","Political Subdivision","22.0","20.0","0.0","99205.0","0.0","99205.0","86138.0","4373.0","0.0","0.0","8694.0","99205.0","11780.0","0.0","352.0","0.0","0.0","308.0","12440.0","7806.0","58593.0","3369.0","143.0","771.0","127.0","3831.0","26774.0","677.0","0.0","0.0","0.0","11780.0","86138.0","4173.0"
"2641","Butler Rural El Coop Assn, Inc - (KS)","KS","Cooperative","35.6","29.4","0.0","130128.0","0.0","130128.0","122188.0","0.0","0.0","0.0","7940.0","130128.0","17350.0","0.0","0.0","0.0","0.0","0.0","17350.0","13639.0","93464.0","6662.0","2783.0","19691.0","780.0","928.0","9033.0","8.0","0.0","0.0","0.0","17350.0","122188.0","7450.0"
"2643","Butler Public Power District - (NE)","NE","Political Subdivision","46.3","34.6","0.0","200735.0","0.0","200735.0","190559.0","0.0","0.0","459.0","9717.0","200735.0","19310.0","0.0","0.0","0.0","0.0","74.0","19384.0","7222.0","63722.0","4620.0","2136.0","19392.0","552.0","9952.0","107445.0","1109.0","0.0","0.0","0.0","19310.0","190559.0","6281.0"
"2650","Borough of Butler - (NJ)","NJ","Municipal","47.6","40.4","0.0","164663.0","0.0","164663.0","151596.0","0.0","0.0","100.0","12967.0","164663.0","16891.6","0.0","0.0","0.0","0.0","0.0","16891.6","10734.5","97201.0","10216.0","6157.1","54395.0","1513.0","0.0","0.0","0.0","0.0","0.0","0.0","16891.6","151596.0","11729.0"
"2651","Butler Rural Electric Coop Inc - (OH)","OH","Cooperative","44.7","48.9","0.0","218390.0","0.0","218390.0","207538.0","0.0","0.0","650.0","10202.0","218390.0","31465.0","0.0","0.0","0.0","0.0","819.0","32284.0","27515.0","172727.0","10953.0","2105.0","15145.0","423.0","1845.0","19666.0","7.0","0.0","0.0","0.0","31465.0","207538.0","11383.0"
"2652","Butler County Rural Elec Coop - (IA)","IA","Cooperative","42.0","45.0","0.0","261891.0","0.0","261891.0","203332.0","52855.0","0.0","93.0","5611.0","261891.0","22379.3","0.0","4720.0","0.0","0.0","53.0","27152.3","12277.7","91469.0","4843.0","50.6","369.0","28.0","10051.0","111494.0","212.0","0.0","0.0","0.0","22379.3","203332.0","5083.0"
"2655","Butte Electric Coop, Inc","SD","Cooperative","20.7","23.2","0.0","105188.0","0.0","105188.0","99981.0","0.0","0.0","0.0","5207.0","105188.0","14141.9","0.0","0.0","0.0","0.0","572.4","14714.3","8619.3","60616.0","5082.0","4920.6","35416.0","748.0","602.0","3949.0","153.0","0.0","0.0","0.0","14141.9","99981.0","5983.0"
"2678","C & L Electric Coop Corp","AR","Cooperative","97.9","92.6","0.0","369624.0","0.0","369624.0","333512.0","0.0","0.0","592.0","35520.0","369624.0","38575.0","0.0","0.0","0.0","0.0","713.0","39288.0","27561.0","236817.0","19697.0","9842.0","83609.0","2393.0","1172.0","13086.0","10.0","0.0","0.0","0.0","38575.0","333512.0","22100.0"
"2773","City of Cairo - (GA)","GA","Municipal","28.0","25.9","0.0","138789.0","0.0","138789.0","131428.0","0.0","0.0","0.0","7361.0","138789.0","14938.5","0.0","0.0","0.0","0.0","0.0","14938.5","5622.3","44302.0","3762.0","6225.9","51481.0","694.0","3090.3","35645.0","5.0","0.0","0.0","0.0","14938.5","131428.0","4461.0"
"2774","CMS Electric Coop Inc","KS","Cooperative","39.6","28.7","0.0","228371.0","0.0","228371.0","221999.0","0.0","215.0","0.0","6157.0","228371.0","24619.0","0.0","0.0","0.0","0.0","79.1","24698.1","4000.8","25837.0","3147.0","11892.3","83702.0","2633.0","8725.9","112460.0","101.0","0.0","0.0","0.0","24619.0","221999.0","5881.0"
"2812","City of Calhoun - (GA)","GA","Municipal","74.9","64.1","0.0","436519.0","0.0","436519.0","424495.0","5674.0","0.0","0.0","6350.0","436519.0","35694.7","0.0","167.9","0.0","0.0","0.0","35862.6","4963.3","44374.0","4168.0","8627.1","73655.0","1181.0","22104.3","306466.0","19.0","0.0","0.0","0.0","35694.7","424495.0","5368.0"
"2830","Calpine Power America LLC","TX","Retail Power Marketer","0.0","0.0","0.0","1776158.0","0.0","1776158.0","1776158.0","0.0","0.0","0.0","0.0","1776158.0","72433.8","0.0","0.0","0.0","0.0","0.0","72433.8","0.0","0.0","0.0","64898.1","1555366.0","3.0","7535.7","220792.0","2.0","0.0","0.0","0.0","72433.8","1776158.0","5.0"
"2849","Central Electric Power Assn - (MS)","MS","Cooperative","185.0","179.7","0.0","873965.0","0.0","873965.0","826255.0","0.0","0.0","435.0","47275.0","873965.0","86221.0","0.0","0.0","0.0","0.0","2386.1","88607.1","47087.0","425779.0","29605.0","28423.0","239938.0","6768.0","10711.0","160538.0","9.0","0.0","0.0","0.0","86221.0","826255.0","36382.0"
"2888","City of Cambridge - (NE)","NE","Municipal","8.4","6.6","38.0","48365.0","0.0","48403.0","47100.0","0.0","0.0","38.0","1265.0","48403.0","3385.0","0.0","0.0","48.0","0.0","0.0","3433.0","648.0","5686.0","486.0","690.0","7353.0","139.0","2047.0","34061.0","1.0","0.0","0.0","0.0","3385.0","47100.0","626.0"
"2890","City of Camden","SC","Municipal","45.1","43.2","0.0","190693.0","-3354.0","187339.0","170118.0","0.0","4517.0","0.0","12704.0","187339.0","21690.0","0.0","0.0","0.0","0.0","0.0","21690.0","12861.0","103071.0","9542.0","8829.0","67047.0","1350.0","0.0","0.0","0.0","0.0","0.0","0.0","21690.0","170118.0","10892.0"
"2900","City of Cameron","MO","Municipal","18.3","14.1","0.0","79973.0","0.0","79973.0","77371.0","0.0","0.0","0.0","2602.0","79973.0","7653.0","0.0","0.0","0.0","0.0","0.0","7653.0","3266.0","29291.0","2866.0","2511.0","25758.0","502.0","1876.0","22322.0","5.0","0.0","0.0","0.0","7653.0","77371.0","3373.0"
"2903","Canoochee Electric Member Corp","GA","Cooperative","94.8","96.6","0.0","428598.0","0.0","428598.0","403415.0","0.0","0.0","456.0","24727.0","428598.0","47525.4","0.0","0.0","0.0","0.0","9923.4","57448.8","35940.8","282349.0","20636.0","6314.2","66319.0","371.0","5270.4","54747.0","440.0","0.0","0.0","0.0","47525.4","403415.0","21447.0"
"2910","City of Camilla","GA","Municipal","26.6","23.3","0.0","148567.0","0.0","148567.0","146172.0","0.0","0.0","0.0","2395.0","148567.0","13717.9","0.0","0.0","0.0","0.0","0.0","13717.9","2946.6","23789.0","1973.0","1209.8","9326.0","396.0","9561.5","113057.0","207.0","0.0","0.0","0.0","13717.9","146172.0","2576.0"
"2911","Canadian Valley Elec Coop, Inc","OK","Cooperative","150.3","154.4","0.0","700489.0","0.0","700489.0","665341.0","0.0","0.0","609.0","34539.0","700489.0","56507.2","0.0","0.0","0.0","0.0","614.0","57121.2","33217.1","320097.0","22188.0","11051.7","123252.0","2456.0","12238.4","221992.0","26.0","0.0","0.0","0.0","56507.2","665341.0","24670.0"
"2955","Canby Utility Board","OR","Municipal","35.5","38.7","0.0","187916.0","0.0","187916.0","181369.0","0.0","0.0","0.0","6547.0","187916.0","12268.2","0.0","0.0","0.0","0.0","0.0","12268.2","6423.6","81884.0","6524.0","3845.2","63996.0","721.0","1999.4","35489.0","13.0","0.0","0.0","0.0","12268.2","181369.0","7258.0"
"2960","Caney Fork Electric Coop, Inc","TN","Cooperative","131.9","160.7","0.0","621920.0","0.0","621920.0","587225.0","0.0","0.0","0.0","34695.0","621920.0","62810.0","0.0","0.0","0.0","0.0","893.0","63703.0","40546.0","366460.0","27174.0","16685.0","122423.0","5154.0","5579.0","98342.0","4.0","0.0","0.0","0.0","62810.0","587225.0","32331.0"
"2961","Caney Valley El Coop Assn, Inc","KS","Cooperative","14.0","10.4","0.0","62737.0","0.0","62737.0","58185.0","0.0","0.0","155.0","4397.0","62737.0","8709.6","0.0","0.0","0.0","0.0","67.3","8776.9","4623.2","29810.0","3577.0","4086.4","28375.0","1821.0","0.0","0.0","0.0","0.0","0.0","0.0","8709.6","58185.0","5398.0"
"2974","Canton Municipal Utilities","MS","Municipal","26.1","19.1","52.0","126540.0","0.0","126592.0","116801.0","0.0","9072.0","372.0","347.0","126592.0","10985.0","0.0","0.0","0.0","0.0","0.0","10985.0","4695.0","47935.0","3876.0","3422.0","33138.0","754.0","2868.0","35728.0","14.0","0.0","0.0","0.0","10985.0","116801.0","4644.0"
"2982","Cape Hatteras Elec Member Corp","NC","Cooperative","41.7","44.3","0.0","135602.0","0.0","135602.0","128003.0","0.0","0.0","338.0","7261.0","135602.0","16520.0","0.0","0.0","0.0","0.0","495.0","17015.0","12101.0","90942.0","6674.0","4419.0","37061.0","1057.0","0.0","0.0","0.0","0.0","0.0","0.0","16520.0","128003.0","7731.0"
"2985","Capital Electric Coop, Inc","ND","Cooperative","82.1","75.3","0.0","366001.0","0.0","366001.0","350476.0","0.0","0.0","1.0","15524.0","366001.0","36679.0","0.0","0.0","0.0","0.0","166049.0","202728.0","22452.0","213415.0","17611.0","14025.0","135511.0","2549.0","202.0","1550.0","52.0","0.0","0.0","0.0","36679.0","350476.0","20212.0"
"2986","Cam Wal Electric Coop, Inc","SD","Cooperative","10.9","12.4","0.0","66169.0","0.0","66169.0","60032.0","0.0","271.0","0.0","5866.0","66169.0","7272.2","0.0","0.0","0.0","0.0","32.3","7304.5","4493.1","34671.0","2149.0","2075.2","19678.0","186.0","703.9","5683.0","123.0","0.0","0.0","0.0","7272.2","60032.0","2458.0"
"2998","Carbon Power & Light, Inc","WY","Cooperative","27.0","22.4","0.0","132474.0","0.0","132474.0","123772.0","897.0","0.0","589.0","7216.0","132474.0","15573.6","0.0","70.9","0.0","0.0","108.8","15753.3","5996.5","38387.0","4988.0","5957.2","50378.0","1191.0","3619.9","35007.0","55.0","0.0","0.0","0.0","15573.6","123772.0","6234.0"
"3046","Duke Energy Progress - (NC)","NC","Investor Owned","12590.0","14407.0","61393565.0","7773905.0","-21304.0","69146166.0","43270010.0","23552726.0","0.0","84404.0","2239026.0","69146166.0","3726690.6","0.0","1257931.5","0.0","73854.6","67207.8","5125684.5","1818028.3","17372065.0","1320174.0","1284811.8","15480820.0","234472.0","623850.5","10417125.0","4103.0","0.0","0.0","0.0","3726690.6","43270010.0","1558749.0"
"3075","Carroll County - (TN)","TN","Municipal","88.5","78.4","0.0","434501.0","0.0","434501.0","414308.0","0.0","0.0","191.0","20002.0","434501.0","36035.0","0.0","0.0","0.0","0.0","758.5","36793.5","17904.0","169469.0","12179.0","11177.0","102399.0","3382.0","6954.0","142440.0","2.0","0.0","0.0","0.0","36035.0","414308.0","15563.0"
"3076","Carroll Electric Coop, Inc - (OH)","OH","Cooperative","30.0","34.0","0.0","156396.0","0.0","156396.0","144838.0","0.0","0.0","0.0","11558.0","156396.0","20534.0","0.0","0.0","0.0","0.0","333.0","20867.0","17040.0","119844.0","10831.0","1858.0","12593.0","1085.0","1636.0","12401.0","9.0","0.0","0.0","0.0","20534.0","144838.0","11925.0"
"3081","Carroll Electric Member Corp - (GA)","GA","Cooperative","221.9","245.4","0.0","1075065.0","0.0","1075065.0","1024485.0","0.0","0.0","1306.0","49274.0","1075065.0","107793.0","0.0","0.0","0.0","0.0","3649.0","111442.0","77588.0","642477.0","47873.0","14966.0","131387.0","2864.0","15239.0","250621.0","37.0","0.0","0.0","0.0","107793.0","1024485.0","50774.0"
"3093","Carroll Electric Coop Corp - (AR)","AR","Cooperative","451.0","430.0","0.0","1989971.0","0.0","1989971.0","1872064.0","0.0","0.0","2604.0","115303.0","1989971.0","168275.0","0.0","0.0","0.0","0.0","4568.0","172843.0","118650.0","1192485.0","92156.0","30338.0","357659.0","6385.0","19287.0","321920.0","42.0","0.0","0.0","0.0","168275.0","1872064.0","98583.0"
"3107","Carteret-Craven El Member Corp","NC","Cooperative","141.7","199.1","0.0","607584.0","0.0","607584.0","573844.0","0.0","0.0","562.0","33178.0","607584.0","63591.4","0.0","0.0","0.0","0.0","0.0","63591.4","50256.5","437593.0","36124.0","13334.9","136251.0","3986.0","0.0","0.0","0.0","0.0","0.0","0.0","63591.4","573844.0","40110.0"
"3108","City of Cartersville - (GA)","GA","Municipal","102.4","77.5","0.0","585844.0","25365.0","611209.0","561973.0","0.0","0.0","4278.0","44958.0","611209.0","44413.0","0.0","0.0","0.0","0.0","1579.0","45992.0","8438.0","76259.0","6124.0","15291.0","153410.0","1367.0","20684.0","332304.0","17.0","0.0","0.0","0.0","44413.0","561973.0","7508.0"
"3113","City of Carthage - (MO)","MO","Municipal","63.0","47.0","-111.0","304763.0","-4846.0","299806.0","283078.0","0.0","0.0","0.0","16728.0","299806.0","23558.0","0.0","0.0","0.0","0.0","0.0","23558.0","7402.0","72280.0","6527.0","5809.0","62643.0","1120.0","10347.0","148155.0","27.0","0.0","0.0","0.0","23558.0","283078.0","7674.0"
"3203","Cedar Falls Utilities","IA","Municipal","101.8","86.2","309242.0","529629.0","0.0","838871.0","482793.0","341370.0","0.0","0.0","14708.0","838871.0","38328.5","0.0","9054.6","0.0","2633.0","4603.5","54619.6","15826.0","162582.0","17007.0","16905.7","239566.0","2113.0","5596.8","80645.0","253.0","0.0","0.0","0.0","38328.5","482793.0","19373.0"
"3205","Cedar-Knox Public Power Dist","NE","Political Subdivision","81.2","47.9","0.0","286703.0","0.0","286703.0","261781.0","9872.0","233.0","0.0","14817.0","286703.0","22654.0","0.0","654.0","0.0","0.0","0.0","23308.0","8509.0","99274.0","5485.0","9196.0","123330.0","736.0","4949.0","39177.0","1214.0","0.0","0.0","0.0","22654.0","261781.0","7435.0"
"3208","Cedarburg Light & Water Comm","WI","Municipal","22.4","18.2","0.0","106744.0","0.0","106744.0","103098.0","0.0","0.0","147.0","3499.0","106744.0","11711.3","0.0","0.0","0.0","0.0","121.7","11833.0","5289.1","41310.0","5343.0","4971.4","44324.0","912.0","1450.8","17464.0","2.0","0.0","0.0","0.0","11711.3","103098.0","6257.0"
"3216","City of Celina - (OH)","OH","Municipal","44.0","44.0","0.0","249258.0","0.0","249258.0","223834.0","0.0","0.0","710.0","24714.0","249258.0","18262.0","0.0","0.0","0.0","0.0","0.0","18262.0","7281.0","66217.0","6818.0","4260.0","55102.0","875.0","6721.0","102515.0","10.0","0.0","0.0","0.0","18262.0","223834.0","7703.0"
"3222","Central Alabama Electric Coop","AL","Cooperative","166.0","213.0","0.0","704149.0","0.0","704149.0","671079.0","0.0","0.0","1465.0","31605.0","704149.0","86144.0","0.0","0.0","0.0","0.0","2271.0","88415.0","74580.0","567153.0","41334.0","10181.0","88100.0","1813.0","1383.0","15826.0","3.0","0.0","0.0","0.0","86144.0","671079.0","43150.0"
"3226","Central Rural Electric Cooperative, Inc","OK","Cooperative","117.5","137.7","0.0","602869.0","0.0","602869.0","575821.0","0.0","0.0","1148.0","25900.0","602869.0","55497.0","0.0","0.0","0.0","0.0","1068.5","56565.5","28104.0","292007.0","17270.0","24490.5","244487.0","4351.0","2902.5","39327.0","11.0","0.0","0.0","0.0","55497.0","575821.0","21632.0"
"3235","City of Central City","NE","Municipal","8.5","7.5","221.0","34019.0","0.0","34240.0","30897.0","0.0","0.0","0.0","3343.0","34240.0","3396.0","0.0","0.0","0.0","0.0","0.0","3396.0","1752.0","16203.0","1383.0","1005.0","8942.0","287.0","639.0","5752.0","10.0","0.0","0.0","0.0","3396.0","30897.0","1680.0"
"3236","Central Electric Coop, Inc - (SD)","SD","Cooperative","63.7","75.4","0.0","355507.0","0.0","355507.0","345290.0","0.0","0.0","779.0","9438.0","355507.0","33922.9","0.0","0.0","0.0","0.0","1850.0","35772.9","13392.9","107990.0","6382.0","2893.2","25291.0","648.0","17636.8","212009.0","174.0","0.0","0.0","0.0","33922.9","345290.0","7204.0"
"3240","Central Electric Coop Inc - (OR)","OR","Cooperative","129.0","238.0","0.0","797622.0","0.0","797622.0","750267.0","0.0","0.0","1015.0","46340.0","797622.0","61253.0","0.0","0.0","0.0","0.0","510.0","61763.0","45122.0","522732.0","29430.0","9350.0","122285.0","2780.0","6781.0","105250.0","1643.0","0.0","0.0","0.0","61253.0","750267.0","33853.0"
"3245","Central Florida Elec Coop, Inc","FL","Cooperative","122.8","116.2","0.0","512181.0","0.0","512181.0","482551.0","0.0","0.0","1110.0","28520.0","512181.0","61440.6","0.0","0.0","0.0","0.0","2205.3","63645.9","45099.3","342777.0","30083.0","10512.7","86521.0","2853.0","5828.6","53253.0","602.0","0.0","0.0","0.0","61440.6","482551.0","33538.0"
"3248","Central Georgia El Member Corp","GA","Cooperative","272.0","283.0","0.0","1223866.0","0.0","1223866.0","1181453.0","0.0","0.0","1381.0","41032.0","1223866.0","105958.0","0.0","0.0","0.0","0.0","5090.0","111048.0","73653.0","753012.0","50839.0","16462.0","177090.0","5308.0","15843.0","251351.0","87.0","0.0","0.0","0.0","105958.0","1181453.0","56234.0"
"3249","Central Hudson Gas & Elec Corp","NY","Investor Owned","1034.0","885.0","51831.0","2612066.0","0.0","2663897.0","2560833.0","42156.0","0.0","9575.0","51333.0","2663897.0","398743.8","86308.7","1366.7","0.0","9554.5","32331.6","528305.3","318517.1","1980403.0","257311.0","148306.3","1934499.0","46058.0","18229.1","934028.0","1015.0","0.0","0.0","0.0","485052.5","4848930.0","304384.0"
"3250","Central Electric Membership Corp. - (NC)","NC","Cooperative","93.9","146.5","0.0","425410.0","0.0","425410.0","410500.0","0.0","0.0","0.0","14910.0","425410.0","50202.6","0.0","0.0","0.0","0.0","0.0","50202.6","40358.1","310062.0","20299.0","6013.2","49534.0","2305.0","3831.3","50904.0","15.0","0.0","0.0","0.0","50202.6","410500.0","22619.0"
"3264","Central Lincoln People's Ut Dt","OR","Political Subdivision","162.0","269.0","0.0","1355610.0","0.0","1355610.0","1352071.0","0.0","0.0","3052.0","487.0","1355610.0","92438.0","0.0","0.0","0.0","0.0","0.0","92438.0","42476.0","455723.0","33552.0","16379.0","196429.0","5246.0","33583.0","699919.0","182.0","0.0","0.0","0.0","92438.0","1352071.0","38980.0"
"3265","Cleco Power LLC","LA","Investor Owned","2508.0","2404.0","12087115.0","93212.0","0.0","12180327.0","8385065.0","2934863.0","0.0","24133.0","836266.0","12180327.0","870893.0","0.0","236877.0","-1566.0","31574.0","47412.0","1185190.0","413992.0","3526048.0","244297.0","299104.0","2781068.0","41529.0","157797.0","2077949.0","574.0","0.0","0.0","0.0","870893.0","8385065.0","286400.0"
"3266","Central Maine Power Co","ME","Investor Owned","1484.5","1466.6","0.0","4509506.0","0.0","4509506.0","4337182.0","172293.0","0.0","0.0","31.0","4509506.0","604533.4","210671.1","5433.4","0.0","244194.8","28581.3","1093414.0","510270.6","3671026.0","549555.0","239870.3","3121423.0","68804.0","65063.6","2064278.0","2712.0","0.0","0.0","0.0","815204.5","8856727.0","621071.0"
"3268","Central Missouri Elec Coop Inc","MO","Cooperative","63.0","66.0","0.0","323467.0","0.0","323467.0","309158.0","0.0","0.0","199.0","14110.0","323467.0","26151.0","0.0","0.0","0.0","0.0","189.0","26340.0","16817.0","170249.0","10418.0","2041.0","21525.0","354.0","7293.0","117384.0","2.0","0.0","0.0","0.0","26151.0","309158.0","10774.0"
"3273","Central New Mexico El Coop, Inc","NM","Cooperative","44.4","33.9","0.0","238255.0","0.0","238255.0","217171.0","0.0","0.0","0.0","21084.0","238255.0","33385.0","0.0","0.0","0.0","0.0","104480.0","137865.0","18222.0","109199.0","16065.0","8524.0","58861.0","1743.0","6639.0","49111.0","303.0","0.0","0.0","0.0","33385.0","217171.0","18111.0"
"3282","Central Texas Elec Coop, Inc","TX","Cooperative","135.4","185.0","0.0","589876.0","0.0","589876.0","532115.0","0.0","0.0","1430.0","56331.0","589876.0","59861.0","0.0","0.0","0.0","0.0","2640.0","62501.0","45083.4","392248.0","33124.0","9879.5","97902.0","3231.0","4898.1","41965.0","3510.0","0.0","0.0","0.0","59861.0","532115.0","39865.0"
"3287","Central Valley Elec Coop, Inc","NM","Cooperative","118.7","108.2","0.0","846663.0","-24397.0","822266.0","779624.0","0.0","0.0","774.0","41868.0","822266.0","67894.2","0.0","0.0","0.0","0.0","-14.6","67879.6","6517.8","74307.0","5748.0","8458.0","74283.0","5300.0","52918.4","631034.0","4566.0","0.0","0.0","0.0","67894.2","779624.0","15614.0"
"3291","Central Virginia Electric Coop","VA","Cooperative","152.0","235.0","0.0","767375.0","0.0","767375.0","724543.0","0.0","0.0","1337.0","41495.0","767375.0","78615.0","0.0","0.0","0.0","0.0","1289.0","79904.0","58586.0","469674.0","32780.0","12908.0","124418.0","3908.0","7121.0","130451.0","14.0","0.0","0.0","0.0","78615.0","724543.0","36702.0"
"3293","Central Wisconsin Elec Coop","WI","Cooperative","19.1","19.5","0.0","103584.0","0.0","103584.0","96241.0","0.0","0.0","416.0","6927.0","103584.0","15775.5","0.0","0.0","0.0","0.0","116.7","15892.2","10974.6","59105.0","7309.0","3496.7","26217.0","622.0","1304.2","10919.0","5.0","0.0","0.0","0.0","15775.5","96241.0","7936.0"
"3295","City of Centralia - (WA)","WA","Municipal","37.7","67.9","86025.0","192952.0","0.0","278977.0","266120.0","0.0","0.0","784.0","12073.0","278977.0","25294.2","0.0","0.0","0.0","0.0","1187.5","26481.7","11320.3","121785.0","8580.0","3713.7","34579.0","1468.0","10260.2","109756.0","136.0","0.0","0.0","0.0","25294.2","266120.0","10184.0"
"3314","Chariton Valley Elec Coop, Inc","IA","Cooperative","22.9","19.5","0.0","97068.0","0.0","97068.0","89900.0","0.0","1.0","239.0","6928.0","97068.0","10756.0","0.0","0.0","0.0","0.0","77.5","10833.5","6844.0","52883.0","4842.0","3031.0","27221.0","1149.0","881.0","9796.0","6.0","0.0","0.0","0.0","10756.0","89900.0","5997.0"
"3315","Charles Mix Electric Assn, Inc","SD","Cooperative","12.5","10.9","0.0","68698.0","0.0","68698.0","65340.0","0.0","0.0","2.0","3356.0","68698.0","7913.0","0.0","0.0","0.0","0.0","2.0","7915.0","4317.0","31530.0","2225.0","3119.0","30426.0","207.0","477.0","3384.0","143.0","0.0","0.0","0.0","7913.0","65340.0","2575.0"
"3329","Borough of Chambersburg","PA","Municipal","59.3","58.4","7248.0","312468.0","-16481.0","303235.0","300587.0","0.0","0.0","0.0","2648.0","303235.0","27649.0","0.0","0.0","0.0","0.0","0.0","27649.0","9147.0","90071.0","9435.0","10078.0","103766.0","1944.0","8424.0","106750.0","23.0","0.0","0.0","0.0","27649.0","300587.0","11402.0"
"3355","City of Chanute","KS","Municipal","56.6","43.8","27680.0","302570.0","0.0","330250.0","281270.0","0.0","0.0","0.0","48980.0","330250.0","20858.6","0.0","0.0","0.0","0.0","0.0","20858.6","4180.6","41678.0","4599.0","4032.7","43783.0","957.0","12645.3","195809.0","95.0","0.0","0.0","0.0","20858.6","281270.0","5651.0"
"3400","City of Chaska - (MN)","MN","Municipal","73.4","50.1","0.0","364638.0","0.0","364638.0","354975.0","0.0","0.0","0.0","9663.0","364638.0","38322.8","0.0","0.0","0.0","0.0","156.3","38479.1","10310.3","78290.0","9177.0","12315.2","92860.0","938.0","15697.3","183825.0","116.0","0.0","0.0","0.0","38322.8","354975.0","10231.0"
"3408","City of Chattanooga - (TN)","TN","Municipal","1136.0","1096.3","0.0","5774430.0","0.0","5774430.0","5523239.0","0.0","0.0","20015.0","231176.0","5774430.0","538249.0","0.0","0.0","0.0","0.0","25195.0","541826.3","230339.0","2114681.0","155491.0","239950.0","2301673.0","24763.0","67960.0","1106885.0","62.0","0.0","0.0","0.0","538249.0","5523239.0","180315.0"
"3413","PUD No 1 of Chelan County","WA","Political Subdivision","248.0","494.0","9210736.0","5342574.0","381459.0","14934769.0","1725811.0","13121775.0","0.0","20953.0","66230.0","14934769.0","52846.9","0.0","276813.9","0.0","9743.6","19907.7","359312.1","27943.9","880539.0","37968.0","17974.9","528774.0","10472.0","6928.1","316498.0","1500.0","0.0","0.0","0.0","52846.9","1725811.0","49940.0"
"3420","City of Cheney - (WA)","WA","Municipal","28.6","21.2","0.0","142859.0","0.0","142859.0","138588.0","0.0","0.0","0.0","4271.0","142859.0","8893.6","0.0","0.0","0.0","0.0","150.9","9044.5","4524.3","60188.0","5268.0","3830.6","68858.0","433.0","538.7","9542.0","7.0","0.0","0.0","0.0","8893.6","138588.0","5708.0"
"3426","Cherokee Electric Coop","AL","Cooperative","102.6","109.4","0.0","498747.0","0.0","498747.0","479819.0","0.0","0.0","584.0","18344.0","498747.0","55674.0","0.0","0.0","0.0","0.0","1167.3","56841.3","30123.0","223591.0","17396.0","16231.0","106017.0","6270.0","9320.0","150211.0","3.0","0.0","0.0","0.0","55674.0","479819.0","23668.0"
"3435","Cherry-Todd Electric Coop, Inc","SD","Cooperative","29.8","26.3","0.0","145677.0","0.0","145677.0","139743.0","0.0","0.0","310.0","5624.0","145677.0","14272.5","0.0","0.0","0.0","0.0","623.8","14896.3","8525.3","72199.0","5205.0","2667.4","39336.0","379.0","3079.8","28208.0","362.0","0.0","0.0","0.0","14272.5","139743.0","5946.0"
"3436","Cherryland Electric Coop Inc","MI","Cooperative","76.9","72.1","0.0","405960.0","0.0","405960.0","385994.0","0.0","0.0","387.0","19579.0","405960.0","49663.9","0.0","0.0","0.0","0.0","942.7","50606.6","36890.9","264476.0","32300.0","12568.5","120027.0","2720.0","204.5","1491.0","125.0","0.0","0.0","0.0","49663.9","385994.0","35145.0"
"3461","Cheyenne Light Fuel & Power Co","WY","Investor Owned","249.0","230.0","798024.0","964093.0","0.0","1762117.0","1528083.0","119564.0","0.0","0.0","114470.0","1762117.0","157595.0","0.0","5814.0","259.0","991.0","457.0","165116.0","39880.0","256629.0","37154.0","66927.0","536761.0","4971.0","50788.0","734693.0","5.0","0.0","0.0","0.0","157595.0","1528083.0","42130.0"
"3470","Cherokee County Elec Coop Assn","TX","Cooperative","84.0","106.0","280.0","364879.0","0.0","365159.0","335051.0","0.0","0.0","0.0","30108.0","365159.0","40225.0","0.0","0.0","0.0","0.0","1036.0","41261.0","30391.0","240005.0","18696.0","6356.0","51416.0","1685.0","3478.0","43630.0","2.0","0.0","0.0","0.0","40225.0","335051.0","20383.0"
"3475","City of Chickamauga","GA","Municipal","5.8","5.0","0.0","26561.0","0.0","26561.0","24972.0","0.0","0.0","0.0","1589.0","26561.0","2737.0","0.0","0.0","0.0","0.0","63.7","2800.7","1122.0","10471.0","821.0","1615.0","14501.0","154.0","0.0","0.0","0.0","0.0","0.0","0.0","2737.0","24972.0","975.0"
"3477","City of Chicopee - (MA)","MA","Municipal","93.2","80.2","7044.0","388327.0","70000.0","465371.0","449829.0","0.0","0.0","1175.0","14367.0","465371.0","54442.9","0.0","0.0","0.0","0.0","860.8","55303.7","23459.1","187696.0","22974.0","17360.0","134842.0","2693.0","13623.8","127291.0","38.0","0.0","0.0","0.0","54442.9","449829.0","25705.0"
"3478","Cimarron Electric Coop","OK","Cooperative","79.3","86.9","0.0","422308.0","0.0","422308.0","396375.0","0.0","0.0","365.0","25568.0","422308.0","40676.0","0.0","0.0","0.0","0.0","253.0","40929.0","17555.0","151147.0","13587.0","21720.0","219084.0","3144.0","1401.0","26144.0","5.0","0.0","0.0","0.0","40676.0","396375.0","16736.0"
"3486","Chillicothe Municipal Utils","MO","Municipal","24.8","19.5","513.0","108478.0","-5051.0","103940.0","97763.0","525.0","0.0","0.0","5652.0","103940.0","9916.5","0.0","58.7","0.0","0.0","844.6","10819.8","4526.0","39780.0","3790.0","4645.5","49830.0","792.0","745.0","8153.0","26.0","0.0","0.0","0.0","9916.5","97763.0","4608.0"
"3495","Chimney Rock Public Power Dist","NE","Political Subdivision","22.3","8.5","0.0","58796.0","0.0","58796.0","53956.0","0.0","0.0","0.0","4840.0","58796.0","7084.0","0.0","0.0","0.0","0.0","63.0","7147.0","3206.0","22682.0","1975.0","1013.0","7776.0","304.0","2865.0","23498.0","935.0","0.0","0.0","0.0","7084.0","53956.0","3214.0"
"3498","Chippewa Valley Electric Coop","WI","Cooperative","22.1","23.6","0.0","104617.0","0.0","104617.0","99246.0","0.0","0.0","267.0","5104.0","104617.0","14043.0","0.0","0.0","0.0","0.0","41.3","14084.3","12421.7","84643.0","6968.0","1526.6","14163.0","506.0","94.7","440.0","27.0","0.0","0.0","0.0","14043.0","99246.0","7501.0"
"3502","Choctawhatche Elec Coop, Inc","FL","Cooperative","202.9","204.5","0.0","870691.0","0.0","870691.0","830572.0","0.0","0.0","0.0","40119.0","870691.0","91950.4","0.0","0.0","0.0","0.0","3279.4","95229.8","70863.8","611225.0","43945.0","19802.3","201016.0","6233.0","1284.3","18331.0","2.0","0.0","0.0","0.0","91950.4","830572.0","50180.0"
"3503","Choptank Electric Coop, Inc","MD","Cooperative","254.7","243.4","0.0","1035207.0","0.0","1035207.0","967285.0","0.0","0.0","0.0","67922.0","1035207.0","125980.0","0.0","0.0","0.0","0.0","898.8","126878.8","89713.5","657403.0","48414.0","27866.0","218441.0","5385.0","8400.5","91441.0","26.0","0.0","0.0","0.0","125980.0","967285.0","53825.0"
"3522","Chugach Electric Assn Inc","AK","Cooperative","191.0","227.0","1082515.0","231750.0","14916.0","1329181.0","1105173.0","108329.0","4290.0","0.0","111389.0","1329181.0","198079.3","0.0","10234.2","0.0","7713.1","8304.2","224330.8","100609.3","505275.0","71305.0","89542.3","545614.0","9615.0","7927.7","54284.0","7.0","0.0","0.0","0.0","198079.3","1105173.0","80927.0"
"3527","Choctaw Electric Coop Inc","OK","Cooperative","94.6","110.3","0.0","460835.0","0.0","460835.0","439789.0","0.0","0.0","492.0","20554.0","460835.0","42600.1","0.0","0.0","0.0","0.0","303.7","42903.8","30475.2","233211.0","18637.0","2301.3","21461.0","187.0","9823.6","185117.0","8.0","0.0","0.0","0.0","42600.1","439789.0","18832.0"
"3542","Duke Energy Ohio Inc","OH","Investor Owned","968.0","1040.0","0.0","5475918.0","0.0","5475918.0","4346057.0","1075208.0","0.0","0.0","54653.0","5475918.0","478891.3","485936.6","40321.0","0.0","19859.0","44929.0","1069936.9","588346.0","7011701.0","634070.0","304867.1","7725595.0","76123.0","71614.8","4993442.0","2136.0","0.0","0.0","0.0","964827.8999999999","19730738.0","712329.0"
"3597","Citizens Electric Co - (PA)","PA","Investor Owned","36.0","41.0","0.0","124225.0","0.0","124225.0","115084.0","0.0","0.0","163.0","8978.0","124225.0","12462.0","898.0","0.0","0.0","0.0","66.2","13426.2","8660.1","81629.0","5836.0","2874.6","30554.0","1135.0","1825.3","54097.0","37.0","0.0","0.0","0.0","13360.0","166280.0","7008.0"
"3600","Citizens Electric Corporation - (MO)","MO","Cooperative","261.0","250.0","0.0","1674060.0","0.0","1674060.0","1636683.0","395.0","0.0","2054.0","34928.0","1674060.0","124096.0","0.0","41.0","0.0","0.0","102.0","124239.0","38932.0","276128.0","24372.0","13152.0","109532.0","2693.0","72012.0","1251023.0","106.0","0.0","0.0","0.0","124096.0","1636683.0","27171.0"
"3634","City of Nixa - (MO)","MO","Municipal","47.0","27.0","0.0","162974.0","0.0","162974.0","145964.0","0.0","0.0","6339.0","10671.0","162974.0","19001.0","0.0","0.0","0.0","0.0","0.0","19001.0","11990.0","86184.0","8845.0","3845.0","36918.0","911.0","3166.0","22862.0","39.0","0.0","0.0","0.0","19001.0","145964.0","9795.0"
"3641","Claiborne Electric Coop, Inc","LA","Cooperative","127.7","124.0","0.0","638682.0","0.0","638682.0","609415.0","0.0","0.0","648.0","28619.0","638682.0","52973.1","0.0","0.0","0.0","0.0","1320.8","54293.9","26493.9","282120.0","21162.0","7175.8","77185.0","2357.0","19303.4","250110.0","104.0","0.0","0.0","0.0","52973.1","609415.0","23623.0"
"3644","PUD No 1 of Clallam County","WA","Political Subdivision","88.2","202.3","0.0","692895.0","0.0","692895.0","651407.0","0.0","0.0","3882.0","37606.0","692895.0","58125.9","0.0","0.0","0.0","0.0","2661.1","60787.0","43115.8","455667.0","28419.0","13762.8","175512.0","3375.0","1247.3","20228.0","2.0","0.0","0.0","0.0","58125.9","651407.0","31796.0"
"3647","City of Claremore","OK","Municipal","75.9","55.3","0.0","297530.0","0.0","297530.0","261215.0","0.0","0.0","7184.0","29131.0","297530.0","29094.0","0.0","0.0","0.0","0.0","0.0","29094.0","14670.0","112265.0","10556.0","3812.0","28859.0","1422.0","10933.0","120091.0","147.0","0.0","0.0","0.0","29415.0","261215.0","12125.0"
"3660","PUD No 1 of Clark County - (WA)","WA","Political Subdivision","863.5","1074.3","1259618.0","4195072.0","0.0","5454690.0","4638251.0","592727.0","0.0","0.0","223712.0","5454690.0","375254.0","0.0","11365.0","-13000.0","0.0","9103.0","382722.0","231661.0","2525438.0","186105.0","101901.0","1363736.0","17841.0","41692.0","749077.0","29.0","0.0","0.0","0.0","375254.0","4638251.0","203975.0"
"3687","Clark Energy Coop Inc - (KY)","KY","Cooperative","86.0","114.0","0.0","424674.0","0.0","424674.0","402407.0","0.0","705.0","0.0","21562.0","424674.0","44179.0","0.0","0.0","0.0","0.0","1240.0","45419.0","34194.0","308868.0","24597.0","9118.0","83481.0","1802.0","867.0","10058.0","1.0","0.0","0.0","0.0","44179.0","402407.0","26400.0"
"3701","Clark Electric Coop - (WI)","WI","Cooperative","33.8","37.0","0.0","200184.0","0.0","200184.0","189428.0","0.0","0.0","0.0","10756.0","200184.0","22418.1","0.0","0.0","0.0","0.0","59.9","22478.0","17565.6","132208.0","9038.0","4852.5","57220.0","113.0","0.0","0.0","0.0","0.0","0.0","0.0","22418.1","189428.0","9151.0"
"3702","Clarksdale Public Utilities","MS","Municipal","37.0","22.0","152.0","156418.0","0.0","156570.0","142760.0","0.0","8016.0","0.0","5794.0","156570.0","14944.0","0.0","0.0","0.0","0.0","629.0","15573.0","6528.0","59159.0","5348.0","7146.0","68730.0","1352.0","1270.0","14871.0","4.0","0.0","0.0","0.0","14944.0","142760.0","6704.0"
"3704","City of Clarksville - (TN)","TN","Municipal","328.2","375.6","0.0","1516013.0","0.0","1516013.0","1449436.0","0.0","0.0","2322.0","64256.0","1516013.0","157727.0","0.0","0.0","0.0","0.0","6410.2","164137.2","92343.0","823476.0","61072.0","59744.0","550248.0","8081.0","5640.0","75712.0","4.0","0.0","0.0","0.0","157727.0","1449436.0","69156.0"
"3705","Clarksville Light & Water Co","AR","Municipal","49.0","40.0","0.0","255671.0","0.0","255671.0","242029.0","0.0","2579.0","3755.0","7308.0","255671.0","18943.0","0.0","0.0","0.0","0.0","293.0","19236.0","3894.0","41621.0","3788.0","3320.0","35894.0","704.0","11729.0","164514.0","51.0","0.0","0.0","0.0","18943.0","242029.0","4543.0"
"3710","City of Clay Center - (KS)","KS","Municipal","17.3","8.6","144.0","49877.0","0.0","50021.0","44148.0","0.0","923.0","1312.0","3638.0","50021.0","5311.2","0.0","0.0","0.0","0.0","0.0","5311.2","2417.4","19089.0","2212.0","1268.6","10056.0","353.0","1625.2","15003.0","199.0","0.0","0.0","0.0","5311.2","44148.0","2764.0"
"3712","Clay County Electric Coop Corp","AR","Cooperative","67.2","57.1","0.0","262635.0","0.0","262635.0","246537.0","0.0","0.0","630.0","15468.0","262635.0","29423.6","0.0","0.0","0.0","0.0","351.6","29775.2","13931.0","102134.0","10439.0","9501.4","72439.0","2389.0","5991.2","71964.0","12.0","0.0","0.0","0.0","29423.600000000002","246537.0","12840.0"
"3716","Clay-Union Electric Corp","SD","Cooperative","20.0","19.0","0.0","80490.0","0.0","80490.0","76099.0","0.0","165.0","0.0","4226.0","80490.0","8215.0","0.0","0.0","0.0","0.0","109.0","8324.0","5648.0","49472.0","3141.0","1308.0","14694.0","203.0","1259.0","11933.0","321.0","0.0","0.0","0.0","8215.0","76099.0","3665.0"
"3722","Clarke Electric Coop Inc - (IA)","IA","Cooperative","19.1","21.2","0.0","107800.0","0.0","107800.0","99620.0","1399.0","0.0","0.0","6781.0","107800.0","11978.5","0.0","107.5","0.0","0.0","58.5","12144.5","8474.8","62741.0","5077.0","2860.0","29258.0","256.0","643.7","7621.0","2.0","0.0","0.0","0.0","11978.5","99620.0","5335.0"
"3731","Town of Clayton","NC","Municipal","27.0","24.8","0.0","110923.0","0.0","110923.0","103500.0","0.0","1398.0","0.0","6025.0","110923.0","13197.0","0.0","0.0","0.0","0.0","0.0","13197.0","9002.0","65170.0","5805.0","4195.0","38330.0","643.0","0.0","0.0","0.0","0.0","0.0","0.0","13197.0","103500.0","6448.0"
"3732","Town of Clayton","DE","Municipal","5.6","3.9","0.0","20650.0","-574.0","20076.0","18634.0","0.0","0.0","0.0","1442.0","20076.0","2770.7","0.0","0.0","0.0","0.0","0.0","2770.7","2110.2","13736.0","1316.0","660.5","4898.0","74.0","0.0","0.0","0.0","0.0","0.0","0.0","2770.7","18634.0","1390.0"
"3739","Clearwater Power Company","ID","Cooperative","31.4","57.8","0.0","214491.0","0.0","214491.0","200455.0","0.0","0.0","650.0","13386.0","214491.0","19424.7","0.0","0.0","0.0","0.0","337.0","19761.7","14924.599999999999","137649.0","9730.0","2838.4","32544.0","926.0","1661.7","30262.0","6.0","0.0","0.0","0.0","19424.699999999997","200455.0","10662.0"
"3755","Cleveland Electric Illum Co","OH","Investor Owned","4220.1","3378.4","0.0","2322340.0","0.0","2322340.0","2177975.0","0.0","0.0","20165.0","124200.0","2322340.0","259904.5","718500.8","0.0","0.0","0.0","12596.3","991001.6","443682.0","5306464.0","666598.0","422148.19999999995","6427319.0","83412.0","111732.6","6520636.0","648.0","842.5","36154.0","1.0","978405.3","18290573.0","750659.0"
"3757","Clay Electric Cooperative, Inc","FL","Cooperative","722.6","721.6","0.0","3356890.0","0.0","3356890.0","3226167.0","0.0","0.0","3897.0","126826.0","3356890.0","346640.5","0.0","0.0","0.0","0.0","9038.3","355678.8","253868.6","2194296.0","154318.0","66654.2","643316.0","19456.0","26117.7","388555.0","30.0","0.0","0.0","0.0","346640.5","3226167.0","173804.0"
"3758","City of Cleveland - (TN)","TN","Municipal","205.2","204.9","0.0","1068164.0","0.0","1068164.0","1032509.0","0.0","0.0","0.0","35655.0","1068164.0","96777.0","0.0","0.0","0.0","0.0","1369.3","98146.3","38925.0","355413.0","26844.0","40283.0","394127.0","4620.0","17569.0","282969.0","17.0","0.0","0.0","0.0","96777.0","1032509.0","31480.0"
"3762","City of Cleveland - (OH)","OH","Municipal","291.6","250.0","807.0","1678343.0","21429.0","1700579.0","1588114.0","0.0","2558.0","0.0","109907.0","1700579.0","191989.3","0.0","0.0","0.0","0.0","0.0","191989.3","52015.0","376325.0","64917.0","85789.7","616503.0","8422.0","54184.6","595286.0","25.0","0.0","0.0","0.0","191989.3","1588114.0","73364.0"
"3764","Clearwater-Polk Elec Coop Inc","MN","Cooperative","10.0","20.0","0.0","75987.0","0.0","75987.0","69982.0","0.0","0.0","0.0","6005.0","75987.0","9505.0","0.0","0.0","0.0","0.0","565.0","10070.0","8197.0","59147.0","4168.0","1308.0","10835.0","225.0","0.0","0.0","0.0","0.0","0.0","0.0","9505.0","69982.0","4393.0"
"3774","City of Clewiston","FL","Municipal","22.3","16.7","0.0","106447.0","0.0","106447.0","99699.0","0.0","0.0","0.0","6748.0","106447.0","11394.7","0.0","0.0","0.0","0.0","0.0","11394.7","5360.1","50941.0","3452.0","5071.7","47026.0","647.0","962.9","1732.0","1.0","0.0","0.0","0.0","11394.7","99699.0","4100.0"
"3804","Clinton Combined Utility Sys","SC","Municipal","23.7","20.4","8.0","110787.0","0.0","110795.0","101926.0","0.0","0.0","3984.0","4885.0","110795.0","14879.0","0.0","0.0","0.0","0.0","0.0","14879.0","5449.0","32620.0","3410.0","6072.0","39481.0","602.0","3358.0","29825.0","9.0","0.0","0.0","0.0","14879.0","101926.0","4021.0"
"3806","Clinton County Elec Coop, Inc","IL","Cooperative","33.0","29.0","0.0","143556.0","0.0","143556.0","136066.0","0.0","0.0","0.0","7490.0","143556.0","16387.0","0.0","0.0","0.0","0.0","129.0","16516.0","11042.0","84479.0","5286.0","5345.0","51587.0","714.0","0.0","0.0","0.0","0.0","0.0","0.0","16387.0","136066.0","6000.0"
"3812","City of Clinton - (TN)","TN","Municipal","150.1","159.6","0.0","795058.0","0.0","795058.0","766552.0","0.0","0.0","0.0","28506.0","795058.0","75647.0","0.0","0.0","0.0","0.0","2170.2","77817.2","39846.0","347611.0","25339.0","21064.0","182261.0","4509.0","14737.0","236680.0","11.0","0.0","0.0","0.0","75647.0","766552.0","29859.0"
"3814","City of Clintonville - (WI)","WI","Municipal","20.4","21.4","0.0","119633.0","0.0","119633.0","116112.0","0.0","0.0","0.0","3521.0","119633.0","10714.0","0.0","0.0","0.0","0.0","0.0","10714.0","1910.0","16988.0","2297.0","1806.0","18206.0","475.0","6998.0","80918.0","12.0","0.0","0.0","0.0","10714.0","116112.0","2784.0"
"3824","Clyde Light & Power","OH","Municipal","36.0","34.0","0.0","227481.0","0.0","227481.0","226180.0","0.0","0.0","0.0","1301.0","227481.0","18903.0","0.0","0.0","0.0","0.0","0.0","18903.0","2788.0","23426.0","2689.0","2520.0","18690.0","334.0","13595.0","184064.0","9.0","0.0","0.0","0.0","18903.0","226180.0","3032.0"
"3828","Cloverland Electric Co-op","MI","Cooperative","119.8","131.8","213368.0","539444.0","0.0","752812.0","710453.0","4867.0","0.0","0.0","37492.0","752812.0","76930.8","0.0","55.1","0.0","0.0","1148.6","78134.5","33535.3","262777.0","34186.0","30902.7","294792.0","8309.0","12492.8","152884.0","8.0","0.0","0.0","0.0","76930.8","710453.0","42503.0"
"3839","Coahoma Electric Power Assn","MS","Cooperative","46.7","38.7","0.0","175725.0","0.0","175725.0","161652.0","0.0","0.0","0.0","14073.0","175725.0","18027.0","0.0","0.0","0.0","0.0","495.1","18522.1","9408.0","89899.0","5889.0","5673.0","40389.0","2102.0","2946.0","31364.0","14.0","0.0","0.0","0.0","18027.0","161652.0","8005.0"
"3841","Coast Electric Power Assn","MS","Cooperative","381.0","465.0","0.0","1760847.0","0.0","1760847.0","1678305.0","0.0","0.0","1893.0","80649.0","1760847.0","181382.0","0.0","0.0","0.0","0.0","6235.0","187617.0","122870.0","1048339.0","74816.0","44232.0","399191.0","7007.0","14280.0","230775.0","8.0","0.0","0.0","0.0","181382.0","1678305.0","81831.0"
"3843","Coastal Electric Member Corp","GA","Cooperative","99.1","105.2","0.0","502144.0","0.0","502144.0","486860.0","0.0","0.0","768.0","14516.0","502144.0","56499.0","0.0","0.0","0.0","0.0","791.0","57290.0","33327.0","237054.0","16174.0","8648.0","67732.0","2590.0","14524.0","182074.0","7.0","0.0","0.0","0.0","56499.0","486860.0","18771.0"
"3844","Coastal Electric Coop, Inc","SC","Cooperative","45.3","53.2","0.0","185234.0","0.0","185234.0","173670.0","0.0","0.0","0.0","11564.0","185234.0","27214.3","0.0","0.0","0.0","0.0","177.8","27392.1","22398.4","135009.0","10503.0","2021.5","13325.0","1137.0","2794.4","25336.0","54.0","0.0","0.0","0.0","27214.3","173670.0","11694.0"
"3850","Codington-Clark Elec Coop, Inc","SD","Cooperative","14.6","23.8","0.0","124931.0","0.0","124931.0","118736.0","0.0","0.0","337.0","5858.0","124931.0","11318.0","0.0","0.0","0.0","0.0","341.0","11659.0","7294.0","76097.0","3046.0","4024.0","42639.0","235.0","0.0","0.0","0.0","0.0","0.0","0.0","11318.0","118736.0","3281.0"
"3855","Columbia Power System","TN","Municipal","148.2","135.1","0.0","642590.0","0.0","642590.0","616687.0","0.0","0.0","1445.0","24458.0","642590.0","65070.0","0.0","0.0","0.0","0.0","1472.0","66542.0","33762.0","311141.0","23198.0","31305.0","305524.0","4361.0","3.0","22.0","1.0","0.0","0.0","0.0","65070.0","616687.0","27560.0"
"3881","City of Cody","WY","Municipal","25.3","22.1","0.0","121335.0","0.0","121335.0","114306.0","0.0","0.0","0.0","7029.0","121335.0","12108.7","0.0","0.0","0.0","0.0","126.0","12234.7","4642.8","35791.0","6140.0","7465.9","78515.0","1329.0","0.0","0.0","0.0","0.0","0.0","0.0","12108.7","114306.0","7469.0"
"3892","City of Coffeyville - (KS)","KS","Municipal","113.0","105.0","74912.0","731118.0","-21165.0","784865.0","758659.0","0.0","5197.0","498.0","20511.0","784865.0","50898.1","0.0","0.0","0.0","382.0","6280.0","57560.1","5266.1","46656.0","5030.0","7634.0","71833.0","1012.0","37998.0","640170.0","10.0","0.0","0.0","0.0","50898.1","758659.0","6052.0"
"3913","City of Colby - (KS)","KS","Municipal","18.0","11.8","76.0","67818.0","0.0","67894.0","58667.0","0.0","2405.0","230.0","6592.0","67894.0","5828.3","0.0","0.0","0.0","0.0","0.0","5828.3","1956.1","19117.0","2364.0","992.5","9933.0","625.0","2879.7","29617.0","94.0","0.0","0.0","0.0","5828.3","58667.0","3083.0"
"3915","Coldwater Board of Public Util","MI","Municipal","70.1","90.5","0.0","430690.0","0.0","430690.0","427577.0","0.0","0.0","0.0","3113.0","430690.0","37461.0","0.0","0.0","0.0","0.0","1141.0","38602.0","4788.0","38679.0","5671.0","6665.0","63346.0","1392.0","26008.0","325552.0","64.0","0.0","0.0","0.0","37461.0","427577.0","7127.0"
"3916","Cobb Electric Membership Corp","GA","Cooperative","1127.8","801.6","0.0","3975344.0","0.0","3975344.0","3866234.0","0.0","6647.0","0.0","102463.0","3975344.0","420036.4","0.0","0.0","0.0","0.0","9699.8","429736.2","281638.5","2424325.0","184095.0","124247.9","1251286.0","21893.0","14150.0","190623.0","134.0","0.0","0.0","0.0","420036.4","3866234.0","206122.0"
"3931","Coles-Moultrie Electric Coop","IL","Cooperative","42.3","45.0","0.0","207711.0","0.0","207711.0","195571.0","0.0","0.0","487.0","11653.0","207711.0","24823.0","0.0","0.0","0.0","0.0","801.0","25624.0","15780.0","115002.0","8531.0","5931.0","47690.0","1081.0","3112.0","32879.0","8.0","0.0","0.0","0.0","24823.0","195571.0","9620.0"
"3938","Coleman County Elec Coop, Inc","TX","Cooperative","27.8","32.0","0.0","125096.0","0.0","125096.0","113417.0","0.0","0.0","0.0","11679.0","125096.0","11835.2","0.0","0.0","0.0","109.2","0.0","11944.4","6868.3","51917.0","7029.0","3302.2","27828.0","1718.0","1664.7","33672.0","4.0","0.0","0.0","0.0","11835.2","113417.0","8751.0"
"3939","City of College Park - (GA)","GA","Municipal","51.1","48.3","0.0","265302.0","23025.0","288327.0","266461.0","0.0","0.0","3937.0","17929.0","288327.0","27978.5","0.0","0.0","0.0","0.0","629.6","28608.1","6966.1","62674.0","6697.0","21012.4","203787.0","874.0","0.0","0.0","0.0","0.0","0.0","0.0","27978.5","266461.0","7571.0"
"3940","City of College Station - (TX)","TX","Municipal","206.0","167.0","0.0","882305.0","0.0","882305.0","822771.0","0.0","3116.0","0.0","56418.0","882305.0","100155.0","0.0","0.0","0.0","0.0","0.0","100155.0","57510.0","446427.0","38352.0","42645.0","376344.0","3295.0","0.0","0.0","0.0","0.0","0.0","0.0","100155.0","822771.0","41647.0"
"3989","City of Colorado Springs - (CO)","CO","Municipal","890.0","785.0","4247394.0","748476.0","0.0","4995870.0","4556755.0","306233.0","0.0","0.0","132882.0","4995870.0","426664.9","0.0","8624.8","0.0","0.0","0.0","435289.7","183860.3","1480123.0","192721.0","92018.5","1094838.0","33070.0","150786.1","1981794.0","1611.0","0.0","0.0","0.0","426664.9","4556755.0","227402.0"
"3991","CMS Energy Resource Management Corp","MI","Retail Power Marketer","20.1","20.1","0.0","4481242.0","0.0","4481242.0","176074.0","4305168.0","0.0","0.0","0.0","4481242.0","7657.9","0.0","121640.9","0.0","0.0","62954.2","192253.0","0.0","0.0","0.0","0.0","0.0","0.0","7657.9","176074.0","1.0","0.0","0.0","0.0","7657.9","176074.0","1.0"
"4003","City of Colton - (CA)","CA","Municipal","80.8","67.2","11649.0","420446.0","0.0","432095.0","358037.0","64446.0","0.0","0.0","9612.0","432095.0","57970.0","0.0","82.0","0.0","4074.0","4065.0","66191.0","16555.0","102454.0","16661.0","16052.0","81510.0","2801.0","25363.0","174073.0","86.0","0.0","0.0","0.0","57970.0","358037.0","19548.0"
"4005","Columbia Basin Elec Cooperative, Inc","OR","Cooperative","38.5","24.8","0.0","122034.0","0.0","122034.0","112649.0","0.0","0.0","185.0","9200.0","122034.0","9144.1","0.0","0.0","0.0","183.0","37.0","9364.1","4373.9","42385.0","3108.0","2205.7","27271.0","515.0","2564.5","42993.0","246.0","0.0","0.0","0.0","9144.1","112649.0","3869.0"
"4007","City of Columbia City - (IN)","IN","Municipal","21.7","17.2","0.0","105694.0","0.0","105694.0","99185.0","0.0","0.0","0.0","6509.0","105694.0","11050.0","0.0","0.0","0.0","0.0","180.0","11230.0","4868.3","44405.0","4368.0","4287.5","38438.0","446.0","1894.2","16342.0","12.0","0.0","0.0","0.0","11050.0","99185.0","4826.0"
"4008","Columbia Power Coop Assn Inc","OR","Cooperative","5.8","7.8","0.0","27581.0","0.0","27581.0","24672.0","0.0","117.0","0.0","2792.0","27581.0","2576.0","0.0","0.0","0.0","0.0","1701.0","4277.0","1703.0","14936.0","1397.0","502.0","4950.0","239.0","371.0","4786.0","254.0","0.0","0.0","0.0","2576.0","24672.0","1890.0"
"4040","Calhoun County Elec Coop Assn","IA","Cooperative","7.2","9.7","49.0","43064.0","0.0","43113.0","34431.0","6605.0","0.0","144.0","1933.0","43113.0","4769.0","0.0","571.0","0.0","0.0","10.0","5350.0","4174.0","29195.0","1670.0","0.0","0.0","0.0","595.0","5236.0","25.0","0.0","0.0","0.0","4769.0","34431.0","1695.0"
"4041","Columbia Rural Elec Assn, Inc","WA","Cooperative","101.2","43.8","0.0","366319.0","0.0","366319.0","336722.0","5800.0","0.0","765.0","23032.0","366319.0","28469.0","0.0","915.0","0.0","0.0","79.3","29463.3","6687.5","56606.0","3641.0","6705.3","70658.0","1499.0","15076.2","209458.0","599.0","0.0","0.0","0.0","28469.0","336722.0","5739.0"
"4045","City of Columbia - (MO)","MO","Municipal","269.0","198.0","28526.0","1197089.0","0.0","1225615.0","1133524.0","70857.0","0.0","0.0","21234.0","1225615.0","114684.4","0.0","833.0","0.0","1550.0","643.3","117710.7","46969.9","401964.0","43216.0","46347.3","472228.0","6635.0","21367.2","259332.0","31.0","0.0","0.0","0.0","114684.4","1133524.0","49882.0"
"4063","Co-Mo Electric Coop Inc","MO","Cooperative","116.9","129.2","0.0","438263.0","0.0","438263.0","409390.0","0.0","0.0","1224.0","27649.0","438263.0","49400.0","0.0","0.0","0.0","0.0","776.5","50176.5","41728.7","336405.0","29115.0","6843.0","62533.0","2310.0","828.3","10452.0","1.0","0.0","0.0","0.0","49400.0","409390.0","31426.0"
"4065","City of Columbus - (OH)","OH","Municipal","148.4","113.3","2106.0","865130.0","0.0","867236.0","787427.0","2106.0","0.0","41069.0","36634.0","867236.0","83845.5","0.0","59.0","2915.5","0.0","3165.5","89985.5","7992.3","66917.0","10314.0","11777.2","106813.0","2755.0","64076.0","613697.0","418.0","0.0","0.0","0.0","83845.5","787427.0","13487.0"
"4068","City of Columbus - (MS)","MS","Municipal","85.9","65.1","0.0","382743.0","0.0","382743.0","366365.0","0.0","0.0","189.0","16189.0","382743.0","36735.0","0.0","0.0","0.0","0.0","1123.6","37858.6","12325.0","120204.0","9217.0","22413.0","222470.0","3697.0","1997.0","23691.0","4.0","0.0","0.0","0.0","36735.0","366365.0","12918.0"
"4071","Columbus Electric Coop, Inc","NM","Cooperative","25.1","15.7","0.0","106372.0","0.0","106372.0","95882.0","0.0","0.0","0.0","10490.0","106372.0","13945.0","0.0","0.0","0.0","0.0","176.4","14121.4","4124.0","25020.0","3941.0","2843.7","18791.0","828.0","6977.3","52071.0","326.0","0.0","0.0","0.0","13945.0","95882.0","5095.0"
"4073","City of Columbus - (WI)","WI","Municipal","15.0","12.0","0.0","79355.0","0.0","79355.0","76508.0","0.0","0.0","0.0","2847.0","79355.0","7695.5","0.0","0.0","0.0","0.0","82.2","7777.7","2266.5","18059.0","2402.0","3091.4","29144.0","426.0","2337.6","29305.0","2.0","0.0","0.0","0.0","7695.5","76508.0","2830.0"
"4100","Commerce Energy, Inc.","CA","Retail Power Marketer","0.0","0.0","0.0","1419265.0","0.0","1419265.0","1419265.0","0.0","0.0","0.0","0.0","1419265.0","110979.2","0.0","0.0","0.0","0.0","0.0","110979.2","89440.8","1069637.0","116433.0","21538.4","349628.0","5660.0","0.0","0.0","0.0","0.0","0.0","0.0","110979.2","1419265.0","122093.0"
"4110","Commonwealth Edison Co","IL","Investor Owned","20351.0","14730.0","0.0","28811123.0","0.0","28811123.0","25783309.0","1190851.0","437993.0","75391.0","1323579.0","28811123.0","2969046.5","1606267.4","28344.9","0.0","754469.9","129442.7","5487571.4","2716317.3000000003","26292284.0","3608354.0","1397675.0","32116326.0","381016.0","454555.8","27466955.0","1986.0","6765.8","502102.0","2.0","4575313.9","86377667.0","3991358.0"
"4117","Community Electric Coop","VA","Cooperative","58.0","66.5","0.0","187522.0","0.0","187522.0","187340.0","0.0","0.0","182.0","0.0","187522.0","20494.0","0.0","0.0","0.0","0.0","0.0","20494.0","17541.9","160899.0","9213.0","2688.4","22686.0","1800.0","263.7","3755.0","42.0","0.0","0.0","0.0","20494.0","187340.0","11055.0"
"4146","Concho Valley Elec Coop Inc","TX","Cooperative","60.7","52.8","0.0","333251.0","0.0","333251.0","307053.0","0.0","0.0","0.0","26198.0","333251.0","30199.4","0.0","0.0","0.0","0.0","194.5","30393.9","13268.3","103400.0","10485.0","10045.6","109473.0","2705.0","6885.5","94180.0","1364.0","0.0","0.0","0.0","30199.4","307053.0","14554.0"
"4147","Town of Concord - (MA)","MA","Municipal","36.4","30.3","0.0","169772.0","0.0","169772.0","163833.0","0.0","0.0","554.0","5385.0","169772.0","25084.7","0.0","0.0","0.0","0.0","560.4","25645.1","10852.8","68832.0","6918.0","7573.2","46451.0","1279.0","6658.7","48550.0","21.0","0.0","0.0","0.0","25084.7","163833.0","8218.0"
"4150","City of Concord - (NC)","NC","Municipal","205.0","159.0","111.0","927581.0","0.0","927692.0","890388.0","0.0","0.0","0.0","37304.0","927692.0","79435.2","0.0","0.0","0.0","0.0","5038.7","84473.9","32854.2","320814.0","26042.0","36532.3","425120.0","4029.0","10048.7","144454.0","60.0","0.0","0.0","0.0","79435.2","890388.0","30131.0"
"4153","Concordia Electric Coop, Inc","LA","Cooperative","55.7","44.6","0.0","207950.0","0.0","207950.0","193400.0","0.0","0.0","0.0","14550.0","207950.0","21290.0","0.0","0.0","0.0","0.0","398.8","21688.8","13973.0","136181.0","11838.0","6473.0","52287.0","1781.0","844.0","4932.0","148.0","0.0","0.0","0.0","21290.0","193400.0","13767.0"
"4160","Callaway Electric Cooperative","MO","Cooperative","50.7","59.3","0.0","218467.0","0.0","218467.0","203928.0","0.0","662.0","0.0","13877.0","218467.0","25545.0","0.0","0.0","0.0","0.0","1001.0","26546.0","21572.0","162903.0","12146.0","3973.0","41025.0","839.0","0.0","0.0","0.0","0.0","0.0","0.0","25545.0","203928.0","12985.0"
"4176","Connecticut Light & Power Co","CT","Investor Owned","4737.0","3849.0","0.0","9914410.0","0.0","9914410.0","8715266.0","662208.0","0.0","0.0","536936.0","9914410.0","1628232.0","1049638.0","29065.8","-5645.3","156140.0","23350.0","2880780.5","1649294.1","9642278.0","1131435.0","876057.1","9010609.0","110518.0","144671.5","2146132.0","3089.0","7847.3","150470.0","2.0","2677870.0","20949489.0","1245044.0"
"4191","Consolidated Edison Sol Inc","NY","Retail Power Marketer","0.0","0.0","0.0","7923576.0","93840.0","8017416.0","8017416.0","0.0","0.0","0.0","0.0","8017416.0","602425.0","0.0","0.0","0.0","0.0","0.0","602425.0","135502.40000000002","1611267.0","160904.0","466922.6","6406149.0","37045.0","0.0","0.0","0.0","0.0","0.0","0.0","602425.0","8017416.0","197949.0"
"4226","Consolidated Edison Co-NY Inc","NY","Investor Owned","12330.0","8597.0","3095750.0","17737948.0","699407.0","21533105.0","19226835.0","796118.0","0.0","119966.0","1390186.0","21533105.0","4348461.0","3334402.0","24555.0","0.0","0.0","304672.0","8012090.0","3103561.0","13569830.0","2910280.0","4396951.0","38758406.0","535052.0","56038.0","597154.0","767.0","126313.0","2392459.0","4.0","7682863.0","55317849.0","3446103.0"
"4237","Consolidated Electric Coop","MO","Cooperative","55.6","57.1","0.0","264640.0","0.0","264640.0","241903.0","11393.0","0.0","312.0","11032.0","264640.0","22743.0","0.0","921.6","0.0","0.0","106.5","23771.1","12027.5","110555.0","7367.0","2952.6","34331.0","529.0","7762.9","97017.0","84.0","0.0","0.0","0.0","22743.0","241903.0","7980.0"
"4247","Consolidated Water Power Co","WI","Investor Owned","165.0","145.0","201445.0","887894.0","0.0","1089339.0","1086883.0","0.0","0.0","652.0","1804.0","1089339.0","54981.3","0.0","0.0","0.0","0.0","0.0","54981.3","60.7","673.0","86.0","93.1","1208.0","18.0","54827.5","1085002.0","5.0","0.0","0.0","0.0","54981.3","1086883.0","109.0"
"4254","Consumers Energy Co","MI","Investor Owned","7057.0","5458.0","15747196.0","21926505.0","0.0","37673701.0","33248491.0","2870582.0","0.0","26244.0","1528384.0","37673701.0","4210442.1","35117.0","119022.2","-48639.4","7399.1","88746.2","4412087.2","1957153.6","12341231.0","1594272.0","1537793.9","12934962.0","222091.0","750611.6","11752010.0","1594.0","0.0","0.0","0.0","4245559.1","37028203.0","1817957.0"
"4262","Cooke County Elec Coop Assn","TX","Cooperative","89.0","116.0","0.0","500003.0","0.0","500003.0","477776.0","0.0","0.0","511.0","21716.0","500003.0","39344.0","0.0","0.0","0.0","0.0","128.0","39472.0","19871.0","183164.0","13941.0","19473.0","294612.0","2247.0","0.0","0.0","0.0","0.0","0.0","0.0","39344.0","477776.0","16188.0"
"4265","Continental Divide El Coop Inc","NM","Cooperative","73.9","81.9","0.0","692496.0","0.0","692496.0","673108.0","0.0","0.0","320.0","19068.0","692496.0","56794.0","0.0","0.0","0.0","0.0","0.0","56794.0","18411.0","140025.0","20906.0","12634.0","130812.0","3131.0","25749.0","402271.0","5.0","0.0","0.0","0.0","56794.0","673108.0","24042.0"
"4280","Conway Corporation","AR","Municipal","209.0","145.0","313167.0","678240.0","0.0","991407.0","966189.0","0.0","0.0","0.0","25218.0","991407.0","56535.0","0.0","0.0","0.0","0.0","626.2","57161.2","21351.0","323813.0","27319.0","15526.0","237274.0","3031.0","19658.0","405102.0","124.0","0.0","0.0","0.0","56535.0","966189.0","30474.0"
"4294","City of Cookeville - (TN)","TN","Municipal","117.0","93.0","0.0","565643.0","0.0","565643.0","545819.0","0.0","0.0","507.0","19317.0","565643.0","52142.0","0.0","0.0","0.0","0.0","1033.4","53175.4","16884.0","163507.0","14173.0","30884.0","319108.0","3565.0","4374.0","63204.0","7.0","0.0","0.0","0.0","52142.0","545819.0","17745.0"
"4295","Comanche County Elec Coop Assn","TX","Cooperative","48.6","56.8","0.0","262173.0","0.0","262173.0","242281.0","0.0","0.0","0.0","19892.0","262173.0","23354.0","0.0","0.0","0.0","0.0","0.0","23354.0","9773.0","90275.0","6434.0","11081.0","94706.0","10441.0","2500.0","57300.0","5.0","0.0","0.0","0.0","23354.0","242281.0","16880.0"
"4296","Cookson Hills Elec Coop, Inc","OK","Cooperative","70.1","85.6","0.0","290786.0","0.0","290786.0","270640.0","0.0","0.0","292.0","19854.0","290786.0","30643.0","0.0","0.0","0.0","0.0","386.0","31029.0","25413.0","215873.0","16450.0","3147.0","28376.0","1352.0","2083.0","26391.0","35.0","0.0","0.0","0.0","30643.0","270640.0","17837.0"
"4317","Coos-Curry Electric Coop, Inc","OR","Cooperative","46.0","87.2","0.0","352570.0","0.0","352570.0","334756.0","0.0","0.0","758.0","17056.0","352570.0","34992.3","0.0","0.0","0.0","0.0","424.0","35416.3","21116.1","187383.0","15212.0","9521.1","93397.0","2150.0","4355.1","53976.0","450.0","0.0","0.0","0.0","34992.3","334756.0","17812.0"
"4327","Coosa Valley Electric Coop Inc","AL","Cooperative","66.1","85.9","0.0","305708.0","0.0","305708.0","289284.0","0.0","16424.0","0.0","0.0","305708.0","37623.0","0.0","0.0","0.0","0.0","1446.0","39069.0","26259.0","197748.0","14125.0","4004.0","26528.0","2466.0","7360.0","65008.0","99.0","0.0","0.0","0.0","37623.0","289284.0","16690.0"
"4329","Copper Valley Elec Assn, Inc","AK","Cooperative","13.5","13.0","89563.0","0.0","0.0","89563.0","82814.0","0.0","0.0","271.0","6478.0","89563.0","19814.0","0.0","0.0","0.0","0.0","1709.0","21523.0","4333.0","16441.0","2985.0","15481.0","66373.0","812.0","0.0","0.0","0.0","0.0","0.0","0.0","19814.0","82814.0","3797.0"
"4346","Cooperative L&P Assn Lake County","MN","Cooperative","12.0","16.3","0.0","105666.0","0.0","105666.0","99018.0","0.0","0.0","779.0","5869.0","105666.0","12326.5","0.0","0.0","0.0","0.0","166.8","12493.3","7603.9","56288.0","5514.0","2977.8","19710.0","577.0","1744.8","23020.0","1.0","0.0","0.0","0.0","12326.5","99018.0","6092.0"
"4356","Colorado River Comm of Nevada","NV","State","193.5","204.0","0.0","1233358.0","-5143.0","1228215.0","595663.0","627409.0","0.0","0.0","5143.0","1228215.0","13213.0","0.0","19932.0","0.0","0.0","0.0","33145.0","0.0","0.0","0.0","2577.0","759485.0","3.0","10636.0","464373.0","4.0","0.0","0.0","0.0","13213.0","1223858.0","7.0"
"4362","Corn Belt Energy Corporation","IL","Cooperative","143.1","112.7","0.0","655624.0","0.0","655624.0","633819.0","0.0","0.0","1328.0","20477.0","655624.0","77096.4","0.0","0.0","0.0","0.0","199.8","77296.2","51359.7","381155.0","33778.0","20651.6","177945.0","2105.0","5085.1","74719.0","4.0","0.0","0.0","0.0","77096.4","633819.0","35887.0"
"4373","Cornhusker Public Power Dist","NE","Political Subdivision","76.0","68.5","0.0","420018.0","0.0","420018.0","392337.0","0.0","0.0","371.0","27310.0","420018.0","37851.0","0.0","0.0","0.0","0.0","40.0","37891.0","14341.0","129212.0","7141.0","6864.0","79141.0","486.0","16646.0","183984.0","2320.0","0.0","0.0","0.0","37851.0","392337.0","9947.0"
"4390","City of Corona - (CA)","CA","Municipal","28.6","29.9","0.0","156918.0","0.0","156918.0","153433.0","0.0","0.0","0.0","3485.0","156918.0","16906.2","0.0","0.0","0.0","0.0","0.0","16906.2","1006.7","6459.0","986.0","8908.6","73314.0","1449.0","6990.9","73660.0","16.0","0.0","0.0","0.0","16906.2","153433.0","2451.0"
"4401","Cotton Electric Coop, Inc","OK","Cooperative","140.8","168.3","0.0","741300.0","0.0","741300.0","712645.0","0.0","0.0","55.0","28600.0","741300.0","61229.2","0.0","0.0","0.0","0.0","428.4","61657.6","30286.0","264541.0","18315.0","14911.9","163382.0","3793.0","16031.3","284722.0","12.0","0.0","0.0","0.0","61229.2","712645.0","22120.0"
"4410","Coral Power LLC","TX","Retail Power Marketer","0.0","0.0","0.0","257977115.0","188221.0","258165336.0","9158826.0","249006510.0","0.0","0.0","0.0","258165336.0","284125.1","0.0","7976512.9","0.0","0.0","0.0","8260638.0","0.0","0.0","0.0","81617.0","2344854.0","66.0","202508.1","6813972.0","62.0","0.0","0.0","0.0","284125.1","9158826.0","128.0"
"4430","Covington Electric Coop, Inc","AL","Cooperative","89.0","107.0","0.0","389082.0","0.0","389082.0","366587.0","0.0","0.0","0.0","22495.0","389082.0","50875.0","0.0","0.0","0.0","0.0","1399.0","52274.0","40986.0","281988.0","21834.0","7902.0","61768.0","1276.0","1987.0","22831.0","13.0","0.0","0.0","0.0","50875.0","366587.0","23123.0"
"4432","Coweta-Fayette El Member Corp","GA","Cooperative","406.3","330.1","0.0","1577506.0","0.0","1577506.0","1510244.0","0.0","0.0","0.0","67262.0","1577506.0","158379.9","0.0","0.0","0.0","0.0","2147.0","160526.9","114740.4","1050168.0","73281.0","33156.8","293877.0","6050.0","10482.7","166199.0","51.0","0.0","0.0","0.0","158379.9","1510244.0","79382.0"
"4433","City of Covington - (GA)","GA","Municipal","84.9","72.1","0.0","422072.0","13879.0","435951.0","410670.0","0.0","4165.0","0.0","21116.0","435951.0","37651.0","0.0","0.0","0.0","0.0","2529.0","40180.0","13153.0","129363.0","9914.0","16238.0","149895.0","1849.0","8260.0","131412.0","10.0","0.0","0.0","0.0","37651.0","410670.0","11773.0"
"4437","City of Covington - (TN)","TN","Municipal","48.9","34.3","0.0","242668.0","0.0","242668.0","236480.0","0.0","0.0","728.0","5460.0","242668.0","20289.0","0.0","0.0","0.0","0.0","274.9","20563.9","4717.0","46868.0","3720.0","9236.0","91414.0","986.0","6336.0","98198.0","5.0","0.0","0.0","0.0","20289.0","236480.0","4711.0"
"4442","PUD No 1 of Cowlitz County","WA","Political Subdivision","649.0","779.0","18159.0","4871458.0","0.0","4889617.0","4825787.0","0.0","0.0","3251.0","60579.0","4889617.0","264978.0","0.0","0.0","0.0","0.0","0.0","264978.0","64100.0","762993.0","44238.0","33187.0","391644.0","5815.0","167691.0","3671150.0","312.0","0.0","0.0","0.0","264978.0","4825787.0","50365.0"
"4459","Cozad Board of Public Works","NE","Municipal","9.9","11.8","0.0","51004.0","0.0","51004.0","46993.0","0.0","0.0","0.0","4011.0","51004.0","4637.3","0.0","0.0","0.0","0.0","65.3","4702.6","2109.3","20005.0","1716.0","2112.2","21842.0","349.0","415.8","5146.0","1.0","0.0","0.0","0.0","4637.3","46993.0","2066.0"
"4471","Craig-Botetourt Electric Coop","VA","Cooperative","19.9","24.9","0.0","88134.0","0.0","88134.0","80389.0","0.0","0.0","0.0","7745.0","88134.0","11604.8","0.0","0.0","0.0","0.0","293.7","11898.5","9892.5","67899.0","6329.0","1712.3","12490.0","845.0","0.0","0.0","0.0","0.0","0.0","0.0","11604.8","80389.0","7174.0"
"4508","Crawfordsville Elec, Lgt & Pwr","IN","Municipal","73.1","60.1","0.0","404956.0","0.0","404956.0","392925.0","0.0","0.0","1226.0","10805.0","404956.0","35801.0","0.0","0.0","0.0","0.0","0.0","35801.0","9226.1","80973.0","8292.0","6126.8","55543.0","1484.0","20448.1","256409.0","133.0","0.0","0.0","0.0","35801.0","392925.0","9909.0"
"4509","Craighead Electric Coop Corp","AR","Cooperative","147.0","133.0","0.0","567654.0","0.0","567654.0","531201.0","0.0","0.0","339.0","36114.0","567654.0","55513.0","0.0","0.0","0.0","0.0","553.0","56066.0","36002.0","348600.0","23395.0","12476.0","112601.0","5558.0","7035.0","70000.0","1429.0","0.0","0.0","0.0","55513.0","531201.0","30382.0"
"4524","Crawford Electric Coop, Inc","MO","Cooperative","75.3","86.7","0.0","304456.0","0.0","304456.0","285387.0","0.0","0.0","0.0","19069.0","304456.0","29528.9","0.0","0.0","0.0","0.0","620.1","30149.0","25570.1","241016.0","18356.0","3617.8","39315.0","1540.0","341.0","5056.0","3.0","0.0","0.0","0.0","29528.9","285387.0","19899.0"
"4527","City of Crete","NE","Municipal","22.9","19.8","224.0","125389.0","0.0","125613.0","119322.0","0.0","0.0","0.0","6291.0","125613.0","10620.0","0.0","0.0","0.0","0.0","0.0","10620.0","2717.0","24842.0","2480.0","2680.0","25946.0","717.0","5223.0","68534.0","3.0","0.0","0.0","0.0","10620.0","119322.0","3200.0"
"4538","Crisp County Power Comm","GA","Political Subdivision","85.3","84.4","42689.0","396598.0","0.0","439287.0","421176.0","0.0","0.0","1624.0","16487.0","439287.0","40630.6","0.0","0.0","0.0","0.0","0.0","40630.6","15703.7","141071.0","9147.0","13542.9","112481.0","2749.0","11384.0","167624.0","52.0","0.0","0.0","0.0","40630.6","421176.0","11948.0"
"4577","Crow Wing Cooperative Power & Light Comp","MN","Cooperative","108.7","94.1","0.0","615634.0","0.0","615634.0","577894.0","0.0","0.0","2031.0","35709.0","615634.0","67845.0","0.0","0.0","0.0","0.0","963.7","68808.7","50730.9","413216.0","41264.0","14555.5","140099.0","2439.0","2558.6","24579.0","196.0","0.0","0.0","0.0","67845.0","577894.0","43899.0"
"4604","City of Crystal Falls","MI","Municipal","2.6","2.4","7551.0","9493.0","0.0","17044.0","16017.0","0.0","0.0","0.0","1027.0","17044.0","2369.0","0.0","0.0","0.0","0.0","0.0","2369.0","1187.0","7471.0","1350.0","1182.0","8546.0","280.0","0.0","0.0","0.0","0.0","0.0","0.0","2369.0","16017.0","1630.0"
"4607","City of Cuba City","WI","Municipal","4.6","3.1","0.0","18211.0","0.0","18211.0","17331.0","0.0","0.0","0.0","880.0","18211.0","2046.3","0.0","0.0","0.0","0.0","35.6","2081.9","847.0","6949.0","946.0","1199.3","10382.0","139.0","0.0","0.0","0.0","0.0","0.0","0.0","2046.3","17331.0","1085.0"
"4610","City of Cuero - (TX)","TX","Municipal","22.2","19.3","0.0","97751.0","0.0","97751.0","90862.0","0.0","0.0","0.0","6889.0","97751.0","8801.3","0.0","0.0","0.0","0.0","0.0","8801.3","4303.4","42684.0","2993.0","3873.5","40946.0","604.0","624.4","7232.0","1.0","0.0","0.0","0.0","8801.3","90862.0","3598.0"
"4617","Cullman Power Board","AL","Municipal","61.5","52.3","0.0","281098.0","0.0","281098.0","269068.0","0.0","0.0","81.0","11949.0","281098.0","29043.0","0.0","0.0","0.0","0.0","666.1","29709.1","9094.0","82752.0","6719.0","18398.0","168630.0","1944.0","1551.0","17686.0","3.0","0.0","0.0","0.0","29043.0","269068.0","8666.0"
"4618","Cullman Electric Coop, Inc","AL","Cooperative","219.6","239.7","0.0","1061516.0","0.0","1061516.0","1000225.0","0.0","0.0","951.0","60340.0","1061516.0","105264.0","0.0","0.0","0.0","0.0","3691.5","108955.5","58266.0","497139.0","35526.0","27812.0","224443.0","7688.0","19186.0","278643.0","15.0","0.0","0.0","0.0","105264.0","1000225.0","43228.0"
"4619","Town of Culpeper- (VA)","VA","Municipal","26.2","16.2","29.0","108909.0","0.0","108938.0","102138.0","0.0","0.0","397.0","6403.0","108938.0","11582.0","0.0","0.0","0.0","0.0","0.0","11582.0","6086.0","48211.0","4516.0","3703.0","29674.0","860.0","1793.0","24253.0","14.0","0.0","0.0","0.0","11582.0","102138.0","5390.0"
"4622","Cumberland Valley Electric, Inc.","KY","Cooperative","88.0","116.0","0.0","436068.0","0.0","436068.0","413246.0","0.0","473.0","0.0","22349.0","436068.0","40983.0","0.0","0.0","0.0","0.0","1656.0","42639.0","30188.0","285648.0","22047.0","3094.0","27591.0","1503.0","7701.0","100007.0","86.0","0.0","0.0","0.0","40983.0","413246.0","23636.0"
"4624","Cumberland Elec Member Corp","TN","Cooperative","535.6","632.2","0.0","2616409.0","0.0","2616409.0","2502168.0","0.0","0.0","1103.0","113138.0","2616409.0","258005.0","0.0","0.0","0.0","0.0","7072.9","265077.9","160286.0","1395577.0","83875.0","59579.0","501295.0","10656.0","38140.0","605296.0","24.0","0.0","0.0","0.0","258005.0","2502168.0","94556.0"
"4632","Cuming County Public Pwr Dist","NE","Political Subdivision","20.7","21.2","0.0","105877.0","0.0","105877.0","97900.0","0.0","0.0","0.0","7977.0","105877.0","9958.8","0.0","0.0","0.0","0.0","208.0","10166.8","4910.9","49313.0","2786.0","868.6","9573.0","339.0","4179.3","39014.0","735.0","0.0","0.0","0.0","9958.8","97900.0","3860.0"
"4667","City of Cushing - (OK)","OK","Municipal","28.1","19.4","0.0","120656.0","0.0","120656.0","110142.0","0.0","0.0","8283.0","2231.0","120656.0","9151.0","0.0","0.0","0.0","0.0","0.0","9151.0","3687.0","36727.0","3586.0","1227.0","20227.0","706.0","4237.0","53188.0","158.0","0.0","0.0","0.0","9151.0","110142.0","4450.0"
"4671","Custer Public Power District","NE","Political Subdivision","120.0","31.0","0.0","258253.0","0.0","258253.0","227878.0","8853.0","0.0","614.0","20908.0","258253.0","28826.0","0.0","484.0","0.0","0.0","427.0","29737.0","8925.0","73951.0","4625.0","5378.0","45823.0","1155.0","14523.0","108104.0","4942.0","0.0","0.0","0.0","28826.0","227878.0","10722.0"
"4675","Cuivre River Electric Coop Inc","MO","Cooperative","322.0","331.0","0.0","1306364.0","0.0","1306364.0","1255956.0","0.0","0.0","1261.0","49147.0","1306364.0","113018.0","0.0","0.0","0.0","0.0","718.0","113736.0","90685.0","964840.0","62997.0","4008.0","38883.0","1139.0","18325.0","252233.0","234.0","0.0","0.0","0.0","113018.0","1255956.0","64370.0"
"4683","City of Cuyahoga Falls - (OH)","OH","Municipal","105.2","66.6","0.0","454884.0","0.0","454884.0","416497.0","0.0","13536.0","124.0","24727.0","454884.0","47735.5","0.0","0.0","0.0","0.0","161.4","47896.9","20698.0","167507.0","23286.0","7224.5","58245.0","2284.0","19813.0","190745.0","179.0","0.0","0.0","0.0","47735.5","416497.0","25749.0"
"4704","DS&O Electric Cooperative, Inc.","KS","Cooperative","31.0","25.3","2.0","130770.0","0.0","130772.0","121867.0","0.0","0.0","0.0","8905.0","130772.0","19403.0","0.0","0.0","0.0","0.0","236.0","19639.0","13420.0","85468.0","7173.0","5158.0","30845.0","1143.0","825.0","5554.0","4.0","0.0","0.0","0.0","19403.0","121867.0","8320.0"
"4715","Dahlberg Light & Power Co","WI","Investor Owned","20.0","23.0","0.0","119823.0","0.0","119823.0","99373.0","0.0","0.0","350.0","20100.0","119823.0","12626.0","0.0","0.0","0.0","0.0","79.0","12705.0","8688.0","64978.0","10373.0","2364.0","18481.0","1184.0","1574.0","15914.0","41.0","0.0","0.0","0.0","12626.0","99373.0","11598.0"
"4717","Dakota Valley Elec Coop Inc","ND","Cooperative","88.8","108.2","0.0","674379.0","0.0","674379.0","663534.0","0.0","0.0","0.0","10845.0","674379.0","54434.6","0.0","0.0","0.0","0.0","107.9","54542.5","12820.0","120810.0","5463.0","6794.8","67328.0","693.0","34819.8","475396.0","405.0","0.0","0.0","0.0","54434.6","663534.0","6561.0"
"4720","Dakota Energy Coop Inc","SD","Cooperative","46.6","48.6","0.0","239081.0","0.0","239081.0","230750.0","0.0","338.0","0.0","7993.0","239081.0","23049.1","0.0","0.0","0.0","0.0","955.8","24004.9","7820.9","57794.0","3257.0","3826.2","37903.0","292.0","11402.0","135053.0","5.0","0.0","0.0","0.0","23049.1","230750.0","3554.0"
"4743","Consumers Power, Inc","OR","Cooperative","71.5","114.3","0.0","443773.0","0.0","443773.0","412824.0","0.0","1181.0","0.0","29768.0","443773.0","37905.5","0.0","0.0","0.0","0.0","219.2","38124.7","27845.4","286322.0","20136.0","7305.4","88858.0","1718.0","2754.7","37644.0","539.0","0.0","0.0","0.0","37905.5","412824.0","22393.0"
"4744","Dalton Utilities","GA","Municipal","281.4","239.7","866279.0","964097.0","0.0","1830376.0","1679375.0","29939.0","0.0","470.0","120592.0","1830376.0","115747.0","0.0","908.0","0.0","0.0","-513.0","116142.0","13902.0","147890.0","12432.0","35471.0","386345.0","4158.0","66374.0","1145140.0","212.0","0.0","0.0","0.0","115747.0","1679375.0","16802.0"
"4794","City of Danville - (VA)","VA","Municipal","215.3","219.0","22771.0","955201.0","0.0","977972.0","929373.0","0.0","0.0","0.0","48599.0","977972.0","99250.0","0.0","0.0","0.0","0.0","0.0","99250.0","59990.0","438937.0","37062.0","27968.0","298042.0","4990.0","11292.0","192394.0","30.0","0.0","0.0","0.0","99250.0","929373.0","42082.0"
"4796","Darke Rural Electric Coop, Inc","OH","Cooperative","20.1","22.3","0.0","119095.0","0.0","119095.0","112227.0","0.0","0.0","0.0","6868.0","119095.0","14096.0","0.0","0.0","0.0","0.0","173.7","14269.7","10862.8","83351.0","4903.0","3083.0","27321.0","191.0","150.2","1555.0","1.0","0.0","0.0","0.0","14096.0","112227.0","5095.0"
"4836","City of David City","NE","Municipal","8.7","6.6","0.0","42144.0","0.0","42144.0","38976.0","0.0","839.0","0.0","2329.0","42144.0","4260.0","0.0","0.0","0.0","0.0","344.0","4604.0","1670.0","14448.0","1186.0","672.0","6040.0","228.0","1918.0","18488.0","30.0","0.0","0.0","0.0","4260.0","38976.0","1444.0"
"4848","Daviess Martin County R E M C","IN","Cooperative","69.0","65.5","0.0","410073.0","0.0","410073.0","398572.0","0.0","0.0","725.0","10776.0","410073.0","34313.5","0.0","0.0","0.0","0.0","258.0","34571.5","14164.6","113429.0","7594.0","1618.1","14243.0","498.0","18530.8","270900.0","60.0","0.0","0.0","0.0","34313.5","398572.0","8152.0"
"4911","Dawson Power District","NE","Political Subdivision","144.2","95.9","562.0","596106.0","0.0","596668.0","556935.0","0.0","0.0","1221.0","38512.0","596668.0","61145.0","0.0","0.0","0.0","238.3","421.1","61804.4","25538.0","236498.0","15702.0","7537.0","76737.0","1559.0","28070.0","243700.0","5804.0","0.0","0.0","0.0","61145.0","556935.0","23065.0"
"4920","City of Dayton - (TN)","TN","Municipal","60.5","51.1","0.0","286098.0","0.0","286098.0","273318.0","0.0","0.0","0.0","12780.0","286098.0","27266.0","0.0","0.0","0.0","0.0","484.1","27750.1","11767.0","107080.0","8597.0","10339.0","90285.0","1980.0","5160.0","75953.0","7.0","0.0","0.0","0.0","27266.0","273318.0","10583.0"
"4922","Dayton Power & Light Co","OH","Investor Owned","3213.0","2817.0","7610986.0","4685218.0","0.0","12296204.0","3655649.0","8551700.0","0.0","11121.0","77734.0","12296204.0","385585.0","292599.0","359886.0","5908.0","48190.0","8308.0","1100476.0","409802.0","5048526.0","460570.0","197460.0","4953994.0","57738.0","70637.0","3838077.0","1714.0","285.0","3067.0","1.0","678184.0","13843664.0","520023.0"
"4939","Deaf Smith Electric Coop, Inc","TX","Cooperative","191.8","113.7","0.0","610538.0","0.0","610538.0","563250.0","0.0","0.0","412.0","46876.0","610538.0","48992.9","0.0","0.0","0.0","0.0","320.6","49313.5","4950.3","47882.0","5033.0","8931.1","130944.0","1447.0","35111.5","384424.0","7968.0","0.0","0.0","0.0","48992.9","563250.0","14448.0"
"4958","Decatur Utilities","AL","Municipal","221.9","192.1","0.0","1214896.0","0.0","1214896.0","1176787.0","0.0","0.0","0.0","38109.0","1214896.0","90715.0","0.0","0.0","0.0","0.0","1046.5","91761.5","30034.0","311323.0","22549.0","31610.0","323032.0","4034.0","29071.0","542432.0","12.0","0.0","0.0","0.0","90715.0","1176787.0","26594.0"
"4960","Decatur County Rural E M C","IN","Cooperative","63.0","61.9","0.0","370544.0","0.0","370544.0","361743.0","0.0","324.0","0.0","8477.0","370544.0","34071.7","0.0","0.0","0.0","0.0","279.0","34350.7","14435.1","104093.0","7526.0","3643.8","34650.0","393.0","15992.8","223000.0","6.0","0.0","0.0","0.0","34071.7","361743.0","7925.0"
"4975","Deep East Texas Elec Coop Inc","TX","Cooperative","186.9","211.6","0.0","853738.0","0.0","853738.0","729651.0","57911.0","0.0","403.0","65773.0","853738.0","80325.0","0.0","4401.0","0.0","2306.0","1137.0","88169.0","58099.0","498816.0","38326.0","14219.0","125330.0","3958.0","8007.0","105505.0","20.0","0.0","0.0","0.0","80325.0","729651.0","42304.0"
"5015","Delano Municipal Utilities","MN","Municipal","13.3","9.9","28.0","60445.0","0.0","60473.0","57371.0","0.0","400.0","0.0","2702.0","60473.0","5741.3","0.0","0.0","0.0","0.0","0.0","5741.3","2293.8","20314.0","2352.0","598.6","5560.0","339.0","2848.9","31497.0","79.0","0.0","0.0","0.0","5741.3","57371.0","2770.0"
"5027","Delmarva Power","DE","Investor Owned","3754.0","3374.0","0.0","6410026.0","258783.0","6668809.0","5668116.0","346230.0","0.0","23265.0","631198.0","6668809.0","769770.0","181430.0","19918.0","22138.0","145881.4","0.0","1139137.4","651574.1000000001","5009764.0","458170.0","275588.7","5093838.0","62102.0","24037.199999999997","1772705.0","385.0","0.0","0.0","0.0","951200.0","11876307.0","520657.0"
"5056","City of Denison - (IA)","IA","Municipal","30.5","26.9","0.0","167985.0","-2855.0","165130.0","156817.0","0.0","2430.0","512.0","5371.0","165130.0","10612.6","0.0","0.0","0.0","0.0","513.7","11126.3","2704.9","33368.0","2727.0","1132.8","13310.0","496.0","6774.9","110139.0","69.0","0.0","0.0","0.0","10612.6","156817.0","3292.0"
"5063","City of Denton - (TX)","TX","Municipal","337.4","253.8","339802.0","1181829.0","0.0","1521631.0","1446082.0","0.0","0.0","0.0","75549.0","1521631.0","143288.5","0.0","0.0","0.0","18932.5","3874.2","166095.2","61797.3","553519.0","46715.0","65892.8","699266.0","5628.0","15598.4","193297.0","469.0","0.0","0.0","0.0","143288.5","1446082.0","52812.0"
"5070","Delaware Electric Cooperative","DE","Cooperative","354.0","342.0","6986.0","1412856.0","0.0","1419842.0","1340159.0","0.0","0.0","1691.0","77992.0","1419842.0","154266.0","0.0","0.0","0.0","0.0","0.0","154266.0","126256.0","1081756.0","85425.0","28010.0","258403.0","10177.0","0.0","0.0","0.0","0.0","0.0","0.0","154266.0","1340159.0","95602.0"
"5078","Denton County Elec Coop, Inc","TX","Cooperative","1407.5","1209.5","0.0","5133481.0","0.0","5133481.0","4978874.0","0.0","0.0","0.0","154607.0","5133481.0","452731.0","0.0","0.0","0.0","0.0","0.0","452731.0","311573.0","3208141.0","205450.0","49082.0","483583.0","14975.0","92076.0","1287150.0","2229.0","0.0","0.0","0.0","452731.0","4978874.0","222654.0"
"5086","Delta Montrose Electric Assn","CO","Cooperative","84.1","91.2","30516.0","532302.0","0.0","562818.0","510264.0","32470.0","0.0","1599.0","18485.0","562818.0","62181.1","0.0","2112.8","0.0","0.0","1133.9","65427.8","36418.1","258885.0","29320.0","9836.3","77743.0","3490.0","15926.7","173636.0","229.0","0.0","0.0","0.0","62181.1","510264.0","33039.0"
"5109","DTE Electric Company","MI","Investor Owned","10554.0","7177.0","38728870.0","8413142.0","0.0","47142012.0","42243910.0","2623336.0","78514.0","0.0","2196252.0","47142012.0","4777824.8","70117.1","54099.2","-74576.3","0.0","167643.2","4995108.0","2309635.5999999996","14885072.0","1980943.0","1856540.4","20152523.0","207589.0","681067.7","12020111.0","944.0","698.2","5823.0","2.0","4847941.899999999","47063529.0","2189478.0"
"5111","City of Detroit Lakes - (MN)","MN","Municipal","35.2","36.7","0.0","194723.0","-3878.0","190845.0","181586.0","0.0","0.0","0.0","9259.0","190845.0","17403.6","0.0","0.0","0.0","319.7","418.5","18141.8","6871.2","64852.0","5993.0","3507.2","34237.0","1249.0","7025.2","82497.0","106.0","0.0","0.0","0.0","17403.6","181586.0","7348.0"
"5148","City of Dickson","TN","Municipal","190.0","179.8","0.0","878849.0","0.0","878849.0","832418.0","0.0","0.0","875.0","45556.0","878849.0","81625.0","0.0","0.0","0.0","0.0","2332.0","83957.0","41914.0","405751.0","27764.0","27651.0","253432.0","7014.0","12060.0","173235.0","18.0","0.0","0.0","0.0","81625.0","832418.0","34796.0"
"5175","Dixie Electric Power Assn","MS","Cooperative","179.7","210.6","0.0","852324.0","0.0","852324.0","800120.0","0.0","0.0","1059.0","51145.0","852324.0","89072.4","0.0","0.0","0.0","0.0","1667.0","90739.4","58977.4","499263.0","35383.0","20878.6","193258.0","3500.0","9216.4","107599.0","22.0","0.0","0.0","0.0","89072.4","800120.0","38905.0"
"5202","Dixie Electric Membership Corp","LA","Cooperative","507.1","535.7","0.0","2149385.0","0.0","2149385.0","2030799.0","0.0","0.0","0.0","118586.0","2149385.0","202798.0","0.0","0.0","0.0","0.0","5017.0","207815.0","158757.0","1554640.0","102193.0","17315.0","169427.0","7266.0","26726.0","306732.0","566.0","0.0","0.0","0.0","202798.0","2030799.0","110025.0"
"5204","Dixie Electric Coop","AL","Cooperative","119.4","108.9","0.0","523710.0","0.0","523710.0","504597.0","0.0","0.0","635.0","18478.0","523710.0","58496.0","0.0","0.0","0.0","0.0","913.0","59409.0","34190.0","285496.0","19952.0","19981.0","170461.0","3804.0","4325.0","48640.0","13.0","0.0","0.0","0.0","58496.0","504597.0","23769.0"
"5309","City of Dothan - (AL)","AL","Municipal","205.0","202.8","0.0","1010320.0","0.0","1010320.0","971917.0","0.0","0.0","0.0","38403.0","1010320.0","93179.0","0.0","0.0","0.0","0.0","0.0","93179.0","36694.0","357021.0","25450.0","43428.0","432995.0","5121.0","13057.0","181901.0","10.0","0.0","0.0","0.0","93179.0","971917.0","30581.0"
"5325","City of Douglas","GA","Municipal","53.5","49.7","102.0","279926.0","0.0","280028.0","274935.0","0.0","0.0","0.0","5093.0","280028.0","29119.0","0.0","0.0","0.0","0.0","506.0","29625.0","5924.0","59374.0","3964.0","23195.0","215561.0","1904.0","0.0","0.0","0.0","0.0","0.0","0.0","29119.0","274935.0","5868.0"
"5326","PUD No 1 of Douglas County","WA","Political Subdivision","143.0","232.0","4542200.0","0.0","0.0","4542200.0","926104.0","3594117.0","0.0","0.0","21979.0","4542200.0","27344.0","0.0","52978.0","0.0","0.0","4086.0","84408.0","14096.0","471337.0","14441.0","7930.0","266459.0","1118.0","5318.0","188308.0","316.0","0.0","0.0","0.0","27344.0","926104.0","15875.0"
"5327","Douglas Electric Coop - (OR)","OR","Cooperative","26.0","40.0","0.0","167910.0","0.0","167910.0","156763.0","0.0","0.0","121.0","11026.0","167910.0","15905.0","0.0","0.0","0.0","0.0","159.0","16064.0","13134.0","130051.0","9174.0","1973.0","19052.0","724.0","798.0","7660.0","10.0","0.0","0.0","0.0","15905.0","156763.0","9908.0"
"5328","Douglas Electric Coop, Inc","SD","Cooperative","4.3","6.2","0.0","24453.0","0.0","24453.0","23192.0","0.0","0.0","83.0","1178.0","24453.0","2823.0","0.0","0.0","0.0","0.0","8.0","2831.0","2109.0","17046.0","721.0","714.0","6146.0","94.0","0.0","0.0","0.0","0.0","0.0","0.0","2823.0","23192.0","815.0"
"5335","City of Dover - (DE)","DE","Municipal","162.9","113.0","30232.0","732382.0","0.0","762614.0","728955.0","0.0","0.0","0.0","33659.0","762614.0","76979.0","0.0","0.0","0.0","0.0","0.0","76979.0","24572.0","199052.0","20382.0","26445.0","228357.0","3579.0","25962.0","301546.0","41.0","0.0","0.0","0.0","76979.0","728955.0","24002.0"
"5336","City of Dover - (OH)","OH","Municipal","47.2","32.6","51792.0","176486.0","0.0","228278.0","222120.0","0.0","0.0","0.0","6158.0","228278.0","29209.0","0.0","0.0","0.0","0.0","0.0","29209.0","8017.0","53000.0","5817.0","4229.0","27935.0","891.0","16963.0","141185.0","110.0","0.0","0.0","0.0","29209.0","222120.0","6818.0"
"5394","Dubois Rural Electric Coop Inc","IN","Cooperative","68.0","53.0","99.0","293494.0","0.0","293593.0","277776.0","0.0","59.0","0.0","15758.0","293593.0","30694.0","0.0","0.0","0.0","0.0","260.0","30954.0","19289.0","157201.0","12692.0","2190.0","18759.0","878.0","9215.0","101816.0","83.0","0.0","0.0","0.0","30694.0","277776.0","13653.0"
"5399","Duck River Elec Member Corp","TN","Cooperative","373.9","508.7","0.0","1830363.0","0.0","1830363.0","1744295.0","0.0","0.0","1436.0","84632.0","1830363.0","178560.0","0.0","0.0","0.0","0.0","5537.2","184097.2","106257.0","966039.0","62999.0","55326.0","470974.0","11359.0","16977.0","307282.0","11.0","0.0","0.0","0.0","178560.0","1744295.0","74369.0"
"5416","Duke Energy Carolinas, LLC","NC","Investor Owned","17422.0","16743.0","81700915.0","9478719.0","748828.0","91928462.0","77435296.0","9871268.0","0.0","158616.0","4463282.0","91928462.0","6230080.7","0.0","555060.9","-13034.5","86079.8","457044.1","7315231.0","2743777.7","26717073.0","2181646.0","2264079.4","28792465.0","369230.0","1221920.9","21922218.0","6240.0","302.7","3540.0","1.0","6230080.7","77435296.0","2557117.0"
"5417","Dunn County Electric Coop","WI","Cooperative","42.8","38.6","0.0","212280.0","0.0","212280.0","202053.0","0.0","0.0","0.0","10227.0","212280.0","23604.0","0.0","0.0","0.0","0.0","240.0","23844.0","17466.0","134609.0","9226.0","2430.0","20938.0","674.0","3708.0","46506.0","3.0","0.0","0.0","0.0","23604.0","202053.0","9903.0"
"5429","City of Duncan - (OK)","OK","Municipal","48.4","31.3","0.0","186233.0","-5382.0","180851.0","175386.0","0.0","0.0","0.0","5465.0","180851.0","18111.2","0.0","0.0","0.0","0.0","0.0","18111.2","9250.6","81686.0","7326.0","6230.1","56216.0","1445.0","2630.5","37484.0","52.0","0.0","0.0","0.0","18111.2","175386.0","8823.0"
"5470","ConocoPhillips Company","TX","Retail Power Marketer","46.4","54.5","0.0","8580567.0","0.0","8580567.0","335078.0","8220358.0","0.0","0.0","25131.0","8580567.0","11807.6","0.0","329984.5","0.0","0.0","0.0","341792.1","0.0","0.0","0.0","1858.8","33267.0","3.0","9948.8","301811.0","2.0","0.0","0.0","0.0","11807.6","335078.0","5.0"
"5480","Town of Danvers","MA","Municipal","70.0","56.4","0.0","303496.0","8975.0","312471.0","300250.0","0.0","0.0","699.0","11522.0","312471.0","41443.8","0.0","0.0","0.0","0.0","0.0","41443.8","13801.8","90654.0","11334.0","5067.9","34347.0","1496.0","22574.1","175249.0","405.0","0.0","0.0","0.0","41443.8","300250.0","13235.0"
"5487","Duquesne Light Co","PA","Investor Owned","2712.0","2027.0","0.0","4237638.0","0.0","4237638.0","3872724.0","23887.0","0.0","0.0","341027.0","4237638.0","570052.7","252505.8","1433.0","-18099.0","90066.0","17887.0","913845.5","519697.7","3876117.0","532920.0","259708.3","6114592.0","60775.0","41726.0","2632035.0","1089.0","1426.5","21621.0","1.0","822558.5","12644365.0","594785.0"
"5509","City of Dyersburg","TN","Municipal","88.6","68.7","0.0","409971.0","0.0","409971.0","394673.0","0.0","0.0","377.0","14921.0","409971.0","37260.0","0.0","0.0","0.0","0.0","1309.7","38569.7","13386.0","128359.0","9416.0","14543.0","140241.0","2433.0","9331.0","126073.0","12.0","0.0","0.0","0.0","37260.0","394673.0","11862.0"
"5535","Egyptian Electric Coop Assn","IL","Cooperative","79.1","90.2","0.0","347216.0","0.0","347216.0","333771.0","0.0","0.0","0.0","13445.0","347216.0","39034.0","0.0","0.0","0.0","0.0","0.0","39034.0","25239.0","189944.0","13663.0","13795.0","143827.0","1325.0","0.0","0.0","0.0","0.0","0.0","0.0","39034.0","333771.0","14988.0"
"5551","City of Eagle River - (WI)","WI","Municipal","6.6","5.4","0.0","33389.0","0.0","33389.0","30999.0","0.0","0.0","0.0","2390.0","33389.0","3445.9","0.0","0.0","0.0","0.0","87.2","3533.1","706.0","5516.0","971.0","2739.9","25483.0","536.0","0.0","0.0","0.0","0.0","0.0","0.0","3445.9","30999.0","1507.0"
"5574","East Central Energy","MN","Cooperative","160.0","146.9","0.0","965630.0","0.0","965630.0","914089.0","0.0","0.0","2515.0","49026.0","965630.0","123024.0","0.0","0.0","0.0","0.0","1018.0","124042.0","84287.0","529368.0","53792.0","32100.0","292629.0","5799.0","6637.0","92092.0","157.0","0.0","0.0","0.0","123024.0","914089.0","59748.0"
"5575","City of East Grand Forks - (MN)","MN","Municipal","25.9","36.1","0.0","164907.0","0.0","164907.0","157583.0","0.0","0.0","0.0","7324.0","164907.0","14126.9","0.0","0.0","0.0","0.0","0.0","14126.9","3969.1","36483.0","3810.0","3206.7","38479.0","567.0","6951.1","82621.0","10.0","0.0","0.0","0.0","14126.9","157583.0","4387.0"
"5578","East Mississippi Elec Pwr Assn","MS","Cooperative","49.7","56.0","0.0","235206.0","0.0","235206.0","219214.0","0.0","0.0","277.0","15715.0","235206.0","27286.0","0.0","0.0","0.0","0.0","787.7","28073.7","15459.0","121264.0","9770.0","11827.0","97950.0","3033.0","0.0","0.0","0.0","0.0","0.0","0.0","27286.0","219214.0","12804.0"
"5582","City of East Point - (GA)","GA","Municipal","76.9","62.2","0.0","339640.0","44622.0","384262.0","362110.0","0.0","0.0","9555.0","12597.0","384262.0","44305.1","0.0","0.0","0.0","0.0","21.7","44326.8","20177.6","146563.0","14315.0","24127.5","215547.0","1367.0","0.0","0.0","0.0","0.0","0.0","0.0","44305.1","362110.0","15682.0"
"5585","Eastern Illinois Elec Coop","IL","Cooperative","46.9","51.3","0.0","254554.0","0.0","254554.0","233910.0","0.0","0.0","92.0","20552.0","254554.0","34219.0","0.0","0.0","-24.0","0.0","43.0","34238.0","25828.0","170864.0","11260.0","7630.0","56161.0","2250.0","761.0","6885.0","3.0","0.0","0.0","0.0","34219.0","233910.0","13513.0"
"5588","East-Central Iowa Rural Elec Coop","IA","Cooperative","40.0","51.0","0.0","218368.0","0.0","218368.0","207928.0","0.0","441.0","0.0","9999.0","218368.0","22060.0","0.0","0.0","0.0","0.0","40.0","22100.0","14891.0","127215.0","7832.0","5390.0","56942.0","935.0","1779.0","23771.0","5.0","0.0","0.0","0.0","22060.0","207928.0","8772.0"
"5598","East Central Oklahoma Elec Coop Inc","OK","Cooperative","131.3","142.3","0.0","516698.0","0.0","516698.0","477424.0","0.0","0.0","0.0","39274.0","516698.0","54190.0","0.0","0.0","0.0","0.0","679.0","54869.0","43555.0","375491.0","29692.0","10635.0","101933.0","4109.0","0.0","0.0","0.0","0.0","0.0","0.0","54190.0","477424.0","33801.0"
"5605","Eastern Iowa Light & Power Coop","IA","Cooperative","121.4","89.9","0.0","655671.0","0.0","655671.0","602702.0","25687.0","0.0","1081.0","26201.0","655671.0","60862.9","0.0","1615.4","0.0","0.0","280.0","62758.3","38205.6","291716.0","21715.0","5988.1","53352.0","1931.0","16669.2","257634.0","16.0","0.0","0.0","0.0","60862.9","602702.0","23662.0"
"5609","Eastern Maine Electric Coop","ME","Cooperative","15.8","19.2","0.0","91487.0","0.0","91487.0","91487.0","0.0","0.0","0.0","0.0","91487.0","15011.2","0.0","0.0","0.0","0.0","735.1","15746.3","9391.0","54249.0","10472.0","3519.8","22288.0","2120.0","2100.4","14950.0","28.0","0.0","0.0","0.0","15011.2","91487.0","12620.0"
"5625","Easton Utilities Comm","MD","Municipal","60.0","56.3","6307.0","260322.0","-241.0","266388.0","251765.0","0.0","26.0","258.0","14339.0","266388.0","24317.6","0.0","0.0","-238.5","0.0","0.0","24079.1","10193.1","104016.0","8287.0","14124.5","147749.0","2372.0","0.0","0.0","0.0","0.0","0.0","0.0","24317.6","251765.0","10659.0"
"5632","Eau Claire Electric Coop","WI","Cooperative","40.9","39.3","0.0","210842.0","0.0","210842.0","203158.0","0.0","332.0","0.0","7352.0","210842.0","25484.0","0.0","0.0","0.0","0.0","250.0","25734.0","18706.0","131145.0","10339.0","3784.0","36178.0","666.0","2994.0","35835.0","8.0","0.0","0.0","0.0","25484.0","203158.0","11013.0"
"5644","Edisto Electric Coop, Inc","SC","Cooperative","83.6","88.0","0.0","331842.0","0.0","331842.0","307452.0","0.0","0.0","404.0","23986.0","331842.0","44826.5","0.0","0.0","0.0","0.0","539.7","45366.2","32348.4","219496.0","14937.0","8955.5","55960.0","5245.0","3522.6","31996.0","22.0","0.0","0.0","0.0","44826.5","307452.0","20204.0"
"5656","Edgecombe-Martin County E M C","NC","Cooperative","52.0","54.0","0.0","235076.0","0.0","235076.0","220959.0","3200.0","0.0","0.0","10917.0","235076.0","26171.0","0.0","280.0","0.0","0.0","1185.0","27636.0","19491.0","145381.0","10199.0","4337.0","40474.0","1098.0","2343.0","35104.0","8.0","0.0","0.0","0.0","26171.0","220959.0","11305.0"
"5661","City of Edmond - (OK)","OK","Municipal","259.0","129.0","0.0","895664.0","0.0","895664.0","882430.0","0.0","0.0","0.0","13234.0","895664.0","89169.0","0.0","0.0","0.0","0.0","1202.0","90371.0","55141.0","480555.0","35095.0","34028.0","401875.0","5242.0","0.0","0.0","0.0","0.0","0.0","0.0","89169.0","882430.0","40337.0"
"5701","El Paso Electric Co","TX","Investor Owned","1935.0","1197.0","8950875.0","2470154.0","25711.0","11446740.0","7820929.0","3060795.0","23030.0","13281.0","528705.0","11446740.0","829913.0","0.0","63128.8","-7103.2","18113.5","12744.7","916796.8","360740.0","2817575.0","368044.0","403979.0","3961717.0","47510.0","65194.0","1041637.0","48.0","0.0","0.0","0.0","829913.0","7820929.0","415602.0"
"5703","Empire Natural Gas Corporation","NY","Retail Power Marketer","0.0","0.0","0.0","62321.0","-21122.0","41199.0","38561.0","0.0","0.0","0.0","2638.0","41199.0","1684.0","0.0","0.0","0.0","0.0","0.0","1684.0","0.0","0.0","0.0","1540.0","35145.0","569.0","144.0","3416.0","29.0","0.0","0.0","0.0","1684.0","38561.0","598.0"
"5729","Electrical Dist No8 Maricopa","AZ","Political Subdivision","69.0","60.0","0.0","366866.0","0.0","366866.0","346688.0","0.0","0.0","0.0","20178.0","366866.0","18959.0","0.0","0.0","0.0","0.0","0.0","18959.0","0.0","0.0","0.0","0.0","0.0","0.0","18959.0","346688.0","606.0","0.0","0.0","0.0","18959.0","346688.0","606.0"
"5730","City of Elberton","GA","Municipal","31.9","27.5","0.0","136949.0","0.0","136949.0","127040.0","0.0","0.0","0.0","9909.0","136949.0","14105.0","0.0","0.0","0.0","0.0","0.0","14105.0","4576.8","37113.0","3354.0","6880.2","58749.0","1038.0","2648.0","31178.0","3.0","0.0","0.0","0.0","14105.0","127040.0","4395.0"
"5742","Eldridge City Utilities","IA","Municipal","10.5","7.4","38124.0","42947.0","0.0","81071.0","39360.0","38124.0","0.0","0.0","3587.0","81071.0","2977.0","0.0","1116.0","0.0","0.0","113.0","4206.0","1629.0","20523.0","2369.0","605.0","7245.0","253.0","743.0","11592.0","17.0","0.0","0.0","0.0","2977.0","39360.0","2639.0"
"5760","City of Elizabeth City - (NC)","NC","Municipal","66.5","76.7","0.0","317989.0","0.0","317989.0","295048.0","0.0","0.0","0.0","22941.0","317989.0","29244.0","0.0","0.0","0.0","0.0","0.0","29244.0","15849.0","133719.0","10718.0","13395.0","161329.0","1885.0","0.0","0.0","0.0","0.0","0.0","0.0","29244.0","295048.0","12603.0"
"5763","City of Elizabethton - (TN)","TN","Municipal","96.7","136.2","0.0","519860.0","0.0","519860.0","494935.0","0.0","0.0","603.0","24322.0","519860.0","52170.0","0.0","0.0","0.0","0.0","1299.1","53469.1","32809.0","301971.0","22957.0","17213.0","161256.0","3453.0","2148.0","31708.0","2.0","0.0","0.0","0.0","52170.0","494935.0","26412.0"
"5773","City of Elk River","MN","Municipal","64.6","47.0","66.0","320350.0","0.0","320416.0","313953.0","0.0","311.0","0.0","6152.0","320416.0","35320.0","0.0","0.0","0.0","160.0","243.0","35723.0","12442.0","87831.0","9900.0","3835.0","29470.0","1328.0","19043.0","196652.0","220.0","0.0","0.0","0.0","35320.0","313953.0","11448.0"
"5777","City of Elkhorn - (WI)","WI","Municipal","26.2","21.0","0.0","121532.0","0.0","121532.0","117945.0","0.0","37.0","0.0","3550.0","121532.0","12084.0","0.0","0.0","0.0","0.0","113.6","12197.6","3404.0","30238.0","4063.0","2462.0","22319.0","747.0","6218.0","65388.0","66.0","0.0","0.0","0.0","12084.0","117945.0","4876.0"
"5780","Elkhorn Rural Public Pwr Dist","NE","Political Subdivision","121.7","62.8","0.0","297261.0","0.0","297261.0","276383.0","0.0","0.0","0.0","20878.0","297261.0","28828.0","0.0","0.0","0.0","0.0","0.0","28828.0","10324.0","105493.0","5961.0","3335.0","31810.0","763.0","15169.0","139080.0","2915.0","0.0","0.0","0.0","28828.0","276383.0","9639.0"
"5832","Elmhurst Mutual Power & Light Co","WA","Cooperative","36.6","76.5","0.0","290207.0","0.0","290207.0","280203.0","0.0","2463.0","0.0","7541.0","290207.0","19187.0","0.0","0.0","0.0","0.0","411.0","19598.0","16633.0","237584.0","14433.0","2554.0","42619.0","672.0","0.0","0.0","0.0","0.0","0.0","0.0","19187.0","280203.0","15105.0"
"5841","City of Ely - (MN)","MN","Municipal","5.3","8.3","0.0","37300.0","0.0","37300.0","34439.0","0.0","0.0","0.0","2861.0","37300.0","3418.1","0.0","0.0","0.0","0.0","0.0","3418.1","1510.0","15106.0","1680.0","1860.8","18236.0","324.0","47.3","1097.0","20.0","0.0","0.0","0.0","3418.1","34439.0","2024.0"
"5860","Empire District Electric Co","MO","Investor Owned","1075.0","1027.0","5270174.0","1446382.0","0.0","6716556.0","4515535.0","2061474.0","0.0","11102.0","128445.0","6716556.0","518023.3","0.0","52436.3","0.0","9010.6","3241.2","582711.4","238334.6","1745674.0","144718.0","190967.7","1689713.0","26765.0","88721.0","1080148.0","351.0","0.0","0.0","0.0","518023.3","4515535.0","171834.0"
"5862","Empire Electric Assn, Inc","CO","Cooperative","113.1","115.4","19.0","871447.0","0.0","871466.0","859010.0","0.0","0.0","1244.0","11212.0","871466.0","76541.0","0.0","0.0","0.0","0.0","330.6","76871.6","15453.0","98431.0","12621.0","18065.0","168481.0","3412.0","43023.0","592098.0","117.0","0.0","0.0","0.0","76541.0","859010.0","16150.0"
"5880","Energy Coop of New York, Inc","NY","Retail Power Marketer","127.3","108.9","0.0","689642.0","0.0","689642.0","663117.0","0.0","0.0","0.0","26525.0","689642.0","29055.9","0.0","0.0","0.0","0.0","0.0","29055.9","5379.6","109894.0","3681.0","23377.6","545626.0","2310.0","298.7","7597.0","26.0","0.0","0.0","0.0","29055.9","663117.0","6017.0"
"5905","Excelsior Electric Member Corp","GA","Cooperative","91.7","112.5","0.0","396991.0","0.0","396991.0","372254.0","0.0","0.0","0.0","24737.0","396991.0","38750.2","0.0","0.0","289.0","0.0","-65.0","38974.2","31043.5","300791.0","21102.0","5032.5","45380.0","1461.0","2674.2","26083.0","337.0","0.0","0.0","0.0","38750.2","372254.0","22900.0"
"5929","Fairfield Electric Coop, Inc","SC","Cooperative","144.0","161.0","0.0","670413.0","0.0","670413.0","643265.0","0.0","0.0","0.0","27148.0","670413.0","74527.0","0.0","0.0","0.0","0.0","1415.0","75942.0","51793.0","371358.0","27068.0","10241.0","82464.0","1706.0","12493.0","189443.0","16.0","0.0","0.0","0.0","74527.0","643265.0","28790.0"
"5930","Village of Fairport - (NY)","NY","Municipal","75.0","101.0","0.0","426751.0","8781.0","435532.0","424813.0","0.0","0.0","409.0","10310.0","435532.0","20944.1","0.0","0.0","0.0","0.0","114.5","21058.6","12336.2","237741.0","15773.0","5622.9","103013.0","1606.0","2985.0","84059.0","14.0","0.0","0.0","0.0","20944.1","424813.0","17393.0"
"5935","Borough of Ephrata - (PA)","PA","Municipal","27.1","28.2","0.0","142918.0","0.0","142918.0","134588.0","0.0","1811.0","1042.0","5477.0","142918.0","17034.8","0.0","0.0","0.0","0.0","306.8","17341.6","8257.1","62621.0","5820.0","8179.2","66871.0","806.0","598.5","5096.0","16.0","0.0","0.0","0.0","17034.8","134588.0","6642.0"
"5953","Entergy Solutions, Ltd","TX","Retail Power Marketer","0.0","0.0","0.0","13664.0","0.0","13664.0","13664.0","0.0","0.0","0.0","0.0","13664.0","479.3","0.0","0.0","0.0","0.0","0.0","479.3","0.0","0.0","0.0","0.0","0.0","0.0","479.3","13664.0","1.0","0.0","0.0","0.0","479.3","13664.0","1.0"
"5961","Town of Erwin - (TN)","TN","Municipal","39.1","43.3","0.0","217106.0","0.0","217106.0","208634.0","0.0","0.0","293.0","8179.0","217106.0","20470.0","0.0","0.0","0.0","0.0","1073.4","21543.4","9656.0","89091.0","7590.0","6299.0","57285.0","1344.0","4515.0","62258.0","6.0","0.0","0.0","0.0","20470.0","208634.0","8940.0"
"5964","Escambia River Elec Coop, Inc","FL","Cooperative","42.0","50.1","0.0","185276.0","0.0","185276.0","173239.0","0.0","651.0","0.0","11386.0","185276.0","23495.0","0.0","0.0","0.0","0.0","451.0","23946.0","18369.0","135089.0","9689.0","5126.0","38150.0","1323.0","0.0","0.0","0.0","0.0","0.0","0.0","23495.0","173239.0","11012.0"
"5997","Town of Estes Park","CO","Municipal","16.4","23.8","0.0","130165.0","0.0","130165.0","124640.0","0.0","0.0","0.0","5525.0","130165.0","14986.0","0.0","0.0","0.0","0.0","930.0","15916.0","7788.0","58086.0","8149.0","7198.0","66554.0","2397.0","0.0","0.0","0.0","0.0","0.0","0.0","14986.0","124640.0","10546.0"
"5998","City of Estherville - (IA)","IA","Municipal","12.9","9.2","18.0","57622.0","0.0","57640.0","54537.0","0.0","1623.0","0.0","1480.0","57640.0","6430.0","0.0","0.0","0.0","198.0","136.0","6764.0","2598.0","19367.0","2674.0","3155.0","27880.0","596.0","677.0","7290.0","1.0","0.0","0.0","0.0","6430.0","54537.0","3271.0"
"6008","City of Etowah","TN","Municipal","43.3","41.9","0.0","243824.0","0.0","243824.0","239032.0","0.0","0.0","0.0","4792.0","243824.0","19456.0","0.0","0.0","0.0","0.0","625.9","20081.9","6978.0","56238.0","4348.0","3520.0","27790.0","767.0","8958.0","155004.0","2.0","0.0","0.0","0.0","19456.0","239032.0","5117.0"
"6019","City of Eudora - (KS)","KS","Municipal","12.0","8.0","0.0","46500.0","0.0","46500.0","40584.0","0.0","0.0","2029.0","3887.0","46500.0","4837.9","0.0","0.0","0.0","0.0","0.0","4837.9","2862.9","22769.0","2369.0","1370.0","10425.0","146.0","605.0","7390.0","1.0","0.0","0.0","0.0","4837.9","40584.0","2516.0"
"6022","City of Eugene - (OR)","OR","Municipal","394.5","523.6","510030.0","3951963.0","61580.0","4523573.0","2454901.0","1997333.0","0.0","0.0","71339.0","4523573.0","220538.7","0.0","39249.8","0.0","1755.3","7110.2","268654.0","110495.7","986093.0","83081.0","81908.6","913522.0","9772.0","28134.4","555286.0","954.0","0.0","0.0","0.0","220538.7","2454901.0","93807.0"
"6043","City of Evansville","WI","Municipal","14.6","11.3","0.0","67468.0","0.0","67468.0","63659.0","0.0","0.0","0.0","3809.0","67468.0","7668.6","0.0","0.0","0.0","0.0","85.7","7754.3","3504.2","27685.0","3260.0","3239.5","26581.0","655.0","924.9","9393.0","1.0","0.0","0.0","0.0","7668.6","63659.0","3916.0"
"6112","Farmers Electric Coop, Inc - (IA)","IA","Cooperative","23.6","19.1","0.0","125668.0","0.0","125668.0","119937.0","0.0","0.0","161.0","5570.0","125668.0","12626.5","0.0","0.0","0.0","0.0","238.7","12865.2","8553.9","61840.0","4678.0","1363.8","14005.0","105.0","2708.8","44092.0","3.0","0.0","0.0","0.0","12626.5","119937.0","4786.0"
"6132","City of Fairbury","NE","Municipal","19.9","17.9","223.0","92669.0","0.0","92892.0","82784.0","0.0","0.0","0.0","10108.0","92892.0","8422.0","0.0","0.0","0.0","0.0","0.0","8422.0","3536.0","30398.0","2677.0","2724.0","26065.0","564.0","2162.0","26321.0","9.0","0.0","0.0","0.0","8422.0","82784.0","3250.0"
"6138","City of Fairfax - (MN)","MN","Municipal","2.2","3.1","23.0","10611.0","0.0","10634.0","10529.0","0.0","0.0","0.0","105.0","10634.0","984.0","0.0","0.0","0.0","0.0","0.0","984.0","574.5","6351.0","584.0","353.8","3630.0","136.0","55.7","548.0","5.0","0.0","0.0","0.0","984.0","10529.0","725.0"
"6145","City of Fairhope - (AL)","AL","Municipal","39.0","36.6","0.0","174531.0","0.0","174531.0","167499.0","0.0","0.0","0.0","7032.0","174531.0","19487.0","0.0","0.0","0.0","0.0","42.0","19529.0","8977.0","74435.0","5750.0","10510.0","93064.0","1079.0","0.0","0.0","0.0","0.0","0.0","0.0","19487.0","167499.0","6829.0"
"6149","City of Ellensburg - (WA)","WA","Municipal","34.7","47.5","0.0","218715.0","0.0","218715.0","214459.0","0.0","0.0","0.0","4256.0","218715.0","15982.0","0.0","0.0","0.0","0.0","0.0","15982.0","7481.0","84668.0","8136.0","7974.0","122217.0","1488.0","527.0","7574.0","1.0","0.0","0.0","0.0","15982.0","214459.0","9625.0"
"6151","Fairmont Public Utilities Comm","MN","Municipal","28.7","21.6","0.0","151629.0","0.0","151629.0","146088.0","0.0","0.0","0.0","5541.0","151629.0","15370.2","0.0","0.0","0.0","0.0","310.0","15680.2","4428.1","39841.0","4977.0","5997.7","51297.0","845.0","4944.4","54950.0","12.0","0.0","0.0","0.0","15370.2","146088.0","5834.0"
"6168","Farmers Electric Coop - (IA)","IA","Cooperative","2.5","3.5","44.0","17790.0","0.0","17834.0","17136.0","0.0","0.0","0.0","698.0","17834.0","2223.0","0.0","0.0","0.0","0.0","0.0","2223.0","1388.0","11214.0","602.0","835.0","5922.0","26.0","0.0","0.0","0.0","0.0","0.0","0.0","2223.0","17136.0","628.0"
"6169","Fall River Rural Elec Coop Inc","ID","Cooperative","72.0","65.1","39598.0","305099.0","0.0","344697.0","311435.0","11413.0","0.0","2975.0","18874.0","344697.0","29610.0","0.0","725.0","0.0","20.0","247.0","30602.0","18800.0","170967.0","13701.0","10810.0","140468.0","2930.0","0.0","0.0","0.0","0.0","0.0","0.0","29610.0","311435.0","16631.0"
"6173","Fannin County Electric Coop","TX","Cooperative","40.0","54.0","0.0","158895.0","0.0","158895.0","140593.0","0.0","0.0","0.0","18302.0","158895.0","19273.0","0.0","0.0","0.0","0.0","490.0","19763.0","17038.0","120385.0","9633.0","2225.0","20141.0","295.0","10.0","67.0","9.0","0.0","0.0","0.0","19273.0","140593.0","9937.0"
"6175","City of Falls City - (NE)","NE","Municipal","14.0","11.0","0.0","58855.0","0.0","58855.0","53716.0","0.0","0.0","0.0","5139.0","58855.0","4893.0","0.0","0.0","0.0","0.0","0.0","4893.0","2177.0","23642.0","2145.0","2427.0","26745.0","544.0","289.0","3329.0","7.0","0.0","0.0","0.0","4893.0","53716.0","2696.0"
"6181","Farmers Electric Coop, Inc - (MO)","MO","Cooperative","62.2","63.8","0.0","297055.0","0.0","297055.0","278861.0","2849.0","0.0","0.0","15345.0","297055.0","28632.6","0.0","241.6","0.0","0.0","-352.0","28522.2","18949.9","151677.0","11955.0","3994.9","38647.0","1131.0","5687.8","88537.0","9.0","0.0","0.0","0.0","28632.6","278861.0","13095.0"
"6182","Farmers Electric Coop, Inc - (TX)","TX","Cooperative","292.2","322.7","0.0","1151614.0","0.0","1151614.0","1095118.0","0.0","55244.0","1252.0","0.0","1151614.0","127543.0","0.0","0.0","0.0","1275.0","2088.0","130906.0","98934.0","795979.0","51797.0","19524.0","166104.0","9059.0","9085.0","133035.0","12.0","0.0","0.0","0.0","127543.0","1095118.0","60868.0"
"6183","Fayette Electric Coop, Inc","TX","Cooperative","62.6","69.2","0.0","307540.0","0.0","307540.0","280679.0","0.0","19.0","0.0","26842.0","307540.0","31637.0","0.0","0.0","0.0","0.0","428.0","32065.0","17410.0","139029.0","12660.0","7469.0","63302.0","1840.0","6758.0","78348.0","13.0","0.0","0.0","0.0","31637.0","280679.0","14513.0"
"6194","Farmers Rural Electric Coop Corp - (KY)","KY","Cooperative","110.8","126.7","0.0","511691.0","0.0","511691.0","486575.0","0.0","0.0","32.0","25084.0","511691.0","47244.0","0.0","0.0","0.0","0.0","804.0","48048.0","31168.0","292437.0","23448.0","7370.0","81119.0","1854.0","8706.0","113019.0","6.0","0.0","0.0","0.0","47244.0","486575.0","25308.0"
"6198","Farmers Electric Coop, Inc - (NM)","NM","Cooperative","69.0","52.6","0.0","365950.0","0.0","365950.0","340890.0","0.0","0.0","0.0","25060.0","365950.0","35128.0","0.0","0.0","0.0","0.0","60.0","35188.0","10383.3","85287.0","9819.0","11291.2","103907.0","1770.0","13453.5","151696.0","1516.0","0.0","0.0","0.0","35128.0","340890.0","13105.0"
"6204","City of Farmington - (NM)","NM","Municipal","193.0","136.0","808528.0","259029.0","29655.0","1097212.0","997340.0","62923.0","0.0","0.0","36949.0","1097212.0","85008.4","0.0","1082.0","90058.0","4901.0","608.0","181657.4","26691.6","259886.0","31953.0","36375.5","382968.0","9940.0","21941.3","354486.0","7.0","0.0","0.0","0.0","85008.4","997340.0","41900.0"
"6205","City of Farmington - (MO)","MO","Municipal","47.7","44.7","80.0","231749.0","0.0","231829.0","218726.0","0.0","0.0","0.0","13103.0","231829.0","20880.5","0.0","0.0","64.4","0.0","595.5","21540.4","7829.2","78407.0","6269.0","3694.1","37209.0","978.0","9357.2","103110.0","154.0","0.0","0.0","0.0","20880.5","218726.0","7401.0"
"6207","Farmington River Power Company","CT","Investor Owned","9.0","9.0","20352.0","0.0","0.0","20352.0","20352.0","0.0","0.0","0.0","0.0","20352.0","1294.7","0.0","0.0","0.0","0.0","0.0","1294.7","0.0","0.0","0.0","0.0","0.0","0.0","1294.7","20352.0","1.0","0.0","0.0","0.0","1294.7","20352.0","1.0"
"6234","City of Fayetteville","TN","Municipal","98.7","96.9","0.0","454268.0","0.0","454268.0","431447.0","0.0","0.0","0.0","22821.0","454268.0","44867.0","0.0","0.0","0.0","0.0","1281.7","46148.7","25333.0","227164.0","15995.0","14174.0","119719.0","2456.0","5360.0","84564.0","4.0","0.0","0.0","0.0","44867.0","431447.0","18455.0"
"6235","Fayetteville Public Works Commission","NC","Municipal","422.5","446.0","0.0","2083848.0","-36460.0","2047388.0","1967324.0","0.0","0.0","0.0","80064.0","2047388.0","202777.0","0.0","0.0","0.0","0.0","26320.3","229097.3","96523.0","854820.0","72797.0","77240.0","725429.0","9007.0","29014.0","387075.0","27.0","0.0","0.0","0.0","202777.0","1967324.0","81831.0"
"6258","Federated Rural Electric Assn","MN","Cooperative","60.6","71.5","6749.0","445234.0","0.0","451983.0","427493.0","9159.0","0.0","277.0","15054.0","451983.0","37501.0","0.0","871.1","0.0","0.0","1070.5","39442.6","9279.9","86562.0","5638.0","7621.6","76160.0","1157.0","20599.5","264771.0","8.0","0.0","0.0","0.0","37501.0","427493.0","6803.0"
"6272","FEM Electric Assn, Inc","SD","Cooperative","32.6","23.9","0.0","162285.0","0.0","162285.0","156840.0","0.0","0.0","440.0","5005.0","162285.0","14742.1","0.0","0.0","0.0","0.0","0.0","14742.1","4109.1","32569.0","1853.0","3976.0","39766.0","256.0","6657.0","84505.0","5.0","0.0","0.0","0.0","14742.1","156840.0","2114.0"
"6297","PUD No 1 of Ferry County","WA","Political Subdivision","10.6","22.8","0.0","92839.0","0.0","92839.0","89782.0","0.0","0.0","292.0","2765.0","92839.0","7642.9","0.0","0.0","0.0","0.0","69.1","7712.0","3911.5","38357.0","2974.0","1132.9","10964.0","500.0","2598.5","40461.0","24.0","0.0","0.0","0.0","7642.9","89782.0","3498.0"
"6335","Firelands Electric Coop, Inc","OH","Cooperative","30.0","32.0","0.0","150347.0","0.0","150347.0","140610.0","0.0","0.0","134.0","9603.0","150347.0","18264.0","0.0","0.0","0.0","0.0","352.0","18616.0","15603.0","117537.0","8559.0","2661.0","23073.0","522.0","0.0","0.0","0.0","0.0","0.0","0.0","18264.0","140610.0","9081.0"
"6342","First Electric Coop Corp","AR","Cooperative","410.9","430.4","0.0","1924792.0","0.0","1924792.0","1828715.0","0.0","0.0","2442.0","93635.0","1924792.0","178010.5","0.0","0.0","0.0","0.0","3029.9","181040.4","125725.1","1157733.0","85983.0","22312.7","202493.0","5845.0","29972.7","468489.0","1529.0","0.0","0.0","0.0","178010.5","1828715.0","93357.0"
"6369","Fishers Island Utility Co Inc","NY","Investor Owned","1.9","1.1","0.0","6727.0","0.0","6727.0","5968.0","0.0","0.0","18.0","741.0","6727.0","2142.4","0.0","0.0","0.0","0.0","0.0","2142.4","1652.0","4118.0","653.0","490.4","1850.0","108.0","0.0","0.0","0.0","0.0","0.0","0.0","2142.4","5968.0","761.0"
"6374","Fitchburg Gas and Electric Light Company","NH","Investor Owned","83.0","78.0","0.0","193020.0","5.0","193025.0","163357.0","17007.0","0.0","805.0","11856.0","193025.0","35180.4","21034.5","472.5","0.0","1235.3","4468.9","62391.6","31877.800000000003","163659.0","25299.0","15270.5","108817.0","4301.0","9066.6","162934.0","28.0","0.0","0.0","0.0","56214.9","435410.0","29628.0"
"6380","Fitzgerald Wtr Lgt & Bond Comm","GA","Municipal","37.4","39.6","0.0","189665.0","0.0","189665.0","174766.0","0.0","4598.0","0.0","10301.0","189665.0","21019.0","0.0","0.0","0.0","0.0","613.0","21632.0","9460.0","72702.0","5074.0","3987.0","28619.0","498.0","7572.0","73445.0","69.0","0.0","0.0","0.0","21019.0","174766.0","5641.0"
"6390","City of Flandreau","SD","Municipal","5.7","5.1","0.0","29263.0","0.0","29263.0","26443.0","0.0","0.0","5.0","2815.0","29263.0","2606.3","0.0","0.0","0.0","0.0","61.9","2668.2","1095.3","10013.0","1061.0","1484.9","16196.0","287.0","26.1","234.0","4.0","0.0","0.0","0.0","2606.3","26443.0","1352.0"
"6395","Flathead Electric Coop Inc","MT","Cooperative","221.1","335.7","11226.0","1561413.0","0.0","1572639.0","1494682.0","0.0","0.0","2124.0","75833.0","1572639.0","118316.4","0.0","0.0","0.0","0.0","1153.7","119470.1","71913.3","767704.0","54511.0","32715.4","468185.0","11142.0","13687.7","258793.0","92.0","0.0","0.0","0.0","118316.4","1494682.0","65745.0"
"6411","Flint Electric Membership Corp","GA","Cooperative","387.0","441.7","0.0","1758512.0","0.0","1758512.0","1691329.0","0.0","0.0","3840.0","63343.0","1758512.0","204888.7","0.0","0.0","0.0","0.0","3924.5","208813.2","138538.1","1078386.0","73923.0","55134.6","487610.0","10722.0","11216.0","125333.0","654.0","0.0","0.0","0.0","204888.7","1691329.0","85299.0"
"6417","City of Flora - (IL)","IL","Municipal","26.6","17.8","149.0","123028.0","0.0","123177.0","114607.0","0.0","1350.0","0.0","7220.0","123177.0","13039.0","0.0","0.0","0.0","0.0","18.0","13057.0","3204.0","21666.0","2370.0","2884.0","22914.0","428.0","6951.0","70027.0","10.0","0.0","0.0","0.0","13039.0","114607.0","2808.0"
"6422","City of Florence - (AL)","AL","Municipal","273.2","277.5","0.0","1227170.0","0.0","1227170.0","1144641.0","0.0","0.0","100.0","82429.0","1227170.0","114838.9","0.0","0.0","0.0","0.0","2918.7","117757.6","60348.0","590857.0","40439.0","42962.2","397515.0","8159.0","11528.7","156269.0","760.0","0.0","0.0","0.0","114838.9","1144641.0","49358.0"
"6424","Florence Utility Comm","WI","Municipal","3.3","3.4","0.0","17392.0","0.0","17392.0","16324.0","0.0","0.0","0.0","1068.0","17392.0","2308.7","0.0","0.0","0.0","0.0","58.9","2367.6","1026.6","7001.0","1314.0","1282.1","9323.0","195.0","0.0","0.0","0.0","0.0","0.0","0.0","2308.7","16324.0","1509.0"
"6427","City of Floresville","TX","Municipal","81.9","87.9","0.0","348359.0","0.0","348359.0","325967.0","0.0","95.0","387.0","21910.0","348359.0","38816.1","0.0","0.0","0.0","0.0","0.0","38816.1","23893.8","205737.0","13144.0","14922.3","120230.0","2568.0","0.0","0.0","0.0","0.0","0.0","0.0","38816.1","325967.0","15712.0"
"6431","Flint Hills Rural E C A, Inc","KS","Cooperative","19.5","16.1","62.0","80583.0","152.0","80797.0","75842.0","0.0","0.0","25.0","4930.0","80797.0","11289.0","0.0","0.0","0.0","0.0","259.0","11548.0","8272.0","51805.0","5881.0","2949.0","23634.0","733.0","68.0","403.0","32.0","0.0","0.0","0.0","11289.0","75842.0","6646.0"
"6442","Fleming-Mason Energy Coop Inc","KY","Cooperative","133.6","161.3","0.0","1003316.0","0.0","1003316.0","977646.0","0.0","542.0","0.0","25128.0","1003316.0","70144.0","0.0","0.0","0.0","0.0","1109.8","71253.8","28686.0","268823.0","22613.0","11212.0","129305.0","1737.0","30246.0","579518.0","5.0","0.0","0.0","0.0","70144.0","977646.0","24355.0"
"6443","Florida Keys El Coop Assn, Inc","FL","Cooperative","163.0","110.0","133.0","751815.0","0.0","751948.0","694334.0","0.0","1928.0","0.0","55686.0","751948.0","76089.0","0.0","0.0","0.0","0.0","2588.0","78677.0","44361.0","402976.0","27034.0","11639.0","102380.0","5264.0","20089.0","188978.0","494.0","0.0","0.0","0.0","76089.0","694334.0","32792.0"
"6452","Florida Power & Light Co","FL","Investor Owned","23373.0","18126.0","119906645.0","3815728.0","262839.0","123985212.0","108513594.0","8975027.0","0.0","126388.0","6370203.0","123985212.0","10969756.0","0.0","471563.0","-5006.0","0.0","163363.0","11599676.0","6496770.0","57997255.0","4338224.0","4265872.0","47482114.0","551967.0","199980.0","2951467.0","11654.0","7134.0","82758.0","1.0","10969756.0","108513594.0","4901846.0"
"6455","Duke Energy Florida, LLC","FL","Investor Owned","9296.0","7539.0","36107645.0","6628449.0","218765.0","42954859.0","38024012.0","2266281.0","0.0","166031.0","2498535.0","42954859.0","4098421.8","0.0","149656.6","0.0","105068.4","159537.2","4512684.0","2451768.8","19790794.0","1573260.0","1395369.2","15113043.0","199930.0","251283.8","3120175.0","2137.0","0.0","0.0","0.0","4098421.8","38024012.0","1775327.0"
"6457","Florida Public Utilities Co","FL","Investor Owned","140.2","120.1","0.0","656375.0","0.0","656375.0","627135.0","0.0","0.0","478.0","28762.0","656375.0","88807.9","0.0","0.0","0.0","0.0","-183.0","88624.9","44091.3","291500.0","24574.0","41155.6","308255.0","7462.0","3561.0","27380.0","2.0","0.0","0.0","0.0","88807.9","627135.0","32038.0"
"6458","First Energy Solutions Corp.","OH","Retail Power Marketer","0.0","0.0","0.0","24844743.0","0.0","24844743.0","24844743.0","0.0","0.0","0.0","0.0","24844743.0","1279653.6","0.0","0.0","0.0","0.0","0.0","1279653.6","469109.8","8223854.0","844232.0","339680.4","6147064.0","71096.0","470794.0","10472574.0","469.0","69.4","1251.0","1.0","1279653.6","24844743.0","915798.0"
"6491","Foley Board of Utilities","AL","Municipal","237.9","257.8","0.0","1051352.0","0.0","1051352.0","1017565.0","0.0","0.0","0.0","33787.0","1051352.0","118025.0","0.0","0.0","0.0","0.0","3222.0","121247.0","67222.0","556197.0","37165.0","47829.0","424334.0","9615.0","2974.0","37034.0","4.0","0.0","0.0","0.0","118025.0","1017565.0","46784.0"
"6579","City of Forest City- (IA)","IA","Municipal","16.6","11.4","219.0","63009.0","0.0","63228.0","60743.0","0.0","0.0","0.0","2485.0","63228.0","5394.0","0.0","0.0","0.0","0.0","425.1","5819.1","1262.7","13017.0","1784.0","2098.8","24007.0","401.0","2032.5","23719.0","1.0","0.0","0.0","0.0","5394.0","60743.0","2186.0"
"6580","Town of Forest City","NC","Municipal","25.5","21.9","96.0","118626.0","0.0","118722.0","110126.0","0.0","0.0","0.0","8596.0","118722.0","11430.0","0.0","0.0","0.0","0.0","0.0","11430.0","4145.0","32986.0","3188.0","4825.0","50469.0","982.0","2460.0","26671.0","19.0","0.0","0.0","0.0","11430.0","110126.0","4189.0"
"6582","City of Forest Grove","OR","Municipal","39.6","57.7","0.0","254434.0","0.0","254434.0","254189.0","0.0","0.0","0.0","245.0","254434.0","18061.0","0.0","0.0","0.0","0.0","643.0","18704.0","9584.0","123076.0","8798.0","1781.0","23649.0","844.0","6696.0","107464.0","141.0","0.0","0.0","0.0","18061.0","254189.0","9783.0"
"6604","City of Fort Collins - (CO)","CO","Municipal","310.9","238.0","0.0","1532219.0","0.0","1532219.0","1499035.0","0.0","8167.0","0.0","25017.0","1532219.0","128730.2","0.0","0.0","0.0","0.0","8375.6","137105.8","50959.3","485354.0","63760.0","43738.7","506730.0","8750.0","34032.2","506951.0","13.0","0.0","0.0","0.0","128730.2","1499035.0","72523.0"
"6608","Fort Loudoun Electric Coop","TN","Cooperative","133.4","202.2","0.0","611000.0","0.0","611000.0","573730.0","0.0","0.0","660.0","36611.0","611000.0","63501.0","0.0","0.0","0.0","0.0","2377.7","65878.7","46316.0","419819.0","27763.0","15350.0","128176.0","4350.0","1835.0","25735.0","3.0","0.0","0.0","0.0","63501.0","573730.0","32116.0"
"6610","City of Fort Morgan","CO","Municipal","48.0","39.0","0.0","250150.0","0.0","250150.0","250150.0","0.0","0.0","0.0","0.0","250150.0","22693.0","0.0","0.0","0.0","0.0","460.0","23153.0","4532.0","55221.0","4988.0","11906.0","122683.0","1050.0","6255.0","72246.0","1.0","0.0","0.0","0.0","22693.0","250150.0","6039.0"
"6611","Fort Belknap Electric Coop Inc","TX","Cooperative","24.0","21.0","0.0","122373.0","0.0","122373.0","122373.0","0.0","0.0","0.0","0.0","122373.0","10570.0","0.0","0.0","0.0","0.0","70.0","10640.0","4717.0","48509.0","4347.0","5853.0","73864.0","1772.0","0.0","0.0","0.0","0.0","0.0","0.0","10570.0","122373.0","6119.0"
"6612","Fort Payne Improvement Authority","AL","Municipal","63.0","60.7","0.0","316787.0","0.0","316787.0","300610.0","0.0","0.0","271.0","15906.0","316787.0","28844.0","0.0","0.0","0.0","0.0","636.9","29480.9","9359.0","87608.0","6506.0","14357.0","140086.0","1977.0","5128.0","72916.0","7.0","0.0","0.0","0.0","28844.0","300610.0","8489.0"
"6615","City of Fort Pierre - (SD)","SD","Municipal","6.0","5.6","47.0","26763.0","0.0","26810.0","26653.0","0.0","0.0","157.0","0.0","26810.0","2375.0","0.0","0.0","0.0","286.0","0.0","2661.0","1368.0","12372.0","1038.0","1007.0","14281.0","296.0","0.0","0.0","0.0","0.0","0.0","0.0","2375.0","26653.0","1334.0"
"6616","Fort Pierce Utilities Authority","FL","Municipal","112.0","89.0","0.0","573053.0","0.0","573053.0","555768.0","0.0","0.0","794.0","16491.0","573053.0","65001.0","0.0","0.0","0.0","0.0","1062.0","66063.0","28626.0","237125.0","23180.0","36375.0","318643.0","5077.0","0.0","0.0","0.0","0.0","0.0","0.0","65001.0","555768.0","28257.0"
"6617","Fort Valley Utility Comm","GA","Municipal","25.8","19.3","0.0","108338.0","13268.0","121606.0","115998.0","0.0","1856.0","0.0","3752.0","121606.0","10377.0","0.0","0.0","0.0","0.0","1108.7","11485.7","4233.6","42575.0","3933.0","4359.3","50609.0","678.0","1784.1","22814.0","12.0","0.0","0.0","0.0","10377.0","115998.0","4623.0"
"6638","City of Fountain","CO","Municipal","56.3","41.6","0.0","238270.0","0.0","238270.0","218116.0","0.0","0.0","0.0","20154.0","238270.0","21415.0","0.0","0.0","0.0","0.0","0.0","21415.0","14656.0","141490.0","16352.0","6759.0","76626.0","1012.0","0.0","0.0","0.0","0.0","0.0","0.0","21415.0","218116.0","17364.0"
"6640","Four County Elec Member Corp","NC","Cooperative","186.8","206.3","0.0","945074.0","0.0","945074.0","891998.0","0.0","0.0","0.0","53076.0","945074.0","89475.5","0.0","0.0","0.0","0.0","1164.0","90639.5","54902.8","426967.0","29454.0","19117.0","213178.0","3630.0","15455.7","251853.0","7.0","0.0","0.0","0.0","89475.5","891998.0","33091.0"
"6641","4-County Electric Power Assn","MS","Cooperative","218.7","245.6","0.0","1073837.0","0.0","1073837.0","1022634.0","0.0","0.0","1208.0","49994.0","1073837.0","114457.0","0.0","0.0","0.0","0.0","3733.4","118190.4","63582.0","539587.0","38974.0","40138.0","309491.0","9262.0","10737.0","173556.0","7.0","0.0","0.0","0.0","114457.0","1022634.0","48243.0"
"6707","City of Frankfort - (IN)","IN","Municipal","64.0","54.3","0.0","375272.0","0.0","375272.0","368047.0","0.0","0.0","0.0","7225.0","375272.0","31353.0","0.0","0.0","0.0","0.0","0.0","31353.0","7739.0","73903.0","7657.0","5803.0","54339.0","1524.0","17811.0","239805.0","59.0","0.0","0.0","0.0","31353.0","368047.0","9240.0"
"6708","City of Frankfort - (KY)","KY","Municipal","135.4","118.1","0.0","715972.0","0.0","715972.0","667030.0","25940.0","0.0","0.0","23002.0","715972.0","61188.7","0.0","885.6","0.0","0.0","268.4","62342.7","20282.4","198546.0","16258.0","11366.2","114664.0","5048.0","29540.1","353820.0","288.0","0.0","0.0","0.0","61188.7","667030.0","21594.0"
"6709","Easley Combined Utility System","SC","Municipal","72.0","59.8","30.0","301672.0","0.0","301702.0","286355.0","0.0","0.0","0.0","15347.0","301702.0","35092.0","0.0","0.0","0.0","0.0","0.0","35092.0","19395.0","151927.0","12378.0","15697.0","134428.0","2152.0","0.0","0.0","0.0","0.0","0.0","0.0","35092.0","286355.0","14530.0"
"6710","Town of Edenton - (NC)","NC","Municipal","22.8","22.2","0.0","101339.0","0.0","101339.0","95379.0","0.0","0.0","0.0","5960.0","101339.0","10780.0","0.0","0.0","0.0","0.0","188.0","10968.0","4755.0","39104.0","3356.0","3969.0","32811.0","753.0","2056.0","23464.0","24.0","0.0","0.0","0.0","10780.0","95379.0","4133.0"
"6715","City of Franklin - (VA)","VA","Municipal","24.1","40.1","34.0","137697.0","0.0","137731.0","128191.0","0.0","0.0","0.0","9540.0","137731.0","14504.0","0.0","0.0","0.0","0.0","114.0","14618.0","8135.0","66665.0","4605.0","6369.0","61526.0","832.0","0.0","0.0","0.0","0.0","0.0","0.0","14504.0","128191.0","5437.0"
"6716","PUD No 1 of Franklin County","WA","Political Subdivision","226.5","202.1","0.0","1402095.0","0.0","1402095.0","1051558.0","270322.0","0.0","2503.0","77712.0","1402095.0","80670.0","0.0","6856.0","0.0","0.0","521.0","88047.0","35242.0","380711.0","24407.0","27800.0","387498.0","1874.0","17628.0","283349.0","308.0","0.0","0.0","0.0","80670.0","1051558.0","26589.0"
"6717","Franklin Electric Coop - (AL)","AL","Cooperative","48.3","46.9","0.0","221701.0","0.0","221701.0","209840.0","0.0","0.0","109.0","11751.0","221701.0","24245.0","0.0","0.0","0.0","0.0","644.8","24889.8","8728.0","71920.0","5879.0","12919.0","99701.0","1877.0","2598.0","38219.0","3.0","0.0","0.0","0.0","24245.0","209840.0","7759.0"
"6718","City of Franklin - (KY)","KY","Municipal","40.1","30.3","0.0","196120.0","0.0","196120.0","190841.0","0.0","0.0","222.0","5056.0","196120.0","16777.0","0.0","0.0","0.0","0.0","303.2","17080.2","5316.0","47715.0","3869.0","5105.0","45547.0","1116.0","6356.0","97579.0","4.0","0.0","0.0","0.0","16777.0","190841.0","4989.0"
"6722","Franklin Rural Electric Coop - (IA)","IA","Cooperative","10.9","14.1","178.0","64121.0","0.0","64299.0","61497.0","0.0","0.0","112.0","2690.0","64299.0","7274.5","0.0","0.0","0.0","0.0","14.9","7289.4","3756.9","29002.0","1457.0","2748.6","23878.0","467.0","769.0","8617.0","3.0","0.0","0.0","0.0","7274.5","61497.0","1927.0"
"6752","Town of Frederick - (CO)","CO","Municipal","8.9","3.8","0.0","30969.0","0.0","30969.0","28571.0","0.0","0.0","0.0","2398.0","30969.0","3379.0","0.0","0.0","94815.0","0.0","0.0","98194.0","2341.0","18802.0","2175.0","424.0","4394.0","153.0","614.0","5375.0","38.0","0.0","0.0","0.0","3379.0","28571.0","2366.0"
"6758","City of Fredericksburg - (TX)","TX","Municipal","35.0","28.0","0.0","141368.0","0.0","141368.0","132085.0","0.0","0.0","0.0","9283.0","141368.0","11225.0","0.0","0.0","0.0","0.0","0.0","11225.0","4593.0","51454.0","4520.0","6632.0","80631.0","1132.0","0.0","0.0","0.0","0.0","0.0","0.0","11225.0","132085.0","5652.0"
"6775","Village of Freeport - (NY)","NY","Municipal","58.1","47.9","31785.0","261412.0","0.0","293197.0","249507.0","33282.0","0.0","0.0","10408.0","293197.0","30734.0","0.0","865.0","0.0","0.0","2475.0","34074.0","14533.0","116318.0","12928.0","16201.0","133189.0","1683.0","0.0","0.0","0.0","0.0","0.0","0.0","30734.0","249507.0","14611.0"
"6779","City of Fremont - (NE)","NE","Municipal","94.9","69.9","454789.0","80547.0","0.0","535336.0","412035.0","102741.0","0.0","790.0","19770.0","535336.0","35918.0","0.0","2563.0","0.0","0.0","0.0","38481.0","13710.0","139182.0","12474.0","4563.0","49826.0","2430.0","17645.0","223027.0","545.0","0.0","0.0","0.0","35918.0","412035.0","15449.0"
"6782","Freeborn-Mower Coop Services","MN","Cooperative","99.6","83.9","0.0","523234.0","0.0","523234.0","513534.0","0.0","0.0","522.0","9178.0","523234.0","52117.0","0.0","0.0","0.0","0.0","1193.0","53310.0","23922.0","192165.0","17739.0","22281.0","244442.0","3132.0","5914.0","76927.0","12.0","0.0","0.0","0.0","52117.0","513534.0","20883.0"
"6784","French Broad Elec Member Corp","NC","Cooperative","91.5","116.4","9218.0","538096.0","0.0","547314.0","502645.0","0.0","0.0","678.0","43991.0","547314.0","58217.6","0.0","0.0","0.0","0.0","3507.5","61725.1","39827.8","298671.0","34781.0","11083.900000000001","101989.0","3201.0","7305.9","101985.0","5.0","0.0","0.0","0.0","58217.6","502645.0","37987.0"
"6803","Town of Front Royal","VA","Municipal","34.5","43.7","0.0","182545.0","0.0","182545.0","161906.0","0.0","0.0","8529.0","12110.0","182545.0","16594.0","0.0","0.0","0.0","0.0","0.0","16594.0","9302.0","85081.0","6675.0","7292.0","76825.0","997.0","0.0","0.0","0.0","0.0","0.0","0.0","16594.0","161906.0","7672.0"
"6804","Frontier Power Company","OH","Cooperative","23.6","24.5","0.0","118105.0","0.0","118105.0","109979.0","0.0","0.0","0.0","8126.0","118105.0","15194.0","0.0","0.0","0.0","0.0","196.0","15390.0","12868.0","93170.0","8141.0","2326.0","16809.0","882.0","0.0","0.0","0.0","0.0","0.0","0.0","15194.0","109979.0","9023.0"
"6839","City of Fulton - (MO)","MO","Municipal","35.0","25.0","256.0","159559.0","-7645.0","152170.0","147849.0","0.0","0.0","0.0","4321.0","152170.0","14258.0","0.0","0.0","0.0","0.0","0.0","14258.0","5229.0","51284.0","4656.0","4074.0","39155.0","898.0","4955.0","57410.0","58.0","0.0","0.0","0.0","14258.0","147849.0","5612.0"
"6840","City of Fulton - (KY)","KY","Municipal","11.3","8.7","0.0","53415.0","0.0","53415.0","52302.0","0.0","0.0","91.0","1022.0","53415.0","5278.0","0.0","0.0","0.0","0.0","86.9","5364.9","1620.0","13847.0","1235.0","2277.0","20851.0","391.0","1381.0","17604.0","2.0","0.0","0.0","0.0","5278.0","52302.0","1627.0"
"6894","City of Gaffney - (SC)","SC","Municipal","47.7","41.6","0.0","240514.0","0.0","240514.0","218469.0","0.0","0.0","15681.0","6364.0","240514.0","23343.0","0.0","0.0","0.0","0.0","0.0","23343.0","7723.0","69281.0","6074.0","11666.0","101544.0","1337.0","3954.0","47644.0","19.0","0.0","0.0","0.0","23343.0","218469.0","7430.0"
"6907","City of Greendale","IN","Municipal","18.6","15.7","0.0","116242.0","0.0","116242.0","112332.0","0.0","0.0","0.0","3910.0","116242.0","9622.0","0.0","0.0","0.0","0.0","0.0","9622.0","2315.0","20785.0","1925.0","1627.0","19145.0","248.0","5680.0","72402.0","12.0","0.0","0.0","0.0","9622.0","112332.0","2185.0"
"6909","Gainesville Regional Utilities","FL","Municipal","418.0","333.0","1406138.0","656043.0","0.0","2062181.0","1773622.0","251344.0","0.0","0.0","37215.0","2062181.0","249459.2","0.0","12780.9","0.0","337.7","15077.2","277655.0","109709.0","806074.0","86100.0","120622.2","799826.0","11132.0","19128.0","167722.0","13.0","0.0","0.0","0.0","249459.2","1773622.0","97245.0"
"6914","City of Galion","OH","Municipal","22.6","18.5","0.0","110582.0","0.0","110582.0","104457.0","0.0","1584.0","0.0","4541.0","110582.0","12370.9","0.0","0.0","0.0","0.0","0.0","12370.9","5398.8","42568.0","5368.0","1523.7","13621.0","517.0","5448.4","48268.0","71.0","0.0","0.0","0.0","12370.9","104457.0","5956.0"
"6923","City of Gallatin - (TN)","TN","Municipal","168.3","144.7","0.0","833261.0","0.0","833261.0","798116.0","0.0","0.0","340.0","34806.0","833261.0","67598.0","0.0","0.0","0.0","0.0","818.2","68416.2","21099.0","213415.0","15669.0","25866.0","277785.0","2914.0","20633.0","306916.0","11.0","0.0","0.0","0.0","67598.0","798116.0","18595.0"
"6930","City of Gallup - (NM)","NM","Municipal","39.2","34.8","0.0","214254.0","-8991.0","205263.0","200563.0","0.0","0.0","0.0","4700.0","205263.0","22734.3","0.0","0.0","0.0","0.0","0.0","22734.3","5677.6","47842.0","8527.0","16936.2","150914.0","2006.0","120.5","1807.0","1.0","0.0","0.0","0.0","22734.3","200563.0","10534.0"
"6941","City of Garden City","KS","Municipal","68.5","29.6","0.0","289832.0","0.0","289832.0","289832.0","0.0","0.0","0.0","0.0","289832.0","29141.0","0.0","0.0","0.0","0.0","0.0","29141.0","10908.6","94782.0","10162.0","8100.5","68190.0","1060.0","10131.9","126860.0","416.0","0.0","0.0","0.0","29141.0","289832.0","11638.0"
"6949","City of Gardner - (KS)","KS","Municipal","38.1","26.6","203.0","144632.0","0.0","144835.0","142543.0","0.0","0.0","0.0","2292.0","144835.0","14589.0","0.0","0.0","0.0","0.0","0.0","14589.0","9187.0","81551.0","8081.0","4899.0","54602.0","517.0","503.0","6390.0","4.0","0.0","0.0","0.0","14589.0","142543.0","8602.0"
"6950","Garland Light & Power Company","WY","Cooperative","6.0","6.0","0.0","28209.0","0.0","28209.0","26340.0","0.0","0.0","471.0","1398.0","28209.0","4111.0","0.0","0.0","0.0","0.0","26.0","4137.0","3263.0","21307.0","1900.0","423.0","2683.0","41.0","425.0","2350.0","91.0","0.0","0.0","0.0","4111.0","26340.0","2032.0"
"6957","Garkane Energy Coop, Inc","UT","Cooperative","44.9","55.7","27463.0","232349.0","0.0","259812.0","241504.0","0.0","0.0","337.0","17971.0","259812.0","23817.3","0.0","0.0","0.0","574.0","303.8","24695.1","12345.7","116466.0","11053.0","9960.900000000001","103074.0","2384.0","1510.7","21964.0","1.0","0.0","0.0","0.0","23817.3","241504.0","13438.0"
"6958","City of Garland - (TX)","TX","Municipal","441.0","385.0","23718.0","3940531.0","-22476.0","3941773.0","1887188.0","1946483.0","0.0","0.0","108102.0","3941773.0","172300.0","0.0","76475.0","0.0","27403.0","4276.0","280454.0","88013.0","854422.0","63443.0","72640.0","792107.0","6480.0","11647.0","240659.0","6.0","0.0","0.0","0.0","172300.0","1887188.0","69929.0"
"6965","City of Garnett - (KS)","KS","Municipal","8.7","2.0","23.0","32469.0","-2727.0","29765.0","25604.0","0.0","1957.0","0.0","2204.0","29765.0","2759.5","0.0","0.0","0.0","0.0","0.0","2759.5","1519.6","13386.0","1521.0","283.3","2531.0","258.0","956.6","9687.0","43.0","0.0","0.0","0.0","2759.5","25604.0","1822.0"
"7024","Gascosage Electric Coop","MO","Cooperative","41.4","52.3","0.0","193377.0","0.0","193377.0","184756.0","0.0","225.0","0.0","8396.0","193377.0","16942.0","0.0","0.0","0.0","0.0","479.0","17421.0","12405.0","127006.0","8941.0","2454.0","25344.0","933.0","2083.0","32406.0","2.0","0.0","0.0","0.0","16942.0","184756.0","9876.0"
"7027","City of Gastonia - (NC)","NC","Municipal","160.5","112.0","0.0","730286.0","0.0","730286.0","659886.0","0.0","0.0","35599.0","34801.0","730286.0","74765.5","0.0","0.0","0.0","7.0","0.0","74772.5","32219.0","249573.0","24059.0","34165.8","299989.0","3454.0","8380.7","110324.0","64.0","0.0","0.0","0.0","74765.5","659886.0","27577.0"
"7090","GreyStone Power Corporation","GA","Cooperative","659.0","537.0","0.0","2741915.0","0.0","2741915.0","2666125.0","0.0","0.0","3249.0","72541.0","2741915.0","253757.0","0.0","0.0","0.0","0.0","7598.0","261355.0","163093.0","1636365.0","118255.0","63431.0","625210.0","11966.0","27233.0","404550.0","74.0","0.0","0.0","0.0","253757.0","2666125.0","130295.0"
"7096","City of Geneva- (IL)","IL","Municipal","81.7","66.3","3498.0","400976.0","-13409.0","391065.0","386897.0","0.0","0.0","0.0","4168.0","391065.0","40048.0","0.0","0.0","0.0","0.0","1149.5","41197.5","9971.0","77808.0","9285.0","14900.0","138216.0","1626.0","15177.0","170873.0","41.0","0.0","0.0","0.0","40048.0","386897.0","10952.0"
"7128","City of Georgetown - (SC)","SC","Municipal","27.0","26.5","659.0","136224.0","0.0","136883.0","125742.0","0.0","1471.0","0.0","9670.0","136883.0","10754.0","0.0","0.0","0.0","0.0","0.0","10754.0","4285.0","48940.0","3880.0","6469.0","76802.0","1147.0","0.0","0.0","0.0","0.0","0.0","0.0","10754.0","125742.0","5027.0"
"7129","City of Georgetown - (TX)","TX","Municipal","145.1","108.9","0.0","648988.0","-3000.0","645988.0","621464.0","0.0","0.0","0.0","24524.0","645988.0","65001.4","0.0","0.0","0.0","0.0","0.0","65001.4","32854.8","256026.0","22795.0","23496.7","247961.0","2646.0","8649.9","117477.0","19.0","0.0","0.0","0.0","65001.4","621464.0","25460.0"
"7140","Georgia Power Co","GA","Investor Owned","16002.0","13894.0","63184996.0","26927108.0","325359.0","90437463.0","82400878.0","4077343.0","0.0","60577.0","3898665.0","90437463.0","7737463.4","0.0","191049.2","-2621.0","63572.0","322502.0","8311965.6","3235638.2","26143932.0","2173557.0","3171878.5","32570106.0","317288.0","1320910.7","23517787.0","10627.0","9036.0","169053.0","1.0","7737463.4","82400878.0","2501473.0"
"7149","City of Gering - (NE)","NE","Municipal","18.0","14.4","0.0","72557.0","0.0","72557.0","61948.0","0.0","0.0","0.0","10609.0","72557.0","9201.0","0.0","0.0","0.0","0.0","0.0","9201.0","4997.0","31302.0","3389.0","2035.0","14075.0","469.0","2169.0","16571.0","39.0","0.0","0.0","0.0","9201.0","61948.0","3897.0"
"7174","Gibson Electric Members Corp","TN","Cooperative","182.4","178.5","0.0","820528.0","0.0","820528.0","783687.0","0.0","0.0","1349.0","35491.0","820528.0","79158.0","0.0","0.0","0.0","0.0","3311.7","82469.7","48938.0","434015.0","28746.0","20600.0","182862.0","5818.0","9620.0","166810.0","7.0","0.0","0.0","0.0","79158.0","783687.0","34570.0"
"7222","City of Gillette - (WY)","WY","Municipal","77.8","61.2","185841.0","154444.0","0.0","340285.0","320968.0","0.0","3089.0","0.0","16228.0","340285.0","31410.0","0.0","0.0","0.0","0.0","866.0","32276.0","14960.0","131418.0","13118.0","16450.0","189550.0","2577.0","0.0","0.0","0.0","0.0","0.0","0.0","31410.0","320968.0","15695.0"
"7257","City of Girard - (KS)","KS","Municipal","8.7","5.5","109.0","33314.0","-216.0","33207.0","29587.0","0.0","417.0","1803.0","1400.0","33207.0","3699.0","0.0","0.0","0.0","0.0","330.0","4029.0","1833.0","12876.0","1308.0","696.0","5308.0","199.0","1170.0","11403.0","64.0","0.0","0.0","0.0","3699.0","29587.0","1571.0"
"7262","Glacier Electric Coop, Inc","MT","Cooperative","26.6","34.2","0.0","189126.0","0.0","189126.0","173725.0","0.0","0.0","716.0","14685.0","189126.0","15908.6","0.0","0.0","0.0","341.3","169.7","16419.6","7303.5","70488.0","5972.0","6996.1","82182.0","1788.0","1609.0","21055.0","5.0","0.0","0.0","0.0","15908.6","173725.0","7765.0"
"7264","Glades Electric Coop, Inc","FL","Cooperative","65.0","71.0","0.0","339420.0","0.0","339420.0","316748.0","0.0","0.0","360.0","22312.0","339420.0","43572.0","0.0","0.0","920.0","0.0","0.0","44492.0","22568.0","153590.0","12527.0","7856.0","42194.0","3482.0","13148.0","120964.0","361.0","0.0","0.0","0.0","43572.0","316748.0","16370.0"
"7265","City of Gladstone","MI","Municipal","6.0","5.6","0.0","32119.0","0.0","32119.0","30739.0","0.0","0.0","0.0","1380.0","32119.0","3773.8","0.0","0.0","0.0","0.0","0.0","3773.8","2141.1","16440.0","2518.0","1632.7","14299.0","346.0","0.0","0.0","0.0","0.0","0.0","0.0","3773.8","30739.0","2864.0"
"7270","City of Glasgow - (KY)","KY","Municipal","55.6","45.0","0.0","287748.0","0.0","287748.0","276821.0","0.0","0.0","885.0","10042.0","287748.0","27612.0","0.0","0.0","0.0","0.0","1604.9","29216.9","7296.0","59978.0","5522.0","16031.0","151861.0","1900.0","4285.0","64982.0","5.0","0.0","0.0","0.0","27612.0","276821.0","7428.0"
"7279","NextEra Energy Services, LLC","TX","Retail Power Marketer","2484.5","1920.4","0.0","14116712.0","0.0","14116712.0","14116712.0","0.0","0.0","0.0","0.0","14116712.0","1170417.5","0.0","0.0","0.0","0.0","0.0","1170417.5","237872.3","2441842.0","213606.0","932545.2","11674870.0","79965.0","0.0","0.0","0.0","0.0","0.0","0.0","1170417.5","14116712.0","293571.0"
"7292","Glencoe Light & Power Comm","MN","Municipal","21.3","10.0","-523.0","79584.0","0.0","79061.0","75647.0","0.0","218.0","821.0","2375.0","79061.0","8114.8","0.0","0.0","0.0","535.7","378.0","9028.5","2471.3","20202.0","2414.0","2802.3","25561.0","361.0","2841.2","29884.0","4.0","0.0","0.0","0.0","8114.8","75647.0","2779.0"
"7294","City of Glendale - (CA)","CA","Municipal","344.0","174.0","145166.0","1474380.0","-62230.0","1557316.0","1070960.0","440940.0","0.0","22731.0","22685.0","1557316.0","200135.1","0.0","18532.4","0.0","0.0","4421.2","223088.7","75595.6","378660.0","74783.0","121309.5","673336.0","13175.0","3230.0","18964.0","24.0","0.0","0.0","0.0","200135.1","1070960.0","87982.0"
"7300","City of Glenwood Springs - (CO)","CO","Municipal","23.0","22.0","0.0","129934.0","0.0","129934.0","125618.0","0.0","0.0","0.0","4316.0","129934.0","13342.0","0.0","0.0","0.0","0.0","1207.0","14549.0","3926.0","34920.0","4702.0","9416.0","90698.0","1492.0","0.0","0.0","0.0","0.0","0.0","0.0","13342.0","125618.0","6194.0"
"7303","Raccoon Valley Electric Cooperative","IA","Cooperative","25.7","26.7","0.0","143031.0","0.0","143031.0","134826.0","4398.0","0.0","153.0","3654.0","143031.0","14687.0","0.0","396.0","0.0","0.0","33.0","15116.0","6457.0","44826.0","2266.0","8230.0","90000.0","432.0","0.0","0.0","0.0","0.0","0.0","0.0","14687.0","134826.0","2698.0"
"7353","Golden Valley Elec Assn Inc","AK","Cooperative","176.0","207.7","680588.0","650296.0","0.0","1330884.0","1236374.0","65.0","0.0","17337.0","77108.0","1330884.0","239739.3","0.0","10.6","0.0","0.0","2202.0","241951.9","68098.8","282450.0","39019.0","28155.9","126290.0","6544.0","143484.6","827634.0","517.0","0.0","0.0","0.0","239739.3","1236374.0","46080.0"
"7374","City of Goodland - (KS)","KS","Municipal","12.4","8.8","195.0","52923.0","0.0","53118.0","44061.0","0.0","0.0","6925.0","2132.0","53118.0","5859.0","0.0","0.0","0.0","0.0","0.0","5859.0","2510.0","16678.0","2180.0","999.0","7800.0","436.0","2350.0","19583.0","72.0","0.0","0.0","0.0","5859.0","44061.0","2688.0"
"7411","City of Gothenburg - (NE)","NE","Municipal","12.4","13.5","0.0","59187.0","0.0","59187.0","55082.0","0.0","0.0","0.0","4105.0","59187.0","4956.0","0.0","0.0","0.0","0.0","0.0","4956.0","1727.0","19527.0","1496.0","1226.0","13862.0","365.0","2003.0","21693.0","15.0","0.0","0.0","0.0","4956.0","55082.0","1876.0"
"7443","City of Graettinger - (IA)","IA","Municipal","2.2","2.2","3750.0","8629.0","-201.0","12178.0","9355.0","2011.0","0.0","342.0","470.0","12178.0","867.6","0.0","110.5","208.8","0.0","4.7","1191.6","458.8","4847.0","422.0","128.5","1321.0","84.0","280.3","3187.0","17.0","0.0","0.0","0.0","867.6","9355.0","523.0"
"7450","Grady Electric Membership Corp","GA","Cooperative","78.2","85.5","0.0","311223.0","0.0","311223.0","287124.0","0.0","0.0","0.0","24099.0","311223.0","39768.0","0.0","0.0","97.0","0.0","0.0","39865.0","33117.0","235483.0","18594.0","3409.0","26228.0","730.0","3242.0","25413.0","443.0","0.0","0.0","0.0","39768.0","287124.0","19767.0"
"7456","Graham County Electric Coop Inc","AZ","Cooperative","43.0","23.6","0.0","136772.0","0.0","136772.0","128892.0","0.0","0.0","133.0","7747.0","136772.0","15024.4","0.0","0.0","0.0","309.5","866.0","16199.9","8132.3","66433.0","6911.0","2039.5","17346.0","726.0","4852.6","45113.0","467.0","0.0","0.0","0.0","15024.4","128892.0","8104.0"
"7460","Goodhue County Coop Elec Assn","MN","Cooperative","19.5","22.1","0.0","98181.0","0.0","98181.0","93148.0","0.0","0.0","330.0","4703.0","98181.0","12312.8","0.0","0.0","0.0","0.0","96.4","12409.2","11274.5","85545.0","4770.0","1038.3","7603.0","318.0","0.0","0.0","0.0","0.0","0.0","0.0","12312.8","93148.0","5088.0"
"7483","City of Grand Haven - (MI)","MI","Municipal","62.5","46.4","273583.0","128238.0","0.0","401821.0","293903.0","96619.0","0.0","4472.0","6827.0","401821.0","36177.6","0.0","2882.4","0.0","80.7","0.0","39140.7","11135.0","79524.0","12176.0","11544.6","90531.0","1545.0","13498.0","123848.0","129.0","0.0","0.0","0.0","36177.6","293903.0","13850.0"
"7484","Grand Electric Coop, Inc","SD","Cooperative","9.9","19.1","0.0","90211.0","0.0","90211.0","76549.0","0.0","0.0","251.0","13411.0","90211.0","11245.1","0.0","0.0","0.0","0.0","208.1","11453.2","5905.4","49495.0","4602.0","5339.7","27054.0","571.0","0.0","0.0","0.0","0.0","0.0","0.0","11245.1","76549.0","5173.0"
"7489","Grand Rapids Public Util Comm","MN","Municipal","28.9","29.0","0.0","164976.0","0.0","164976.0","157534.0","0.0","42.0","0.0","7400.0","164976.0","14871.0","0.0","0.0","0.0","0.0","209.0","15080.0","4741.0","46866.0","5920.0","8415.0","88813.0","1391.0","1715.0","21855.0","12.0","0.0","0.0","0.0","14871.0","157534.0","7323.0"
"7490","Grand River Dam Authority","OK","State","862.0","847.0","4502333.0","4116742.0","-52586.0","8566489.0","1952204.0","6291334.0","0.0","270465.0","52486.0","8566489.0","99869.8","0.0","320054.6","0.0","2182.2","11501.8","433608.4","0.0","0.0","0.0","468.3","5227.0","50.0","99401.5","1946977.0","30.0","0.0","0.0","0.0","99869.8","1952204.0","80.0"
"7548","PUD No 1 of Grays Harbor County","WA","Political Subdivision","106.0","213.0","0.0","1651444.0","-21535.0","1629909.0","984141.0","601992.0","0.0","3636.0","40140.0","1629909.0","97999.4","0.0","17587.8","0.0","0.0","2940.8","118528.0","57507.4","501901.0","36674.0","32387.1","339934.0","5544.0","8104.9","142306.0","238.0","0.0","0.0","0.0","97999.4","984141.0","42456.0"
"7554","Green Mountain Energy Company","TX","Retail Power Marketer","0.0","0.0","0.0","9545724.0","-581713.0","8964011.0","8964011.0","0.0","0.0","0.0","0.0","8964011.0","900207.9","0.0","0.0","0.0","0.0","0.0","900207.9","602251.2","5361231.0","540558.0","297956.7","3602780.0","52914.0","0.0","0.0","0.0","0.0","0.0","0.0","900207.9","8964011.0","593472.0"
"7558","Grayson Rural Electric Coop Corp","KY","Cooperative","62.3","52.3","0.0","250858.0","0.0","250858.0","223363.0","0.0","0.0","0.0","27495.0","250858.0","26471.0","0.0","0.0","0.0","0.0","990.0","27461.0","19932.0","150817.0","14194.0","4643.0","41493.0","1194.0","1896.0","31053.0","2.0","0.0","0.0","0.0","26471.0","223363.0","15390.0"
"7559","Grayson-Collin Elec Coop, Inc","TX","Cooperative","285.0","282.0","0.0","960887.0","0.0","960887.0","896369.0","0.0","0.0","0.0","64518.0","960887.0","114853.0","0.0","0.0","0.0","1419.0","2157.0","118429.0","90321.0","732667.0","47433.0","24532.0","163702.0","2954.0","0.0","0.0","0.0","0.0","0.0","0.0","114853.0","896369.0","50387.0"
"7561","Greenbelt Electric Coop, Inc","TX","Cooperative","41.0","31.0","0.0","255472.0","0.0","255472.0","233814.0","0.0","0.0","81.0","21577.0","255472.0","22695.0","0.0","0.0","0.0","0.0","52.0","22747.0","3733.0","24251.0","3626.0","2472.0","17846.0","931.0","16490.0","191717.0","787.0","0.0","0.0","0.0","22695.0","233814.0","5344.0"
"7563","Grand Valley Power","CO","Cooperative","54.5","44.0","256.0","256054.0","0.0","256310.0","236516.0","37.0","0.0","712.0","19045.0","256310.0","31846.5","0.0","9.0","0.0","0.0","283.2","32138.7","21331.4","148912.0","15335.0","9054.0","73044.0","1876.0","1461.1","14560.0","127.0","0.0","0.0","0.0","31846.5","236516.0","17338.0"
"7593","City of Green Cove Springs","FL","Municipal","24.0","23.7","14435.0","111279.0","0.0","125714.0","103808.0","0.0","0.0","0.0","21906.0","125714.0","11882.0","0.0","0.0","0.0","0.0","0.0","11882.0","5897.0","48653.0","3433.0","5985.0","55155.0","759.0","0.0","0.0","0.0","0.0","0.0","0.0","11882.0","103808.0","4192.0"
"7601","Green Mountain Power Corp","VT","Investor Owned","601.0","680.0","799127.0","4047128.0","17691.0","4863946.0","4146861.0","486690.0","0.0","8276.0","222119.0","4863946.0","589913.0","0.0","14751.0","14725.0","13451.0","22760.0","655600.0","258219.0","1466486.0","221420.0","217151.0","1507059.0","42410.0","114543.0","1173316.0","66.0","0.0","0.0","0.0","589913.0","4146861.0","263896.0"
"7625","City of Greeneville - (TN)","TN","Municipal","200.6","238.5","0.0","1192114.0","0.0","1192114.0","1147220.0","0.0","0.0","661.0","44232.0","1192114.0","103507.0","0.0","0.0","0.0","0.0","2875.5","106382.5","45121.0","435454.0","30939.0","33154.0","307506.0","7274.0","25232.0","404260.0","18.0","0.0","0.0","0.0","103507.0","1147220.0","38231.0"
"7626","City of Greenfield - (IA)","IA","Municipal","10.3","7.7","12057.0","35004.0","0.0","47061.0","44744.0","0.0","57.0","415.0","1845.0","47061.0","4086.5","0.0","0.0","0.0","0.0","83.1","4169.6","948.5","8999.0","1005.0","1133.3","10974.0","236.0","2004.7","24771.0","1.0","0.0","0.0","0.0","4086.5","44744.0","1242.0"
"7627","City of Greenfield - (IN)","IN","Municipal","69.0","55.0","0.0","359827.0","0.0","359827.0","350831.0","0.0","0.0","0.0","8996.0","359827.0","31385.4","0.0","0.0","0.0","0.0","884.0","32269.4","9139.5","92575.0","9853.0","9636.9","102056.0","1200.0","12609.0","156200.0","13.0","0.0","0.0","0.0","31385.4","350831.0","11066.0"
"7634","City of Greenville - (TX)","TX","Municipal","109.5","90.9","14613.0","680048.0","0.0","694661.0","506087.0","160259.0","0.0","0.0","28315.0","694661.0","48863.5","0.0","6288.2","0.0","494.2","864.5","56510.4","17170.9","145098.0","14253.0","31692.6","360989.0","2181.0","0.0","0.0","0.0","0.0","0.0","0.0","48863.5","506087.0","16434.0"
"7639","Greenville Utilities Comm","NC","Municipal","358.2","332.1","0.0","1764686.0","305.0","1764991.0","1700477.0","0.0","0.0","0.0","64514.0","1764991.0","169162.2","0.0","0.0","0.0","294.0","2601.9","172058.1","81527.9","707633.0","58584.0","66557.6","695605.0","7403.0","21076.7","297239.0","514.0","0.0","0.0","0.0","169162.2","1700477.0","66501.0"
"7646","Greenwood CPW","SC","Municipal","66.5","51.5","0.0","316439.0","0.0","316439.0","300633.0","0.0","0.0","0.0","15806.0","316439.0","24278.0","0.0","0.0","0.0","0.0","0.0","24278.0","9895.0","109045.0","11051.0","14383.0","191588.0","2921.0","0.0","0.0","0.0","0.0","0.0","0.0","24278.0","300633.0","13972.0"
"7651","Greenwood Utilities Comm","MS","Municipal","64.2","38.4","9099.0","273088.0","0.0","282187.0","266436.0","0.0","1261.0","0.0","14490.0","282187.0","26320.0","0.0","0.0","0.0","0.0","484.0","26804.0","10339.0","95350.0","7642.0","12647.0","128158.0","1655.0","3334.0","42928.0","3.0","0.0","0.0","0.0","26320.0","266436.0","9300.0"
"7654","Greer Commission of Public Wks","SC","Municipal","91.9","64.8","0.0","381728.0","0.0","381728.0","352371.0","0.0","0.0","12150.0","17207.0","381728.0","41945.0","0.0","0.0","0.0","0.0","0.0","41945.0","22524.0","178757.0","15797.0","19421.0","173614.0","9276.0","0.0","0.0","0.0","0.0","0.0","0.0","41945.0","352371.0","25073.0"
"7679","City of Griffin","GA","Municipal","92.2","71.3","0.0","392692.0","26852.0","419544.0","395249.0","0.0","6589.0","0.0","17706.0","419544.0","41079.0","0.0","0.0","0.0","0.0","6507.0","47586.0","14624.0","143473.0","12755.0","19637.0","167986.0","2247.0","6818.0","83790.0","17.0","0.0","0.0","0.0","41079.0","395249.0","15019.0"
"7716","Groton Dept of Utilities - (CT)","CT","Municipal","73.4","66.2","0.0","454420.0","0.0","454420.0","440320.0","6728.0","0.0","586.0","6786.0","454420.0","53300.6","0.0","783.0","0.0","0.0","292.0","54375.6","15441.1","97005.0","12002.0","14980.6","107404.0","1611.0","22878.9","235911.0","15.0","0.0","0.0","0.0","53300.6","440320.0","13628.0"
"7720","Grundy Electric Coop, Inc","MO","Cooperative","27.0","26.5","0.0","125433.0","0.0","125433.0","117944.0","0.0","0.0","0.0","7489.0","125433.0","13367.8","0.0","0.0","0.0","0.0","84.5","13452.3","8622.3","68814.0","5945.0","3477.2","35355.0","781.0","1268.3","13775.0","5.0","0.0","0.0","0.0","13367.8","117944.0","6731.0"
"7743","Grundy Center Mun Light & Power","IA","Municipal","6.4","4.5","35.0","27587.0","0.0","27622.0","25162.0","0.0","389.0","757.0","1314.0","27622.0","2408.0","0.0","0.0","0.0","0.0","0.0","2408.0","1248.0","11986.0","1262.0","1160.0","13176.0","259.0","0.0","0.0","0.0","0.0","0.0","0.0","2408.0","25162.0","1521.0"
"7750","Guthrie County Rural E C A","IA","Cooperative","23.6","19.7","0.0","180869.0","0.0","180869.0","162245.0","12668.0","0.0","0.0","5956.0","180869.0","13368.9","0.0","737.2","0.0","0.0","0.0","14106.1","7419.7","65802.0","4536.0","1172.8","13233.0","104.0","4776.4","83210.0","7.0","0.0","0.0","0.0","13368.9","162245.0","4647.0"
"7752","Guadalupe Valley Elec Coop Inc","TX","Cooperative","482.0","550.0","0.0","2525440.0","0.0","2525440.0","2394364.0","0.0","0.0","10970.0","120106.0","2525440.0","197321.5","0.0","0.0","0.0","15943.0","2521.4","215785.9","117875.5","1050077.0","74210.0","25106.6","264991.0","6605.0","54339.4","1079296.0","1064.0","0.0","0.0","0.0","197321.5","2394364.0","81879.0"
"7785","Gulf Coast Electric Coop, Inc","FL","Cooperative","78.0","111.0","0.0","349486.0","0.0","349486.0","328655.0","0.0","0.0","0.0","20831.0","349486.0","39771.2","0.0","0.0","0.0","0.0","6901.8","46673.0","31783.3","255942.0","19274.0","7987.9","72713.0","1436.0","0.0","0.0","0.0","0.0","0.0","0.0","39771.2","328655.0","20710.0"
"7787","Gunnison County Elec Assn.","CO","Cooperative","17.0","26.2","0.0","124885.0","0.0","124885.0","116363.0","0.0","0.0","571.0","7951.0","124885.0","18055.5","0.0","0.0","0.0","0.0","-318.8","17736.7","12330.9","72301.0","9308.0","4848.6","36354.0","1462.0","876.0","7708.0","7.0","0.0","0.0","0.0","18055.5","116363.0","10777.0"
"7801","Gulf Power Co","FL","Investor Owned","2434.0","2211.0","13980828.0","2047112.0","17542.0","16045482.0","10808617.0","4636837.0","11967.0","14392.0","573669.0","16045482.0","1280559.1","0.0","163357.7","-243.4","8815.1","64001.7","1516490.2","719963.2","5229276.0","401793.0","416680.4","3839688.0","57001.0","143915.5","1739653.0","255.0","0.0","0.0","0.0","1280559.1","10808617.0","459049.0"
"7826","City of Gunnison - (CO)","CO","Municipal","9.1","14.7","0.0","70982.0","-423.0","70559.0","67682.0","0.0","210.0","0.0","2667.0","70559.0","5657.3","0.0","0.0","0.0","0.0","27.0","5684.3","2474.4","25235.0","3430.0","3182.9","42447.0","842.0","0.0","0.0","0.0","0.0","0.0","0.0","5657.3","67682.0","4272.0"
"7827","Guntersville Electric Board","AL","Municipal","49.1","41.2","0.0","241176.0","0.0","241176.0","230124.0","0.0","0.0","430.0","10621.0","241176.0","22165.0","0.0","0.0","0.0","0.0","515.0","22680.0","6895.0","65251.0","4711.0","9549.0","86780.0","1725.0","5721.0","78093.0","4.0","0.0","0.0","0.0","22165.0","230124.0","6439.0"
"7864","Grundy County Rural Elec Coop","IA","Cooperative","15.3","9.4","0.0","67106.0","0.0","67106.0","57983.0","6445.0","0.0","107.0","2571.0","67106.0","6913.0","0.0","584.0","0.0","0.0","16.0","7513.0","3857.0","26760.0","1844.0","2112.0","16881.0","406.0","944.0","14342.0","2.0","0.0","0.0","0.0","6913.0","57983.0","2252.0"
"7870","H-D Electric Coop Inc","SD","Cooperative","14.6","21.5","0.0","101163.0","0.0","101163.0","95247.0","0.0","0.0","178.0","5738.0","101163.0","10409.0","0.0","0.0","0.0","0.0","-19.0","10390.0","6656.0","59087.0","2804.0","2961.0","31279.0","283.0","792.0","4881.0","504.0","0.0","0.0","0.0","10409.0","95247.0","3591.0"
"7887","Habersham Electric Membership Corp","GA","Cooperative","114.0","141.0","0.0","504713.0","0.0","504713.0","491785.0","0.0","0.0","1706.0","11222.0","504713.0","63319.0","0.0","0.0","0.0","0.0","2225.0","65544.0","51356.0","389221.0","32019.0","11963.0","102564.0","2485.0","0.0","0.0","0.0","0.0","0.0","0.0","63319.0","491785.0","34504.0"
"7891","Guernsey-Muskingum El Coop Inc","OH","Cooperative","54.1","53.3","0.0","257422.0","0.0","257422.0","240569.0","0.0","0.0","0.0","16853.0","257422.0","33035.0","0.0","0.0","0.0","0.0","677.0","33712.0","23324.0","161777.0","14886.0","5845.0","43926.0","1979.0","3866.0","34866.0","8.0","0.0","0.0","0.0","33035.0","240569.0","16873.0"
"7908","Hagerstown Light Department","MD","Municipal","58.3","61.3","0.0","303444.0","0.0","303444.0","295000.0","0.0","0.0","276.0","8168.0","303444.0","22266.9","0.0","0.0","0.0","0.0","0.0","22266.9","11418.8","150079.0","14877.0","7313.4","92166.0","2541.0","3534.7","52755.0","48.0","0.0","0.0","0.0","22266.9","295000.0","17466.0"
"7969","City of Halstad - (MN)","MN","Municipal","1.1","2.5","15.0","8704.0","0.0","8719.0","8219.0","0.0","0.0","0.0","500.0","8719.0","888.0","0.0","0.0","0.0","0.0","60.0","948.0","473.0","4381.0","273.0","415.0","3838.0","66.0","0.0","0.0","0.0","0.0","0.0","0.0","888.0","8219.0","339.0"
"7977","City of Hamilton - (OH)","OH","Municipal","131.0","86.0","919.0","904809.0","0.0","905728.0","552949.0","320362.0","32417.0","0.0","0.0","905728.0","65698.0","0.0","10042.0","1573.6","0.0","2946.6","80260.2","33024.0","240372.0","26783.0","25572.0","244932.0","2837.0","7102.0","67645.0","58.0","0.0","0.0","0.0","65698.0","552949.0","29678.0"
"7978","Halifax Electric Member Corp","NC","Cooperative","43.5","55.5","0.0","185520.0","0.0","185520.0","151864.0","21347.0","0.0","0.0","12309.0","185520.0","22374.0","0.0","1479.0","0.0","0.0","597.0","24450.0","17819.0","120303.0","10521.0","3989.0","31293.0","1214.0","566.0","268.0","1.0","0.0","0.0","0.0","22374.0","151864.0","11736.0"
"7979","Hamilton County Elec Coop Assn","TX","Cooperative","57.4","79.4","0.0","228871.0","0.0","228871.0","211812.0","0.0","0.0","0.0","17059.0","228871.0","23467.5","0.0","0.0","0.0","0.0","200.8","23668.3","21194.8","189518.0","17265.0","2272.7","22294.0","742.0","0.0","0.0","0.0","0.0","0.0","0.0","23467.5","211812.0","18007.0"
"8000","NineStar Connect","IN","Cooperative","63.5","57.2","0.0","279951.0","0.0","279951.0","265411.0","0.0","0.0","0.0","14540.0","279951.0","34631.0","0.0","0.0","0.0","0.0","274.0","34905.0","28202.0","208194.0","13455.0","4648.0","39997.0","1195.0","1781.0","17220.0","14.0","0.0","0.0","0.0","34631.0","265411.0","14664.0"
"8034","Hancock-Wood Electric Coop Inc","OH","Cooperative","77.5","63.5","0.0","353738.0","0.0","353738.0","338240.0","0.0","1021.0","0.0","14477.0","353738.0","41724.1","0.0","0.0","0.0","0.0","390.4","42114.5","20729.2","147105.0","11191.0","12249.0","99781.0","2146.0","8745.9","91354.0","7.0","0.0","0.0","0.0","41724.1","338240.0","13344.0"
"8055","City of Hannibal - (MO)","MO","Municipal","55.9","43.0","137648.0","263037.0","0.0","400685.0","248316.0","137648.0","1472.0","0.0","13249.0","400685.0","24600.3","0.0","3535.9","0.0","0.0","3421.0","31557.2","8796.8","75832.0","7626.0","3419.3","29173.0","1079.0","12384.2","143311.0","119.0","0.0","0.0","0.0","24600.3","248316.0","8824.0"
"8104","Town of Hardwick","VT","Municipal","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0","0.0"
"8122","Harlan Municipal Utilities - (IA)","IA","Municipal","14.3","10.3","11471.0","63607.0","0.0","75078.0","54313.0","11471.0","1620.0","1685.0","5989.0","75078.0","5756.0","0.0","287.0","0.0","0.0","1374.0","7417.0","2890.0","23428.0","2310.0","1381.0","12388.0","423.0","1485.0","18497.0","38.0","0.0","0.0","0.0","5756.0","54313.0","2771.0"
"8147","City of Harriman - (TN)","TN","Municipal","45.4","49.3","0.0","213601.0","0.0","213601.0","201607.0","0.0","0.0","0.0","11994.0","213601.0","23313.0","0.0","0.0","0.0","0.0","992.0","24305.0","14062.0","119433.0","9097.0","8475.0","70893.0","1873.0","776.0","11281.0","1.0","0.0","0.0","0.0","23313.0","201607.0","10971.0"
"8179","Harrison County Rural E M C","IN","Cooperative","111.2","126.3","0.0","516363.0","0.0","516363.0","496855.0","0.0","0.0","420.0","19088.0","516363.0","55040.4","0.0","0.0","0.0","0.0","735.7","55776.1","38478.8","327758.0","21622.0","8825.6","80795.0","1379.0","7736.0","88302.0","18.0","0.0","0.0","0.0","55040.4","496855.0","23019.0"
"8198","City of Harrisonburg - (VA)","VA","Municipal","131.2","141.1","166.0","733102.0","0.0","733268.0","707196.0","0.0","0.0","0.0","26072.0","733268.0","61697.0","0.0","0.0","0.0","0.0","531.0","62228.0","19170.0","193161.0","17682.0","34100.0","393537.0","3407.0","8427.0","120498.0","12.0","0.0","0.0","0.0","61697.0","707196.0","21101.0"
"8199","City of Harrisonville - (MO)","MO","Municipal","26.0","16.9","0.0","97329.0","0.0","97329.0","97329.0","0.0","0.0","0.0","0.0","97329.0","11382.3","0.0","0.0","0.0","0.0","528.0","11910.3","4876.2","40204.0","3987.0","6506.1","57125.0","550.0","0.0","0.0","0.0","0.0","0.0","0.0","11382.3","97329.0","4537.0"
"8210","Hart Electric Member Corp","GA","Cooperative","139.0","142.6","0.0","581320.0","0.0","581320.0","546767.0","0.0","0.0","0.0","34553.0","581320.0","69065.0","0.0","0.0","0.0","0.0","3347.0","72412.0","46029.0","355448.0","28147.0","20776.0","165532.0","7835.0","2260.0","25787.0","20.0","0.0","0.0","0.0","69065.0","546767.0","36002.0"
"8212","Hartford Electric","WI","Municipal","57.1","45.8","0.0","335297.0","0.0","335297.0","310275.0","0.0","0.0","253.0","24769.0","335297.0","27986.5","0.0","0.0","0.0","0.0","427.4","28413.9","5560.4","47038.0","6534.0","7498.1","60274.0","901.0","14928.0","202963.0","6.0","0.0","0.0","0.0","27986.5","310275.0","7441.0"
"8226","City of Hartselle","AL","Municipal","32.0","30.1","0.0","147215.0","0.0","147215.0","140218.0","0.0","0.0","0.0","6997.0","147215.0","14156.0","0.0","0.0","0.0","0.0","391.9","14547.9","6170.0","59445.0","4308.0","6103.0","56690.0","1225.0","1883.0","24083.0","2.0","0.0","0.0","0.0","14156.0","140218.0","5536.0"
"8245","City of Hastings - (NE)","NE","Municipal","90.3","66.6","446085.0","87408.0","0.0","533493.0","415433.0","101441.0","0.0","0.0","16619.0","533493.0","34816.1","0.0","2369.6","0.0","0.0","2246.7","39432.4","11027.3","107947.0","10995.0","9917.3","106144.0","2281.0","13871.5","201342.0","106.0","0.0","0.0","0.0","34816.1","415433.0","13382.0"
"8276","Havana Power & Light Company","FL","Municipal","5.7","6.2","0.0","24125.0","0.0","24125.0","22820.0","0.0","0.0","0.0","1305.0","24125.0","2595.0","0.0","0.0","0.0","0.0","0.0","2595.0","1493.0","12929.0","1140.0","1102.0","9891.0","318.0","0.0","0.0","0.0","0.0","0.0","0.0","2595.0","22820.0","1458.0"
"8283","Harrison County Rrl Elec Coop","IA","Cooperative","20.1","23.6","254.0","107544.0","40.0","107838.0","98722.0","5469.0","0.0","159.0","3488.0","107838.0","11145.0","0.0","434.0","0.0","0.0","39.2","11618.2","7118.0","46523.0","3338.0","1240.0","8805.0","243.0","2787.0","43394.0","171.0","0.0","0.0","0.0","11145.0","98722.0","3752.0"
"8287","Hawaii Electric Light Co Inc","HI","Investor Owned","186.5","188.5","521984.0","601645.0","0.0","1123629.0","1046950.0","0.0","0.0","3611.0","73068.0","1123629.0","331697.4","0.0","0.0","1388.0","0.0","0.0","333085.4","134054.9","392019.0","72494.0","130543.7","404211.0","12809.0","67098.8","250720.0","88.0","0.0","0.0","0.0","331697.4","1046950.0","85391.0"
"8288","City of Hawarden - (IA)","IA","Municipal","6.4","4.8","0.0","26935.0","0.0","26935.0","25447.0","0.0","0.0","0.0","1488.0","26935.0","2198.0","0.0","0.0","0.0","0.0","31.0","2229.0","1046.0","11553.0","1024.0","730.0","8989.0","256.0","422.0","4905.0","14.0","0.0","0.0","0.0","2198.0","25447.0","1294.0"
"8307","Hawley Public Utilities Comm","MN","Municipal","4.0","4.0","0.0","20855.0","0.0","20855.0","19419.0","0.0","200.0","0.0","1236.0","20855.0","2414.0","0.0","0.0","0.0","0.0","64.0","2478.0","1270.0","9742.0","954.0","1144.0","9677.0","212.0","0.0","0.0","0.0","0.0","0.0","0.0","2414.0","19419.0","1166.0"
"8319","Heartland Power Coop","IA","Cooperative","54.4","57.0","0.0","320447.0","0.0","320447.0","313900.0","0.0","449.0","0.0","6098.0","320447.0","27990.4","0.0","0.0","0.0","0.0","127.5","28117.9","9974.199999999999","83278.0","4351.0","4115.1","40698.0","860.0","13901.1","189924.0","8.0","0.0","0.0","0.0","27990.399999999998","313900.0","5219.0"
"8333","Haywood Electric Member Corp","NC","Cooperative","58.2","89.7","0.0","306290.0","0.0","306290.0","274234.0","0.0","0.0","1053.0","31003.0","306290.0","40333.0","0.0","0.0","0.0","0.0","1426.0","41759.0","37002.0","244590.0","26378.0","2580.0","22247.0","717.0","751.0","7397.0","14.0","0.0","0.0","0.0","40333.0","274234.0","27109.0"
"8348","City of Healdsburg - (CA)","CA","Municipal","22.4","11.3","58791.0","21999.0","0.0","80790.0","77191.0","0.0","0.0","0.0","3599.0","80790.0","11896.0","0.0","0.0","0.0","0.0","635.0","12531.0","4684.0","27341.0","4823.0","6135.0","42232.0","1020.0","1077.0","7618.0","52.0","0.0","0.0","0.0","11896.0","77191.0","5895.0"
"8366","Heber Light & Power Company","UT","Municipal","39.7","32.1","19942.0","169172.0","-6974.0","182140.0","168214.0","0.0","986.0","1225.0","11715.0","182140.0","15983.0","0.0","0.0","0.0","0.0","0.0","15983.0","9360.0","91820.0","10396.0","6623.0","76394.0","1636.0","0.0","0.0","0.0","0.0","0.0","0.0","15983.0","168214.0","12032.0"
"8375","City of Hebron - (NE)","NE","Municipal","4.9","5.9","0.0","23858.0","0.0","23858.0","21729.0","0.0","0.0","0.0","2129.0","23858.0","1714.0","0.0","0.0","0.0","0.0","0.0","1714.0","801.0","8834.0","735.0","913.0","12895.0","223.0","0.0","0.0","0.0","0.0","0.0","0.0","1714.0","21729.0","958.0"
"8447","Hendricks County Rural E M C","IN","Cooperative","155.3","157.0","0.0","774540.0","0.0","774540.0","750478.0","0.0","0.0","0.0","24062.0","774540.0","84595.0","0.0","0.0","0.0","0.0","735.3","85330.3","55099.0","449641.0","30883.0","26364.0","262477.0","760.0","3132.0","38360.0","3.0","0.0","0.0","0.0","84595.0","750478.0","31646.0"
"8449","Henderson City Utility Comm","KY","Municipal","110.0","92.0","457278.0","155525.0","0.0","612803.0","575695.0","0.0","6959.0","464.0","29685.0","612803.0","40583.0","0.0","0.0","0.0","0.0","3147.0","43730.0","10813.0","119304.0","10231.0","9602.0","118789.0","1667.0","20168.0","337602.0","35.0","0.0","0.0","0.0","40583.0","575695.0","11933.0"
"8466","Henry County Rural E M C","IN","Cooperative","39.0","47.0","0.0","191190.0","0.0","191190.0","191190.0","0.0","0.0","0.0","0.0","191190.0","22126.0","0.0","0.0","0.0","0.0","0.0","22126.0","17533.0","136454.0","9386.0","2303.0","24661.0","168.0","2290.0","30075.0","6.0","0.0","0.0","0.0","22126.0","191190.0","9560.0"
"8515","City of Hermiston","OR","Municipal","24.3","24.2","0.0","113360.0","0.0","113360.0","111142.0","0.0","0.0","0.0","2218.0","113360.0","8613.4","0.0","0.0","0.0","0.0","130.9","8744.3","4491.2","55052.0","4517.0","4122.2","56090.0","806.0","0.0","0.0","0.0","0.0","0.0","0.0","8613.4","111142.0","5323.0"
"8543","Hibbing Public Utilities Comm","MN","Municipal","24.2","24.2","0.0","143166.0","-5843.0","137323.0","113118.0","0.0","1017.0","3032.0","20156.0","137323.0","13872.0","0.0","0.0","0.0","0.0","313.0","14185.0","5913.0","47758.0","7163.0","7095.0","55998.0","965.0","864.0","9362.0","6.0","0.0","0.0","0.0","13872.0","113118.0","8134.0"
"8548","City of Hickman","KY","Municipal","4.7","3.6","0.0","18335.0","0.0","18335.0","16910.0","0.0","0.0","50.0","1374.0","18335.0","2313.0","0.0","0.0","0.0","0.0","75.3","2388.3","1226.0","9705.0","873.0","1087.0","7205.0","226.0","0.0","0.0","0.0","0.0","0.0","0.0","2313.0","16910.0","1099.0"
"8566","High Plains Power Inc","WY","Cooperative","118.0","126.5","0.0","900044.0","0.0","900044.0","860358.0","0.0","292.0","0.0","39394.0","900044.0","78839.8","0.0","0.0","0.0","0.0","162.0","79001.8","19849.8","147298.0","11790.0","4995.5","47249.0","452.0","53994.5","665811.0","571.0","0.0","0.0","0.0","78839.8","860358.0","12813.0"
"8570","Highline Electric Assn","CO","Cooperative","163.2","43.7","0.0","482194.0","0.0","482194.0","447853.0","0.0","0.0","362.0","33979.0","482194.0","51895.6","0.0","0.0","0.0","0.0","378.4","52274.0","7887.7","58574.0","5746.0","8080.2","63948.0","1404.0","35927.7","325331.0","3219.0","0.0","0.0","0.0","51895.6","447853.0","10369.0"
"8571","Town of High Point","NC","Municipal","246.6","203.7","0.0","1160440.0","0.0","1160440.0","1120508.0","0.0","0.0","0.0","39932.0","1160440.0","125725.0","0.0","0.0","0.0","0.0","0.0","125725.0","50578.3","388061.0","36907.0","57816.1","534590.0","5057.0","17330.6","197857.0","280.0","0.0","0.0","0.0","125725.0","1120508.0","42244.0"
"8573","City of Highland","IL","Municipal","35.0","21.6","270.0","133176.0","0.0","133446.0","122011.0","0.0","561.0","1324.0","9550.0","133446.0","13969.4","0.0","0.0","0.0","0.0","491.6","14461.0","7851.4","64861.0","5832.0","1037.9","8748.0","661.0","5080.1","48402.0","155.0","0.0","0.0","0.0","13969.4","122011.0","6648.0"
"8574","Jackson Electric Coop, Inc - (WI)","WI","Cooperative","38.7","35.3","0.0","210368.0","0.0","210368.0","204631.0","0.0","0.0","305.0","5432.0","210368.0","19972.4","0.0","0.0","0.0","0.0","214.0","20186.4","11768.8","87163.0","7462.0","2234.6","23895.0","165.0","5969.0","93573.0","8.0","0.0","0.0","0.0","19972.4","204631.0","7635.0"
"8610","City of Hinton","IA","Municipal","3.0","2.0","0.0","9255.0","0.0","9255.0","8852.0","0.0","0.0","0.0","403.0","9255.0","971.6","0.0","0.0","0.0","0.0","13.7","985.3","419.4","4292.0","309.0","180.7","1569.0","57.0","371.5","2991.0","8.0","0.0","0.0","0.0","971.6","8852.0","374.0"
"8620","HILCO Electric Cooperative, Inc.","TX","Cooperative","130.0","170.0","0.0","531655.0","0.0","531655.0","506878.0","0.0","0.0","0.0","24777.0","531655.0","52433.0","0.0","0.0","0.0","0.0","1202.0","53635.0","38251.0","364912.0","20762.0","13732.0","132366.0","6432.0","450.0","9600.0","1.0","0.0","0.0","0.0","52433.0","506878.0","27195.0"
"8631","Hillsdale Board of Public Wks","MI","Municipal","27.0","18.7","566.0","125904.0","0.0","126470.0","121769.0","0.0","0.0","0.0","4701.0","126470.0","14103.9","0.0","0.0","0.0","0.0","93.7","14197.6","5166.6","36818.0","5080.0","5293.8","45400.0","940.0","3643.5","39551.0","21.0","0.0","0.0","0.0","14103.9","121769.0","6041.0"
"8632","Hill County Electric Coop, Inc","MT","Cooperative","28.3","28.5","0.0","170141.0","0.0","170141.0","162121.0","0.0","0.0","0.0","8020.0","170141.0","16278.4","0.0","0.0","0.0","0.0","464.7","16743.1","5115.7","36392.0","3603.0","3237.0","30129.0","250.0","7925.7","95600.0","3.0","0.0","0.0","0.0","16278.4","162121.0","3856.0"
"8637","Hino Electric Holding Company, LP.","TX","Retail Power Marketer","0.0","0.0","0.0","180340.0","0.0","180340.0","180340.0","0.0","0.0","0.0","0.0","180340.0","17072.8","0.0","0.0","0.0","0.0","0.0","17072.8","4984.0","53805.0","3726.0","12088.8","126535.0","592.0","0.0","0.0","0.0","0.0","0.0","0.0","17072.8","180340.0","4318.0"
"8699","Inland Power & Light Company","WA","Cooperative","164.1","253.2","0.0","1018685.0","-310.0","1018375.0","960889.0","0.0","1997.0","0.0","55489.0","1018375.0","73473.6","0.0","0.0","0.0","0.0","1073.4","74547.0","53891.5","682178.0","37203.0","15500.5","196739.0","3263.0","4081.6","81972.0","509.0","0.0","0.0","0.0","73473.6","960889.0","40975.0"
"8717","City of Holdrege","NE","Municipal","23.6","21.1","0.0","123440.0","0.0","123440.0","118878.0","0.0","76.0","0.0","4486.0","123440.0","8771.3","0.0","0.0","0.0","0.0","61.9","8833.2","2612.5","27568.0","2604.0","3619.2","39583.0","644.0","2539.6","51727.0","2.0","0.0","0.0","0.0","8771.3","118878.0","3250.0"
"8723","City of Holland","MI","Municipal","231.0","177.0","463625.0","623214.0","0.0","1086839.0","1077300.0","0.0","0.0","0.0","9539.0","1086839.0","107038.0","0.0","0.0","0.0","0.0","4667.0","111705.0","20837.0","167440.0","23981.0","34834.0","323876.0","4425.0","51367.0","585984.0","172.0","0.0","0.0","0.0","107038.0","1077300.0","28578.0"
"8748","City of Holly Springs","MS","Municipal","53.7","50.8","0.0","239795.0","0.0","239795.0","216470.0","0.0","0.0","200.0","23124.0","239795.0","24832.0","0.0","0.0","0.0","0.0","902.7","25734.7","13945.0","124692.0","8850.0","10145.0","83025.0","2772.0","742.0","8753.0","1.0","0.0","0.0","0.0","24832.0","216470.0","11623.0"
"8761","Holmes-Wayne Electric Coop Inc","OH","Cooperative","61.4","60.8","0.0","352896.0","0.0","352896.0","334511.0","0.0","0.0","241.0","18144.0","352896.0","40577.8","0.0","0.0","0.0","0.0","580.5","41158.3","23358.7","175928.0","14204.0","10976.6","92012.0","3111.0","6242.5","66571.0","16.0","0.0","0.0","0.0","40577.8","334511.0","17331.0"
"8764","Holston Electric Coop, Inc","TN","Cooperative","145.1","168.8","0.0","807095.0","0.0","807095.0","771558.0","0.0","0.0","682.0","34856.0","807095.0","70594.0","0.0","0.0","0.0","0.0","2136.9","72730.9","35845.0","337788.0","24854.0","16573.0","145941.0","5630.0","18176.0","287829.0","16.0","0.0","0.0","0.0","70594.0","771558.0","30500.0"
"8770","City of Holton - (KS)","KS","Municipal","12.1","7.9","2105.0","48176.0","0.0","50281.0","43446.0","0.0","5208.0","1627.0","0.0","50281.0","3431.0","0.0","0.0","0.0","0.0","0.0","3431.0","1691.0","16375.0","2023.0","1382.0","19441.0","445.0","358.0","7630.0","12.0","0.0","0.0","0.0","3431.0","43446.0","2480.0"
"8773","Holy Cross Electric Assn, Inc","CO","Cooperative","147.7","258.7","409610.0","792716.0","0.0","1202326.0","1166453.0","0.0","0.0","1864.0","34009.0","1202326.0","118937.7","0.0","0.0","0.0","0.0","2899.4","121837.1","66437.7","599913.0","46572.0","47177.8","510743.0","10124.0","5322.2","55797.0","13.0","0.0","0.0","0.0","118937.7","1166453.0","56709.0"
"8774","City of Holyoke - (MA)","MA","Municipal","64.0","58.0","239469.0","189014.0","-80144.0","348339.0","331556.0","0.0","1014.0","2488.0","13281.0","348339.0","42190.0","0.0","0.0","0.0","0.0","3185.0","45375.0","12403.0","100455.0","14752.0","24186.0","154768.0","2779.0","5601.0","76333.0","47.0","0.0","0.0","0.0","42190.0","331556.0","17578.0"
"8780","Fox Islands Electric Coop, Inc","ME","Cooperative","2.3","2.0","3.0","11739.0","0.0","11742.0","10245.0","0.0","0.0","81.0","1416.0","11742.0","2925.3","0.0","0.0","0.0","0.0","92.9","3018.2","2089.4","6869.0","1704.0","835.9","3376.0","325.0","0.0","0.0","0.0","0.0","0.0","0.0","2925.3","10245.0","2029.0"
"8786","Horry Electric Coop Inc","SC","Cooperative","286.0","389.0","0.0","1193672.0","0.0","1193672.0","1134902.0","0.0","0.0","1573.0","57197.0","1193672.0","158367.0","0.0","0.0","0.0","0.0","2949.0","161316.0","128319.0","903342.0","68177.0","26653.0","198819.0","9938.0","3395.0","32741.0","12.0","0.0","0.0","0.0","158367.0","1134902.0","78127.0"
"8795","City of Homestead - (FL)","FL","Municipal","110.0","82.0","588.0","561252.0","-588.0","561252.0","546637.0","0.0","0.0","0.0","14615.0","561252.0","60846.9","0.0","0.0","0.0","0.0","0.0","60846.9","35565.0","311290.0","21761.0","7290.3","74935.0","2080.0","17991.6","160412.0","561.0","0.0","0.0","0.0","60846.9","546637.0","24402.0"
"8796","City of Hingham - (MA)","MA","Municipal","53.2","36.1","0.0","175838.0","26160.0","201998.0","195841.0","0.0","0.0","0.0","6157.0","201998.0","27473.0","0.0","0.0","0.0","0.0","2650.0","30123.0","12834.0","88924.0","8383.0","10869.0","77003.0","1204.0","3770.0","29914.0","6.0","0.0","0.0","0.0","27473.0","195841.0","9593.0"
"8824","M J M Electric Cooperative Inc","IL","Cooperative","30.7","26.9","0.0","136986.0","0.0","136986.0","127239.0","0.0","0.0","11.0","9736.0","136986.0","18987.3","0.0","0.0","0.0","0.0","192.3","19179.6","16487.3","106236.0","9141.0","2500.0","21003.0","202.0","0.0","0.0","0.0","0.0","0.0","0.0","18987.3","127239.0","9343.0"
"8830","Hood River Electric Coop","OR","Cooperative","19.9","29.6","0.0","126070.0","0.0","126070.0","120394.0","0.0","0.0","120.0","5556.0","126070.0","8661.6","0.0","0.0","0.0","0.0","383.3","9044.9","4626.0","58023.0","3375.0","523.0","6694.0","234.0","3512.6","55677.0","213.0","0.0","0.0","0.0","8661.6","120394.0","3822.0"
"8840","City of Hope","AR","Municipal","58.6","50.6","0.0","287250.0","0.0","287250.0","270583.0","0.0","4481.0","0.0","12186.0","287250.0","27351.0","0.0","0.0","0.0","0.0","0.0","27351.0","7836.0","70212.0","8368.0","11558.0","109631.0","1033.0","7957.0","90740.0","2.0","0.0","0.0","0.0","27351.0","270583.0","9403.0"
"8846","City of Hopkinsville","KY","Municipal","78.0","63.8","0.0","362070.0","0.0","362070.0","342871.0","0.0","0.0","1378.0","17821.0","362070.0","32717.0","0.0","0.0","0.0","0.0","855.2","33572.2","12670.0","117117.0","10072.0","14978.0","136025.0","2906.0","5069.0","89729.0","2.0","0.0","0.0","0.0","32717.0","342871.0","12980.0"
"8883","Houlton Water Company","ME","Municipal","17.3","19.6","0.0","78291.0","0.0","78291.0","73583.0","0.0","0.0","0.0","4708.0","78291.0","7523.3","663.4","0.0","0.0","0.0","0.0","8186.7","3144.4","29875.0","3919.0","2367.1000000000004","22712.0","1415.0","2675.2","61389.0","80.0","0.0","0.0","0.0","8186.7","113976.0","5414.0"
"8884","Terrebonne Parish Consol Gov't","LA","Municipal","81.7","66.5","33361.0","384792.0","-69062.0","349091.0","349091.0","0.0","0.0","0.0","0.0","349091.0","32250.0","0.0","0.0","0.0","0.0","0.0","32250.0","16476.0","176186.0","11227.0","15774.0","172905.0","2633.0","0.0","0.0","0.0","0.0","0.0","0.0","32250.0","349091.0","13860.0"
"8898","Houston County Elec Coop Inc","TX","Cooperative","87.2","99.3","0.0","416772.0","0.0","416772.0","390791.0","0.0","0.0","0.0","25981.0","416772.0","41353.4","0.0","0.0","0.0","257.7","0.0","41611.1","25309.2","192384.0","19943.0","7242.2","69782.0","1462.0","8802.0","128625.0","11.0","0.0","0.0","0.0","41353.4","390791.0","21416.0"
"8911","Howard Electric Coop","MO","Cooperative","11.9","13.2","0.0","52001.0","0.0","52001.0","48225.0","0.0","97.0","0.0","3679.0","52001.0","6344.7","0.0","0.0","0.0","0.0","78.4","6423.1","5561.0","40465.0","3387.0","783.7","7760.0","135.0","0.0","0.0","0.0","0.0","0.0","0.0","6344.7","48225.0","3522.0"
"8924","Howard Greeley Rural P P D","NE","Political Subdivision","41.0","16.0","0.0","105225.0","0.0","105225.0","105225.0","0.0","0.0","0.0","0.0","105225.0","11150.0","0.0","0.0","0.0","0.0","0.0","11150.0","5660.0","52345.0","3250.0","1414.0","13662.0","595.0","4076.0","39218.0","1460.0","0.0","0.0","0.0","11150.0","105225.0","5305.0"
"8934","Howell-Oregon Elec Coop, Inc","MO","Cooperative","93.8","99.5","0.0","409054.0","0.0","409054.0","383696.0","0.0","489.0","0.0","24869.0","409054.0","37497.3","0.0","0.0","0.0","0.0","1127.9","38625.2","28552.6","278372.0","21827.0","5024.8","55639.0","2273.0","3919.9","49685.0","111.0","0.0","0.0","0.0","37497.3","383696.0","24211.0"
"8972","City of Hudson - (OH)","OH","Municipal","40.9","28.2","0.0","182633.0","0.0","182633.0","166862.0","0.0","4379.0","0.0","11392.0","182633.0","20781.9","0.0","0.0","0.0","0.0","0.0","20781.9","9585.3","71295.0","5864.0","11196.6","95567.0","848.0","0.0","0.0","0.0","0.0","0.0","0.0","20781.9","166862.0","6712.0"
"8973","Town of Hudson - (MA)","MA","Municipal","47.5","39.2","8009.0","196747.0","25926.0","230682.0","222832.0","0.0","0.0","200.0","7650.0","230682.0","21181.1","0.0","0.0","2058.3","0.0","0.0","23239.4","10248.5","99871.0","11242.0","3140.8","41576.0","1690.0","7791.8","81385.0","161.0","0.0","0.0","0.0","21181.1","222832.0","13093.0"
"9011","City of Hugoton - (KS)","KS","Municipal","10.7","6.5","7.0","40010.0","0.0","40017.0","36170.0","0.0","940.0","215.0","2692.0","40017.0","4442.0","0.0","0.0","0.0","0.0","146.0","4588.0","1842.0","14008.0","1599.0","2093.0","16119.0","412.0","507.0","6043.0","2.0","0.0","0.0","0.0","4442.0","36170.0","2013.0"
"9023","City of Humboldt","TN","Municipal","32.9","25.6","0.0","150331.0","0.0","150331.0","143579.0","0.0","0.0","240.0","6512.0","150331.0","13633.0","0.0","0.0","0.0","0.0","319.0","13952.0","4364.0","42355.0","3484.0","5188.0","50194.0","935.0","4081.0","51030.0","6.0","0.0","0.0","0.0","13633.0","143579.0","4425.0"
"9087","Town of Huntersville - (NC)","NC","Municipal","47.1","32.3","0.0","238316.0","0.0","238316.0","229986.0","0.0","56.0","0.0","8274.0","238316.0","17841.5","0.0","0.0","0.0","0.0","1025.0","18866.5","6668.0","58521.0","5132.0","5046.3","52006.0","540.0","6127.2","119459.0","2.0","0.0","0.0","0.0","17841.5","229986.0","5674.0"
"9094","City of Huntsville - (AL)","AL","Municipal","1089.6","1201.5","0.0","5194869.0","0.0","5194869.0","4954927.0","0.0","0.0","0.0","239942.0","5194869.0","473892.0","0.0","0.0","0.0","0.0","14425.1","488317.1","233342.0","2316742.0","160610.0","205508.0","2096280.0","21803.0","35042.0","541905.0","30.0","0.0","0.0","0.0","473892.0","4954927.0","182444.0"
"9096","City of Lafayette - (LA)","LA","Municipal","436.0","357.0","39716.0","2903774.0","0.0","2943490.0","1980653.0","898205.0","0.0","0.0","64632.0","2943490.0","171382.0","0.0","29364.0","0.0","0.0","3502.0","204248.0","71596.0","790227.0","55227.0","99786.0","1190426.0","11634.0","0.0","0.0","0.0","0.0","0.0","0.0","171382.0","1980653.0","66861.0"
"9124","Hustisford Utilities","WI","Municipal","3.9","3.4","0.0","18703.0","0.0","18703.0","17549.0","0.0","0.0","83.0","1071.0","18703.0","2310.1","0.0","0.0","0.0","0.0","22.2","2332.3","1517.2","11288.0","1343.0","792.9","6261.0","223.0","0.0","0.0","0.0","0.0","0.0","0.0","2310.1","17549.0","1566.0"
"9128","Hurricane City Power","UT","Municipal","36.9","17.9","2131.0","121141.0","-5028.0","118244.0","116997.0","0.0","0.0","1247.0","0.0","118244.0","10587.0","0.0","0.0","0.0","0.0","0.0","10587.0","5538.0","59336.0","5783.0","2315.0","24780.0","764.0","2734.0","32881.0","39.0","0.0","0.0","0.0","10587.0","116997.0","6586.0"
"9130","Hutchinson Utilities Comm","MN","Municipal","59.9","41.3","28605.0","281771.0","0.0","310376.0","278507.0","19784.0","1521.0","5020.0","5544.0","310376.0","25170.5","0.0","754.6","0.0","0.0","158.8","26083.9","5341.9","51830.0","6240.0","9050.0","93291.0","959.0","10778.6","133386.0","3.0","0.0","0.0","0.0","25170.5","278507.0","7202.0"
"9163","Hyrum City Corporation","UT","Municipal","18.4","14.9","308.0","96439.0","0.0","96747.0","90342.0","0.0","3305.0","0.0","3100.0","96747.0","6441.0","0.0","0.0","0.0","0.0","328.0","6769.0","2039.0","19810.0","2645.0","1894.0","25274.0","172.0","2508.0","45258.0","1.0","0.0","0.0","0.0","6441.0","90342.0","2818.0"
"9187","City of Idaho Falls - (ID)","ID","Municipal","114.2","144.1","262623.0","772177.0","-6604.0","1028196.0","690566.0","309386.0","0.0","0.0","28244.0","1028196.0","45091.2","0.0","5561.3","0.0","0.0","1.6","50654.1","21590.9","290498.0","23830.0","19051.3","308180.0","4137.0","4449.0","91888.0","7.0","0.0","0.0","0.0","45091.2","690566.0","27974.0"
"9191","Idaho Power Co","ID","Investor Owned","3422.0","2527.0","13687382.0","4293616.0","-17985.0","17963013.0","14570954.0","2135649.0","0.0","0.0","1256410.0","17963013.0","1216682.1","0.0","33381.9","-10706.0","42071.5","59430.8","1340860.3","552333.2999999999","5354568.0","448799.0","319194.8","4099071.0","69850.0","345154.0","5117315.0","20940.0","0.0","0.0","0.0","1216682.1","14570954.0","539589.0"
"9209","Illinois Rural Electric Coop","IL","Cooperative","46.9","37.2","3602.0","184435.0","0.0","188037.0","173998.0","0.0","0.0","0.0","14039.0","188037.0","29379.0","0.0","0.0","0.0","0.0","213.0","29592.0","21451.0","119519.0","10059.0","7928.0","54479.0","280.0","0.0","0.0","0.0","0.0","0.0","0.0","29379.0","173998.0","10339.0"
"9216","Imperial Irrigation District","CA","Political Subdivision","1073.0","686.0","1439564.0","2419029.0","21113.0","3879706.0","3441631.0","99342.0","0.0","19899.0","318834.0","3879706.0","436802.0","0.0","4628.0","0.0","26188.0","2087.0","469705.0","230978.0","1786016.0","132632.0","193620.0","1573229.0","20999.0","12204.0","82386.0","834.0","0.0","0.0","0.0","436802.0","3441631.0","154465.0"
"9217","City of Imperial","NE","Municipal","7.2","6.9","0.0","32593.0","0.0","32593.0","29232.0","0.0","0.0","0.0","3361.0","32593.0","3010.0","0.0","0.0","0.0","0.0","0.0","3010.0","1244.0","10807.0","1036.0","1350.0","14989.0","171.0","416.0","3436.0","35.0","0.0","0.0","0.0","3010.0","29232.0","1242.0"
"9230","City of Independence - (IA)","IA","Municipal","16.0","11.5","0.0","79366.0","0.0","79366.0","75931.0","0.0","0.0","161.0","3274.0","79366.0","8356.8","0.0","0.0","0.0","0.0","0.0","8356.8","2928.4","19761.0","2714.0","2986.7","27621.0","448.0","2441.7","28549.0","3.0","0.0","0.0","0.0","8356.8","75931.0","3165.0"
"9231","City of Independence - (MO)","MO","Municipal","283.1","177.0","149657.0","985145.0","883.0","1135685.0","992519.0","96756.0","0.0","1055.0","45355.0","1135685.0","130409.0","0.0","2196.8","0.0","3561.3","1830.0","137997.1","70707.5","495156.0","52099.0","54881.4","435579.0","5065.0","4820.1","61784.0","12.0","0.0","0.0","0.0","130409.0","992519.0","57176.0"
"9246","Indian Electric Coop, Inc","OK","Cooperative","100.2","108.8","0.0","521486.0","0.0","521486.0","494507.0","0.0","0.0","674.0","26305.0","521486.0","45979.2","0.0","0.0","0.0","0.0","439.9","46419.1","22231.9","208293.0","14082.0","16054.7","162480.0","5403.0","7692.6","123734.0","10.0","0.0","0.0","0.0","45979.2","494507.0","19495.0"
"9273","Indianapolis Power & Light Co","IN","Investor Owned","2505.0","2547.0","10617084.0","3323302.0","0.0","13940386.0","13216391.0","268098.0","0.0","23365.0","432532.0","13940386.0","1318478.0","0.0","8574.0","0.0","4596.0","18790.0","1350438.0","538434.0","4915435.0","437120.0","213316.0","1848907.0","49386.0","566728.0","6452049.0","4841.0","0.0","0.0","0.0","1318478.0","13216391.0","491347.0"
"9275","Indianola Municipal Utilities","IA","Municipal","33.2","16.2","-718.0","131305.0","0.0","130587.0","124408.0","0.0","0.0","0.0","6179.0","130587.0","13511.0","0.0","0.0","0.0","448.0","1066.0","15025.0","6265.0","51943.0","7291.0","4860.0","43612.0","711.0","2386.0","28853.0","12.0","0.0","0.0","0.0","13511.0","124408.0","8014.0"
"9292","Inter County Energy Coop Corp","KY","Cooperative","92.3","139.3","0.0","458939.0","0.0","458939.0","440469.0","0.0","0.0","0.0","18470.0","458939.0","45274.0","0.0","0.0","0.0","0.0","1428.0","46702.0","36670.0","325776.0","24669.0","4528.0","52843.0","1568.0","4076.0","61850.0","8.0","0.0","0.0","0.0","45274.0","440469.0","26245.0"
"9324","Indiana Michigan Power Co","IN","Investor Owned","4230.0","3795.0","23185309.0","8325176.0","0.0","31510485.0","17946571.0","11873382.0","42.0","0.0","1690490.0","31510485.0","1574958.4","0.0","442542.0","-11613.4","26863.8","18890.2","2051641.0","614666.4","5310766.0","514523.0","447269.5","4895690.0","72538.0","513022.5","7740115.0","4923.0","0.0","0.0","0.0","1574958.4","17946571.0","591984.0"
"9331","Intercounty Electric Coop Assn","MO","Cooperative","119.5","142.3","0.0","537095.0","0.0","537095.0","508735.0","0.0","1164.0","0.0","27196.0","537095.0","53558.6","0.0","0.0","0.0","0.0","992.0","54550.6","43554.4","389646.0","28539.0","7673.3","83484.0","1833.0","2330.9","35605.0","7.0","0.0","0.0","0.0","53558.6","508735.0","30379.0"
"9336","Intermountain Rural Elec Assn","CO","Cooperative","569.0","431.0","1296808.0","1118669.0","0.0","2415477.0","2312195.0","0.0","0.0","2091.0","101191.0","2415477.0","285934.0","0.0","0.0","-8377.0","0.0","2738.0","280295.0","193627.0","1478664.0","141774.0","82234.0","717702.0","12708.0","10073.0","115829.0","60.0","0.0","0.0","0.0","285934.0","2312195.0","154542.0"
"9417","Interstate Power and Light Co","IA","Investor Owned","2968.1","2421.2","9980512.0","7640647.0","865.0","17622024.0","14393847.0","3013148.0","0.0","21437.0","193592.0","17622024.0","1459624.0","0.0","133869.0","0.0","0.0","24659.0","1618152.0","535620.0","3507789.0","403160.0","464370.0","4152765.0","84944.0","459634.0","6733293.0","1501.0","0.0","0.0","0.0","1459624.0","14393847.0","489605.0"
"9418","City of Iola - (KS)","KS","Municipal","24.2","19.0","540.0","109410.0","0.0","109950.0","98189.0","0.0","0.0","0.0","11761.0","109950.0","8986.0","0.0","0.0","0.0","0.0","0.0","8986.0","3267.0","31430.0","3081.0","2975.0","29124.0","576.0","2744.0","37635.0","2.0","0.0","0.0","0.0","8986.0","98189.0","3659.0"
"9425","Iowa Lakes Electric Coop","IA","Cooperative","99.5","108.3","0.0","642428.0","0.0","642428.0","590437.0","38361.0","0.0","0.0","13630.0","642428.0","60998.1","0.0","3210.0","0.0","0.0","-389.4","63818.7","22847.8","168622.0","9247.0","15758.6","133562.0","3343.0","22391.7","288253.0","70.0","0.0","0.0","0.0","60998.1","590437.0","12660.0"
"9431","Irwin Electric Membership Corp","GA","Cooperative","64.9","46.2","0.0","203959.0","0.0","203959.0","188181.0","0.0","0.0","0.0","15778.0","203959.0","26787.4","0.0","0.0","0.0","0.0","0.0","26787.4","18694.5","129568.0","10619.0","2916.2","21940.0","393.0","5176.7","36673.0","1401.0","0.0","0.0","0.0","26787.4","188181.0","12413.0"
"9442","Town of Ipswich - (MA)","MA","Municipal","31.7","20.8","4131.0","91911.0","25213.0","121255.0","111519.0","0.0","0.0","1365.0","8371.0","121255.0","15264.0","0.0","0.0","0.0","0.0","64.0","15328.0","6704.0","47922.0","6068.0","1431.0","11030.0","841.0","7129.0","52567.0","214.0","0.0","0.0","0.0","15264.0","111519.0","7123.0"
"9475","Itasca-Mantrap Co-op Electrical Assn","MN","Cooperative","44.1","60.6","0.0","222964.0","0.0","222964.0","211008.0","0.0","0.0","503.0","11453.0","222964.0","24197.4","0.0","0.0","0.0","0.0","223.6","24421.0","15251.3","118457.0","10543.0","2183.9","17563.0","903.0","6762.2","74988.0","372.0","0.0","0.0","0.0","24197.4","211008.0","11818.0"
"9575","Jackson Energy Coop Corp - (KY)","KY","Cooperative","172.6","240.8","0.0","884344.0","0.0","884344.0","838183.0","0.0","0.0","1013.0","45148.0","884344.0","94294.0","0.0","0.0","0.0","0.0","3457.3","97751.3","75834.0","638874.0","47728.0","13557.0","128923.0","3656.0","4903.0","70386.0","7.0","0.0","0.0","0.0","94294.0","838183.0","51391.0"
"9576","Jackson County Rural E M C - (IN)","IN","Cooperative","93.0","122.6","0.0","465982.0","0.0","465982.0","443275.0","0.0","0.0","0.0","22707.0","465982.0","52510.0","0.0","0.0","0.0","0.0","833.0","53343.0","42931.0","350734.0","23331.0","5565.0","50096.0","1143.0","4014.0","42445.0","22.0","0.0","0.0","0.0","52510.0","443275.0","24496.0"
"9590","Jackson Electric Coop, Inc - (TX)","TX","Cooperative","71.0","77.0","0.0","748213.0","0.0","748213.0","731044.0","0.0","731.0","0.0","16438.0","748213.0","51638.0","0.0","0.0","0.0","0.0","264.0","51902.0","16432.0","147912.0","14149.0","5218.0","50561.0","1612.0","29988.0","532571.0","32.0","0.0","0.0","0.0","51638.0","731044.0","15793.0"
"9598","City of Jackson - (OH)","OH","Municipal","35.0","29.0","0.0","187522.0","0.0","187522.0","182937.0","0.0","1814.0","756.0","2015.0","187522.0","22375.0","0.0","0.0","0.0","0.0","0.0","22375.0","4813.0","32568.0","3365.0","6841.0","52198.0","790.0","10721.0","98171.0","11.0","0.0","0.0","0.0","22375.0","182937.0","4166.0"
"9599","City of Jackson - (MN)","MN","Municipal","9.2","8.9","0.0","44580.0","0.0","44580.0","44580.0","0.0","0.0","0.0","0.0","44580.0","5795.5","0.0","0.0","0.0","0.0","0.0","5795.5","1745.6","12941.0","1651.0","786.9","5482.0","273.0","3263.0","26157.0","49.0","0.0","0.0","0.0","5795.5","44580.0","1973.0"
"9601","Jackson Electric Member Corp - (GA)","GA","Cooperative","1177.0","1048.0","0.0","5331058.0","0.0","5331058.0","5192316.0","0.0","0.0","6098.0","132644.0","5331058.0","512576.0","0.0","0.0","0.0","0.0","12580.0","525156.0","300601.0","2883533.0","202989.0","160412.0","1533619.0","21899.0","51563.0","775164.0","199.0","0.0","0.0","0.0","512576.0","5192316.0","225087.0"
"9603","City of Jackson - (MO)","MO","Municipal","37.4","28.2","123.0","151975.0","-4317.0","147781.0","140025.0","0.0","0.0","4389.0","3367.0","147781.0","16146.3","0.0","0.0","0.0","0.0","0.0","16146.3","8564.1","71506.0","6165.0","5243.9","45718.0","863.0","2338.3","22801.0","7.0","0.0","0.0","0.0","16146.3","140025.0","7035.0"
"9605","Jackson Purchase Energy Corporation","KY","Cooperative","161.4","148.8","0.0","633547.0","0.0","633547.0","605194.0","0.0","0.0","173.0","28180.0","633547.0","69594.0","0.0","0.0","0.0","0.0","0.0","69594.0","43054.0","355608.0","25632.0","21952.0","209491.0","4364.0","4588.0","40095.0","6.0","0.0","0.0","0.0","69594.0","605194.0","30002.0"
"9612","City of Jackson - (TN)","TN","Municipal","351.4","232.9","0.0","1717180.0","0.0","1717180.0","1681239.0","0.0","0.0","0.0","35941.0","1717180.0","141447.0","0.0","0.0","0.0","0.0","5118.0","146565.0","41973.0","382170.0","29640.0","60874.0","592603.0","6361.0","38600.0","706466.0","30.0","0.0","0.0","0.0","141447.0","1681239.0","36031.0"
"9613","City of Lebanon - (IN)","IN","Municipal","44.7","36.0","0.0","223195.0","0.0","223195.0","216431.0","0.0","0.0","0.0","6764.0","223195.0","22373.7","0.0","0.0","0.0","0.0","457.3","22831.0","8239.6","71726.0","7721.0","4322.2","35163.0","1323.0","9811.9","109542.0","120.0","0.0","0.0","0.0","22373.7","216431.0","9164.0"
"9616","Beaches Energy Services","FL","Municipal","162.5","153.7","0.0","730828.0","0.0","730828.0","703946.0","0.0","0.0","0.0","26882.0","730828.0","82938.0","0.0","0.0","0.0","0.0","820385.9","903323.9","49981.3","428613.0","29972.0","32956.7","275333.0","4823.0","0.0","0.0","0.0","0.0","0.0","0.0","82938.0","703946.0","34795.0"
"9617","JEA","FL","Municipal","2682.0","2480.0","12753132.0","1698195.0","0.0","14451327.0","11825192.0","1873524.0","0.0","0.0","752611.0","14451327.0","1185944.0","0.0","147322.0","0.0","9535.1","18985.5","1361786.6","593620.9","5195715.0","407957.0","402426.1","4073635.0","55959.0","189588.0","2552295.0","199.0","309.0","3547.0","1.0","1185944.0","11825192.0","464116.0"
"9645","Jamestown Board of Public Util","NY","Municipal","76.8","87.8","153300.0","473611.0","-4637.0","622274.0","430644.0","171820.0","0.0","1048.0","18762.0","622274.0","32350.0","41.2","4993.9","0.0","0.0","1292.5","38677.6","12034.0","154704.0","16271.0","13446.0","168874.0","2625.0","6911.2","114205.0","121.0","0.0","0.0","0.0","32391.2","437783.0","19017.0"
"9664","City of Jasper - (TX)","TX","Municipal","22.3","19.5","0.0","99955.0","0.0","99955.0","90220.0","0.0","1212.0","0.0","8523.0","99955.0","11892.0","0.0","0.0","0.0","0.0","0.0","11892.0","5754.0","42575.0","3438.0","5482.0","42075.0","980.0","656.0","5570.0","5.0","0.0","0.0","0.0","11892.0","90220.0","4423.0"
"9665","Jasper County Rural E M C","IN","Cooperative","54.1","33.6","0.0","230769.0","0.0","230769.0","222409.0","0.0","0.0","0.0","8360.0","230769.0","23858.6","0.0","0.0","0.0","0.0","189.2","24047.8","12184.9","97360.0","7646.0","8383.4","78777.0","1378.0","3290.3","46272.0","2.0","0.0","0.0","0.0","23858.6","222409.0","9026.0"
"9666","Jay County Rural E M C","IN","Cooperative","31.2","30.4","0.0","187134.0","0.0","187134.0","180153.0","0.0","0.0","0.0","6981.0","187134.0","19330.0","0.0","0.0","0.0","0.0","493.0","19823.0","12510.0","89334.0","5280.0","1310.0","13253.0","53.0","5510.0","77566.0","93.0","0.0","0.0","0.0","19330.0","180153.0","5426.0"
"9667","City of Jasper - (IN)","IN","Municipal","70.0","59.8","0.0","307493.0","0.0","307493.0","296259.0","0.0","0.0","350.0","10884.0","307493.0","29427.1","0.0","0.0","0.0","0.0","159.0","29586.1","7170.0","68494.0","6004.0","11053.3","114914.0","1213.0","11203.8","112851.0","87.0","0.0","0.0","0.0","29427.1","296259.0","7304.0"
"9668","Jasper-Newton Elec Coop, Inc","TX","Cooperative","93.0","109.0","0.0","426229.0","0.0","426229.0","400016.0","0.0","982.0","0.0","25231.0","426229.0","47277.0","0.0","0.0","0.0","1104.0","-1135.0","47246.0","31339.0","243826.0","20242.0","5337.0","38688.0","2274.0","10601.0","117502.0","171.0","0.0","0.0","0.0","47277.0","400016.0","22687.0"
"9682","Jefferson Davis Elec Coop, Inc","LA","Cooperative","50.0","48.9","0.0","261935.0","0.0","261935.0","238196.0","0.0","0.0","76.0","23663.0","261935.0","23646.0","0.0","0.0","0.0","0.0","0.0","23646.0","12911.0","122752.0","8637.0","3684.0","30649.0","1379.0","7051.0","84795.0","203.0","0.0","0.0","0.0","23646.0","238196.0","10219.0"
"9689","Jefferson Electric Member Corp","GA","Cooperative","148.4","137.0","0.0","580409.0","0.0","580409.0","543219.0","0.0","0.0","1279.0","35911.0","580409.0","67017.0","0.0","0.0","0.0","0.0","3339.0","70356.0","52796.0","412559.0","31918.0","7832.0","64657.0","1814.0","6389.0","66003.0","382.0","0.0","0.0","0.0","67017.0","543219.0","34114.0"
"9690","Jefferson Utilities","WI","Municipal","19.4","16.2","0.0","98989.0","0.0","98989.0","94855.0","0.0","0.0","0.0","4134.0","98989.0","9958.6","0.0","0.0","0.0","0.0","97.9","10056.5","3395.8","28812.0","3536.0","5305.2","50578.0","605.0","1257.6","15465.0","1.0","0.0","0.0","0.0","9958.6","94855.0","4142.0"
"9697","City of Jellico","TN","Municipal","15.5","18.8","0.0","74540.0","0.0","74540.0","68732.0","0.0","0.0","0.0","5808.0","74540.0","7438.0","0.0","0.0","0.0","0.0","380.3","4640.7","4759.0","45041.0","3681.0","2679.0","23691.0","808.0","0.0","0.0","0.0","0.0","0.0","0.0","7438.0","68732.0","4489.0"
"9699","Jemez Mountains Elec Coop, Inc","NM","Cooperative","70.3","68.1","0.0","424311.0","0.0","424311.0","391271.0","2729.0","0.0","915.0","29396.0","424311.0","50699.0","0.0","237.0","0.0","0.0","2295.0","53231.0","23706.0","168713.0","27278.0","19302.0","144808.0","3746.0","7691.0","77750.0","6.0","0.0","0.0","0.0","50699.0","391271.0","31030.0"
"9726","Jersey Central Power & Lt Co","OH","Investor Owned","5721.0","3768.4","-80912.0","10951379.0","0.0","10870467.0","9761086.0","215920.0","0.0","24801.0","868660.0","10870467.0","1297534.7","384084.3","27285.7","0.0","73955.4","18241.2","1801101.3","1058603.2","9187773.0","991519.0","545750.2","8922102.0","128238.0","75323.5","2116567.0","2329.0","1942.1","93402.0","1.0","1681619.0","20319844.0","1122087.0"
"9734","City of Jewett City - (CT)","CT","Municipal","4.6","5.0","0.0","23521.0","0.0","23521.0","21945.0","0.0","0.0","61.0","1515.0","23521.0","3648.9","0.0","0.0","0.0","0.0","121.2","3770.1","2344.9","13095.0","1877.0","1274.0","8633.0","297.0","30.0","217.0","1.0","0.0","0.0","0.0","3648.9","21945.0","2175.0"
"9739","Joe Wheeler Elec Member Corp","AL","Cooperative","304.9","321.0","0.0","1684651.0","0.0","1684651.0","1627200.0","0.0","0.0","782.0","56669.0","1684651.0","141877.0","0.0","0.0","0.0","0.0","2674.2","144551.2","64084.0","546289.0","34892.0","34222.0","279185.0","8314.0","43571.0","801726.0","21.0","0.0","0.0","0.0","141877.0","1627200.0","43226.0"
"9750","Jo-Carroll Energy, Inc","IL","Cooperative","95.8","80.9","526.0","545390.0","0.0","545916.0","528613.0","0.0","0.0","928.0","16375.0","545916.0","57601.5","0.0","0.0","0.0","0.0","0.0","57601.5","23730.3","145011.0","18005.0","7156.1","72006.0","2581.0","26715.1","311596.0","382.0","0.0","0.0","0.0","57601.5","528613.0","20968.0"
"9777","Johnson City - (TN)","TN","Municipal","357.6","450.9","0.0","1884386.0","0.0","1884386.0","1815148.0","0.0","0.0","2121.0","67117.0","1884386.0","191854.0","0.0","0.0","0.0","0.0","3914.9","195768.9","104420.0","928806.0","67069.0","77054.0","740620.0","11015.0","10380.0","145722.0","18.0","0.0","0.0","0.0","191854.0","1815148.0","78102.0"
"9778","Johnson County Rural E M C","IN","Cooperative","120.8","98.9","0.0","495984.0","0.0","495984.0","474548.0","0.0","0.0","223.0","21213.0","495984.0","55058.5","0.0","0.0","0.0","0.0","312.7","55371.2","40545.8","315789.0","24046.0","9113.2","91274.0","2557.0","5399.5","67485.0","18.0","0.0","0.0","0.0","55058.5","474548.0","26621.0"
"9837","Jones-Onslow Elec Member Corp","NC","Cooperative","288.7","414.6","0.0","1237533.0","0.0","1237533.0","1161386.0","0.0","0.0","1221.0","74926.0","1237533.0","131269.1","0.0","0.0","0.0","0.0","2300.3","133569.4","104875.3","890950.0","70421.0","23420.7","235624.0","4214.0","2973.1","34812.0","4.0","0.0","0.0","0.0","131269.1","1161386.0","74639.0"
"9879","City Water and Light Plant","AR","Municipal","292.0","231.0","1279362.0","337057.0","0.0","1616419.0","1293452.0","227105.0","14698.0","25808.0","55356.0","1616419.0","84103.0","0.0","7658.0","-2179.0","0.0","4855.0","94437.0","31768.0","444419.0","31285.0","23898.0","336335.0","5338.0","28437.0","512698.0","35.0","0.0","0.0","0.0","84103.0","1293452.0","36658.0"
"9922","Jump River Electric Coop Inc","WI","Cooperative","18.2","22.4","0.0","99525.0","0.0","99525.0","92192.0","0.0","0.0","326.0","7007.0","99525.0","13618.0","0.0","0.0","0.0","0.0","0.0","13618.0","11636.0","76431.0","8822.0","1982.0","15761.0","613.0","0.0","0.0","0.0","0.0","0.0","0.0","13618.0","92192.0","9435.0"
"9936","Juneau Utility Comm","WI","Municipal","9.4","6.8","0.0","46561.0","0.0","46561.0","45119.0","0.0","0.0","0.0","1442.0","46561.0","4390.2","0.0","0.0","0.0","0.0","14.4","4404.6","820.5","7297.0","942.0","2196.0","22244.0","192.0","1373.7","15578.0","2.0","0.0","0.0","0.0","4390.2","45119.0","1136.0"
"9949","Just Energy","CN","Retail Power Marketer","0.0","0.0","0.0","4009102.0","0.0","4009102.0","4009102.0","0.0","0.0","0.0","0.0","4009102.0","477829.3","0.0","0.0","0.0","0.0","0.0","477829.3","383543.19999999995","3249305.0","247936.0","94286.1","759797.0","31262.0","0.0","0.0","0.0","0.0","0.0","0.0","477829.3","4009102.0","279198.0"
"9964","Kenergy Corp","KY","Cooperative","983.0","971.0","0.0","7166656.0","0.0","7166656.0","7108898.0","0.0","0.0","2196.0","55562.0","7166656.0","360931.0","0.0","0.0","0.0","0.0","1879.0","362810.0","83764.0","664218.0","46348.0","37227.0","314814.0","10937.0","239940.0","6129866.0","34.0","0.0","0.0","0.0","360931.0","7108898.0","57319.0"
"9991","Kandiyohi Power Coop","MN","Cooperative","27.0","28.0","0.0","165827.0","0.0","165827.0","157538.0","0.0","0.0","0.0","8289.0","165827.0","19998.0","0.0","0.0","0.0","0.0","0.0","19998.0","13510.0","100327.0","7310.0","5624.0","47681.0","982.0","864.0","9530.0","4.0","0.0","0.0","0.0","19998.0","157538.0","8296.0"
"9996","City of Kansas City - (KS)","KS","Municipal","494.0","378.0","975048.0","1269193.0","1377110.0","3621351.0","2136486.0","1285751.0","38978.0","27650.0","132486.0","3621351.0","227648.0","0.0","15566.0","0.0","0.0","1861.0","245075.0","70807.0","546327.0","58432.0","109034.0","1030932.0","6986.0","47807.0","559227.0","83.0","0.0","0.0","0.0","227648.0","2136486.0","65501.0"
"9999","Kankakee Valley Rural E M C","IN","Cooperative","83.1","51.4","0.0","295889.0","0.0","295889.0","279950.0","0.0","1395.0","0.0","14544.0","295889.0","35048.0","0.0","0.0","0.0","0.0","188.9","35236.9","26868.9","208047.0","18492.0","6244.5","51023.0","2354.0","1934.6","20880.0","11.0","0.0","0.0","0.0","35048.0","279950.0","20857.0"
"10000","Kansas City Power & Light Co","MO","Investor Owned","3475.0","2555.0","17751489.0","4210855.0","0.0","21962344.0","14534482.0","6788241.0","0.0","21757.0","617864.0","21962344.0","1741038.8","0.0","122921.7","867.3","15984.2","9892.4","1890704.4","724891.1","5181976.0","476488.0","855031.6000000001","7536528.0","61031.0","160954.0","1814779.0","1888.0","162.1","1199.0","1.0","1741038.8","14534482.0","539408.0"
"10005","Kansas Gas & Electric Co","KS","Investor Owned","2321.0","1625.0","9430777.0","2218847.0","0.0","11649624.0","9683824.0","1164054.0","0.0","5268.0","796478.0","11649624.0","960586.8","0.0","9634.2","-43507.5","142340.2","5876.4","1074930.1","390709.7","2941096.0","287662.0","312414.9","3110209.0","37030.0","257462.2","3632519.0","3392.0","0.0","0.0","0.0","960586.8","9683824.0","328084.0"
"10009","Karnes Electric Coop Inc","TX","Cooperative","192.7","182.1","0.0","1092619.0","0.0","1092619.0","1039770.0","0.0","0.0","376.0","52473.0","1092619.0","86122.0","0.0","0.0","0.0","0.0","434.0","86556.0","21293.0","220797.0","15880.0","45453.0","477134.0","4002.0","19376.0","341839.0","23.0","0.0","0.0","0.0","86122.0","1039770.0","19905.0"
"10012","Kay Electric Coop","OK","Cooperative","68.0","63.0","0.0","319527.0","0.0","319527.0","317247.0","0.0","0.0","287.0","1993.0","319527.0","26459.0","0.0","0.0","0.0","0.0","0.0","26459.0","6153.0","48319.0","4278.0","10562.0","94549.0","1508.0","9744.0","174379.0","32.0","0.0","0.0","0.0","26459.0","317247.0","5818.0"
"10019","FreeState Electric Coop","KS","Cooperative","39.2","31.0","108.0","277594.0","0.0","277702.0","259069.0","0.0","0.0","0.0","18633.0","277702.0","37802.0","0.0","0.0","0.0","0.0","2272.0","40074.0","30888.0","203236.0","16556.0","5229.0","35370.0","1356.0","1685.0","20463.0","6.0","0.0","0.0","0.0","37802.0","259069.0","17918.0"
"10056","City of Kaukauna","WI","Municipal","115.8","94.9","186959.0","486601.0","-271.0","673289.0","638253.0","14890.0","0.0","0.0","20146.0","673289.0","53653.5","0.0","1592.9","0.0","0.0","291.4","55537.8","13560.8","115709.0","13353.0","13756.8","150034.0","1811.0","26335.9","372510.0","12.0","0.0","0.0","0.0","53653.5","638253.0","15176.0"
"10057","City of Lamar - (MO)","MO","Municipal","20.2","12.2","25783.0","66587.0","-8252.0","84118.0","58334.0","0.0","0.0","788.0","24996.0","84118.0","6127.0","0.0","0.0","1974.0","0.0","0.0","8101.0","2153.0","20285.0","1991.0","3974.0","38049.0","461.0","0.0","0.0","0.0","0.0","0.0","0.0","6127.0","58334.0","2452.0"
"10063","Kaysville City Corporation","UT","Municipal","46.4","26.2","0.0","154148.0","0.0","154148.0","148585.0","0.0","0.0","0.0","5563.0","154148.0","13350.0","0.0","0.0","0.0","0.0","135.0","13485.0","9002.0","95621.0","8768.0","4216.0","51092.0","759.0","132.0","1872.0","1.0","0.0","0.0","0.0","13350.0","148585.0","9528.0"
"10065","KBR Rural Public Power District","NE","Political Subdivision","41.0","15.0","0.0","105113.0","0.0","105113.0","94256.0","0.0","0.0","0.0","10857.0","105113.0","13249.0","0.0","0.0","0.0","0.0","50.0","13299.0","4799.0","36131.0","3339.0","2674.0","22280.0","700.0","5776.0","35845.0","787.0","0.0","0.0","0.0","13249.0","94256.0","4826.0"
"10066","K C Electric Association","CO","Cooperative","56.4","25.0","0.0","192170.0","0.0","192170.0","179023.0","0.0","0.0","599.0","12548.0","192170.0","21473.1","0.0","0.0","0.0","0.0","-278.8","21194.3","4928.7","37004.0","3280.0","9893.3","85537.0","2466.0","6651.1","56482.0","718.0","0.0","0.0","0.0","21473.1","179023.0","6464.0"
"10071","Kauai Island Utility Cooperative","HI","Cooperative","74.9","72.3","294702.0","169060.0","0.0","463762.0","445098.0","0.0","0.0","2528.0","16136.0","463762.0","147375.8","0.0","0.0","0.0","0.0","474.0","147849.8","58459.4","169346.0","28766.0","39383.5","113986.0","4695.0","49532.9","161766.0","125.0","0.0","0.0","0.0","147375.8","445098.0","33586.0"
"10144","Kennebunk Light & Power Dist","ME","Municipal","21.5","19.7","729.0","97214.0","0.0","97943.0","91462.0","0.0","266.0","0.0","6215.0","97943.0","12156.0","0.0","0.0","0.0","0.0","57.0","12213.0","6298.0","47957.0","5977.0","4393.0","35217.0","973.0","1465.0","8288.0","6.0","0.0","0.0","0.0","12156.0","91462.0","6956.0"
"10152","City of Kennett - (MO)","MO","Municipal","32.7","29.0","3199.0","136622.0","0.0","139821.0","131384.0","0.0","0.0","1278.0","7159.0","139821.0","10733.5","0.0","0.0","0.0","0.0","0.0","10733.5","5382.2","66589.0","4726.0","4774.4","56712.0","597.0","576.9","8083.0","315.0","0.0","0.0","0.0","10733.5","131384.0","5638.0"
"10153","KEM Electric Coop Inc","ND","Cooperative","18.3","21.0","0.0","90284.0","0.0","90284.0","82904.0","0.0","0.0","394.0","6986.0","90284.0","10465.5","0.0","0.0","0.0","0.0","68.0","10533.5","4960.8","38919.0","2963.0","3375.0","28507.0","744.0","2129.7","15478.0","477.0","0.0","0.0","0.0","10465.5","82904.0","4184.0"
"10170","Kiamichi Electric Coop, Inc","OK","Cooperative","85.6","95.4","0.0","351571.0","0.0","351571.0","324235.0","0.0","510.0","0.0","26826.0","351571.0","36318.3","0.0","0.0","0.0","0.0","1121.8","37440.1","26296.0","224185.0","18829.0","8227.4","70600.0","2970.0","1794.9","29450.0","4.0","0.0","0.0","0.0","36318.3","324235.0","21803.0"
"10171","Kentucky Utilities Co","KY","Investor Owned","3914.0","4016.0","19702882.0","1629795.0","438008.0","21770685.0","18228738.0","2269059.0","52.0","16872.0","1255964.0","21770685.0","1583701.4","0.0","124898.4","0.0","22143.7","13589.6","1744333.1","622194.4999999999","6039478.0","452920.0","545063.4","5587564.0","94980.0","416443.5","6601696.0","2736.0","0.0","0.0","0.0","1583701.4","18228738.0","550636.0"
"10179","Kenyon Municipal Utilities","MN","Municipal","3.6","3.5","13.0","16454.0","-162.0","16305.0","15463.0","0.0","0.0","0.0","842.0","16305.0","1899.0","0.0","0.0","0.0","0.0","12.0","1911.0","871.0","6555.0","834.0","627.0","5254.0","132.0","401.0","3654.0","2.0","0.0","0.0","0.0","1899.0","15463.0","968.0"
"10210","Ketchikan Public Utilities","AK","Municipal","24.8","32.3","83006.0","98313.0","0.0","181319.0","175448.0","0.0","2331.0","101.0","3439.0","181319.0","17846.3","0.0","0.0","0.0","0.0","946.4","18792.7","7969.4","75066.0","6477.0","7719.9","76316.0","1305.0","2157.0","24066.0","17.0","0.0","0.0","0.0","17846.3","175448.0","7799.0"
"10226","City of Key West - (FL)","FL","Municipal","148.6","117.1","-2093.0","755479.0","0.0","753386.0","714631.0","0.0","0.0","4156.0","34599.0","753386.0","88401.0","0.0","0.0","0.0","0.0","1152.0","89553.0","44496.0","353756.0","25342.0","43905.0","360875.0","4517.0","0.0","0.0","0.0","0.0","0.0","0.0","88401.0","714631.0","29859.0"
"10260","City of Kimball - (NE)","NE","Municipal","4.8","4.4","52.0","21999.0","0.0","22051.0","20483.0","0.0","0.0","0.0","1568.0","22051.0","2057.6","0.0","0.0","0.0","0.0","0.0","2057.6","1018.9","9350.0","1462.0","1038.7","11133.0","428.0","0.0","0.0","0.0","0.0","0.0","0.0","2057.6","20483.0","1890.0"
"10321","City of Kingman - (KS)","KS","Municipal","11.5","6.8","3182.0","43767.0","-3759.0","43190.0","38825.0","0.0","0.0","0.0","4365.0","43190.0","4846.0","0.0","0.0","0.0","0.0","14.0","4860.0","1821.0","12836.0","1585.0","1128.0","8068.0","371.0","1897.0","17921.0","19.0","0.0","0.0","0.0","4846.0","38825.0","1975.0"
"10324","City of Kings Mountain - (NC)","NC","Municipal","31.4","23.8","0.0","156918.0","0.0","156918.0","142156.0","0.0","0.0","2604.0","12158.0","156918.0","13650.0","0.0","0.0","0.0","0.0","0.0","13650.0","5042.0","46281.0","4136.0","4208.0","43360.0","726.0","4400.0","52515.0","24.0","0.0","0.0","0.0","13650.0","142156.0","4886.0"
"10325","Kings River Conservation Dist","CA","Political Subdivision","192.0","164.0","899458.0","0.0","0.0","899458.0","899458.0","0.0","0.0","0.0","0.0","899458.0","6870.0","0.0","0.0","0.0","0.0","0.0","6870.0","0.0","0.0","0.0","6870.0","899458.0","1.0","0.0","0.0","0.0","0.0","0.0","0.0","6870.0","899458.0","1.0"
"10331","Kingsport Power Co","OH","Investor Owned","326.0","409.0","0.0","2016785.0","0.0","2016785.0","1971080.0","0.0","0.0","0.0","45705.0","2016785.0","156105.4","0.0","0.0","-115.5","4294.5","2045.4","162329.8","58503.6","637449.0","41710.0","41243.8","420021.0","5967.0","56358.0","913610.0","163.0","0.0","0.0","0.0","156105.4","1971080.0","47840.0"
"10345","City of Kinston - (NC)","NC","Municipal","92.3","83.5","0.0","465349.0","0.0","465349.0","445208.0","0.0","0.0","0.0","20141.0","465349.0","46304.0","0.0","0.0","0.0","0.0","0.0","46304.0","16282.0","124500.0","9694.0","15645.0","134892.0","1898.0","14377.0","185816.0","12.0","0.0","0.0","0.0","46304.0","445208.0","11604.0"
"10370","City of Kirkwood - (MO)","MO","Municipal","58.5","42.8","0.0","212649.0","0.0","212649.0","202311.0","0.0","0.0","0.0","10338.0","212649.0","21708.8","0.0","0.0","0.0","0.0","0.0","21708.8","10290.1","95713.0","8776.0","10385.0","99046.0","1248.0","1033.7","7552.0","1.0","0.0","0.0","0.0","21708.8","202311.0","10025.0"
"10376","Kissimmee Utility Authority","FL","Municipal","353.0","298.0","0.0","1580689.0","0.0","1580689.0","1506267.0","0.0","0.0","3482.0","70940.0","1580689.0","169828.0","0.0","0.0","989.0","0.0","17343.0","188160.0","97126.0","827838.0","61988.0","56954.0","509779.0","9723.0","15748.0","168650.0","59.0","0.0","0.0","0.0","169828.0","1506267.0","71770.0"
"10378","Kit Carson Electric Coop, Inc","NM","Cooperative","36.1","56.8","0.0","285486.0","0.0","285486.0","261230.0","0.0","0.0","614.0","23642.0","285486.0","42442.0","0.0","0.0","0.0","0.0","377.0","42819.0","23483.0","133104.0","24776.0","16250.0","107362.0","4006.0","2709.0","20764.0","10.0","0.0","0.0","0.0","42442.0","261230.0","28792.0"
"10393","PUD No 1 of Klickitat County","WA","Political Subdivision","73.7","91.6","186080.0","418873.0","0.0","604953.0","354781.0","214064.0","0.0","30502.0","5606.0","604953.0","33217.0","0.0","7730.0","0.0","352.0","0.0","41299.0","17249.0","155807.0","10567.0","10127.0","109500.0","1949.0","5841.0","89474.0","252.0","0.0","0.0","0.0","33217.0","354781.0","12768.0"
"10421","Knoxville Utilities Board","TN","Municipal","1074.6","1122.9","0.0","5420385.0","0.0","5420385.0","5220775.0","0.0","0.0","0.0","199610.0","5420385.0","522324.0","0.0","0.0","0.0","0.0","12529.9","534853.9","243329.0","2294968.0","178043.0","238735.0","2278404.0","23784.0","40260.0","647403.0","30.0","0.0","0.0","0.0","522324.0","5220775.0","201857.0"
"10433","Kodiak Electric Assn Inc","AK","Cooperative","26.1","28.0","160866.0","0.0","0.0","160866.0","150829.0","0.0","0.0","709.0","9328.0","160866.0","24389.0","0.0","0.0","0.0","0.0","0.0","24389.0","6241.0","36274.0","4756.0","3624.0","21604.0","1033.0","14524.0","92951.0","106.0","0.0","0.0","0.0","24389.0","150829.0","5895.0"
"10448","Kosciusko County Rural E M C","IN","Cooperative","89.5","70.9","0.0","483663.0","0.0","483663.0","467398.0","0.0","933.0","0.0","15332.0","483663.0","47885.3","0.0","0.0","0.0","0.0","723.1","48608.4","21519.1","180825.0","16866.0","0.0","0.0","0.0","26366.2","286573.0","1368.0","0.0","0.0","0.0","47885.3","467398.0","18234.0"
"10451","Kotzebue Electric Assn Inc","AK","Cooperative","3.0","3.4","22096.0","0.0","0.0","22096.0","19408.0","0.0","0.0","629.0","2059.0","22096.0","7026.3","0.0","0.0","0.0","0.0","0.0","7026.3","2708.6","7151.0","1135.0","4317.7","12257.0","114.0","0.0","0.0","0.0","0.0","0.0","0.0","7026.3","19408.0","1249.0"
"10454","Kootenai Electric Coop Inc","ID","Cooperative","95.7","113.9","12671.0","488190.0","0.0","500861.0","470030.0","11893.0","0.0","1022.0","17916.0","500861.0","43680.1","0.0","882.5","0.0","115726.8","648.4","160937.8","31911.899999999998","328403.0","22870.0","10021.1","111657.0","1741.0","1747.1000000000001","29970.0","45.0","0.0","0.0","0.0","43680.1","470030.0","24656.0"
"10508","Village of L'Anse - (MI)","MI","Municipal","2.4","2.9","0.0","12557.0","0.0","12557.0","11632.0","0.0","0.0","0.0","925.0","12557.0","1584.4","0.0","0.0","0.0","0.0","0.0","1584.4","697.5","4797.0","989.0","886.9","6835.0","195.0","0.0","0.0","0.0","0.0","0.0","0.0","1584.4","11632.0","1184.0"
"10539","La Plata Electric Assn, Inc","CO","Cooperative","135.7","148.8","0.0","973938.0","0.0","973938.0","930987.0","432.0","0.0","1906.0","40613.0","973938.0","104721.5","0.0","68.1","0.0","0.0","1501.3","106290.9","43219.9","280953.0","36015.0","32065.9","265984.0","6441.0","29435.7","384050.0","197.0","0.0","0.0","0.0","104721.5","930987.0","42653.0"
"10550","McCook Public Power District","NE","Political Subdivision","51.0","29.1","0.0","192227.0","0.0","192227.0","175868.0","4520.0","0.0","4314.0","7525.0","192227.0","17092.5","0.0","385.9","0.0","0.0","72.3","17550.7","5374.7","38644.0","3751.0","2450.4","22168.0","339.0","9267.4","115056.0","933.0","0.0","0.0","0.0","17092.5","175868.0","5023.0"
"10558","LaCreek Electric Assn, Inc","SD","Cooperative","20.2","29.6","0.0","134254.0","0.0","134254.0","121295.0","0.0","372.0","0.0","12587.0","134254.0","13103.6","0.0","0.0","0.0","0.0","1008.0","14111.6","8201.5","71656.0","5846.0","4046.6","41298.0","752.0","855.5","8341.0","122.0","0.0","0.0","0.0","13103.6","121295.0","6720.0"
"10562","Lagrange County Rural E M C","IN","Cooperative","24.8","16.9","0.0","100135.0","0.0","100135.0","93859.0","0.0","0.0","401.0","5875.0","100135.0","12072.0","0.0","0.0","0.0","0.0","184.0","12256.0","8630.0","59721.0","6751.0","2188.0","22080.0","196.0","1254.0","12058.0","246.0","0.0","0.0","0.0","12072.0","93859.0","7193.0"
"10579","City of LaFollette","TN","Municipal","86.2","103.1","0.0","406559.0","0.0","406559.0","381605.0","0.0","0.0","633.0","24321.0","406559.0","45803.0","0.0","0.0","0.0","0.0","1568.0","47371.0","28168.0","235666.0","19092.0","15808.0","123215.0","3006.0","1827.0","22724.0","3.0","0.0","0.0","0.0","45803.0","381605.0","22101.0"
"10585","City of La Grange - (GA)","GA","Municipal","99.5","86.3","0.0","530643.0","0.0","530643.0","499502.0","0.0","0.0","0.0","31141.0","530643.0","43936.0","0.0","0.0","0.0","0.0","3895.0","47831.0","13561.0","125850.0","11276.0","15477.0","156694.0","1812.0","14898.0","216958.0","57.0","0.0","0.0","0.0","43936.0","499502.0","13145.0"
"10595","City of Lake City - (MN)","MN","Municipal","28.0","23.8","0.0","145014.0","0.0","145014.0","145014.0","0.0","0.0","0.0","0.0","145014.0","13547.0","0.0","0.0","0.0","0.0","0.0","13547.0","2489.0","22331.0","2879.0","1941.0","17263.0","355.0","9117.0","105420.0","7.0","0.0","0.0","0.0","13547.0","145014.0","3241.0"
"10596","City of Lake Crystal - (MN)","MN","Municipal","4.2","3.0","3241.0","17433.0","0.0","20674.0","15820.0","0.0","0.0","0.0","4854.0","20674.0","2708.0","0.0","0.0","0.0","0.0","0.0","2708.0","1414.0","7666.0","1031.0","1294.0","8154.0","176.0","0.0","0.0","0.0","0.0","0.0","0.0","2708.0","15820.0","1207.0"
"10599","Lake Region Electric Coop, Inc - (OK)","OK","Cooperative","103.1","100.0","0.0","389062.0","0.0","389062.0","369443.0","0.0","0.0","749.0","18870.0","389062.0","38775.6","0.0","0.0","0.0","0.0","679.0","39454.6","31655.0","295186.0","22902.0","3724.3","36878.0","1620.0","3396.3","37379.0","127.0","0.0","0.0","0.0","38775.6","369443.0","24649.0"
"10603","Laclede Electric Coop, Inc","MO","Cooperative","143.2","197.2","0.0","630563.0","0.0","630563.0","589716.0","0.0","0.0","1883.0","38964.0","630563.0","59789.9","0.0","0.0","0.0","0.0","3608.7","63398.6","47317.1","463922.0","33604.0","10390.4","102982.0","3263.0","2082.4","22812.0","14.0","0.0","0.0","0.0","59789.9","589716.0","36881.0"
"10605","Lake Mills Light & Water","WI","Municipal","14.8","10.5","0.0","64928.0","0.0","64928.0","62198.0","0.0","0.0","86.0","2644.0","64928.0","7927.1","0.0","0.0","0.0","0.0","51.3","7978.4","3681.5","26394.0","3724.0","4245.6","35804.0","456.0","0.0","0.0","0.0","0.0","0.0","0.0","7927.1","62198.0","4180.0"
"10606","City of Lake Mills","IA","Municipal","5.7","4.6","122.0","25512.0","0.0","25634.0","23510.0","0.0","396.0","1728.0","0.0","25634.0","2528.8","0.0","0.0","0.0","0.0","10.8","2539.6","974.5","8277.0","1070.0","550.6","6638.0","154.0","1003.7","8595.0","24.0","0.0","0.0","0.0","2528.8","23510.0","1248.0"
"10610","Lake Placid Village, Inc - (NY)","NY","Municipal","15.2","34.3","0.0","168418.0","0.0","168418.0","161223.0","0.0","278.0","0.0","6917.0","168418.0","8065.0","0.0","0.0","0.0","0.0","124.1","8189.1","3848.7","73795.0","4011.0","4216.3","87428.0","936.0","0.0","0.0","0.0","0.0","0.0","0.0","8065.0","161223.0","4947.0"
"10618","Lake Region Electric Cooperative - (MN)","MN","Cooperative","66.3","73.5","81.0","457396.0","0.0","457477.0","427941.0","0.0","0.0","1078.0","28458.0","457477.0","49311.1","0.0","0.0","0.0","0.0","79.3","49390.4","38223.7","314310.0","25276.0","9732.5","102472.0","1894.0","1354.9","11159.0","666.0","0.0","0.0","0.0","49311.1","427941.0","27836.0"
"10620","City of Lake Worth - (FL)","FL","Municipal","96.0","83.2","4916.0","470409.0","0.0","475325.0","439747.0","0.0","0.0","0.0","35578.0","475325.0","41619.0","0.0","0.0","0.0","0.0","0.0","41619.0","24686.0","255928.0","23357.0","16933.0","183819.0","3748.0","0.0","0.0","0.0","0.0","0.0","0.0","41619.0","439747.0","27105.0"
"10623","City of Lakeland - (FL)","FL","Municipal","642.8","538.7","2449392.0","72877.0","602359.0","3124628.0","3017651.0","0.0","0.0","0.0","106977.0","3124628.0","284333.2","0.0","0.0","6514.7","914030.0","7529.5","1212407.4","154675.2","1460335.0","107703.0","83598.1","880744.0","21330.0","46059.9","676572.0","79.0","0.0","0.0","0.0","284333.2","3017651.0","129112.0"
"10624","Southern Rivers Energy","GA","Cooperative","78.4","98.1","0.0","335037.0","0.0","335037.0","315047.0","0.0","0.0","506.0","19484.0","335037.0","38707.5","0.0","0.0","0.0","0.0","941.2","39648.7","32787.0","258483.0","18128.0","4012.5","31589.0","1060.0","1908.0","24975.0","9.0","0.0","0.0","0.0","38707.5","315047.0","19197.0"
"10625","Lamb County Electric Coop, Inc","TX","Cooperative","92.7","39.6","0.0","305996.0","0.0","305996.0","277089.0","0.0","569.0","0.0","28338.0","305996.0","31735.0","0.0","0.0","0.0","0.0","-68.0","31667.0","3967.0","32117.0","2688.0","6354.0","57950.0","1404.0","21414.0","187022.0","7080.0","0.0","0.0","0.0","31735.0","277089.0","11172.0"
"10627","Lakeview Light & Power","WA","Cooperative","37.3","58.1","0.0","271338.0","0.0","271338.0","264148.0","0.0","161.0","0.0","7029.0","271338.0","23553.0","0.0","0.0","0.0","0.0","937.6","24490.6","10255.0","113250.0","7921.0","8087.0","87197.0","2108.0","5211.0","63701.0","58.0","0.0","0.0","0.0","23553.0","264148.0","10087.0"
"10629","City of Lakota - (ND)","ND","Municipal","1.8","4.1","0.0","14757.0","-134.0","14623.0","12956.0","0.0","0.0","0.0","1667.0","14623.0","1149.0","0.0","0.0","0.0","0.0","0.0","1149.0","586.0","6885.0","400.0","440.0","5362.0","144.0","123.0","709.0","6.0","0.0","0.0","0.0","1149.0","12956.0","550.0"
"10632","Lake Region Electric Assn, Inc - (SD)","SD","Cooperative","25.9","35.2","0.0","198451.0","0.0","198451.0","192402.0","0.0","0.0","322.0","5727.0","198451.0","18400.0","0.0","0.0","0.0","0.0","47.0","18447.0","6788.0","54488.0","3309.0","2239.0","25207.0","143.0","9373.0","112707.0","6.0","0.0","0.0","0.0","18400.0","192402.0","3458.0"
"10649","Lamar County Elec Coop Assn","TX","Cooperative","55.0","57.0","0.0","218511.0","0.0","218511.0","199600.0","0.0","0.0","0.0","18911.0","218511.0","25561.0","0.0","0.0","0.0","111.0","139.0","25811.0","18089.0","137493.0","11697.0","7472.0","62107.0","785.0","0.0","0.0","0.0","0.0","0.0","0.0","25561.0","199600.0","12482.0"
"10650","City of Lamoni - (IA)","IA","Municipal","5.3","4.0","60.0","24110.0","0.0","24170.0","22170.0","0.0","0.0","0.0","2000.0","24170.0","2279.0","0.0","0.0","0.0","0.0","0.0","2279.0","892.0","8103.0","921.0","1288.0","13072.0","165.0","99.0","995.0","6.0","0.0","0.0","0.0","2279.0","22170.0","1092.0"
"10656","City of Lampasas - (TX)","TX","Municipal","26.0","27.0","0.0","108753.0","0.0","108753.0","101410.0","0.0","0.0","0.0","7343.0","108753.0","10664.0","0.0","0.0","0.0","0.0","0.0","10664.0","4799.0","41625.0","3402.0","5865.0","59785.0","906.0","0.0","0.0","0.0","0.0","0.0","0.0","10664.0","101410.0","4308.0"
"10668","Licking Rural Electric Inc","OH","Cooperative","79.8","77.7","0.0","383524.0","0.0","383524.0","358238.0","0.0","0.0","0.0","25286.0","383524.0","51506.0","0.0","0.0","0.0","0.0","860.0","52366.0","43395.0","298990.0","23946.0","4080.0","26932.0","1583.0","4031.0","32316.0","42.0","0.0","0.0","0.0","51506.0","358238.0","25571.0"
"10681","Lane Electric Coop Inc","OR","Cooperative","36.6","79.9","35.0","258299.0","0.0","258334.0","244017.0","0.0","0.0","0.0","14317.0","258334.0","26070.0","0.0","0.0","0.0","0.0","0.0","26070.0","21806.2","201260.0","11766.0","3897.7","38341.0","992.0","366.1","4416.0","1.0","0.0","0.0","0.0","26070.0","244017.0","12759.0"
"10697","Lake Country Power","MN","Cooperative","88.2","183.2","0.0","680427.0","0.0","680427.0","600047.0","37051.0","0.0","1424.0","41905.0","680427.0","86491.6","0.0","2697.3","0.0","0.0","797.8","89986.7","70248.4","472150.0","45444.0","15529.1","120469.0","3654.0","714.1","7428.0","2.0","0.0","0.0","0.0","86491.6","600047.0","49100.0"
"10702","Borough of Lansdale","PA","Municipal","26.8","21.0","0.0","133387.0","0.0","133387.0","111796.0","0.0","12146.0","0.0","9445.0","133387.0","19525.0","0.0","0.0","0.0","0.0","0.0","19525.0","8923.0","47165.0","7040.0","7842.0","49679.0","1108.0","2760.0","14952.0","26.0","0.0","0.0","0.0","19525.0","111796.0","8174.0"
"10704","City of Lansing - (MI)","MI","Municipal","425.6","319.7","1802325.0","1009919.0","0.0","2812244.0","2096596.0","633132.0","0.0","0.0","82516.0","2812244.0","273808.0","0.0","24718.0","0.0","0.0","7460.0","305986.0","82605.0","558385.0","84241.0","149994.0","1150153.0","12711.0","41209.0","388058.0","233.0","0.0","0.0","0.0","273808.0","2096596.0","97185.0"
"10713","City of Larned - (KS)","KS","Municipal","12.0","6.6","294.0","42699.0","0.0","42993.0","38814.0","0.0","188.0","1806.0","2185.0","42993.0","4752.0","0.0","0.0","0.0","0.0","408.0","5160.0","2424.0","18547.0","2107.0","2127.0","18523.0","394.0","201.0","1744.0","14.0","0.0","0.0","0.0","4752.0","38814.0","2515.0"
"10724","Lassen Municipal Utility District","CA","Municipal","28.8","30.5","0.0","140635.0","0.0","140635.0","128445.0","0.0","0.0","291.0","11899.0","140635.0","19758.6","0.0","0.0","0.0","145.4","0.0","19904.0","11190.0","71285.0","9032.0","7078.8","47516.0","2856.0","1489.8","9644.0","125.0","0.0","0.0","0.0","19758.6","128445.0","12013.0"
"10728","Lane-Scott Electric Coop, Inc","KS","Cooperative","29.0","20.0","0.0","150190.0","0.0","150190.0","129976.0","9592.0","0.0","66.0","10556.0","150190.0","16010.0","0.0","759.0","0.0","0.0","17.0","16786.0","2942.0","23067.0","2328.0","11614.0","97027.0","2141.0","1454.0","9882.0","1365.0","0.0","0.0","0.0","16010.0","129976.0","5834.0"
"10768","Laurens Electric Coop, Inc","SC","Cooperative","279.0","229.0","0.0","1073955.0","0.0","1073955.0","1023921.0","0.0","0.0","1660.0","48374.0","1073955.0","125944.0","0.0","0.0","0.0","0.0","907.0","126851.0","87671.0","674449.0","51592.0","25768.0","209185.0","5730.0","12505.0","140287.0","32.0","0.0","0.0","0.0","125944.0","1023921.0","57354.0"
"10769","City of Laurens - (IA)","IA","Municipal","5.3","7.0","28049.0","14940.0","0.0","42989.0","24497.0","17014.0","0.0","0.0","1478.0","42989.0","2178.0","0.0","455.0","567.0","0.0","618.0","3818.0","897.0","10058.0","655.0","262.0","2184.0","132.0","1019.0","12255.0","29.0","0.0","0.0","0.0","2178.0","24497.0","816.0"
"10770","City of Laurinburg - (NC)","NC","Municipal","29.0","28.8","0.0","141434.0","0.0","141434.0","131294.0","0.0","48.0","0.0","10092.0","141434.0","14461.4","0.0","0.0","0.0","0.0","164.8","14626.2","6220.5","51423.0","4638.0","7792.7","74581.0","970.0","448.2","5290.0","3.0","0.0","0.0","0.0","14461.4","131294.0","5611.0"
"10798","Lawrenceburg Municipal Utils","IN","Municipal","27.7","24.2","0.0","154349.0","0.0","154349.0","147044.0","0.0","0.0","0.0","7305.0","154349.0","15202.0","0.0","0.0","0.0","0.0","121.0","15323.0","3023.0","28549.0","2693.0","2101.0","15017.0","671.0","10078.0","103478.0","98.0","0.0","0.0","0.0","15202.0","147044.0","3462.0"
"10799","City of Lawrenceburg","TN","Municipal","102.8","101.6","0.0","483052.0","0.0","483052.0","459583.0","0.0","0.0","646.0","22823.0","483052.0","49491.0","0.0","0.0","0.0","0.0","1037.6","50528.6","25717.0","237189.0","17107.0","17296.0","143176.0","3141.0","6478.0","79218.0","9.0","0.0","0.0","0.0","49491.0","459583.0","20256.0"
"10800","City of Lawrenceville - (GA)","GA","Municipal","71.4","51.5","0.0","332420.0","0.0","332420.0","313756.0","0.0","18664.0","0.0","0.0","332420.0","31869.0","0.0","0.0","0.0","0.0","0.0","31869.0","11789.0","100564.0","9566.0","20013.0","212482.0","1690.0","67.0","710.0","3.0","0.0","0.0","0.0","31869.0","313756.0","11259.0"
"10814","City of Le Sueur - (MN)","MN","Municipal","18.0","14.0","0.0","97731.0","0.0","97731.0","95637.0","0.0","0.0","0.0","2094.0","97731.0","9245.0","0.0","0.0","0.0","0.0","0.0","9245.0","2070.0","14972.0","1850.0","826.0","6845.0","310.0","6349.0","73820.0","56.0","0.0","0.0","0.0","9245.0","95637.0","2216.0"
"10817","Lea County Electric Coop, Inc","NM","Cooperative","204.8","166.1","0.0","1320819.0","0.0","1320819.0","1242846.0","0.0","774.0","0.0","77199.0","1320819.0","91114.0","0.0","0.0","0.0","0.0","779.0","91893.0","9714.0","103086.0","8691.0","56548.0","715207.0","7116.0","24852.0","424553.0","24.0","0.0","0.0","0.0","91114.0","1242846.0","15831.0"
"10830","City of Lebanon - (OH)","OH","Municipal","68.6","59.2","0.0","375201.0","0.0","375201.0","352670.0","0.0","2123.0","530.0","19878.0","375201.0","31534.0","0.0","0.0","0.0","0.0","205.0","31739.0","9160.0","82499.0","8210.0","1614.0","14433.0","621.0","20760.0","255738.0","468.0","0.0","0.0","0.0","31534.0","352670.0","9299.0"
"10832","City of Lebanon - (MO)","MO","Municipal","56.7","57.5","0.0","276353.0","0.0","276353.0","242898.0","0.0","0.0","1740.0","31715.0","276353.0","23083.0","0.0","0.0","0.0","0.0","0.0","23083.0","7624.0","74780.0","5798.0","5143.0","52991.0","917.0","10316.0","115127.0","47.0","0.0","0.0","0.0","23083.0","242898.0","6762.0"
"10857","Lee County Electric Coop, Inc","FL","Cooperative","876.9","653.6","0.0","3994543.0","0.0","3994543.0","3809847.0","0.0","0.0","4462.0","180234.0","3994543.0","391872.3","0.0","0.0","0.0","0.0","14006.0","405878.3","287185.4","2635807.0","195204.0","104686.9","1174040.0","18432.0","0.0","0.0","0.0","0.0","0.0","0.0","391872.3","3809847.0","213636.0"
"10868","City of Leesburg - (FL)","FL","Municipal","110.6","87.4","0.0","489855.0","0.0","489855.0","474093.0","0.0","0.0","0.0","15762.0","489855.0","55220.8","0.0","0.0","0.0","0.0","0.0","55220.8","28701.4","227627.0","21338.0","25012.1","234248.0","4482.0","1507.3","12218.0","1.0","0.0","0.0","0.0","55220.8","474093.0","25821.0"
"10879","Lehi City Corporation","UT","Municipal","103.1","57.6","0.0","386194.0","0.0","386194.0","355615.0","0.0","0.0","0.0","30579.0","386194.0","32001.1","0.0","0.0","0.0","0.0","0.0","32001.1","15262.4","174067.0","18073.0","16738.7","181548.0","1997.0","0.0","0.0","0.0","0.0","0.0","0.0","32001.1","355615.0","20070.0"
"10906","City of Lenoir - (TN)","TN","Municipal","378.8","326.3","0.0","1647370.0","0.0","1647370.0","1576099.0","0.0","0.0","826.0","70446.0","1647370.0","157603.0","0.0","0.0","0.0","0.0","2714.6","160317.6","81014.0","801083.0","52133.0","73323.0","724864.0","12261.0","3266.0","50152.0","6.0","0.0","0.0","0.0","157603.0","1576099.0","64400.0"
"10908","City of Lenox - (IA)","IA","Municipal","3.5","3.2","1506.0","15865.0","0.0","17371.0","16157.0","0.0","176.0","185.0","853.0","17371.0","1537.6","0.0","0.0","0.0","0.0","70.0","1607.6","693.6","6821.0","607.0","844.0","9336.0","144.0","0.0","0.0","0.0","0.0","0.0","0.0","1537.6","16157.0","751.0"
"10944","PUD No 1 of Lewis County","WA","Political Subdivision","133.0","261.0","90.0","1293269.0","0.0","1293359.0","954331.0","292586.0","0.0","1313.0","45129.0","1293359.0","66335.4","0.0","4208.2","0.0","1619.8","899.0","73062.4","36251.8","463420.0","26465.0","15359.7","223954.0","5357.0","14723.9","266957.0","189.0","0.0","0.0","0.0","66335.4","954331.0","32011.0"
"10960","City of Lewisburg - (TN)","TN","Municipal","59.6","53.8","0.0","340458.0","0.0","340458.0","331687.0","0.0","0.0","319.0","8452.0","340458.0","26392.0","0.0","0.0","0.0","0.0","400.9","26792.9","6324.0","62256.0","4627.0","9964.0","96537.0","1534.0","10104.0","172894.0","7.0","0.0","0.0","0.0","26392.0","331687.0","6168.0"
"10962","Lewis County Rural E C A","MO","Cooperative","27.1","25.4","0.0","121800.0","0.0","121800.0","110164.0","0.0","0.0","145.0","11491.0","121800.0","14494.1","0.0","0.0","0.0","0.0","94.7","14588.8","10648.5","75296.0","6374.0","2532.9","20664.0","746.0","1312.7","14204.0","11.0","0.0","0.0","0.0","14494.1","110164.0","7131.0"
"10966","City of Lexington - (NC)","NC","Municipal","86.5","95.3","0.0","398324.0","0.0","398324.0","375608.0","0.0","0.0","0.0","22716.0","398324.0","48856.5","0.0","0.0","0.0","0.0","299.8","49156.3","28081.0","206510.0","16547.0","17991.8","140298.0","2112.0","2783.7","28800.0","33.0","0.0","0.0","0.0","48856.5","375608.0","18692.0"
"10967","City of Lexington - (NE)","NE","Municipal","42.4","39.6","0.0","223873.0","0.0","223873.0","217104.0","0.0","0.0","0.0","6769.0","223873.0","17499.1","0.0","0.0","0.0","0.0","68.3","17567.4","5068.8","49895.0","3494.0","3948.9","40427.0","706.0","8481.4","126782.0","5.0","0.0","0.0","0.0","17499.1","217104.0","4205.0"
"10968","City of Lexington - (TN)","TN","Municipal","110.3","77.4","0.0","442033.0","0.0","442033.0","414331.0","0.0","0.0","493.0","27209.0","442033.0","45257.0","0.0","0.0","0.0","0.0","836.4","46093.4","24141.0","220351.0","17790.0","17408.0","153713.0","4710.0","3708.0","40267.0","7.0","0.0","0.0","0.0","45257.0","414331.0","22507.0"
"10982","City of Liberty - (TX)","TX","Municipal","23.2","21.2","0.0","171660.0","0.0","171660.0","170447.0","0.0","243.0","970.0","0.0","171660.0","15739.8","0.0","0.0","0.0","0.0","0.0","15739.8","4304.2","38686.0","2841.0","11435.6","131761.0","822.0","0.0","0.0","0.0","0.0","0.0","0.0","15739.8","170447.0","3663.0"
"11011","Licking Valley Rural E C C","KY","Cooperative","50.0","59.0","0.0","247024.0","0.0","247024.0","234176.0","0.0","0.0","0.0","12848.0","247024.0","26558.0","0.0","0.0","0.0","0.0","352.0","26910.0","21056.0","180990.0","16237.0","4371.0","39446.0","1097.0","1131.0","13740.0","8.0","0.0","0.0","0.0","26558.0","234176.0","17342.0"
"11014","Lighthouse Electric Coop, Inc","TX","Cooperative","89.3","35.0","0.0","215465.0","0.0","215465.0","192259.0","0.0","0.0","0.0","23206.0","215465.0","21566.0","0.0","0.0","0.0","0.0","185.1","21751.1","3638.0","23950.0","3726.0","2077.7","17376.0","381.0","15850.3","150933.0","5074.0","0.0","0.0","0.0","21566.0","192259.0","9181.0"
"11018","Lincoln Electric System","NE","Municipal","763.0","572.0","1542782.0","3124579.0","0.0","4667361.0","3194682.0","1380272.0","0.0","4851.0","87556.0","4667361.0","267817.9","0.0","38947.4","0.0","2951.9","11832.4","321549.6","118365.1","1208376.0","121614.0","117041.9","1512010.0","16692.0","32410.9","474296.0","176.0","0.0","0.0","0.0","267817.9","3194682.0","138482.0"
"11019","Little River Electric Coop Inc","SC","Cooperative","48.7","65.5","0.0","192532.0","0.0","192532.0","179682.0","0.0","158.0","0.0","12692.0","192532.0","26262.9","0.0","0.0","0.0","0.0","475.9","26738.8","20845.3","142659.0","11892.0","5417.6","37023.0","2327.0","0.0","0.0","0.0","0.0","0.0","0.0","26262.9","179682.0","14219.0"
"11022","Lincoln Electric Coop, Inc","MT","Cooperative","12.6","39.7","0.0","130473.0","0.0","130473.0","120587.0","0.0","380.0","0.0","9506.0","130473.0","10785.0","0.0","0.0","0.0","0.0","58.0","10843.0","7935.0","84895.0","5133.0","2331.0","29552.0","723.0","519.0","6140.0","2.0","0.0","0.0","0.0","10785.0","120587.0","5858.0"
"11053","Linn County REC","IA","Cooperative","111.0","88.0","0.0","466347.0","0.0","466347.0","446389.0","0.0","0.0","0.0","19958.0","466347.0","49265.0","0.0","0.0","0.0","0.0","69.0","49334.0","32620.0","270376.0","25337.0","4938.0","41117.0","3529.0","11707.0","134896.0","158.0","0.0","0.0","0.0","49265.0","446389.0","29024.0"
"11064","Litchfield Public Utilities","MN","Municipal","22.4","21.0","351.0","128295.0","0.0","128646.0","121544.0","0.0","0.0","1242.0","5860.0","128646.0","9725.0","0.0","0.0","0.0","0.0","0.0","9725.0","2810.0","31405.0","2726.0","2662.0","29985.0","465.0","4253.0","60154.0","10.0","0.0","0.0","0.0","9725.0","121544.0","3201.0"
"11085","Town of Littleton - (MA)","MA","Municipal","54.8","43.9","0.0","275710.0","7396.0","283106.0","273012.0","0.0","0.0","1019.0","9075.0","283106.0","30457.5","0.0","0.0","0.0","0.0","358.8","30816.3","7078.4","62684.0","6380.0","4575.7","36531.0","758.0","18803.4","173797.0","33.0","0.0","0.0","0.0","30457.5","273012.0","7171.0"
"11118","Lockhart Power Co","SC","Investor Owned","68.4","63.6","70767.0","324993.0","0.0","395760.0","193491.0","183256.0","0.0","395.0","18618.0","395760.0","18149.0","0.0","12732.0","0.0","0.0","254.0","31135.0","8166.9","61916.0","4925.0","2418.2","17355.0","1248.0","7563.9","114220.0","10.0","0.0","0.0","0.0","18149.0","193491.0","6183.0"
"11119","City of Lockhart - (TX)","TX","Municipal","30.8","24.0","0.0","114910.0","-6895.0","108015.0","103836.0","0.0","1936.0","1174.0","1069.0","108015.0","10726.2","0.0","0.0","0.0","0.0","0.0","10726.2","6172.3","59426.0","4548.0","3442.7","32270.0","821.0","1111.2","12140.0","14.0","0.0","0.0","0.0","10726.2","103836.0","5383.0"
"11124","City of Lodi - (CA)","CA","Municipal","130.9","60.2","0.0","444074.0","0.0","444074.0","429079.0","0.0","2499.0","0.0","12496.0","444074.0","67894.0","0.0","0.0","0.0","0.0","0.0","67894.0","27418.7","156857.0","21940.0","26273.9","155748.0","2124.0","14201.4","116474.0","29.0","0.0","0.0","0.0","67894.0","429079.0","24093.0"
"11125","City of Lodi - (WI)","WI","Municipal","6.7","4.6","6.0","28768.0","0.0","28774.0","27759.0","0.0","0.0","19.0","996.0","28774.0","3258.9","0.0","0.0","0.0","0.0","30.4","3289.3","1373.5","10779.0","1446.0","1885.4","16980.0","285.0","0.0","0.0","0.0","0.0","0.0","0.0","3258.9","27759.0","1731.0"
"11135","City of Logan - (UT)","UT","Municipal","91.9","68.6","36460.0","392089.0","-12548.0","416001.0","413445.0","0.0","0.0","0.0","2556.0","416001.0","35214.8","0.0","0.0","0.0","0.0","0.0","35214.8","10432.2","100883.0","17647.0","18331.8","213830.0","2410.0","6450.8","98732.0","7.0","0.0","0.0","0.0","35214.8","413445.0","20064.0"
"11142","City of Logansport - (IN)","IN","Municipal","80.0","60.7","433528.0","0.0","0.0","433528.0","414490.0","0.0","0.0","0.0","19038.0","433528.0","40164.0","0.0","0.0","0.0","0.0","395.0","40559.0","10702.0","93276.0","10963.0","7611.0","72140.0","1515.0","21851.0","249074.0","66.0","0.0","0.0","0.0","40164.0","414490.0","12544.0"
"11148","City of Lompoc - (CA)","CA","Municipal","22.3","22.2","0.0","137210.0","0.0","137210.0","132573.0","0.0","0.0","0.0","4637.0","137210.0","22078.5","0.0","0.0","0.0","0.0","110.0","22188.5","8522.4","54820.0","13165.0","8565.7","44724.0","1725.0","4990.4","33029.0","27.0","0.0","0.0","0.0","22078.5","132573.0","14917.0"
"11171","Long Island Power Authority","NY","State","5134.0","3206.0","2015781.0","16252328.0","0.0","18268109.0","17225147.0","0.0","276.0","44950.0","997736.0","18268109.0","3308794.1","100418.6","0.0","-16355.6","3553.5","85202.2","3481612.8","1796964.6","9088624.0","1008493.0","1566609.0","9641241.0","119151.0","0.0","0.0","0.0","45639.1","317348.0","1.0","3409212.7","19047213.0","1127645.0"
"11187","City of Longmont","CO","Municipal","182.8","127.5","830.0","800576.0","0.0","801406.0","784188.0","0.0","7013.0","0.0","10205.0","801406.0","65940.2","0.0","0.0","-78.4","0.0","4304.2","70166.0","29478.2","303492.0","36392.0","28409.4","362303.0","2816.0","8052.6","118393.0","9.0","0.0","0.0","0.0","65940.2","784188.0","39217.0"
"11200","Lorain-Medina R E C, Inc","OH","Cooperative","58.5","67.6","0.0","327341.0","0.0","327341.0","309539.0","0.0","0.0","0.0","17802.0","327341.0","36187.0","0.0","0.0","0.0","0.0","1067.0","37254.0","26986.0","203860.0","14759.0","4944.0","42507.0","1521.0","4257.0","63172.0","13.0","0.0","0.0","0.0","36187.0","309539.0","16293.0"
"11203","Logan County Coop Power & Light","OH","Cooperative","29.6","29.6","0.0","175045.0","0.0","175045.0","169069.0","0.0","0.0","306.0","5670.0","175045.0","18910.1","0.0","0.0","0.0","0.0","162.2","19072.3","9065.4","59114.0","4309.0","1662.1","12528.0","304.0","8182.6","97427.0","8.0","0.0","0.0","0.0","18910.1","169069.0","4621.0"
"11204","Los Alamos County","NM","Municipal","89.4","85.2","335437.0","299296.0","-6426.0","628307.0","582062.0","26043.0","0.0","0.0","20202.0","628307.0","37752.2","0.0","593.0","0.0","0.0","0.0","38345.2","6927.6","52119.0","7875.0","7605.4","62439.0","883.0","23219.2","467504.0","1.0","0.0","0.0","0.0","37752.2","582062.0","8759.0"
"11208","Los Angeles Department of Water & Power","CA","Municipal","6432.0","3775.0","23668564.0","3346025.0","-414790.0","26599799.0","22678466.0","413513.0","12012.0","475692.0","3020116.0","26599799.0","3587659.7","0.0","16220.0","0.0","0.0","0.0","3603879.7","1368064.1","8214598.0","1329968.0","1969800.9","12723941.0","87727.0","230767.0","1613737.0","9168.0","19027.7","126190.0","2.0","3587659.7","22678466.0","1426865.0"
"11222","Loudon Utilities Board","TN","Municipal","110.3","108.5","0.0","632778.0","0.0","632778.0","609482.0","0.0","0.0","0.0","23296.0","632778.0","48563.0","0.0","0.0","0.0","0.0","758.4","49321.4","15242.0","147291.0","10199.0","13893.0","135317.0","1734.0","19428.0","326874.0","12.0","0.0","0.0","0.0","48563.0","609482.0","11945.0"
"11241","Entergy Louisiana LLC","LA","Investor Owned","9686.0","8383.0","40856135.0","23111928.0","0.0","63968063.0","55243264.0","6503865.0","0.0","83169.0","2137765.0","63968063.0","3731956.0","0.0","341631.9","1372.4","99295.4","47572.7","4221828.4","1188574.3","13357020.0","928758.0","1016716.6","12132064.0","138869.0","1526665.1","29754180.0","10918.0","0.0","0.0","0.0","3731956.0","55243264.0","1078545.0"
"11247","Louisville Electric System","MS","Municipal","25.3","18.5","0.0","124015.0","0.0","124015.0","119949.0","0.0","0.0","81.0","3985.0","124015.0","11075.0","0.0","0.0","0.0","0.0","246.5","11321.5","3086.0","30014.0","2534.0","5373.0","50162.0","935.0","2616.0","39773.0","3.0","0.0","0.0","0.0","11075.0","119949.0","3471.0"
"11249","Louisville Gas & Electric Co","KY","Investor Owned","2608.0","1815.0","13001377.0","1022202.0","-350078.0","13673501.0","11526591.0","1606543.0","1388.0","20747.0","518232.0","13673501.0","1085461.3","0.0","39446.6","0.0","11128.0","8263.1","1144299.0","436549.5","4004001.0","359658.0","473961.0","4960882.0","48507.0","174950.8","2561708.0","573.0","0.0","0.0","0.0","1085461.3","11526591.0","408738.0"
"11250","Loup Valleys Rural P P D","NE","Political Subdivision","46.5","20.9","0.0","141743.0","0.0","141743.0","129051.0","0.0","0.0","50.0","12642.0","141743.0","14813.2","0.0","0.0","0.0","0.0","125.7","14938.9","4767.1","36852.0","2575.0","2440.5","18912.0","521.0","7605.6","73287.0","2279.0","0.0","0.0","0.0","14813.2","129051.0","5375.0"
"11251","Loup River Public Power Dist","NE","Political Subdivision","253.2","263.5","168845.0","1275485.0","0.0","1444330.0","1112501.0","299353.0","0.0","1499.0","30977.0","1444330.0","87109.0","0.0","17513.0","0.0","1150.0","925.0","106697.0","22794.0","228825.0","15160.0","21533.0","221583.0","4175.0","42782.0","662093.0","53.0","0.0","0.0","0.0","87109.0","1112501.0","19388.0"
"11256","City of Loveland - (CO)","CO","Municipal","158.3","103.9","5496.0","724640.0","0.0","730136.0","697579.0","0.0","7134.0","0.0","25423.0","730136.0","61144.4","0.0","0.0","0.0","265.5","1027.7","62437.6","25675.6","247520.0","31915.0","10887.1","110054.0","4110.0","24581.7","340005.0","352.0","0.0","0.0","0.0","61144.4","697579.0","36377.0"
"11272","Lower Yellowstone R E A, Inc","MT","Cooperative","37.0","44.0","0.0","269473.0","-7843.0","261630.0","260973.0","0.0","0.0","657.0","0.0","261630.0","26483.8","0.0","0.0","0.0","0.0","447.3","26931.1","5672.0","67376.0","4209.0","2620.6","24161.0","775.0","18191.199999999997","169436.0","1178.0","0.0","0.0","0.0","26483.800000000003","260973.0","6162.0"
"11273","Lower Valley Energy Inc","WY","Cooperative","93.6","218.8","12854.0","805279.0","0.0","818133.0","772213.0","0.0","0.0","1869.0","44051.0","818133.0","47477.6","0.0","0.0","0.0","0.0","1003.9","48481.5","28389.600000000002","449562.0","21068.0","15531.400000000001","250490.0","6330.0","3556.6","72161.0","214.0","0.0","0.0","0.0","47477.6","772213.0","27612.0"
"11291","Lumbee River Elec Member Corp","NC","Cooperative","288.1","387.5","0.0","1323205.0","0.0","1323205.0","1249976.0","0.0","0.0","1435.0","71794.0","1323205.0","134099.3","0.0","0.0","0.0","0.0","7604.3","141703.6","104858.0","897181.0","57848.0","18345.3","199617.0","2963.0","10896.0","153178.0","14.0","0.0","0.0","0.0","134099.3","1249976.0","60825.0"
"11292","City of Lubbock - (TX)","TX","Municipal","576.2","429.2","93200.0","2742427.0","0.0","2835627.0","2503027.0","93200.0","21942.0","71784.0","145674.0","2835627.0","242308.7","0.0","4114.0","0.0","0.0","0.0","246422.7","112718.3","952096.0","90599.0","121066.4","1440785.0","14500.0","8524.0","110146.0","7.0","0.0","0.0","0.0","242308.7","2503027.0","105106.0"
"11298","Lyon Rural Electric Coop","IA","Cooperative","18.6","20.6","0.0","119254.0","0.0","119254.0","107234.0","8326.0","0.0","0.0","3694.0","119254.0","10204.0","0.0","651.0","0.0","0.0","9.0","10864.0","6384.0","63819.0","2128.0","3820.0","43415.0","83.0","0.0","0.0","0.0","0.0","0.0","0.0","10204.0","107234.0","2211.0"
"11305","Village of Ludlow - (VT)","VT","Municipal","7.5","12.2","0.0","53560.0","-3280.0","50280.0","46999.0","0.0","348.0","74.0","2859.0","50280.0","7491.0","0.0","0.0","0.0","0.0","222.0","7713.0","2139.0","15978.0","3034.0","2999.0","17738.0","707.0","2353.0","13283.0","4.0","0.0","0.0","0.0","7491.0","46999.0","3745.0"
"11318","City of Lumberton - (NC)","NC","Municipal","57.8","55.2","0.0","285669.0","0.0","285669.0","239383.0","0.0","0.0","18718.0","27568.0","285669.0","28584.0","0.0","0.0","0.0","0.0","3638.1","32222.1","10770.6","84262.0","9673.0","16024.8","137712.0","1884.0","1788.6","17409.0","3.0","0.0","0.0","0.0","28584.0","239383.0","11560.0"
"11332","City of Luverne - (MN)","MN","Municipal","17.5","15.4","0.0","85953.0","0.0","85953.0","83335.0","0.0","0.0","0.0","2618.0","85953.0","7571.1","0.0","0.0","0.0","0.0","0.0","7571.1","2346.5","22634.0","2071.0","2896.4","31290.0","460.0","2328.2","29411.0","2.0","0.0","0.0","0.0","7571.1","83335.0","2533.0"
"11334","Lyon-Coffey Electric Coop, Inc","KS","Cooperative","26.3","22.6","43.0","100692.0","0.0","100735.0","92716.0","0.0","20.0","0.0","7999.0","100735.0","14545.8","0.0","0.0","0.0","0.0","73.3","14619.1","9854.9","62008.0","5549.0","4336.9","29093.0","1785.0","354.0","1615.0","4.0","0.0","0.0","0.0","14545.8","92716.0","7338.0"
"11345","Lyon-Lincoln Electric Coop Inc","MN","Cooperative","14.7","22.6","0.0","97780.0","0.0","97780.0","91766.0","0.0","0.0","0.0","6014.0","97780.0","10328.8","0.0","0.0","0.0","0.0","237.5","10566.3","8319.1","70429.0","3612.0","1923.6","20497.0","317.0","86.1","840.0","2.0","0.0","0.0","0.0","10328.8","91766.0","3931.0"
"11355","Lynches River Elec Coop, Inc","SC","Cooperative","87.0","102.0","0.0","430232.0","0.0","430232.0","400651.0","0.0","0.0","0.0","29581.0","430232.0","50190.0","0.0","0.0","0.0","0.0","1043.0","51233.0","35821.0","243398.0","19935.0","5052.0","69569.0","971.0","9317.0","87684.0","10.0","0.0","0.0","0.0","50190.0","400651.0","20916.0"
"11359","Village of Lyndonville - (VT)","VT","Municipal","9.7","13.2","5200.0","56639.0","0.0","61839.0","57571.0","0.0","0.0","0.0","4268.0","61839.0","9193.0","0.0","0.0","0.0","0.0","530.0","9723.0","4850.4","30540.0","4819.0","1888.4","11461.0","858.0","2454.2","15570.0","42.0","0.0","0.0","0.0","9193.0","57571.0","5719.0"
"11364","Lyntegar Electric Coop, Inc","TX","Cooperative","188.7","103.6","0.0","725018.0","0.0","725018.0","664562.0","5758.0","0.0","446.0","54252.0","725018.0","69942.0","0.0","307.0","0.0","0.0","0.0","70249.0","9882.0","89690.0","7876.0","27575.0","320099.0","3516.0","32485.0","254773.0","11066.0","0.0","0.0","0.0","69942.0","664562.0","22458.0"
"11458","City of Macon - (MS)","MS","Municipal","6.4","4.9","0.0","25670.0","0.0","25670.0","24542.0","0.0","0.0","0.0","1128.0","25670.0","2868.0","0.0","0.0","0.0","0.0","119.3","2987.3","1268.0","11193.0","930.0","1320.0","11529.0","274.0","280.0","1820.0","1.0","0.0","0.0","0.0","2868.0","24542.0","1205.0"
"11460","City of Macon - (MO)","MO","Municipal","18.7","14.0","0.0","88844.0","-5529.0","83315.0","78915.0","0.0","319.0","2680.0","1401.0","83315.0","9595.0","0.0","0.0","2375.0","0.0","1130.0","13100.0","3600.0","25528.0","2526.0","3464.0","29978.0","479.0","2531.0","23409.0","5.0","0.0","0.0","0.0","9595.0","78915.0","3010.0"
"11463","Macon Electric Coop","MO","Cooperative","46.1","50.1","0.0","243759.0","0.0","243759.0","231393.0","0.0","0.0","265.0","12101.0","243759.0","23972.9","0.0","0.0","0.0","0.0","353.4","24326.3","15334.1","121302.0","9933.0","4015.8","35580.0","1314.0","4623.0","74511.0","2.0","0.0","0.0","0.0","23972.9","231393.0","11249.0"
"11475","City of Madison - (SD)","SD","Municipal","19.7","18.8","0.0","102507.0","0.0","102507.0","97231.0","0.0","0.0","0.0","5276.0","102507.0","10040.0","0.0","0.0","0.0","0.0","578.0","10618.0","4085.0","34775.0","2853.0","3170.0","34595.0","413.0","2785.0","27861.0","39.0","0.0","0.0","0.0","10040.0","97231.0","3305.0"
"11476","Borough of Madison - (NJ)","NJ","Municipal","34.3","19.7","0.0","131878.0","0.0","131878.0","121053.0","0.0","0.0","0.0","10825.0","131878.0","21053.5","0.0","0.0","0.0","0.0","0.0","21053.5","9270.0","47787.0","5720.0","11783.5","73266.0","904.0","0.0","0.0","0.0","0.0","0.0","0.0","21053.5","121053.0","6624.0"
"11477","Town of Madison - (ME)","ME","Municipal","5.0","5.0","0.0","26101.0","0.0","26101.0","24812.0","0.0","0.0","0.0","1289.0","26101.0","3707.3","713.6","0.0","0.0","0.0","0.0","4420.9","2714.0","17267.0","2249.0","635.1","4010.0","235.0","1071.8","75328.0","15.0","0.0","0.0","0.0","4420.900000000001","96605.0","2499.0"
"11479","Madison Gas & Electric Co","WI","Investor Owned","670.0","489.0","2311261.0","1374021.0","0.0","3685282.0","3240863.0","344135.0","0.0","3391.0","96893.0","3685282.0","407310.0","0.0","9748.0","0.0","0.0","3015000.0","3432058.0","136168.0","793336.0","132091.0","254965.0","2250898.0","20470.0","16177.0","196629.0","40.0","0.0","0.0","0.0","407310.0","3240863.0","152601.0"
"11481","City of Madison - (NE)","NE","Municipal","9.6","6.4","0.0","67103.0","0.0","67103.0","62374.0","0.0","0.0","0.0","4729.0","67103.0","4486.0","0.0","0.0","0.0","0.0","0.0","4486.0","954.0","9039.0","815.0","817.0","10114.0","166.0","2715.0","43221.0","1.0","0.0","0.0","0.0","4486.0","62374.0","982.0"
"11488","Madisonville Municipal Utils","KY","Municipal","49.0","44.0","0.0","296246.0","0.0","296246.0","272267.0","0.0","0.0","0.0","23979.0","296246.0","26098.0","0.0","0.0","0.0","0.0","500.0","26598.0","7605.0","71334.0","6857.0","18493.0","200933.0","1493.0","0.0","0.0","0.0","0.0","0.0","0.0","26098.0","272267.0","8350.0"
"11501","Magic Valley Electric Coop Inc","TX","Cooperative","585.6","547.5","0.0","2428237.0","0.0","2428237.0","2305654.0","0.0","0.0","1290.0","121293.0","2428237.0","204945.2","0.0","0.0","0.0","0.0","5898.1","210843.3","145130.5","1582652.0","100715.0","21763.4","225168.0","12296.0","38051.3","497834.0","752.0","0.0","0.0","0.0","204945.2","2305654.0","113763.0"
"11519","Magnolia Electric Power Assn","MS","Cooperative","136.1","190.2","0.0","655675.0","0.0","655675.0","606272.0","0.0","0.0","1912.0","47491.0","655675.0","69040.0","0.0","0.0","0.0","0.0","1333.0","70373.0","46049.0","371022.0","29572.0","9904.0","86870.0","2069.0","13087.0","148380.0","13.0","0.0","0.0","0.0","69040.0","606272.0","31654.0"
"11560","City of Manassas - (VA)","VA","Municipal","85.0","82.0","105.0","422747.0","0.0","422852.0","405621.0","0.0","0.0","0.0","17231.0","422852.0","37600.0","0.0","0.0","0.0","0.0","0.0","37600.0","16886.0","166962.0","13439.0","18117.0","199490.0","2635.0","2597.0","39169.0","1.0","0.0","0.0","0.0","37600.0","405621.0","16075.0"
"11566","City of Mangum - (OK)","OK","Municipal","7.4","4.3","0.0","26133.0","0.0","26133.0","22638.0","0.0","0.0","0.0","3495.0","26133.0","2380.8","0.0","0.0","0.0","0.0","0.0","2380.8","1735.8","12798.0","1412.0","215.0","2175.0","243.0","430.0","7665.0","33.0","0.0","0.0","0.0","2380.8","22638.0","1688.0"
"11568","Town of Manilla - (IA)","IA","Municipal","1.5","1.6","0.0","7274.0","0.0","7274.0","6866.0","0.0","0.0","0.0","408.0","7274.0","562.0","0.0","0.0","0.0","0.0","0.0","562.0","377.0","4561.0","398.0","185.0","2305.0","87.0","0.0","0.0","0.0","0.0","0.0","0.0","562.0","6866.0","485.0"
"11571","Manitowoc Public Utilities","WI","Municipal","101.6","85.2","170498.0","539691.0","5069.0","715258.0","524707.0","170309.0","0.0","3524.0","16718.0","715258.0","42842.1","0.0","24198.7","0.0","0.0","2230.4","69271.2","11205.8","100685.0","15762.0","8558.8","88358.0","1849.0","23077.5","335664.0","80.0","0.0","0.0","0.0","42842.1","524707.0","17691.0"
"11581","City of Manning","IA","Municipal","6.3","5.5","40.0","37433.0","0.0","37473.0","36338.0","0.0","0.0","363.0","772.0","37473.0","2792.0","0.0","0.0","0.0","0.0","0.0","2792.0","751.0","7048.0","690.0","861.0","10095.0","157.0","1180.0","19195.0","1.0","0.0","0.0","0.0","2792.0","36338.0","848.0"
"11586","Town of Mansfield - (MA)","MA","Municipal","47.4","35.7","0.0","207446.0","0.0","207446.0","201282.0","0.0","0.0","0.0","6164.0","207446.0","25266.5","0.0","0.0","0.0","0.0","1078.4","26344.9","9459.8","77406.0","8839.0","2089.3","16519.0","892.0","13717.4","107357.0","235.0","0.0","0.0","0.0","25266.5","201282.0","9966.0"
"11589","Harney Electric Coop, Inc","OR","Cooperative","65.7","16.4","0.0","216800.0","0.0","216800.0","198712.0","0.0","493.0","0.0","17595.0","216800.0","12906.0","0.0","0.0","0.0","0.0","31.3","12937.3","2605.9","31527.0","1500.0","0.0","0.0","0.0","10300.1","167185.0","2130.0","0.0","0.0","0.0","12906.0","198712.0","3630.0"
"11611","City of Maquoketa - (IA)","IA","Municipal","16.0","12.5","104.0","74027.0","0.0","74131.0","68937.0","104.0","0.0","911.0","4179.0","74131.0","8258.1","0.0","584.8","0.0","0.0","0.0","8842.9","2851.9","22183.0","2794.0","5406.2","46754.0","569.0","0.0","0.0","0.0","0.0","0.0","0.0","8258.1","68937.0","3363.0"
"11624","City of Marblehead - (MA)","MA","Municipal","27.5","22.2","13.0","107586.0","0.0","107599.0","106718.0","0.0","0.0","223.0","658.0","107599.0","16037.0","0.0","0.0","0.0","0.0","80.0","16117.0","12384.0","82289.0","9653.0","1613.0","10269.0","1226.0","2040.0","14160.0","63.0","0.0","0.0","0.0","16037.0","106718.0","10942.0"
"11643","Marias River Electric Coop Inc","MT","Cooperative","13.1","16.8","0.0","88976.0","0.0","88976.0","81648.0","35.0","5271.0","134.0","1888.0","88976.0","6573.0","0.0","35.0","0.0","0.0","40.0","6648.0","2445.0","29615.0","2501.0","4128.0","52033.0","1328.0","0.0","0.0","0.0","0.0","0.0","0.0","6573.0","81648.0","3829.0"
"11646","City of Marietta - (GA)","GA","Municipal","221.9","188.3","0.0","905710.0","322540.0","1228250.0","994682.0","145985.0","16000.0","960.0","70623.0","1228250.0","114450.0","0.0","5111.2","0.0","0.0","7873.7","127434.9","38975.0","330657.0","35127.0","75475.0","664025.0","6286.0","0.0","0.0","0.0","0.0","0.0","0.0","114450.0","994682.0","41413.0"
"11693","Marlboro Electric Coop, Inc","SC","Cooperative","162.2","164.7","0.0","1037051.0","0.0","1037051.0","937537.0","92353.0","0.0","0.0","7161.0","1037051.0","71316.0","0.0","6947.0","0.0","0.0","430.0","78693.0","10769.0","78780.0","5297.0","3533.0","23528.0","1184.0","57014.0","835229.0","6.0","0.0","0.0","0.0","71316.0","937537.0","6487.0"
"11701","City of Marquette - (MI)","MI","Municipal","55.1","53.9","259045.0","53878.0","0.0","312923.0","283285.0","25850.0","0.0","0.0","3788.0","312923.0","45584.3","0.0","1665.1","0.0","0.0","506.2","47755.6","16313.8","95349.0","14990.0","29270.5","187936.0","2173.0","0.0","0.0","0.0","0.0","0.0","0.0","45584.3","283285.0","17163.0"
"11713","City of Marshall - (MI)","MI","Municipal","23.6","17.8","25.0","113994.0","0.0","114019.0","105610.0","0.0","1.0","995.0","7413.0","114019.0","12100.0","0.0","0.0","0.0","0.0","678.0","12778.0","3399.0","25673.0","3874.0","3833.0","32599.0","664.0","4868.0","47338.0","19.0","0.0","0.0","0.0","12100.0","105610.0","4557.0"
"11714","Marshall-De Kalb Electric Coop","AL","Cooperative","91.8","106.5","0.0","428537.0","0.0","428537.0","403964.0","0.0","0.0","320.0","24254.0","428537.0","45027.0","0.0","0.0","0.0","0.0","1357.3","46384.3","23095.0","211931.0","14748.0","20877.0","176705.0","4931.0","1055.0","15328.0","2.0","0.0","0.0","0.0","45027.0","403964.0","19681.0"
"11731","City of Marshall - (MN)","MN","Municipal","82.8","79.1","112.0","578247.0","0.0","578359.0","570044.0","0.0","0.0","117.0","8198.0","578359.0","41780.1","0.0","0.0","0.0","0.0","1941.8","43721.9","5658.5","58623.0","5567.0","7660.6","87150.0","940.0","28461.0","424271.0","116.0","0.0","0.0","0.0","41780.1","570044.0","6623.0"
"11732","City of Marshall - (MO)","MO","Municipal","37.2","27.9","121.0","176710.0","0.0","176831.0","168143.0","121.0","0.0","0.0","8567.0","176831.0","18521.8","0.0","35.0","0.0","0.0","375.1","18931.9","5922.5","46684.0","4972.0","6718.2","56016.0","962.0","5881.1","65443.0","9.0","0.0","0.0","0.0","18521.8","168143.0","5943.0"
"11740","City of Marshfield - (WI)","WI","Municipal","67.0","60.0","1527.0","376943.0","0.0","378470.0","364930.0","1527.0","0.0","604.0","11409.0","378470.0","30660.0","0.0","293.3","0.0","0.0","469.0","31422.3","9262.0","94977.0","11464.0","8001.0","87721.0","1928.0","13397.0","182232.0","58.0","0.0","0.0","0.0","30660.0","364930.0","13450.0"
"11767","Marshall County Rural E M C","IN","Cooperative","23.7","18.6","0.0","103307.0","0.0","103307.0","93811.0","0.0","19.0","481.0","8996.0","103307.0","14644.0","0.0","0.0","0.0","0.0","130.0","14774.0","10631.0","67477.0","6132.0","4013.0","26334.0","1077.0","0.0","0.0","0.0","0.0","0.0","0.0","14644.0","93811.0","7209.0"
"11770","City of Martinsville - (VA)","VA","Municipal","35.9","39.0","6999.0","163113.0","0.0","170112.0","152871.0","0.0","1200.0","0.0","16041.0","170112.0","17506.0","0.0","0.0","0.0","0.0","155.0","17661.0","8634.0","71436.0","6540.0","7479.0","65567.0","1118.0","1393.0","15868.0","7.0","0.0","0.0","0.0","17506.0","152871.0","7665.0"
"11788","Consumers Energy","IA","Cooperative","26.2","24.9","0.0","139791.0","0.0","139791.0","132559.0","0.0","398.0","0.0","6834.0","139791.0","17000.0","0.0","0.0","0.0","0.0","115.0","17115.0","11261.0","75992.0","5986.0","2893.0","25067.0","534.0","2846.0","31500.0","10.0","0.0","0.0","0.0","17000.0","132559.0","6530.0"
"11789","Maryville Utilities","TN","Municipal","154.5","127.4","0.0","780992.0","0.0","780992.0","762371.0","0.0","0.0","0.0","18621.0","780992.0","65578.0","0.0","0.0","0.0","0.0","1051.3","66629.3","24119.0","243010.0","18269.0","26141.0","260439.0","3034.0","15318.0","258922.0","10.0","0.0","0.0","0.0","65578.0","762371.0","21313.0"
"11804","Massachusetts Electric Co","NY","Investor Owned","4318.4","3497.5","0.0","6829848.0","0.0","6829848.0","6423818.0","3861.0","0.0","26914.0","375255.0","6829848.0","1207292.0","1017703.0","346.0","-444467.0","463212.0","0.0","2244086.0","1330879.0","8047413.0","1145508.0","707912.0","9043631.0","158129.0","186056.0","2812037.0","3965.0","148.0","907.0","1.0","2224995.0","19903988.0","1307603.0"
"11811","Town of Massena - (NY)","NY","Municipal","28.0","46.5","0.0","200360.0","0.0","200360.0","190480.0","0.0","0.0","324.0","9556.0","200360.0","11960.5","0.0","0.0","0.0","0.0","115.4","12075.9","7171.1","110967.0","8209.0","1580.0","21403.0","978.0","3209.4","58110.0","162.0","0.0","0.0","0.0","11960.5","190480.0","9349.0"
"11824","Matanuska Electric Assn Inc","AK","Cooperative","93.0","141.0","765474.0","105887.0","0.0","871361.0","751416.0","77207.0","0.0","2957.0","39781.0","871361.0","145939.1","0.0","5871.5","0.0","277.9","2484.9","154573.4","91958.3","447720.0","57798.0","53980.8","303696.0","5977.0","0.0","0.0","0.0","0.0","0.0","0.0","145939.1","751416.0","63775.0"
"11843","Maui Electric Co Ltd","HI","Investor Owned","197.7","190.9","915126.0","242042.0","0.0","1157168.0","1094786.0","0.0","0.0","1735.0","60647.0","1157168.0","323881.6","0.0","0.0","0.0","0.0","1722.3","325603.9","112348.5","363692.0","60618.0","111564.1","362333.0","10271.0","99969.0","368761.0","138.0","0.0","0.0","0.0","323881.6","1094786.0","71027.0"
"11871","City of Mayfield Plant Board","KY","Municipal","35.8","22.3","0.0","143514.0","0.0","143514.0","137869.0","0.0","0.0","268.0","5377.0","143514.0","15251.0","0.0","0.0","0.0","0.0","325.7","15576.7","5569.0","46923.0","4477.0","8653.0","79362.0","945.0","1029.0","11584.0","2.0","0.0","0.0","0.0","15251.0","137869.0","5424.0"
"11910","McLeod Cooperative Power Assn","MN","Cooperative","31.9","30.8","0.0","168168.0","0.0","168168.0","161025.0","0.0","0.0","0.0","7143.0","168168.0","19779.7","0.0","0.0","0.0","0.0","220.9","20000.6","14209.9","107053.0","6281.0","2521.2","20888.0","405.0","3048.6","33084.0","4.0","0.0","0.0","0.0","19779.7","161025.0","6690.0"
"11989","McCone Electric Coop Inc","MT","Cooperative","12.1","18.3","0.0","81130.0","0.0","81130.0","74239.0","0.0","0.0","279.0","6612.0","81130.0","9618.7","0.0","0.0","0.0","0.0","9.1","9627.8","6726.0","49033.0","4638.0","2519.3","22022.0","589.0","373.4","3184.0","74.0","0.0","0.0","0.0","9618.7","74239.0","5301.0"
"12087","McKenzie Electric Coop Inc","ND","Cooperative","388.8","401.9","0.0","3280878.0","0.0","3280878.0","3198466.0","0.0","3489.0","0.0","78923.0","3280878.0","244252.2","0.0","0.0","0.0","0.0","232.7","244484.9","7515.5","100178.0","5099.0","91632.2","1057938.0","6425.0","145104.5","2040350.0","1131.0","0.0","0.0","0.0","244252.19999999998","3198466.0","12655.0"
"12090","McLean Electric Coop, Inc","ND","Cooperative","20.5","23.9","0.0","135470.0","0.0","135470.0","128662.0","0.0","330.0","0.0","6478.0","135470.0","14457.0","0.0","0.0","0.0","0.0","241.0","14698.0","6595.0","49499.0","3484.0","3733.0","25758.0","442.0","4129.0","53405.0","83.0","0.0","0.0","0.0","14457.0","128662.0","4009.0"
"12186","McMinnville Electric System","TN","Municipal","42.5","40.0","0.0","198769.0","0.0","198769.0","191330.0","0.0","0.0","599.0","6841.0","198769.0","19839.0","0.0","0.0","0.0","0.0","1494.8","21333.8","7723.0","74468.0","6381.0","11000.0","102817.0","1623.0","1116.0","14045.0","2.0","0.0","0.0","0.0","19839.0","191330.0","8006.0"
"12187","City of McMinnville - (OR)","OR","Municipal","135.1","179.0","0.0","726425.0","0.0","726425.0","710822.0","0.0","0.0","0.0","15603.0","726425.0","40545.0","0.0","0.0","0.0","0.0","2146.0","42691.0","13118.0","209705.0","13729.0","11982.0","174077.0","2521.0","15445.0","327040.0","50.0","0.0","0.0","0.0","40545.0","710822.0","16300.0"
"12199","Montana-Dakota Utilities Co","ND","Investor Owned","634.1","622.5","2630640.0","955687.0","33609.0","3619936.0","3306470.0","39971.0","0.0","0.0","273495.0","3619936.0","304720.0","0.0","839.0","-2834.0","31606.0","7353.0","341684.0","121172.0","1153484.0","118379.0","149131.0","1613109.0","24280.0","34417.0","539877.0","242.0","0.0","0.0","0.0","304720.0","3306470.0","142901.0"
"12208","City of McPherson - (KS)","KS","Municipal","158.0","131.0","8161.0","1027808.0","0.0","1035969.0","969480.0","44550.0","0.0","0.0","21939.0","1035969.0","53908.0","0.0","6038.0","0.0","1.0","0.0","59947.0","6605.0","85364.0","7225.0","8110.0","95103.0","1158.0","39193.0","789013.0","19.0","0.0","0.0","0.0","53908.0","969480.0","8402.0"
"12227","Meeker Coop Light & Power Assn","MN","Cooperative","32.4","45.7","0.0","185918.0","0.0","185918.0","176016.0","0.0","0.0","379.0","9523.0","185918.0","20821.3","0.0","0.0","0.0","0.0","95.9","20917.2","16428.3","134923.0","8155.0","3298.0","28850.0","610.0","1095.0","12243.0","114.0","0.0","0.0","0.0","20821.3","176016.0","8879.0"
"12243","Meade County Rural E C C","KY","Cooperative","95.0","106.0","0.0","448590.0","0.0","448590.0","423849.0","0.0","0.0","574.0","24167.0","448590.0","52864.0","0.0","0.0","0.0","0.0","1357.0","54221.0","40970.0","328042.0","27471.0","11894.0","95807.0","2108.0","0.0","0.0","0.0","0.0","0.0","0.0","52864.0","423849.0","29579.0"
"12260","Mecklenburg Electric Cooperative","VA","Cooperative","125.0","165.7","0.0","630949.0","0.0","630949.0","597453.0","0.0","0.0","825.0","32671.0","630949.0","63295.0","0.0","0.0","0.0","0.0","695.0","63990.0","44193.6","346922.0","29471.0","8838.1","89263.0","1840.0","10263.3","161268.0","24.0","0.0","0.0","0.0","63295.0","597453.0","31335.0"
"12265","City of Medford - (WI)","WI","Municipal","24.0","21.0","0.0","126601.0","0.0","126601.0","123151.0","0.0","0.0","0.0","3450.0","126601.0","10044.0","0.0","0.0","0.0","1.0","0.0","10045.0","2070.0","23458.0","2658.0","4413.0","53057.0","570.0","3561.0","46636.0","6.0","0.0","0.0","0.0","10044.0","123151.0","3234.0"
"12268","Medina Electric Coop, Inc","TX","Cooperative","227.8","183.1","0.0","1267742.0","0.0","1267742.0","1179543.0","0.0","0.0","0.0","88199.0","1267742.0","105874.0","0.0","0.0","0.0","0.0","1428.0","107302.0","39499.6","330651.0","26159.0","24670.8","261283.0","5439.0","41703.6","587609.0","1078.0","0.0","0.0","0.0","105874.0","1179543.0","32676.0"
"12286","Melrose Public Utilities","MN","Municipal","18.0","19.0","77.0","114785.0","0.0","114862.0","112387.0","0.0","0.0","349.0","2126.0","114862.0","8588.9","0.0","0.0","0.0","0.0","278.8","8867.7","1645.5","17392.0","1334.0","2879.0","33660.0","382.0","4064.4","61335.0","3.0","0.0","0.0","0.0","8588.9","112387.0","1719.0"
"12293","City of Memphis - (TN)","TN","Municipal","3086.0","1976.0","0.0","13715639.0","0.0","13715639.0","13308180.0","0.0","0.0","0.0","407459.0","13715639.0","1221307.5","0.0","0.0","0.0","0.0","12787.0","1234094.5","490018.6","5042849.0","370693.0","462304.9","4566347.0","43364.0","268984.0","3698984.0","258.0","0.0","0.0","0.0","1221307.5","13308180.0","414315.0"
"12298","City of Menasha - (WI)","WI","Municipal","79.2","73.1","0.0","543436.0","0.0","543436.0","537118.0","0.0","0.0","0.0","6318.0","543436.0","43063.6","0.0","0.0","0.0","0.0","212.7","43276.3","7213.3","57887.0","8164.0","6683.1","66102.0","817.0","29167.2","413129.0","8.0","0.0","0.0","0.0","43063.6","537118.0","8989.0"
"12301","Nodak Electric Coop Inc","ND","Cooperative","185.0","223.0","0.0","1146820.0","0.0","1146820.0","1115064.0","0.0","0.0","0.0","31756.0","1146820.0","102555.0","0.0","0.0","223.0","0.0","267.0","103045.0","43897.0","379023.0","19186.0","0.0","0.0","0.0","58658.0","736041.0","503.0","0.0","0.0","0.0","102555.0","1115064.0","19689.0"
"12312","Merced Irrigation District","CA","Political Subdivision","110.7","70.0","511926.0","544788.0","0.0","1056714.0","507963.0","521445.0","0.0","0.0","27306.0","1056714.0","56268.0","0.0","19322.4","0.0","0.0","947.1","76537.5","9577.6","59781.0","7418.0","29695.0","236343.0","1423.0","16995.4","211839.0","93.0","0.0","0.0","0.0","56268.0","507963.0","8934.0"
"12330","Meriwether Lewis Electric Coop","TN","Cooperative","218.3","236.6","0.0","1206095.0","0.0","1206095.0","1158831.0","0.0","0.0","812.0","46452.0","1206095.0","98147.0","0.0","0.0","0.0","0.0","2215.1","100362.1","44953.0","388116.0","28805.0","26835.0","218424.0","5325.0","26359.0","552291.0","10.0","0.0","0.0","0.0","98147.0","1158831.0","34140.0"
"12341","MidAmerican Energy Co","IA","Investor Owned","4850.0","3882.0","30740402.0","3602602.0","0.0","34343004.0","24491930.0","9165323.0","0.0","27078.0","658673.0","34343004.0","1785618.9","1576.5","214601.8","-2759.6","621.2","108495.8","2108154.6","657163.8","6207288.0","661776.0","426062.0","5390644.0","106737.0","703969.6","12964047.0","1817.0","0.0","0.0","0.0","1787195.4","24561979.0","770330.0"
"12351","City of Mesa - (AZ)","AZ","Municipal","87.0","56.0","0.0","358451.0","-7998.0","350453.0","323885.0","13709.0","0.0","0.0","12859.0","350453.0","32395.8","0.0","330.9","0.0","0.0","1481.0","34207.7","16196.8","141943.0","14163.0","16199.0","181942.0","2553.0","0.0","0.0","0.0","0.0","0.0","0.0","32395.8","323885.0","16716.0"
"12377","Midwest Energy Cooperative","MI","Cooperative","129.5","120.9","0.0","652700.0","0.0","652700.0","618080.0","0.0","0.0","1384.0","33236.0","652700.0","78239.0","0.0","0.0","0.0","0.0","0.0","78239.0","46901.399999999994","302227.0","29936.0","31337.600000000002","315853.0","6049.0","0.0","0.0","0.0","0.0","0.0","0.0","78238.99999999999","618080.0","35985.0"
"12390","Metropolitan Edison Co","OH","Investor Owned","2897.0","2647.4","0.0","4658892.0","0.0","4658892.0","4280365.0","833.0","0.0","7438.0","370256.0","4658892.0","555099.9","250722.9","429.9","0.0","3915.2","26982.3","837150.2","600675.2","5350518.0","499192.0","139938.8","2914397.0","66623.0","65208.8","5511678.0","880.0","0.0","0.0","0.0","805822.8","13776593.0","566695.0"
"12395","Menard Electric Coop","IL","Cooperative","66.1","35.4","0.0","223751.0","0.0","223751.0","205228.0","0.0","0.0","255.0","18268.0","223751.0","28389.1","0.0","0.0","0.0","0.0","227.1","28616.2","17334.4","113039.0","9092.0","3712.2","26205.0","570.0","7342.5","65984.0","1216.0","0.0","0.0","0.0","28389.1","205228.0","10878.0"
"12406","Miami-Cass County Rural E M C","IN","Cooperative","28.3","26.1","0.0","132113.0","0.0","132113.0","125066.0","0.0","0.0","0.0","7047.0","132113.0","15201.0","0.0","0.0","0.0","0.0","0.0","15201.0","10062.0","73645.0","5659.0","3338.0","33371.0","312.0","1801.0","18050.0","6.0","0.0","0.0","0.0","15201.0","125066.0","5977.0"
"12408","City of Miami - (OK)","OK","Municipal","39.8","27.1","0.0","188909.0","0.0","188909.0","171581.0","0.0","4892.0","6142.0","6294.0","188909.0","14974.0","0.0","0.0","0.0","0.0","0.0","14974.0","5266.0","55619.0","5594.0","5074.0","53639.0","987.0","4634.0","62323.0","10.0","0.0","0.0","0.0","14974.0","171581.0","6591.0"
"12439","Midstate Electric Coop, Inc","","Cooperative","67.0","114.0","0.0","440007.0","0.0","440007.0","418801.0","0.0","0.0","1256.0","19950.0","440007.0","34618.0","0.0","0.0","0.0","0.0","-107.0","34511.0","23892.0","271778.0","16939.0","8680.0","118464.0","2139.0","2046.0","28559.0","3.0","0.0","0.0","0.0","34618.0","418801.0","19081.0"
"12450","Midland Power Coop","IA","Cooperative","99.4","93.0","0.0","502631.0","0.0","502631.0","460658.0","25303.0","453.0","16217.0","0.0","502631.0","48559.0","0.0","1953.0","0.0","0.0","86.0","50598.0","25159.0","200830.0","11102.0","6301.0","59455.0","512.0","17099.0","200373.0","21.0","0.0","0.0","0.0","48559.0","460658.0","11635.0"
"12452","Mid-South Electric Coop Assn","TX","Cooperative","123.5","137.2","0.0","712374.0","0.0","712374.0","680985.0","0.0","0.0","0.0","31389.0","712374.0","72739.1","0.0","0.0","0.0","0.0","3769.0","76508.1","45396.5","391413.0","26457.0","13917.2","122298.0","3485.0","13425.4","167274.0","14.0","0.0","0.0","0.0","72739.1","680985.0","29956.0"
"12462","Mid-Carolina Electric Coop Inc","SC","Cooperative","248.2","266.1","0.0","1017068.0","0.0","1017068.0","982226.0","0.0","0.0","1174.0","33668.0","1017068.0","122936.8","0.0","0.0","0.0","0.0","1174.0","124110.8","92304.9","699475.0","50451.0","27502.3","246691.0","4969.0","3129.6","36060.0","7.0","0.0","0.0","0.0","122936.8","982226.0","55427.0"
"12463","Mid-Yellowstone Elec Coop, Inc","MT","Cooperative","8.2","5.1","0.0","34050.0","0.0","34050.0","29680.0","72.0","0.0","81.0","4217.0","34050.0","4140.4","0.0","5.9","0.0","0.0","49.3","4195.6","2062.4","14051.0","1058.0","463.8","3381.0","218.0","1614.2","12248.0","746.0","0.0","0.0","0.0","4140.4","29680.0","2022.0"
"12470","Middle Tennessee E M C","TN","Cooperative","1351.2","1304.4","0.0","5950747.0","0.0","5950747.0","5759065.0","0.0","0.0","77.0","191605.0","5950747.0","559146.0","0.0","0.0","0.0","0.0","11104.6","570250.6","309119.0","3046740.0","190810.0","216972.0","2123919.0","28395.0","33055.0","588406.0","28.0","0.0","0.0","0.0","559146.0","5759065.0","219234.0"
"12472","Middle Georgia El Member Corp","GA","Cooperative","47.1","31.1","0.0","147706.0","0.0","147706.0","134403.0","0.0","0.0","0.0","13303.0","147706.0","18333.0","0.0","0.0","0.0","0.0","0.0","18333.0","9291.0","71249.0","5169.0","4569.0","32330.0","1708.0","4473.0","30824.0","1168.0","0.0","0.0","0.0","18333.0","134403.0","8045.0"
"12473","Town of Middleborough - (MA)","MA","Municipal","56.5","46.6","227.0","278693.0","0.0","278920.0","266601.0","0.0","0.0","248.0","12071.0","278920.0","33493.0","0.0","0.0","0.0","982.1","313.0","34788.1","15844.0","122696.0","14122.0","13105.0","101960.0","2478.0","4544.0","41945.0","21.0","0.0","0.0","0.0","33493.0","266601.0","16621.0"
"12477","Town of Middleton","MA","Municipal","24.1","15.6","0.0","88910.0","10697.0","99607.0","94578.0","124.0","0.0","76.0","4829.0","99607.0","13606.4","0.0","15.0","0.0","0.0","10.0","13631.4","5112.1","37434.0","3162.0","3226.2","21573.0","520.0","5268.1","35571.0","19.0","0.0","0.0","0.0","13606.4","94578.0","3701.0"
"12478","Town of Middletown - (DE)","DE","Municipal","54.0","47.0","0.0","243262.0","-6766.0","236496.0","219786.0","0.0","0.0","5803.0","10907.0","236496.0","25012.0","0.0","0.0","0.0","0.0","0.0","25012.0","11482.0","81451.0","7470.0","966.0","6491.0","586.0","12564.0","131844.0","335.0","0.0","0.0","0.0","25012.0","219786.0","8391.0"
"12515","Midwest Electric, Inc","OH","Cooperative","50.5","47.2","0.0","263909.0","0.0","263909.0","250619.0","0.0","0.0","347.0","12943.0","263909.0","29040.9","0.0","0.0","0.0","0.0","224.6","29265.5","20954.5","166513.0","10449.0","5060.6","49731.0","268.0","3025.8","34375.0","6.0","0.0","0.0","0.0","29040.9","250619.0","10723.0"
"12524","Midwest Energy Inc","KS","Cooperative","434.0","278.0","103505.0","1665615.0","0.0","1769120.0","1467395.0","124703.0","0.0","3322.0","173700.0","1769120.0","148035.5","0.0","4448.8","0.0","6829.6","0.0","159313.9","35835.0","300372.0","29738.0","40412.8","354716.0","13178.0","71787.7","812307.0","7202.0","0.0","0.0","0.0","148035.5","1467395.0","50118.0"
"12532","City of Milan","TN","Municipal","44.8","41.7","0.0","193720.0","0.0","193720.0","182824.0","0.0","0.0","0.0","10896.0","193720.0","18680.0","0.0","0.0","0.0","0.0","471.7","19151.7","10274.0","97594.0","6757.0","6137.0","58239.0","1401.0","2269.0","26991.0","4.0","0.0","0.0","0.0","18680.0","182824.0","8162.0"
"12539","Midwest Electric Member Corp","NE","Cooperative","147.7","17.7","0.0","257218.0","0.0","257218.0","235924.0","0.0","0.0","347.0","20947.0","257218.0","28994.1","0.0","0.0","0.0","0.0","488.2","29482.3","4071.1","33271.0","3207.0","4612.4","40829.0","1166.0","20310.6","161824.0","2116.0","0.0","0.0","0.0","28994.1","235924.0","6489.0"
"12540","City of Milford - (DE)","DE","Municipal","31.7","41.4","0.0","219353.0","0.0","219353.0","211035.0","0.0","0.0","0.0","8318.0","219353.0","24967.9","0.0","0.0","0.0","0.0","0.0","24967.9","8742.0","63513.0","5916.0","7506.4","59867.0","1097.0","8719.5","87655.0","16.0","0.0","0.0","0.0","24967.9","211035.0","7029.0"
"12541","City of Milford - (IA)","IA","Municipal","6.1","6.8","7675.0","27010.0","-729.0","33956.0","29766.0","2012.0","0.0","287.0","1891.0","33956.0","3107.0","0.0","339.0","0.0","0.0","646.0","4092.0","1454.0","13454.0","1214.0","656.0","5390.0","339.0","997.0","10922.0","38.0","0.0","0.0","0.0","3107.0","29766.0","1591.0"
"12546","Mille Lacs Energy Cooperative","MN","Cooperative","36.8","47.8","206746.0","0.0","0.0","206746.0","193466.0","0.0","0.0","642.0","12638.0","206746.0","24710.0","0.0","0.0","-500.0","0.0","412.0","24622.0","16752.0","118327.0","13850.0","4370.0","39809.0","1184.0","3588.0","35330.0","113.0","0.0","0.0","0.0","24710.0","193466.0","15147.0"
"12580","City of Miller - (SD)","SD","Municipal","5.0","6.4","0.0","23013.0","0.0","23013.0","21549.0","0.0","0.0","26.0","1438.0","23013.0","2064.0","0.0","0.0","0.0","0.0","195.0","2259.0","1075.0","11217.0","750.0","989.0","10332.0","204.0","0.0","0.0","0.0","0.0","0.0","0.0","2064.0","21549.0","954.0"
"12615","City of Milton-Freewater- (OR)","OR","Municipal","17.8","33.9","0.0","112147.0","0.0","112147.0","106798.0","0.0","0.0","0.0","5349.0","112147.0","7281.0","0.0","0.0","0.0","0.0","960.0","8241.0","4334.0","62102.0","3543.0","959.0","14579.0","501.0","1988.0","30117.0","372.0","0.0","0.0","0.0","7281.0","106798.0","4416.0"
"12625","City of Minden - (LA)","LA","Municipal","35.0","20.4","0.0","142240.0","0.0","142240.0","127825.0","0.0","0.0","0.0","14415.0","142240.0","17126.0","0.0","0.0","0.0","0.0","0.0","17126.0","7401.0","57110.0","5228.0","6367.0","44310.0","1148.0","3358.0","26405.0","35.0","0.0","0.0","0.0","17126.0","127825.0","6411.0"
"12626","City of Minden - (NE)","NE","Municipal","7.8","5.5","0.0","29674.0","0.0","29674.0","28070.0","0.0","864.0","0.0","740.0","29674.0","3576.0","0.0","0.0","0.0","0.0","0.0","3576.0","2073.0","14246.0","1330.0","1503.0","13824.0","256.0","0.0","0.0","0.0","0.0","0.0","0.0","3576.0","28070.0","1586.0"
"12642","Maquoketa Valley Rrl Elec Coop","IA","Cooperative","58.0","58.8","0.0","296236.0","0.0","296236.0","278811.0","0.0","0.0","219.0","17206.0","296236.0","31648.9","0.0","0.0","0.0","0.0","339.0","31987.9","15801.9","128071.0","10298.0","15847.0","150740.0","5815.0","0.0","0.0","0.0","0.0","0.0","0.0","31648.9","278811.0","16113.0"
"12647","ALLETE, Inc.","MN","Investor Owned","1538.0","1520.0","8919879.0","6254963.0","78259.0","15253101.0","8997352.0","5695306.0","0.0","17957.0","542486.0","15253101.0","664307.6","0.0","272727.6","0.0","65524.4","23932.5","1026492.1","106827.3","1010955.0","122295.0","124067.9","1288604.0","23668.0","433412.4","6697793.0","390.0","0.0","0.0","0.0","664307.6","8997352.0","146353.0"
"12651","Minnesota Valley Electric Coop","MN","Cooperative","171.0","137.3","0.0","857760.0","0.0","857760.0","828959.0","0.0","0.0","1228.0","27573.0","857760.0","87367.0","0.0","0.0","0.0","0.0","-8.0","87359.0","54475.0","457958.0","38401.0","32892.0","371001.0","4038.0","0.0","0.0","0.0","0.0","0.0","0.0","87367.0","828959.0","42439.0"
"12660","Village of Minster - (OH)","OH","Municipal","23.3","20.3","0.0","128112.0","0.0","128112.0","122739.0","0.0","0.0","67.0","5306.0","128112.0","11985.0","0.0","0.0","0.0","0.0","394.0","12379.0","1706.0","13910.0","1257.0","1867.0","15670.0","202.0","8412.0","93159.0","43.0","0.0","0.0","0.0","11985.0","122739.0","1502.0"
"12674","City of Mishawaka","IN","Municipal","127.7","90.4","0.0","604889.0","0.0","604889.0","561314.0","0.0","0.0","0.0","43575.0","604889.0","61617.0","0.0","0.0","0.0","0.0","1260.0","62877.0","19691.0","157034.0","22495.0","41926.0","404280.0","3764.0","0.0","0.0","0.0","0.0","0.0","0.0","61617.0","561314.0","26259.0"
"12681","Mississippi County Electric Coop","AR","Cooperative","584.0","552.0","0.0","3265277.0","0.0","3265277.0","3093971.0","162058.0","0.0","0.0","9248.0","3265277.0","148619.0","0.0","10099.0","0.0","0.0","20.0","158738.0","3980.0","53787.0","3326.0","1477.0","19665.0","695.0","143162.0","3020519.0","845.0","0.0","0.0","0.0","148619.0","3093971.0","4866.0"
"12685","Entergy Mississippi Inc","MS","Investor Owned","2953.0","2186.0","8681156.0","5998819.0","0.0","14679975.0","13047701.0","857217.0","0.0","12961.0","762096.0","14679975.0","1124695.3","0.0","18238.0","0.0","24825.8","30469.9","1198229.0","502305.1","5307237.0","375747.0","463741.3","5204034.0","69571.0","158648.9","2536430.0","3750.0","0.0","0.0","0.0","1124695.3","13047701.0","449068.0"
"12686","Mississippi Power Co","MS","Investor Owned","2322.0","2390.0","15318941.0","217956.0","396391.0","15933288.0","9587826.0","5696056.0","0.0","25711.0","623695.0","15933288.0","871064.0","0.0","315387.0","51.0","7625.0","10001.0","1204128.0","257328.0","1943853.0","153154.0","292880.0","2803021.0","33990.0","320856.0","4840952.0","450.0","0.0","0.0","0.0","871064.0","9587826.0","187594.0"
"12692","Missoula Electric Coop, Inc","MT","Cooperative","39.5","55.0","0.0","247957.0","0.0","247957.0","230001.0","0.0","0.0","58.0","17898.0","247957.0","22007.8","0.0","0.0","0.0","0.0","-554.4","21453.4","16259.1","165237.0","13136.0","4167.3","45618.0","1375.0","1581.4","19146.0","281.0","0.0","0.0","0.0","22007.8","230001.0","14792.0"
"12698","KCP&L Greater Missouri Operations Co.","MO","Investor Owned","1910.0","1531.0","4036362.0","4771123.0","0.0","8807485.0","7931919.0","454902.0","0.0","14881.0","405783.0","8807485.0","763543.2","0.0","9532.4","9793.4","17146.2","18120.0","818135.2","380258.6","3382264.0","283563.0","296313.9","3259742.0","39659.0","86970.7","1289913.0","248.0","0.0","0.0","0.0","763543.2","7931919.0","323470.0"
"12700","Missouri Rural Electric Coop","MO","Cooperative","38.0","38.0","0.0","226126.0","0.0","226126.0","219305.0","1027.0","0.0","0.0","5794.0","226126.0","17837.0","0.0","89.0","0.0","0.0","0.0","17926.0","7071.0","60648.0","4775.0","3369.0","33143.0","545.0","7397.0","125514.0","4.0","0.0","0.0","0.0","17837.0","219305.0","5324.0"
"12706","Mitchell Electric Member Corp","GA","Cooperative","137.3","116.3","0.0","462028.0","0.0","462028.0","432566.0","0.0","3689.0","506.0","25267.0","462028.0","59174.4","0.0","0.0","0.0","0.0","2348.9","61523.3","40066.5","283533.0","21139.0","19107.9","149033.0","4063.0","0.0","0.0","0.0","0.0","0.0","0.0","59174.4","432566.0","25202.0"
"12744","Modern Electric Water Company","WA","Cooperative","41.6","44.6","0.0","240130.0","0.0","240130.0","228213.0","0.0","0.0","3199.0","8718.0","240130.0","14171.0","0.0","0.0","0.0","0.0","2706.0","16877.0","6198.0","101215.0","8386.0","7973.0","126998.0","1688.0","0.0","0.0","0.0","0.0","0.0","0.0","14171.0","228213.0","10074.0"
"12745","Modesto Irrigation District","CA","Political Subdivision","696.0","342.0","763740.0","2819937.0","-65320.0","3518357.0","2562021.0","955123.0","0.0","0.0","1213.0","3518357.0","362468.0","0.0","8254.0","0.0","2500.0","2671.0","375893.0","162406.0","911922.0","97935.0","119976.0","855475.0","24643.0","80086.0","794624.0","156.0","0.0","0.0","0.0","362468.0","2562021.0","122734.0"
"12782","City of Monett - (MO)","MO","Municipal","38.2","46.1","0.0","235131.0","0.0","235131.0","210763.0","0.0","10447.0","0.0","13921.0","235131.0","19729.9","0.0","0.0","0.0","0.0","0.0","19729.9","4745.5","42527.0","3883.0","5178.0","55530.0","714.0","9806.4","112706.0","40.0","0.0","0.0","0.0","19729.9","210763.0","4637.0"
"12789","City of Monmouth - (OR)","OR","Municipal","13.7","17.6","0.0","74982.0","491.0","75473.0","75473.0","0.0","0.0","0.0","0.0","75473.0","5877.3","0.0","0.0","0.0","0.0","742.5","6619.8","3762.6","47088.0","4216.0","2114.7","28385.0","334.0","0.0","0.0","0.0","0.0","0.0","0.0","5877.3","75473.0","4550.0"
"12796","Monongahela Power Co","PA","Investor Owned","1986.0","1953.0","15555045.0","2345511.0","0.0","17900556.0","11632619.0","5864456.0","0.0","638.0","402843.0","17900556.0","1050131.5","0.0","341291.7","0.0","27718.3","200436.8","1619578.3","403233.0","3469690.0","332345.0","276971.9","2821062.0","51346.0","369926.6","5341867.0","7115.0","0.0","0.0","0.0","1050131.5","11632619.0","390806.0"
"12800","City of Monroe - (GA)","GA","Municipal","33.2","31.0","0.0","155304.0","0.0","155304.0","146195.0","0.0","0.0","0.0","9109.0","155304.0","17808.0","0.0","0.0","0.0","0.0","70.0","17878.0","8075.0","67191.0","5404.0","8934.0","69461.0","881.0","799.0","9543.0","1.0","0.0","0.0","0.0","17808.0","146195.0","6286.0"
"12801","City of Monroe - (NC)","NC","Municipal","134.2","106.9","0.0","723362.0","0.0","723362.0","707395.0","0.0","0.0","0.0","15967.0","723362.0","60929.3","0.0","0.0","0.0","0.0","0.0","60929.3","13317.2","101887.0","8797.0","18937.2","165513.0","1963.0","28674.9","439995.0","119.0","0.0","0.0","0.0","60929.3","707395.0","10879.0"
"12803","Monroe County Elec Coop, Inc","IL","Cooperative","32.0","26.0","0.0","120607.0","0.0","120607.0","112965.0","0.0","0.0","322.0","7320.0","120607.0","16236.0","0.0","0.0","0.0","0.0","203.0","16439.0","14365.0","98162.0","7168.0","1766.0","14502.0","130.0","105.0","301.0","31.0","0.0","0.0","0.0","16236.0","112965.0","7329.0"
"12825","NorthWestern Energy LLC - (MT)","MT","Investor Owned","2376.0","2338.0","4281739.0","3685431.0","-537.0","7966633.0","6148252.0","1218666.0","0.0","0.0","599715.0","7966633.0","700285.7","16967.6","25524.1","2365.7","11703.9","48856.9","805703.9","298616.3","2539143.0","295427.0","364494.1","3303652.0","70519.0","54142.9","3085907.0","1814.0","0.0","0.0","0.0","717253.3","8928702.0","367760.0"
"12839","City of Montezuma - (IA)","IA","Municipal","5.9","4.3","20322.0","24879.0","0.0","45201.0","23073.0","19898.0","46.0","367.0","1817.0","45201.0","2191.9","0.0","415.4","0.0","75.8","0.0","2683.1","649.0","6667.0","758.0","939.1","9298.0","196.0","603.8","7108.0","2.0","0.0","0.0","0.0","2191.9","23073.0","956.0"
"12860","Morgan County Rural Elec Assn","CO","Cooperative","71.3","42.7","0.0","346902.0","0.0","346902.0","332686.0","6.0","0.0","805.0","13405.0","346902.0","37887.0","0.0","2.0","0.0","0.0","109.0","37998.0","8274.0","59538.0","4945.0","12448.0","114143.0","1635.0","17165.0","159005.0","1567.0","0.0","0.0","0.0","37887.0","332686.0","8147.0"
"12866","Moon Lake Electric Assn Inc","UT","Cooperative","140.3","152.1","12160.0","1046501.0","0.0","1058661.0","1026464.0","0.0","0.0","2262.0","29935.0","1058661.0","76071.2","0.0","0.0","0.0","0.0","498.9","76570.1","12289.8","155220.0","14090.0","29827.0","379684.0","4266.0","33954.4","491560.0","952.0","0.0","0.0","0.0","76071.2","1026464.0","19308.0"