-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtotalsdata_2016-2020.csv
We can't make this file beautiful and searchable because it's too large.
8836 lines (8836 loc) · 675 KB
/
totalsdata_2016-2020.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
id,Year,REG,State Name,HLSA Num,Line Num,Service Category,SSBG Expenditures,Total TANF,Total SSBG Expenditures,"Other Fed, State, and Local Funds",Children,Adults 59 and Younger,Adults 60 and Older,Adults Unknown,Total Adults,Total Recipients
99,2016,4,Alabama,1,1,Adoption Services,0,0,0,0,0,0,0,0,0,0
99,2016,4,Alabama,2,2,Case Management,0,0,0,0,0,0,0,0,0,0
99,2016,4,Alabama,7,3,Congregate Meals,0,0,0,0,0,0,0,0,0,0
99,2016,4,Alabama,2,4,Counseling Services,0,0,0,0,0,0,0,0,0,0
99,2016,4,Alabama,7,5,Day Care - Adults,1348784,0,1348784,420932,0,0,0,257,257,257
99,2016,4,Alabama,3,6,Day Care - Children,500000,0,500000,118776118,27809,0,0,0,0,27809
99,2016,4,Alabama,5,7,Education and Training Services,0,0,0,0,0,0,0,0,0,0
99,2016,4,Alabama,5,8,Employment Services,0,0,0,0,0,0,0,0,0,0
99,2016,4,Alabama,4,9,Family Planning Services,0,0,0,0,0,0,0,0,0,0
99,2016,4,Alabama,7,10,Foster Care Services - Adults,41729,0,41729,0,0,0,0,26,26,26
99,2016,4,Alabama,1,11,Foster Care Services - Children,0,0,0,0,0,0,0,0,0,0
99,2016,4,Alabama,4,12,Health-Related Services,0,0,0,0,0,0,0,0,0,0
99,2016,4,Alabama,8,13,Home-Based Services,0,0,0,0,0,0,0,0,0,0
99,2016,4,Alabama,7,14,Home-Delivered Meals,0,0,0,0,0,0,0,0,0,0
99,2016,4,Alabama,8,15,Housing Services,0,0,0,0,0,0,0,0,0,0
99,2016,4,Alabama,5,16,Independent/Transitional Living Services,0,0,0,0,0,0,0,0,0,0
99,2016,4,Alabama,2,17,Information and Referral,0,0,0,0,0,0,0,0,0,0
99,2016,4,Alabama,8,18,Legal Services,0,0,0,0,0,0,0,0,0,0
99,2016,4,Alabama,4,19,Pregnancy and Parenting,0,0,0,0,0,0,0,0,0,0
99,2016,4,Alabama,8,20,Prevention and Intervention,0,0,0,0,0,0,0,0,0,0
99,2016,4,Alabama,7,21,Protective Services - Adults,9427347,0,9427347,4896800,0,0,0,7190,7190,7190
99,2016,4,Alabama,1,22,Protective Services - Children,0,0,0,0,0,0,0,0,0,0
99,2016,4,Alabama,8,23,Recreation Services,0,0,0,0,0,0,0,0,0,0
99,2016,4,Alabama,4,24,Residential Treatment,0,0,0,0,0,0,0,0,0,0
99,2016,4,Alabama,6,25,Special Services - Disabled,0,0,0,0,0,0,0,0,0,0
99,2016,4,Alabama,1,26,Special Services - Youth at Risk,0,0,0,0,0,0,0,0,0,0
99,2016,4,Alabama,4,27,Substance Abuse Services,0,0,0,0,0,0,0,0,0,0
99,2016,4,Alabama,8,28,Transportation,0,0,0,0,0,0,0,0,0,0
99,2016,4,Alabama,8,29,Other Services,11066643,9331520,20398163,290115237,10552,0,0,0,0,10552
99,2016,4,Alabama,0,31,Administrative Costs,2068745,0,2068745,0,0,0,0,0,0,0
99,2016,4,Alabama,0,32,All Categories,24453248,9331520,33784768,414209087,38361,0,0,7473,7473,45834
98,2016,10,Alaska,1,1,Adoption Services,3640366,94106,3734472,30867369,3608,0,0,0,0,3608
98,2016,10,Alaska,2,2,Case Management,0,14656,14656,1344057,13329,0,0,0,0,13329
98,2016,10,Alaska,7,3,Congregate Meals,0,0,0,0,0,0,0,0,0,0
98,2016,10,Alaska,2,4,Counseling Services,0,0,0,0,0,0,0,0,0,0
98,2016,10,Alaska,7,5,Day Care - Adults,0,0,0,0,0,0,0,0,0,0
98,2016,10,Alaska,3,6,Day Care - Children,0,0,0,0,0,0,0,0,0,0
98,2016,10,Alaska,5,7,Education and Training Services,0,352511,352511,4345754,42,0,0,0,0,42
98,2016,10,Alaska,5,8,Employment Services,0,0,0,0,0,0,0,0,0,0
98,2016,10,Alaska,4,9,Family Planning Services,0,0,0,0,0,0,0,0,0,0
98,2016,10,Alaska,7,10,Foster Care Services - Adults,0,0,0,0,0,0,0,0,0,0
98,2016,10,Alaska,1,11,Foster Care Services - Children,0,632261,632261,36666507,2572,0,0,0,0,2572
98,2016,10,Alaska,4,12,Health-Related Services,0,59395,59395,12627078,2200,0,0,0,0,2200
98,2016,10,Alaska,8,13,Home-Based Services,0,0,0,0,0,0,0,0,0,0
98,2016,10,Alaska,7,14,Home-Delivered Meals,0,0,0,0,0,0,0,0,0,0
98,2016,10,Alaska,8,15,Housing Services,0,0,0,0,0,0,0,0,0,0
98,2016,10,Alaska,5,16,Independent/Transitional Living Services,0,125938,125938,1496226,296,0,0,0,0,296
98,2016,10,Alaska,2,17,Information and Referral,0,0,0,0,0,0,0,0,0,0
98,2016,10,Alaska,8,18,Legal Services,0,261491,261491,3420976,0,0,0,0,0,0
98,2016,10,Alaska,4,19,Pregnancy and Parenting,0,0,0,0,0,0,0,0,0,0
98,2016,10,Alaska,8,20,Prevention and Intervention,0,260719,260719,2572978,9420,0,0,0,0,9420
98,2016,10,Alaska,7,21,Protective Services - Adults,0,0,0,0,0,0,0,0,0,0
98,2016,10,Alaska,1,22,Protective Services - Children,0,1880572,1880572,20410493,30742,0,0,0,0,30742
98,2016,10,Alaska,8,23,Recreation Services,0,0,0,0,0,0,0,0,0,0
98,2016,10,Alaska,4,24,Residential Treatment,0,526884,526884,4198787,469,0,0,0,0,469
98,2016,10,Alaska,6,25,Special Services - Disabled,0,0,0,0,0,0,0,0,0,0
98,2016,10,Alaska,1,26,Special Services - Youth at Risk,0,0,0,0,0,0,0,0,0,0
98,2016,10,Alaska,4,27,Substance Abuse Services,0,252205,252205,0,0,0,0,95,95,95
98,2016,10,Alaska,8,28,Transportation,0,0,0,0,0,0,0,0,0,0
98,2016,10,Alaska,8,29,Other Services,0,0,0,0,0,0,0,0,0,0
98,2016,10,Alaska,0,31,Administrative Costs,0,0,0,0,0,0,0,0,0,0
98,2016,10,Alaska,0,32,All Categories,3640366,4460738,8101104,117950225,62678,0,0,95,95,62773
,2016,9,American Samoa,1,1,Adoption Services,0,0,0,0,0,0,0,0,0,0
,2016,9,American Samoa,2,2,Case Management,0,0,0,0,0,0,0,0,0,0
,2016,9,American Samoa,7,3,Congregate Meals,0,0,0,0,0,0,0,0,0,0
,2016,9,American Samoa,2,4,Counseling Services,0,0,0,0,0,0,0,0,0,0
,2016,9,American Samoa,7,5,Day Care - Adults,0,0,0,0,0,0,0,0,0,0
,2016,9,American Samoa,3,6,Day Care - Children,0,0,0,0,0,0,0,0,0,0
,2016,9,American Samoa,5,7,Education and Training Services,0,0,0,0,0,0,0,0,0,0
,2016,9,American Samoa,5,8,Employment Services,0,0,0,0,0,0,0,0,0,0
,2016,9,American Samoa,4,9,Family Planning Services,0,0,0,0,0,0,0,0,0,0
,2016,9,American Samoa,7,10,Foster Care Services - Adults,0,0,0,0,0,0,0,0,0,0
,2016,9,American Samoa,1,11,Foster Care Services - Children,0,0,0,0,0,0,0,0,0,0
,2016,9,American Samoa,4,12,Health-Related Services,0,0,0,0,0,0,0,0,0,0
,2016,9,American Samoa,8,13,Home-Based Services,0,0,0,0,0,0,0,0,0,0
,2016,9,American Samoa,7,14,Home-Delivered Meals,0,0,0,0,0,0,0,0,0,0
,2016,9,American Samoa,8,15,Housing Services,0,0,0,0,0,0,0,0,0,0
,2016,9,American Samoa,5,16,Independent/Transitional Living Services,0,0,0,0,0,0,0,0,0,0
,2016,9,American Samoa,2,17,Information and Referral,0,0,0,0,0,0,0,0,0,0
,2016,9,American Samoa,8,18,Legal Services,0,0,0,0,0,0,0,0,0,0
,2016,9,American Samoa,4,19,Pregnancy and Parenting,0,0,0,0,0,0,0,0,0,0
,2016,9,American Samoa,8,20,Prevention and Intervention,0,0,0,0,0,0,0,0,0,0
,2016,9,American Samoa,7,21,Protective Services - Adults,0,0,0,0,0,0,0,0,0,0
,2016,9,American Samoa,1,22,Protective Services - Children,0,0,0,0,0,0,0,0,0,0
,2016,9,American Samoa,8,23,Recreation Services,0,0,0,0,0,0,0,0,0,0
,2016,9,American Samoa,4,24,Residential Treatment,0,0,0,0,0,0,0,0,0,0
,2016,9,American Samoa,6,25,Special Services - Disabled,0,0,0,0,0,0,0,0,0,0
,2016,9,American Samoa,1,26,Special Services - Youth at Risk,0,0,0,0,0,0,0,0,0,0
,2016,9,American Samoa,4,27,Substance Abuse Services,0,0,0,0,0,0,0,0,0,0
,2016,9,American Samoa,8,28,Transportation,0,0,0,0,0,0,0,0,0,0
,2016,9,American Samoa,8,29,Other Services,0,0,0,0,0,0,0,0,0,0
,2016,9,American Samoa,0,31,Administrative Costs,0,0,0,0,0,0,0,0,0,0
,2016,9,American Samoa,0,32,All Categories,0,0,0,0,0,0,0,0,0,0
97,2016,9,Arizona,1,1,Adoption Services,0,0,0,0,0,0,0,0,0,0
97,2016,9,Arizona,2,2,Case Management,9510796,0,9510796,332436000,44598,987,7580,31320,39887,84485
97,2016,9,Arizona,7,3,Congregate Meals,100918,0,100918,4452520,0,1603,18015,0,19618,19618
97,2016,9,Arizona,2,4,Counseling Services,42670,0,42670,0,0,0,0,143,143,143
97,2016,9,Arizona,7,5,Day Care - Adults,214657,0,214657,796334,0,13,99,0,112,112
97,2016,9,Arizona,3,6,Day Care - Children,245443,0,245443,81010015,51721,0,0,0,0,51721
97,2016,9,Arizona,5,7,Education and Training Services,0,0,0,0,0,0,0,0,0,0
97,2016,9,Arizona,5,8,Employment Services,27950,0,27950,40187467,3152,11311,1,0,11312,14464
97,2016,9,Arizona,4,9,Family Planning Services,0,0,0,0,0,0,0,0,0,0
97,2016,9,Arizona,7,10,Foster Care Services - Adults,0,0,0,0,0,0,0,0,0,0
97,2016,9,Arizona,1,11,Foster Care Services - Children,5849500,21335657,27185157,276111000,40366,0,0,0,0,40366
97,2016,9,Arizona,4,12,Health-Related Services,236961,0,236961,135889,0,8,113,0,121,121
97,2016,9,Arizona,8,13,Home-Based Services,2689880,0,2689880,6261020,0,636,6106,0,6742,6742
97,2016,9,Arizona,7,14,Home-Delivered Meals,1050718,0,1050718,6283116,0,350,4261,0,4611,4611
97,2016,9,Arizona,8,15,Housing Services,1247758,0,1247758,15468010,1445,50,801,14454,15305,16750
97,2016,9,Arizona,5,16,Independent/Transitional Living Services,444464,0,444464,3068138,1,42,294,0,336,337
97,2016,9,Arizona,2,17,Information and Referral,123247,0,123247,1273477,0,3349,18718,0,22067,22067
97,2016,9,Arizona,8,18,Legal Services,1505115,0,1505115,22027596,40366,215,950,5773,6938,47304
97,2016,9,Arizona,4,19,Pregnancy and Parenting,0,0,0,0,0,0,0,0,0,0
97,2016,9,Arizona,8,20,Prevention and Intervention,143643,0,143643,1041976,108,4334,1151,0,5485,5593
97,2016,9,Arizona,7,21,Protective Services - Adults,5883492,0,5883492,10173505,0,3273,8356,0,11629,11629
97,2016,9,Arizona,1,22,Protective Services - Children,0,0,0,0,0,0,0,0,0,0
97,2016,9,Arizona,8,23,Recreation Services,0,0,0,0,0,0,0,0,0,0
97,2016,9,Arizona,4,24,Residential Treatment,0,0,0,0,0,0,0,0,0,0
97,2016,9,Arizona,6,25,Special Services - Disabled,26988,0,26988,57813239,136,3692,276,0,3968,4104
97,2016,9,Arizona,1,26,Special Services - Youth at Risk,0,0,0,0,0,0,0,0,0,0
97,2016,9,Arizona,4,27,Substance Abuse Services,0,0,0,0,0,0,0,0,0,0
97,2016,9,Arizona,8,28,Transportation,200474,0,200474,1334021,0,813,11953,250,13016,13016
97,2016,9,Arizona,8,29,Other Services,643396,0,643396,10177408,294149,92,944,948559,949595,1243744
97,2016,9,Arizona,0,31,Administrative Costs,419806,0,419806,0,0,0,0,0,0,0
97,2016,9,Arizona,0,32,All Categories,30607876,21335657,51943533,870050731,476042,30768,79618,1000499,1110885,1586927
96,2016,6,Arkansas,1,1,Adoption Services,0,0,0,0,0,0,0,0,0,0
96,2016,6,Arkansas,2,2,Case Management,0,0,0,0,0,0,0,0,0,0
96,2016,6,Arkansas,7,3,Congregate Meals,362333,0,362333,0,0,0,1000,0,1000,1000
96,2016,6,Arkansas,2,4,Counseling Services,1218565,0,1218565,33504094,20263,36821,4255,0,41076,61339
96,2016,6,Arkansas,7,5,Day Care - Adults,0,0,0,0,0,0,0,0,0,0
96,2016,6,Arkansas,3,6,Day Care - Children,538433,0,538433,720043,600,0,0,0,0,600
96,2016,6,Arkansas,5,7,Education and Training Services,0,0,0,0,0,0,0,0,0,0
96,2016,6,Arkansas,5,8,Employment Services,0,0,0,0,0,0,0,0,0,0
96,2016,6,Arkansas,4,9,Family Planning Services,0,0,0,0,0,0,0,0,0,0
96,2016,6,Arkansas,7,10,Foster Care Services - Adults,0,0,0,0,0,0,0,0,0,0
96,2016,6,Arkansas,1,11,Foster Care Services - Children,0,0,0,0,0,0,0,0,0,0
96,2016,6,Arkansas,4,12,Health-Related Services,0,0,0,0,0,0,0,0,0,0
96,2016,6,Arkansas,8,13,Home-Based Services,16217,0,16217,0,0,0,50,0,50,50
96,2016,6,Arkansas,7,14,Home-Delivered Meals,1147823,0,1147823,0,0,0,1433,0,1433,1433
96,2016,6,Arkansas,8,15,Housing Services,0,0,0,0,0,0,0,0,0,0
96,2016,6,Arkansas,5,16,Independent/Transitional Living Services,0,0,0,0,0,0,0,0,0,0
96,2016,6,Arkansas,2,17,Information and Referral,0,0,0,0,0,0,0,0,0,0
96,2016,6,Arkansas,8,18,Legal Services,591768,0,591768,0,0,5458,0,0,5458,5458
96,2016,6,Arkansas,4,19,Pregnancy and Parenting,0,0,0,0,0,0,0,0,0,0
96,2016,6,Arkansas,8,20,Prevention and Intervention,3442726,0,3442726,5041947,14482,11293,16944,19330,47567,62049
96,2016,6,Arkansas,7,21,Protective Services - Adults,159011,0,159011,0,0,1927,0,0,1927,1927
96,2016,6,Arkansas,1,22,Protective Services - Children,1477030,0,1477030,0,8345,0,0,0,0,8345
96,2016,6,Arkansas,8,23,Recreation Services,95471,0,95471,0,0,0,1586,0,1586,1586
96,2016,6,Arkansas,4,24,Residential Treatment,9480816,0,9480816,0,575,0,0,0,0,575
96,2016,6,Arkansas,6,25,Special Services - Disabled,2652029,0,2652029,3534085,7516,6636,2032,158,8826,16342
96,2016,6,Arkansas,1,26,Special Services - Youth at Risk,221134,0,221134,0,376,0,0,0,0,376
96,2016,6,Arkansas,4,27,Substance Abuse Services,430192,0,430192,13172636,567,9672,257,3,9932,10499
96,2016,6,Arkansas,8,28,Transportation,199208,0,199208,25569,1,67,436,0,503,504
96,2016,6,Arkansas,8,29,Other Services,0,0,0,0,0,0,0,0,0,0
96,2016,6,Arkansas,0,31,Administrative Costs,665459,0,665459,0,0,0,0,0,0,0
96,2016,6,Arkansas,0,32,All Categories,22698215,0,22698215,55998374,52725,71874,27993,19491,119358,172083
95,2016,9,California,1,1,Adoption Services,0,0,0,0,0,0,0,0,0,0
95,2016,9,California,2,2,Case Management,0,0,0,0,0,0,0,0,0,0
95,2016,9,California,7,3,Congregate Meals,0,0,0,0,0,0,0,0,0,0
95,2016,9,California,2,4,Counseling Services,0,0,0,0,0,0,0,0,0,0
95,2016,9,California,7,5,Day Care - Adults,2891558,0,2891558,1322850,0,44921,11230,0,56151,56151
95,2016,9,California,3,6,Day Care - Children,33990980,173108000,207098980,612379268,2212127,0,0,0,0,2212127
95,2016,9,California,5,7,Education and Training Services,0,0,0,0,0,0,0,0,0,0
95,2016,9,California,5,8,Employment Services,0,0,0,0,0,0,0,0,0,0
95,2016,9,California,4,9,Family Planning Services,0,0,0,0,0,0,0,0,0,0
95,2016,9,California,7,10,Foster Care Services - Adults,15180677,0,15180677,45512622,0,35388,4826,0,40214,40214
95,2016,9,California,1,11,Foster Care Services - Children,0,93974732,93974732,864599268,76946,0,0,0,0,76946
95,2016,9,California,4,12,Health-Related Services,0,0,0,0,0,0,0,0,0,0
95,2016,9,California,8,13,Home-Based Services,0,0,0,0,0,0,0,0,0,0
95,2016,9,California,7,14,Home-Delivered Meals,0,0,0,0,0,0,0,0,0,0
95,2016,9,California,8,15,Housing Services,0,0,0,0,0,0,0,0,0,0
95,2016,9,California,5,16,Independent/Transitional Living Services,0,0,0,0,0,0,0,0,0,0
95,2016,9,California,2,17,Information and Referral,0,0,0,0,0,0,0,0,0,0
95,2016,9,California,8,18,Legal Services,0,0,0,0,0,0,0,0,0,0
95,2016,9,California,4,19,Pregnancy and Parenting,0,0,0,0,0,0,0,0,0,0
95,2016,9,California,8,20,Prevention and Intervention,0,0,0,0,0,0,0,0,0,0
95,2016,9,California,7,21,Protective Services - Adults,0,0,0,0,0,0,0,0,0,0
95,2016,9,California,1,22,Protective Services - Children,0,0,0,0,0,0,0,0,0,0
95,2016,9,California,8,23,Recreation Services,0,0,0,0,0,0,0,0,0,0
95,2016,9,California,4,24,Residential Treatment,0,0,0,0,0,0,0,0,0,0
95,2016,9,California,6,25,Special Services - Disabled,138959805,77157000,216116805,5084317684,178857,141998,13955,162700,318653,497510
95,2016,9,California,1,26,Special Services - Youth at Risk,0,0,0,0,0,0,0,0,0,0
95,2016,9,California,4,27,Substance Abuse Services,0,0,0,0,0,0,0,0,0,0
95,2016,9,California,8,28,Transportation,0,0,0,0,0,0,0,0,0,0
95,2016,9,California,8,29,Other Services,0,0,0,0,0,0,0,0,0,0
95,2016,9,California,0,31,Administrative Costs,0,0,0,0,0,0,0,0,0,0
95,2016,9,California,0,32,All Categories,191023020,344239732,535262752,6608131692,2467930,222307,30011,162700,415018,2882948
94,2016,8,Colorado,1,1,Adoption Services,0,0,0,0,0,0,0,0,0,0
94,2016,8,Colorado,2,2,Case Management,0,0,0,0,0,0,0,0,0,0
94,2016,8,Colorado,7,3,Congregate Meals,0,0,0,0,0,0,0,0,0,0
94,2016,8,Colorado,2,4,Counseling Services,0,0,0,0,0,0,0,0,0,0
94,2016,8,Colorado,7,5,Day Care - Adults,0,0,0,0,0,0,0,0,0,0
94,2016,8,Colorado,3,6,Day Care - Children,100000,739588,839588,91365434,19401,0,0,0,0,19401
94,2016,8,Colorado,5,7,Education and Training Services,0,0,0,0,0,0,0,0,0,0
94,2016,8,Colorado,5,8,Employment Services,0,0,0,0,0,0,0,0,0,0
94,2016,8,Colorado,4,9,Family Planning Services,0,0,0,0,0,0,0,0,0,0
94,2016,8,Colorado,7,10,Foster Care Services - Adults,0,0,0,0,0,0,0,0,0,0
94,2016,8,Colorado,1,11,Foster Care Services - Children,18464965,0,18464965,326212690,23204,0,0,0,0,23204
94,2016,8,Colorado,4,12,Health-Related Services,0,0,0,0,0,0,0,0,0,0
94,2016,8,Colorado,8,13,Home-Based Services,0,0,0,0,0,0,0,0,0,0
94,2016,8,Colorado,7,14,Home-Delivered Meals,0,0,0,0,0,0,0,0,0,0
94,2016,8,Colorado,8,15,Housing Services,0,0,0,0,0,0,0,0,0,0
94,2016,8,Colorado,5,16,Independent/Transitional Living Services,0,0,0,0,0,0,0,0,0,0
94,2016,8,Colorado,2,17,Information and Referral,0,0,0,0,0,0,0,0,0,0
94,2016,8,Colorado,8,18,Legal Services,0,0,0,0,0,0,0,0,0,0
94,2016,8,Colorado,4,19,Pregnancy and Parenting,0,0,0,0,0,0,0,0,0,0
94,2016,8,Colorado,8,20,Prevention and Intervention,0,0,0,0,0,0,0,0,0,0
94,2016,8,Colorado,7,21,Protective Services - Adults,2041029,0,2041029,11267595,0,1884,5847,0,7731,7731
94,2016,8,Colorado,1,22,Protective Services - Children,0,0,0,0,0,0,0,0,0,0
94,2016,8,Colorado,8,23,Recreation Services,0,0,0,0,0,0,0,0,0,0
94,2016,8,Colorado,4,24,Residential Treatment,0,0,0,0,0,0,0,0,0,0
94,2016,8,Colorado,6,25,Special Services - Disabled,0,0,0,0,0,0,0,0,0,0
94,2016,8,Colorado,1,26,Special Services - Youth at Risk,0,0,0,0,0,0,0,0,0,0
94,2016,8,Colorado,4,27,Substance Abuse Services,0,0,0,0,0,0,0,0,0,0
94,2016,8,Colorado,8,28,Transportation,0,0,0,0,0,0,0,0,0,0
94,2016,8,Colorado,8,29,Other Services,0,0,0,0,0,0,0,0,0,0
94,2016,8,Colorado,0,31,Administrative Costs,5326272,0,5326272,0,0,0,0,0,0,0
94,2016,8,Colorado,0,32,All Categories,25932266,739588,26671854,428845719,42605,1884,5847,0,7731,50336
93,2016,1,Connecticut,1,1,Adoption Services,0,0,0,0,0,0,0,0,0,0
93,2016,1,Connecticut,2,2,Case Management,2573595,1016977,3590572,9988158,109018,194916,37360,369,232645,341663
93,2016,1,Connecticut,7,3,Congregate Meals,0,0,0,0,0,0,0,0,0,0
93,2016,1,Connecticut,2,4,Counseling Services,252634,0,252634,2784803,1008,2713,1073,56,3842,4850
93,2016,1,Connecticut,7,5,Day Care - Adults,0,0,0,0,0,0,0,0,0,0
93,2016,1,Connecticut,3,6,Day Care - Children,0,15625131,15625131,16970802,109071,0,0,3476,3476,112547
93,2016,1,Connecticut,5,7,Education and Training Services,0,0,0,0,0,0,0,0,0,0
93,2016,1,Connecticut,5,8,Employment Services,80000,0,80000,0,0,342,0,0,342,342
93,2016,1,Connecticut,4,9,Family Planning Services,955864,0,955864,126217,903,13234,103,0,13337,14240
93,2016,1,Connecticut,7,10,Foster Care Services - Adults,0,0,0,0,0,0,0,0,0,0
93,2016,1,Connecticut,1,11,Foster Care Services - Children,0,0,0,0,0,0,0,0,0,0
93,2016,1,Connecticut,4,12,Health-Related Services,0,0,0,0,0,0,0,0,0,0
93,2016,1,Connecticut,8,13,Home-Based Services,5175984,0,5175984,0,0,1324,628,8,1960,1960
93,2016,1,Connecticut,7,14,Home-Delivered Meals,450000,0,450000,10587262,0,13,616,0,629,629
93,2016,1,Connecticut,8,15,Housing Services,6524928,1851908,8376836,8723886,1067,3373,235,0,3608,4675
93,2016,1,Connecticut,5,16,Independent/Transitional Living Services,165760,1481363,1647123,9363798,1536,6404,539,0,6943,8479
93,2016,1,Connecticut,2,17,Information and Referral,464234,0,464234,3216432,476,36003,1419,7721,45143,45619
93,2016,1,Connecticut,8,18,Legal Services,732451,0,732451,17910573,1064,3284,1721,0,5005,6069
93,2016,1,Connecticut,4,19,Pregnancy and Parenting,0,0,0,0,0,0,0,0,0,0
93,2016,1,Connecticut,8,20,Prevention and Intervention,11704,0,11704,244302,15,250,18,0,268,283
93,2016,1,Connecticut,7,21,Protective Services - Adults,341458,0,341458,0,8,290,1,77,368,376
93,2016,1,Connecticut,1,22,Protective Services - Children,0,3065411,3065411,0,125337,207064,52624,0,259688,385025
93,2016,1,Connecticut,8,23,Recreation Services,0,0,0,0,0,0,0,0,0,0
93,2016,1,Connecticut,4,24,Residential Treatment,0,3209614,3209614,7847577,110,0,0,0,0,110
93,2016,1,Connecticut,6,25,Special Services - Disabled,0,0,0,0,0,0,0,0,0,0
93,2016,1,Connecticut,1,26,Special Services - Youth at Risk,0,0,0,0,0,0,0,0,0,0
93,2016,1,Connecticut,4,27,Substance Abuse Services,1402490,0,1402490,14996261,0,3363,181,0,3544,3544
93,2016,1,Connecticut,8,28,Transportation,0,0,0,0,0,0,0,0,0,0
93,2016,1,Connecticut,8,29,Other Services,0,613070,613070,1281681,4659,14118,3170,258,17546,22205
93,2016,1,Connecticut,0,31,Administrative Costs,0,0,0,0,0,0,0,0,0,0
93,2016,1,Connecticut,0,32,All Categories,19131102,26863474,45994576,104041752,354272,486691,99688,11965,598344,952616
10,2016,3,Delaware,1,1,Adoption Services,0,0,0,0,0,0,0,0,0,0
10,2016,3,Delaware,2,2,Case Management,75015,0,75015,25368,0,149,402,0,551,551
10,2016,3,Delaware,7,3,Congregate Meals,0,0,0,0,0,0,0,0,0,0
10,2016,3,Delaware,2,4,Counseling Services,0,0,0,0,0,0,0,0,0,0
10,2016,3,Delaware,7,5,Day Care - Adults,9794,0,9794,622349,0,19,34,0,53,53
10,2016,3,Delaware,3,6,Day Care - Children,1011649,0,1011649,0,15315,0,0,0,0,15315
10,2016,3,Delaware,5,7,Education and Training Services,0,0,0,0,0,0,0,0,0,0
10,2016,3,Delaware,5,8,Employment Services,0,0,0,0,0,0,0,0,0,0
10,2016,3,Delaware,4,9,Family Planning Services,0,0,0,0,0,0,0,0,0,0
10,2016,3,Delaware,7,10,Foster Care Services - Adults,5583,0,5583,97917,0,1,4,0,5,5
10,2016,3,Delaware,1,11,Foster Care Services - Children,827441,0,827441,11353900,712,0,0,0,0,712
10,2016,3,Delaware,4,12,Health-Related Services,0,0,0,0,0,0,0,0,0,0
10,2016,3,Delaware,8,13,Home-Based Services,430059,0,430059,2766756,0,28,84,0,112,112
10,2016,3,Delaware,7,14,Home-Delivered Meals,59405,0,59405,4139396,0,51,17,0,68,68
10,2016,3,Delaware,8,15,Housing Services,0,0,0,0,0,0,0,0,0,0
10,2016,3,Delaware,5,16,Independent/Transitional Living Services,0,0,0,0,0,0,0,0,0,0
10,2016,3,Delaware,2,17,Information and Referral,0,0,0,0,0,0,0,0,0,0
10,2016,3,Delaware,8,18,Legal Services,0,0,0,0,0,0,0,0,0,0
10,2016,3,Delaware,4,19,Pregnancy and Parenting,0,0,0,0,0,0,0,0,0,0
10,2016,3,Delaware,8,20,Prevention and Intervention,51430,0,51430,579134,0,37,14,0,51,51
10,2016,3,Delaware,7,21,Protective Services - Adults,0,0,0,0,0,0,0,0,0,0
10,2016,3,Delaware,1,22,Protective Services - Children,435380,0,435380,26859390,8948,0,0,0,0,8948
10,2016,3,Delaware,8,23,Recreation Services,0,0,0,0,0,0,0,0,0,0
10,2016,3,Delaware,4,24,Residential Treatment,0,0,0,0,0,0,0,0,0,0
10,2016,3,Delaware,6,25,Special Services - Disabled,0,0,0,0,0,0,0,0,0,0
10,2016,3,Delaware,1,26,Special Services - Youth at Risk,909905,0,909905,11099497,1853,0,0,0,0,1853
10,2016,3,Delaware,4,27,Substance Abuse Services,0,0,0,0,0,0,0,0,0,0
10,2016,3,Delaware,8,28,Transportation,0,0,0,0,0,0,0,0,0,0
10,2016,3,Delaware,8,29,Other Services,0,0,0,0,0,0,0,0,0,0
10,2016,3,Delaware,0,31,Administrative Costs,247472,0,247472,0,0,0,0,0,0,0
10,2016,3,Delaware,0,32,All Categories,4063133,0,4063133,57543707,26828,285,555,0,840,27668
11,2016,3,District of Columbia,1,1,Adoption Services,0,0,0,0,0,0,0,0,0,0
11,2016,3,District of Columbia,2,2,Case Management,0,0,0,0,0,0,0,0,0,0
11,2016,3,District of Columbia,7,3,Congregate Meals,0,0,0,0,0,0,0,0,0,0
11,2016,3,District of Columbia,2,4,Counseling Services,0,0,0,0,0,0,0,0,0,0
11,2016,3,District of Columbia,7,5,Day Care - Adults,0,0,0,0,0,0,0,0,0,0
11,2016,3,District of Columbia,3,6,Day Care - Children,229251,0,229251,80970326,11275,0,0,0,0,11275
11,2016,3,District of Columbia,5,7,Education and Training Services,0,0,0,0,0,0,0,0,0,0
11,2016,3,District of Columbia,5,8,Employment Services,0,0,0,0,0,0,0,0,0,0
11,2016,3,District of Columbia,4,9,Family Planning Services,0,0,0,0,0,0,0,0,0,0
11,2016,3,District of Columbia,7,10,Foster Care Services - Adults,0,0,0,0,0,0,0,0,0,0
11,2016,3,District of Columbia,1,11,Foster Care Services - Children,0,0,0,0,0,0,0,0,0,0
11,2016,3,District of Columbia,4,12,Health-Related Services,0,0,0,0,0,0,0,0,0,0
11,2016,3,District of Columbia,8,13,Home-Based Services,0,0,0,0,0,0,0,0,0,0
11,2016,3,District of Columbia,7,14,Home-Delivered Meals,0,0,0,0,0,0,0,0,0,0
11,2016,3,District of Columbia,8,15,Housing Services,0,0,0,0,0,0,0,0,0,0
11,2016,3,District of Columbia,5,16,Independent/Transitional Living Services,0,0,0,0,0,0,0,0,0,0
11,2016,3,District of Columbia,2,17,Information and Referral,0,0,0,0,0,0,0,0,0,0
11,2016,3,District of Columbia,8,18,Legal Services,0,0,0,0,0,0,0,0,0,0
11,2016,3,District of Columbia,4,19,Pregnancy and Parenting,0,0,0,0,0,0,0,0,0,0
11,2016,3,District of Columbia,8,20,Prevention and Intervention,0,0,0,0,0,0,0,0,0,0
11,2016,3,District of Columbia,7,21,Protective Services - Adults,553445,0,553445,2034660,0,338,924,223,1485,1485
11,2016,3,District of Columbia,1,22,Protective Services - Children,0,0,0,0,0,0,0,0,0,0
11,2016,3,District of Columbia,8,23,Recreation Services,0,0,0,0,0,0,0,0,0,0
11,2016,3,District of Columbia,4,24,Residential Treatment,0,0,0,0,0,0,0,0,0,0
11,2016,3,District of Columbia,6,25,Special Services - Disabled,0,0,0,0,0,0,0,0,0,0
11,2016,3,District of Columbia,1,26,Special Services - Youth at Risk,0,0,0,0,0,0,0,0,0,0
11,2016,3,District of Columbia,4,27,Substance Abuse Services,0,0,0,0,0,0,0,0,0,0
11,2016,3,District of Columbia,8,28,Transportation,0,0,0,0,0,0,0,0,0,0
11,2016,3,District of Columbia,8,29,Other Services,4186945,3520401,7707346,145174699,0,0,0,10225,10225,10225
11,2016,3,District of Columbia,0,31,Administrative Costs,0,0,0,0,0,0,0,0,0,0
11,2016,3,District of Columbia,0,32,All Categories,4969641,3520401,8490042,228179685,11275,338,924,10448,11710,22985
12,2016,4,Florida,1,1,Adoption Services,63771,0,63771,679739,8649,0,0,0,0,8649
12,2016,4,Florida,2,2,Case Management,167352,0,167352,507347,0,0,0,0,0,0
12,2016,4,Florida,7,3,Congregate Meals,0,0,0,0,0,0,0,0,0,0
12,2016,4,Florida,2,4,Counseling Services,0,0,0,0,0,0,0,0,0,0
12,2016,4,Florida,7,5,Day Care - Adults,0,0,0,0,0,0,0,0,0,0
12,2016,4,Florida,3,6,Day Care - Children,2004271,0,2004271,8804874,542439,0,0,0,0,542439
12,2016,4,Florida,5,7,Education and Training Services,825045,2872,827917,6937561,0,0,0,468200,468200,468200
12,2016,4,Florida,5,8,Employment Services,0,0,0,0,0,0,0,0,0,0
12,2016,4,Florida,4,9,Family Planning Services,0,0,0,0,0,0,0,0,0,0
12,2016,4,Florida,7,10,Foster Care Services - Adults,0,0,0,0,0,0,0,0,0,0
12,2016,4,Florida,1,11,Foster Care Services - Children,772204,59260650,60032854,102466965,38875,0,0,0,0,38875
12,2016,4,Florida,4,12,Health-Related Services,6972100,0,6972100,0,39621,0,0,0,0,39621
12,2016,4,Florida,8,13,Home-Based Services,0,0,0,0,0,0,0,0,0,0
12,2016,4,Florida,7,14,Home-Delivered Meals,0,0,0,0,0,0,0,0,0,0
12,2016,4,Florida,8,15,Housing Services,0,0,0,0,0,0,0,0,0,0
12,2016,4,Florida,5,16,Independent/Transitional Living Services,0,0,0,0,0,0,0,0,0,0
12,2016,4,Florida,2,17,Information and Referral,107225,0,107225,579595,0,0,0,5462112,5462112,5462112
12,2016,4,Florida,8,18,Legal Services,4707112,0,4707112,41095223,61623,0,0,0,0,61623
12,2016,4,Florida,4,19,Pregnancy and Parenting,0,0,0,0,0,0,0,0,0,0
12,2016,4,Florida,8,20,Prevention and Intervention,0,0,0,0,0,0,0,0,0,0
12,2016,4,Florida,7,21,Protective Services - Adults,6868662,0,6868662,48544213,0,15211,38496,438,54145,54145
12,2016,4,Florida,1,22,Protective Services - Children,13814341,9105688,22920029,172627150,229870,0,0,0,0,229870
12,2016,4,Florida,8,23,Recreation Services,0,0,0,0,0,0,0,0,0,0
12,2016,4,Florida,4,24,Residential Treatment,0,0,0,0,0,0,0,0,0,0
12,2016,4,Florida,6,25,Special Services - Disabled,12154087,0,12154087,0,1046,2779,182,0,2961,4007
12,2016,4,Florida,1,26,Special Services - Youth at Risk,47835612,0,47835612,0,4486,0,0,0,0,4486
12,2016,4,Florida,4,27,Substance Abuse Services,0,0,0,0,0,0,0,0,0,0
12,2016,4,Florida,8,28,Transportation,0,0,0,0,0,0,0,0,0,0
12,2016,4,Florida,8,29,Other Services,0,0,0,0,0,0,0,0,0,0
12,2016,4,Florida,0,31,Administrative Costs,4595098,294440,4889538,0,0,0,0,0,0,0
12,2016,4,Florida,0,32,All Categories,100886880,68663650,169550530,382242667,926609,17990,38678,5930750,5987418,6914027
13,2016,4,Georgia,1,1,Adoption Services,0,0,0,0,0,0,0,0,0,0
13,2016,4,Georgia,2,2,Case Management,0,0,0,0,0,0,0,0,0,0
13,2016,4,Georgia,7,3,Congregate Meals,0,0,0,0,0,0,0,0,0,0
13,2016,4,Georgia,2,4,Counseling Services,0,0,0,0,0,0,0,0,0,0
13,2016,4,Georgia,7,5,Day Care - Adults,0,0,0,0,0,0,0,0,0,0
13,2016,4,Georgia,3,6,Day Care - Children,0,0,0,0,0,0,0,0,0,0
13,2016,4,Georgia,5,7,Education and Training Services,0,0,0,0,0,0,0,0,0,0
13,2016,4,Georgia,5,8,Employment Services,0,0,0,0,0,0,0,0,0,0
13,2016,4,Georgia,4,9,Family Planning Services,0,0,0,0,0,0,0,0,0,0
13,2016,4,Georgia,7,10,Foster Care Services - Adults,0,0,0,0,0,0,0,0,0,0
13,2016,4,Georgia,1,11,Foster Care Services - Children,0,0,0,0,0,0,0,0,0,0
13,2016,4,Georgia,4,12,Health-Related Services,0,0,0,0,0,0,0,0,0,0
13,2016,4,Georgia,8,13,Home-Based Services,5078288,0,5078288,48693275,0,0,35886,0,35886,35886
13,2016,4,Georgia,7,14,Home-Delivered Meals,0,0,0,0,0,0,0,0,0,0
13,2016,4,Georgia,8,15,Housing Services,0,0,0,0,0,0,0,0,0,0
13,2016,4,Georgia,5,16,Independent/Transitional Living Services,0,0,0,0,0,0,0,0,0,0
13,2016,4,Georgia,2,17,Information and Referral,0,0,0,0,0,0,0,0,0,0
13,2016,4,Georgia,8,18,Legal Services,0,0,0,0,0,0,0,0,0,0
13,2016,4,Georgia,4,19,Pregnancy and Parenting,0,0,0,0,0,0,0,0,0,0
13,2016,4,Georgia,8,20,Prevention and Intervention,0,0,0,0,0,0,0,0,0,0
13,2016,4,Georgia,7,21,Protective Services - Adults,1302702,0,1302702,13786212,0,0,5090,0,5090,5090
13,2016,4,Georgia,1,22,Protective Services - Children,2863878,5881073,8744951,321867788,15993,0,0,0,0,15993
13,2016,4,Georgia,8,23,Recreation Services,0,0,0,0,0,0,0,0,0,0
13,2016,4,Georgia,4,24,Residential Treatment,0,0,0,0,0,0,0,0,0,0
13,2016,4,Georgia,6,25,Special Services - Disabled,13063262,0,13063262,311516542,0,0,0,4270,4270,4270
13,2016,4,Georgia,1,26,Special Services - Youth at Risk,0,0,0,0,0,0,0,0,0,0
13,2016,4,Georgia,4,27,Substance Abuse Services,7553590,0,7553590,87396908,0,239,0,0,239,239
13,2016,4,Georgia,8,28,Transportation,9547378,0,9547378,25093808,0,0,7052,8040,15092,15092
13,2016,4,Georgia,8,29,Other Services,10462242,0,10462242,41933328,0,54,173,23465,23692,23692
13,2016,4,Georgia,0,31,Administrative Costs,22002,0,22002,0,0,0,0,0,0,0
13,2016,4,Georgia,0,32,All Categories,49893342,5881073,55774415,850287861,15993,293,48201,35775,84269,100262
,2016,9,Guam,1,1,Adoption Services,0,0,0,0,0,0,0,0,0,0
,2016,9,Guam,2,2,Case Management,0,0,0,0,0,0,0,0,0,0
,2016,9,Guam,7,3,Congregate Meals,0,0,0,0,0,0,0,0,0,0
,2016,9,Guam,2,4,Counseling Services,0,0,0,0,0,0,0,0,0,0
,2016,9,Guam,7,5,Day Care - Adults,0,0,0,0,0,0,0,0,0,0
,2016,9,Guam,3,6,Day Care - Children,0,0,0,0,0,0,0,0,0,0
,2016,9,Guam,5,7,Education and Training Services,0,0,0,0,0,0,0,0,0,0
,2016,9,Guam,5,8,Employment Services,0,0,0,0,0,0,0,0,0,0
,2016,9,Guam,4,9,Family Planning Services,0,0,0,0,0,0,0,0,0,0
,2016,9,Guam,7,10,Foster Care Services - Adults,0,0,0,0,0,0,0,0,0,0
,2016,9,Guam,1,11,Foster Care Services - Children,0,0,0,0,0,0,0,0,0,0
,2016,9,Guam,4,12,Health-Related Services,0,0,0,0,0,0,0,0,0,0
,2016,9,Guam,8,13,Home-Based Services,0,0,0,0,0,0,0,0,0,0
,2016,9,Guam,7,14,Home-Delivered Meals,0,0,0,0,0,0,0,0,0,0
,2016,9,Guam,8,15,Housing Services,0,0,0,0,0,0,0,0,0,0
,2016,9,Guam,5,16,Independent/Transitional Living Services,0,0,0,0,0,0,0,0,0,0
,2016,9,Guam,2,17,Information and Referral,0,0,0,0,0,0,0,0,0,0
,2016,9,Guam,8,18,Legal Services,0,0,0,0,0,0,0,0,0,0
,2016,9,Guam,4,19,Pregnancy and Parenting,0,0,0,0,0,0,0,0,0,0
,2016,9,Guam,8,20,Prevention and Intervention,0,0,0,0,0,0,0,0,0,0
,2016,9,Guam,7,21,Protective Services - Adults,0,0,0,0,0,0,0,0,0,0
,2016,9,Guam,1,22,Protective Services - Children,0,0,0,0,0,0,0,0,0,0
,2016,9,Guam,8,23,Recreation Services,0,0,0,0,0,0,0,0,0,0
,2016,9,Guam,4,24,Residential Treatment,0,0,0,0,0,0,0,0,0,0
,2016,9,Guam,6,25,Special Services - Disabled,0,0,0,0,0,0,0,0,0,0
,2016,9,Guam,1,26,Special Services - Youth at Risk,0,0,0,0,0,0,0,0,0,0
,2016,9,Guam,4,27,Substance Abuse Services,0,0,0,0,0,0,0,0,0,0
,2016,9,Guam,8,28,Transportation,0,0,0,0,0,0,0,0,0,0
,2016,9,Guam,8,29,Other Services,0,0,0,0,0,0,0,0,0,0
,2016,9,Guam,0,31,Administrative Costs,0,0,0,0,0,0,0,0,0,0
,2016,9,Guam,0,32,All Categories,0,0,0,0,0,0,0,0,0,0
15,2016,9,Hawaii,1,1,Adoption Services,0,0,0,0,0,0,0,0,0,0
15,2016,9,Hawaii,2,2,Case Management,0,0,0,0,0,0,0,0,0,0
15,2016,9,Hawaii,7,3,Congregate Meals,0,0,0,0,0,0,0,0,0,0
15,2016,9,Hawaii,2,4,Counseling Services,0,0,0,0,0,0,0,0,0,0
15,2016,9,Hawaii,7,5,Day Care - Adults,0,0,0,0,0,0,0,0,0,0
15,2016,9,Hawaii,3,6,Day Care - Children,0,0,0,0,0,0,0,0,0,0
15,2016,9,Hawaii,5,7,Education and Training Services,0,0,0,0,0,0,0,0,0,0
15,2016,9,Hawaii,5,8,Employment Services,0,0,0,0,0,0,0,0,0,0
15,2016,9,Hawaii,4,9,Family Planning Services,0,0,0,0,0,0,0,0,0,0
15,2016,9,Hawaii,7,10,Foster Care Services - Adults,0,0,0,0,0,0,0,0,0,0
15,2016,9,Hawaii,1,11,Foster Care Services - Children,552780,0,552780,0,226,0,0,0,0,226
15,2016,9,Hawaii,4,12,Health-Related Services,0,0,0,0,0,0,0,0,0,0
15,2016,9,Hawaii,8,13,Home-Based Services,57087,0,57087,0,0,0,10,0,10,10
15,2016,9,Hawaii,7,14,Home-Delivered Meals,0,0,0,0,0,0,0,0,0,0
15,2016,9,Hawaii,8,15,Housing Services,0,0,0,0,0,0,0,0,0,0
15,2016,9,Hawaii,5,16,Independent/Transitional Living Services,0,0,0,0,0,0,0,0,0,0
15,2016,9,Hawaii,2,17,Information and Referral,0,0,0,0,0,0,0,0,0,0
15,2016,9,Hawaii,8,18,Legal Services,0,0,0,0,0,0,0,0,0,0
15,2016,9,Hawaii,4,19,Pregnancy and Parenting,0,0,0,0,0,0,0,0,0,0
15,2016,9,Hawaii,8,20,Prevention and Intervention,0,0,0,0,0,0,0,0,0,0
15,2016,9,Hawaii,7,21,Protective Services - Adults,429013,0,429013,0,0,132,726,3,861,861
15,2016,9,Hawaii,1,22,Protective Services - Children,10702129,9890000,20592129,0,7768,0,0,0,0,7768
15,2016,9,Hawaii,8,23,Recreation Services,0,0,0,0,0,0,0,0,0,0
15,2016,9,Hawaii,4,24,Residential Treatment,0,0,0,0,0,0,0,0,0,0
15,2016,9,Hawaii,6,25,Special Services - Disabled,0,0,0,0,0,0,0,0,0,0
15,2016,9,Hawaii,1,26,Special Services - Youth at Risk,707366,0,707366,0,4247,0,0,22,22,4269
15,2016,9,Hawaii,4,27,Substance Abuse Services,0,0,0,0,0,0,0,0,0,0
15,2016,9,Hawaii,8,28,Transportation,0,0,0,0,0,0,0,0,0,0
15,2016,9,Hawaii,8,29,Other Services,0,0,0,0,0,0,0,0,0,0
15,2016,9,Hawaii,0,31,Administrative Costs,4500,0,4500,0,0,0,0,0,0,0
15,2016,9,Hawaii,0,32,All Categories,12452875,9890000,22342875,0,12241,132,736,25,893,13134
16,2016,10,Idaho,1,1,Adoption Services,13760,4077,17837,8838731,673,0,0,0,0,673
16,2016,10,Idaho,2,2,Case Management,3671715,1007644,4679359,3499772,3128,0,0,0,0,3128
16,2016,10,Idaho,7,3,Congregate Meals,0,0,0,0,0,0,0,0,0,0
16,2016,10,Idaho,2,4,Counseling Services,0,0,0,0,0,0,0,0,0,0
16,2016,10,Idaho,7,5,Day Care - Adults,0,0,0,0,0,0,0,0,0,0
16,2016,10,Idaho,3,6,Day Care - Children,24185,0,24185,33673053,13480,0,0,0,0,13480
16,2016,10,Idaho,5,7,Education and Training Services,0,0,0,0,0,0,0,0,0,0
16,2016,10,Idaho,5,8,Employment Services,0,0,0,0,0,0,0,0,0,0
16,2016,10,Idaho,4,9,Family Planning Services,0,0,0,0,0,0,0,0,0,0
16,2016,10,Idaho,7,10,Foster Care Services - Adults,0,0,0,0,0,0,0,0,0,0
16,2016,10,Idaho,1,11,Foster Care Services - Children,1435606,0,1435606,11211526,472,0,0,0,0,472
16,2016,10,Idaho,4,12,Health-Related Services,0,0,0,0,0,0,0,0,0,0
16,2016,10,Idaho,8,13,Home-Based Services,0,0,0,0,0,0,0,0,0,0
16,2016,10,Idaho,7,14,Home-Delivered Meals,0,0,0,0,0,0,0,0,0,0
16,2016,10,Idaho,8,15,Housing Services,0,0,0,0,0,0,0,0,0,0
16,2016,10,Idaho,5,16,Independent/Transitional Living Services,0,0,0,0,0,0,0,0,0,0
16,2016,10,Idaho,2,17,Information and Referral,0,0,0,0,0,0,0,0,0,0
16,2016,10,Idaho,8,18,Legal Services,0,0,0,0,0,0,0,0,0,0
16,2016,10,Idaho,4,19,Pregnancy and Parenting,0,0,0,0,0,0,0,0,0,0
16,2016,10,Idaho,8,20,Prevention and Intervention,351594,0,351594,37251,490,0,0,0,0,490
16,2016,10,Idaho,7,21,Protective Services - Adults,0,0,0,0,0,0,0,0,0,0
16,2016,10,Idaho,1,22,Protective Services - Children,702515,280813,983328,4573859,493,0,0,0,0,493
16,2016,10,Idaho,8,23,Recreation Services,0,0,0,0,0,0,0,0,0,0
16,2016,10,Idaho,4,24,Residential Treatment,135362,0,135362,874801,21,0,0,0,0,21
16,2016,10,Idaho,6,25,Special Services - Disabled,171079,0,171079,903146,7105,175,19,0,194,7299
16,2016,10,Idaho,1,26,Special Services - Youth at Risk,1122602,0,1122602,0,77,0,0,0,0,77
16,2016,10,Idaho,4,27,Substance Abuse Services,0,0,0,0,0,0,0,0,0,0
16,2016,10,Idaho,8,28,Transportation,0,0,0,0,0,0,0,0,0,0
16,2016,10,Idaho,8,29,Other Services,87246,0,87246,9244,2230,0,0,0,0,2230
16,2016,10,Idaho,0,31,Administrative Costs,1165684,0,1165684,0,0,0,0,0,0,0
16,2016,10,Idaho,0,32,All Categories,8881348,1292534,10173882,63621383,28169,175,19,0,194,28363
17,2016,5,Illinois,1,1,Adoption Services,0,0,0,0,0,0,0,0,0,0
17,2016,5,Illinois,2,2,Case Management,217345,0,217345,33735816,51,0,0,34468,34468,34519
17,2016,5,Illinois,7,3,Congregate Meals,0,0,0,0,0,0,0,0,0,0
17,2016,5,Illinois,2,4,Counseling Services,5177864,0,5177864,28820564,17944,0,13501,12174,25675,43619
17,2016,5,Illinois,7,5,Day Care - Adults,0,0,0,0,0,0,0,0,0,0
17,2016,5,Illinois,3,6,Day Care - Children,0,1200000,1200000,862534726,137487,0,0,0,0,137487
17,2016,5,Illinois,5,7,Education and Training Services,0,0,0,0,0,0,0,0,0,0
17,2016,5,Illinois,5,8,Employment Services,2389463,0,2389463,8218630,0,0,215,20482,20697,20697
17,2016,5,Illinois,4,9,Family Planning Services,0,0,0,0,0,0,0,0,0,0
17,2016,5,Illinois,7,10,Foster Care Services - Adults,0,0,0,0,0,0,0,0,0,0
17,2016,5,Illinois,1,11,Foster Care Services - Children,0,0,0,0,0,0,0,0,0,0
17,2016,5,Illinois,4,12,Health-Related Services,760109,0,760109,7885537,14144,0,0,303,303,14447
17,2016,5,Illinois,8,13,Home-Based Services,23199745,0,23199745,535292000,0,0,0,30544,30544,30544
17,2016,5,Illinois,7,14,Home-Delivered Meals,0,0,0,0,0,0,0,0,0,0
17,2016,5,Illinois,8,15,Housing Services,0,0,0,0,0,0,0,0,0,0
17,2016,5,Illinois,5,16,Independent/Transitional Living Services,0,0,0,0,0,0,0,0,0,0
17,2016,5,Illinois,2,17,Information and Referral,0,0,0,0,0,0,0,0,0,0
17,2016,5,Illinois,8,18,Legal Services,0,0,0,0,0,0,0,0,0,0
17,2016,5,Illinois,4,19,Pregnancy and Parenting,7725735,0,7725735,29388418,48678,0,0,130191,130191,178869
17,2016,5,Illinois,8,20,Prevention and Intervention,15627333,0,15627333,2727443,8001,0,0,42906,42906,50907
17,2016,5,Illinois,7,21,Protective Services - Adults,0,0,0,0,0,0,0,0,0,0
17,2016,5,Illinois,1,22,Protective Services - Children,67740,0,67740,0,461,0,0,0,0,461
17,2016,5,Illinois,8,23,Recreation Services,0,0,0,0,0,0,0,0,0,0
17,2016,5,Illinois,4,24,Residential Treatment,0,0,0,0,0,0,0,0,0,0
17,2016,5,Illinois,6,25,Special Services - Disabled,3956692,0,3956692,10194377,1608,0,24,13973,13997,15605
17,2016,5,Illinois,1,26,Special Services - Youth at Risk,3017458,0,3017458,11859526,7264,0,0,0,0,7264
17,2016,5,Illinois,4,27,Substance Abuse Services,763891,0,763891,3970279,6845,0,1842,21415,23257,30102
17,2016,5,Illinois,8,28,Transportation,679152,0,679152,10668183,0,0,44406,0,44406,44406
17,2016,5,Illinois,8,29,Other Services,0,0,0,0,0,0,0,0,0,0
17,2016,5,Illinois,0,31,Administrative Costs,1263442,0,1263442,0,0,0,0,0,0,0
17,2016,5,Illinois,0,32,All Categories,64845969,1200000,66045969,1545295499,242483,0,59988,306456,366444,608927
18,2016,5,Indiana,1,1,Adoption Services,0,0,0,0,0,0,0,0,0,0
18,2016,5,Indiana,2,2,Case Management,5049712,0,5049712,39568541,6543,4976,18345,0,23321,29864
18,2016,5,Indiana,7,3,Congregate Meals,35296,0,35296,6525903,81,155,0,0,155,236
18,2016,5,Indiana,2,4,Counseling Services,0,0,0,0,0,0,0,0,0,0
18,2016,5,Indiana,7,5,Day Care - Adults,1544884,0,1544884,3321329,0,18,62,0,80,80
18,2016,5,Indiana,3,6,Day Care - Children,0,0,0,0,0,0,0,0,0,0
18,2016,5,Indiana,5,7,Education and Training Services,281854,0,281854,4014145,9778,0,0,14444,14444,24222
18,2016,5,Indiana,5,8,Employment Services,0,0,0,0,0,0,0,0,0,0
18,2016,5,Indiana,4,9,Family Planning Services,369699,0,369699,1796336,145,2150,0,0,2150,2295
18,2016,5,Indiana,7,10,Foster Care Services - Adults,1446493,0,1446493,2821351,0,0,0,4969,4969,4969
18,2016,5,Indiana,1,11,Foster Care Services - Children,1405994,0,1405994,163869509,32772,0,0,0,0,32772
18,2016,5,Indiana,4,12,Health-Related Services,106520,0,106520,1799400,0,6,73,0,79,79
18,2016,5,Indiana,8,13,Home-Based Services,5166772,0,5166772,81728975,40423,122770,16133,0,138903,179326
18,2016,5,Indiana,7,14,Home-Delivered Meals,632157,0,632157,6350033,0,723,1221,0,1944,1944
18,2016,5,Indiana,8,15,Housing Services,0,0,0,0,0,0,0,0,0,0
18,2016,5,Indiana,5,16,Independent/Transitional Living Services,0,0,0,0,0,0,0,0,0,0
18,2016,5,Indiana,2,17,Information and Referral,354923,0,354923,995106,0,7788,15578,0,23366,23366
18,2016,5,Indiana,8,18,Legal Services,0,0,0,0,0,0,0,0,0,0
18,2016,5,Indiana,4,19,Pregnancy and Parenting,0,0,0,0,0,0,0,0,0,0
18,2016,5,Indiana,8,20,Prevention and Intervention,0,0,0,0,0,0,0,0,0,0
18,2016,5,Indiana,7,21,Protective Services - Adults,480338,0,480338,682366,0,2696,0,0,2696,2696
18,2016,5,Indiana,1,22,Protective Services - Children,3894259,0,3894259,65791551,42194,0,0,0,0,42194
18,2016,5,Indiana,8,23,Recreation Services,0,0,0,0,0,0,0,0,0,0
18,2016,5,Indiana,4,24,Residential Treatment,1519984,0,1519984,1347356,223,0,0,0,0,223
18,2016,5,Indiana,6,25,Special Services - Disabled,71963,0,71963,0,0,0,0,1482,1482,1482
18,2016,5,Indiana,1,26,Special Services - Youth at Risk,18117147,0,18117147,19363764,30386,0,0,0,0,30386
18,2016,5,Indiana,4,27,Substance Abuse Services,0,0,0,0,0,0,0,0,0,0
18,2016,5,Indiana,8,28,Transportation,682069,0,682069,1407091,70,8598,10558,0,19156,19226
18,2016,5,Indiana,8,29,Other Services,0,0,0,0,0,0,0,0,0,0
18,2016,5,Indiana,0,31,Administrative Costs,1093721,0,1093721,0,0,0,0,0,0,0
18,2016,5,Indiana,0,32,All Categories,42253785,0,42253785,401382756,162615,149880,61970,20895,232745,395360
19,2016,7,Iowa,1,1,Adoption Services,0,0,0,0,0,0,0,0,0,0
19,2016,7,Iowa,2,2,Case Management,5881364,6608812,12490176,16566763,15632,0,0,0,0,15632
19,2016,7,Iowa,7,3,Congregate Meals,0,0,0,0,0,0,0,0,0,0
19,2016,7,Iowa,2,4,Counseling Services,0,0,0,0,0,0,0,0,0,0
19,2016,7,Iowa,7,5,Day Care - Adults,0,0,0,0,0,0,0,0,0,0
19,2016,7,Iowa,3,6,Day Care - Children,0,0,0,0,0,0,0,0,0,0
19,2016,7,Iowa,5,7,Education and Training Services,0,0,0,0,0,0,0,0,0,0
19,2016,7,Iowa,5,8,Employment Services,0,0,0,0,0,0,0,0,0,0
19,2016,7,Iowa,4,9,Family Planning Services,0,0,0,0,0,0,0,0,0,0
19,2016,7,Iowa,7,10,Foster Care Services - Adults,586,0,586,1364,0,2,0,2,4,4
19,2016,7,Iowa,1,11,Foster Care Services - Children,1381177,0,1381177,2241813,2531,0,0,0,0,2531
19,2016,7,Iowa,4,12,Health-Related Services,0,0,0,0,0,0,0,0,0,0
19,2016,7,Iowa,8,13,Home-Based Services,5742882,5583040,11325922,24643187,12815,0,0,0,0,12815
19,2016,7,Iowa,7,14,Home-Delivered Meals,0,0,0,0,0,0,0,0,0,0
19,2016,7,Iowa,8,15,Housing Services,0,0,0,0,0,0,0,0,0,0
19,2016,7,Iowa,5,16,Independent/Transitional Living Services,0,0,0,0,0,0,0,0,0,0
19,2016,7,Iowa,2,17,Information and Referral,0,0,0,0,0,0,0,0,0,0
19,2016,7,Iowa,8,18,Legal Services,0,0,0,0,0,0,0,0,0,0
19,2016,7,Iowa,4,19,Pregnancy and Parenting,0,0,0,0,0,0,0,0,0,0
19,2016,7,Iowa,8,20,Prevention and Intervention,0,0,0,0,0,0,0,0,0,0
19,2016,7,Iowa,7,21,Protective Services - Adults,142376,0,142376,331387,0,980,1427,99,2506,2506
19,2016,7,Iowa,1,22,Protective Services - Children,0,0,0,0,0,0,0,0,0,0
19,2016,7,Iowa,8,23,Recreation Services,0,0,0,0,0,0,0,0,0,0
19,2016,7,Iowa,4,24,Residential Treatment,0,0,0,0,0,0,0,0,0,0
19,2016,7,Iowa,6,25,Special Services - Disabled,1178377,0,1178377,103631570,1359,0,0,25245,25245,26604
19,2016,7,Iowa,1,26,Special Services - Youth at Risk,0,0,0,0,0,0,0,0,0,0
19,2016,7,Iowa,4,27,Substance Abuse Services,0,0,0,0,0,0,0,0,0,0
19,2016,7,Iowa,8,28,Transportation,0,0,0,0,0,0,0,0,0,0
19,2016,7,Iowa,8,29,Other Services,63866,0,63866,78392,10927,9687,3574,0,13261,24188
19,2016,7,Iowa,0,31,Administrative Costs,910649,770156,1680805,0,0,0,0,0,0,0
19,2016,7,Iowa,0,32,All Categories,15301277,12962008,28263285,147494476,43264,10669,5001,25346,41016,84280
20,2016,7,Kansas,1,1,Adoption Services,0,0,0,0,0,0,0,0,0,0
20,2016,7,Kansas,2,2,Case Management,0,0,0,0,0,0,0,0,0,0
20,2016,7,Kansas,7,3,Congregate Meals,0,0,0,0,0,0,0,0,0,0
20,2016,7,Kansas,2,4,Counseling Services,0,0,0,0,0,0,0,0,0,0
20,2016,7,Kansas,7,5,Day Care - Adults,0,0,0,0,0,0,0,0,0,0
20,2016,7,Kansas,3,6,Day Care - Children,184027,0,184027,43729426,11214,0,0,0,0,11214
20,2016,7,Kansas,5,7,Education and Training Services,0,0,0,0,0,0,0,0,0,0
20,2016,7,Kansas,5,8,Employment Services,0,0,0,0,0,0,0,0,0,0
20,2016,7,Kansas,4,9,Family Planning Services,0,0,0,0,0,0,0,0,0,0
20,2016,7,Kansas,7,10,Foster Care Services - Adults,0,0,0,0,0,0,0,0,0,0
20,2016,7,Kansas,1,11,Foster Care Services - Children,4952298,10193106,15145404,138610144,6137,0,0,0,0,6137
20,2016,7,Kansas,4,12,Health-Related Services,0,0,0,0,0,0,0,0,0,0
20,2016,7,Kansas,8,13,Home-Based Services,4500000,0,4500000,3291035,0,0,4251,0,4251,4251
20,2016,7,Kansas,7,14,Home-Delivered Meals,0,0,0,0,0,0,0,0,0,0
20,2016,7,Kansas,8,15,Housing Services,0,0,0,0,0,0,0,0,0,0
20,2016,7,Kansas,5,16,Independent/Transitional Living Services,0,0,0,0,0,0,0,0,0,0
20,2016,7,Kansas,2,17,Information and Referral,0,0,0,0,0,0,0,0,0,0
20,2016,7,Kansas,8,18,Legal Services,0,0,0,0,0,0,0,0,0,0
20,2016,7,Kansas,4,19,Pregnancy and Parenting,0,0,0,0,0,0,0,0,0,0
20,2016,7,Kansas,8,20,Prevention and Intervention,0,0,0,0,0,0,0,0,0,0
20,2016,7,Kansas,7,21,Protective Services - Adults,682322,0,682322,7438570,0,3292,5604,77,8973,8973
20,2016,7,Kansas,1,22,Protective Services - Children,4029878,0,4029878,36114115,37807,0,0,0,0,37807
20,2016,7,Kansas,8,23,Recreation Services,0,0,0,0,0,0,0,0,0,0
20,2016,7,Kansas,4,24,Residential Treatment,0,0,0,0,0,0,0,0,0,0
20,2016,7,Kansas,6,25,Special Services - Disabled,0,0,0,0,0,0,0,0,0,0
20,2016,7,Kansas,1,26,Special Services - Youth at Risk,0,0,0,0,0,0,0,0,0,0
20,2016,7,Kansas,4,27,Substance Abuse Services,0,0,0,0,0,0,0,0,0,0
20,2016,7,Kansas,8,28,Transportation,0,0,0,0,0,0,0,0,0,0
20,2016,7,Kansas,8,29,Other Services,0,0,0,0,0,0,0,0,0,0
20,2016,7,Kansas,0,31,Administrative Costs,0,0,0,0,0,0,0,0,0,0
20,2016,7,Kansas,0,32,All Categories,14348525,10193106,24541631,229183290,55158,3292,9855,77,13224,68382
21,2016,4,Kentucky,1,1,Adoption Services,0,0,0,0,0,0,0,0,0,0
21,2016,4,Kentucky,2,2,Case Management,0,0,0,0,0,0,0,0,0,0
21,2016,4,Kentucky,7,3,Congregate Meals,0,0,0,0,0,0,0,0,0,0
21,2016,4,Kentucky,2,4,Counseling Services,0,0,0,0,0,0,0,0,0,0
21,2016,4,Kentucky,7,5,Day Care - Adults,0,0,0,0,0,0,0,0,0,0
21,2016,4,Kentucky,3,6,Day Care - Children,0,0,0,0,0,0,0,0,0,0
21,2016,4,Kentucky,5,7,Education and Training Services,0,0,0,0,0,0,0,0,0,0
21,2016,4,Kentucky,5,8,Employment Services,0,0,0,0,0,0,0,0,0,0
21,2016,4,Kentucky,4,9,Family Planning Services,0,0,0,0,0,0,0,0,0,0
21,2016,4,Kentucky,7,10,Foster Care Services - Adults,0,0,0,0,0,0,0,0,0,0
21,2016,4,Kentucky,1,11,Foster Care Services - Children,0,0,0,0,0,0,0,0,0,0
21,2016,4,Kentucky,4,12,Health-Related Services,0,0,0,0,0,0,0,0,0,0
21,2016,4,Kentucky,8,13,Home-Based Services,502203,0,502203,377435,2450,2925,310,0,3235,5685
21,2016,4,Kentucky,7,14,Home-Delivered Meals,0,0,0,0,0,0,0,0,0,0
21,2016,4,Kentucky,8,15,Housing Services,0,0,0,0,0,0,0,0,0,0
21,2016,4,Kentucky,5,16,Independent/Transitional Living Services,0,0,0,0,0,0,0,0,0,0
21,2016,4,Kentucky,2,17,Information and Referral,0,0,0,0,0,0,0,0,0,0
21,2016,4,Kentucky,8,18,Legal Services,0,0,0,0,0,0,0,0,0,0
21,2016,4,Kentucky,4,19,Pregnancy and Parenting,0,0,0,0,0,0,0,0,0,0
21,2016,4,Kentucky,8,20,Prevention and Intervention,0,0,0,0,0,0,0,0,0,0
21,2016,4,Kentucky,7,21,Protective Services - Adults,1558944,0,1558944,14030415,0,119938,31528,0,151466,151466
21,2016,4,Kentucky,1,22,Protective Services - Children,11959642,0,11959642,113302843,349878,0,0,0,0,349878
21,2016,4,Kentucky,8,23,Recreation Services,0,0,0,0,0,0,0,0,0,0
21,2016,4,Kentucky,4,24,Residential Treatment,7769351,0,7769351,19071121,520,0,0,0,0,520
21,2016,4,Kentucky,6,25,Special Services - Disabled,0,0,0,0,0,0,0,0,0,0
21,2016,4,Kentucky,1,26,Special Services - Youth at Risk,227582,0,227582,2048230,3393,0,0,0,0,3393
21,2016,4,Kentucky,4,27,Substance Abuse Services,0,0,0,0,0,0,0,0,0,0
21,2016,4,Kentucky,8,28,Transportation,0,0,0,0,0,0,0,0,0,0
21,2016,4,Kentucky,8,29,Other Services,0,0,0,0,0,0,0,0,0,0
21,2016,4,Kentucky,0,31,Administrative Costs,9276,0,9276,0,0,0,0,0,0,0
21,2016,4,Kentucky,0,32,All Categories,22026998,0,22026998,148830044,356241,122863,31838,0,154701,510942
22,2016,6,Louisiana,1,1,Adoption Services,1582600,1499510,3082110,17406644,5699,0,0,0,0,5699
22,2016,6,Louisiana,2,2,Case Management,0,0,0,0,0,0,0,0,0,0
22,2016,6,Louisiana,7,3,Congregate Meals,0,0,0,0,0,0,0,0,0,0
22,2016,6,Louisiana,2,4,Counseling Services,0,0,0,0,0,0,0,0,0,0
22,2016,6,Louisiana,7,5,Day Care - Adults,0,0,0,0,0,0,0,0,0,0
22,2016,6,Louisiana,3,6,Day Care - Children,0,0,0,0,0,0,0,0,0,0
22,2016,6,Louisiana,5,7,Education and Training Services,0,0,0,0,0,0,0,0,0,0
22,2016,6,Louisiana,5,8,Employment Services,0,0,0,0,0,0,0,0,0,0
22,2016,6,Louisiana,4,9,Family Planning Services,0,0,0,0,0,0,0,0,0,0
22,2016,6,Louisiana,7,10,Foster Care Services - Adults,0,0,0,0,0,0,0,0,0,0
22,2016,6,Louisiana,1,11,Foster Care Services - Children,16463121,7084641,23547762,82240086,8296,0,0,0,0,8296
22,2016,6,Louisiana,4,12,Health-Related Services,0,0,0,0,0,0,0,0,0,0
22,2016,6,Louisiana,8,13,Home-Based Services,0,0,0,0,0,0,0,0,0,0
22,2016,6,Louisiana,7,14,Home-Delivered Meals,0,0,0,0,0,0,0,0,0,0
22,2016,6,Louisiana,8,15,Housing Services,0,0,0,0,0,0,0,0,0,0
22,2016,6,Louisiana,5,16,Independent/Transitional Living Services,70000,0,70000,1481721,0,331,0,0,331,331
22,2016,6,Louisiana,2,17,Information and Referral,0,0,0,0,0,0,0,0,0,0
22,2016,6,Louisiana,8,18,Legal Services,0,0,0,0,0,0,0,0,0,0
22,2016,6,Louisiana,4,19,Pregnancy and Parenting,0,0,0,0,0,0,0,0,0,0
22,2016,6,Louisiana,8,20,Prevention and Intervention,1411413,2064543,3475956,23965669,4620,3850,110,0,3960,8580
22,2016,6,Louisiana,7,21,Protective Services - Adults,0,0,0,0,0,0,0,0,0,0
22,2016,6,Louisiana,1,22,Protective Services - Children,3161687,4302942,7464629,49949500,47028,0,0,0,0,47028
22,2016,6,Louisiana,8,23,Recreation Services,0,0,0,0,0,0,0,0,0,0
22,2016,6,Louisiana,4,24,Residential Treatment,0,0,0,0,0,0,0,0,0,0
22,2016,6,Louisiana,6,25,Special Services - Disabled,0,0,0,0,0,0,0,0,0,0
22,2016,6,Louisiana,1,26,Special Services - Youth at Risk,0,0,0,0,0,0,0,0,0,0
22,2016,6,Louisiana,4,27,Substance Abuse Services,0,0,0,0,0,0,0,0,0,0
22,2016,6,Louisiana,8,28,Transportation,0,0,0,0,0,0,0,0,0,0
22,2016,6,Louisiana,8,29,Other Services,0,0,0,0,0,0,0,0,0,0
22,2016,6,Louisiana,0,31,Administrative Costs,1995694,1478733,3474427,0,0,0,0,0,0,0
22,2016,6,Louisiana,0,32,All Categories,24684515,16430369,41114884,175043620,65643,4181,110,0,4291,69934
23,2016,1,Maine,1,1,Adoption Services,0,0,0,0,0,0,0,0,0,0
23,2016,1,Maine,2,2,Case Management,0,0,0,0,0,0,0,0,0,0
23,2016,1,Maine,7,3,Congregate Meals,0,0,0,0,0,0,0,0,0,0
23,2016,1,Maine,2,4,Counseling Services,0,0,0,0,0,0,0,0,0,0
23,2016,1,Maine,7,5,Day Care - Adults,111200,0,111200,0,0,5,235,0,240,240
23,2016,1,Maine,3,6,Day Care - Children,0,0,0,0,0,0,0,0,0,0
23,2016,1,Maine,5,7,Education and Training Services,0,0,0,0,0,0,0,0,0,0
23,2016,1,Maine,5,8,Employment Services,0,0,0,0,0,0,0,0,0,0
23,2016,1,Maine,4,9,Family Planning Services,0,0,0,0,0,0,0,0,0,0
23,2016,1,Maine,7,10,Foster Care Services - Adults,0,0,0,0,0,0,0,0,0,0
23,2016,1,Maine,1,11,Foster Care Services - Children,0,6222231,6222231,0,2090,376,0,0,376,2466
23,2016,1,Maine,4,12,Health-Related Services,0,0,0,0,0,0,0,0,0,0
23,2016,1,Maine,8,13,Home-Based Services,3842429,0,3842429,0,0,0,1969,0,1969,1969
23,2016,1,Maine,7,14,Home-Delivered Meals,385421,0,385421,0,0,0,4685,0,4685,4685
23,2016,1,Maine,8,15,Housing Services,66593,0,66593,0,487,1180,137,0,1317,1804
23,2016,1,Maine,5,16,Independent/Transitional Living Services,55801,0,55801,0,11,19,0,0,19,30
23,2016,1,Maine,2,17,Information and Referral,0,0,0,0,0,0,0,0,0,0
23,2016,1,Maine,8,18,Legal Services,0,0,0,0,0,0,0,0,0,0
23,2016,1,Maine,4,19,Pregnancy and Parenting,0,0,0,0,0,0,0,0,0,0
23,2016,1,Maine,8,20,Prevention and Intervention,1081892,0,1081892,0,900,4370,321,4287,8978,9878
23,2016,1,Maine,7,21,Protective Services - Adults,0,0,0,0,0,0,0,0,0,0
23,2016,1,Maine,1,22,Protective Services - Children,18217,0,18217,0,48,0,0,0,0,48
23,2016,1,Maine,8,23,Recreation Services,0,0,0,0,0,0,0,0,0,0
23,2016,1,Maine,4,24,Residential Treatment,0,0,0,0,0,0,0,0,0,0
23,2016,1,Maine,6,25,Special Services - Disabled,0,0,0,0,0,0,0,0,0,0
23,2016,1,Maine,1,26,Special Services - Youth at Risk,0,0,0,0,0,0,0,0,0,0
23,2016,1,Maine,4,27,Substance Abuse Services,0,0,0,0,0,0,0,0,0,0
23,2016,1,Maine,8,28,Transportation,1225817,0,1225817,0,186,1587,343,6989,8919,9105
23,2016,1,Maine,8,29,Other Services,0,0,0,0,0,0,0,0,0,0
23,2016,1,Maine,0,31,Administrative Costs,325796,0,325796,0,0,0,0,0,0,0
23,2016,1,Maine,0,32,All Categories,7113166,6222231,13335397,0,3722,7537,7690,11276,26503,30225
24,2016,3,Maryland,1,1,Adoption Services,0,503782,503782,8774690,3718,2094,125,0,2219,5937
24,2016,3,Maryland,2,2,Case Management,12368027,5313703,17681730,23162957,0,5207,5035,13,10255,10255
24,2016,3,Maryland,7,3,Congregate Meals,0,0,0,0,0,0,0,0,0,0
24,2016,3,Maryland,2,4,Counseling Services,0,0,0,0,0,0,0,0,0,0
24,2016,3,Maryland,7,5,Day Care - Adults,0,0,0,0,0,0,0,0,0,0
24,2016,3,Maryland,3,6,Day Care - Children,0,0,0,0,0,0,0,0,0,0
24,2016,3,Maryland,5,7,Education and Training Services,0,0,0,0,0,0,0,0,0,0
24,2016,3,Maryland,5,8,Employment Services,0,0,0,0,0,0,0,0,0,0
24,2016,3,Maryland,4,9,Family Planning Services,0,0,0,0,0,0,0,0,0,0
24,2016,3,Maryland,7,10,Foster Care Services - Adults,1652051,0,1652051,808314,0,423,401,4,828,828
24,2016,3,Maryland,1,11,Foster Care Services - Children,0,5409599,5409599,84403454,7246,0,0,0,0,7246
24,2016,3,Maryland,4,12,Health-Related Services,0,0,0,0,0,0,0,0,0,0
24,2016,3,Maryland,8,13,Home-Based Services,9526910,3131761,12658671,2585862,0,221,1241,6,1468,1468
24,2016,3,Maryland,7,14,Home-Delivered Meals,0,0,0,0,0,0,0,0,0,0
24,2016,3,Maryland,8,15,Housing Services,0,0,0,0,0,0,0,0,0,0
24,2016,3,Maryland,5,16,Independent/Transitional Living Services,0,0,0,0,0,0,0,0,0,0
24,2016,3,Maryland,2,17,Information and Referral,0,0,0,0,0,0,0,0,0,0
24,2016,3,Maryland,8,18,Legal Services,0,0,0,0,0,0,0,0,0,0
24,2016,3,Maryland,4,19,Pregnancy and Parenting,0,0,0,0,0,0,0,0,0,0
24,2016,3,Maryland,8,20,Prevention and Intervention,0,1009583,1009583,17583545,20993,2153,30,0,2183,23176
24,2016,3,Maryland,7,21,Protective Services - Adults,5983842,0,5983842,2927768,0,1755,5065,31,6851,6851
24,2016,3,Maryland,1,22,Protective Services - Children,0,7541375,7541375,97718907,36794,0,0,0,0,36794
24,2016,3,Maryland,8,23,Recreation Services,0,0,0,0,0,0,0,0,0,0
24,2016,3,Maryland,4,24,Residential Treatment,0,0,0,0,0,0,0,0,0,0
24,2016,3,Maryland,6,25,Special Services - Disabled,0,0,0,0,0,0,0,0,0,0
24,2016,3,Maryland,1,26,Special Services - Youth at Risk,0,0,0,0,0,0,0,0,0,0
24,2016,3,Maryland,4,27,Substance Abuse Services,0,0,0,0,0,0,0,0,0,0
24,2016,3,Maryland,8,28,Transportation,0,0,0,0,0,0,0,0,0,0
24,2016,3,Maryland,8,29,Other Services,0,0,0,0,0,0,0,0,0,0
24,2016,3,Maryland,0,31,Administrative Costs,0,0,0,0,0,0,0,0,0,0
24,2016,3,Maryland,0,32,All Categories,29530830,22909803,52440633,237965497,68751,11853,11897,54,23804,92555
25,2016,1,Massachusetts,1,1,Adoption Services,1102999,0,1102999,4840071,2786,0,0,0,0,2786
25,2016,1,Massachusetts,2,2,Case Management,3749134,0,3749134,6313106,45612,0,0,46848,46848,92460
25,2016,1,Massachusetts,7,3,Congregate Meals,0,0,0,0,0,0,0,0,0,0
25,2016,1,Massachusetts,2,4,Counseling Services,0,0,0,0,0,0,0,0,0,0
25,2016,1,Massachusetts,7,5,Day Care - Adults,0,0,0,0,0,0,0,0,0,0
25,2016,1,Massachusetts,3,6,Day Care - Children,25000,0,25000,0,4,0,0,0,0,4
25,2016,1,Massachusetts,5,7,Education and Training Services,106258,0,106258,469179,0,0,0,527,527,527
25,2016,1,Massachusetts,5,8,Employment Services,0,0,0,0,0,0,0,0,0,0
25,2016,1,Massachusetts,4,9,Family Planning Services,0,0,0,0,0,0,0,0,0,0
25,2016,1,Massachusetts,7,10,Foster Care Services - Adults,0,0,0,0,0,0,0,0,0,0
25,2016,1,Massachusetts,1,11,Foster Care Services - Children,5498854,24831561,30330415,117189332,8247,0,0,0,0,8247
25,2016,1,Massachusetts,4,12,Health-Related Services,0,0,0,0,0,0,0,0,0,0
25,2016,1,Massachusetts,8,13,Home-Based Services,3912085,0,3912085,44748781,45612,0,0,46848,46848,92460
25,2016,1,Massachusetts,7,14,Home-Delivered Meals,0,0,0,0,0,0,0,0,0,0
25,2016,1,Massachusetts,8,15,Housing Services,0,0,0,0,0,0,0,0,0,0
25,2016,1,Massachusetts,5,16,Independent/Transitional Living Services,594387,0,594387,2636524,31,0,0,0,0,31
25,2016,1,Massachusetts,2,17,Information and Referral,0,0,0,0,0,0,0,0,0,0
25,2016,1,Massachusetts,8,18,Legal Services,0,0,0,0,0,0,0,0,0,0
25,2016,1,Massachusetts,4,19,Pregnancy and Parenting,0,0,0,0,0,0,0,0,0,0
25,2016,1,Massachusetts,8,20,Prevention and Intervention,0,0,0,0,0,0,0,0,0,0
25,2016,1,Massachusetts,7,21,Protective Services - Adults,0,0,0,0,0,0,0,0,0,0
25,2016,1,Massachusetts,1,22,Protective Services - Children,178995,0,178995,277156,45612,0,0,0,0,45612
25,2016,1,Massachusetts,8,23,Recreation Services,0,0,0,0,0,0,0,0,0,0
25,2016,1,Massachusetts,4,24,Residential Treatment,17376377,21105551,38481928,186315409,1741,0,0,427,427,2168
25,2016,1,Massachusetts,6,25,Special Services - Disabled,666613,0,666613,3148334,659,0,0,4738,4738,5397
25,2016,1,Massachusetts,1,26,Special Services - Youth at Risk,82367,0,82367,143786,52,0,0,0,0,52
25,2016,1,Massachusetts,4,27,Substance Abuse Services,0,0,0,0,0,0,0,0,0,0
25,2016,1,Massachusetts,8,28,Transportation,0,0,0,0,0,0,0,0,0,0
25,2016,1,Massachusetts,8,29,Other Services,0,0,0,0,0,0,0,0,0,0
25,2016,1,Massachusetts,0,31,Administrative Costs,0,0,0,0,0,0,0,0,0,0
25,2016,1,Massachusetts,0,32,All Categories,33293069,45937112,79230181,366081678,150356,0,0,99388,99388,249744
,2016,1,Massachusetts Commission for the Blind,1,1,Adoption Services,0,0,0,0,0,0,0,0,0,0
,2016,1,Massachusetts Commission for the Blind,2,2,Case Management,0,0,0,0,0,0,0,0,0,0
,2016,1,Massachusetts Commission for the Blind,7,3,Congregate Meals,0,0,0,0,0,0,0,0,0,0
,2016,1,Massachusetts Commission for the Blind,2,4,Counseling Services,0,0,0,0,0,0,0,0,0,0
,2016,1,Massachusetts Commission for the Blind,7,5,Day Care - Adults,0,0,0,0,0,0,0,0,0,0
,2016,1,Massachusetts Commission for the Blind,3,6,Day Care - Children,0,0,0,0,0,0,0,0,0,0
,2016,1,Massachusetts Commission for the Blind,5,7,Education and Training Services,0,0,0,0,0,0,0,0,0,0
,2016,1,Massachusetts Commission for the Blind,5,8,Employment Services,0,0,0,0,0,0,0,0,0,0
,2016,1,Massachusetts Commission for the Blind,4,9,Family Planning Services,0,0,0,0,0,0,0,0,0,0
,2016,1,Massachusetts Commission for the Blind,7,10,Foster Care Services - Adults,0,0,0,0,0,0,0,0,0,0
,2016,1,Massachusetts Commission for the Blind,1,11,Foster Care Services - Children,0,0,0,0,0,0,0,0,0,0
,2016,1,Massachusetts Commission for the Blind,4,12,Health-Related Services,0,0,0,0,0,0,0,0,0,0
,2016,1,Massachusetts Commission for the Blind,8,13,Home-Based Services,0,0,0,0,0,0,0,0,0,0
,2016,1,Massachusetts Commission for the Blind,7,14,Home-Delivered Meals,0,0,0,0,0,0,0,0,0,0
,2016,1,Massachusetts Commission for the Blind,8,15,Housing Services,0,0,0,0,0,0,0,0,0,0
,2016,1,Massachusetts Commission for the Blind,5,16,Independent/Transitional Living Services,0,0,0,0,0,0,0,0,0,0
,2016,1,Massachusetts Commission for the Blind,2,17,Information and Referral,0,0,0,0,0,0,0,0,0,0
,2016,1,Massachusetts Commission for the Blind,8,18,Legal Services,0,0,0,0,0,0,0,0,0,0
,2016,1,Massachusetts Commission for the Blind,4,19,Pregnancy and Parenting,0,0,0,0,0,0,0,0,0,0
,2016,1,Massachusetts Commission for the Blind,8,20,Prevention and Intervention,0,0,0,0,0,0,0,0,0,0
,2016,1,Massachusetts Commission for the Blind,7,21,Protective Services - Adults,0,0,0,0,0,0,0,0,0,0
,2016,1,Massachusetts Commission for the Blind,1,22,Protective Services - Children,0,0,0,0,0,0,0,0,0,0
,2016,1,Massachusetts Commission for the Blind,8,23,Recreation Services,0,0,0,0,0,0,0,0,0,0
,2016,1,Massachusetts Commission for the Blind,4,24,Residential Treatment,0,0,0,0,0,0,0,0,0,0
,2016,1,Massachusetts Commission for the Blind,6,25,Special Services - Disabled,0,0,0,0,0,0,0,0,0,0
,2016,1,Massachusetts Commission for the Blind,1,26,Special Services - Youth at Risk,0,0,0,0,0,0,0,0,0,0
,2016,1,Massachusetts Commission for the Blind,4,27,Substance Abuse Services,0,0,0,0,0,0,0,0,0,0
,2016,1,Massachusetts Commission for the Blind,8,28,Transportation,0,0,0,0,0,0,0,0,0,0
,2016,1,Massachusetts Commission for the Blind,8,29,Other Services,0,0,0,0,0,0,0,0,0,0
,2016,1,Massachusetts Commission for the Blind,0,31,Administrative Costs,0,0,0,0,0,0,0,0,0,0
,2016,1,Massachusetts Commission for the Blind,0,32,All Categories,0,0,0,0,0,0,0,0,0,0
26,2016,5,Michigan,1,1,Adoption Services,23433,55180,78613,3595557,312,0,0,0,0,312
26,2016,5,Michigan,2,2,Case Management,0,0,0,0,0,0,0,0,0,0
26,2016,5,Michigan,7,3,Congregate Meals,0,0,0,0,0,0,0,0,0,0
26,2016,5,Michigan,2,4,Counseling Services,0,0,0,0,0,0,0,0,0,0
26,2016,5,Michigan,7,5,Day Care - Adults,0,0,0,0,0,0,0,0,0,0
26,2016,5,Michigan,3,6,Day Care - Children,0,0,0,0,0,0,0,0,0,0
26,2016,5,Michigan,5,7,Education and Training Services,0,0,0,0,0,0,0,0,0,0
26,2016,5,Michigan,5,8,Employment Services,0,0,0,0,0,0,0,0,0,0
26,2016,5,Michigan,4,9,Family Planning Services,0,0,0,0,0,0,0,0,0,0
26,2016,5,Michigan,7,10,Foster Care Services - Adults,5629550,0,5629550,0,0,0,0,27991,27991,27991
26,2016,5,Michigan,1,11,Foster Care Services - Children,11135830,74834397,85970227,21233950,13114,0,0,0,0,13114
26,2016,5,Michigan,4,12,Health-Related Services,0,0,0,0,0,0,0,0,0,0
26,2016,5,Michigan,8,13,Home-Based Services,0,0,0,0,0,0,0,0,0,0
26,2016,5,Michigan,7,14,Home-Delivered Meals,0,0,0,0,0,0,0,0,0,0
26,2016,5,Michigan,8,15,Housing Services,2209156,0,2209156,0,5052,4897,0,0,4897,9949
26,2016,5,Michigan,5,16,Independent/Transitional Living Services,0,0,0,0,0,0,0,0,0,0
26,2016,5,Michigan,2,17,Information and Referral,0,0,0,0,0,0,0,0,0,0
26,2016,5,Michigan,8,18,Legal Services,0,0,0,0,0,0,0,0,0,0
26,2016,5,Michigan,4,19,Pregnancy and Parenting,0,0,0,0,0,0,0,0,0,0
26,2016,5,Michigan,8,20,Prevention and Intervention,0,0,0,0,0,0,0,0,0,0
26,2016,5,Michigan,7,21,Protective Services - Adults,18840494,0,18840494,9000000,0,0,0,43131,43131,43131
26,2016,5,Michigan,1,22,Protective Services - Children,8136871,2108192,10245063,1243667,90292,0,0,0,0,90292
26,2016,5,Michigan,8,23,Recreation Services,0,0,0,0,0,0,0,0,0,0
26,2016,5,Michigan,4,24,Residential Treatment,0,0,0,0,0,0,0,0,0,0
26,2016,5,Michigan,6,25,Special Services - Disabled,0,0,0,0,0,0,0,0,0,0
26,2016,5,Michigan,1,26,Special Services - Youth at Risk,2276055,537516,2813571,970618,92,0,0,0,0,92
26,2016,5,Michigan,4,27,Substance Abuse Services,0,0,0,0,0,0,0,0,0,0
26,2016,5,Michigan,8,28,Transportation,0,0,0,0,0,0,0,0,0,0
26,2016,5,Michigan,8,29,Other Services,0,0,0,0,0,0,0,0,0,0
26,2016,5,Michigan,0,31,Administrative Costs,715639,0,715639,0,0,0,0,0,0,0
26,2016,5,Michigan,0,32,All Categories,48967028,77535285,126502313,36043792,108862,4897,0,71122,76019,184881
27,2016,5,Minnesota,1,1,Adoption Services,393553,63019,456572,4841617,2716,221,11,2,234,2950
27,2016,5,Minnesota,2,2,Case Management,7388579,1183128,8571707,135270956,70378,27007,20649,250,47906,118284
27,2016,5,Minnesota,7,3,Congregate Meals,46923,7514,54437,0,0,0,0,0,0,0
27,2016,5,Minnesota,2,4,Counseling Services,605111,96896,702007,5816695,1345,1029,16,1,1046,2391
27,2016,5,Minnesota,7,5,Day Care - Adults,65395,10472,75867,423034,0,32,10,0,42,42
27,2016,5,Minnesota,3,6,Day Care - Children,438823,0,438823,91017495,17383,0,0,0,0,17383
27,2016,5,Minnesota,5,7,Education and Training Services,992551,158938,1151489,9385371,2362,2399,194,5,2598,4960
27,2016,5,Minnesota,5,8,Employment Services,45997,7365,53362,0,0,46,2,0,48,48
27,2016,5,Minnesota,4,9,Family Planning Services,0,0,0,0,0,0,0,0,0,0
27,2016,5,Minnesota,7,10,Foster Care Services - Adults,62965,10083,73048,363181,1,19,6,0,25,26
27,2016,5,Minnesota,1,11,Foster Care Services - Children,4522947,724257,5247204,82132584,17546,580,0,1,581,18127
27,2016,5,Minnesota,4,12,Health-Related Services,0,0,0,0,0,0,0,0,0,0
27,2016,5,Minnesota,8,13,Home-Based Services,315947,50592,366539,1795063,95,288,554,0,842,937
27,2016,5,Minnesota,7,14,Home-Delivered Meals,74372,11909,86281,236111,0,0,0,0,0,0
27,2016,5,Minnesota,8,15,Housing Services,0,0,0,0,0,0,0,0,0,0
27,2016,5,Minnesota,5,16,Independent/Transitional Living Services,324311,51932,376243,2931613,0,0,0,0,0,0
27,2016,5,Minnesota,2,17,Information and Referral,3305356,529285,3834641,34949169,0,0,0,0,0,0
27,2016,5,Minnesota,8,18,Legal Services,761507,99522,861029,7134595,32,481,59,0,540,572
27,2016,5,Minnesota,4,19,Pregnancy and Parenting,0,0,0,0,0,0,0,0,0,0
27,2016,5,Minnesota,8,20,Prevention and Intervention,4143142,663439,4806581,58631056,93247,27326,3181,519,31026,124273
27,2016,5,Minnesota,7,21,Protective Services - Adults,813149,130209,943358,6263305,11,3255,5000,357,8612,8623
27,2016,5,Minnesota,1,22,Protective Services - Children,2187844,350338,2538182,32299100,34506,4867,90,149,5106,39612
27,2016,5,Minnesota,8,23,Recreation Services,108944,17445,126389,309440,589,142,5,0,147,736
27,2016,5,Minnesota,4,24,Residential Treatment,818182,131015,949197,10615933,826,64,3,0,67,893
27,2016,5,Minnesota,6,25,Special Services - Disabled,393135,62952,456087,8853238,161,2245,390,0,2635,2796
27,2016,5,Minnesota,1,26,Special Services - Youth at Risk,0,0,0,0,0,0,0,0,0,0
27,2016,5,Minnesota,4,27,Substance Abuse Services,0,0,0,0,0,0,0,0,0,0
27,2016,5,Minnesota,8,28,Transportation,600449,96150,696599,6751293,0,0,0,0,0,0
27,2016,5,Minnesota,8,29,Other Services,2082947,333543,2416490,19148680,3078,16330,4828,247,21405,24483
27,2016,5,Minnesota,0,31,Administrative Costs,1202623,0,1202623,0,0,0,0,0,0,0
27,2016,5,Minnesota,0,32,All Categories,31694752,4790003,36484755,519169529,244276,86331,34998,1531,122860,367136
28,2016,4,Mississippi,1,1,Adoption Services,0,0,0,0,0,0,0,0,0,0
28,2016,4,Mississippi,2,2,Case Management,217968,0,217968,73380,0,0,2281,0,2281,2281
28,2016,4,Mississippi,7,3,Congregate Meals,0,0,0,0,0,0,0,0,0,0
28,2016,4,Mississippi,2,4,Counseling Services,0,0,0,0,0,0,0,0,0,0
28,2016,4,Mississippi,7,5,Day Care - Adults,179486,0,179486,83007,0,0,561,0,561,561
28,2016,4,Mississippi,3,6,Day Care - Children,0,0,0,0,0,0,0,0,0,0
28,2016,4,Mississippi,5,7,Education and Training Services,0,0,0,0,0,0,0,0,0,0
28,2016,4,Mississippi,5,8,Employment Services,0,0,0,0,0,0,0,0,0,0
28,2016,4,Mississippi,4,9,Family Planning Services,0,0,0,0,0,0,0,0,0,0
28,2016,4,Mississippi,7,10,Foster Care Services - Adults,0,0,0,0,0,0,0,0,0,0
28,2016,4,Mississippi,1,11,Foster Care Services - Children,0,0,0,0,0,0,0,0,0,0
28,2016,4,Mississippi,4,12,Health-Related Services,165593,0,165593,55197,0,0,0,0,0,0
28,2016,4,Mississippi,8,13,Home-Based Services,1999904,0,1999904,606237,0,0,12222,0,12222,12222
28,2016,4,Mississippi,7,14,Home-Delivered Meals,1215094,0,1215094,479240,0,0,22178,0,22178,22178
28,2016,4,Mississippi,8,15,Housing Services,0,0,0,0,0,0,0,0,0,0
28,2016,4,Mississippi,5,16,Independent/Transitional Living Services,0,0,0,0,0,0,0,0,0,0
28,2016,4,Mississippi,2,17,Information and Referral,190859,0,190859,63770,0,0,401,0,401,401
28,2016,4,Mississippi,8,18,Legal Services,0,0,0,0,0,0,0,0,0,0
28,2016,4,Mississippi,4,19,Pregnancy and Parenting,0,0,0,0,0,0,0,0,0,0
28,2016,4,Mississippi,8,20,Prevention and Intervention,0,0,0,0,0,0,0,0,0,0
28,2016,4,Mississippi,7,21,Protective Services - Adults,707745,0,707745,0,0,0,2637,0,2637,2637
28,2016,4,Mississippi,1,22,Protective Services - Children,0,8676757,8676757,0,0,0,0,0,0,0
28,2016,4,Mississippi,8,23,Recreation Services,0,0,0,0,0,0,0,0,0,0
28,2016,4,Mississippi,4,24,Residential Treatment,0,0,0,0,0,0,0,0,0,0
28,2016,4,Mississippi,6,25,Special Services - Disabled,0,0,0,0,0,0,0,0,0,0
28,2016,4,Mississippi,1,26,Special Services - Youth at Risk,5909034,0,5909034,0,5568,0,0,0,0,5568
28,2016,4,Mississippi,4,27,Substance Abuse Services,0,0,0,0,0,0,0,0,0,0
28,2016,4,Mississippi,8,28,Transportation,910414,0,910414,310819,0,0,6163,0,6163,6163
28,2016,4,Mississippi,8,29,Other Services,0,0,0,0,0,0,0,0,0,0
28,2016,4,Mississippi,0,31,Administrative Costs,1214055,0,1214055,0,0,0,0,0,0,0
28,2016,4,Mississippi,0,32,All Categories,12710152,8676757,21386909,1671650,5568,0,46443,0,46443,52011
29,2016,7,Missouri,1,1,Adoption Services,3534701,0,3534701,79739203,16399,0,0,0,0,16399
29,2016,7,Missouri,2,2,Case Management,12964197,17849294,30813491,116528167,51633,0,0,17999,17999,69632
29,2016,7,Missouri,7,3,Congregate Meals,179177,0,179177,8836211,0,0,0,2298,2298,2298
29,2016,7,Missouri,2,4,Counseling Services,0,0,0,0,0,0,0,0,0,0
29,2016,7,Missouri,7,5,Day Care - Adults,0,0,0,0,0,0,0,0,0,0
29,2016,7,Missouri,3,6,Day Care - Children,196123,0,196123,154567849,947,0,0,0,0,947
29,2016,7,Missouri,5,7,Education and Training Services,0,0,0,0,0,0,0,0,0,0
29,2016,7,Missouri,5,8,Employment Services,0,0,0,0,0,0,0,0,0,0
29,2016,7,Missouri,4,9,Family Planning Services,0,0,0,0,0,0,0,0,0,0
29,2016,7,Missouri,7,10,Foster Care Services - Adults,0,0,0,0,0,0,0,0,0,0
29,2016,7,Missouri,1,11,Foster Care Services - Children,2881230,0,2881230,64993744,4982,0,0,0,0,4982
29,2016,7,Missouri,4,12,Health-Related Services,0,0,0,0,0,0,0,0,0,0
29,2016,7,Missouri,8,13,Home-Based Services,53740,0,53740,2616138,0,0,0,311,311,311
29,2016,7,Missouri,7,14,Home-Delivered Meals,357991,0,357991,17654468,0,0,0,1135,1135,1135
29,2016,7,Missouri,8,15,Housing Services,0,0,0,0,0,0,0,0,0,0
29,2016,7,Missouri,5,16,Independent/Transitional Living Services,225396,0,225396,5084706,776,0,0,0,0,776
29,2016,7,Missouri,2,17,Information and Referral,0,0,0,0,0,0,0,0,0,0
29,2016,7,Missouri,8,18,Legal Services,0,0,0,0,0,0,0,0,0,0
29,2016,7,Missouri,4,19,Pregnancy and Parenting,0,0,0,0,0,0,0,0,0,0
29,2016,7,Missouri,8,20,Prevention and Intervention,0,0,0,0,0,0,0,0,0,0
29,2016,7,Missouri,7,21,Protective Services - Adults,0,0,0,0,0,0,0,0,0,0
29,2016,7,Missouri,1,22,Protective Services - Children,886921,0,886921,20008032,1183,0,0,0,0,1183
29,2016,7,Missouri,8,23,Recreation Services,0,0,0,0,0,0,0,0,0,0
29,2016,7,Missouri,4,24,Residential Treatment,4803357,3851882,8655239,124277959,1161,0,0,0,0,1161
29,2016,7,Missouri,6,25,Special Services - Disabled,0,0,0,0,0,0,0,0,0,0
29,2016,7,Missouri,1,26,Special Services - Youth at Risk,0,0,0,0,0,0,0,0,0,0
29,2016,7,Missouri,4,27,Substance Abuse Services,0,0,0,0,0,0,0,0,0,0
29,2016,7,Missouri,8,28,Transportation,54062,0,54062,2666080,0,0,0,580,580,580
29,2016,7,Missouri,8,29,Other Services,1416632,0,1416632,1640478,686,0,0,9997,9997,10683
29,2016,7,Missouri,0,31,Administrative Costs,2408277,0,2408277,0,0,0,0,0,0,0
29,2016,7,Missouri,0,32,All Categories,29961804,21701176,51662980,598613035,77767,0,0,32320,32320,110087
30,2016,8,Montana,1,1,Adoption Services,0,0,0,0,0,0,0,0,0,0
30,2016,8,Montana,2,2,Case Management,0,0,0,0,0,0,0,0,0,0
30,2016,8,Montana,7,3,Congregate Meals,0,0,0,0,0,0,0,0,0,0
30,2016,8,Montana,2,4,Counseling Services,0,0,0,0,0,0,0,0,0,0
30,2016,8,Montana,7,5,Day Care - Adults,0,0,0,0,0,0,0,0,0,0
30,2016,8,Montana,3,6,Day Care - Children,0,0,0,0,0,0,0,0,0,0
30,2016,8,Montana,5,7,Education and Training Services,0,0,0,0,0,0,0,0,0,0
30,2016,8,Montana,5,8,Employment Services,0,0,0,0,0,0,0,0,0,0
30,2016,8,Montana,4,9,Family Planning Services,0,0,0,0,0,0,0,0,0,0
30,2016,8,Montana,7,10,Foster Care Services - Adults,0,0,0,0,0,0,0,0,0,0
30,2016,8,Montana,1,11,Foster Care Services - Children,0,1138989,1138989,2488246305,2634,0,0,0,0,2634
30,2016,8,Montana,4,12,Health-Related Services,0,0,0,0,0,0,0,0,0,0
30,2016,8,Montana,8,13,Home-Based Services,0,0,0,0,0,0,0,0,0,0
30,2016,8,Montana,7,14,Home-Delivered Meals,0,0,0,0,0,0,0,0,0,0
30,2016,8,Montana,8,15,Housing Services,0,0,0,0,0,0,0,0,0,0
30,2016,8,Montana,5,16,Independent/Transitional Living Services,0,0,0,0,0,0,0,0,0,0
30,2016,8,Montana,2,17,Information and Referral,0,0,0,0,0,0,0,0,0,0
30,2016,8,Montana,8,18,Legal Services,0,0,0,0,0,0,0,0,0,0
30,2016,8,Montana,4,19,Pregnancy and Parenting,0,0,0,0,0,0,0,0,0,0
30,2016,8,Montana,8,20,Prevention and Intervention,0,0,0,0,0,0,0,0,0,0
30,2016,8,Montana,7,21,Protective Services - Adults,300000,0,300000,2502310,0,655,1864,369,2888,2888
30,2016,8,Montana,1,22,Protective Services - Children,0,859237,859237,118770981,1760,0,0,0,0,1760
30,2016,8,Montana,8,23,Recreation Services,0,0,0,0,0,0,0,0,0,0
30,2016,8,Montana,4,24,Residential Treatment,0,0,0,0,0,0,0,0,0,0
30,2016,8,Montana,6,25,Special Services - Disabled,4632315,0,4632315,124000000,3100,2600,300,0,2900,6000
30,2016,8,Montana,1,26,Special Services - Youth at Risk,0,0,0,0,0,0,0,0,0,0
30,2016,8,Montana,4,27,Substance Abuse Services,0,0,0,0,0,0,0,0,0,0
30,2016,8,Montana,8,28,Transportation,0,0,0,0,0,0,0,0,0,0
30,2016,8,Montana,8,29,Other Services,0,0,0,0,0,0,0,0,0,0
30,2016,8,Montana,0,31,Administrative Costs,106285,0,106285,0,0,0,0,0,0,0
30,2016,8,Montana,0,32,All Categories,5038600,1998226,7036826,2733519596,7494,3255,2164,369,5788,13282
31,2016,7,Nebraska,1,1,Adoption Services,0,0,0,0,0,0,0,0,0,0
31,2016,7,Nebraska,2,2,Case Management,5536748,0,5536748,0,74,7470,2259,0,9729,9803
31,2016,7,Nebraska,7,3,Congregate Meals,33811,0,33811,298095,0,133,400,0,533,533
31,2016,7,Nebraska,2,4,Counseling Services,0,0,0,0,0,0,0,0,0,0
31,2016,7,Nebraska,7,5,Day Care - Adults,240126,0,240126,2117052,0,622,231,0,853,853
31,2016,7,Nebraska,3,6,Day Care - Children,171063,0,171063,0,31430,0,0,0,0,31430
31,2016,7,Nebraska,5,7,Education and Training Services,0,0,0,0,0,0,0,0,0,0
31,2016,7,Nebraska,5,8,Employment Services,0,0,0,0,0,0,0,0,0,0
31,2016,7,Nebraska,4,9,Family Planning Services,0,0,0,0,0,0,0,0,0,0
31,2016,7,Nebraska,7,10,Foster Care Services - Adults,0,0,0,0,0,0,0,0,0,0
31,2016,7,Nebraska,1,11,Foster Care Services - Children,0,0,0,0,0,0,0,0,0,0
31,2016,7,Nebraska,4,12,Health-Related Services,0,0,0,0,0,0,0,0,0,0
31,2016,7,Nebraska,8,13,Home-Based Services,197798,0,197798,1743864,0,462,843,0,1305,1305
31,2016,7,Nebraska,7,14,Home-Delivered Meals,141111,0,141111,1244090,0,421,1128,0,1549,1549
31,2016,7,Nebraska,8,15,Housing Services,0,0,0,0,0,0,0,0,0,0
31,2016,7,Nebraska,5,16,Independent/Transitional Living Services,1551,0,1551,13673,22,1,0,0,1,23
31,2016,7,Nebraska,2,17,Information and Referral,0,0,0,0,0,0,0,0,0,0
31,2016,7,Nebraska,8,18,Legal Services,0,0,0,0,0,0,0,0,0,0
31,2016,7,Nebraska,4,19,Pregnancy and Parenting,0,0,0,0,0,0,0,0,0,0
31,2016,7,Nebraska,8,20,Prevention and Intervention,0,0,0,0,0,0,0,0,0,0
31,2016,7,Nebraska,7,21,Protective Services - Adults,8748,0,8748,77123,0,957,1684,0,2641,2641
31,2016,7,Nebraska,1,22,Protective Services - Children,2232134,0,2232134,8135498,13118,0,0,0,0,13118
31,2016,7,Nebraska,8,23,Recreation Services,0,0,0,0,0,0,0,0,0,0
31,2016,7,Nebraska,4,24,Residential Treatment,0,0,0,0,0,0,0,0,0,0
31,2016,7,Nebraska,6,25,Special Services - Disabled,41993,0,41993,370227,337,94,463,0,557,894
31,2016,7,Nebraska,1,26,Special Services - Youth at Risk,0,0,0,0,0,0,0,0,0,0
31,2016,7,Nebraska,4,27,Substance Abuse Services,0,0,0,0,0,0,0,0,0,0
31,2016,7,Nebraska,8,28,Transportation,214178,0,214178,1888280,14,855,907,0,1762,1776
31,2016,7,Nebraska,8,29,Other Services,0,0,0,0,0,0,0,0,0,0
31,2016,7,Nebraska,0,31,Administrative Costs,477687,0,477687,0,0,0,0,0,0,0
31,2016,7,Nebraska,0,32,All Categories,9296948,0,9296948,15887902,44995,11015,7915,0,18930,63925
32,2016,9,Nevada,1,1,Adoption Services,0,0,0,0,0,0,0,0,0,0
32,2016,9,Nevada,2,2,Case Management,278931,0,278931,3474869,1765,0,0,0,0,1765
32,2016,9,Nevada,7,3,Congregate Meals,0,0,0,0,0,0,0,0,0,0
32,2016,9,Nevada,2,4,Counseling Services,829370,0,829370,8768565,2140,15,0,0,15,2155
32,2016,9,Nevada,7,5,Day Care - Adults,0,0,0,0,0,0,0,0,0,0
32,2016,9,Nevada,3,6,Day Care - Children,0,0,0,0,0,0,0,0,0,0
32,2016,9,Nevada,5,7,Education and Training Services,0,0,0,0,0,0,0,0,0,0
32,2016,9,Nevada,5,8,Employment Services,1020195,0,1020195,29316886,0,1125,73,0,1198,1198
32,2016,9,Nevada,4,9,Family Planning Services,0,0,0,0,0,0,0,0,0,0
32,2016,9,Nevada,7,10,Foster Care Services - Adults,0,0,0,0,0,0,0,0,0,0
32,2016,9,Nevada,1,11,Foster Care Services - Children,4289573,0,4289573,49716747,6237,0,0,0,0,6237
32,2016,9,Nevada,4,12,Health-Related Services,184895,0,184895,1410140,6465,7730,531,0,8261,14726
32,2016,9,Nevada,8,13,Home-Based Services,1780802,0,1780802,25758759,29,656,415,0,1071,1100
32,2016,9,Nevada,7,14,Home-Delivered Meals,0,0,0,0,0,0,0,0,0,0
32,2016,9,Nevada,8,15,Housing Services,0,0,0,0,0,0,0,0,0,0
32,2016,9,Nevada,5,16,Independent/Transitional Living Services,0,0,0,0,0,0,0,0,0,0
32,2016,9,Nevada,2,17,Information and Referral,0,0,0,0,0,0,0,0,0,0
32,2016,9,Nevada,8,18,Legal Services,0,0,0,0,0,0,0,0,0,0
32,2016,9,Nevada,4,19,Pregnancy and Parenting,0,0,0,0,0,0,0,0,0,0
32,2016,9,Nevada,8,20,Prevention and Intervention,773157,0,773157,9036121,15650,173,0,0,173,15823
32,2016,9,Nevada,7,21,Protective Services - Adults,699687,0,699687,115750,0,0,5559,0,5559,5559
32,2016,9,Nevada,1,22,Protective Services - Children,0,0,0,0,0,0,0,0,0,0
32,2016,9,Nevada,8,23,Recreation Services,0,0,0,0,0,0,0,0,0,0
32,2016,9,Nevada,4,24,Residential Treatment,2478668,0,2478668,9563497,351,0,0,0,0,351
32,2016,9,Nevada,6,25,Special Services - Disabled,0,0,0,0,0,0,0,0,0,0
32,2016,9,Nevada,1,26,Special Services - Youth at Risk,0,0,0,0,0,0,0,0,0,0
32,2016,9,Nevada,4,27,Substance Abuse Services,591665,0,591665,0,0,104,0,0,104,104
32,2016,9,Nevada,8,28,Transportation,0,0,0,0,0,0,0,0,0,0
32,2016,9,Nevada,8,29,Other Services,286567,0,286567,2850411,0,0,0,20700,20700,20700
32,2016,9,Nevada,0,31,Administrative Costs,353526,0,353526,0,0,0,0,0,0,0
32,2016,9,Nevada,0,32,All Categories,13567036,0,13567036,140011745,32637,9803,6578,20700,37081,69718
33,2016,1,New Hampshire,1,1,Adoption Services,0,0,0,0,0,0,0,0,0,0
33,2016,1,New Hampshire,2,2,Case Management,733870,100985,834855,18721,4527,0,0,8320,8320,12847
33,2016,1,New Hampshire,7,3,Congregate Meals,0,0,0,0,0,0,0,0,0,0
33,2016,1,New Hampshire,2,4,Counseling Services,0,0,0,0,0,0,0,0,0,0
33,2016,1,New Hampshire,7,5,Day Care - Adults,231316,0,231316,154210,0,0,0,144,144,144
33,2016,1,New Hampshire,3,6,Day Care - Children,0,0,0,0,0,0,0,0,0,0
33,2016,1,New Hampshire,5,7,Education and Training Services,813693,0,813693,1120688,0,0,0,5425,5425,5425