From 3fcaf66ebb346997566176972b1be4d7c02a7e05 Mon Sep 17 00:00:00 2001 From: RobKraft Date: Thu, 4 Mar 2021 13:45:52 -0600 Subject: [PATCH 01/33] Append ScriptPath to FileName This helps the code run without modification on Windows 10 in Visual Studio or VSCode --- csv_example/csv_evaluation.py | 5 +++++ csv_example/csv_example.py | 6 ++++++ extended-variables/officers.py | 6 ++++++ gazetteer_example/gazetteer_evaluation.py | 3 +++ gazetteer_example/gazetteer_example.py | 5 +++++ gazetteer_example/gazetteer_postgres_example.py | 4 ++++ patent_example/patent_evaluation.py | 5 +++++ patent_example/patent_example.py | 6 ++++++ record_linkage_example/record_linkage_example.py | 7 +++++++ .../record_linkage_example_evaluation.py | 3 +++ 10 files changed, 50 insertions(+) diff --git a/csv_example/csv_evaluation.py b/csv_example/csv_evaluation.py index 231b9376..71a80314 100644 --- a/csv_example/csv_evaluation.py +++ b/csv_example/csv_evaluation.py @@ -1,5 +1,6 @@ from future.utils import viewitems +import os import csv import collections import itertools @@ -41,6 +42,10 @@ def dupePairs(filename, rowname) : manual_clusters = 'csv_example_input_with_true_ids.csv' dedupe_clusters = 'csv_example_output.csv' +scriptpath = os.path.dirname(__file__) +manual_clusters = os.path.join(scriptpath, manual_clusters) +dedupe_clusters = os.path.join(scriptpath, dedupe_clusters) + true_dupes = dupePairs(manual_clusters, 'True Id') test_dupes = dupePairs(dedupe_clusters, 'Cluster ID') diff --git a/csv_example/csv_example.py b/csv_example/csv_example.py index d350626b..0ed01b32 100644 --- a/csv_example/csv_example.py +++ b/csv_example/csv_example.py @@ -84,6 +84,12 @@ def readData(filename): settings_file = 'csv_example_learned_settings' training_file = 'csv_example_training.json' + scriptpath = os.path.dirname(__file__) + input_file = os.path.join(scriptpath, input_file) + output_file = os.path.join(scriptpath, output_file) + settings_file = os.path.join(scriptpath, settings_file) + training_file = os.path.join(scriptpath, training_file) + print('importing data ...') data_d = readData(input_file) diff --git a/extended-variables/officers.py b/extended-variables/officers.py index 1b5a7a5f..799e331e 100644 --- a/extended-variables/officers.py +++ b/extended-variables/officers.py @@ -84,6 +84,12 @@ def readData(filename): settings_file = 'officers_settings' training_file = 'officers_training.json' + scriptpath = os.path.dirname(__file__) + input_file = os.path.join(scriptpath, input_file) + output_file = os.path.join(scriptpath, output_file) + settings_file = os.path.join(scriptpath, settings_file) + training_file = os.path.join(scriptpath, training_file) + print('importing data ...') data_d = readData(input_file) diff --git a/gazetteer_example/gazetteer_evaluation.py b/gazetteer_example/gazetteer_evaluation.py index 24e1c8bd..66f6ac36 100644 --- a/gazetteer_example/gazetteer_evaluation.py +++ b/gazetteer_example/gazetteer_evaluation.py @@ -43,6 +43,9 @@ def linkPairs(filename, rowname) : clusters = 'gazetteer_output.csv' +scriptpath = os.path.dirname(__file__) +clusters = os.path.join(scriptpath, clusters) + true_dupes = linkPairs(clusters, 'unique_id') test_dupes = linkPairs(clusters, 'Cluster ID') diff --git a/gazetteer_example/gazetteer_example.py b/gazetteer_example/gazetteer_example.py index 48a27772..3603da69 100644 --- a/gazetteer_example/gazetteer_example.py +++ b/gazetteer_example/gazetteer_example.py @@ -84,6 +84,11 @@ def readData(filename): settings_file = 'gazetteer_learned_settings' training_file = 'gazetteer_training.json' + scriptpath = os.path.dirname(__file__) + output_file = os.path.join(scriptpath, output_file) + settings_file = os.path.join(scriptpath, settings_file) + training_file = os.path.join(scriptpath, training_file) + canon_file = os.path.join('data', 'AbtBuy_Buy.csv') messy_file = os.path.join('data', 'AbtBuy_Abt.csv') diff --git a/gazetteer_example/gazetteer_postgres_example.py b/gazetteer_example/gazetteer_postgres_example.py index 991c7b91..918f58b3 100644 --- a/gazetteer_example/gazetteer_postgres_example.py +++ b/gazetteer_example/gazetteer_postgres_example.py @@ -172,6 +172,10 @@ def descriptions(datasets): canon_file = os.path.join('data', 'AbtBuy_Buy.csv') messy_file = os.path.join('data', 'AbtBuy_Abt.csv') + scriptpath = os.path.dirname(__file__) + canon_file = os.path.join(scriptpath, canon_file) + messy_file = os.path.join(scriptpath, messy_file) + print('Importing raw data into the database') canonical = readData(canon_file) messy = readData(messy_file) diff --git a/patent_example/patent_evaluation.py b/patent_example/patent_evaluation.py index c3758fb9..4c776ca8 100644 --- a/patent_example/patent_evaluation.py +++ b/patent_example/patent_evaluation.py @@ -1,6 +1,7 @@ import csv import collections import itertools +import os def evaluateDuplicates(found_dupes, true_dupes): true_positives = found_dupes.intersection(true_dupes) @@ -41,6 +42,10 @@ def dupePairs(filename, colname) : dedupe_clusters = 'patstat_output.csv' manual_clusters = 'patstat_reference.csv' +scriptpath = os.path.dirname(__file__) +dedupe_clusters = os.path.join(scriptpath, dedupe_clusters) +manual_clusters = os.path.join(scriptpath, manual_clusters) + test_dupes = dupePairs(dedupe_clusters, 'Cluster ID') true_dupes = dupePairs(manual_clusters, 'leuven_id') diff --git a/patent_example/patent_example.py b/patent_example/patent_example.py index 027d9a66..1c47beb8 100644 --- a/patent_example/patent_example.py +++ b/patent_example/patent_example.py @@ -87,6 +87,12 @@ def names(data): settings_file = 'patstat_settings.json' training_file = 'patstat_training.json' + scriptpath = os.path.dirname(__file__) + input_file = os.path.join(scriptpath, input_file) + output_file = os.path.join(scriptpath, output_file) + settings_file = os.path.join(scriptpath, settings_file) + training_file = os.path.join(scriptpath, training_file) + print('importing data ...') data_d = readData(input_file) diff --git a/record_linkage_example/record_linkage_example.py b/record_linkage_example/record_linkage_example.py index e8cd72ca..8c3fe473 100644 --- a/record_linkage_example/record_linkage_example.py +++ b/record_linkage_example/record_linkage_example.py @@ -85,6 +85,13 @@ def readData(filename): left_file = 'AbtBuy_Abt.csv' right_file = 'AbtBuy_Buy.csv' + scriptpath = os.path.dirname(__file__) + output_file = os.path.join(scriptpath, output_file) + settings_file = os.path.join(scriptpath, settings_file) + training_file = os.path.join(scriptpath, training_file) + left_file = os.path.join(scriptpath, left_file) + right_file = os.path.join(scriptpath, right_file) + print('importing data ...') data_1 = readData(left_file) data_2 = readData(right_file) diff --git a/record_linkage_example/record_linkage_example_evaluation.py b/record_linkage_example/record_linkage_example_evaluation.py index a181048b..dd74f036 100644 --- a/record_linkage_example/record_linkage_example_evaluation.py +++ b/record_linkage_example/record_linkage_example_evaluation.py @@ -41,6 +41,9 @@ def linkPairs(filename, rowname) : clusters = 'data_matching_output.csv' +scriptpath = os.path.dirname(__file__) +clusters = os.path.join(scriptpath, clusters) + true_dupes = linkPairs(clusters, 'unique_id') test_dupes = linkPairs(clusters, 'Cluster ID') From 471f895121cd59a384de369f62514e37da462b8c Mon Sep 17 00:00:00 2001 From: RobKraft Date: Thu, 4 Mar 2021 19:44:43 -0600 Subject: [PATCH 02/33] Add trained files to repo --- csv_example/csv_example_learned_settings | Bin 0 -> 680813 bytes csv_example/csv_example_output.csv | 3682 ++++++++++++++++++++++ csv_example/csv_example_training.json | 1 + 3 files changed, 3683 insertions(+) create mode 100644 csv_example/csv_example_learned_settings create mode 100644 csv_example/csv_example_output.csv create mode 100644 csv_example/csv_example_training.json diff --git a/csv_example/csv_example_learned_settings b/csv_example/csv_example_learned_settings new file mode 100644 index 0000000000000000000000000000000000000000..ab3f8d0405fc5952213d82858059584e779718fe GIT binary patch literal 680813 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�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 z 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 WtCCkX&fVp(bJ~c+4J%KdTmFBUS*^kV literal 0 HcmV?d00001 diff --git a/csv_example/csv_example_output.csv b/csv_example/csv_example_output.csv new file mode 100644 index 00000000..e20377da --- /dev/null +++ b/csv_example/csv_example_output.csv @@ -0,0 +1,3682 @@ +Cluster ID,confidence_score,Id,Source,Site name,Address,Zip,Phone,Fax,Program Name,Length of Day,IDHS Provider ID,Agency,Neighborhood,Funded Enrollment,Program Option,Number per Site EHS,Number per Site HS,Director,Head Start Fund,Eearly Head Start Fund,CC fund,Progmod,Website,Executive Director,Center Director,ECE Available Programs,NAEYC Valid Until,NAEYC Program Id,Email Address,Ounce of Prevention Description,Purple binder service type,Column,Column2 +0,0.9999999311744846,0,CPS_Early_Childhood_Portal_scrape.csv, Salvation Army - Temple / Salvation Army,1 N Ogden Ave ,,2262649,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +0,0.9999999311744846,1,CPS_Early_Childhood_Portal_scrape.csv, Salvation Army - Temple / Salvation Army,1 N Ogden Ave ,,2262649,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +1,0.999999926999517,2,CPS_Early_Childhood_Portal_scrape.csv, National Louis University - Dr. Effie O. Ellis Training Center,10 S Kedzie Ave ,,5339011,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +1,0.999999926999517,3,CPS_Early_Childhood_Portal_scrape.csv, National Louis University - Dr. Effie O. Ellis Training Center,10 S Kedzie Ave ,,5339011,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +2,0.9999999538304407,4,CPS_Early_Childhood_Portal_scrape.csv, Board Trustees-City Colleges of Chicago - Olive-Harvey College,10001 S Woodlawn Ave ,,2916100,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +2,0.9999999538304407,5,CPS_Early_Childhood_Portal_scrape.csv, Board Trustees-City Colleges of Chicago - Olive-Harvey College,10001 S Woodlawn Ave ,,2916100,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +3,0.9999999501311764,6,CPS_Early_Childhood_Portal_scrape.csv, Easter Seals Society of Metropolitan Chicago - Gilchrist-Marchman,1001 W Roosevelt Rd ,,9395115,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +3,0.9999999501311764,7,CPS_Early_Childhood_Portal_scrape.csv, Easter Seals Society of Metropolitan Chicago - Gilchrist-Marchman,1001 W Roosevelt Rd ,,9395115,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +4,0.9999999513330113,8,CPS_Early_Childhood_Portal_scrape.csv, Hull House Association - Uptown Head Start / Hull House,1020 W Bryn Mawr Ave ,,7695753,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +5,0.9999999403953552,9,CPS_Early_Childhood_Portal_scrape.csv, Hull House Association - Child Dev. Central Office- Hull House CDS-Homes,1030 W Van Buren St ,,9068600,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +5,0.9999999403953552,10,CPS_Early_Childhood_Portal_scrape.csv, Hull House Association - Child Dev. Central Office- Hull House CDS-Homes,1030 W Van Buren St ,,9068600,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +6,0.9999999211504664,11,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - St. Kevin,10509 S Torrence Ave ,,3746466,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +6,0.9999999211504664,12,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - St. Kevin,10509 S Torrence Ave ,,3746466,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +849,1.0,13,CPS_Early_Childhood_Portal_scrape.csv, Chicago State University - Community Learning Center,10612 S Wentworth ,,,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +7,0.9999999018008148,14,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - Cordia Marian,1100 S May St ,,6663787,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +7,0.9999999018008148,15,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - Cordia Marian,1100 S May St ,,6663787,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +8,0.999999926999517,16,CPS_Early_Childhood_Portal_scrape.csv, Thresholds - Thresholds Mothers' Project,1110 W Belmont Ave ,,4723558,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +9,0.9999999403953552,17,CPS_Early_Childhood_Portal_scrape.csv, Bethel New Life - Molade Child Development Center,1120 N Lamon Ave ,,6267760,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +10,0.9999999403953552,18,CPS_Early_Childhood_Portal_scrape.csv, South East Asia Center - South-East Asia Center(Ainslie),1124 W Ainslie St ,,9897433,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +11,0.9999999403953552,19,CPS_Early_Childhood_Portal_scrape.csv, Ada S. McKinley Community Services - McKinley - Roseland,11410 S Edbrooke Ave ,,4681918,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +11,0.9999999403953552,20,CPS_Early_Childhood_Portal_scrape.csv, Ada S. McKinley Community Services - McKinley - Roseland,11410 S Edbrooke Ave ,,4681918,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +12,0.9999999655872422,21,CPS_Early_Childhood_Portal_scrape.csv, Board Trustees-City Colleges of Chicago - Truman,1145 W Wilson Ave ,,8781700,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +13,0.9999999403953552,22,CPS_Early_Childhood_Portal_scrape.csv, Chicago State University - Gingerbread House,11640 S Wentworth Ave ,,9284041,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +13,0.9999999403953552,23,CPS_Early_Childhood_Portal_scrape.csv, Chicago State University - Gingerbread House,11640 S Wentworth Ave ,,9284041,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +14,0.9999999538304407,24,CPS_Early_Childhood_Portal_scrape.csv, Chicago State University - Academy of Early Education,124 E 113th St ,,7858163,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +14,0.9999999538304407,25,CPS_Early_Childhood_Portal_scrape.csv, Chicago State University - Academy of Early Education,124 E 113th St ,,7858163,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +15,0.99999994,26,CPS_Early_Childhood_Portal_scrape.csv, Easter Seals Society of Metropolitan Chicago - Stepping Stones Early/Childhood Lear,1300 E 75th St ,,4930000,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +16,0.9999999338745837,27,CPS_Early_Childhood_Portal_scrape.csv, Marcy Newberry Association - FOSCO ABLA Center,1312 S Racine Ave ,,7466024,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +16,0.9999999338745837,28,CPS_Early_Childhood_Portal_scrape.csv, Marcy Newberry Association - FOSCO ABLA Center,1312 S Racine Ave ,,7466024,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +17,0.9999999403953552,29,CPS_Early_Childhood_Portal_scrape.csv, Salvation Army - Incarnation / Salvation Army,1345 N Karlov Ave ,,2764118,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +18,0.9999999403953552,30,CPS_Early_Childhood_Portal_scrape.csv, Abraham Lincoln Centre - Hope Presbyterian Church,1354 W 61st St ,,4715100,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +19,0.9999999178406671,31,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - Our Lady of Lourdes,1449 S Keeler Ave ,,5213126,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +19,0.9999999178406671,32,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - Our Lady of Lourdes,1449 S Keeler Ave ,,5213126,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +20,0.9999999311744846,33,CPS_Early_Childhood_Portal_scrape.csv, Lutheran Social Services of Illinois - North Austin / LSSI,1500 N Mason Ave ,,2371930,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +21,0.99999994,34,CPS_Early_Childhood_Portal_scrape.csv, Marcy Newberry Association - New Birth,1500 W 69th St ,,4710699,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +22,0.999999915706303,35,CPS_Early_Childhood_Portal_scrape.csv, Chicago Youth Centers - Mt. Moriah-Taylor / CYC,1501 N Harding Ave ,,2785837,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +23,0.9999999403953552,36,CPS_Early_Childhood_Portal_scrape.csv, Marcy Newberry Association - Marcy Center,1539 S Springfield Ave ,,7612300,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +23,0.9999999403953552,37,CPS_Early_Childhood_Portal_scrape.csv, Marcy Newberry Association - Marcy Center,1539 S Springfield Ave ,,7612300,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +24,0.9999999002623526,38,CPS_Early_Childhood_Portal_scrape.csv, Mary Crane League - Mary Crane - Morse,1545 W Morse Ave ,,2621390,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +25,0.9999999057567817,39,CPS_Early_Childhood_Portal_scrape.csv, South Shore Bible - Maranatha,1631 E 71st St ,,4937500,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +26,0.9999999211504664,40,CPS_Early_Childhood_Portal_scrape.csv, Chicago Commons Association - Taylor Center for New Experiences,1633 N Hamlin Ave ,,2278551,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +27,0.9999999057567817,41,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - Ebenezer,1652 W Foster Ave ,,8789925,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +28,0.9999999609796005,42,CPS_Early_Childhood_Portal_scrape.csv, Chicago Commons Association - Paulo Freire,1653 W 43rd St ,,8262669,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +29,0.9999999403953552,43,CPS_Early_Childhood_Portal_scrape.csv, Erie Neighborhood House - Erie Community Center,1701 W Superior St ,,5635800,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +30,0.9999999403953552,44,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Little Tykes I,1711 W 35th St ,,2547700,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +30,0.9999999403953552,45,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Little Tykes I,1711 W 35th St ,,2547700,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +31,0.9999998146816282,46,CPS_Early_Childhood_Portal_scrape.csv, ChildServ - Pilsen,1711 W Garfield Blvd ,,,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +32,0.9999999598145567,47,CPS_Early_Childhood_Portal_scrape.csv, El Hogar del Nino/Cuidar - El Hogar del Nino/El Centro - Loomis,1718 S Loomis Blvd ,,5639796,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +32,0.9999999598145567,48,CPS_Early_Childhood_Portal_scrape.csv, El Hogar del Nino/Cuidar - El Hogar del Nino/El Centro - Loomis,1718 S Loomis Blvd ,,5639796,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +33,0.9999999403953552,49,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Little Tykes II,1723 W 35th St ,,5791791,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +33,0.9999999403953552,50,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Little Tykes II,1723 W 35th St ,,5791791,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +34,0.9999998884899203,51,CPS_Early_Childhood_Portal_scrape.csv, Church of God True Believers - Church of God Day Care,1738 W Marquette Rd ,,4715222,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +35,0.9999999578531515,52,CPS_Early_Childhood_Portal_scrape.csv, Lutheran Social Services of Illinois - Rogers Park / LSSI,1754 W Devon Ave ,,2623366,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +36,0.999999926999517,53,CPS_Early_Childhood_Portal_scrape.csv, Chicago Commons Association - Guadalupano Family Center,1814 S Paulina St ,,6663883,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +36,0.999999926999517,54,CPS_Early_Childhood_Portal_scrape.csv, Chicago Commons Association - Guadalupano Family Center,1814 S Paulina St ,,6663883,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +37,0.9999999403953552,55,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - McCormick Tribune- YMCA,1834 N Lawndale Ave ,,2352525,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +38,0.9999999538304407,56,CPS_Early_Childhood_Portal_scrape.csv, Board Trustees-City Colleges of Chicago - Malcolm X College,1900 W Van Buren St ,,8507000,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +38,0.9999999538304407,57,CPS_Early_Childhood_Portal_scrape.csv, Board Trustees-City Colleges of Chicago - Malcolm X College,1900 W Van Buren St ,,8507000,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +39,0.9999999287588233,58,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Guadalupe Reyes Children & Family Center,1951 W 19th St ,,9972021,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +39,0.9999999287588233,59,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Guadalupe Reyes Children & Family Center,1951 W 19th St ,,9972021,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +40,0.9999999403953552,60,CPS_Early_Childhood_Portal_scrape.csv, North Avenue Day Nursery - North Avenue Day Nursery,2001 W Pierce Ave ,,3424499,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +41,0.9999999483808635,61,CPS_Early_Childhood_Portal_scrape.csv, Carole Robertson Center For Learning - Carole Robertson Center CTR 2020,2020 W Roosevelt Rd ,,2437300,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +41,0.9999999483808635,62,CPS_Early_Childhood_Portal_scrape.csv, Carole Robertson Center For Learning - Carole Robertson Center CTR 2020,2020 W Roosevelt Rd ,,2437300,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +42,0.9999999501311764,63,CPS_Early_Childhood_Portal_scrape.csv, Chinese American Service League - Chinese American Service League,2141 S Tan Ct ,,7910418,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +42,0.9999999501311764,64,CPS_Early_Childhood_Portal_scrape.csv, Chinese American Service League - Chinese American Service League,2141 S Tan Ct ,,7910418,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +43,0.9999999578531515,65,CPS_Early_Childhood_Portal_scrape.csv, First Church of Love And Faith - First Church of Love & Faith Annex,2141 W 79th St ,,2246800,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +44,0.9999999200319775,66,CPS_Early_Childhood_Portal_scrape.csv, El Hogar del Nino/Cuidar - El Hogar del Nino/Cuidar- California,2325 S California Ave ,,5231629,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +44,0.9999999200319775,67,CPS_Early_Childhood_Portal_scrape.csv, El Hogar del Nino/Cuidar - El Hogar del Nino/Cuidar- California,2325 S California Ave ,,5231629,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +45,0.999999946687985,68,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Bernard Gentry,2326 S Dearborn St ,,8428557,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +45,0.999999946687985,69,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Bernard Gentry,2326 S Dearborn St ,,8428557,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +46,0.99999994,70,CPS_Early_Childhood_Portal_scrape.csv, Chicago State University - Kenyatta's Day Care,2334 E 75th ,,2213777,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +47,0.9999999230507345,71,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Hillard House / Henry Booth,2401 S Wabash Ave ,,7919710,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +48,0.9999999403953552,72,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - Our Lady of Tepeyac,2414 S Albany Ave ,,2775888,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +48,0.9999999403953552,73,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - Our Lady of Tepeyac,2414 S Albany Ave ,,2775888,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +49,0.9999999403953552,74,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - High Ridge YMCA,2424 W Touhy Ave ,,2628300,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +50,0.9999998718153645,75,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Carlos Cantu,2434 S Kildare Ave ,,,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +50,0.9999998718153645,76,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Carlos Cantu,2434 S Kildare Ave ,,,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +51,0.9999999403953552,77,CPS_Early_Childhood_Portal_scrape.csv, Christopher House - Christopher House - Greenview,2507 N Greenview Ave ,,4721083,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +52,0.9999999115920247,78,CPS_Early_Childhood_Portal_scrape.csv, Christopher House - Christopher House - Logan Square,2610 N Francisco Ave ,,2354073,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +53,0.9999999403953552,79,CPS_Early_Childhood_Portal_scrape.csv, St. Augustine College - St. Augustine - Nayarit,2610 W 25th Pl ,,8783641,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +53,0.9999999403953552,80,CPS_Early_Childhood_Portal_scrape.csv, St. Augustine College - St. Augustine - Nayarit,2610 W 25th Pl ,,8783641,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +54,0.9999999403953552,81,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - Rauner,2700 S Western Ave ,,8473115,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +54,0.9999999403953552,82,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - Rauner,2700 S Western Ave ,,8473115,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +850,1.0,83,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - YMCA - Bowen High School,2710 E 89th St ,,9330166,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +55,0.9999999,84,CPS_Early_Childhood_Portal_scrape.csv, Easter Seals Society of Metropolitan Chicago - The Keeper's Inst.,2718 W 59th St ,,,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +56,0.9999999403953552,85,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Centro Infantil(Puerto Rican Comm),2739 W Division St ,,3428866,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +57,0.9999999294748332,86,CPS_Early_Childhood_Portal_scrape.csv, Mary Crane League - Mary Crane - West,2820 N Leavitt St ,,3485528,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +58,0.9999999,87,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Family Service Center / Henry Booth,2850 S Michigan Ave ,,9492151,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +59,0.9999999496248808,88,CPS_Early_Childhood_Portal_scrape.csv, Mary Crane League - Mary Crane - North,2905 N Leavitt St ,,9753322,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +60,0.999999915706303,89,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Near South / Henry Booth,2929 S Wabash Ave ,,7910424,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +61,0.9999999403953552,90,CPS_Early_Childhood_Portal_scrape.csv, Carole Robertson Center For Learning - Carole Robertson Center 2929,2929 W 19th St ,,5211600,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +61,0.9999999403953552,91,CPS_Early_Childhood_Portal_scrape.csv, Carole Robertson Center For Learning - Carole Robertson Center 2929,2929 W 19th St ,,5211600,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +62,0.9999999403953552,92,CPS_Early_Childhood_Portal_scrape.csv, Boys and Girls Clubs of Chicago - R.E. Woods,2950 W 25th St ,,8475172,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +62,0.9999999403953552,93,CPS_Early_Childhood_Portal_scrape.csv, Boys and Girls Clubs of Chicago - R.E. Woods,2950 W 25th St ,,8475172,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +63,0.9999999089524012,94,CPS_Early_Childhood_Portal_scrape.csv, Mary Crane League - Mary Crane - East,2974 N Clybourn Ave ,,3485528,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +64,0.9999999403953552,95,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Young Scholars Dev. Ins,3038 W 59th St ,,9181944,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +65,0.9999999403953552,96,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - South Chicago YMCA,3039 E 91st St ,,7219100,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +66,0.9999999246054253,97,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Rey Gonzalez Children & Family Center,3050 E 92nd St ,,7219311,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +67,0.9999999057567817,98,CPS_Early_Childhood_Portal_scrape.csv, Bethel New Life - Lake and Pulaski,316 N Pulaski Rd ,,2653830,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +68,0.9999999483808635,99,CPS_Early_Childhood_Portal_scrape.csv, ChildServ - FSS of Lawndale,3210 W Arthington St ,,8677370,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +68,0.9999999483808635,100,CPS_Early_Childhood_Portal_scrape.csv, ChildServ - FSS of Lawndale,3210 W Arthington St ,,8677370,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +69,0.9999999483808635,101,CPS_Early_Childhood_Portal_scrape.csv, Metropolitan Family Services - Midway Children's Center (Chicago Lawn),3215 W 63rd St ,,8842350,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +70,0.9999999246054253,102,CPS_Early_Childhood_Portal_scrape.csv, Chicago Youth Centers - Centro Nuestro / CYC,3222 W Division Ave ,,4893157,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +71,0.999999915706303,103,CPS_Early_Childhood_Portal_scrape.csv, Metropolitan Family Services - North Children's Center,3249 N Central Ave ,,3713700,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +72,0.9999999002623526,104,CPS_Early_Childhood_Portal_scrape.csv, Christopher House - Christoper House - Logan Square,3255 W Altgeld St ,,2354073,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +73,0.9999999538304407,105,CPS_Early_Childhood_Portal_scrape.csv, Chicago State University - Professional Playhouse,338 E 103rd ,,5680728,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +73,0.9999999538304407,106,CPS_Early_Childhood_Portal_scrape.csv, Chicago State University - Professional Playhouse,338 E 103rd ,,5680728,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +74,0.9999999448168219,107,CPS_Early_Childhood_Portal_scrape.csv, Albany Park Community Center - Albany Park Day Care - Ainslie,3401 W Ainslie St ,,5395907,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +75,0.9999999115920247,108,CPS_Early_Childhood_Portal_scrape.csv, St. Augustine College - St. Augustine - Flamboyan,3401 W McLean Ave ,,2763423,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +76,0.9999998807907104,109,CPS_Early_Childhood_Portal_scrape.csv, Chicago Youth Centers - ABC,3415 W 13th Pl ,,,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +76,0.9999998807907104,110,CPS_Early_Childhood_Portal_scrape.csv, Chicago Youth Centers - ABC,3415 W 13th Pl ,,,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +77,0.9999999403953552,111,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - North Lawndale YMCA,3449 W Arthington St ,,6380773,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +77,0.9999999403953552,112,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - North Lawndale YMCA,3449 W Arthington St ,,6380773,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +78,0.9999998807907104,113,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Teddy Bear 2 Columbus,3473 W Columbus ,,,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +79,0.9999999403953552,114,CPS_Early_Childhood_Portal_scrape.csv, Centers For New Horizons - Ida B. Wells Learning Center,3601 S Rhodes St ,,3733640,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +80,0.9999999403953552,115,CPS_Early_Childhood_Portal_scrape.csv, Firman Community Services - Firman House West,37 W 47th St ,,3733400,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +81,0.9999999451717012,116,CPS_Early_Childhood_Portal_scrape.csv, Carole Robertson Center For Learning - Carole Robertson Center- Ogden 3701,3701 W Ogden Ave ,,5228400,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +81,0.9999999451717012,117,CPS_Early_Childhood_Portal_scrape.csv, Carole Robertson Center For Learning - Carole Robertson Center- Ogden 3701,3701 W Ogden Ave ,,5228400,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +82,0.999999915706303,118,CPS_Early_Childhood_Portal_scrape.csv, Ada S. McKinley Community Services - McKinley - St. Thomas,3801 S Wabash Ave ,,2850617,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +83,0.9999999538304407,119,CPS_Early_Childhood_Portal_scrape.csv, Centers For New Horizons - Edison L. Hoard Learning Center,3901 S State St ,,5362187,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +84,0.9999998807907104,120,CPS_Early_Childhood_Portal_scrape.csv, Easter Seals Society of Metropolitan Chicago - It Takes a Village,4000 W Division St ,,,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +85,0.99999994,121,CPS_Early_Childhood_Portal_scrape.csv, Grant Creative Learning Center - Grant Day Care Center,4025 S Drexel St ,,2858440,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +86,0.9999999403953552,122,CPS_Early_Childhood_Portal_scrape.csv, Salvation Army - New Hope / Salvation Army,4255 W Division St ,,7224908,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +87,0.9999999448168219,123,CPS_Early_Childhood_Portal_scrape.csv, Korean American Community Services - Korean American Community Services,4300 N California Ave ,,5838281,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +88,0.9999998807907104,124,CPS_Early_Childhood_Portal_scrape.csv, Centers For New Horizons - Effie Ellis,4301 S Cottage Grove Ave ,,,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +89,0.9999999057567817,125,CPS_Early_Childhood_Portal_scrape.csv, Ada S. McKinley Community Services - Maggie Drummond Day Care,4301 S Wabash Ave ,,3738200,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +90,0.9999999403953552,126,CPS_Early_Childhood_Portal_scrape.csv, Abraham Lincoln Centre - Lincoln - King,4314 S Cottage Grove Ave ,,7472310,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +91,0.999999946687985,127,CPS_Early_Childhood_Portal_scrape.csv, Hull House Association - Leclaire-Ryder Day Care / Hull House,4410 S Laporte Ave ,,7675170,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +92,0.9999999403953552,128,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Kiddy Kare Learning Ctr,4444 S Kedzie Ave ,,2476642,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +93,0.9999999187725611,129,CPS_Early_Childhood_Portal_scrape.csv, Hull House Association - Uptown West / Hull House,4520 N Beacon St ,,5613500,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +94,0.999999915706303,130,CPS_Early_Childhood_Portal_scrape.csv, St. Paul Church of God - Chaney Ford Child Care Center,4526 S Wabash Ave ,,2858721,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +95,0.9999999219592011,131,CPS_Early_Childhood_Portal_scrape.csv, Chicago Youth Centers - Roseland / CYC,461 E 111th St ,,4684405,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +95,0.9999999219592011,132,CPS_Early_Childhood_Portal_scrape.csv, Chicago Youth Centers - Roseland / CYC,461 E 111th St ,,4684405,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +96,0.999999915706303,133,CPS_Early_Childhood_Portal_scrape.csv, Home of Life Community Dev. Corp. - Home of Life Just For You,4647 W Washington Blvd ,,6268655,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +97,0.999999913112046,134,CPS_Early_Childhood_Portal_scrape.csv, Home of Life Community Dev. Corp. - Home of Life Community Development,4650 W Madison St ,,6268655,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +98,0.9999999230507345,135,CPS_Early_Childhood_Portal_scrape.csv, Christopher House - Christopher House - Uptown,4701 N Winthrop Ave ,,7694540,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +99,0.9999999403953552,136,CPS_Early_Childhood_Portal_scrape.csv, Hull House Association - Lincoln Square / Hull House,4754 N Leavitt St ,,8788651,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +100,0.999999915706303,137,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - St. Joseph,4800 S Paulina St ,,9272524,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +101,0.9999999403953552,138,CPS_Early_Childhood_Portal_scrape.csv, Lutheran Social Services of Illinois - Winthrop Children's Center / LSSI,4848 N Winthrop Ave ,,8783210,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +102,0.9999999403953552,139,CPS_Early_Childhood_Portal_scrape.csv, Firman Community Services - Firman House East,4910 S Dr. Martin Luther King Dr ,,3732083,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +103,0.9999999211504664,140,CPS_Early_Childhood_Portal_scrape.csv, Healing Temple - Healing Temple,4941 W Chicago Ave ,,2876964,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +104,0.9999999403953552,141,CPS_Early_Childhood_Portal_scrape.csv, Appeal for Charities and Goodwill - Appeal for Charities,50 W 71st St ,,6515400,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +105,0.9999999403953552,142,CPS_Early_Childhood_Portal_scrape.csv, Salvation Army - Columbus Park / Salvation Army,500 S Central Ave ,,9214162,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +106,0.9999999483808635,143,CPS_Early_Childhood_Portal_scrape.csv," Douglass-Tubman Youth Ministries,Inc. - Douglass-Tubman Child Development Center",5010 W Chicago Ave ,,6266581,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +107,0.9999999403953552,144,CPS_Early_Childhood_Portal_scrape.csv, Wayman Day Care Center - Wayman Day Care,511 W Elm St ,,9432120,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +108,0.9999999403953552,145,CPS_Early_Childhood_Portal_scrape.csv, Albany Park Community Center - Albany Park Head Start Center-Kimball,5121 N Kimball Ave ,,5095657,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +109,0.9999998581125651,146,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Teddy Bear 5 Pulaski,5160 S Pulaski RD ,,,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +110,0.9999999192949295,147,CPS_Early_Childhood_Portal_scrape.csv, Trinity United Church of Christ - Trinity United,532 W 95th St ,,4883511,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +111,0.9999999187725611,148,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - Grace Mission,5332 S Western Ave ,,4761990,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +112,0.9999999513330113,149,CPS_Early_Childhood_Portal_scrape.csv, Firman Community Services - Firman House South,5401 S Wentworth Ave ,,4513400,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +113,0.9999998611253804,150,CPS_Early_Childhood_Portal_scrape.csv, Onward Neighborhood House - Belmont-Cragin,5423 W Diversey ,,,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +114,0.9999998807907104,151,CPS_Early_Childhood_Portal_scrape.csv, Onward Neighborhood House - Tiny Town for Tots,5654 W Division St ,,,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +115,0.9999999655872422,152,CPS_Early_Childhood_Portal_scrape.csv, Marcy Newberry Association - St. John Greater Holy Temple,5701 W Midway Park ,,9480094,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +116,0.9999998,153,CPS_Early_Childhood_Portal_scrape.csv, El Hogar del Nino/Cuidar - Blanca Alatorre,5738 S KENNETH AVE ,,,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +117,0.9999999246054253,154,CPS_Early_Childhood_Portal_scrape.csv," Trinity Resources Unlimited, Inc. - Hope for Youth",5900 W Iowa St ,,6260323,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +118,0.9999999403953552,155,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Little Learners,5923 W 63rd St ,,5815541,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +119,0.9999999403953552,156,CPS_Early_Childhood_Portal_scrape.csv, Onward Neighborhood House - Onward Neighborhood House,600 N Leavitt St ,,6666726,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +120,0.9999998581125651,157,CPS_Early_Childhood_Portal_scrape.csv," Heartland Alliance for Human Needs & Rights - Heartland Human Care Services, Inc",615 W Wellington Ave ,,,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +121,0.9999999403953552,158,CPS_Early_Childhood_Portal_scrape.csv, Centers For New Horizons - Washington Park South Learning Center,6225 S Wabash Ave ,,6672065,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +122,0.99999994,159,CPS_Early_Childhood_Portal_scrape.csv, Boys and Girls Clubs of Chicago - Yancey,6245 S Wabash Ave ,,3634733,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +123,0.99999994,160,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Kidz Colony,6287 S Archer Ave ,,7678522,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +124,0.9999999538304407,161,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - South Side YMCA,6330 S Stony Island Ave ,,9470700,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +125,0.9999998581125651,162,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Teddy Bear 3 Pulaski,6401 S Pulaski RD ,,,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +126,0.9999999057567817,163,CPS_Early_Childhood_Portal_scrape.csv, Woodlawn A.M.E. Church - Woodlawn A.M.E.,6456 S Evans Ave ,,6671402,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +127,0.9999999403953552,164,CPS_Early_Childhood_Portal_scrape.csv, Board Trustees-City Colleges of Chicago - Kennedy-King College,6800 S Wentworth Ave ,,5533475,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +128,0.9999999403953552,165,CPS_Early_Childhood_Portal_scrape.csv, Family Rescue - Ridgeland Head Start,6824 S Ridgeland Ave ,,6671073,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +129,0.9999999311744846,166,CPS_Early_Childhood_Portal_scrape.csv, Trinity United Church of Christ - Dr. Denton J. Brooks Center,6921 S Stony Island Ave ,,9552818,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +130,0.9999999403953552,167,CPS_Early_Childhood_Portal_scrape.csv, Abraham Lincoln Centre - Lincoln - Roseland,7 E 119th St ,,2647632,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +130,0.9999999403953552,168,CPS_Early_Childhood_Portal_scrape.csv, Abraham Lincoln Centre - Lincoln - Roseland,7 E 119th St ,,2647632,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +131,0.9999999403953552,169,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - Garfield Head Start/Child Developmental Center- YMCA,7 N Homan Ave ,,2653900,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +132,0.999999915706303,170,CPS_Early_Childhood_Portal_scrape.csv, Christopher House - Christopher House - Rogers Park,7059 N Greenview Ave ,,2745477,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +133,0.9999998807907104,171,CPS_Early_Childhood_Portal_scrape.csv, Ada S. McKinley Community Services - Little Hands,7146 S Ashland Ave ,,,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +134,0.999999926999517,172,CPS_Early_Childhood_Portal_scrape.csv, Ada S. McKinley Community Services - McKinley - Howard,7222 S Exchange Ave ,,2219711,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +135,0.9999998807907104,173,CPS_Early_Childhood_Portal_scrape.csv, Hull House Association - Orr High School non-cys funded,730 N Pulaski Rd ,,8261090,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +136,0.9999999513330113,174,CPS_Early_Childhood_Portal_scrape.csv, South Shore United Methodist - South Shore United,7350 S Jeffery Blvd ,,3244430,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +137,0.9999999634997585,175,CPS_Early_Childhood_Portal_scrape.csv, Chicago Commons Association - Nia Family Center,744 N Monticello Ave ,,8266971,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +138,0.9999999356196254,176,CPS_Early_Childhood_Portal_scrape.csv, Howard Area Community Center - Howard Area Community Center,7510 N Ashland Ave ,,7647610,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +139,0.9999999681399773,177,CPS_Early_Childhood_Portal_scrape.csv, Chicago Youth Centers - Rebecca K. Crown / CYC,7601 S Phillips Ave ,,6481550,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +140,0.9999999578531515,178,CPS_Early_Childhood_Portal_scrape.csv, Howard Area Community Center - Howard Area,7638 N Paulina Ave ,,3813652,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +141,0.9999999,179,CPS_Early_Childhood_Portal_scrape.csv, ChildServ - Englewood,7928 S Ashland Ave ,,,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +142,0.999999926999517,180,CPS_Early_Childhood_Portal_scrape.csv, Ada S. McKinley Community Services - McKinley - Wright Renaissance,7939 S Western Ave ,,4768805,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +143,0.99999994,181,CPS_Early_Childhood_Portal_scrape.csv, Chicago State University - Tiny Tots Villa,8128 S Dr. Martin Luther King Dr ,,4836251,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +144,0.9999999403953552,182,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - New Pisgah,8130 S Racine Ave ,,8735392,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +851,1.0,183,CPS_Early_Childhood_Portal_scrape.csv, Human Resources Development Institute - Human Resources Development Institute,8151 S Western Ave ,,8631145,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +145,0.999999915706303,184,CPS_Early_Childhood_Portal_scrape.csv, South Central Community Services - South Central Community Services,8316 S Ellis Ave ,,4830900,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +146,0.9999999403953552,185,CPS_Early_Childhood_Portal_scrape.csv, Marcy Newberry Association - South Harper Montessori,8358 S Stony Island Ave ,,7340375,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +147,0.999999926999517,186,CPS_Early_Childhood_Portal_scrape.csv, Christopher House - Christopher House - Lakeshore,850 W Eastwood Ave ,,2719403,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +148,0.9999998712392509,187,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - North Kenwood Day Care Center,857 E Pershing Rd ,,2682223,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +149,0.9999999211504664,188,CPS_Early_Childhood_Portal_scrape.csv, Dorothy Sutton Branch - Dorothy Sutton Branch,8601 S State St ,,7234445,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +150,0.99999994,189,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - St. Bronislava,8716 S Colfax Ave ,,9337676,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +151,0.9999999403953552,190,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - Our Lady of Guadalupe,9129 S Burley Ave ,,9785320,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +152,0.99999994,191,CPS_Early_Childhood_Portal_scrape.csv, Haymarket Center - Haymarket Center,932 W Washington Blvd ,,2267984,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +153,0.9999999403953552,192,CPS_Early_Childhood_Portal_scrape.csv, Centers For New Horizons - Altgeld Gardens I,941 E 132nd Pl ,,4683055,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +153,0.9999999403953552,193,CPS_Early_Childhood_Portal_scrape.csv, Centers For New Horizons - Altgeld Gardens I,941 E 132nd Pl ,,4683055,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +852,1.0,194,CPS_Early_Childhood_Portal_scrape.csv, The Woodlawn Organization - T.W.O. Early Child Development,950 E 61ST St ,,2885840,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +853,1.0,195,CPS_Early_Childhood_Portal_scrape.csv, Human Resources Development Institute - Donna Randle,9634 S CHAPPEL AVE ,,,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +154,0.9999999403953552,196,CPS_Early_Childhood_Portal_scrape.csv, Chicago Youth Centers - Dorothy Gautreaux / CYC,975 E 132nd St ,,2911000,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +154,0.9999999403953552,197,CPS_Early_Childhood_Portal_scrape.csv, Chicago Youth Centers - Dorothy Gautreaux / CYC,975 E 132nd St ,,2911000,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +854,1.0,198,CPS_Early_Childhood_Portal_scrape.csv, Joyner CPC,1315 S. Blue Island ,,5347903,,Child Parent Center,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +155,0.9999999403953552,199,CPS_Early_Childhood_Portal_scrape.csv, Von Humboldt CPC,1345 N. Rockwell ,,5344668,,Child Parent Center,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +156,0.9999999403953552,200,CPS_Early_Childhood_Portal_scrape.csv, Herzl CPC,1401 S. Hamlin ,,5341751,,Child Parent Center,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +156,0.9999999403953552,201,CPS_Early_Childhood_Portal_scrape.csv, Herzl CPC,1401 S. Hamlin ,,5341751,,Child Parent Center,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +157,0.9999999403953552,202,CPS_Early_Childhood_Portal_scrape.csv, Ferguson CPC,1420 N. Hudson ,,5348580,,Child Parent Center,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +158,0.99999994,203,CPS_Early_Childhood_Portal_scrape.csv, Parker CPC,328 W. 69Th ,,5353853,,Child Parent Center,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +159,0.99999994,204,CPS_Early_Childhood_Portal_scrape.csv, Delano CPC,3905 W. Wilcox ,,5346450,,Child Parent Center,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +160,0.9999999403953552,205,CPS_Early_Childhood_Portal_scrape.csv, Hansberry CPC,4055 W. Arthington ,,5346931,,Child Parent Center,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +160,0.9999999403953552,206,CPS_Early_Childhood_Portal_scrape.csv, Hansberry CPC,4055 W. Arthington ,,5346931,,Child Parent Center,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +855,1.0,207,CPS_Early_Childhood_Portal_scrape.csv, Cole CPC,412 S. Keeler ,,5346857,,Child Parent Center,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +161,1.0,208,CPS_Early_Childhood_Portal_scrape.csv, Woodson South CPC,4511 S. Evans Ave ,,5351822,,Child Parent Center,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +162,0.9999999403953552,209,CPS_Early_Childhood_Portal_scrape.csv, Overton CPC,4935 S. Indiana ,,5351811,,Child Parent Center,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +856,1.0,210,CPS_Early_Childhood_Portal_scrape.csv, Beasley CPC,5165 S. State St ,,5351772,,Child Parent Center,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +163,0.9999999403953552,211,CPS_Early_Childhood_Portal_scrape.csv, Dewey CPC,638 W. 54Th Pl. ,,5351671,,Child Parent Center,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +164,0.9999999403953552,212,CPS_Early_Childhood_Portal_scrape.csv, Wheatley CPC,902 E. 133rd Pl ,,5355718,,Child Parent Center,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +164,0.9999999403953552,213,CPS_Early_Childhood_Portal_scrape.csv, Wheatley CPC,902 E. 133rd Pl ,,5355718,,Child Parent Center,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +857,1.0,214,CPS_Early_Childhood_Portal_scrape.csv, V & J Day Care Center,1 E. 113th St. ,,7853940,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +0,0.9999999403953552,215,CPS_Early_Childhood_Portal_scrape.csv, Salvation Army Temple,1 N. Ogden ,,2262649,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +1,0.9999998807907104,216,CPS_Early_Childhood_Portal_scrape.csv, National Louis University-Dr. Effie O. Ellis Head Start,10 S. Kedzie ,,5339011,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +165,0.99999994,217,CPS_Early_Childhood_Portal_scrape.csv, City Colleges Olive-Harvey CDC,10001 S. Woodlawn ,,2916315,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +3,0.999999946687985,218,CPS_Early_Childhood_Portal_scrape.csv, Easter Seals - Gilchrist Marchman,1001 W. Roosevelt Rd ,,4927402,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +4,1.0,219,CPS_Early_Childhood_Portal_scrape.csv, Hull House Association Edgewater/Uptown,1020 W. Bryn Mawr ,,4695626,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +858,1.0,220,CPS_Early_Childhood_Portal_scrape.csv," Montessori Academy and Association, Inc. 2",10232 S. Halsted St. ,,2331100,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +859,1.0,221,CPS_Early_Childhood_Portal_scrape.csv, Archdiocese of Chicago - St. Mary of the Lake,1026 W. Buena Ave. ,,2810018,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +166,0.99999994,222,CPS_Early_Childhood_Portal_scrape.csv, Small Stride Academy,10317 S. Western ,,2390040,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +167,0.99999994,223,CPS_Early_Childhood_Portal_scrape.csv, Loyola University Chicago,1052 W. Loyola Ave ,,5083440,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +168,0.9999998480373766,224,CPS_Early_Childhood_Portal_scrape.csv, Children?s Developmental Institute MP,10928 S. Halsted St. ,,9950600,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +7,0.9999999018008148,225,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities - Cordi-Marian,1100 S. May Street ,,6663787,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +860,1.0,226,CPS_Early_Childhood_Portal_scrape.csv," Montessori Academy and Association, Inc. 1",11025 S. Halsted St. ,,4680033,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +861,1.0,227,CPS_Early_Childhood_Portal_scrape.csv," Kids Count Too Daycare, Preschool and Kindergarten-Kids Count Too Daycare - Englewo",1106-1108 W. 63rd St. ,,4767714,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +8,0.9999998480373766,228,CPS_Early_Childhood_Portal_scrape.csv, Thresholds Mothers? Project,1110 W. Belmont ,,,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +862,1.0,229,CPS_Early_Childhood_Portal_scrape.csv, North Kenwood/Oakland Charter,1119 E. 46th St. ,,5362399,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +9,0.9999999246054253,230,CPS_Early_Childhood_Portal_scrape.csv, Bethel New Life Molade CDC,1120 N. Lamon ,,6267760,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +863,1.0,231,CPS_Early_Childhood_Portal_scrape.csv, LEARN Charter School,1132 S. Homan ,,8266330,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +864,1.0,232,CPS_Early_Childhood_Portal_scrape.csv, Lots of Love Preschool Academy,1139 W. 79th St. ,,2091989,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +11,0.9999999403953552,233,CPS_Early_Childhood_Portal_scrape.csv, Ada S. McKinley Roseland,11410 S. Edbrooke ,,4681918,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +865,1.0,234,CPS_Early_Childhood_Portal_scrape.csv, Imani Children's Academy,11443 S. Halsted ,,6609667,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +169,0.99999994,235,CPS_Early_Childhood_Portal_scrape.csv, City Colleges of Chicago Truman CDC,1145 W. Wilson ,,9074741,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +866,1.0,236,CPS_Early_Childhood_Portal_scrape.csv, Gingerbread House Daycare,11640 S. Wentworth ,,9284041,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +170,0.9999999057567817,237,CPS_Early_Childhood_Portal_scrape.csv, Chicago Urban Day School,1248 W. 69th Street ,,4833555,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +867,1.0,238,CPS_Early_Childhood_Portal_scrape.csv, Stepping Stones Early Childhood Center,1300 E. 75th St. ,,4930000,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +171,0.9999999403953552,239,CPS_Early_Childhood_Portal_scrape.csv, First Congregational Church Day Care,1305 N. Hamlin ,,3848118,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +16,0.9999998807907104,240,CPS_Early_Childhood_Portal_scrape.csv, Marcy-Newberry - Fosco Park,1312 S. Racine ,,7466024,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +868,1.0,241,CPS_Early_Childhood_Portal_scrape.csv," Kids Place II, Inc.",1318 West 95th St. ,,4456500,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +172,0.99999994,242,CPS_Early_Childhood_Portal_scrape.csv, St. Augustine College - Canillitas,1333-45 W. Argyle ,,8783231,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +173,0.9999998480373766,243,CPS_Early_Childhood_Portal_scrape.csv, Casa Central - CSC Development Program,1343 N. California ,,6452300,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +18,0.9999999403953552,244,CPS_Early_Childhood_Portal_scrape.csv, Abraham Lincoln Center - Hope,1354 W. 61st St. ,,4715100,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +174,0.9999999403953552,245,CPS_Early_Childhood_Portal_scrape.csv, Northwestern University Settlement House,1400 W. Augusta Blvd. ,,2787471,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +869,1.0,246,CPS_Early_Childhood_Portal_scrape.csv, Taylor - Day School Inc.,1414 W. 87th St ,,2392322,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +870,1.0,247,CPS_Early_Childhood_Portal_scrape.csv, Little Kiddies Day Care,1447 W. Devon ,,4657702,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +871,1.0,248,CPS_Early_Childhood_Portal_scrape.csv, Passages Charter School,1447 W. Montrose ,,5491052,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +19,0.9999998900944655,249,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities - Our Lady of Lourdes,1449 S. Keeler ,,5213126,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +20,0.9999999455886526,250,CPS_Early_Childhood_Portal_scrape.csv, Lutheran Social Services North Austin,1500 N. Mason ,,2371930,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +22,0.9999998884899203,251,CPS_Early_Childhood_Portal_scrape.csv, Chicago Youth Centers Centro Nuestro (Taylor),1501 N. Harding ,,2785837,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +23,0.999999926999517,252,CPS_Early_Childhood_Portal_scrape.csv, Marcy-Newberry Marcy Center,1539 S. Springfield ,,7622300,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +24,0.9999999246054253,253,CPS_Early_Childhood_Portal_scrape.csv, Mary Crane Morse,1545 W. Morse ,,2621390,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +872,1.0,254,CPS_Early_Childhood_Portal_scrape.csv," Early Child Care Services,Inc.",160 N. LaSalle N. 201 ,,8144782,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +26,0.9999999301073587,255,CPS_Early_Childhood_Portal_scrape.csv, Chicago Commons-Taylor Center For New Experiences,1633 N. Hamlin ,,2278551,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +28,0.9999999324146855,256,CPS_Early_Childhood_Portal_scrape.csv, Chicago Commons Paulo Freire,1653 W. 43rd Street ,,8266260,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +175,0.9999998211860657,257,CPS_Early_Childhood_Portal_scrape.csv, Children?s Home & Aid Englewood,1701 W. 63rd St. ,,,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +29,0.9999999403953552,258,CPS_Early_Childhood_Portal_scrape.csv, Erie Neighborhood House,1701 W. Superior ,,5635800,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +873,1.0,259,CPS_Early_Childhood_Portal_scrape.csv, El Hogar del Ni?o New Loomis,1710-1718 S. Loomis ,,5630662,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +874,1.0,260,CPS_Early_Childhood_Portal_scrape.csv, Kiddy Kare Preschools Little Tykes I,1711 W. 35th Street ,,2547710,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +32,0.9999999327568919,261,CPS_Early_Childhood_Portal_scrape.csv, El Hogar del Ni?o Loomis Preschool,1718 S. Loomis ,,5630662,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +875,1.0,262,CPS_Early_Childhood_Portal_scrape.csv, Kiddy Kare Preschools Little Tykes II,1723 W. 35th Street ,,5791791,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +35,0.9999999578531515,263,CPS_Early_Childhood_Portal_scrape.csv, Lutheran Social Services Rogers Park,1754 W. Devon ,,2623366,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +176,0.999999838589859,264,CPS_Early_Childhood_Portal_scrape.csv, Children?s Place Family Center,1800 N. Humboldt Blvd. ,,,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +177,0.9999999403953552,265,CPS_Early_Childhood_Portal_scrape.csv, Lutheran Day Nursery,1802 N. Fairfield ,,4864222,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +36,0.9999998884899203,266,CPS_Early_Childhood_Portal_scrape.csv, Chicago Commons Guadalupano,1814 S. Paulina ,,6663883,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +876,1.0,267,CPS_Early_Childhood_Portal_scrape.csv, Chicago International Charter Basil Campus,1816 W. Garfield Blvd. ,,8630652,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +178,0.9999999403953552,268,CPS_Early_Childhood_Portal_scrape.csv, YMCA McCormick Tribune Preschool,1834 N. Lawndale ,,2352525,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +877,1.0,269,CPS_Early_Childhood_Portal_scrape.csv, Wee Care Nursery School & Kindergarten,1845 E. 79th St. ,,2214442,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +179,0.99999994,270,CPS_Early_Childhood_Portal_scrape.csv, City Colleges Malcolm X CDC,1900 W. Van Buren ,,8507176,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +878,1.0,271,CPS_Early_Childhood_Portal_scrape.csv, Archdiocese of Chicago - St. Pius V,1919 S. Ashland ,,2261590,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +180,0.99999994,272,CPS_Early_Childhood_Portal_scrape.csv, UIC Children?s Center II - West,1919 W. Taylor (m/c 525) Rm. 128 ,,4135326,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +879,1.0,273,CPS_Early_Childhood_Portal_scrape.csv, Terry Town Vireva Nursery School,1935 W. 51st St. ,,9258417,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +39,0.9999998873578092,274,CPS_Early_Childhood_Portal_scrape.csv, El Valor Corporation-Guadalupe Reyes Children and Family Center,1951 W. 19th St. ,,9972021,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +880,1.0,275,CPS_Early_Childhood_Portal_scrape.csv, New Zion Child Care Academy,1960 W. 13th St. ,,7331263,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +881,1.0,276,CPS_Early_Childhood_Portal_scrape.csv, Loop Learning Center,2001 S. Michigan Ave. ,,2258828,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +40,0.9999999403953552,277,CPS_Early_Childhood_Portal_scrape.csv, North Avenue Day Nursery,2001 W. Pierce ,,3424499,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +41,1.0,278,CPS_Early_Childhood_Portal_scrape.csv, Carole Robertson Center Roosevelt,2020 W. Roosevelt ,,2434881,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +181,0.9999999403953552,279,CPS_Early_Childhood_Portal_scrape.csv, Dorsey Developmental Institute I,2050 E. 93rd Street ,,3754300,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +882,1.0,280,CPS_Early_Childhood_Portal_scrape.csv," Loren Children's Learning Center, Inc.",2106 E. 79th St. ,,3569400,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +883,1.0,281,CPS_Early_Childhood_Portal_scrape.csv, Archdiocese of Chicago - St. Paul/ Our Lady of Vilna,2114 W. 22nd Pl. ,,8476078,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +182,0.9999999057567817,282,CPS_Early_Childhood_Portal_scrape.csv, Marillac House,212 S. Francisco ,,7227440,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +42,0.9999999733439925,283,CPS_Early_Childhood_Portal_scrape.csv, Chinese American Service League,2141 S. Tan Ct. ,,7910454,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +884,1.0,284,CPS_Early_Childhood_Portal_scrape.csv, A Child's World Early Learning Center,2145 E. 83rd St. ,,9786598,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +183,0.9999998581125651,285,CPS_Early_Childhood_Portal_scrape.csv, St. Vincent DePaul Child Development,2145 N. Halsted ,,,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +184,0.99999994,286,CPS_Early_Childhood_Portal_scrape.csv, Laurance Armour School,2150 W. Harrison St. ,,9426501,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +885,1.0,287,CPS_Early_Childhood_Portal_scrape.csv," Precious Little One's Learning Center, Inc.",221 E. 51st St. ,,2859902,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +886,1.0,288,CPS_Early_Childhood_Portal_scrape.csv, Archdiocese of Chicago - St. Ann,2211 W. 18th Pl. ,,8294153,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +185,0.9999999513330113,289,CPS_Early_Childhood_Portal_scrape.csv, Casa Central - Casa Infantil Child Development Program,2222 N. Kedzie Ave. ,,7721170,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +887,1.0,290,CPS_Early_Childhood_Portal_scrape.csv, Ahadi Early Learning Center,2257 E. 71st St. ,,2517086,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +888,1.0,291,CPS_Early_Childhood_Portal_scrape.csv, Love Learning Center,228 E. 61st Street ,,7520243,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +44,0.9999998211860657,292,CPS_Early_Childhood_Portal_scrape.csv, El Hogar Del Nino California,2325 S. California ,,,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +45,0.999999946687985,293,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Gentry,2326 S. Dearborn ,,8428557,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +186,0.9999999403953552,294,CPS_Early_Childhood_Portal_scrape.csv, Kenyatta?s Day Care Center,2334 E. 75th Street ,,2213777,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +889,1.0,295,CPS_Early_Childhood_Portal_scrape.csv, Ada S. McKinley Trumball Park,2400 E. 105th St ,,9785341,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +47,0.9999999026660227,296,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House Hilliard at Quinn Chapel,2401 S. Wabash ,,7919710,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +187,1.0,297,CPS_Early_Childhood_Portal_scrape.csv, YMCA High Ridge,2424 W. Touhy ,,2628300,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +50,0.9999998451425903,298,CPS_Early_Childhood_Portal_scrape.csv, El Valor Corporation-Carlos Cantu Children and Family Centers,2434 S. Kildare ,,7219311,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +188,0.99999994,299,CPS_Early_Childhood_Portal_scrape.csv," Wee Wee Center for Creative Learning, Inc.",2434 W. 71st St. ,,4710869,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +890,1.0,300,CPS_Early_Childhood_Portal_scrape.csv, Archdiocese of Chicago - Our Lady of Grace,2446 N. Ridgeway Ave. ,,3420170,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +189,0.99999994,301,CPS_Early_Childhood_Portal_scrape.csv, Mother?s Touch I,2501 W. 71st Street ,,4363177,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +51,0.9999999403953552,302,CPS_Early_Childhood_Portal_scrape.csv, Christopher House Greenview,2507 N. Greenview ,,4721083,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +190,0.9999998735594545,303,CPS_Early_Childhood_Portal_scrape.csv, Children?s Home & Aid Society Viva,2516 W. Division ,,2526313,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +52,0.9999999002623526,304,CPS_Early_Childhood_Portal_scrape.csv, Christopher House Logan Square,2610 N. Francisco ,,2354073,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +53,0.9999999287588233,305,CPS_Early_Childhood_Portal_scrape.csv, St. Augustine College Nayarit,2610 W. 25th Pl. ,,8783653,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +891,1.0,306,CPS_Early_Childhood_Portal_scrape.csv, Archdiocese of Chicago - St. Agnes of Bohemia,2643 S. Central Park Ave. ,,5220143,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +191,0.99999994,307,CPS_Early_Childhood_Portal_scrape.csv," Teddy Bear Nursery School, Inc. I",2649 W. 51st Street ,,4760700,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +192,0.9999998892163781,308,CPS_Early_Childhood_Portal_scrape.csv, Gads Hill Child Care Center,2653 W. Ogden ,,5211196,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +892,1.0,309,CPS_Early_Childhood_Portal_scrape.csv, Little Kids Village Learning,2656 W. 71st St. ,,7764753,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +893,1.0,310,CPS_Early_Childhood_Portal_scrape.csv, YMCA Rauner Family,2700 S. Western Ave. ,,5060130,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +894,1.0,311,CPS_Early_Childhood_Portal_scrape.csv, Keeper?s Institute Infant/Child Care,2718 W. 59th St. ,,4348835,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +57,0.999999946687985,312,CPS_Early_Childhood_Portal_scrape.csv, Mary Crane West,2820 N. Leavitt ,,3485528,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +60,0.999999915706303,313,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Near South,2929 S. Wabash ,,7910424,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +61,0.9999999403953552,314,CPS_Early_Childhood_Portal_scrape.csv, Carole Robertson Center for Learning,2929 W. 19th St. ,,5211600,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +193,0.99999994,315,CPS_Early_Childhood_Portal_scrape.csv, Dorsey Developmental Institute III,2938 E. 91st Street ,,9330053,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +895,1.0,316,CPS_Early_Childhood_Portal_scrape.csv, Boys & Girls Clubs General R. E. Wood,2950 W. 25th Street ,,8475172,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +63,0.999999891177305,317,CPS_Early_Childhood_Portal_scrape.csv, Mary Crane Center East,2974 N. Clybourn ,,3485528,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +896,1.0,318,CPS_Early_Childhood_Portal_scrape.csv, Little Leaders of Tomorrow Daycare,301 N. Mayfield ,,3788302,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +897,1.0,319,CPS_Early_Childhood_Portal_scrape.csv, Shinning Star Child Development Institute,3012-16 E. 92nd St. ,,9787827,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +194,0.9999999403953552,320,CPS_Early_Childhood_Portal_scrape.csv, Irving Park Early Learning Center,3023 W. Montrose ,,5397422,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +898,1.0,321,CPS_Early_Childhood_Portal_scrape.csv, Archdiocese of Chicago - St. Sylvester,3027 W. Palmer St. ,,7725222,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +195,0.9999998807907104,322,CPS_Early_Childhood_Portal_scrape.csv, A-Karrasel - Avondale,3030 N. Kedzie ,,4636151,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +196,0.99999994,323,CPS_Early_Childhood_Portal_scrape.csv, Young Scholars Developmental Institute,3038 W. 59th St. ,,9181944,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +197,0.9999999403953552,324,CPS_Early_Childhood_Portal_scrape.csv, YMCA South Chicago,3039 E. 91st Street ,,7219100,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +66,0.9999999002623526,325,CPS_Early_Childhood_Portal_scrape.csv, El Valor Corporation-Ray Gonzalez Children and Family Center,3050 E. 92nd St. ,,7219311,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +899,1.0,326,CPS_Early_Childhood_Portal_scrape.csv, Kids Hope United Bridgeport CDC,3053 S. Normal ,,8425566,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +900,1.0,327,CPS_Early_Childhood_Portal_scrape.csv, Kove Learning Academy,3137 W. 71st Street ,,4763083,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +901,1.0,328,CPS_Early_Childhood_Portal_scrape.csv, Locke Charter School,3141 W. Jackson ,,2657232,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +67,0.9999998807907104,329,CPS_Early_Childhood_Portal_scrape.csv, Bethel New Life Bethel Child Development,316 N. Pulaski ,,2653830,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +69,0.9999999483808635,330,CPS_Early_Childhood_Portal_scrape.csv, Metropolitan Family Services,3215 W. 63rd Street ,,8842350,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +70,0.9999999115920247,331,CPS_Early_Childhood_Portal_scrape.csv, Chicago Youth Centers Centro Nuestro Division,3222 W. Division ,,4893157,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +198,0.99999994,332,CPS_Early_Childhood_Portal_scrape.csv, Concordia Child Care Center Avondale,3300 N. Whipple ,,4631600,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +74,0.9999999448168219,333,CPS_Early_Childhood_Portal_scrape.csv, Albany Park Community Center,3401 W. Ainslie ,,5395907,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +75,0.9999999246054253,334,CPS_Early_Childhood_Portal_scrape.csv, St. Augustine College - Flamboyan,3401 W. McLean St. ,,2763423,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +76,0.9999999115920247,335,CPS_Early_Childhood_Portal_scrape.csv, Chicago Youth Centers - ABC,3415 W. 13th Pl ,,7625655,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +902,1.0,336,CPS_Early_Childhood_Portal_scrape.csv, Pathways to Learning,3416 ? -18 W. 79th Street ,,4369244,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +903,1.0,337,CPS_Early_Childhood_Portal_scrape.csv, A-Karrasel ? Logan Square,3420 W. Fullerton ,,7724333,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +199,1.0,338,CPS_Early_Childhood_Portal_scrape.csv, Rachel's Learning Center - North Lawndale,3430 W. Roosevelt Rd. ,,5331834,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +200,0.9999999403953552,339,CPS_Early_Childhood_Portal_scrape.csv, YMCA North Lawndale,3449 W. Arthington ,,6380773,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +201,0.99999994,340,CPS_Early_Childhood_Portal_scrape.csv, Pathways to Learning I/T,3450-54 W. 79th St ,,4369244,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +904,1.0,341,CPS_Early_Childhood_Portal_scrape.csv," Teddy Bear Nursery School, Inc. II",3473 W. Columbus ,,2842141,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +905,1.0,342,CPS_Early_Childhood_Portal_scrape.csv," Kids Count Too Daycare, Preschool and Kindergarten - Washington Heights",360-364 E. 61st ,,7523022,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +906,1.0,343,CPS_Early_Childhood_Portal_scrape.csv, Lava Inc. - Chatterbox Preschool,3613 West Devon ,,4782434,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +202,0.9999998807907104,344,CPS_Early_Childhood_Portal_scrape.csv, Easter Seals Near South,3630 S. Wells Rm. 105 ,,5483614,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +907,1.0,345,CPS_Early_Childhood_Portal_scrape.csv, Center for New Horizons Ida B. Wells,3641 S. Rhodes ,,3733640,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +908,1.0,346,CPS_Early_Childhood_Portal_scrape.csv, Firman Pre-School West,37 W. 47th Street ,,3733400,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +81,0.9999999451717012,347,CPS_Early_Childhood_Portal_scrape.csv, Carole Robertson Center Jubilee,3701 W. Ogden ,,5228400,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +82,0.9999998807907104,348,CPS_Early_Childhood_Portal_scrape.csv, Ada S. McKinley St. Thomas CDC,3801 S. Wabash ,,2850617,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +203,0.99999994,349,CPS_Early_Childhood_Portal_scrape.csv, Concordia Child Care Center,3855 N. Seeley ,,9353739,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +909,1.0,350,CPS_Early_Childhood_Portal_scrape.csv, Little Giant Child Care Center,3863 W. Harrison ,,2656330,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +204,0.9999999403953552,351,CPS_Early_Childhood_Portal_scrape.csv," Kidwatch Plus, Inc.",3901 N. Ridgeway ,,5395431,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +83,0.9999999538304407,352,CPS_Early_Childhood_Portal_scrape.csv, Centers for New Horizons Edison L. Hoard,3901 S. State Street ,,5362187,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +910,1.0,353,CPS_Early_Childhood_Portal_scrape.csv, It Takes a Village Child Care Services,4000 W. Division ,,2761730,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +205,0.99999994,354,CPS_Early_Childhood_Portal_scrape.csv, Happy Holiday Nursery & Kindergarten,401 E. 111th Street ,,8217009,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +911,1.0,355,CPS_Early_Childhood_Portal_scrape.csv, Frazier Preparatory Academy,4027 W. Grenshaw ,,5358653,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +206,1.0,356,CPS_Early_Childhood_Portal_scrape.csv, Northwest Institute,4040 W. Division ,,9212800,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +912,1.0,357,CPS_Early_Childhood_Portal_scrape.csv, Caring Hands A Step Ahead,4208-20 N. Broadway ,,4048664,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +207,0.9999999,358,CPS_Early_Childhood_Portal_scrape.csv, Abraham Lincoln Center Near South,4210 S. Berkley ,,4513360,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +208,0.99999994,359,CPS_Early_Childhood_Portal_scrape.csv, Legacy Charter School (at Mason School),4217 W. 18th St. ,,5421640,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +208,0.99999994,360,CPS_Early_Childhood_Portal_scrape.csv, Legacy Charter School (at Mason School),4217 W. 18th St. ,,5421640,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +86,0.9999999403953552,361,CPS_Early_Childhood_Portal_scrape.csv, Salvation Army New Hope,4255 W. Division ,,7724908,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +87,0.9999999448168219,362,CPS_Early_Childhood_Portal_scrape.csv, Korean American Community Services,4300 N. California ,,5838281,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +88,0.9999999057567817,363,CPS_Early_Childhood_Portal_scrape.csv, Centers for New Horizons Effie O. Ellis,4301 S. Cottage Grove ,,5489839,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +89,0.9999998807907104,364,CPS_Early_Childhood_Portal_scrape.csv, Ada S. McKinley Maggie Drummond,4301 S. Wabash ,,3738200,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +90,0.999999926999517,365,CPS_Early_Childhood_Portal_scrape.csv, Abraham Lincoln Center - King,4314 S. Cottage Grove ,,7472310,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +913,1.0,366,CPS_Early_Childhood_Portal_scrape.csv, Golden Gate Day Care Center,432 E. 134th Street ,,9287085,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +914,1.0,367,CPS_Early_Childhood_Portal_scrape.csv, Archdiocese of Chicago - Pope John Paul II,4325 S. Richmond Ave. ,,5236161,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +915,1.0,368,CPS_Early_Childhood_Portal_scrape.csv," Jones Academy, Inc.",4344 S. Wentworth ,,3077507,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +916,1.0,369,CPS_Early_Childhood_Portal_scrape.csv," Fairyland Nursery School, Inc.",4350 N. Milwaukee ,,7251246,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +91,1.0,370,CPS_Early_Childhood_Portal_scrape.csv, Hull House Assn. LeClaire Hearst Ryder,4410 S. LaPorte ,,7670925,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +917,1.0,371,CPS_Early_Childhood_Portal_scrape.csv, Kiddy Kare Preschools Kiddy Kare I,4444 S. Kedzie ,,2476642,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +93,0.9999999287588233,372,CPS_Early_Childhood_Portal_scrape.csv, Hull House Association Uptown Center,4520 N. Beacon ,,5613500,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +94,0.999999915706303,373,CPS_Early_Childhood_Portal_scrape.csv, St. Paul Church of God in Christ-Chaney Ford Child Care Center,4526 S. Wabash ,,2858721,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +95,0.9999999448168219,374,CPS_Early_Childhood_Portal_scrape.csv, Chicago Youth Centers Roseland,461 E. 111th Street ,,4684405,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +96,0.9999998759230375,375,CPS_Early_Childhood_Portal_scrape.csv, Home of Life Just for You,4647 W. Washington ,,6268655,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +97,0.9999999403953552,376,CPS_Early_Childhood_Portal_scrape.csv, Home of Life II,4650 W. Madison ,,6268655,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +98,0.9999999403953552,377,CPS_Early_Childhood_Portal_scrape.csv, Christopher House Uptown,4701 N. Winthrop ,,7694540,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +209,0.99999994,378,CPS_Early_Childhood_Portal_scrape.csv, Creative Mansion Children?s Academy,4745 S. Ellis ,,2686066,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +918,1.0,379,CPS_Early_Childhood_Portal_scrape.csv, First Start Child Care Academy,4753-59 W. Washington ,,3794928,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +99,0.9999999403953552,380,CPS_Early_Childhood_Portal_scrape.csv, Hull House Association Lincoln Square,4754 N. Leavitt ,,8789651,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +100,0.9999998967617268,381,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities - St. Joseph,4800 S. Paulina ,,9272524,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +919,1.0,382,CPS_Early_Childhood_Portal_scrape.csv, Archdiocese of Chicago - St. Thomas of Canterbury,4827 N. Kenmore ,,2810018,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +101,0.9999999403953552,383,CPS_Early_Childhood_Portal_scrape.csv, Lutheran Social Services Winthrop,4848 N. Winthrop ,,8783210,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +210,0.99999994,384,CPS_Early_Childhood_Portal_scrape.csv, Ravenswood Community Child Care,4908 N. Damen ,,2714495,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +920,1.0,385,CPS_Early_Childhood_Portal_scrape.csv, Firman Pre-School East,4910 S. DR MARTIN LUTHER KING JRDrive ,,3732083,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +211,0.9999998884899203,386,CPS_Early_Childhood_Portal_scrape.csv, Hull House Assn. Parkway,500 E. 67th Street ,,4931306,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +105,0.9999999403953552,387,CPS_Early_Childhood_Portal_scrape.csv, Salvation Army Columbus Park,500 S. Central ,,9214162,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +921,1.0,388,CPS_Early_Childhood_Portal_scrape.csv, Children?s House - Lake Meadows,501 East 32nd Street ,,2252223,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +212,0.9999999057567817,389,CPS_Early_Childhood_Portal_scrape.csv, Ounce of Prevention Fund Educare,5044 S. Wabash ,,9242334,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +213,0.9999999403953552,390,CPS_Early_Childhood_Portal_scrape.csv, South East Asia Center Broadway,5120 N. Broadway ,,9890960,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +922,1.0,391,CPS_Early_Childhood_Portal_scrape.csv," All About Kids Learning Academy, Inc.",514 E. 75th St. ,,2555530,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +923,1.0,392,CPS_Early_Childhood_Portal_scrape.csv, Kids Hope United - CDC,5144 N. Lakewood ,,3245612,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +924,1.0,393,CPS_Early_Childhood_Portal_scrape.csv, North Kenwood Day Care Center,516-18 E. 43rd St ,,2682223,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +214,0.99999994,394,CPS_Early_Childhood_Portal_scrape.csv," Teddy Bear Nursery School, Inc. V",5160 S. Pulaski ,,2847030,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +215,0.99999994,395,CPS_Early_Childhood_Portal_scrape.csv," Whiz Kids Nursery Center, Inc.",518 W. 103rd St. ,,2339445,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +925,1.0,396,CPS_Early_Childhood_Portal_scrape.csv, Young Achievers,520 E. 79th ,,2639688,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +216,0.99999994,397,CPS_Early_Childhood_Portal_scrape.csv, Rachel's Learning Center - Austin,5242 W. North Ave. ,,2371444,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +110,0.9999999026660227,398,CPS_Early_Childhood_Portal_scrape.csv, Trinity United Church of Christ,532 W. 95th Street ,,4883511,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +111,0.9999999018008148,399,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities Grace Mission,5332 S. Western ,,4761990,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +926,1.0,400,CPS_Early_Childhood_Portal_scrape.csv, Mosaic Early Childhood Academy,5332 W. Addison ,,7777411,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +927,1.0,401,CPS_Early_Childhood_Portal_scrape.csv, Firman Preschool South,5401 S. Wentworth ,,4513400,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +928,1.0,402,CPS_Early_Childhood_Portal_scrape.csv, Archdiocese of Chicago - Holy Angels School,545 E. Oakwood Blvd. ,,6240727,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +217,0.99999994,403,CPS_Early_Childhood_Portal_scrape.csv, Bunnyland Developmental Childcare,545 W. 119th Street ,,5685200,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +218,0.9999999701976776,404,CPS_Early_Childhood_Portal_scrape.csv, Chicago Child Care Society,5467 S. University ,,2562450,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +929,1.0,405,CPS_Early_Childhood_Portal_scrape.csv, Northeastern Illinois University,5500 N. St. Louis ,,4424540,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +930,1.0,406,CPS_Early_Childhood_Portal_scrape.csv, A-Karrasel ? Galewood Center,5504 W. Fullerton ,,6371022,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +931,1.0,407,CPS_Early_Childhood_Portal_scrape.csv, Allison's Infant and Toddler Center,5522 S. Racine ,,4363193,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +219,1.0,408,CPS_Early_Childhood_Portal_scrape.csv, Marcy-Newberry Austin Town Hall,5610 W. Lake St. ,,2611062,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +220,0.9999999403953552,409,CPS_Early_Childhood_Portal_scrape.csv, Lake Shore Schools - Clark,5611 N. Clark Street ,,5616707,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +932,1.0,410,CPS_Early_Childhood_Portal_scrape.csv, Kiddy Kare Preschools Little Learners,5923 W. 63rd St. ,,5815541,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +933,1.0,411,CPS_Early_Childhood_Portal_scrape.csv, Improved Child Care Albany Child Care,5954 S. Albany ,,7377810,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +119,0.9999999403953552,412,CPS_Early_Childhood_Portal_scrape.csv, Onward Neighborhood House,600 N. Leavitt ,,6666726,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +221,0.99999994,413,CPS_Early_Childhood_Portal_scrape.csv, Easter Seals Windy City Kids,600 W. Madison ,,5756550,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +934,1.0,414,CPS_Early_Childhood_Portal_scrape.csv, Learning Center of Heartland Human Care Services,615 W. Wellington Ave. ,,7511870,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +935,1.0,415,CPS_Early_Childhood_Portal_scrape.csv, Center for New Horizons Washington Park,6225 S. Wabash ,,6672065,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +222,0.9999999,416,CPS_Early_Childhood_Portal_scrape.csv, Boys & Girls Clubs John L. Yancey,6245 S. Wabash ,,3634733,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +936,1.0,417,CPS_Early_Childhood_Portal_scrape.csv, Kiddy Kare Preschools Kidz Colony,6287 S. Archer ,,7678522,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +223,0.9999999403953552,418,CPS_Early_Childhood_Portal_scrape.csv, YMCA South Side,6330 S. Stony Island ,,9470700,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +224,0.99999994,419,CPS_Early_Childhood_Portal_scrape.csv," Teddy Bear Nursery School, Inc. III",6401 S. Pulaski ,,2842292,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +225,0.99999994,420,CPS_Early_Childhood_Portal_scrape.csv, New Hope Lutheran School,6416 S. Washtenaw ,,7769849,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +226,0.9999999403953552,421,CPS_Early_Childhood_Portal_scrape.csv, Metropolitan Family Services Midway,6422 S. Kedzie ,,7374790,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +937,1.0,422,CPS_Early_Childhood_Portal_scrape.csv, Granny's Daycare Center,645 W. 127th St. ,,8485827,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +938,1.0,423,CPS_Early_Childhood_Portal_scrape.csv, Mt. Ararat Day Care,6514-16 W. Higgins Ave. ,,5939763,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +939,1.0,424,CPS_Early_Childhood_Portal_scrape.csv, Archdiocese of Chicago - Academy of St. Benedict the African (Stewart),6547 S. Stewart Ave. ,,9946100,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +940,1.0,425,CPS_Early_Childhood_Portal_scrape.csv, Little Angels Family Daycare,6701 S. Emerald ,,3703688,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +941,1.0,426,CPS_Early_Childhood_Portal_scrape.csv, Lake Shore Schools - Greenview,6759 N. Greenview ,,7431118,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +129,0.9999999311744846,427,CPS_Early_Childhood_Portal_scrape.csv, Trinity United Church of Christ Denton Brooks,6921 S. Stony Island ,,9552818,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +227,0.99999994,428,CPS_Early_Childhood_Portal_scrape.csv," Fresh Start Daycare, Inc.",6924 W. North Avenue ,,4792870,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +228,0.9999999403953552,429,CPS_Early_Childhood_Portal_scrape.csv, Eyes on the Future,6969 N. Ravenswood ,,9730771,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +130,0.9999999287588233,430,CPS_Early_Childhood_Portal_scrape.csv, Abraham Lincoln Centre Roseland,7 E. 119th St. ,,2647633,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +229,0.9999999403953552,431,CPS_Early_Childhood_Portal_scrape.csv, YMCA Garfield,7 N. Homan Avenue ,,2653900,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +230,0.9999998480373766,432,CPS_Early_Childhood_Portal_scrape.csv, Children?s Developmental Institute SS,7037 S. Stony Island ,,3633200,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +132,0.9999999057567817,433,CPS_Early_Childhood_Portal_scrape.csv, Christopher House Rogers Park,7059 N. Greenview ,,2745477,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +231,0.9999998807907104,434,CPS_Early_Childhood_Portal_scrape.csv, Abraham Lincoln Center Donoghue,707 E. 37th St. ,,7295325,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +942,1.0,435,CPS_Early_Childhood_Portal_scrape.csv, City Colleges Kennedy King CDC,710 W. 65th St ,,6025447,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +943,1.0,436,CPS_Early_Childhood_Portal_scrape.csv, Archdiocese of Chicago - St. Columbanus School,7120 S. Calumet Ave. ,,2243811,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +944,1.0,437,CPS_Early_Childhood_Portal_scrape.csv, Archdiocese of Chicago - Queen of the Universe,7130 S. Hamlin ,,5824266,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +945,1.0,438,CPS_Early_Childhood_Portal_scrape.csv, Little Hands Child Creative Center,7146-48 S. Ashland Ave. ,,4710662,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +134,0.9999998967617268,439,CPS_Early_Childhood_Portal_scrape.csv, Ada S. McKinley Ersula Howard,7222 S. Exchange ,,2219711,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +232,0.9999999057567817,440,CPS_Early_Childhood_Portal_scrape.csv, UIC Children?s Center I - East,728 W. Roosevelt (m/c 050) Rm. 287 ,,4135331,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +946,1.0,441,CPS_Early_Childhood_Portal_scrape.csv," Itsy Bitsy People Palace, Inc.",7419 S. Cottage Grove ,,8467396,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +233,0.99999994,442,CPS_Early_Childhood_Portal_scrape.csv, Little People Day Care & Kindergarten,7428 N. Rogers Ave. ,,7612305,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +137,1.0,443,CPS_Early_Childhood_Portal_scrape.csv, Chicago Commons NIA,744 N. Monticello ,,8264259,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +234,0.9999999403953552,444,CPS_Early_Childhood_Portal_scrape.csv, City Colleges Daley Semester Program,7500 S. Pulaski ,,8387562,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +138,0.9999999026660227,445,CPS_Early_Childhood_Portal_scrape.csv, Howard Area Early Childhood Center,7510 N. Ashland ,,7647610,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +235,0.9999999,446,CPS_Early_Childhood_Portal_scrape.csv, Jolly Fun House Playschool,7559 W. Addison ,,6376115,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +139,0.9999999549431237,447,CPS_Early_Childhood_Portal_scrape.csv, Chicago Youth Centers Rebecca K. Crown,7601 S. Phillips ,,7310444,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +947,1.0,448,CPS_Early_Childhood_Portal_scrape.csv, Archdiocese of Chicago - St. Sabina Academy,7800 S. Throop St. ,,4835000,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +236,0.99999994,449,CPS_Early_Childhood_Portal_scrape.csv, New Concept,7825 S. Ellis ,,6519599,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +142,0.9999998807907104,450,CPS_Early_Childhood_Portal_scrape.csv, Ada S. McKinley Wright Renaissance,7939 S. Western ,,4768805,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +237,0.9999999403953552,451,CPS_Early_Childhood_Portal_scrape.csv, Ezzard Charles School,7946 S. Ashland ,,4870227,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +948,1.0,452,CPS_Early_Childhood_Portal_scrape.csv, Children?s Center for Creative Learning,7954-58 S. Western ,,4714927,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +949,1.0,453,CPS_Early_Childhood_Portal_scrape.csv, Tiny Tot Villa,8128 S. DR MARTIN LUTHER KING JR Drive ,,4836251,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +950,1.0,454,CPS_Early_Childhood_Portal_scrape.csv, NIA LTD. The Learning Tree,8128 S. Kedzie ,,7788802,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +951,1.0,455,CPS_Early_Childhood_Portal_scrape.csv, New Pisgah Day Care Center,8128 S. Racine Ave. ,,8735392,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +238,0.99999994,456,CPS_Early_Childhood_Portal_scrape.csv," Terry Town Nursery School, Inc.",817 N. Hamlin ,,4894271,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +952,1.0,457,CPS_Early_Childhood_Portal_scrape.csv, Chipper Preschool,8225-29 S. Kedzie ,,7785757,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +953,1.0,458,CPS_Early_Childhood_Portal_scrape.csv, Archdiocese of Chicago - St. Michael,8231 S. Shore Drive ,,2210212,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +954,1.0,459,CPS_Early_Childhood_Portal_scrape.csv, Pinks Child Care Academy,8236 S. Kedzie ,,8637465,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +145,0.9999998884899203,460,CPS_Early_Childhood_Portal_scrape.csv, South Central Holistic PreK Program,8316 S. Ellis ,,4830900,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +239,0.9999999513330113,461,CPS_Early_Childhood_Portal_scrape.csv, South Harper Montessori School,8358 S. Stony Island ,,7340303,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +955,1.0,462,CPS_Early_Childhood_Portal_scrape.csv, Bethune Educational Center,843 W. 103rd Street ,,2336100,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +147,0.999999926999517,463,CPS_Early_Childhood_Portal_scrape.csv, Christopher House Lakeshore,850 W. Eastwood ,,2719403,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +956,1.0,464,CPS_Early_Childhood_Portal_scrape.csv, Institute for Creative Learning,8515 S. Stony Island ,,7686688,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +149,0.9999998807907104,465,CPS_Early_Childhood_Portal_scrape.csv, Dorothy Sutton Branch Headstart and Daycare,8601 S. State St. ,,7234445,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +240,0.99999994,466,CPS_Early_Childhood_Portal_scrape.csv, McCann?s Daycare Center,8612 S. Stony Island ,,3757932,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +957,1.0,467,CPS_Early_Childhood_Portal_scrape.csv, Little Elite Academy,8748 S. Aberdeen ,,4487990,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +958,1.0,468,CPS_Early_Childhood_Portal_scrape.csv, Tots Express Learning Center,8938-40 S. Cottage Grove ,,7238687,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +959,1.0,469,CPS_Early_Childhood_Portal_scrape.csv, Children's Village Day Care and Kindergarten,9011 S. Cottage Grove ,,8731700,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +241,1.0,470,CPS_Early_Childhood_Portal_scrape.csv, Chesterfield Tom Thumb Day Care 2,9214 S. Cottage Grove ,,8743985,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +153,0.9999999403953552,471,CPS_Early_Childhood_Portal_scrape.csv, Centers for New Horizons Altgeld Gardens I,941 E. 132nd Street ,,4683055,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +242,0.9999999513330113,472,CPS_Early_Childhood_Portal_scrape.csv, Salvation Army Red Shield,945 W. 69th St. ,,3583224,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +243,0.9999998807907104,473,CPS_Early_Childhood_Portal_scrape.csv, Woodlawn Early Childhood Development,950 E. 61st Street ,,6673300,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +244,1.0,474,CPS_Early_Childhood_Portal_scrape.csv, Chicago State University,9501 S. DR MARTIN LUTHER KING JR Drive ,,9952556,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +154,0.9999999403953552,475,CPS_Early_Childhood_Portal_scrape.csv, Chicago Youth Centers Dorothy Gautreaux,975 E. 132nd Street ,,2911000,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +960,1.0,476,CPS_Early_Childhood_Portal_scrape.csv, Archdiocese of Chicago - St. Margaret of Scottland,9833 S. Throop St. ,,2381088,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +245,0.9999999,477,CPS_Early_Childhood_Portal_scrape.csv, Carole Robertson Center For Learning - Maribella Rodriguez,1012 N Kedvale Ave ,,,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +5,0.9999999403953552,478,CPS_Early_Childhood_Portal_scrape.csv, Hull House Association - Child Dev. Central Office- Hull House CDS-Homes,1030 W Van Buren St ,,9068600,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +5,0.9999999403953552,479,CPS_Early_Childhood_Portal_scrape.csv, Hull House Association - Child Dev. Central Office- Hull House CDS-Homes,1030 W Van Buren St ,,9068600,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +16,0.9999999338745837,480,CPS_Early_Childhood_Portal_scrape.csv, Marcy Newberry Association - FOSCO ABLA Center,1312 S Racine Ave ,,7466024,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +16,0.9999999338745837,481,CPS_Early_Childhood_Portal_scrape.csv, Marcy Newberry Association - FOSCO ABLA Center,1312 S Racine Ave ,,7466024,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +26,0.9999999211504664,482,CPS_Early_Childhood_Portal_scrape.csv, Chicago Commons Association - Taylor Center for New Experiences,1633 N Hamlin Ave ,,2278551,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +29,0.9999999403953552,483,CPS_Early_Childhood_Portal_scrape.csv, Erie Neighborhood House - Erie Community Center,1701 W Superior St ,,5635800,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +31,0.9999998146816282,484,CPS_Early_Childhood_Portal_scrape.csv, ChildServ - Pilsen,1711 W Garfield Blvd ,,,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +40,0.9999999403953552,485,CPS_Early_Childhood_Portal_scrape.csv, North Avenue Day Nursery - North Avenue Day Nursery,2001 W Pierce Ave ,,3424499,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +246,0.9999998,486,CPS_Early_Childhood_Portal_scrape.csv, Carole Robertson Center For Learning - Delondia Robinson,2252 S Central Park Ave ,,,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +44,0.9999999200319775,487,CPS_Early_Childhood_Portal_scrape.csv, El Hogar del Nino/Cuidar - El Hogar del Nino/Cuidar- California,2325 S California Ave ,,5231629,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +44,0.9999999200319775,488,CPS_Early_Childhood_Portal_scrape.csv, El Hogar del Nino/Cuidar - El Hogar del Nino/Cuidar- California,2325 S California Ave ,,5231629,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +54,0.9999999403953552,489,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - Rauner,2700 S Western Ave ,,8473115,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +54,0.9999999403953552,490,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - Rauner,2700 S Western Ave ,,8473115,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +247,0.9999999,491,CPS_Early_Childhood_Portal_scrape.csv, Carole Robertson Center For Learning - Aurora Nunez,2701 W 18th St ,,,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +61,0.9999999403953552,492,CPS_Early_Childhood_Portal_scrape.csv, Carole Robertson Center For Learning - Carole Robertson Center 2929,2929 W 19th St ,,5211600,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +61,0.9999999403953552,493,CPS_Early_Childhood_Portal_scrape.csv, Carole Robertson Center For Learning - Carole Robertson Center 2929,2929 W 19th St ,,5211600,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +961,1.0,494,CPS_Early_Childhood_Portal_scrape.csv, Carole Robertson Center For Learning - Sharon James,311 N Waller Ave ,,,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +68,0.9999999483808635,495,CPS_Early_Childhood_Portal_scrape.csv, ChildServ - FSS of Lawndale,3210 W Arthington St ,,8677370,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +68,0.9999999483808635,496,CPS_Early_Childhood_Portal_scrape.csv, ChildServ - FSS of Lawndale,3210 W Arthington St ,,8677370,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +248,1.0,497,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - YMCA - Marshall High School,3250 W Adams St ,,2650022,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +77,0.9999999403953552,498,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - North Lawndale YMCA,3449 W Arthington St ,,6380773,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +77,0.9999999403953552,499,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - North Lawndale YMCA,3449 W Arthington St ,,6380773,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +202,0.9999999057567817,500,CPS_Early_Childhood_Portal_scrape.csv, Easter Seals Society of Metropolitan Chicago - Near South Side,3630 S Wells Ave ,,5483614,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +81,0.9999999451717012,501,CPS_Early_Childhood_Portal_scrape.csv, Carole Robertson Center For Learning - Carole Robertson Center- Ogden 3701,3701 W Ogden Ave ,,5228400,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +81,0.9999999451717012,502,CPS_Early_Childhood_Portal_scrape.csv, Carole Robertson Center For Learning - Carole Robertson Center- Ogden 3701,3701 W Ogden Ave ,,5228400,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +84,0.9999998807907104,503,CPS_Early_Childhood_Portal_scrape.csv, Easter Seals Society of Metropolitan Chicago - It Takes a Village,4000 W Division St ,,,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +962,1.0,504,CPS_Early_Childhood_Portal_scrape.csv, El Hogar del Nino/Cuidar - Maria Freeman,4312 S CALIFORNIA AVE ,,,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +963,1.0,505,CPS_Early_Childhood_Portal_scrape.csv, YWCA of Metropolitan Chicago - Debra Phillips,5116 S Prairie AVE ,,,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +113,0.9999998611253804,506,CPS_Early_Childhood_Portal_scrape.csv, Onward Neighborhood House - Belmont-Cragin,5423 W Diversey ,,,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +131,0.9999999403953552,507,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - Garfield Head Start/Child Developmental Center- YMCA,7 N Homan Ave ,,2653900,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +249,0.9999999578531515,508,CPS_Early_Childhood_Portal_scrape.csv, Salvation Army - EHS Family Child Homes,845 W 69th St ,,3824700,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +0,0.9999999311744846,509,CPS_Early_Childhood_Portal_scrape.csv, Salvation Army - Temple / Salvation Army,1 N Ogden Ave ,,2262649,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +0,0.9999999311744846,510,CPS_Early_Childhood_Portal_scrape.csv, Salvation Army - Temple / Salvation Army,1 N Ogden Ave ,,2262649,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1,0.999999926999517,511,CPS_Early_Childhood_Portal_scrape.csv, National Louis University - Dr. Effie O. Ellis Training Center,10 S Kedzie Ave ,,5339011,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1,0.999999926999517,512,CPS_Early_Childhood_Portal_scrape.csv, National Louis University - Dr. Effie O. Ellis Training Center,10 S Kedzie Ave ,,5339011,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +2,0.9999999538304407,513,CPS_Early_Childhood_Portal_scrape.csv, Board Trustees-City Colleges of Chicago - Olive-Harvey College,10001 S Woodlawn Ave ,,2916100,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +2,0.9999999538304407,514,CPS_Early_Childhood_Portal_scrape.csv, Board Trustees-City Colleges of Chicago - Olive-Harvey College,10001 S Woodlawn Ave ,,2916100,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +3,0.9999999501311764,515,CPS_Early_Childhood_Portal_scrape.csv, Easter Seals Society of Metropolitan Chicago - Gilchrist-Marchman,1001 W Roosevelt Rd ,,9395115,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +3,0.9999999501311764,516,CPS_Early_Childhood_Portal_scrape.csv, Easter Seals Society of Metropolitan Chicago - Gilchrist-Marchman,1001 W Roosevelt Rd ,,9395115,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +964,1.0,517,CPS_Early_Childhood_Portal_scrape.csv, Jenner,1009 N. Cleveland ,,5348440,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +250,0.99999994,518,CPS_Early_Childhood_Portal_scrape.csv, Revere,1010 E. 72nd St. ,,5350618,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +251,0.99999994,519,CPS_Early_Childhood_Portal_scrape.csv, Hay,1018 N. Laramie ,,5346000,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +4,0.9999999513330113,520,CPS_Early_Childhood_Portal_scrape.csv, Hull House Association - Uptown Head Start / Hull House,1020 W Bryn Mawr Ave ,,7695753,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +252,0.99999994,521,CPS_Early_Childhood_Portal_scrape.csv, Piccolo,1040 N. Keeler ,,5344425,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +253,0.99999994,522,CPS_Early_Childhood_Portal_scrape.csv, Kohn,10414 S. State St. ,,5355489,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +6,0.9999999211504664,523,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - St. Kevin,10509 S Torrence Ave ,,3746466,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +6,0.9999999211504664,524,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - St. Kevin,10509 S Torrence Ave ,,3746466,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +254,0.9999999655872422,525,CPS_Early_Childhood_Portal_scrape.csv, Ada S. McKinley Community Services - McKinley - Trumbull Park,10530 S Oglesby ,,3757022,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +255,0.9999999403953552,526,CPS_Early_Childhood_Portal_scrape.csv, Community Learning Center - Community Learning Center,10612 S Wentworth Ave ,,9284104,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +965,1.0,527,CPS_Early_Childhood_Portal_scrape.csv, Hull House Association - New Age,10951 S Michigan Ave ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +9,0.9999999403953552,528,CPS_Early_Childhood_Portal_scrape.csv, Bethel New Life - Molade Child Development Center,1120 N Lamon Ave ,,6267760,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +256,0.9999999403953552,529,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Hippity Hop Tiny Tots,11223 S Halsted St ,,7853340,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +966,1.0,530,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Humpty Dumpty,1126 W 99th ST ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +257,0.9999999403953552,531,CPS_Early_Childhood_Portal_scrape.csv, Chicago Youth Centers - Lotts of Love,1139 W 79th St ,,8744954,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +11,0.9999999403953552,532,CPS_Early_Childhood_Portal_scrape.csv, Ada S. McKinley Community Services - McKinley - Roseland,11410 S Edbrooke Ave ,,4681918,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +11,0.9999999403953552,533,CPS_Early_Childhood_Portal_scrape.csv, Ada S. McKinley Community Services - McKinley - Roseland,11410 S Edbrooke Ave ,,4681918,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +258,0.99999994,534,CPS_Early_Childhood_Portal_scrape.csv," Haley, Alex",11411 S. Eggleston ,,5355340,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +12,0.9999999655872422,535,CPS_Early_Childhood_Portal_scrape.csv, Board Trustees-City Colleges of Chicago - Truman,1145 W Wilson Ave ,,8781700,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +259,1.0,536,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Accounters/Partners,1155 W 81st St ,,9945514,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +13,0.9999999403953552,537,CPS_Early_Childhood_Portal_scrape.csv, Chicago State University - Gingerbread House,11640 S Wentworth Ave ,,9284041,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +13,0.9999999403953552,538,CPS_Early_Childhood_Portal_scrape.csv, Chicago State University - Gingerbread House,11640 S Wentworth Ave ,,9284041,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +260,0.99999994,539,CPS_Early_Childhood_Portal_scrape.csv, Higgins,11710 S. Morgan ,,5355625,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +261,0.99999994,540,CPS_Early_Childhood_Portal_scrape.csv, Songhai,11725 S. Perry ,,5355547,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +262,0.99999994,541,CPS_Early_Childhood_Portal_scrape.csv, Cameron,1234 N. Monticello ,,5344290,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +14,0.9999999538304407,542,CPS_Early_Childhood_Portal_scrape.csv, Chicago State University - Academy of Early Education,124 E 113th St ,,7858163,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +14,0.9999999538304407,543,CPS_Early_Childhood_Portal_scrape.csv, Chicago State University - Academy of Early Education,124 E 113th St ,,7858163,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +263,0.99999994,544,CPS_Early_Childhood_Portal_scrape.csv, Perez,1241 W. 19Th St. ,,5347650,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +967,1.0,545,CPS_Early_Childhood_Portal_scrape.csv, Carpenter,1250 W. Erie ,,5347385,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +264,0.99999994,546,CPS_Early_Childhood_Portal_scrape.csv," Brown Academy, R.",12607 S. Union ,,5355385,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +15,0.99999994,547,CPS_Early_Childhood_Portal_scrape.csv, Easter Seals Society of Metropolitan Chicago - Stepping Stones Early/Childhood Lear,1300 E 75th St ,,4930000,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +16,0.9999999338745837,548,CPS_Early_Childhood_Portal_scrape.csv, Marcy Newberry Association - FOSCO ABLA Center,1312 S Racine Ave ,,7466024,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +16,0.9999999338745837,549,CPS_Early_Childhood_Portal_scrape.csv, Marcy Newberry Association - FOSCO ABLA Center,1312 S Racine Ave ,,7466024,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +265,0.9999999403953552,550,CPS_Early_Childhood_Portal_scrape.csv," Henry Booth House - Kids Place II, Inc",1318 W 95th St ,,4456500,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +266,0.9999999403953552,551,CPS_Early_Childhood_Portal_scrape.csv, Henson,1326 S. Avers Ave ,,5341804,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +266,0.9999999403953552,552,CPS_Early_Childhood_Portal_scrape.csv, Henson,1326 S. Avers Ave ,,5341804,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +968,1.0,553,CPS_Early_Childhood_Portal_scrape.csv, Medill Inter,1326 W. 14Th Pl. ,,5347760,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +267,0.9999999,554,CPS_Early_Childhood_Portal_scrape.csv, St. Augustine College - St. Augustine - Main Campus,1333 W Argyle St ,,8783231,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +969,1.0,555,CPS_Early_Childhood_Portal_scrape.csv, Altgeld,1340 W. 71St ,,5353250,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +17,0.9999999403953552,556,CPS_Early_Childhood_Portal_scrape.csv, Salvation Army - Incarnation / Salvation Army,1345 N Karlov Ave ,,2764118,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +18,0.9999999403953552,557,CPS_Early_Childhood_Portal_scrape.csv, Abraham Lincoln Centre - Hope Presbyterian Church,1354 W 61st St ,,4715100,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +268,0.99999994,558,CPS_Early_Childhood_Portal_scrape.csv, Lavizzo,138 W. 109Th St ,,5355300,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +174,0.9999999403953552,559,CPS_Early_Childhood_Portal_scrape.csv, Northwestern University Settlement House - Northwestern University Settlement House,1400 W Augusta Blvd ,,2787471,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +156,0.9999999403953552,560,CPS_Early_Childhood_Portal_scrape.csv, Herzl CPC,1401 S. Hamlin ,,5341751,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +156,0.9999999403953552,561,CPS_Early_Childhood_Portal_scrape.csv, Herzl CPC,1401 S. Hamlin ,,5341751,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +269,0.9999998807907104,562,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Taylor Day School,1414 W 87th St ,,2392322,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +270,0.99999994,563,CPS_Early_Childhood_Portal_scrape.csv, McDowell,1419 E. 89Th ,,5356404,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +271,0.9999999403953552,564,CPS_Early_Childhood_Portal_scrape.csv, Pilsen,1420 W. 17Th St. ,,5347675,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +271,0.9999999403953552,565,CPS_Early_Childhood_Portal_scrape.csv, Pilsen,1420 W. 17Th St. ,,5347675,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +272,0.99999994,566,CPS_Early_Childhood_Portal_scrape.csv, Lozano Bilingual,1424 N. Cleaver ,,5344150,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +273,0.99999994,567,CPS_Early_Childhood_Portal_scrape.csv, Young,1434 N. Parkside ,,5346200,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +970,1.0,568,CPS_Early_Childhood_Portal_scrape.csv, Lathrop,1440 S. Christiana ,,5341812,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +274,0.99999994,569,CPS_Early_Childhood_Portal_scrape.csv, Peabody,1444 W. Augusta ,,5344170,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +19,0.9999999178406671,570,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - Our Lady of Lourdes,1449 S Keeler Ave ,,5213126,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +19,0.9999999178406671,571,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - Our Lady of Lourdes,1449 S Keeler Ave ,,5213126,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +20,0.9999999311744846,572,CPS_Early_Childhood_Portal_scrape.csv, Lutheran Social Services of Illinois - North Austin / LSSI,1500 N Mason Ave ,,2371930,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +21,0.99999994,573,CPS_Early_Childhood_Portal_scrape.csv, Marcy Newberry Association - New Birth,1500 W 69th St ,,4710699,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +22,0.999999915706303,574,CPS_Early_Childhood_Portal_scrape.csv, Chicago Youth Centers - Mt. Moriah-Taylor / CYC,1501 N Harding Ave ,,2785837,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +971,1.0,575,CPS_Early_Childhood_Portal_scrape.csv, Johnson,1504 S. Albany ,,5341833,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +275,0.9999998807907104,576,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Lakeview Development Center,1531 W Lawrence Ave ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +23,0.9999999403953552,577,CPS_Early_Childhood_Portal_scrape.csv, Marcy Newberry Association - Marcy Center,1539 S Springfield Ave ,,7612300,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +23,0.9999999403953552,578,CPS_Early_Childhood_Portal_scrape.csv, Marcy Newberry Association - Marcy Center,1539 S Springfield Ave ,,7612300,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +24,0.9999999002623526,579,CPS_Early_Childhood_Portal_scrape.csv, Mary Crane League - Mary Crane - Morse,1545 W Morse Ave ,,2621390,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +972,1.0,580,CPS_Early_Childhood_Portal_scrape.csv, Penn,1616 S. Avers ,,5341665,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +276,0.9999999403953552,581,CPS_Early_Childhood_Portal_scrape.csv, Cooper,1624 W. 19Th St. ,,5347205,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +276,0.9999999403953552,582,CPS_Early_Childhood_Portal_scrape.csv, Cooper,1624 W. 19Th St. ,,5347205,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +25,0.9999999057567817,583,CPS_Early_Childhood_Portal_scrape.csv, South Shore Bible - Maranatha,1631 E 71st St ,,4937500,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +277,0.99999994,584,CPS_Early_Childhood_Portal_scrape.csv, Gale,1631 W. Jonquil Tr. ,,5342100,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +26,0.9999999211504664,585,CPS_Early_Childhood_Portal_scrape.csv, Chicago Commons Association - Taylor Center for New Experiences,1633 N Hamlin Ave ,,2278551,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +973,1.0,586,CPS_Early_Childhood_Portal_scrape.csv, Easter Seals Society of Metropolitan Chicago - Kimball Day Care,1636 N Kimball Ave ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +27,0.9999999057567817,587,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - Ebenezer,1652 W Foster Ave ,,8789925,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +28,0.9999999609796005,588,CPS_Early_Childhood_Portal_scrape.csv, Chicago Commons Association - Paulo Freire,1653 W 43rd St ,,8262669,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +29,0.9999999403953552,589,CPS_Early_Childhood_Portal_scrape.csv, Erie Neighborhood House - Erie Community Center,1701 W Superior St ,,5635800,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +278,0.99999994,590,CPS_Early_Childhood_Portal_scrape.csv, New Field,1707 W. Morse ,,5342760,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +30,0.9999999403953552,591,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Little Tykes I,1711 W 35th St ,,2547700,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +30,0.9999999403953552,592,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Little Tykes I,1711 W 35th St ,,2547700,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +32,0.9999999598145567,593,CPS_Early_Childhood_Portal_scrape.csv, El Hogar del Nino/Cuidar - El Hogar del Nino/El Centro - Loomis,1718 S Loomis Blvd ,,5639796,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +32,0.9999999598145567,594,CPS_Early_Childhood_Portal_scrape.csv, El Hogar del Nino/Cuidar - El Hogar del Nino/El Centro - Loomis,1718 S Loomis Blvd ,,5639796,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +33,0.9999999403953552,595,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Little Tykes II,1723 W 35th St ,,5791791,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +33,0.9999999403953552,596,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Little Tykes II,1723 W 35th St ,,5791791,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +34,0.9999998884899203,597,CPS_Early_Childhood_Portal_scrape.csv, Church of God True Believers - Church of God Day Care,1738 W Marquette Rd ,,4715222,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +279,0.99999994,598,CPS_Early_Childhood_Portal_scrape.csv, Jungman,1746 S. Miller ,,5347375,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +35,0.9999999578531515,599,CPS_Early_Childhood_Portal_scrape.csv, Lutheran Social Services of Illinois - Rogers Park / LSSI,1754 W Devon Ave ,,2623366,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +36,0.999999926999517,600,CPS_Early_Childhood_Portal_scrape.csv, Chicago Commons Association - Guadalupano Family Center,1814 S Paulina St ,,6663883,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +36,0.999999926999517,601,CPS_Early_Childhood_Portal_scrape.csv, Chicago Commons Association - Guadalupano Family Center,1814 S Paulina St ,,6663883,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +37,0.9999999403953552,602,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - McCormick Tribune- YMCA,1834 N Lawndale Ave ,,2352525,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +280,0.9999999403953552,603,CPS_Early_Childhood_Portal_scrape.csv, Yates,1839 N. Richmond ,,5344550,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +281,0.9999999403953552,604,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Wee Care Nursery and Kindergarden,1845 E 79th St ,,2214442,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +282,0.99999994,605,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Nico's,1855 W 95th St ,,2380117,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +974,1.0,606,CPS_Early_Childhood_Portal_scrape.csv, Esmond,1865 W. Montvale ,,5352650,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +38,0.9999999538304407,607,CPS_Early_Childhood_Portal_scrape.csv, Board Trustees-City Colleges of Chicago - Malcolm X College,1900 W Van Buren St ,,8507000,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +38,0.9999999538304407,608,CPS_Early_Childhood_Portal_scrape.csv, Board Trustees-City Colleges of Chicago - Malcolm X College,1900 W Van Buren St ,,8507000,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +283,0.99999994,609,CPS_Early_Childhood_Portal_scrape.csv, Whittier,1900 W. 23rd St. ,,5354590,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +284,0.9999998807907104,610,CPS_Early_Childhood_Portal_scrape.csv, Lutheran Social Services of Illinois - Englewood Messiah,1910 W 64th ST ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +975,1.0,611,CPS_Early_Childhood_Portal_scrape.csv, Ada S. McKinley Community Services - Vereva,1935 W 51st St ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +976,1.0,612,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Kiddie Kottage,1946 W 87th St ,,2337292,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +39,0.9999999287588233,613,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Guadalupe Reyes Children & Family Center,1951 W 19th St ,,9972021,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +39,0.9999999287588233,614,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Guadalupe Reyes Children & Family Center,1951 W 19th St ,,9972021,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +285,0.9999999403953552,615,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Loop,2001 S Michigan Ave ,,2258828,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +40,0.9999999403953552,616,CPS_Early_Childhood_Portal_scrape.csv, North Avenue Day Nursery - North Avenue Day Nursery,2001 W Pierce Ave ,,3424499,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +41,0.9999999483808635,617,CPS_Early_Childhood_Portal_scrape.csv, Carole Robertson Center For Learning - Carole Robertson Center CTR 2020,2020 W Roosevelt Rd ,,2437300,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +41,0.9999999483808635,618,CPS_Early_Childhood_Portal_scrape.csv, Carole Robertson Center For Learning - Carole Robertson Center CTR 2020,2020 W Roosevelt Rd ,,2437300,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +286,0.99999994,619,CPS_Early_Childhood_Portal_scrape.csv, Chase,2021 N. Point St. ,,5344185,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +287,0.99999994,620,CPS_Early_Childhood_Portal_scrape.csv, Lloyd,2103 N. Lamon ,,5343070,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +288,0.99999994,621,CPS_Early_Childhood_Portal_scrape.csv, Herbert,2131 W. Monroe ,,5347806,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +289,0.99999994,622,CPS_Early_Childhood_Portal_scrape.csv, Spencer,214 N. Lavergne ,,5346150,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +290,0.9999999513330113,623,CPS_Early_Childhood_Portal_scrape.csv, First Church of Love And Faith - First Church of Love & Faith Church,2140 W 79th St ,,8739155,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +42,0.9999999501311764,624,CPS_Early_Childhood_Portal_scrape.csv, Chinese American Service League - Chinese American Service League,2141 S Tan Ct ,,7910418,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +42,0.9999999501311764,625,CPS_Early_Childhood_Portal_scrape.csv, Chinese American Service League - Chinese American Service League,2141 S Tan Ct ,,7910418,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +43,0.9999999578531515,626,CPS_Early_Childhood_Portal_scrape.csv, First Church of Love And Faith - First Church of Love & Faith Annex,2141 W 79th St ,,2246800,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +977,1.0,627,CPS_Early_Childhood_Portal_scrape.csv, Paderewski,2221 S. Lawndale ,,5341821,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +978,1.0,628,CPS_Early_Childhood_Portal_scrape.csv, Ellington,224 N. Central ,,5346361,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +979,1.0,629,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Love Learning Center,228 E 61st St ,,7520243,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +291,0.99999994,630,CPS_Early_Childhood_Portal_scrape.csv, Claremont,2300 W. 64th St ,,5358110,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +292,0.99999994,631,CPS_Early_Childhood_Portal_scrape.csv, Pickard,2301 W. 21st Pl. ,,5357280,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +293,0.99999994,632,CPS_Early_Childhood_Portal_scrape.csv, Dett,2306 W. Maypole ,,5347160,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +44,0.9999999200319775,633,CPS_Early_Childhood_Portal_scrape.csv, El Hogar del Nino/Cuidar - El Hogar del Nino/Cuidar- California,2325 S California Ave ,,5231629,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +44,0.9999999200319775,634,CPS_Early_Childhood_Portal_scrape.csv, El Hogar del Nino/Cuidar - El Hogar del Nino/Cuidar- California,2325 S California Ave ,,5231629,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +45,0.999999946687985,635,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Bernard Gentry,2326 S Dearborn St ,,8428557,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +45,0.999999946687985,636,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Bernard Gentry,2326 S Dearborn St ,,8428557,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +46,0.99999994,637,CPS_Early_Childhood_Portal_scrape.csv, Chicago State University - Kenyatta's Day Care,2334 E 75th ,,2213777,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +980,1.0,638,CPS_Early_Childhood_Portal_scrape.csv, Cardenas,2345 S. Millard ,,5341465,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +47,0.9999999230507345,639,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Hillard House / Henry Booth,2401 S Wabash Ave ,,7919710,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +48,0.9999999403953552,640,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - Our Lady of Tepeyac,2414 S Albany Ave ,,2775888,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +48,0.9999999403953552,641,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - Our Lady of Tepeyac,2414 S Albany Ave ,,2775888,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +49,0.9999999403953552,642,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - High Ridge YMCA,2424 W Touhy Ave ,,2628300,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +50,0.9999998718153645,643,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Carlos Cantu,2434 S Kildare Ave ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +50,0.9999998718153645,644,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Carlos Cantu,2434 S Kildare Ave ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +294,0.9999998807907104,645,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Wee Wee Center for Creative,2434 W 71st St ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +295,0.99999994,646,CPS_Early_Childhood_Portal_scrape.csv, Chopin,2450 W. Rice ,,5344080,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +296,0.99999994,647,CPS_Early_Childhood_Portal_scrape.csv, Mayo,249 E. 37Th ,,5351260,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +981,1.0,648,CPS_Early_Childhood_Portal_scrape.csv, Beethoven,25 W. 47Th St. ,,5351480,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +51,0.9999999403953552,649,CPS_Early_Childhood_Portal_scrape.csv, Christopher House - Christopher House - Greenview,2507 N Greenview Ave ,,4721083,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +297,0.9999999403953552,650,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Color For Tots,2550 E 73rd St ,,3638687,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +52,0.9999999115920247,651,CPS_Early_Childhood_Portal_scrape.csv, Christopher House - Christopher House - Logan Square,2610 N Francisco Ave ,,2354073,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +53,0.9999999403953552,652,CPS_Early_Childhood_Portal_scrape.csv, St. Augustine College - St. Augustine - Nayarit,2610 W 25th Pl ,,8783641,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +53,0.9999999403953552,653,CPS_Early_Childhood_Portal_scrape.csv, St. Augustine College - St. Augustine - Nayarit,2610 W 25th Pl ,,8783641,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +982,1.0,654,CPS_Early_Childhood_Portal_scrape.csv, Von Humboldt,2620 W. Hirsch St. ,,5344480,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +298,0.9999998807907104,655,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Teddy Bear 1 51st Street,2649 W 51st St ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +299,0.99999994,656,CPS_Early_Childhood_Portal_scrape.csv, Dodge,2651 W. Washington ,,5346640,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +192,0.9999999196291134,657,CPS_Early_Childhood_Portal_scrape.csv, Gads Hill Center - Sinai Community/Ogden,2653 W Ogden Ave ,,5211196,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +192,0.9999999196291134,658,CPS_Early_Childhood_Portal_scrape.csv, Gads Hill Center - Sinai Community/Ogden,2653 W Ogden Ave ,,5211196,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +54,0.9999999403953552,659,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - Rauner,2700 S Western Ave ,,8473115,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +54,0.9999999403953552,660,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - Rauner,2700 S Western Ave ,,8473115,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +300,1.0,661,CPS_Early_Childhood_Portal_scrape.csv, Williams,2710 S.Dearborn ,,5349245,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +301,0.9999999403953552,662,CPS_Early_Childhood_Portal_scrape.csv, Lafayette,2714 W. Augusta Blvd. ,,5344326,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +55,0.9999999,663,CPS_Early_Childhood_Portal_scrape.csv, Easter Seals Society of Metropolitan Chicago - The Keeper's Inst.,2718 W 59th St ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +302,0.9999998807907104,664,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Hegewisch,2725 E 130th ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +303,0.99999994,665,CPS_Early_Childhood_Portal_scrape.csv, Zapata,2728 S. Kostner ,,5341390,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +56,0.9999999403953552,666,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Centro Infantil(Puerto Rican Comm),2739 W Division St ,,3428866,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +304,0.99999994,667,CPS_Early_Childhood_Portal_scrape.csv, Chalmers,2745 W. Roosevelt Rd. ,,5341720,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +983,1.0,668,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Whiz Kidz Learning Center,2814 W Marquette Rd ,,9252859,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +57,0.9999999294748332,669,CPS_Early_Childhood_Portal_scrape.csv, Mary Crane League - Mary Crane - West,2820 N Leavitt St ,,3485528,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +984,1.0,670,CPS_Early_Childhood_Portal_scrape.csv, Onward Neighborhood House - Cozy Corner,2820 W North Ave ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +305,0.99999994,671,CPS_Early_Childhood_Portal_scrape.csv, Saucedo,2850 W. 24Th St. ,,5341770,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +306,0.99999994,672,CPS_Early_Childhood_Portal_scrape.csv, Cather,2908 W. Washington ,,5346780,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +307,1.0,673,CPS_Early_Childhood_Portal_scrape.csv, Lutheran Social Services of Illinois - Trinidad / LSSI,2921 W Division St ,,2789332,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +60,0.999999915706303,674,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Near South / Henry Booth,2929 S Wabash Ave ,,7910424,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +61,0.9999999403953552,675,CPS_Early_Childhood_Portal_scrape.csv, Carole Robertson Center For Learning - Carole Robertson Center 2929,2929 W 19th St ,,5211600,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +61,0.9999999403953552,676,CPS_Early_Childhood_Portal_scrape.csv, Carole Robertson Center For Learning - Carole Robertson Center 2929,2929 W 19th St ,,5211600,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +62,0.9999999403953552,677,CPS_Early_Childhood_Portal_scrape.csv, Boys and Girls Clubs of Chicago - R.E. Woods,2950 W 25th St ,,8475172,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +62,0.9999999403953552,678,CPS_Early_Childhood_Portal_scrape.csv, Boys and Girls Clubs of Chicago - R.E. Woods,2950 W 25th St ,,8475172,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +985,1.0,679,CPS_Early_Childhood_Portal_scrape.csv, Schneider,2957 N. Hoyne ,,5345510,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +63,0.9999999089524012,680,CPS_Early_Childhood_Portal_scrape.csv, Mary Crane League - Mary Crane - East,2974 N Clybourn Ave ,,3485528,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +308,0.9999999578531515,681,CPS_Early_Childhood_Portal_scrape.csv, Cockrell,30 E. 61St ,,5350798,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +309,0.9999999057567817,682,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - Chicago Lawn,3001 W 59th St ,,9251085,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +310,0.9999999403953552,683,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Little Leaders of Tomorrow,301 N Mayfield Ave ,,3788302,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +986,1.0,684,CPS_Early_Childhood_Portal_scrape.csv, Chicago Youth Centers - Shining Star,3012 E 92nd St ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +311,0.99999994,685,CPS_Early_Childhood_Portal_scrape.csv, Bethune,3030 W. Arthington ,,5346890,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +64,0.9999999403953552,686,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Young Scholars Dev. Ins,3038 W 59th St ,,9181944,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +65,0.9999999403953552,687,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - South Chicago YMCA,3039 E 91st St ,,7219100,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +66,0.9999999246054253,688,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Rey Gonzalez Children & Family Center,3050 E 92nd St ,,7219311,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +312,0.99999994,689,CPS_Early_Childhood_Portal_scrape.csv, Beidler,3151 W. Walnut ,,5346811,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +67,0.9999999057567817,690,CPS_Early_Childhood_Portal_scrape.csv, Bethel New Life - Lake and Pulaski,316 N Pulaski Rd ,,2653830,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +313,0.99999994,691,CPS_Early_Childhood_Portal_scrape.csv, Curtis,32 E. 115Th St. ,,5355050,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +69,0.9999999483808635,692,CPS_Early_Childhood_Portal_scrape.csv, Metropolitan Family Services - Midway Children's Center (Chicago Lawn),3215 W 63rd St ,,8842350,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +314,0.9999999403953552,693,CPS_Early_Childhood_Portal_scrape.csv, Linne,3221 N. Sacramento ,,5345262,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +70,0.9999999246054253,694,CPS_Early_Childhood_Portal_scrape.csv, Chicago Youth Centers - Centro Nuestro / CYC,3222 W Division Ave ,,4893157,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +71,0.999999915706303,695,CPS_Early_Childhood_Portal_scrape.csv, Metropolitan Family Services - North Children's Center,3249 N Central Ave ,,3713700,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +72,0.9999999002623526,696,CPS_Early_Childhood_Portal_scrape.csv, Christopher House - Christoper House - Logan Square,3255 W Altgeld St ,,2354073,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +73,0.9999999538304407,697,CPS_Early_Childhood_Portal_scrape.csv, Chicago State University - Professional Playhouse,338 E 103rd ,,5680728,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +73,0.9999999538304407,698,CPS_Early_Childhood_Portal_scrape.csv, Chicago State University - Professional Playhouse,338 E 103rd ,,5680728,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +75,0.9999999115920247,699,CPS_Early_Childhood_Portal_scrape.csv, St. Augustine College - St. Augustine - Flamboyan,3401 W McLean Ave ,,2763423,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +987,1.0,700,CPS_Early_Childhood_Portal_scrape.csv, Easter Seals Society of Metropolitan Chicago - Fifth City,3411 W Fifth Ave ,,8268686,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +315,0.99999994,701,CPS_Early_Childhood_Portal_scrape.csv, Edgewater Community Council - A B C Center / CYC,3415 W 13th Pl ,,7625655,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +315,0.99999994,702,CPS_Early_Childhood_Portal_scrape.csv, Edgewater Community Council - A B C Center / CYC,3415 W 13th Pl ,,7625655,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +988,1.0,703,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Pathway,3418 W 79th St ,,7765439,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +316,0.9999998807907104,704,CPS_Early_Childhood_Portal_scrape.csv, Chicago Youth Centers - Rachel's Learning Center #1,3430 W Roosevelt Rd ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +989,1.0,705,CPS_Early_Childhood_Portal_scrape.csv, Stowe,3444 W. Wabansia ,,5344175,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +77,0.9999999403953552,706,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - North Lawndale YMCA,3449 W Arthington St ,,6380773,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +77,0.9999999403953552,707,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - North Lawndale YMCA,3449 W Arthington St ,,6380773,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +317,0.9999998807907104,708,CPS_Early_Childhood_Portal_scrape.csv, Chicago Youth Centers - Pathway To Learning,3460 W 79th St ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +78,0.9999998807907104,709,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Teddy Bear 2 Columbus,3473 W Columbus ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +318,0.9999999403953552,710,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - Logan Square - First Lutheran YMCA,3500 W Fullerton Ave ,,8625960,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +319,0.99999994,711,CPS_Early_Childhood_Portal_scrape.csv, Lawndale,3500 W. Douglas ,,5341635,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +320,0.99999994,712,CPS_Early_Childhood_Portal_scrape.csv, McClellan,3527 S. Wallace ,,5351732,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +79,0.9999999403953552,713,CPS_Early_Childhood_Portal_scrape.csv, Centers For New Horizons - Ida B. Wells Learning Center,3601 S Rhodes St ,,3733640,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +321,0.99999994,714,CPS_Early_Childhood_Portal_scrape.csv, Dvorak,3615 W. 16Th St. ,,5341690,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +990,1.0,715,CPS_Early_Childhood_Portal_scrape.csv, V.F. Thomas Early Childhood Center,3625 S. Hoyne Ave ,,5354088,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +202,0.9999999057567817,716,CPS_Early_Childhood_Portal_scrape.csv, Easter Seals Society of Metropolitan Chicago - Near South Side,3630 S Wells Ave ,,5483614,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +322,0.9999999403953552,717,CPS_Early_Childhood_Portal_scrape.csv, Monroe,3651 W. Schubert ,,5344155,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +80,0.9999999403953552,718,CPS_Early_Childhood_Portal_scrape.csv, Firman Community Services - Firman House West,37 W 47th St ,,3733400,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +81,0.9999999451717012,719,CPS_Early_Childhood_Portal_scrape.csv, Carole Robertson Center For Learning - Carole Robertson Center- Ogden 3701,3701 W Ogden Ave ,,5228400,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +81,0.9999999451717012,720,CPS_Early_Childhood_Portal_scrape.csv, Carole Robertson Center For Learning - Carole Robertson Center- Ogden 3701,3701 W Ogden Ave ,,5228400,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +323,0.99999994,721,CPS_Early_Childhood_Portal_scrape.csv, Gary,3740 W. 31St St. ,,5341455,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +324,0.9999998807907104,722,CPS_Early_Childhood_Portal_scrape.csv, Onward Neighborhood House - ABC Day Care,3800 N Austin Ave ,,6859033,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +82,0.999999915706303,723,CPS_Early_Childhood_Portal_scrape.csv, Ada S. McKinley Community Services - McKinley - St. Thomas,3801 S Wabash Ave ,,2850617,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +991,1.0,724,CPS_Early_Childhood_Portal_scrape.csv, Peck,3826 W. 58Th ,,5352450,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +325,0.99999994,725,CPS_Early_Childhood_Portal_scrape.csv, Hurley,3849 W. 69Th St ,,5352068,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +326,0.9999998807907104,726,CPS_Early_Childhood_Portal_scrape.csv, Easter Seals Society of Metropolitan Chicago - Little Giants,3863 W Harrison St ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +83,0.9999999538304407,727,CPS_Early_Childhood_Portal_scrape.csv, Centers For New Horizons - Edison L. Hoard Learning Center,3901 S State St ,,5362187,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +84,0.9999998807907104,728,CPS_Early_Childhood_Portal_scrape.csv, Easter Seals Society of Metropolitan Chicago - It Takes a Village,4000 W Division St ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +327,0.99999994,729,CPS_Early_Childhood_Portal_scrape.csv," Ward, Laura",410 N. Monticello ,,5346440,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +328,0.99999994,730,CPS_Early_Childhood_Portal_scrape.csv, Fuller,4214 S. St Lawrence ,,5351687,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +329,0.9999999403953552,731,CPS_Early_Childhood_Portal_scrape.csv, Mason,4217 W. 18Th St. ,,5341530,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +329,0.9999999403953552,732,CPS_Early_Childhood_Portal_scrape.csv, Mason,4217 W. 18Th St. ,,5341530,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +330,0.9999999403953552,733,CPS_Early_Childhood_Portal_scrape.csv, Bateman,4220 N. Richmond ,,5345055,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +331,0.99999994,734,CPS_Early_Childhood_Portal_scrape.csv, Robinson,4225 S. Lake Park ,,5351777,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +86,0.9999999403953552,735,CPS_Early_Childhood_Portal_scrape.csv, Salvation Army - New Hope / Salvation Army,4255 W Division St ,,7224908,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +332,0.99999994,736,CPS_Early_Childhood_Portal_scrape.csv, Goldblatt,4257 W. Adams ,,5346860,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +87,0.9999999448168219,737,CPS_Early_Childhood_Portal_scrape.csv, Korean American Community Services - Korean American Community Services,4300 N California Ave ,,5838281,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +88,0.9999998807907104,738,CPS_Early_Childhood_Portal_scrape.csv, Centers For New Horizons - Effie Ellis,4301 S Cottage Grove Ave ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +89,0.9999999057567817,739,CPS_Early_Childhood_Portal_scrape.csv, Ada S. McKinley Community Services - Maggie Drummond Day Care,4301 S Wabash Ave ,,3738200,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +333,0.99999994,740,CPS_Early_Childhood_Portal_scrape.csv, Morton,431 N. Troy ,,5346791,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +90,0.9999999403953552,741,CPS_Early_Childhood_Portal_scrape.csv, Abraham Lincoln Centre - Lincoln - King,4314 S Cottage Grove Ave ,,7472310,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +334,0.9999999403953552,742,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Jones Academy,4344 S Wentworth Ave ,,5363757,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +91,0.999999946687985,743,CPS_Early_Childhood_Portal_scrape.csv, Hull House Association - Leclaire-Ryder Day Care / Hull House,4410 S Laporte Ave ,,7675170,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +992,1.0,744,CPS_Early_Childhood_Portal_scrape.csv, McCorkle,4421 S. State St. ,,5351793,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +335,0.9999999403953552,745,CPS_Early_Childhood_Portal_scrape.csv, Stockton Br.,4425 N. Magnolia Ave ,,5342510,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +993,1.0,746,CPS_Early_Childhood_Portal_scrape.csv, Graham,4436 S. Union ,,5351308,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +92,0.9999999403953552,747,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Kiddy Kare Learning Ctr,4444 S Kedzie Ave ,,2476642,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +336,0.99999994,748,CPS_Early_Childhood_Portal_scrape.csv, Woodson South,4444 S. Evans Ave ,,5351280,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +93,0.9999999187725611,749,CPS_Early_Childhood_Portal_scrape.csv, Hull House Association - Uptown West / Hull House,4520 N Beacon St ,,5613500,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +337,0.99999994,750,CPS_Early_Childhood_Portal_scrape.csv, Columbia Explorers,4520 S. Kedzie ,,5354050,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +338,0.99999994,751,CPS_Early_Childhood_Portal_scrape.csv, Stewart,4525 N. Kenmore ,,5342640,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +94,0.999999915706303,752,CPS_Early_Childhood_Portal_scrape.csv, St. Paul Church of God - Chaney Ford Child Care Center,4526 S Wabash Ave ,,2858721,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +95,0.9999999219592011,753,CPS_Early_Childhood_Portal_scrape.csv, Chicago Youth Centers - Roseland / CYC,461 E 111th St ,,4684405,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +95,0.9999999219592011,754,CPS_Early_Childhood_Portal_scrape.csv, Chicago Youth Centers - Roseland / CYC,461 E 111th St ,,4684405,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +96,0.999999915706303,755,CPS_Early_Childhood_Portal_scrape.csv, Home of Life Community Dev. Corp. - Home of Life Just For You,4647 W Washington Blvd ,,6268655,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +97,0.999999913112046,756,CPS_Early_Childhood_Portal_scrape.csv, Home of Life Community Dev. Corp. - Home of Life Community Development,4650 W Madison St ,,6268655,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +98,0.9999999230507345,757,CPS_Early_Childhood_Portal_scrape.csv, Christopher House - Christopher House - Uptown,4701 N Winthrop Ave ,,7694540,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +339,0.9999999403953552,758,CPS_Early_Childhood_Portal_scrape.csv, McPherson,4728 N. Wolcott Ave ,,5344625,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +994,1.0,759,CPS_Early_Childhood_Portal_scrape.csv, Onward Neighborhood House - First Start Academy,4753 W Washington Blvd ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +99,0.9999999403953552,760,CPS_Early_Childhood_Portal_scrape.csv, Hull House Association - Lincoln Square / Hull House,4754 N Leavitt St ,,8788651,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +100,0.999999915706303,761,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - St. Joseph,4800 S Paulina St ,,9272524,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +340,0.99999994,762,CPS_Early_Childhood_Portal_scrape.csv, Nash,4837 W. Erie ,,5346125,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +101,0.9999999403953552,763,CPS_Early_Childhood_Portal_scrape.csv, Lutheran Social Services of Illinois - Winthrop Children's Center / LSSI,4848 N Winthrop Ave ,,8783210,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +341,0.99999994,764,CPS_Early_Childhood_Portal_scrape.csv, McCutcheon,4865 N. Sheridan Rd ,,5342680,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +342,0.9999999403953552,765,CPS_Early_Childhood_Portal_scrape.csv, Westside Holistic Family Services - Westside Holistic Family Service,4909 W Division St ,,9218777,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +102,0.9999999403953552,766,CPS_Early_Childhood_Portal_scrape.csv, Firman Community Services - Firman House East,4910 S Dr. Martin Luther King Dr ,,3732083,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +162,0.9999999403953552,767,CPS_Early_Childhood_Portal_scrape.csv, Overton CPC,4935 S. Indiana ,,5351811,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +103,0.9999999211504664,768,CPS_Early_Childhood_Portal_scrape.csv, Healing Temple - Healing Temple,4941 W Chicago Ave ,,2876964,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +104,0.9999999403953552,769,CPS_Early_Childhood_Portal_scrape.csv, Appeal for Charities and Goodwill - Appeal for Charities,50 W 71st St ,,6515400,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +211,0.999999926999517,770,CPS_Early_Childhood_Portal_scrape.csv, Hull House Association - Parkway Community Center / Hull House,500 E 67th St ,,4931306,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +105,0.9999999403953552,771,CPS_Early_Childhood_Portal_scrape.csv, Salvation Army - Columbus Park / Salvation Army,500 S Central Ave ,,9214162,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +106,0.9999999483808635,772,CPS_Early_Childhood_Portal_scrape.csv," Douglass-Tubman Youth Ministries,Inc. - Douglass-Tubman Child Development Center",5010 W Chicago Ave ,,6266581,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +107,0.9999999403953552,773,CPS_Early_Childhood_Portal_scrape.csv, Wayman Day Care Center - Wayman Day Care,511 W Elm St ,,9432120,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +343,0.99999994,774,CPS_Early_Childhood_Portal_scrape.csv, May,512 S. Lavergne ,,5346140,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +344,0.99999994,775,CPS_Early_Childhood_Portal_scrape.csv, Goudy,5120 N. Winthrop ,,5342480,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +108,0.9999999403953552,776,CPS_Early_Childhood_Portal_scrape.csv, Albany Park Community Center - Albany Park Head Start Center-Kimball,5121 N Kimball Ave ,,5095657,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +345,0.9999999403953552,777,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - All About Kids Learning Academy,514 E 75th St ,,8922800,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +109,0.9999998581125651,778,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Teddy Bear 5 Pulaski,5160 S Pulaski RD ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +346,0.99999994,779,CPS_Early_Childhood_Portal_scrape.csv, Fulton,5300 S. Hermitage ,,5359000,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +110,0.9999999192949295,780,CPS_Early_Childhood_Portal_scrape.csv, Trinity United Church of Christ - Trinity United,532 W 95th St ,,4883511,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +111,0.9999999187725611,781,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - Grace Mission,5332 S Western Ave ,,4761990,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +995,1.0,782,CPS_Early_Childhood_Portal_scrape.csv, Marcy Newberry Association - Mosaic,5332-34 W Addison Ave ,,7777411,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +347,0.99999994,783,CPS_Early_Childhood_Portal_scrape.csv, Doolittle West,535 E. 35th St ,,5351040,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +348,0.9999998807907104,784,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Angel Wings,5365 W North Ave ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +996,1.0,785,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Near The Pier Dev Center,540 N Lakeshore Dr ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +112,0.9999999513330113,786,CPS_Early_Childhood_Portal_scrape.csv, Firman Community Services - Firman House South,5401 S Wentworth Ave ,,4513400,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +113,0.9999998611253804,787,CPS_Early_Childhood_Portal_scrape.csv, Onward Neighborhood House - Belmont-Cragin,5423 W Diversey ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +349,0.9999999403953552,788,CPS_Early_Childhood_Portal_scrape.csv, Onward Neighborhood House - New Beginnings,5445 W North Ave ,,3855365,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +350,0.9999998807907104,789,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Bunny Land DC,545 w 119th st ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +997,1.0,790,CPS_Early_Childhood_Portal_scrape.csv," Trinity Resources Unlimited, Inc. - Prince of Peace",5450 W Van Buren St ,,6263977,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +998,1.0,791,CPS_Early_Childhood_Portal_scrape.csv, National Teachers Acad,55 W. Cermack ,,5349970,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +351,0.9999999403953552,792,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Allison's Infant Toddler,5522 S Racine Ave ,,4363193,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +219,0.999999946687985,793,CPS_Early_Childhood_Portal_scrape.csv, Marcy Newberry Association - Austin Town Hall,5610 W Lake St ,,2611505,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +999,1.0,794,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Coppin Early Learning Center,5627 S Michigan Ave ,,3632400,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +114,0.9999998807907104,795,CPS_Early_Childhood_Portal_scrape.csv, Onward Neighborhood House - Tiny Town for Tots,5654 W Division St ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +115,0.9999999655872422,796,CPS_Early_Childhood_Portal_scrape.csv, Marcy Newberry Association - St. John Greater Holy Temple,5701 W Midway Park ,,9480094,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +117,0.9999999246054253,797,CPS_Early_Childhood_Portal_scrape.csv," Trinity Resources Unlimited, Inc. - Hope for Youth",5900 W Iowa St ,,6260323,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +118,0.9999999403953552,798,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Little Learners,5923 W 63rd St ,,5815541,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +119,0.9999999403953552,799,CPS_Early_Childhood_Portal_scrape.csv, Onward Neighborhood House - Onward Neighborhood House,600 N Leavitt St ,,6666726,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +352,0.99999994,800,CPS_Early_Childhood_Portal_scrape.csv, Nicholson,6006 S. Peoria ,,5353285,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +353,0.9999999,801,CPS_Early_Childhood_Portal_scrape.csv," Sexton, Austin O.",6020 S. Langley ,,5350640,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +354,0.9999999403953552,802,CPS_Early_Childhood_Portal_scrape.csv, Onward Neighborhood House - Lee's Cuddles N Care,6100 W North Ave ,,7458054,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +355,0.9999999403953552,803,CPS_Early_Childhood_Portal_scrape.csv, Fiske,6145 S. Ingleside ,,5350990,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +1000,1.0,804,CPS_Early_Childhood_Portal_scrape.csv, Onward Neighborhood House - Alphabet Academy,6224 W North Ave ,,6227055,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +121,0.9999999403953552,805,CPS_Early_Childhood_Portal_scrape.csv, Centers For New Horizons - Washington Park South Learning Center,6225 S Wabash Ave ,,6672065,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +122,0.99999994,806,CPS_Early_Childhood_Portal_scrape.csv, Boys and Girls Clubs of Chicago - Yancey,6245 S Wabash Ave ,,3634733,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +123,0.99999994,807,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Kidz Colony,6287 S Archer Ave ,,7678522,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +356,0.99999994,808,CPS_Early_Childhood_Portal_scrape.csv, Aldridge,630 E. 131St St. ,,5355614,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +357,0.99999994,809,CPS_Early_Childhood_Portal_scrape.csv, Dulles,6311 S. Calumet ,,5350690,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +124,0.9999999538304407,810,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - South Side YMCA,6330 S Stony Island Ave ,,9470700,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1001,1.0,811,CPS_Early_Childhood_Portal_scrape.csv, Reed,6350 S. Stewart ,,5353075,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +163,0.9999999403953552,812,CPS_Early_Childhood_Portal_scrape.csv, Dewey CPC,638 W. 54Th Pl. ,,5351671,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +125,0.9999998581125651,813,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Teddy Bear 3 Pulaski,6401 S Pulaski RD ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +226,0.9999999403953552,814,CPS_Early_Childhood_Portal_scrape.csv, Metropolitan Family Services - Midway Head Start Center,6422 S Kedzie Ave ,,7374790,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +358,0.99999994,815,CPS_Early_Childhood_Portal_scrape.csv, Hinton,644 W. 71St St. ,,5353875,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +359,0.9999998807907104,816,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Granny's Day Care,645 w 127th st ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +360,0.99999994,817,CPS_Early_Childhood_Portal_scrape.csv, Kershaw,6450 S. Lowe ,,5353050,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +361,0.99999994,818,CPS_Early_Childhood_Portal_scrape.csv, O'Toole,6550 S. Seeley ,,5359040,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +1002,1.0,819,CPS_Early_Childhood_Portal_scrape.csv, Woodlawn,6657 S. Kimbark ,,5350801,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +362,0.9999999403953552,820,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Little Angels Family DayCare,6701 S Emerald Ave ,,4888777,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1003,1.0,821,CPS_Early_Childhood_Portal_scrape.csv," Davis, Miles Acad",6723 S. Wood ,,5359120,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +127,0.9999999403953552,822,CPS_Early_Childhood_Portal_scrape.csv, Board Trustees-City Colleges of Chicago - Kennedy-King College,6800 S Wentworth Ave ,,5533475,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +128,0.9999999403953552,823,CPS_Early_Childhood_Portal_scrape.csv, Family Rescue - Ridgeland Head Start,6824 S Ridgeland Ave ,,6671073,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +129,0.9999999311744846,824,CPS_Early_Childhood_Portal_scrape.csv, Trinity United Church of Christ - Dr. Denton J. Brooks Center,6921 S Stony Island Ave ,,9552818,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1004,1.0,825,CPS_Early_Childhood_Portal_scrape.csv, O'Keeffe,6940 S. Merrill ,,5350600,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +130,0.9999999403953552,826,CPS_Early_Childhood_Portal_scrape.csv, Abraham Lincoln Centre - Lincoln - Roseland,7 E 119th St ,,2647632,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +130,0.9999999403953552,827,CPS_Early_Childhood_Portal_scrape.csv, Abraham Lincoln Centre - Lincoln - Roseland,7 E 119th St ,,2647632,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +131,0.9999999403953552,828,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - Garfield Head Start/Child Developmental Center- YMCA,7 N Homan Ave ,,2653900,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1005,1.0,829,CPS_Early_Childhood_Portal_scrape.csv, Yale,7025 S. Princeton ,,5353190,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +363,0.99999994,830,CPS_Early_Childhood_Portal_scrape.csv, Bond,7050 S. May ,,5353480,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +1006,1.0,831,CPS_Early_Childhood_Portal_scrape.csv, McKay,7050 S. Washtenaw ,,5359340,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +132,0.999999915706303,832,CPS_Early_Childhood_Portal_scrape.csv, Christopher House - Christopher House - Rogers Park,7059 N Greenview Ave ,,2745477,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +231,0.9999998807907104,833,CPS_Early_Childhood_Portal_scrape.csv, Abraham Lincoln Centre - Donoghue,707 E 37th St ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +364,0.99999994,834,CPS_Early_Childhood_Portal_scrape.csv, Guggenheim,7141 S. Morgan ,,5353587,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +133,0.9999998807907104,835,CPS_Early_Childhood_Portal_scrape.csv, Ada S. McKinley Community Services - Little Hands,7146 S Ashland Ave ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +134,0.999999926999517,836,CPS_Early_Childhood_Portal_scrape.csv, Ada S. McKinley Community Services - McKinley - Howard,7222 S Exchange Ave ,,2219711,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1007,1.0,837,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Love N Learn Academy,723 E 75th St ,,7230338,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1008,1.0,838,CPS_Early_Childhood_Portal_scrape.csv, Deneen,7240 S. Wabash ,,5353035,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +365,0.9999999,839,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - Maria's Garden,7320 S Yale Ave ,,9943016,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +136,0.9999999513330113,840,CPS_Early_Childhood_Portal_scrape.csv, South Shore United Methodist - South Shore United,7350 S Jeffery Blvd ,,3244430,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1009,1.0,841,CPS_Early_Childhood_Portal_scrape.csv, Tanner,7350 S. Evans ,,5353870,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +366,0.99999994,842,CPS_Early_Childhood_Portal_scrape.csv, Jordan,7414 N. Wolcott ,,5342220,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +367,0.9999999403953552,843,CPS_Early_Childhood_Portal_scrape.csv," Henry Booth House - Itsy Bitsy People Palace, Inc",7419 S Cottage Grove Ave ,,8467396,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +368,0.99999994,844,CPS_Early_Childhood_Portal_scrape.csv, Stagg,7424 S. Morgan ,,5353565,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +369,0.99999994,845,CPS_Early_Childhood_Portal_scrape.csv, Madison,7433 S. Dorchester ,,5350551,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +137,0.9999999634997585,846,CPS_Early_Childhood_Portal_scrape.csv, Chicago Commons Association - Nia Family Center,744 N Monticello Ave ,,8266971,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +138,0.9999999356196254,847,CPS_Early_Childhood_Portal_scrape.csv, Howard Area Community Center - Howard Area Community Center,7510 N Ashland Ave ,,7647610,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +139,0.9999999681399773,848,CPS_Early_Childhood_Portal_scrape.csv, Chicago Youth Centers - Rebecca K. Crown / CYC,7601 S Phillips Ave ,,6481550,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +140,0.9999999578531515,849,CPS_Early_Childhood_Portal_scrape.csv, Howard Area Community Center - Howard Area,7638 N Paulina Ave ,,3813652,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +370,0.9999999403953552,850,CPS_Early_Childhood_Portal_scrape.csv, Barton,7650 S. Wolcott Ave. ,,5353260,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +371,0.9999999403953552,851,CPS_Early_Childhood_Portal_scrape.csv, Bradwell,7736 S. Burnhan ,,5356600,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +371,0.9999999403953552,852,CPS_Early_Childhood_Portal_scrape.csv, Bradwell,7736 S. Burnhan ,,5356600,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +372,0.9999998807907104,853,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Little Hands & Feet,7801 S Wolcott Ave ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +373,0.99999994,854,CPS_Early_Childhood_Portal_scrape.csv, Ruggles,7831 S. Prairie ,,5353085,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +142,0.999999926999517,855,CPS_Early_Childhood_Portal_scrape.csv, Ada S. McKinley Community Services - McKinley - Wright Renaissance,7939 S Western Ave ,,4768805,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +143,0.99999994,856,CPS_Early_Childhood_Portal_scrape.csv, Chicago State University - Tiny Tots Villa,8128 S Dr. Martin Luther King Dr ,,4836251,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +374,0.99999994,857,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Learning Tree,8128 S Kedzie Ave ,,7788802,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +144,0.9999999403953552,858,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - New Pisgah,8130 S Racine Ave ,,8735392,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +375,0.9999999403953552,859,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Pink's Child Care Academy,8236 S Kedzie Ave ,,8637465,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +145,0.999999915706303,860,CPS_Early_Childhood_Portal_scrape.csv, South Central Community Services - South Central Community Services,8316 S Ellis Ave ,,4830900,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1010,1.0,861,CPS_Early_Childhood_Portal_scrape.csv, Reavis,834 E. 50Th St. ,,5351060,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +146,0.9999999403953552,862,CPS_Early_Childhood_Portal_scrape.csv, Marcy Newberry Association - South Harper Montessori,8358 S Stony Island Ave ,,7340375,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +376,0.99999994,863,CPS_Early_Childhood_Portal_scrape.csv, Morgan,8407 S. Kerfoot ,,5353366,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +377,0.9999999403953552,864,CPS_Early_Childhood_Portal_scrape.csv, Chicago Youth Centers - Fellowship House / CYC,844 W 32nd St ,,3262282,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +249,0.9999999701976776,865,CPS_Early_Childhood_Portal_scrape.csv, Salvation Army - Family Outreach Initiative (Sal Army),845 W 69th St ,,8324700,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1011,1.0,866,CPS_Early_Childhood_Portal_scrape.csv, McNair Acad. Center,849 N. Leamington ,,5346100,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +147,0.999999926999517,867,CPS_Early_Childhood_Portal_scrape.csv, Christopher House - Christopher House - Lakeshore,850 W Eastwood Ave ,,2719403,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +378,0.9999998807907104,868,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Jelly Learning Center,8501 S Ashland Ave ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +379,0.99999994,869,CPS_Early_Childhood_Portal_scrape.csv, Gresham,8524 S. Green ,,5353350,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +148,0.9999998712392509,870,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - North Kenwood Day Care Center,857 E Pershing Rd ,,2682223,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +149,0.9999999211504664,871,CPS_Early_Childhood_Portal_scrape.csv, Dorothy Sutton Branch - Dorothy Sutton Branch,8601 S State St ,,7234445,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +150,0.99999994,872,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - St. Bronislava,8716 S Colfax Ave ,,9337676,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +380,0.99999994,873,CPS_Early_Childhood_Portal_scrape.csv, Ryder,8716 S. Wallace ,,5353843,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1012,1.0,874,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Little Elite Childcare,8748 S Aberdeen St ,,4887988,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1013,1.0,875,CPS_Early_Childhood_Portal_scrape.csv, Ada S. McKinley Community Services - Child Quest,8751 S Greenwood Ave ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1014,1.0,876,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Pill Hill Development Center,8802 S Stony Island Ave ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1015,1.0,877,CPS_Early_Childhood_Portal_scrape.csv, Chicago Youth Centers - Tots Express,8938 S Cottage Grove ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1016,1.0,878,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Tots Express,8939 S Cottage Grove Ave ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +164,0.9999999403953552,879,CPS_Early_Childhood_Portal_scrape.csv, Wheatley CPC,902 E. 133rd Pl ,,5355718,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +164,0.9999999403953552,880,CPS_Early_Childhood_Portal_scrape.csv, Wheatley CPC,902 E. 133rd Pl ,,5355718,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +1017,1.0,881,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Kids R First,9040 S Vincennes Ave ,,4454900,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +151,0.9999999403953552,882,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - Our Lady of Guadalupe,9129 S Burley Ave ,,9785320,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +381,0.9999999403953552,883,CPS_Early_Childhood_Portal_scrape.csv," Trinity Resources Unlimited, Inc. - High Mountain",919 N Lavergne Ave ,,6263994,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +382,0.99999994,884,CPS_Early_Childhood_Portal_scrape.csv, Brunson,932 N. Central Av ,,5346025,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +383,0.9999999403953552,885,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Pattie Cake,939 W 87th St ,,8749460,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +153,0.9999999403953552,886,CPS_Early_Childhood_Portal_scrape.csv, Centers For New Horizons - Altgeld Gardens I,941 E 132nd Pl ,,4683055,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +153,0.9999999403953552,887,CPS_Early_Childhood_Portal_scrape.csv, Centers For New Horizons - Altgeld Gardens I,941 E 132nd Pl ,,4683055,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +242,1.0,888,CPS_Early_Childhood_Portal_scrape.csv, Salvation Army - Red Shield,945 W 69th St ,,3583203,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +244,0.9999999578531515,889,CPS_Early_Childhood_Portal_scrape.csv, Chicago State University - Chicago State University,9501 S Dr. Martin Luther King Dr ,,9952400,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +384,0.99999994,890,CPS_Early_Childhood_Portal_scrape.csv, Holmes,955 W. Garfield ,,5359025,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +154,0.9999999403953552,891,CPS_Early_Childhood_Portal_scrape.csv, Chicago Youth Centers - Dorothy Gautreaux / CYC,975 E 132nd St ,,2911000,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +154,0.9999999403953552,892,CPS_Early_Childhood_Portal_scrape.csv, Chicago Youth Centers - Dorothy Gautreaux / CYC,975 E 132nd St ,,2911000,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +266,0.9999999403953552,893,CPS_Early_Childhood_Portal_scrape.csv, Henson,1326 S. Avers Ave ,,5341804,,Head Start/Child Parent Center,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +266,0.9999999403953552,894,CPS_Early_Childhood_Portal_scrape.csv, Henson,1326 S. Avers Ave ,,5341804,,Head Start/Child Parent Center,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +156,0.9999999403953552,895,CPS_Early_Childhood_Portal_scrape.csv, Herzl CPC,1401 S. Hamlin ,,5341751,,Head Start/Child Parent Center,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +156,0.9999999403953552,896,CPS_Early_Childhood_Portal_scrape.csv, Herzl CPC,1401 S. Hamlin ,,5341751,,Head Start/Child Parent Center,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +157,0.9999999403953552,897,CPS_Early_Childhood_Portal_scrape.csv, Ferguson CPC,1420 N. Hudson ,,5348580,,Head Start/Child Parent Center,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +159,0.99999994,898,CPS_Early_Childhood_Portal_scrape.csv, Delano CPC,3905 W. Wilcox ,,5346450,,Head Start/Child Parent Center,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +160,0.9999999403953552,899,CPS_Early_Childhood_Portal_scrape.csv, Hansberry CPC,4055 W. Arthington ,,5346931,,Head Start/Child Parent Center,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +160,0.9999999403953552,900,CPS_Early_Childhood_Portal_scrape.csv, Hansberry CPC,4055 W. Arthington ,,5346931,,Head Start/Child Parent Center,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +385,0.9999999403953552,901,CPS_Early_Childhood_Portal_scrape.csv, South Loop,1212 S. Plymouth ,,5348690,,Head Start/Prekindergarten For,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +385,0.9999999403953552,902,CPS_Early_Childhood_Portal_scrape.csv, South Loop,1212 S. Plymouth ,,5348690,,Head Start/Prekindergarten For,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +308,0.9999999578531515,903,CPS_Early_Childhood_Portal_scrape.csv, Cockrell,30 E. 61St ,,5350798,,Head Start/Prekindergarten For,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +329,0.9999999403953552,904,CPS_Early_Childhood_Portal_scrape.csv, Mason,4217 W. 18Th St. ,,5341530,,Head Start/Prekindergarten For,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +329,0.9999999403953552,905,CPS_Early_Childhood_Portal_scrape.csv, Mason,4217 W. 18Th St. ,,5341530,,Head Start/Prekindergarten For,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +341,0.99999994,906,CPS_Early_Childhood_Portal_scrape.csv, McCutcheon,4865 N. Sheridan Rd ,,5342680,,Head Start/Prekindergarten For,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +355,0.9999999403953552,907,CPS_Early_Childhood_Portal_scrape.csv, Fiske,6145 S. Ingleside ,,5350990,,Head Start/Prekindergarten For,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +370,0.9999999403953552,908,CPS_Early_Childhood_Portal_scrape.csv, Barton,7650 S. Wolcott Ave. ,,5353260,,Head Start/Prekindergarten For,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +371,0.9999999403953552,909,CPS_Early_Childhood_Portal_scrape.csv, Bradwell,7736 S. Burnhan ,,5356600,,Head Start/Prekindergarten For,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +164,0.9999999403953552,910,CPS_Early_Childhood_Portal_scrape.csv, Wheatley CPC,902 E. 133rd Pl ,,5355718,,Head Start/Prekindergarten For,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +164,0.9999999403953552,911,CPS_Early_Childhood_Portal_scrape.csv, Wheatley CPC,902 E. 133rd Pl ,,5355718,,Head Start/Prekindergarten For,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +386,0.99999994,912,CPS_Early_Childhood_Portal_scrape.csv, Sherman,1000 W. 52nd St. ,,5351757,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +387,0.99999994,913,CPS_Early_Childhood_Portal_scrape.csv, Columbus,1003 N. Leavitt ,,5344350,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1018,1.0,914,CPS_Early_Childhood_Portal_scrape.csv, Fernwood,10041 S. Union ,,5352700,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +388,0.99999994,915,CPS_Early_Childhood_Portal_scrape.csv, Bennett,10115 S. Prairie ,,5355460,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1019,1.0,916,CPS_Early_Childhood_Portal_scrape.csv, Garvey,10309 S. Morgan ,,5352763,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +389,0.99999994,917,CPS_Early_Childhood_Portal_scrape.csv, Gallistel,10347 S. Ewing Ave. ,,5356540,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +390,0.99999994,918,CPS_Early_Childhood_Portal_scrape.csv, Barnard,10354 S. Charles St. ,,5352625,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1020,1.0,919,CPS_Early_Childhood_Portal_scrape.csv," Clark, G.R.",1045 S. Monitor Ave ,,5346225,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1021,1.0,920,CPS_Early_Childhood_Portal_scrape.csv, Mt. Vernon,10540 S. Morgan ,,5352825,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +391,0.99999994,921,CPS_Early_Childhood_Portal_scrape.csv, Bright,10740 S. Calhoun ,,5356218,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1022,1.0,922,CPS_Early_Childhood_Portal_scrape.csv, Addams,10810 S. Ave. H ,,5356210,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +392,0.99999994,923,CPS_Early_Childhood_Portal_scrape.csv, Mt. Greenwood,10841 S. Homan Ave ,,5352786,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +393,0.99999994,924,CPS_Early_Childhood_Portal_scrape.csv, Dunne,10845 S. Union ,,5355517,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +394,0.99999994,925,CPS_Early_Childhood_Portal_scrape.csv, Rudolph,110 N. Paulina ,,5347460,,Prekindergarten For All,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +395,0.99999994,926,CPS_Early_Childhood_Portal_scrape.csv, Holden,1104 W. 31St. St. ,,5357200,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +396,0.99999994,927,CPS_Early_Childhood_Portal_scrape.csv, Ariel Comm,1119 E. 46th St. ,,5351996,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +397,0.99999994,928,CPS_Early_Childhood_Portal_scrape.csv, Pullman,11311 S. Forrestville ,,5355395,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +398,0.99999994,929,CPS_Early_Childhood_Portal_scrape.csv, Bass,1140 W. 66th St. ,,5353275,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +399,0.99999994,930,CPS_Early_Childhood_Portal_scrape.csv, LaSalle/Andersen,1148 N. Honore ,,5344276,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +400,0.99999994,931,CPS_Early_Childhood_Portal_scrape.csv, Whistler,11533 S. Ada ,,5355560,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1023,1.0,932,CPS_Early_Childhood_Portal_scrape.csv, Pullman West,11941 S. Parnell Ave ,,5355500,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +401,0.99999994,933,CPS_Early_Childhood_Portal_scrape.csv, Metcalfe,12339 S. Normal Av. ,,5355590,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1024,1.0,934,CPS_Early_Childhood_Portal_scrape.csv, Bontemps,1241 West 58th St ,,5359175,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +402,0.99999994,935,CPS_Early_Childhood_Portal_scrape.csv, Owens,12450 S. State St. ,,5355661,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +403,0.99999994,936,CPS_Early_Childhood_Portal_scrape.csv, Grissom,12810 S. Escanaba ,,5355380,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +404,0.99999994,937,CPS_Early_Childhood_Portal_scrape.csv, De Diego,1313 N. Claremont ,,5344451,,Prekindergarten For All,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +405,0.99999994,938,CPS_Early_Childhood_Portal_scrape.csv, Clay,13231 S.Burley ,,5355600,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1025,1.0,939,CPS_Early_Childhood_Portal_scrape.csv, De Priest,139 S. Parkside Ave ,,5346800,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1026,1.0,940,CPS_Early_Childhood_Portal_scrape.csv, Schiller,1409 N. Ogden ,,5348126,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +406,0.99999994,941,CPS_Early_Childhood_Portal_scrape.csv, Carnegie,1414 E. 61st Pl. ,,5350530,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +271,0.9999999403953552,942,CPS_Early_Childhood_Portal_scrape.csv, Pilsen,1420 W. 17Th St. ,,5347675,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +271,0.9999999403953552,943,CPS_Early_Childhood_Portal_scrape.csv, Pilsen,1420 W. 17Th St. ,,5347675,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +407,0.9999999403953552,944,CPS_Early_Childhood_Portal_scrape.csv, Blaine,1420 W. Grace ,,5345750,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +408,0.99999994,945,CPS_Early_Childhood_Portal_scrape.csv, Peirce,1423 W. Bryn Mawr ,,5342440,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +272,0.99999994,946,CPS_Early_Childhood_Portal_scrape.csv, Lozano Bilingual,1424 N. Cleaver ,,5344150,,Prekindergarten For All,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +409,0.99999994,947,CPS_Early_Childhood_Portal_scrape.csv, West Park Acad,1425 N. Tripp ,,5344940,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +410,0.99999994,948,CPS_Early_Childhood_Portal_scrape.csv, Lewis,1431 N. Leamington ,,5343060,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +411,0.99999994,949,CPS_Early_Childhood_Portal_scrape.csv," Colemon, Johnnie",1441 W. 119th St. ,,5353975,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +412,0.99999994,950,CPS_Early_Childhood_Portal_scrape.csv, Shoop,1460 W. 112Th St. ,,5352715,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +413,0.99999994,951,CPS_Early_Childhood_Portal_scrape.csv, Hayt,1518 W. Granville ,,5342040,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1027,1.0,952,CPS_Early_Childhood_Portal_scrape.csv, Cuffe,1540 W. 84Th St. ,,5358250,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +414,0.99999994,953,CPS_Early_Childhood_Portal_scrape.csv, Harte,1556 E. 56Th St. ,,5350870,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +415,0.99999994,954,CPS_Early_Childhood_Portal_scrape.csv, Salazar,160 W. Wendell ,,5348310,,Prekindergarten For All,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +416,0.9999999403953552,955,CPS_Early_Childhood_Portal_scrape.csv, Burr,1621 W. Wabansia ,,5344090,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +276,0.9999999403953552,956,CPS_Early_Childhood_Portal_scrape.csv, Cooper,1624 W. 19Th St. ,,5347205,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +276,0.9999999403953552,957,CPS_Early_Childhood_Portal_scrape.csv, Cooper,1624 W. 19Th St. ,,5347205,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +417,0.9999999403953552,958,CPS_Early_Childhood_Portal_scrape.csv, Burley,1630 W. Barry ,,5345475,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +418,0.99999994,959,CPS_Early_Childhood_Portal_scrape.csv, Prescott,1632 W. Wrightwood ,,5345505,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +419,0.99999994,960,CPS_Early_Childhood_Portal_scrape.csv, Moos,1711 N. California ,,5344340,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +420,0.99999994,961,CPS_Early_Childhood_Portal_scrape.csv, Courtenay,1726 W. Berteau ,,5345790,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +280,0.9999999403953552,962,CPS_Early_Childhood_Portal_scrape.csv, Yates,1839 N. Richmond ,,5344550,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +421,0.99999994,963,CPS_Early_Childhood_Portal_scrape.csv, Talcott,1840 W. Ohio ,,5347130,,Prekindergarten For All,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +422,0.99999994,964,CPS_Early_Childhood_Portal_scrape.csv, McAuliffe,1841 N. Springfield ,,5344400,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +423,0.99999994,965,CPS_Early_Childhood_Portal_scrape.csv, Sayre Lang Acad,1850 N. Newland ,,5343351,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +424,0.99999994,966,CPS_Early_Childhood_Portal_scrape.csv, Pritzker,2009 W. Schiller St. ,,5344415,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +425,0.99999994,967,CPS_Early_Childhood_Portal_scrape.csv, Walsh,2015 S. Peoria ,,5347950,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +426,0.99999994,968,CPS_Early_Childhood_Portal_scrape.csv, Burbank,2035 N. Mobile ,,5343000,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +427,0.99999994,969,CPS_Early_Childhood_Portal_scrape.csv," Armstrong , G.",2110 W. Greenleaf ,,5342150,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +428,0.99999994,970,CPS_Early_Childhood_Portal_scrape.csv, Nixon,2121 N. Keeler ,,5344375,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +429,0.99999994,971,CPS_Early_Childhood_Portal_scrape.csv, Crown,2128 S. St Louis Ave ,,5341680,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +430,0.99999994,972,CPS_Early_Childhood_Portal_scrape.csv, Chappell,2135 W. Foster ,,5342390,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +431,0.99999994,973,CPS_Early_Childhood_Portal_scrape.csv, Mozart,2200 N. Hamlin ,,5344160,,Prekindergarten For All,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +432,0.99999994,974,CPS_Early_Childhood_Portal_scrape.csv, Tilton,223 N. Keeler Av. ,,5346746,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +433,0.99999994,975,CPS_Early_Childhood_Portal_scrape.csv, Pulaski,2230 W. Mclean ,,5344391,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +434,0.99999994,976,CPS_Early_Childhood_Portal_scrape.csv, Kanoon,2233 S. Kedzie ,,5341736,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +435,0.99999994,977,CPS_Early_Childhood_Portal_scrape.csv, Mitchell,2233 W. Ohio St. ,,5347655,,Prekindergarten For All,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +436,0.99999994,978,CPS_Early_Childhood_Portal_scrape.csv, Goethe,2236 N. Rockwell ,,5344135,,Prekindergarten For All,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +437,0.99999994,979,CPS_Early_Childhood_Portal_scrape.csv, Marconi,230 N. Kolmar ,,5346210,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1028,1.0,980,CPS_Early_Childhood_Portal_scrape.csv, De La Cruz,2317 W. 23rd Pl. ,,5354585,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +438,0.99999994,981,CPS_Early_Childhood_Portal_scrape.csv, Farragut,2345 S. Christiana ,,5341300,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +439,0.99999994,982,CPS_Early_Childhood_Portal_scrape.csv, Spry,2400 S. Marshall Bl ,,5341700,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +440,0.99999994,983,CPS_Early_Childhood_Portal_scrape.csv, Ruiz,2410 S. Leavitt ,,5354825,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +441,0.99999994,984,CPS_Early_Childhood_Portal_scrape.csv, Parkman,245 W. 51St. St. ,,5351739,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +442,0.99999994,985,CPS_Early_Childhood_Portal_scrape.csv, Sherwood,245 W. 57Th St. ,,5350829,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +443,0.99999994,986,CPS_Early_Childhood_Portal_scrape.csv, Haines,247 W. 23Rd Pl ,,5349200,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +444,0.99999994,987,CPS_Early_Childhood_Portal_scrape.csv, Corkery,2510 S. Kildare ,,5341650,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +445,0.99999994,988,CPS_Early_Childhood_Portal_scrape.csv, Carroll-Rosenwald Br,2541 W. 80th St ,,5359355,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1029,1.0,989,CPS_Early_Childhood_Portal_scrape.csv, Barbara Vick Early Childhood & Fam Center,2554 W. 113Th St ,,5352671,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +446,0.99999994,990,CPS_Early_Childhood_Portal_scrape.csv, Little Village,2620 S. Lawndale ,,5341880,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1030,1.0,991,CPS_Early_Childhood_Portal_scrape.csv," Ward, J.",2701 S. Shields ,,5349050,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +447,0.99999994,992,CPS_Early_Childhood_Portal_scrape.csv, Budlong,2701 W. Foster ,,5342591,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +448,0.99999994,993,CPS_Early_Childhood_Portal_scrape.csv, McCormick,2712 S. Sawyer ,,5357252,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +301,0.9999999403953552,994,CPS_Early_Childhood_Portal_scrape.csv, Lafayette,2714 W. Augusta Blvd. ,,5344326,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +449,0.99999994,995,CPS_Early_Childhood_Portal_scrape.csv, Brentano,2723 N. Fairfield ,,5344100,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +450,0.99999994,996,CPS_Early_Childhood_Portal_scrape.csv, Schubert,2727 N. Long ,,5343080,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1031,1.0,997,CPS_Early_Childhood_Portal_scrape.csv, McKinley Park,2744 W. Pershing Rd ,,5533661,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +451,0.99999994,998,CPS_Early_Childhood_Portal_scrape.csv, Whitney,2815 S. Komensky ,,5341560,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +452,0.99999994,999,CPS_Early_Childhood_Portal_scrape.csv, Hammond,2819 W. 21st Place ,,5354580,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1032,1.0,1000,CPS_Early_Childhood_Portal_scrape.csv, Barry,2828 N. Kilbourn ,,5343455,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1033,1.0,1001,CPS_Early_Childhood_Portal_scrape.csv, Locke,2828 N. Oak Park Ave ,,5343300,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +453,0.99999994,1002,CPS_Early_Childhood_Portal_scrape.csv, Calhoun North,2833 W. Adams Street ,,5346940,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +454,0.9999999403953552,1003,CPS_Early_Childhood_Portal_scrape.csv, Agassiz,2851 N. Seminary ,,5345725,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +455,0.99999994,1004,CPS_Early_Childhood_Portal_scrape.csv, Avondale,2945 N. Sawyer ,,5345244,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1034,1.0,1005,CPS_Early_Childhood_Portal_scrape.csv, Ortiz De Dominguez,3000 S. Lawndale Ave ,,5341600,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1035,1.0,1006,CPS_Early_Childhood_Portal_scrape.csv," Davis, N.",3014 W. 39th Pl ,,5354540,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +456,0.99999994,1007,CPS_Early_Childhood_Portal_scrape.csv, Falconer,3020 N. Lamon ,,5343560,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1036,1.0,1008,CPS_Early_Childhood_Portal_scrape.csv, Miller,3030 W. Harrison St ,,5346594,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +457,0.99999994,1009,CPS_Early_Childhood_Portal_scrape.csv, Healy,3040 S. Parnell ,,5349170,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +458,0.99999994,1010,CPS_Early_Childhood_Portal_scrape.csv, Pershing Magnet,3113 S. Rhodes ,,5349272,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +459,0.99999994,1011,CPS_Early_Childhood_Portal_scrape.csv, Darwin,3116 W. Belden ,,5344110,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +460,0.99999994,1012,CPS_Early_Childhood_Portal_scrape.csv, Cleveland,3121 W. Byron ,,5345130,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +461,0.99999994,1013,CPS_Early_Childhood_Portal_scrape.csv, Jahn,3149 N. Wolcott ,,5345500,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +314,0.9999999403953552,1014,CPS_Early_Childhood_Portal_scrape.csv, Linne,3221 N. Sacramento ,,5345262,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +462,0.99999994,1015,CPS_Early_Childhood_Portal_scrape.csv, Hibbard,3244 W. Ainslie ,,5345191,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +463,0.9999999403953552,1016,CPS_Early_Childhood_Portal_scrape.csv, Nettelhorst,3252 N. Broadway ,,5345810,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1037,1.0,1017,CPS_Early_Childhood_Portal_scrape.csv, Lowell,3320 W. Hirsch ,,5344300,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1038,1.0,1018,CPS_Early_Childhood_Portal_scrape.csv, Tarkington,3330 W. 71st St. ,,5354700,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +464,0.99999994,1019,CPS_Early_Childhood_Portal_scrape.csv, Chicago Academy,3400 N. Austin ,,5343885,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +465,0.99999994,1020,CPS_Early_Childhood_Portal_scrape.csv," Everett , Edward",3419 S. Bell Av. ,,5354550,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +466,0.99999994,1021,CPS_Early_Childhood_Portal_scrape.csv, Reinberg,3425 N. Major ,,5343465,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +467,0.99999994,1022,CPS_Early_Childhood_Portal_scrape.csv," Hampton, Lionel",3434 W. 77th ,,5354030,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +468,0.99999994,1023,CPS_Early_Childhood_Portal_scrape.csv, Dever,3436 N. Osceola ,,5343090,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +469,0.9999999403953552,1024,CPS_Early_Childhood_Portal_scrape.csv, Audubon,3500 N. Hoyne ,,5345470,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +470,0.99999994,1025,CPS_Early_Childhood_Portal_scrape.csv, Casals,3501 W. Potomac ,,5344444,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +471,0.99999994,1026,CPS_Early_Childhood_Portal_scrape.csv, Murphy,3539 W. Grace ,,5345223,,Prekindergarten For All,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +472,0.99999994,1027,CPS_Early_Childhood_Portal_scrape.csv, Burroughs,3542 S. Washtenaw Ave. ,,5357226,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +473,0.99999994,1028,CPS_Early_Childhood_Portal_scrape.csv, Ericson,3600 West 5th Ave ,,5346660,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +474,0.99999994,1029,CPS_Early_Childhood_Portal_scrape.csv, Washington G.,3611 E. 114Th St. ,,5355010,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +475,0.99999994,1030,CPS_Early_Childhood_Portal_scrape.csv, Reilly,3650 W. School ,,5345250,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +322,0.9999999403953552,1031,CPS_Early_Childhood_Portal_scrape.csv, Monroe,3651 W. Schubert ,,5344155,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +476,0.99999994,1032,CPS_Early_Childhood_Portal_scrape.csv, Gregory,3715 W. Polk Street ,,5346820,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +477,0.99999994,1033,CPS_Early_Childhood_Portal_scrape.csv, Dawes,3810 W. 81st Pl. ,,5352350,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1039,1.0,1034,CPS_Early_Childhood_Portal_scrape.csv, Attucks,3813 S. Dearborn ,,5351270,,Prekindergarten For All,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +478,0.9999999655872422,1035,CPS_Early_Childhood_Portal_scrape.csv, Disney Magnet II,3815 N. Kedvale ,,5358650,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +479,0.99999994,1036,CPS_Early_Childhood_Portal_scrape.csv, Brighton Park,3825 S. Washtenaw Ave. ,,5357237,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +480,0.99999994,1037,CPS_Early_Childhood_Portal_scrape.csv, Coonley,4046 N. Leavitt ,,5345140,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +481,1.0,1038,CPS_Early_Childhood_Portal_scrape.csv, Westcott,409 W. 80Th St. ,,5353090,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +482,0.99999994,1039,CPS_Early_Childhood_Portal_scrape.csv, Nobel,4127 W. Hirsch ,,5344365,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +483,0.9999999403953552,1040,CPS_Early_Childhood_Portal_scrape.csv, Disney Magnet,4140 N. Marine Dr. ,,5345840,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +484,0.99999994,1041,CPS_Early_Childhood_Portal_scrape.csv, Scammon,4201 W. Henderson ,,5343475,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +330,0.9999999403953552,1042,CPS_Early_Childhood_Portal_scrape.csv, Bateman,4220 N. Richmond ,,5345055,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +485,0.99999994,1043,CPS_Early_Childhood_Portal_scrape.csv," Hughes, C.",4247 W. 15Th St. ,,5341762,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +486,0.99999994,1044,CPS_Early_Childhood_Portal_scrape.csv, Henry,4250 N. St. Louis ,,5345060,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +487,0.99999994,1045,CPS_Early_Childhood_Portal_scrape.csv, Brennemann,4251 N. Clarendon ,,5345766,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +488,0.99999994,1046,CPS_Early_Childhood_Portal_scrape.csv, Belding,4257 N. Tripp ,,5343590,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +489,0.99999994,1047,CPS_Early_Childhood_Portal_scrape.csv, Smyser,4310 N. Melvina ,,5343711,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +490,0.99999994,1048,CPS_Early_Childhood_Portal_scrape.csv, Hendricks,4316 S. Princeton ,,5351696,,Prekindergarten For All,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +491,0.99999994,1049,CPS_Early_Childhood_Portal_scrape.csv, Sumner,4320 W. Fifth Ave ,,5346730,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +492,0.9999999403953552,1050,CPS_Early_Childhood_Portal_scrape.csv, Ravenswood,4332 N. Paulina St. ,,5345525,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1040,1.0,1051,CPS_Early_Childhood_Portal_scrape.csv, Hearst,4340 S. Lamon ,,5352376,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +493,0.99999994,1052,CPS_Early_Childhood_Portal_scrape.csv, Hefferan,4409 W. Wilcox St ,,5346192,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +494,1.0,1053,CPS_Early_Childhood_Portal_scrape.csv, North River,4416 N. Troy ,,5533658,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +335,0.9999999403953552,1054,CPS_Early_Childhood_Portal_scrape.csv, Stockton Br.,4425 N. Magnolia Ave ,,5342510,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +336,0.99999994,1055,CPS_Early_Childhood_Portal_scrape.csv, Woodson South,4444 S. Evans Ave ,,5351280,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +495,0.9999999403953552,1056,CPS_Early_Childhood_Portal_scrape.csv, Waters,4540 N. Campbell ,,5345090,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +496,0.99999994,1057,CPS_Early_Childhood_Portal_scrape.csv, Haugan,4540 N. Hamlin ,,5345040,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +497,0.99999994,1058,CPS_Early_Childhood_Portal_scrape.csv, Seward,4600 S. Hermitage ,,5354890,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +498,0.99999994,1059,CPS_Early_Childhood_Portal_scrape.csv, Lara,4619 S. Wolcott ,,5354389,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +499,0.99999994,1060,CPS_Early_Childhood_Portal_scrape.csv, Prussing,4650 N. Menard ,,5343460,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +339,0.9999999403953552,1061,CPS_Early_Childhood_Portal_scrape.csv, McPherson,4728 N. Wolcott Ave ,,5344625,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1041,1.0,1062,CPS_Early_Childhood_Portal_scrape.csv, Hamline,4747 S. Bishop ,,5354565,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1042,1.0,1063,CPS_Early_Childhood_Portal_scrape.csv, Chavez,4747 S. Marshfield ,,5354600,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +500,0.99999994,1064,CPS_Early_Childhood_Portal_scrape.csv, Hedges,4747 S. Winchester ,,5357360,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1043,1.0,1065,CPS_Early_Childhood_Portal_scrape.csv, Edwards,4815 S. Karlov ,,5354875,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +501,0.99999994,1066,CPS_Early_Childhood_Portal_scrape.csv, Fleming Br.,4918 W. 64Th St. ,,5352405,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +502,0.99999994,1067,CPS_Early_Childhood_Portal_scrape.csv, Volta,4950 N. Avers ,,5345080,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +503,0.99999994,1068,CPS_Early_Childhood_Portal_scrape.csv, Daley,5024 S. Wolcott ,,5359091,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +504,0.99999994,1069,CPS_Early_Childhood_Portal_scrape.csv, Beaubien,5025 N. Laramie ,,5343500,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +505,0.99999994,1070,CPS_Early_Childhood_Portal_scrape.csv, Palmer,5051 N. Kenneth ,,5343704,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +506,0.99999994,1071,CPS_Early_Childhood_Portal_scrape.csv, Trumbull,5200 N. Ashland ,,5342430,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +507,0.99999994,1072,CPS_Early_Childhood_Portal_scrape.csv, Leland,5221 W. Congress ,,5346340,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +508,0.99999994,1073,CPS_Early_Childhood_Portal_scrape.csv, Otis,525 N. Armour St. ,,5347665,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +509,0.99999994,1074,CPS_Early_Childhood_Portal_scrape.csv, Nightingale,5250 S. Rockwell ,,5359270,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1044,1.0,1075,CPS_Early_Childhood_Portal_scrape.csv, Libby,5300 S. Loomis ,,5359050,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +510,0.99999994,1076,CPS_Early_Childhood_Portal_scrape.csv, Portage Park,5330 W. Berteau ,,5343576,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +511,0.99999994,1077,CPS_Early_Childhood_Portal_scrape.csv, Brown,54 N. Hermitage ,,5347250,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +512,0.99999994,1078,CPS_Early_Childhood_Portal_scrape.csv, Hanson Park,5411 W. Fullerton ,,5343100,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +513,0.99999994,1079,CPS_Early_Childhood_Portal_scrape.csv, Farnsworth,5414 N. Linder ,,5343535,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +514,0.99999994,1080,CPS_Early_Childhood_Portal_scrape.csv, Oriole Park,5424 N. Oketo ,,5341201,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +515,0.99999994,1081,CPS_Early_Childhood_Portal_scrape.csv, Talman,5450 S. Talman ,,5357850,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +516,0.99999994,1082,CPS_Early_Childhood_Portal_scrape.csv, Emmet,5500 W. Madison ,,5346050,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +517,0.99999994,1083,CPS_Early_Childhood_Portal_scrape.csv, Peterson,5510 N. Christiana ,,5345070,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1045,1.0,1084,CPS_Early_Childhood_Portal_scrape.csv, Carson,5516 S. Maplewood ,,5359222,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +518,0.99999994,1085,CPS_Early_Childhood_Portal_scrape.csv, Hitch,5625 N. Mcvicker ,,5341189,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +519,0.99999994,1086,CPS_Early_Childhood_Portal_scrape.csv, Kinzie,5625 S. Mobile ,,5352425,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +520,0.9999999403953552,1087,CPS_Early_Childhood_Portal_scrape.csv, Ray,5631 S Kimbark ,,5350970,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +521,0.99999994,1088,CPS_Early_Childhood_Portal_scrape.csv, Henderson,5650 S. Wolcott ,,5359080,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +522,0.99999994,1089,CPS_Early_Childhood_Portal_scrape.csv, Carter,5740 S. Michigan Ave. ,,5350860,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +523,0.99999994,1090,CPS_Early_Childhood_Portal_scrape.csv, Norwood Park,5900 N. Nina ,,5341198,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +524,0.99999994,1091,CPS_Early_Childhood_Portal_scrape.csv, Swift,5900 N. Winthrop ,,5342695,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1046,1.0,1092,CPS_Early_Childhood_Portal_scrape.csv, Copernicus,6010 S. Throop ,,5359180,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +525,0.99999994,1093,CPS_Early_Childhood_Portal_scrape.csv, Morrill,6011 S. Rockwell ,,5359288,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +526,0.9999999057567817,1094,CPS_Early_Childhood_Portal_scrape.csv, Belmont-Cragin-Socrates,6041 W. Diversey ,,5343318,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +527,0.99999994,1095,CPS_Early_Childhood_Portal_scrape.csv, Dore,6108 S. Natoma Ave. ,,5352080,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +528,0.99999994,1096,CPS_Early_Childhood_Portal_scrape.csv, Hale,6140 S. Melvina ,,5352265,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +529,0.99999994,1097,CPS_Early_Childhood_Portal_scrape.csv, Solomon,6206 N. Hamlin ,,5345226,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +530,0.99999994,1098,CPS_Early_Childhood_Portal_scrape.csv, Woods,6206 S. Racine ,,5359250,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1047,1.0,1099,CPS_Early_Childhood_Portal_scrape.csv, Edison Park,6220 N. Olcott ,,5341209,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +531,0.99999994,1100,CPS_Early_Childhood_Portal_scrape.csv, Lovett,6333 W. Bloomingdale ,,5343130,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +532,0.99999994,1101,CPS_Early_Childhood_Portal_scrape.csv, Wadsworth,6420 S. University ,,5350730,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +533,1.0,1102,CPS_Early_Childhood_Portal_scrape.csv, Beard,6445 W. Strong ,,5341230,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +534,0.99999994,1103,CPS_Early_Childhood_Portal_scrape.csv, Lee,6448 S. Tripp ,,5352255,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +535,0.99999994,1104,CPS_Early_Childhood_Portal_scrape.csv, Ryerson,646 N. Lawndale ,,5346700,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +536,0.99999994,1105,CPS_Early_Childhood_Portal_scrape.csv, Pirie,650 E. 85Th St ,,5353435,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +537,0.99999994,1106,CPS_Early_Childhood_Portal_scrape.csv, Burnside,650 E. 91st Pl. ,,5353300,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1048,1.0,1107,CPS_Early_Childhood_Portal_scrape.csv," Till, Emmet",6543 S. Champlain ,,5350570,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +538,0.99999994,1108,CPS_Early_Childhood_Portal_scrape.csv, Marquette,6550 S. Richmond ,,5359260,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1049,1.0,1109,CPS_Early_Childhood_Portal_scrape.csv, Dumas,6615 S. Kenwood Ave ,,5350802,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +539,0.99999994,1110,CPS_Early_Childhood_Portal_scrape.csv, Onahan,6634 W. Raven St. ,,5341180,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +540,0.99999994,1111,CPS_Early_Childhood_Portal_scrape.csv, Banneker,6656 S. Normal Blvd. ,,5353020,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +541,0.99999994,1112,CPS_Early_Childhood_Portal_scrape.csv, Kilmer,6700 N. Greenview ,,5342115,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +542,0.99999994,1113,CPS_Early_Childhood_Portal_scrape.csv, Boone,6710 N. Washtenaw ,,5342160,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +543,0.99999994,1114,CPS_Early_Childhood_Portal_scrape.csv, Brownell,6741 S. Michigan ,,5353030,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +544,0.99999994,1115,CPS_Early_Childhood_Portal_scrape.csv, Parkside,6938 S. East End Av. ,,5350940,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +545,0.99999994,1116,CPS_Early_Childhood_Portal_scrape.csv, Wentworth,6950 S. Sangamon ,,5353394,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +546,0.99999994,1117,CPS_Early_Childhood_Portal_scrape.csv, Park Manor,7037 S. Rhodes ,,5353070,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +547,0.99999994,1118,CPS_Early_Childhood_Portal_scrape.csv, Howe,720 N. Lorel ,,5346060,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +548,0.99999994,1119,CPS_Early_Childhood_Portal_scrape.csv, Randolph,7316 S. Hoyne ,,5359015,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +549,0.99999994,1120,CPS_Early_Childhood_Portal_scrape.csv, Rogers,7345 N. Washtenaw ,,5342125,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +550,0.99999994,1121,CPS_Early_Childhood_Portal_scrape.csv, Ebinger,7350 W Pratt ,,5341070,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +551,0.99999994,1122,CPS_Early_Childhood_Portal_scrape.csv, Bouchet,7355 S. Jeffery ,,5350501,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +552,0.99999994,1123,CPS_Early_Childhood_Portal_scrape.csv, King,740 S. Campbell Ave ,,5347898,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +553,0.99999994,1124,CPS_Early_Childhood_Portal_scrape.csv, Smith,744 E. 103rd St. ,,5355689,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +554,0.99999994,1125,CPS_Early_Childhood_Portal_scrape.csv, Irving,749 S. Oakley Blvd ,,5347295,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +555,0.99999994,1126,CPS_Early_Childhood_Portal_scrape.csv, Stock,7507 W. Birchwood ,,5341215,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +556,0.99999994,1127,CPS_Early_Childhood_Portal_scrape.csv, Kellman,751 S. Sacramento ,,5346602,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +557,0.99999994,1128,CPS_Early_Childhood_Portal_scrape.csv, Harvard,7525 S. Harvard ,,5353045,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +558,0.99999994,1129,CPS_Early_Childhood_Portal_scrape.csv, Oglesby,7646 S. Green ,,5353060,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +559,0.99999994,1130,CPS_Early_Childhood_Portal_scrape.csv, Stevenson,8010 S. Kostner ,,5352280,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +560,0.99999994,1131,CPS_Early_Childhood_Portal_scrape.csv, Avalon Park,8045 S. Kenwood ,,5356615,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1050,1.0,1132,CPS_Early_Childhood_Portal_scrape.csv, Mann,8050 S. Chappel ,,5356640,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +561,0.99999994,1133,CPS_Early_Childhood_Portal_scrape.csv, Lenart,8101 S. LaSalle St. ,,5350040,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +562,0.99999994,1134,CPS_Early_Childhood_Portal_scrape.csv, Cook,8150 S. Bishop ,,5353315,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1051,1.0,1135,CPS_Early_Childhood_Portal_scrape.csv, South Chicago,8255 S. Houston Ave. ,,5357930,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +563,0.99999994,1136,CPS_Early_Childhood_Portal_scrape.csv, Ashburn School,8300 S. St Louis Ave. ,,5357860,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +564,0.99999994,1137,CPS_Early_Childhood_Portal_scrape.csv, Dixon,8306 S. St. Lawrence ,,5353834,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +565,0.99999994,1138,CPS_Early_Childhood_Portal_scrape.csv, Greeley,832 W. Sheridan ,,5345800,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1052,1.0,1139,CPS_Early_Childhood_Portal_scrape.csv, New Sullivan,8331 S. Mackinaw ,,5356585,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +566,0.99999994,1140,CPS_Early_Childhood_Portal_scrape.csv, Coles,8441 S. Yates ,,5356550,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +567,0.99999994,1141,CPS_Early_Childhood_Portal_scrape.csv, Inter-American Magnet,851 W. Waveland ,,5345490,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +568,0.99999994,1142,CPS_Early_Childhood_Portal_scrape.csv, Foster Park,8530 S. Wood St. ,,5352725,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +569,0.99999994,1143,CPS_Early_Childhood_Portal_scrape.csv, Caldwell,8546 S. Cregier ,,5356300,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +570,0.99999994,1144,CPS_Early_Childhood_Portal_scrape.csv, Dirksen,8601 W. Foster ,,5341090,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +571,0.99999994,1145,CPS_Early_Childhood_Portal_scrape.csv," Thorp, J.N.",8914 S. Buffalo ,,5356250,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +572,0.99999994,1146,CPS_Early_Childhood_Portal_scrape.csv, Mireles,9000 S. Exchange ,,5356360,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1053,1.0,1147,CPS_Early_Childhood_Portal_scrape.csv, Fort Dearborn,9025 S. Throop ,,5352680,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1054,1.0,1148,CPS_Early_Childhood_Portal_scrape.csv, Davis Dev. Center,9101 S. Jeffery ,,5356209,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1055,1.0,1149,CPS_Early_Childhood_Portal_scrape.csv, Armour,911 West 32nd Place ,,5357297,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +573,0.99999994,1150,CPS_Early_Childhood_Portal_scrape.csv," Washington, H.",9130 S. University ,,5356225,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +574,0.99999994,1151,CPS_Early_Childhood_Portal_scrape.csv," Jackson, M.",917 W. 88Th St. ,,5353341,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +575,0.99999994,1152,CPS_Early_Childhood_Portal_scrape.csv, Warren,9239 S. Jeffery ,,5356625,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +576,0.99999994,1153,CPS_Early_Childhood_Portal_scrape.csv, Gillespie,9301 S. State St. ,,5355065,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +577,0.99999994,1154,CPS_Early_Childhood_Portal_scrape.csv, Kozminski Com Acad,936 E. 54Th ,,5350980,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1056,1.0,1155,CPS_Early_Childhood_Portal_scrape.csv, Wacker,9746 S. Morgan ,,5352821,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +578,0.99999994,1156,CPS_Early_Childhood_Portal_scrape.csv, Schmid,9755 S. Greenwood ,,5356235,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +579,0.99999994,1157,CPS_Early_Childhood_Portal_scrape.csv, Marsh,9810 S. Exchange ,,5356430,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1057,1.0,1158,CPS_Early_Childhood_Portal_scrape.csv, Evers,9811 S. Lowe ,,5352565,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +580,0.99999994,1159,CPS_Early_Childhood_Portal_scrape.csv, Taylor,9912 S. Avenue ,,5356240,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +581,0.99999994,1160,CPS_Early_Childhood_Portal_scrape.csv, Lawrence,9928 S. Crandon ,,5356320,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +3,0.9999999501311764,1161,CPS_Early_Childhood_Portal_scrape.csv, Easter Seals Society of Metropolitan Chicago - Gilchrist-Marchman,1001 W Roosevelt Rd ,,9395115,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +3,0.9999999501311764,1162,CPS_Early_Childhood_Portal_scrape.csv, Easter Seals Society of Metropolitan Chicago - Gilchrist-Marchman,1001 W Roosevelt Rd ,,9395115,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +582,0.9999999403953552,1163,CPS_Early_Childhood_Portal_scrape.csv, Marcy Newberry Association - Newberry Center,1073 W Maxwell St ,,8297555,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +583,0.9999998581125651,1164,CPS_Early_Childhood_Portal_scrape.csv, South East Asia Center - South East Asia Center(Foster),1112 W Foster Ave ,,,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +10,0.9999999403953552,1165,CPS_Early_Childhood_Portal_scrape.csv, South East Asia Center - South-East Asia Center(Ainslie),1124 W Ainslie St ,,9897433,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +16,0.9999999338745837,1166,CPS_Early_Childhood_Portal_scrape.csv, Marcy Newberry Association - FOSCO ABLA Center,1312 S Racine Ave ,,7466024,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +16,0.9999999338745837,1167,CPS_Early_Childhood_Portal_scrape.csv, Marcy Newberry Association - FOSCO ABLA Center,1312 S Racine Ave ,,7466024,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +584,0.9999999211504664,1168,CPS_Early_Childhood_Portal_scrape.csv, Erie Neighborhood House - Erie House,1347 W Erie St ,,6663460,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1058,1.0,1169,CPS_Early_Childhood_Portal_scrape.csv, Karen Cruz Children's Center - Karen Cruz Children's Center,1507 W Sunnyside Ave ,,7281777,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1059,1.0,1170,CPS_Early_Childhood_Portal_scrape.csv, Better Boys Foundation - Better Boys Fndn Family Service,1512 S Pulaski St ,,2779582,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +23,0.9999999403953552,1171,CPS_Early_Childhood_Portal_scrape.csv, Marcy Newberry Association - Marcy Center,1539 S Springfield Ave ,,7612300,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +23,0.9999999403953552,1172,CPS_Early_Childhood_Portal_scrape.csv, Marcy Newberry Association - Marcy Center,1539 S Springfield Ave ,,7612300,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +28,0.9999999609796005,1173,CPS_Early_Childhood_Portal_scrape.csv, Chicago Commons Association - Paulo Freire,1653 W 43rd St ,,8262669,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +29,0.9999999403953552,1174,CPS_Early_Childhood_Portal_scrape.csv, Erie Neighborhood House - Erie Community Center,1701 W Superior St ,,5635800,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +36,0.999999926999517,1175,CPS_Early_Childhood_Portal_scrape.csv, Chicago Commons Association - Guadalupano Family Center,1814 S Paulina St ,,6663883,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +36,0.999999926999517,1176,CPS_Early_Childhood_Portal_scrape.csv, Chicago Commons Association - Guadalupano Family Center,1814 S Paulina St ,,6663883,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +37,0.9999999403953552,1177,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - McCormick Tribune- YMCA,1834 N Lawndale Ave ,,2352525,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +585,0.999999842300933,1178,CPS_Early_Childhood_Portal_scrape.csv, Gads Hill Center - Gads Hill Center/Cullerton,1919 W Cullerton St ,,2260963,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +40,0.9999999403953552,1179,CPS_Early_Childhood_Portal_scrape.csv, North Avenue Day Nursery - North Avenue Day Nursery,2001 W Pierce Ave ,,3424499,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +42,0.9999999501311764,1180,CPS_Early_Childhood_Portal_scrape.csv, Chinese American Service League - Chinese American Service League,2141 S Tan Ct ,,7910418,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +42,0.9999999501311764,1181,CPS_Early_Childhood_Portal_scrape.csv, Chinese American Service League - Chinese American Service League,2141 S Tan Ct ,,7910418,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +44,0.9999999200319775,1182,CPS_Early_Childhood_Portal_scrape.csv, El Hogar del Nino/Cuidar - El Hogar del Nino/Cuidar- California,2325 S California Ave ,,5231629,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +44,0.9999999200319775,1183,CPS_Early_Childhood_Portal_scrape.csv, El Hogar del Nino/Cuidar - El Hogar del Nino/Cuidar- California,2325 S California Ave ,,5231629,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +48,0.9999999403953552,1184,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - Our Lady of Tepeyac,2414 S Albany Ave ,,2775888,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +48,0.9999999403953552,1185,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - Our Lady of Tepeyac,2414 S Albany Ave ,,2775888,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +51,0.9999999403953552,1186,CPS_Early_Childhood_Portal_scrape.csv, Christopher House - Christopher House - Greenview,2507 N Greenview Ave ,,4721083,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +586,0.9999999057567817,1187,CPS_Early_Childhood_Portal_scrape.csv, Erie Neighborhood House - Charter School - Cortez,2510 W Cortez St ,,4867161,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +52,0.9999999115920247,1188,CPS_Early_Childhood_Portal_scrape.csv, Christopher House - Christopher House - Logan Square,2610 N Francisco Ave ,,2354073,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1060,1.0,1189,CPS_Early_Childhood_Portal_scrape.csv, Hull House Association - Hull House School Age,2625 N Orchard St ,,5299730,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +192,0.9999999196291134,1190,CPS_Early_Childhood_Portal_scrape.csv, Gads Hill Center - Sinai Community/Ogden,2653 W Ogden Ave ,,5211196,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +192,0.9999999196291134,1191,CPS_Early_Childhood_Portal_scrape.csv, Gads Hill Center - Sinai Community/Ogden,2653 W Ogden Ave ,,5211196,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +54,0.9999999403953552,1192,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - Rauner,2700 S Western Ave ,,8473115,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +54,0.9999999403953552,1193,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - Rauner,2700 S Western Ave ,,8473115,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1061,1.0,1194,CPS_Early_Childhood_Portal_scrape.csv, Boys and Girls Clubs of Chicago - Little Village,2801 S Ridgeway Ave ,,7626100,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +65,0.9999999403953552,1195,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - South Chicago YMCA,3039 E 91st St ,,7219100,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +72,0.9999999002623526,1196,CPS_Early_Childhood_Portal_scrape.csv, Christopher House - Christoper House - Logan Square,3255 W Altgeld St ,,2354073,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +74,0.9999999448168219,1197,CPS_Early_Childhood_Portal_scrape.csv, Albany Park Community Center - Albany Park Day Care - Ainslie,3401 W Ainslie St ,,5395907,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +77,0.9999999403953552,1198,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - North Lawndale YMCA,3449 W Arthington St ,,6380773,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +77,0.9999999403953552,1199,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - North Lawndale YMCA,3449 W Arthington St ,,6380773,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +587,0.9999999403953552,1200,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - Wabash YMCA,3763 S Wabash Ave ,,2850020,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +588,0.9999999655872422,1201,CPS_Early_Childhood_Portal_scrape.csv, Abraham Lincoln Centre - Abraham Lincoln Center,3858 S Cottage Grove Ave ,,3736600,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +85,0.99999994,1202,CPS_Early_Childhood_Portal_scrape.csv, Grant Creative Learning Center - Grant Day Care Center,4025 S Drexel St ,,2858440,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +87,0.9999999448168219,1203,CPS_Early_Childhood_Portal_scrape.csv, Korean American Community Services - Korean American Community Services,4300 N California Ave ,,5838281,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +88,0.9999998807907104,1204,CPS_Early_Childhood_Portal_scrape.csv, Centers For New Horizons - Effie Ellis,4301 S Cottage Grove Ave ,,,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +589,0.9999999,1205,CPS_Early_Childhood_Portal_scrape.csv, Hull House Association - LeClaire Hearst / Hull House Association,4340 S Lamon Ave ,,7671516,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +93,0.9999999187725611,1206,CPS_Early_Childhood_Portal_scrape.csv, Hull House Association - Uptown West / Hull House,4520 N Beacon St ,,5613500,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +590,0.9999998807907104,1207,CPS_Early_Childhood_Portal_scrape.csv, Firman Community Services - Firman House II SA (21st Century CLC),4644 S Dearborn St ,,3733400,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +98,0.9999999230507345,1208,CPS_Early_Childhood_Portal_scrape.csv, Christopher House - Christopher House - Uptown,4701 N Winthrop Ave ,,7694540,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +591,0.9999999,1209,CPS_Early_Childhood_Portal_scrape.csv, Gads Hill Center - Cesar Chavez Element,4747 S Marshfield St ,,,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +99,0.9999999403953552,1210,CPS_Early_Childhood_Portal_scrape.csv, Hull House Association - Lincoln Square / Hull House,4754 N Leavitt St ,,8788651,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +100,0.999999915706303,1211,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - St. Joseph,4800 S Paulina St ,,9272524,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1062,1.0,1212,CPS_Early_Childhood_Portal_scrape.csv, Boys and Girls Clubs of Chicago - McCormick,4835 N Sheridan Rd ,,9890222,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +102,0.9999999403953552,1213,CPS_Early_Childhood_Portal_scrape.csv, Firman Community Services - Firman House East,4910 S Dr. Martin Luther King Dr ,,3732083,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +104,0.9999999403953552,1214,CPS_Early_Childhood_Portal_scrape.csv, Appeal for Charities and Goodwill - Appeal for Charities,50 W 71st St ,,6515400,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +211,0.999999926999517,1215,CPS_Early_Childhood_Portal_scrape.csv, Hull House Association - Parkway Community Center / Hull House,500 E 67th St ,,4931306,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +106,0.9999999483808635,1216,CPS_Early_Childhood_Portal_scrape.csv," Douglass-Tubman Youth Ministries,Inc. - Douglass-Tubman Child Development Center",5010 W Chicago Ave ,,6266581,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +213,0.9999998667199625,1217,CPS_Early_Childhood_Portal_scrape.csv, South East Asia Center - South-East Asia Center(Broadway),5120 N Broadway Ave ,,,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +113,0.9999998611253804,1218,CPS_Early_Childhood_Portal_scrape.csv, Onward Neighborhood House - Belmont-Cragin,5423 W Diversey ,,,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +119,0.9999999403953552,1219,CPS_Early_Childhood_Portal_scrape.csv, Onward Neighborhood House - Onward Neighborhood House,600 N Leavitt St ,,6666726,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +120,0.9999998581125651,1220,CPS_Early_Childhood_Portal_scrape.csv," Heartland Alliance for Human Needs & Rights - Heartland Human Care Services, Inc",615 W Wellington Ave ,,,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +124,0.9999999538304407,1221,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - South Side YMCA,6330 S Stony Island Ave ,,9470700,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +126,0.9999999057567817,1222,CPS_Early_Childhood_Portal_scrape.csv, Woodlawn A.M.E. Church - Woodlawn A.M.E.,6456 S Evans Ave ,,6671402,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +137,0.9999999634997585,1223,CPS_Early_Childhood_Portal_scrape.csv, Chicago Commons Association - Nia Family Center,744 N Monticello Ave ,,8266971,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +139,0.9999999681399773,1224,CPS_Early_Childhood_Portal_scrape.csv, Chicago Youth Centers - Rebecca K. Crown / CYC,7601 S Phillips Ave ,,6481550,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +0,0.9999999311744846,1225,CPS_Early_Childhood_Portal_scrape.csv, Salvation Army - Temple / Salvation Army,1 N Ogden Ave ,,2262649,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +0,0.9999999311744846,1226,CPS_Early_Childhood_Portal_scrape.csv, Salvation Army - Temple / Salvation Army,1 N Ogden Ave ,,2262649,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1,0.999999926999517,1227,CPS_Early_Childhood_Portal_scrape.csv, National Louis University - Dr. Effie O. Ellis Training Center,10 S Kedzie Ave ,,5339011,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1,0.999999926999517,1228,CPS_Early_Childhood_Portal_scrape.csv, National Louis University - Dr. Effie O. Ellis Training Center,10 S Kedzie Ave ,,5339011,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +3,0.9999999501311764,1229,CPS_Early_Childhood_Portal_scrape.csv, Easter Seals Society of Metropolitan Chicago - Gilchrist-Marchman,1001 W Roosevelt Rd ,,9395115,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +3,0.9999999501311764,1230,CPS_Early_Childhood_Portal_scrape.csv, Easter Seals Society of Metropolitan Chicago - Gilchrist-Marchman,1001 W Roosevelt Rd ,,9395115,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +7,0.9999999018008148,1231,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - Cordia Marian,1100 S May St ,,6663787,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +7,0.9999999018008148,1232,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - Cordia Marian,1100 S May St ,,6663787,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +9,0.9999999403953552,1233,CPS_Early_Childhood_Portal_scrape.csv, Bethel New Life - Molade Child Development Center,1120 N Lamon Ave ,,6267760,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +10,0.9999999403953552,1234,CPS_Early_Childhood_Portal_scrape.csv, South East Asia Center - South-East Asia Center(Ainslie),1124 W Ainslie St ,,9897433,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +11,0.9999999403953552,1235,CPS_Early_Childhood_Portal_scrape.csv, Ada S. McKinley Community Services - McKinley - Roseland,11410 S Edbrooke Ave ,,4681918,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +11,0.9999999403953552,1236,CPS_Early_Childhood_Portal_scrape.csv, Ada S. McKinley Community Services - McKinley - Roseland,11410 S Edbrooke Ave ,,4681918,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +16,0.9999999338745837,1237,CPS_Early_Childhood_Portal_scrape.csv, Marcy Newberry Association - FOSCO ABLA Center,1312 S Racine Ave ,,7466024,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +16,0.9999999338745837,1238,CPS_Early_Childhood_Portal_scrape.csv, Marcy Newberry Association - FOSCO ABLA Center,1312 S Racine Ave ,,7466024,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +18,0.9999999403953552,1239,CPS_Early_Childhood_Portal_scrape.csv, Abraham Lincoln Centre - Hope Presbyterian Church,1354 W 61st St ,,4715100,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +19,0.9999999178406671,1240,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - Our Lady of Lourdes,1449 S Keeler Ave ,,5213126,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +19,0.9999999178406671,1241,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - Our Lady of Lourdes,1449 S Keeler Ave ,,5213126,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +23,0.9999999403953552,1242,CPS_Early_Childhood_Portal_scrape.csv, Marcy Newberry Association - Marcy Center,1539 S Springfield Ave ,,7612300,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +23,0.9999999403953552,1243,CPS_Early_Childhood_Portal_scrape.csv, Marcy Newberry Association - Marcy Center,1539 S Springfield Ave ,,7612300,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +26,0.9999999211504664,1244,CPS_Early_Childhood_Portal_scrape.csv, Chicago Commons Association - Taylor Center for New Experiences,1633 N Hamlin Ave ,,2278551,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +28,0.9999999609796005,1245,CPS_Early_Childhood_Portal_scrape.csv, Chicago Commons Association - Paulo Freire,1653 W 43rd St ,,8262669,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +29,0.9999999403953552,1246,CPS_Early_Childhood_Portal_scrape.csv, Erie Neighborhood House - Erie Community Center,1701 W Superior St ,,5635800,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +36,0.999999926999517,1247,CPS_Early_Childhood_Portal_scrape.csv, Chicago Commons Association - Guadalupano Family Center,1814 S Paulina St ,,6663883,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +36,0.999999926999517,1248,CPS_Early_Childhood_Portal_scrape.csv, Chicago Commons Association - Guadalupano Family Center,1814 S Paulina St ,,6663883,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +37,0.9999999403953552,1249,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - McCormick Tribune- YMCA,1834 N Lawndale Ave ,,2352525,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +40,0.9999999403953552,1250,CPS_Early_Childhood_Portal_scrape.csv, North Avenue Day Nursery - North Avenue Day Nursery,2001 W Pierce Ave ,,3424499,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +42,0.9999999501311764,1251,CPS_Early_Childhood_Portal_scrape.csv, Chinese American Service League - Chinese American Service League,2141 S Tan Ct ,,7910418,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +42,0.9999999501311764,1252,CPS_Early_Childhood_Portal_scrape.csv, Chinese American Service League - Chinese American Service League,2141 S Tan Ct ,,7910418,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +49,0.9999999403953552,1253,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - High Ridge YMCA,2424 W Touhy Ave ,,2628300,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +50,0.9999998718153645,1254,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Carlos Cantu,2434 S Kildare Ave ,,,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +50,0.9999998718153645,1255,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Carlos Cantu,2434 S Kildare Ave ,,,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +51,0.9999999403953552,1256,CPS_Early_Childhood_Portal_scrape.csv, Christopher House - Christopher House - Greenview,2507 N Greenview Ave ,,4721083,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +53,0.9999999403953552,1257,CPS_Early_Childhood_Portal_scrape.csv, St. Augustine College - St. Augustine - Nayarit,2610 W 25th Pl ,,8783641,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +53,0.9999999403953552,1258,CPS_Early_Childhood_Portal_scrape.csv, St. Augustine College - St. Augustine - Nayarit,2610 W 25th Pl ,,8783641,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +192,0.9999999196291134,1259,CPS_Early_Childhood_Portal_scrape.csv, Gads Hill Center - Sinai Community/Ogden,2653 W Ogden Ave ,,5211196,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +192,0.9999999196291134,1260,CPS_Early_Childhood_Portal_scrape.csv, Gads Hill Center - Sinai Community/Ogden,2653 W Ogden Ave ,,5211196,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +54,0.9999999403953552,1261,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - Rauner,2700 S Western Ave ,,8473115,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +54,0.9999999403953552,1262,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - Rauner,2700 S Western Ave ,,8473115,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +57,0.9999999294748332,1263,CPS_Early_Childhood_Portal_scrape.csv, Mary Crane League - Mary Crane - West,2820 N Leavitt St ,,3485528,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +59,0.9999999496248808,1264,CPS_Early_Childhood_Portal_scrape.csv, Mary Crane League - Mary Crane - North,2905 N Leavitt St ,,9753322,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +63,0.9999999089524012,1265,CPS_Early_Childhood_Portal_scrape.csv, Mary Crane League - Mary Crane - East,2974 N Clybourn Ave ,,3485528,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +65,0.9999999403953552,1266,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - South Chicago YMCA,3039 E 91st St ,,7219100,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +69,0.9999999483808635,1267,CPS_Early_Childhood_Portal_scrape.csv, Metropolitan Family Services - Midway Children's Center (Chicago Lawn),3215 W 63rd St ,,8842350,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +74,0.9999999448168219,1268,CPS_Early_Childhood_Portal_scrape.csv, Albany Park Community Center - Albany Park Day Care - Ainslie,3401 W Ainslie St ,,5395907,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +77,0.9999999403953552,1269,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - North Lawndale YMCA,3449 W Arthington St ,,6380773,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +77,0.9999999403953552,1270,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - North Lawndale YMCA,3449 W Arthington St ,,6380773,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +79,0.9999999403953552,1271,CPS_Early_Childhood_Portal_scrape.csv, Centers For New Horizons - Ida B. Wells Learning Center,3601 S Rhodes St ,,3733640,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +80,0.9999999403953552,1272,CPS_Early_Childhood_Portal_scrape.csv, Firman Community Services - Firman House West,37 W 47th St ,,3733400,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +82,0.999999915706303,1273,CPS_Early_Childhood_Portal_scrape.csv, Ada S. McKinley Community Services - McKinley - St. Thomas,3801 S Wabash Ave ,,2850617,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +83,0.9999999538304407,1274,CPS_Early_Childhood_Portal_scrape.csv, Centers For New Horizons - Edison L. Hoard Learning Center,3901 S State St ,,5362187,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +86,0.9999999403953552,1275,CPS_Early_Childhood_Portal_scrape.csv, Salvation Army - New Hope / Salvation Army,4255 W Division St ,,7224908,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +87,0.9999999448168219,1276,CPS_Early_Childhood_Portal_scrape.csv, Korean American Community Services - Korean American Community Services,4300 N California Ave ,,5838281,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +88,0.9999998807907104,1277,CPS_Early_Childhood_Portal_scrape.csv, Centers For New Horizons - Effie Ellis,4301 S Cottage Grove Ave ,,,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +89,0.9999999057567817,1278,CPS_Early_Childhood_Portal_scrape.csv, Ada S. McKinley Community Services - Maggie Drummond Day Care,4301 S Wabash Ave ,,3738200,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +90,0.9999999403953552,1279,CPS_Early_Childhood_Portal_scrape.csv, Abraham Lincoln Centre - Lincoln - King,4314 S Cottage Grove Ave ,,7472310,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +91,0.999999946687985,1280,CPS_Early_Childhood_Portal_scrape.csv, Hull House Association - Leclaire-Ryder Day Care / Hull House,4410 S Laporte Ave ,,7675170,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +93,0.9999999187725611,1281,CPS_Early_Childhood_Portal_scrape.csv, Hull House Association - Uptown West / Hull House,4520 N Beacon St ,,5613500,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +96,0.999999915706303,1282,CPS_Early_Childhood_Portal_scrape.csv, Home of Life Community Dev. Corp. - Home of Life Just For You,4647 W Washington Blvd ,,6268655,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +97,0.999999913112046,1283,CPS_Early_Childhood_Portal_scrape.csv, Home of Life Community Dev. Corp. - Home of Life Community Development,4650 W Madison St ,,6268655,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +98,0.9999999230507345,1284,CPS_Early_Childhood_Portal_scrape.csv, Christopher House - Christopher House - Uptown,4701 N Winthrop Ave ,,7694540,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +99,0.9999999403953552,1285,CPS_Early_Childhood_Portal_scrape.csv, Hull House Association - Lincoln Square / Hull House,4754 N Leavitt St ,,8788651,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +211,0.999999926999517,1286,CPS_Early_Childhood_Portal_scrape.csv, Hull House Association - Parkway Community Center / Hull House,500 E 67th St ,,4931306,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +105,0.9999999403953552,1287,CPS_Early_Childhood_Portal_scrape.csv, Salvation Army - Columbus Park / Salvation Army,500 S Central Ave ,,9214162,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +110,0.9999999192949295,1288,CPS_Early_Childhood_Portal_scrape.csv, Trinity United Church of Christ - Trinity United,532 W 95th St ,,4883511,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +111,0.9999999187725611,1289,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - Grace Mission,5332 S Western Ave ,,4761990,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +112,0.9999999513330113,1290,CPS_Early_Childhood_Portal_scrape.csv, Firman Community Services - Firman House South,5401 S Wentworth Ave ,,4513400,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +113,0.9999998611253804,1291,CPS_Early_Childhood_Portal_scrape.csv, Onward Neighborhood House - Belmont-Cragin,5423 W Diversey ,,,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +117,0.9999999246054253,1292,CPS_Early_Childhood_Portal_scrape.csv," Trinity Resources Unlimited, Inc. - Hope for Youth",5900 W Iowa St ,,6260323,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +119,0.9999999403953552,1293,CPS_Early_Childhood_Portal_scrape.csv, Onward Neighborhood House - Onward Neighborhood House,600 N Leavitt St ,,6666726,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +120,0.9999998581125651,1294,CPS_Early_Childhood_Portal_scrape.csv," Heartland Alliance for Human Needs & Rights - Heartland Human Care Services, Inc",615 W Wellington Ave ,,,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +121,0.9999999403953552,1295,CPS_Early_Childhood_Portal_scrape.csv, Centers For New Horizons - Washington Park South Learning Center,6225 S Wabash Ave ,,6672065,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +124,0.9999999538304407,1296,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - South Side YMCA,6330 S Stony Island Ave ,,9470700,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +127,0.9999999403953552,1297,CPS_Early_Childhood_Portal_scrape.csv, Board Trustees-City Colleges of Chicago - Kennedy-King College,6800 S Wentworth Ave ,,5533475,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +129,0.9999999311744846,1298,CPS_Early_Childhood_Portal_scrape.csv, Trinity United Church of Christ - Dr. Denton J. Brooks Center,6921 S Stony Island Ave ,,9552818,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +131,0.9999999403953552,1299,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - Garfield Head Start/Child Developmental Center- YMCA,7 N Homan Ave ,,2653900,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +132,0.999999915706303,1300,CPS_Early_Childhood_Portal_scrape.csv, Christopher House - Christopher House - Rogers Park,7059 N Greenview Ave ,,2745477,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +231,0.9999998807907104,1301,CPS_Early_Childhood_Portal_scrape.csv, Abraham Lincoln Centre - Donoghue,707 E 37th St ,,,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +134,0.999999926999517,1302,CPS_Early_Childhood_Portal_scrape.csv, Ada S. McKinley Community Services - McKinley - Howard,7222 S Exchange Ave ,,2219711,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +137,0.9999999634997585,1303,CPS_Early_Childhood_Portal_scrape.csv, Chicago Commons Association - Nia Family Center,744 N Monticello Ave ,,8266971,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +138,0.9999999356196254,1304,CPS_Early_Childhood_Portal_scrape.csv, Howard Area Community Center - Howard Area Community Center,7510 N Ashland Ave ,,7647610,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +142,0.999999926999517,1305,CPS_Early_Childhood_Portal_scrape.csv, Ada S. McKinley Community Services - McKinley - Wright Renaissance,7939 S Western Ave ,,4768805,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +145,0.999999915706303,1306,CPS_Early_Childhood_Portal_scrape.csv, South Central Community Services - South Central Community Services,8316 S Ellis Ave ,,4830900,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +146,0.9999999403953552,1307,CPS_Early_Childhood_Portal_scrape.csv, Marcy Newberry Association - South Harper Montessori,8358 S Stony Island Ave ,,7340375,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +147,0.999999926999517,1308,CPS_Early_Childhood_Portal_scrape.csv, Christopher House - Christopher House - Lakeshore,850 W Eastwood Ave ,,2719403,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +151,0.9999999403953552,1309,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - Our Lady of Guadalupe,9129 S Burley Ave ,,9785320,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +153,0.9999999403953552,1310,CPS_Early_Childhood_Portal_scrape.csv, Centers For New Horizons - Altgeld Gardens I,941 E 132nd Pl ,,4683055,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +153,0.9999999403953552,1311,CPS_Early_Childhood_Portal_scrape.csv, Centers For New Horizons - Altgeld Gardens I,941 E 132nd Pl ,,4683055,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +244,0.9999999578531515,1312,CPS_Early_Childhood_Portal_scrape.csv, Chicago State University - Chicago State University,9501 S Dr. Martin Luther King Dr ,,9952400,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +592,0.99999994,1313,CPS_Early_Childhood_Portal_scrape.csv, Skinner,111 S. Throop ,,5347790,,Tuition Based Preschool,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +385,0.9999999403953552,1314,CPS_Early_Childhood_Portal_scrape.csv, South Loop,1212 S. Plymouth ,,5348690,,Tuition Based Preschool,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +385,0.9999999403953552,1315,CPS_Early_Childhood_Portal_scrape.csv, South Loop,1212 S. Plymouth ,,5348690,,Tuition Based Preschool,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +407,0.9999999403953552,1316,CPS_Early_Childhood_Portal_scrape.csv, Blaine,1420 W. Grace ,,5345750,,Tuition Based Preschool,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +417,0.9999999403953552,1317,CPS_Early_Childhood_Portal_scrape.csv, Burley,1630 W. Barry ,,5345475,,Tuition Based Preschool,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +593,0.99999994,1318,CPS_Early_Childhood_Portal_scrape.csv, Hamilton,1650 W. Cornelia ,,5345484,,Tuition Based Preschool,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +594,0.99999994,1319,CPS_Early_Childhood_Portal_scrape.csv, Alcott,2625 N. Orchard ,,5345460,,Tuition Based Preschool,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +454,0.9999999403953552,1320,CPS_Early_Childhood_Portal_scrape.csv, Agassiz,2851 N. Seminary ,,5345725,,Tuition Based Preschool,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +463,0.9999999403953552,1321,CPS_Early_Childhood_Portal_scrape.csv, Nettelhorst,3252 N. Broadway ,,5345810,,Tuition Based Preschool,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +469,0.9999999403953552,1322,CPS_Early_Childhood_Portal_scrape.csv, Audubon,3500 N. Hoyne ,,5345470,,Tuition Based Preschool,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +478,0.9999999655872422,1323,CPS_Early_Childhood_Portal_scrape.csv, Disney Magnet II,3815 N. Kedvale ,,5358650,,Tuition Based Preschool,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +483,0.9999999403953552,1324,CPS_Early_Childhood_Portal_scrape.csv, Disney Magnet,4140 N. Marine Dr. ,,5345840,,Tuition Based Preschool,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +492,0.9999999403953552,1325,CPS_Early_Childhood_Portal_scrape.csv, Ravenswood,4332 N. Paulina St. ,,5345525,,Tuition Based Preschool,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +495,0.9999999403953552,1326,CPS_Early_Childhood_Portal_scrape.csv, Waters,4540 N. Campbell ,,5345090,,Tuition Based Preschool,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +520,0.9999999403953552,1327,CPS_Early_Childhood_Portal_scrape.csv, Ray,5631 S Kimbark ,,5350970,,Tuition Based Preschool,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +1063,1.0,1328,IDHS_child_care_provider_list.csv," Bloomington Day Care Center, Inc.","2708 East Lincoln Street, Bloomington",61704,6615600,"(309) +662-4202",,,8307-7891-7433-008,,,,,,,,,,,,,,,,,,,,,, +1064,1.0,1329,IDHS_child_care_provider_list.csv," Carole Robertson Center +for Learning",2020 West Roosevelt Road,60608,2437300,"(312) +243-1087",,,6391-8286-5433-002,,,,,,,,,,,,,,,,,,,,,, +1065,1.0,1330,IDHS_child_care_provider_list.csv, Casa Central,1343 North California Avenue,60622,6452368,"(773) +645-1432",,,5672-5795-5433-005,,,,,,,,,,,,,,,,,,,,,, +1066,1.0,1331,IDHS_child_care_provider_list.csv," Chicago Urban Day +School",1248 West 69th Street Chicago,60636,4833555,"(773) +483-0150",,,3398-4665-5433-003,,,,,,,,,,,,,,,,,,,,,, +1067,1.0,1332,IDHS_child_care_provider_list.csv, ChildServ,8765 West Higgins Road Suite 450,60631,8677308,"(773) +693-0322",,,2935-8342-5433-002,,,,,,,,,,,,,,,,,,,,,, +1068,1.0,1333,IDHS_child_care_provider_list.csv," Child Care Center +of Evanston",1840 Asbury Avenue Evanston,60201,8692680,"(847) +869-2687",,,0305-2980-5433-002,,,,,,,,,,,,,,,,,,,,,, +1069,1.0,1334,IDHS_child_care_provider_list.csv," Childcare Network +of Evanston","1416 Lake Street, +Evanston",60201,4752661,"(847) +475-2699",,,7767-4532-7633-003,,,,,,,,,,,,,,,,,,,,,, +1070,1.0,1335,IDHS_child_care_provider_list.csv," Children's Center +of Tazewell County",210 North Thorncrest Drive Creve Coeur,61610,6996141,"(309) +699-5147",,,1281-8212-7433-003,,,,,,,,,,,,,,,,,,,,,, +1071,1.0,1336,IDHS_child_care_provider_list.csv, Children's Home & Aid Society of Illinois,125 South Wacker Drive 14th Floor,60606,4240200,"(312) +424-6200",,,4277-4401-5433-006,,,,,,,,,,,,,,,,,,,,,, +1072,1.0,1337,IDHS_child_care_provider_list.csv, Community Coordinated Child Care,"155 North 3rd Street +Suite 300 +DeKalb",60115,7588149,(815) 758-5652,,,3156-6336-5433-009,,,,,,,,,,,,,,,,,,,,,, +1073,1.0,1338,IDHS_child_care_provider_list.csv, Community Mennonite,3215 West 162nd Street Markham,60428,3331232,"(708) +333-1248",,,9237-3517-0633-007,,,,,,,,,,,,,,,,,,,,,, +1074,1.0,1339,IDHS_child_care_provider_list.csv, East Moline Citizens for Comm. Center,"489-27th Street, East Moline",61244,7555031,"(309) +755-5036",,,2987-4157-5433-004,,,,,,,,,,,,,,,,,,,,,, +1075,1.0,1340,IDHS_child_care_provider_list.csv," Educational +Day Care Center",330 West Michigan Avenue Jacksonville,62650,2435720,"(217) +243-5385",,,6813-5632-7433-006,,,,,,,,,,,,,,,,,,,,,, +595,1.0,1341,IDHS_child_care_provider_list.csv, Ezzard Charles,7946 South Ashland,60620,4870227,"(773) +487-0044",,,6525-2857-5433-002,,,,,,,,,,,,,,,,,,,,,, +1076,1.0,1342,IDHS_child_care_provider_list.csv," First Step +Day¬¨‚ĆCare Center","1300 Pearl Street +Belvidere", 6100,5446560,"(815) +544-6560",,,6896-1416-5433-006,,,,,,,,,,,,,,,,,,,,,, +1077,1.0,1343,IDHS_child_care_provider_list.csv," Geneseo Development +& Growth, Inc.","541 East North Street +P.O. Box 172 +Geneseo",61254,9445024,"(309) +945-4103",,,2596-3557-5433-004,,,,,,,,,,,,,,,,,,,,,, +1078,1.0,1344,IDHS_child_care_provider_list.csv," Highland Park Comm. Nursery School +& Day Care Center","1850 Green Bay Road +Highland Park",60035,4323301,"(847) +432-3308",,,2592-0023-5433-000,,,,,,,,,,,,,,,,,,,,,, +1079,1.0,1345,IDHS_child_care_provider_list.csv, Human Development Corporation,"142 East 154th Street +Harvey",60426,3394449,"(708) +339-8513",,,1316-0598-5433-003,,,,,,,,,,,,,,,,,,,,,, +1080,1.0,1346,IDHS_child_care_provider_list.csv," Improved Child Care +Mgt. Services, Inc.","520 North Halsted Street Suite 412 +Chicago",60642,7370231,"(773) +737-7009",,,7483-8223-6433-005,,,,,,,,,,,,,,,,,,,,,, +1081,1.0,1347,IDHS_child_care_provider_list.csv," Just Kids Child Care, Inc.","1800 West¬¨‚Ć1st Street +¬¨‚ĆP.O. Box 410 +Mlian",61264,7876303,"(309) +787-6375",,,1640-4249-5433-009,,,,,,,,,,,,,,,,,,,,,, +1082,1.0,1348,IDHS_child_care_provider_list.csv, Kiddie Kollege of Fairfield,"2226 Mt. Vernon Road +P.O. Box 362 +Fairfield",62837,8477102,"(618) +847-7212",,,3125-2563-7433-009,,,,,,,,,,,,,,,,,,,,,, +596,1.0,1349,IDHS_child_care_provider_list.csv, Marillac Social Center,212 South Francisco Street,60612,5843232,"(773) +722-1469",,,0350-8270-5433-000,,,,,,,,,,,,,,,,,,,,,, +597,1.0,1350,IDHS_child_care_provider_list.csv, Mary Crane League,2974 North Clybourn Avenue,60618,9388157,"(773) +325-2530",,,9356-4723-5433-005,,,,,,,,,,,,,,,,,,,,,, +1083,1.0,1351,IDHS_child_care_provider_list.csv, McDonough County Council for Child Development DBA Wee Care Macomb,425 North Prairie Avenue Macomb,61455,8335267,"(309) +837-5751",,,3316-0591-7433-001,,,,,,,,,,,,,,,,,,,,,, +1084,1.0,1352,IDHS_child_care_provider_list.csv," Northwest Suburban +Day Care Center","1755 Howard Street +DesPlaines",60018,2995103,"(847) +299-1070",,,4955-5565-5433-000,,,,,,,,,,,,,,,,,,,,,, +598,1.0,1353,IDHS_child_care_provider_list.csv, Northwestern University Settlement,1400 West Augusta Blvd.,60642,2787471,"(773) +278-7536",,,5701-4911-5433-005,,,,,,,,,,,,,,,,,,,,,, +1085,1.0,1354,IDHS_child_care_provider_list.csv," Oak Park/River Forest +Day Nursery","1139 Randolph Steet +Oak Park",60302,3838211,"(708) +383-0692",,,9300-0813-5433-003,,,,,,,,,,,,,,,,,,,,,, +1086,1.0,1355,IDHS_child_care_provider_list.csv, One Hope United,"P.O. Box 1128 +Lake Villa",60046,2456559,"(847) +245-6715",,,8581-4703-5433-004,,,,,,,,,,,,,,,,,,,,,, +1087,1.0,1356,IDHS_child_care_provider_list.csv," Ounce of Prevention Fund, Inc.","33 West Monroe Street, Suite 2400",60603,9223863,"(312) +922-3337",,,3985-7887-5433-003,,,,,,,,,,,,,,,,,,,,,, +1088,1.0,1357,IDHS_child_care_provider_list.csv," Paxton Day Care +Center",200 North Elm Street Paxton,60957,3793865,"(217) +379-6205",,,7766-4691-7433-009,,,,,,,,,,,,,,,,,,,,,, +1089,1.0,1358,IDHS_child_care_provider_list.csv, Pillars,"333 North LaGrange¬¨‚Ć +LaGrange Park",60957,9953500,,,,7064-6764-9133-063,,,,,,,,,,,,,,,,,,,,,, +1090,1.0,1359,IDHS_child_care_provider_list.csv, Rockford Day Nursery,2323 South 6th Street Rockford,61104,9620834,"(815) +962-0838",,,8253-6253-5433-002,,,,,,,,,,,,,,,,,,,,,, +1091,1.0,1360,IDHS_child_care_provider_list.csv," Skip-A-Long +Daycare Center, Inc.","4800-60th Street +Moline",61265,7648110,"(309) +764-8281",,,7108-7395-5433-001,,,,,,,,,,,,,,,,,,,,,, +599,1.0,1361,IDHS_child_care_provider_list.csv," St. Vincent DePaul +Center -Halsted",2145 North Halsted Street,60614,9436776,"(312) +573-0646",,,7611-0607-4433-007,,,,,,,,,,,,,,,,,,,,,, +1092,1.0,1362,IDHS_child_care_provider_list.csv," Streator Child +Development Center",405 Chicago Street Streator,61364,6724350,"(815) +672-4784",,,0858-7317-0633-006,,,,,,,,,,,,,,,,,,,,,, +1093,1.0,1363,IDHS_child_care_provider_list.csv," Thornton Township +High School District +205 - Infant Care",465 East 170th Street South Holland,60473,2254118,"(708) +225-4088",,,1946-2627-6433-001,,,,,,,,,,,,,,,,,,,,,, +1094,1.0,1364,IDHS_child_care_provider_list.csv," Tri-Con Child Care Center, Inc.","425 Laurel Avenue +Highland Park",60035,4331450,"(847) +433-1749",,,9795-2875-5433-009,,,,,,,,,,,,,,,,,,,,,, +1095,1.0,1365,IDHS_child_care_provider_list.csv, YWCA of Elgin,"220 East Chicago Street +Elgin",60120,7427930,"(847) +742-8217",,,3498-6732-5433-003,,,,,,,,,,,,,,,,,,,,,, +1096,1.0,1366,IDHS_child_care_provider_list.csv, YWCA of Kankakee,1086 East Court Street Kankakee,60901,9334516,"(815) +935-0015",,,3261-3053-5433-005,,,,,,,,,,,,,,,,,,,,,, +212,0.9999999701976776,1367,chapin_ounce_providers_2011_071112.csv,"Ounce of Prevention Fund +(Directly Operated Programs) Educare","5044 S. Wabash Ave +",60615,9242334,,,,,"Ounce of Prevention Fund +(Directly Operated Programs)","Fuller Park, Grand Boulevard, Kenwood, New City, Oakland, Washington Park","64 +Early Head Start + +85 +Head Start + +","Early Head Start +Full Day/Full Year + +Head Start +Full Day/Full Year +",64,85,,,,,,,,,,,,,,,, +1097,1.0,1368,chapin_ounce_providers_2011_071112.csv,"Healthy Parents and Babies Program +(Directly Operated Programs) Hayes Center","4859 S. Wabash Ave. +2nd floor +",60615,3738670,,,,,"Healthy Parents and Babies Program +(Directly Operated Programs)","Grand Boulevard, Kenwood, Washington Park +Brighton Park +McKinley Park +West Humboldt Park ","57 +Early Head Start","Early Head Start +Services to Pregnant Women + +Early Head Start +Home Based",57,"-- + + + + +",,,,,,,,,,,,,,,, +88,0.999999913112046,1369,chapin_ounce_providers_2011_071112.csv,"Centers for New Horizons +(Partner) Effie Ellis II Early Care & Education Center +","4301 S. Cottage Grove +",60653,5489839,,,,,"Centers for New Horizons +(Partner)","Grand Boulevard, Kenwood, Washington Park","40 +Early Head Start","Early Head Start +Full Day/Full Year",40,"-- +",,,,,,,,,,,,,,,, +176,0.999999891177305,1370,chapin_ounce_providers_2011_071112.csv,"Children‚Äö√Ñ√¥s Place Association +(Partner) Family Center","1800 N Humboldt Blvd +",60647,3959193,,,,,"Children‚Äö√Ñ√¥s Place Association +(Partner)","Medically Fragile Families +City-Wide +","56 +Early Head Start + +38 +Head Start + +","EHS Full Day/Full Year + +HS Full Day/Full Year",32,38,,,,,,,,,,,,,,,, +1098,1.0,1371,chapin_ounce_providers_2011_071112.csv, EHS Home Based Program,"3059 W. Augusta +",60622,4754232,,,,,,,,EHS Home-Based,24,--,,,,,,,,,,,,,,,, +1099,1.0,1372,chapin_ounce_providers_2011_071112.csv,"SGA Youth and Family Services +(Partner) SGA EHS/HS Home Based Program ","4222 South Archer +",60632,4474356,,,,,"SGA Youth and Family Services +(Partner)","Brighton Park +McKinley +Park","72 +Early Head Start + +50 Head Start +","EHS Home-Based + +HS Home Based",72,50,,,,,,,,,,,,,,,, +600,0.9999999,1373,chapin_ounce_providers_2011_071112.csv,"Aunt Martha‚Äö√Ñ√¥s Youth Services +(Delegate) Park Forest","23485 Western Ave +Park Forest, IL 60466 +",,7472780,,,,,"Aunt Martha‚Äö√Ñ√¥s Youth Services +(Delegate)","Chicago Heights (Beacon Hill area), Crete, Park Forest, Richton Park, Riverdale, Steger +University Park +","260 +Head Start","Double Session + +Full Day/Full Year","-- + +-- +","142 + +20",,,,,,,,,,,,,,,, +1100,1.0,1374,chapin_ounce_providers_2011_071112.csv, Riverdale,"14424 Wentworth Ave +Riverdale, IL 60827 +",,8496019,,,,,,,,Double Session,"-- +",98,,,,,,,,,,,,,,,, +601,1.0,1375,chapin_ounce_providers_2011_071112.csv," +Casa Central +(Delegate) + + + + + +ABC Home Based Head Start"," +1349 N. California Ave +",60622,6452404,,,,," +Casa Central +(Delegate) + + + + +"," +Hermosa, Humboldt Park, Logan Square, West Town, Wicker Park "," +323 +Head Start"," +Home Based"," +-- +",120,,,,,,,,,,,,,,,, +1101,1.0,1376,chapin_ounce_providers_2011_071112.csv, Adolescent Parenting Program (APP) ,"1335 N. California Ave +",60622,6452300,,,,,,,,Home Based,"-- +",24,,,,,,,,,,,,,,,, +1102,1.0,1377,chapin_ounce_providers_2011_071112.csv, Casa Infantil,"2222 N. Kedzie Ave +",60647,7721170,,,,,,,,Full Day/Full Year,"-- +",57,,,,,,,,,,,,,,,, +1103,1.0,1378,chapin_ounce_providers_2011_071112.csv, Community Service Center,"1343 N. California Ave +",60622,6452300,,,,,,,,Full Day/Full Year,"-- +",54,,,,,,,,,,,,,,,, +1104,1.0,1379,chapin_ounce_providers_2011_071112.csv," Munoz Marin-Lowell Early Childhood Center +","3320 W. Evergreen Ave +",60651,7828459,,,,,,,,"Pre-K Partner +Double Session","-- +",68,,,,,,,,,,,,,,,, +175,0.9999998735594545,1380,chapin_ounce_providers_2011_071112.csv,"Children‚Äö√Ñ√¥s Home + Aid +(Delegate) + Englewood Child and Family Center","1701 W. 63rd St. +",60636,4766998,,,,,"Children‚Äö√Ñ√¥s Home + Aid +(Delegate) +","Englewood, +West Englewood, Humboldt Park, West Town ","216 +Head Start","Full Day/Full Year + +6 Hour Head Start + +Double Session ","-- + +-- + +-- +","34 + +68 + +30",,,,,,,,,,,,,,,, +1105,1.0,1381,chapin_ounce_providers_2011_071112.csv, Viva Family Center,"2516 W. Division +",60622,2529100,,,,,,,,Home Based,"-- +",84,,,,,,,,,,,,,,,, +1106,1.0,1382,chapin_ounce_providers_2011_071112.csv,"One Hope United +(Delegate) Bridgeport Child Development Center I","3053 S. Normal Ave. +",60616,8425566,,,,,"One Hope United +(Delegate)","Bridgeport, Morgan Park, Edgewater, Rogers Park, Uptown","170 +Head Start",Full Day/Full Year,"-- +",100,,,,,,,,,,,,,,,, +602,1.0,1383,chapin_ounce_providers_2011_071112.csv, Bridgeport Child Development Center II,"514 W. 31st St. +",60616,9494015,,,,,,,,Full Day/Full Year,"-- +",40,,,,,,,,,,,,,,,, +1107,1.0,1384,chapin_ounce_providers_2011_071112.csv, Edgewater Early Learning Center,"5244 N. Lakewood St. +",60640,9070278,,,,,,,,Full Day/Full Year,"-- +",30,,,,,,,,,,,,,,,, +588,1.0,1385,chapin_dfss_providers_2011_070212.csv,ABRAHAM LINCOLN CENTRE ABRAHAM-LINCOLN,3858 S COTTAGE GROVE ,60653,2851390,,,,,,,ABRAHAM LINCOLN CENTRE,OAKLAND,,,,,Charles Ann Stewart,Yes,No,Yes,2749SA(School Age (SA)),,,,,,,,, +130,0.9999999496248808,1386,chapin_dfss_providers_2011_070212.csv,ABRAHAM LINCOLN CENTRE LINCOLN ROSELAND,7 E 119TH ST ,60628,2647633,,,,,,,ABRAHAM LINCOLN CENTRE,WEST PULLMAN,,,,,Barbara Woods,Yes,No,No,3175PS(HS Collaboration with Childcare & PreK),,,,,,,,, +90,0.9999999356196254,1387,chapin_dfss_providers_2011_070212.csv,ABRAHAM LINCOLN CENTRE LINCOLN/KING,4314 S COTTAGE GROVE ,60653,7472310,,,,,,,ABRAHAM LINCOLN CENTRE,GRAND BOULEVARD,,,,,Joyce Wallace,Yes,No,No,7100PS(HS Collaboration with Childcare & PreK),,,,,,,,, +603,1.0,1388,chapin_dfss_providers_2011_070212.csv,ADA S. MCKINLEY COMMUNITY SERVICES ALBANY LOCATION,5954 S ALBANY ,60629,7377810,,,,,,,ADA S. MCKINLEY COMMUNITY SERVICES,CHICAGO LAWN,,,,,Mildred Burnside,Yes,No,No,,,,,,,,,, +604,1.0,1389,chapin_dfss_providers_2011_070212.csv,ADA S. MCKINLEY COMMUNITY SERVICES CHILDREN'S CENTER (HALSTED),12803 S HALSTED ,60628,2645171,,,,,,,ADA S. MCKINLEY COMMUNITY SERVICES,WEST PULLMAN,,,,,Olivia Ramsey,Yes,No,No,,,,,,,,,, +1108,1.0,1390,chapin_dfss_providers_2011_070212.csv,ADA S. MCKINLEY COMMUNITY SERVICES CHILDREN'S CENTER (WESTERN),7956 S WESTERN ,60620,4768805,,,,,,,ADA S. MCKINLEY COMMUNITY SERVICES,ASHBURN,,,,,Corlis Wright,Yes,No,No,,,,,,,,,, +605,1.0,1391,chapin_dfss_providers_2011_070212.csv,ADA S. MCKINLEY COMMUNITY SERVICES LITTLE GENIUS,11439 S MICHIGAN AVE ,60628,6298091,,,,,,,ADA S. MCKINLEY COMMUNITY SERVICES,ROSELAND,,,,,Melissa Carter,Yes,No,No,,,,,,,,,, +133,0.9999999026660227,1392,chapin_dfss_providers_2011_070212.csv,ADA S. MCKINLEY COMMUNITY SERVICES LITTLE HANDS,7146 S ASHLAND ,60636,4710662,,,,,,,ADA S. MCKINLEY COMMUNITY SERVICES,WEST ENGLEWOOD,,,,,Crystal Fielder,Yes,No,No,,,,,,,,,, +134,0.9999999513330113,1393,chapin_dfss_providers_2011_070212.csv,ADA S. MCKINLEY COMMUNITY SERVICES MCKINLEY-ERSULA HOWARD,7222 S EXCHANGE ,60649,2219711,,,,,,,ADA S. MCKINLEY COMMUNITY SERVICES,SOUTH SHORE,,,,,Stella Sweeten,Yes,No,No,"4357IT(Child Care IT Center), 7035PS(HS Collaboration with C",,,,,,,,, +89,0.9999999026660227,1394,chapin_dfss_providers_2011_070212.csv,ADA S. MCKINLEY COMMUNITY SERVICES MCKINLEY-MAGGIE DRUMMOND,4301 S WABASH ,60653,3738200,,,,,,,ADA S. MCKINLEY COMMUNITY SERVICES,GRAND BOULEVARD,,,,,Angie Fells,Yes,No,Yes,"4355IT(Child Care IT Center), 4355SA(School Age (SA)), 4355P",,,,,,,,, +11,0.9999999474336443,1395,chapin_dfss_providers_2011_070212.csv,ADA S. MCKINLEY COMMUNITY SERVICES MCKINLEY-ROSELAND,11410 S EDBROOKE ,60628,4681918,,,,,,,ADA S. MCKINLEY COMMUNITY SERVICES,ROSELAND,,,,,Anna Luna,Yes,No,No,7021PS(HS Collaboration with Childcare),,,,,,,,, +254,1.0,1396,chapin_dfss_providers_2011_070212.csv,ADA S. MCKINLEY COMMUNITY SERVICES MCKINLEY-TRUMBULL PARK,10530 S OGLESBY ,60617,9785341,,,,,,,ADA S. MCKINLEY COMMUNITY SERVICES,SOUTH DEERING,,,,,Damita Brown,Yes,No,No,7051PS(HS Collaboration with Childcare),,,,,,,,, +142,0.9999999356196254,1397,chapin_dfss_providers_2011_070212.csv,ADA S. MCKINLEY COMMUNITY SERVICES MCKINLEY-WRIGHT RENAISSANCE,7939 S WESTERN ,60620,4768805,,,,,,,ADA S. MCKINLEY COMMUNITY SERVICES,ASHBURN,,,,,Corllis Wright,Yes,Yes,Yes,"2708IT(Child Care IT Center), 2708PS(Child Care PS Center &",,,,,,,,, +606,1.0,1398,chapin_dfss_providers_2011_070212.csv,ADA S. MCKINLEY COMMUNITY SERVICES MONTESSORI ACADEMY,11025 S HALSTED AVE ,60628,2810069,,,,,,,ADA S. MCKINLEY COMMUNITY SERVICES,ROSELAND,,,,,,Yes,No,No,,,,,,,,,, +607,1.0,1399,chapin_dfss_providers_2011_070212.csv,ADA S. MCKINLEY COMMUNITY SERVICES STEPPING STONES CCC,1300 E 75TH ST ,60619,4930000,,,,,,,ADA S. MCKINLEY COMMUNITY SERVICES,SOUTH SHORE,,,,,Dr. Jones,Yes,No,No,,,,,,,,,, +74,0.9999999549431237,1400,chapin_dfss_providers_2011_070212.csv,ALBANY PARK COMMUNITY CENTER AINSLIE,3401 W AINSLIE ,60625,5395907,,,,,,,ALBANY PARK COMMUNITY CENTER,ALBANY PARK,,,,,John DeJulio,No,No,No,"2502PS(Child Care PS Center & State Pre-K), 2502SA(School Ag",,,,,,,,, +108,0.9999999578531515,1401,chapin_dfss_providers_2011_070212.csv,ALBANY PARK COMMUNITY CENTER KIMBALL,5121 N KIMBALL ,60625,5095657,,,,,,,ALBANY PARK COMMUNITY CENTER,NORTH PARK,,,,,Amy Labb,Yes,No,No,"3006HD(HS AM), 3007HD(HS PM), 6001IT(EHS), 2498PS(Child Care",,,,,,,,, +104,0.9999999538304407,1402,chapin_dfss_providers_2011_070212.csv,APPEAL FOR CHARITIES AND GOODWILL APPEALS FOR CHARITIES,50 W 71ST ST ,60621,6515400,,,,,,,APPEAL FOR CHARITIES AND GOODWILL,GREATER GRAND CROSSING,,,,,Charlotte Osei-Bonsu,Yes,No,No,"4354IT(Child Care IT Center), 4354SA(School Age (SA)), 4354P",,,,,,,,, +608,1.0,1403,chapin_dfss_providers_2011_070212.csv,BBF FAMILY SERVICES BBF FAMILY SERVICE,1512 S PULASKI ,60623,2779582,,,,,,,BBF FAMILY SERVICES,NORTH LAWNDALE,,,,,,No,No,No,2616SA(School Age (SA)),,,,,,,,, +609,1.0,1404,chapin_dfss_providers_2011_070212.csv,BEACON THERAPEUTIC BEACON THERAPEUTIC,1912 W 103RD ST ,60643,2981243,,,,,,,BEACON THERAPEUTIC,BEVERLY,,,,,Susan Reyna-Guerrero,No,Yes,No,,,,,,,,,, +610,1.0,1405,chapin_dfss_providers_2011_070212.csv,BOARD TRUSTEES-CITY COLLEGES OF CHICAGO DALEY COLLEGE,7500 S PULASKI RD ,60652,8387562,,,,,,,BOARD TRUSTEES-CITY COLLEGES OF CHICAGO,WEST LAWN,,,,,Maria Sanchez,Yes,No,No,4387PS(Child Care PS Center & State Pre-K),,,,,,,,, +611,1.0,1406,chapin_dfss_providers_2011_070212.csv,BOARD TRUSTEES-CITY COLLEGES OF CHICAGO KENNEDY-KING COLLEGE,710 W 65TH BUILDING Z ,60621,6025481,,,,,,,BOARD TRUSTEES-CITY COLLEGES OF CHICAGO,ENGLEWOOD,,,,,Guadalupe Pacias,Yes,No,No,"7048PS(HS Collaboration with Childcare & PreK), 4384PS(Child",,,,,,,,, +38,1.0,1407,chapin_dfss_providers_2011_070212.csv,BOARD TRUSTEES-CITY COLLEGES OF CHICAGO MALCOLM X COLLEGE,1900 W VAN BUREN ,60612,8507176,,,,,,,BOARD TRUSTEES-CITY COLLEGES OF CHICAGO,NEAR WEST SIDE,,,,,Ereyne Weekes,Yes,No,No,"7025PS (HS Collaboration with Childcare & PreK), 4385PS(Chil",,,,,,,,, +2,1.0,1408,chapin_dfss_providers_2011_070212.csv,BOARD TRUSTEES-CITY COLLEGES OF CHICAGO OLIVE-HARVEY COLLEGE,10001 S WOODLAWN ,60628,2916317,,,,,,,BOARD TRUSTEES-CITY COLLEGES OF CHICAGO,PULLMAN,,,,,Tiffany Carter,Yes,No,No,7056PS(HS Collaboration with Childcare & PreK),,,,,,,,, +12,1.0,1409,chapin_dfss_providers_2011_070212.csv,BOARD TRUSTEES-CITY COLLEGES OF CHICAGO TRUMAN COLLEGE,1145 W WILSON AVE ,60640,8784740,,,,,,,BOARD TRUSTEES-CITY COLLEGES OF CHICAGO,UPTOWN,,,,,Judi Gibian-Mennenga,Yes,No,No,"7099PS(HS Collaboration with Childcare & PreK), 4386PS(Child",,,,,,,,, +61,0.9999999544762006,1410,chapin_dfss_providers_2011_070212.csv,CAROLE ROBERTSON CENTER FOR LEARNING CAROLE ROBERTSON CENTER-2929,2929 W 19TH ST ,60623,5211600,,,,,,,CAROLE ROBERTSON CENTER FOR LEARNING,SOUTH LAWNDALE,,,,,Ruby Walker,Yes,Yes,No,,,,,,,,,, +81,0.9999999562621483,1411,chapin_dfss_providers_2011_070212.csv,CAROLE ROBERTSON CENTER FOR LEARNING CAROLE ROBERTSON CENTER - 3701(OGDEN),3701 W OGDEN ,60623,5228400,,,,,,,CAROLE ROBERTSON CENTER FOR LEARNING,NORTH LAWNDALE,,,,,Tracey Young,Yes,Yes,No,,,,,,,,,, +41,0.9999999578531515,1412,chapin_dfss_providers_2011_070212.csv,CAROLE ROBERTSON CENTER FOR LEARNING CAROLE ROBERTSON CENTER-2020,2020 W ROOSEVELT RD ,60608,2437300,,,,,,,CAROLE ROBERTSON CENTER FOR LEARNING,NEAR WEST SIDE,,,,,Betty Lee,No,Yes,No,,,,,,,,,, +1109,1.0,1413,chapin_dfss_providers_2011_070212.csv,CAROLE ROBERTSON CENTER FOR LEARNING FCCH-ANGELITA YUGSI,6447 S KNOX AVE ,60629,5211600,,,,,,,CAROLE ROBERTSON CENTER FOR LEARNING,CLEARING,,,,,Jolene Martin,Yes,No,No,"5931PS(HS Collaboration with Childcare Homes), 5931IP(EHS Co",,,,,,,,, +1110,1.0,1414,chapin_dfss_providers_2011_070212.csv,CAROLE ROBERTSON CENTER FOR LEARNING FCCH-ARACELI BASILE,2124 N CENTRAL PARK AVE ,60647,5211600,,,,,,,CAROLE ROBERTSON CENTER FOR LEARNING,LOGAN SQUARE,,,,,Jolene Martin,Yes,No,No,"5900PS(HS Collaboration with Childcare Homes), 5900IP(EHS Co",,,,,,,,, +247,0.9999999,1415,chapin_dfss_providers_2011_070212.csv,CAROLE ROBERTSON CENTER FOR LEARNING FCCH-AURORA NUNEZ,2701 W 18TH ST ,60608,5211600,,,,,,,CAROLE ROBERTSON CENTER FOR LEARNING,NORTH LAWNDALE,,,,,Jolene Martin,Yes,Yes,No,"5615PS(HS Collaboration with Childcare Homes), 5615IP(EHS Co",,,,,,,,, +1111,1.0,1416,chapin_dfss_providers_2011_070212.csv,CAROLE ROBERTSON CENTER FOR LEARNING FCCH-DARLENE MCGHEE,8055 S WOOD ,60620,9945193,,,,,,,CAROLE ROBERTSON CENTER FOR LEARNING,AUBURN GRESHAM,,,,,Jolene Martin,No,No,No,"6000PS(HS Collaboration with Childcare Homes), 6000IP(EHS Co",,,,,,,,, +246,0.9999998,1417,chapin_dfss_providers_2011_070212.csv,CAROLE ROBERTSON CENTER FOR LEARNING FCCH-DELONDIA MOTLEY,2252 S CENTRAL PARK AVE ,60623,5211600,,,,,,,CAROLE ROBERTSON CENTER FOR LEARNING,SOUTH LAWNDALE,,,,,Jolene Martin,No,No,No,"5617PS(HS Collaboration with Childcare Homes), 5617IP(EHS Co",,,,,,,,, +1112,1.0,1418,chapin_dfss_providers_2011_070212.csv,CAROLE ROBERTSON CENTER FOR LEARNING FCCH-ILEANA GONZALEZ,4250 W 81ST ST ,60652,5211600,,,,,,,CAROLE ROBERTSON CENTER FOR LEARNING,ASHBURN,,,,,Jolene Martin,Yes,No,No,"5606PS(HS Collaboration with Childcare Homes), 5606IP(EHS Co",,,,,,,,, +1113,1.0,1419,chapin_dfss_providers_2011_070212.csv,CAROLE ROBERTSON CENTER FOR LEARNING FCCH-KEMISHA ALLEN,6954 S FAIRFIELD ,60629,,,,,,,,CAROLE ROBERTSON CENTER FOR LEARNING,CHICAGO LAWN,,,,,Jolene Martin,No,No,No,5983PS(HS Collaboration with Childcare Homes),,,,,,,,, +1114,1.0,1420,chapin_dfss_providers_2011_070212.csv,CAROLE ROBERTSON CENTER FOR LEARNING FCCH-LINDA LEWIS,7312 S SAINT LAWRENCE AVE ,60619,2437225,,,,,,,CAROLE ROBERTSON CENTER FOR LEARNING,GREATER GRAND CROSSING,,,,,Jolene Martin,Yes,No,No,"6100PS(HS Collaboration with Childcare Homes), 6100IP(EHS Co",,,,,,,,, +1115,1.0,1421,chapin_dfss_providers_2011_070212.csv,CAROLE ROBERTSON CENTER FOR LEARNING FCCH-LUZ OROZCO,4546 W 67TH ST ,60629,,,,,,,,CAROLE ROBERTSON CENTER FOR LEARNING,WEST LAWN,,,,,Jolene Martin,Yes,No,No,"5975PS(HS Collaboration with Childcare Homes), 5975IP(EHS Co",,,,,,,,, +1116,1.0,1422,chapin_dfss_providers_2011_070212.csv,CAROLE ROBERTSON CENTER FOR LEARNING FCCH-MAGDELENA ORTEGA,2318 S HOYNE ,60608,,,,,,,,CAROLE ROBERTSON CENTER FOR LEARNING,LOWER WEST SIDE,,,,,Jolene Martin,Yes,No,No,"5616PS(HS Collaboration with Childcare Homes), 5616IP(EHS Co",,,,,,,,, +1117,1.0,1423,chapin_dfss_providers_2011_070212.csv,CAROLE ROBERTSON CENTER FOR LEARNING FCCH-MARIA CEPEDA,4500 S SAWYER AVE ,60632,,,,,,,,CAROLE ROBERTSON CENTER FOR LEARNING,BRIGHTON PARK,,,,,Jolene Martin,No,No,No,"5976PS(HS Collaboration with Childcare Homes), 5976IP(EHS Co",,,,,,,,, +1118,1.0,1424,chapin_dfss_providers_2011_070212.csv,CAROLE ROBERTSON CENTER FOR LEARNING FCCH-MARIA FLORES,3443 W 71ST ,60629,5211600,,,,,,,CAROLE ROBERTSON CENTER FOR LEARNING,CHICAGO LAWN,,,,,Jolene Martin,Yes,Yes,No,"5605PS(HS Collaboration with Childcare Homes), 5605IP(EHS Co",,,,,,,,, +245,0.9999999,1425,chapin_dfss_providers_2011_070212.csv,CAROLE ROBERTSON CENTER FOR LEARNING FCCH-MARIBELLA RODRIGUEZ,1012 N KEDVALE ST ,60608,5211600,,,,,,,CAROLE ROBERTSON CENTER FOR LEARNING,HUMBOLDT PARK,,,,,Jolene Martin,Yes,No,No,"5618PS(HS Collaboration with Childcare Homes), 5618IP(EHS Co",,,,,,,,, +1119,1.0,1426,chapin_dfss_providers_2011_070212.csv,CAROLE ROBERTSON CENTER FOR LEARNING FCCH-MARY MURPHY,5418 W JACKSON ST ,60644,5211600,,,,,,,CAROLE ROBERTSON CENTER FOR LEARNING,AUSTIN,,,,,Jolene Martin,No,No,No,"5614PS(HS Collaboration with Childcare Homes), 5614IP(EHS Co",,,,,,,,, +1120,1.0,1427,chapin_dfss_providers_2011_070212.csv,CAROLE ROBERTSON CENTER FOR LEARNING FCCH-MICHELLE PADILLA,7973 S KOLIN AVE ,60652,5211600,,,,,,,CAROLE ROBERTSON CENTER FOR LEARNING,ASHBURN,,,,,Jolene Martin,Yes,No,No,"5899PS(HS Collaboration with Childcare Homes), 5899IP(EHS Co",,,,,,,,, +1121,1.0,1428,chapin_dfss_providers_2011_070212.csv,CAROLE ROBERTSON CENTER FOR LEARNING FCCH-NORMA JACKSON,935 N MENARD ,60651,,,,,,,,CAROLE ROBERTSON CENTER FOR LEARNING,AUSTIN,,,,,Jolene Martin,Yes,Yes,No,"5897PS(HS Collaboration with Childcare Homes), 5897IP(EHS Co",,,,,,,,, +1122,1.0,1429,chapin_dfss_providers_2011_070212.csv,CAROLE ROBERTSON CENTER FOR LEARNING FCCH-PATRICIA HERNANDEZ,4958 S RACINE AVE ,60609,5381198,,,,,,,CAROLE ROBERTSON CENTER FOR LEARNING,NEW CITY,,,,,Jolene Martin,Yes,No,No,"5958PS(HS Collaboration with Childcare Homes), 5958IP(EHS Co",,,,,,,,, +1123,1.0,1430,chapin_dfss_providers_2011_070212.csv,CAROLE ROBERTSON CENTER FOR LEARNING FCCH-PATRICIA OROS,2826 W 40TH PL ,60623,5232223,,,,,,,CAROLE ROBERTSON CENTER FOR LEARNING,BRIGHTON PARK,,,,,Jolene Martin,Yes,No,No,"5954PS(HS Collaboration with Childcare Homes), 5954IP(EHS Co",,,,,,,,, +1124,1.0,1431,chapin_dfss_providers_2011_070212.csv,CAROLE ROBERTSON CENTER FOR LEARNING FCCH-RHONDA CULVERSON,3826 W 85TH STREET ,60629,5211600,,,,,,,CAROLE ROBERTSON CENTER FOR LEARNING,ASHBURN,,,,,Jolene Martin,No,No,No,"5928PS(HS Collaboration with Childcare Homes), 5926IP(EHS Co",,,,,,,,, +1125,1.0,1432,chapin_dfss_providers_2011_070212.csv,CAROLE ROBERTSON CENTER FOR LEARNING FCCH-ROBBIE ANTHONY,5916 W SUPERIOR ,60644,2974124,,,,,,,CAROLE ROBERTSON CENTER FOR LEARNING,AUSTIN,,,,,Jolene Martin,No,No,No,"6101PS(HS Collaboration with Childcare Homes), 6101IP(EHS Co",,,,,,,,, +1126,1.0,1433,chapin_dfss_providers_2011_070212.csv,CAROLE ROBERTSON CENTER FOR LEARNING FCCH-SONIA ARBOLEDA,4748 S TRIPP ,60632,2511600,,,,,,,CAROLE ROBERTSON CENTER FOR LEARNING,ARCHER HEIGHTS,,,,,Jolene Martin,Yes,No,No,"5601PS(HS Collaboration with Childcare Homes), 5601IP(EHS Co",,,,,,,,, +1127,1.0,1434,chapin_dfss_providers_2011_070212.csv,CAROLE ROBERTSON CENTER FOR LEARNING FCCH-SUSIE CANNON,5921 W RICE ,60651,3784342,,,,,,,CAROLE ROBERTSON CENTER FOR LEARNING,AUSTIN,,,,,Jolene Martin,Yes,Yes,No,"5904PS(HS Collaboration with Childcare Homes), 5904IP(EHS Co",,,,,,,,, +1128,1.0,1435,chapin_dfss_providers_2011_070212.csv,CAROLE ROBERTSON CENTER FOR LEARNING FCCH-TITA JACKSON,604 E 88TH ST ,60619,8744913,,,,,,,CAROLE ROBERTSON CENTER FOR LEARNING,CHATHAM,,,,,Jolene Martin,Yes,No,No,5990PS(HS Collaboration with Childcare Homes),,,,,,,,, +1129,1.0,1436,chapin_dfss_providers_2011_070212.csv,CAROLE ROBERTSON CENTER FOR LEARNING FCCH-TOSHA KELLY,8050 S HONORE ,60620,,,,,,,,CAROLE ROBERTSON CENTER FOR LEARNING,AUBURN GRESHAM,,,,,Jolene Martin,Yes,No,No,5984PS(HS Collaboration with Childcare Homes),,,,,,,,, +309,0.9999999701976776,1437,chapin_dfss_providers_2011_070212.csv,CATHOLIC CHARITIES OF THE ARCHDIOCESE OF CHICAGO CHICAGO LAWN,3001 W 59TH ST ,60629,9251085,,,,,,,CATHOLIC CHARITIES OF THE ARCHDIOCESE OF CHICAGO,CHICAGO LAWN,,,,,Virginia Carrillo,Yes,No,No,7040PS(HS Collaboration with Childcare),,,,,,,,, +111,0.9999999403953552,1438,chapin_dfss_providers_2011_070212.csv,CATHOLIC CHARITIES OF THE ARCHDIOCESE OF CHICAGO GRACE MISSION,5332 S WESTERN ,60609,4761990,,,,,,,CATHOLIC CHARITIES OF THE ARCHDIOCESE OF CHICAGO,GAGE PARK,,,,,Francine Johnson,Yes,No,Yes,"3416PS(HS Collaboration with Childcare & PreK), 2711PS(Child",,,,,,,,, +19,0.9999999403953552,1439,chapin_dfss_providers_2011_070212.csv,CATHOLIC CHARITIES OF THE ARCHDIOCESE OF CHICAGO OUR LADY OF LOURDES,1449 S KEELER ,60623,5213126,,,,,,,CATHOLIC CHARITIES OF THE ARCHDIOCESE OF CHICAGO,NORTH LAWNDALE,,,,,Deborah O'Brien,Yes,No,Yes,"2488IT(Child Care IT Center), 7030PS(HS Collaboration with C",,,,,,,,, +48,0.9999999448168219,1440,chapin_dfss_providers_2011_070212.csv,CATHOLIC CHARITIES OF THE ARCHDIOCESE OF CHICAGO OUR LADY OF TEPEYAC,2414 S ALBANY ,60623,2775888,,,,,,,CATHOLIC CHARITIES OF THE ARCHDIOCESE OF CHICAGO,SOUTH LAWNDALE,,,,,Petra Gutierrez,Yes,No,Yes,"2617SA(School Age (SA)), 4382PS(HS Collaboration with Childc",,,,,,,,, +100,0.9999999356196254,1441,chapin_dfss_providers_2011_070212.csv,CATHOLIC CHARITIES OF THE ARCHDIOCESE OF CHICAGO ST. JOSEPH,4800 S PAULINA ,60609,9272524,,,,,,,CATHOLIC CHARITIES OF THE ARCHDIOCESE OF CHICAGO,NEW CITY,,,,,Janice Williams,Yes,No,Yes,"2631SA(School Age (SA)), 7041PS(HS Collaboration with Childc",,,,,,,,, +153,0.9999999513330113,1442,chapin_dfss_providers_2011_070212.csv,CENTERS FOR NEW HORIZONS ALTGELD I,941 E 132ND ST ,60627,4683055,,,,,,,CENTERS FOR NEW HORIZONS,RIVERDALE,,,,,Gloria Lawson,Yes,No,Yes,"4320IT(Child Care IT Center), 7044PS(HS Collaboration with C",,,,,,,,, +88,0.999999913112046,1443,chapin_dfss_providers_2011_070212.csv,CENTERS FOR NEW HORIZONS EFFIE ELLIS,4301 S COTTAGE GROVE ,60653,5489839,,,,,,,CENTERS FOR NEW HORIZONS,KENWOOD,,,,,Valerie Jones,Yes,No,Yes,"8012IT(Child Care IT Center), 7116PS(HS Collaboration with C",,,,,,,,, +83,1.0,1444,chapin_dfss_providers_2011_070212.csv,CENTERS FOR NEW HORIZONS IDA B. WELLS AT DAWSON,3901 S STATE ,60609,5367864,,,,,,,CENTERS FOR NEW HORIZONS,GRAND BOULEVARD,,,,,Carolyn Terry,Yes,No,No,"4391IT(Child Care IT Center), 4390PS(HS Collaboration with C",,,,,,,,, +218,1.0,1445,chapin_dfss_providers_2011_070212.csv,CHICAGO CHILD CARE SOCIETY CHICAGO CHILD CARE SOCIETY,5467 S UNIVERSITY AVE ,60615,6430452,,,,,,,CHICAGO CHILD CARE SOCIETY,HYDE PARK,,,,,Licia Palmore,No,Yes,No,,,,,,,,,, +612,1.0,1446,chapin_dfss_providers_2011_070212.csv,CHICAGO COMMONS ASSOCIATION A-Z MALL WORLD,2629 S LAWNDALE ,60623,,,,,,,,CHICAGO COMMONS ASSOCIATION,SOUTH LAWNDALE,,,,,,Yes,No,No,,,,,,,,,, +613,1.0,1447,chapin_dfss_providers_2011_070212.csv,CHICAGO COMMONS ASSOCIATION BETTY'S DAYCARE ACADEMY,5725 W CHICAGO AVE ,60651,2611433,,,,,,,CHICAGO COMMONS ASSOCIATION,AUSTIN,,,,,,Yes,No,No,,,,,,,,,, +170,0.9999999403953552,1448,chapin_dfss_providers_2011_070212.csv,CHICAGO COMMONS ASSOCIATION CHICAGO URBAN DAYCARE,1248 W 69TH ST ,60636,4833555,,,,,,,CHICAGO COMMONS ASSOCIATION,WEST ENGLEWOOD,,,,,,Yes,No,No,,,,,,,,,, +614,1.0,1449,chapin_dfss_providers_2011_070212.csv,CHICAGO COMMONS ASSOCIATION CHILDREN'S WORLD,3356 S ASHLAND ,60609,5230100,,,,,,,CHICAGO COMMONS ASSOCIATION,MCKINLEY PARK,,,,,,Yes,No,No,,,,,,,,,, +615,1.0,1450,chapin_dfss_providers_2011_070212.csv,CHICAGO COMMONS ASSOCIATION COMPUTER PRESCHOOL ACADEMY,1400 W GARFIELD BLVD ,60609,6275000,,,,,,,CHICAGO COMMONS ASSOCIATION,NEW CITY,,,,,,Yes,No,No,,,,,,,,,, +616,1.0,1451,chapin_dfss_providers_2011_070212.csv,CHICAGO COMMONS ASSOCIATION DIVERSEY DAY CARE,3007 W DIVERSEY ,60647,3427777,,,,,,,CHICAGO COMMONS ASSOCIATION,LOGAN SQUARE,,,,,Alberta Varda,Yes,No,No,,,,,,,,,, +617,1.0,1452,chapin_dfss_providers_2011_070212.csv,CHICAGO COMMONS ASSOCIATION EYES ON THE FUTURE,6969 N RAVENSWOOD ,60626,9730771,,,,,,,CHICAGO COMMONS ASSOCIATION,ROGERS PARK,,,,,Azieb Gebrehiiwet,Yes,No,No,,,,,,,,,, +36,0.9999999403953552,1453,chapin_dfss_providers_2011_070212.csv,CHICAGO COMMONS ASSOCIATION GUADALUPANO FAMILY CENTER,1814 S PAULINA ,60608,6663883,,,,,,,CHICAGO COMMONS ASSOCIATION,LOWER WEST SIDE,,,,,Migdalia Young,Yes,No,Yes,"2613IT(Child Care IT Center), 3403PS(HS Collaboration with C",,,,,,,,, +618,1.0,1454,chapin_dfss_providers_2011_070212.csv,CHICAGO COMMONS ASSOCIATION JOYFUL NOISE DAY CARE,4843 W NORTH AVE ,60639,2525990,,,,,,,CHICAGO COMMONS ASSOCIATION,AUSTIN,,,,,Mary Gonzalez,Yes,No,No,,,,,,,,,, +1130,1.0,1455,chapin_dfss_providers_2011_070212.csv,CHICAGO COMMONS ASSOCIATION JPE DAYCARE CENTER,8625 S COTTAGE GROVE ,60619,9941300,,,,,,,CHICAGO COMMONS ASSOCIATION,CHATHAM,,,,,Jackie Cuvington,No,No,No,,,,,,,,,, +619,1.0,1456,chapin_dfss_providers_2011_070212.csv,CHICAGO COMMONS ASSOCIATION KIDDIE GARDEN LITTLE ANGELS,4235 S KEDZIE AVE ,60632,3928199,,,,,,,CHICAGO COMMONS ASSOCIATION,BRIGHTON PARK,,,,,Angeles Nunez,Yes,No,No,,,,,,,,,, +620,1.0,1457,chapin_dfss_providers_2011_070212.csv,CHICAGO COMMONS ASSOCIATION KIMBALL DAY CARE,1636 N KIMBALL AVE ,60647,2357200,,,,,,,CHICAGO COMMONS ASSOCIATION,HUMBOLDT PARK,,,,,Alberta Varda,Yes,No,No,,,,,,,,,, +621,1.0,1458,chapin_dfss_providers_2011_070212.csv,CHICAGO COMMONS ASSOCIATION LITTLE PEOPLE'S DAY CARE,7428 N ROGERS AVE ,60626,7612305,,,,,,,CHICAGO COMMONS ASSOCIATION,ROGERS PARK,,,,,Marlene Bansa,Yes,No,No,,,,,,,,,, +622,1.0,1459,chapin_dfss_providers_2011_070212.csv,CHICAGO COMMONS ASSOCIATION LOS PEQUENOS ANGELITOS,3711 W 55TH ST ,60632,2237292,,,,,,,CHICAGO COMMONS ASSOCIATION,WEST ELSDON,,,,,Angeles Nunez,Yes,No,No,,,,,,,,,, +623,1.0,1460,chapin_dfss_providers_2011_070212.csv,CHICAGO COMMONS ASSOCIATION MY PRECIOUS LITTLE ANGELS,7012 W NORTH AVE ,60707,6371708,,,,,,,CHICAGO COMMONS ASSOCIATION,AUSTIN,,,,,Doris Gadberry,Yes,No,No,,,,,,,,,, +137,0.9999999789265758,1461,chapin_dfss_providers_2011_070212.csv,CHICAGO COMMONS ASSOCIATION NIA FAMILY CENTER,744 N MONTICELLO ,60612,7220115,,,,,,,CHICAGO COMMONS ASSOCIATION,HUMBOLDT PARK,,,,,Sharon Gibson,Yes,No,Yes,"2633IT(Child Care IT Center), 3404PS(HS Collaboration with C",,,,,,,,, +624,1.0,1462,chapin_dfss_providers_2011_070212.csv,CHICAGO COMMONS ASSOCIATION PANDA MONTESSORI,6921 N RIDGE ,60645,3386755,,,,,,,CHICAGO COMMONS ASSOCIATION,ROGERS PARK,,,,,Angela Perry,Yes,No,No,,,,,,,,,, +28,0.9999999549431237,1463,chapin_dfss_providers_2011_070212.csv,CHICAGO COMMONS ASSOCIATION PAULO FREIRE,1653 W 43RD ST ,60609,8266260,,,,,,,CHICAGO COMMONS ASSOCIATION,NEW CITY,,,,,Jenny Seacat,Yes,No,Yes,"2626IT(Child Care IT Center), 3402PS(HS Collaboration with C",,,,,,,,, +625,1.0,1464,chapin_dfss_providers_2011_070212.csv,CHICAGO COMMONS ASSOCIATION RAINBOW DAYCARE,3250 W IRVING PARK RD ,60618,4788182,,,,,,,CHICAGO COMMONS ASSOCIATION,IRVING PARK,,,,,James Limson,Yes,No,No,,,,,,,,,, +26,0.9999999528783908,1465,chapin_dfss_providers_2011_070212.csv,CHICAGO COMMONS ASSOCIATION TAYLOR CENTER FOR NEW EXPERIENCES,1633 N HAMLIN ,60647,2278551,,,,,,,CHICAGO COMMONS ASSOCIATION,HUMBOLDT PARK,,,,,Nilda Vargas,Yes,No,Yes,"2629IT(Child Care IT Center), 3401PS(HS Collaboration with C",,,,,,,,, +626,1.0,1466,chapin_dfss_providers_2011_070212.csv,CHICAGO COMMONS ASSOCIATION TOTS EXPRESS LEARNING CENTER,1705 E 87TH ST ,60617,7218687,,,,,,,CHICAGO COMMONS ASSOCIATION,CALUMET HEIGHTS,,,,,Clara Cureton,Yes,No,No,,,,,,,,,, +627,1.0,1467,chapin_dfss_providers_2011_070212.csv,CHICAGO COMMONS ASSOCIATION V & J DAY CARE CENTER,1 E 113THK ST ,60628,7854393,,,,,,,CHICAGO COMMONS ASSOCIATION,ROSELAND,,,,,Reaver Barlow-Bell,Yes,No,No,,,,,,,,,, +628,1.0,1468,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS ALDRIDGE, IRA F.",630 E 131ST ST ,60827,5355614,,,,,,,CHICAGO PUBLIC SCHOOLS,RIVERDALE,,,,,Mr. Vincent Payne,Yes,No,No,,,,,,,,,, +629,1.0,1469,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS ALTGELD, JOHN P.",7007 S LOOMIS ,60636,5353257,,,,,,,CHICAGO PUBLIC SCHOOLS,WEST ENGLEWOOD,,,,,Mrs. Vera Williams-Willis,Yes,No,No,,,,,,,,,, +630,1.0,1470,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS AZUELA, MARIANO",4707 W MARQUETTE ,60629,5357395,,,,,,,CHICAGO PUBLIC SCHOOLS,WEST LAWN,,,,,Carmen Navarro,Yes,No,No,,,,,,,,,, +631,1.0,1471,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS BARTON, CLARA",7650 S WOLCOTT AVE ,60620,5353260,,,,,,,CHICAGO PUBLIC SCHOOLS,AUBURN GRESHAM,,,,,Mr. Terrence Carter,Yes,No,No,,,,,,,,,, +632,1.0,1472,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS BEETHOVEN, LUDWIG V.",25 W 47TH ST ,60609,5351480,,,,,,,CHICAGO PUBLIC SCHOOLS,GRAND BOULEVARD,,,,,Ms. Dyrice Garner,Yes,No,No,,,,,,,,,, +633,1.0,1473,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS BEIDLER, JACOB",3151 W WALNUT ,60612,5346811,,,,,,,CHICAGO PUBLIC SCHOOLS,EAST GARFIELD PARK,,,,,Ms. Shirley Ewings,Yes,No,No,,,,,,,,,, +634,1.0,1474,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS BETHUNE, MARY MCLEOD",3033 W ARTHINGTON ,60612,5346890,,,,,,,CHICAGO PUBLIC SCHOOLS,EAST GARFIELD PARK,,,,,Ms. Zipporah Hightower,Yes,No,No,,,,,,,,,, +635,1.0,1475,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS BOND, CARRIE JACOBS",7050 S MAY ,60621,5353480,,,,,,,CHICAGO PUBLIC SCHOOLS,ENGLEWOOD,,,,,Mr. Alfonso Carington,Yes,No,No,,,,,,,,,, +636,1.0,1476,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS BRADWELL, MYRA",7736 S BURNHAM ,60649,5356600,,,,,,,CHICAGO PUBLIC SCHOOLS,SOUTH SHORE,,,,,Mr. Justin Moore,Yes,No,No,,,,,,,,,, +637,1.0,1477,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS BROWN, RONALD",12607 S UNION ,60628,5355385,,,,,,,CHICAGO PUBLIC SCHOOLS,WEST PULLMAN,,,,,Ms. Gale Baker,Yes,No,No,,,,,,,,,, +638,1.0,1478,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS BRUNSON MATH & SCIENCE, MILTON",932 N CENTRAL ,60651,5349674,,,,,,,CHICAGO PUBLIC SCHOOLS,AUSTIN,,,,,Carol Wilson,Yes,No,No,,,,,,,,,, +639,1.0,1479,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS BURKE, EDMOND",5356 S KING DR ,60615,5351325,,,,,,,CHICAGO PUBLIC SCHOOLS,WASHINGTON PARK,,,,,Ms. Kimberly Ellison,Yes,No,No,,,,,,,,,, +640,1.0,1480,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS CAMERON, DANIEL R.",1234 N MONTICELLO ,60651,5344290,,,,,,,CHICAGO PUBLIC SCHOOLS,HUMBOLDT PARK,,,,,David Kovach,Yes,No,No,,,,,,,,,, +641,1.0,1481,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS CARDENAS, LAZARO",2345 S MILLARD ,60623,5341465,,,,,,,CHICAGO PUBLIC SCHOOLS,SOUTH LAWNDALE,,,,,Dr. Jeremy Feiwell,Yes,No,No,,,,,,,,,, +642,1.0,1482,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS CARSON, RACHEL",5516 S MAPPLEWOOD AVE ,60629,5359222,,,,,,,CHICAGO PUBLIC SCHOOLS,GAGE PARK,,,,,Javier Arriola-Lopez,Yes,No,No,,,,,,,,,, +643,1.0,1483,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS CATHER, WILLA",2908 W WASHINGTON BLVD ,60612,5346780,,,,,,,CHICAGO PUBLIC SCHOOLS,EAST GARFIELD PARK,,,,,Ms. Hattie B. King,Yes,No,No,,,,,,,,,, +644,1.0,1484,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS CHALMERS, THOMAS",2745 W ROOSEVELT ,60608,5341720,,,,,,,CHICAGO PUBLIC SCHOOLS,NORTH LAWNDALE,,,,,Ms. Patricia Vaughn-Dossiea,Yes,No,No,,,,,,,,,, +645,1.0,1485,chapin_dfss_providers_2011_070212.csv,CHICAGO PUBLIC SCHOOLS CHASE ELEMENTARY,2021 N POINT ST ,60647,5344185,,,,,,,CHICAGO PUBLIC SCHOOLS,LOGAN SQUARE,,,,,Ms. Elizabeth Gonzalez,Yes,No,No,,,,,,,,,, +646,1.0,1486,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS CHOPIN, FREDERIC",2450 W RICE ,60622,5344080,,,,,,,CHICAGO PUBLIC SCHOOLS,WEST TOWN,,,,,Ms. Antuanette Mester,Yes,No,No,,,,,,,,,, +647,1.0,1487,chapin_dfss_providers_2011_070212.csv,CHICAGO PUBLIC SCHOOLS CLAREMONT MATH AND SCIENCE ACADEMY,2300 W 64TH ST ,60636,5358110,,,,,,,CHICAGO PUBLIC SCHOOLS,CHICAGO LAWN,,,,,Mrs. Rebecca L. Stinson,Yes,No,No,,,,,,,,,, +648,1.0,1488,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS COCKRELL, ONEIDA",30 EAST 61ST STREET ,60637,5350798,,,,,,,CHICAGO PUBLIC SCHOOLS,WASHINGTON PARK,,,,,Dr. Joy Pilcher,Yes,No,No,,,,,,,,,, +649,1.0,1489,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS COOPER DUAL LANGUAGE ACADEMY, PETER",1624 W 19TH STREET ,60608,5347205,,,,,,,CHICAGO PUBLIC SCHOOLS,LOWER WEST SIDE,,,,,Ms. Martha Monrroy,Yes,No,No,,,,,,,,,, +650,1.0,1490,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS CORKERY, DANIEL",2510 S KILDARE AVE ,60623,5341650,,,,,,,CHICAGO PUBLIC SCHOOLS,SOUTH LAWNDALE,,,,,Bertha Arredondo,Yes,No,No,,,,,,,,,, +651,1.0,1491,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS CURTIS, GEORGE W.",32 EAST 115TH STREET ,60628,5355050,,,,,,,CHICAGO PUBLIC SCHOOLS,ROSELAND,,,,,Mr. Charles H. Davis,Yes,No,No,,,,,,,,,, +652,1.0,1492,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS DALEY, RICHARD J.",5024 S WOLCOTT AVE ,60609,5359091,,,,,,,CHICAGO PUBLIC SCHOOLS,NEW CITY,,,,,Rhonda Hoskins,Yes,No,No,,,,,,,,,, +653,1.0,1493,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS DAVIS, NATHAN",3014 W 39TH PLACE ,60632,5354540,,,,,,,CHICAGO PUBLIC SCHOOLS,BRIGHTON PARK,,,,,Mr. Santos Gomez,Yes,No,No,,,,,,,,,, +1131,1.0,1494,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS DENEEN, CHARLES S.",7240 S WABASH AVE ,60619,5353035,,,,,,,CHICAGO PUBLIC SCHOOLS,GREATER GRAND CROSSING,,,,,Joyce Lockhart-Fisher,Yes,No,No,,,,,,,,,, +654,1.0,1495,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS DEPRIEST, OSCAR",139 S PARKSIDE AVE ,60639,5346800,,,,,,,CHICAGO PUBLIC SCHOOLS,AUSTIN,,,,,Minnie Watson,Yes,No,No,,,,,,,,,, +655,1.0,1496,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS DETT, R. NATHANIEL",2306 WEST MAYPOLE ,60612,5347160,,,,,,,CHICAGO PUBLIC SCHOOLS,NEAR WEST SIDE,,,,,Ms. Deborah J. Bonner,Yes,No,No,,,,,,,,,, +656,1.0,1497,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS DODGE RENAISSANCE ACADEMY, MARY MAPES",2651 WEST WASHINGTON ,60612,5346640,,,,,,,CHICAGO PUBLIC SCHOOLS,EAST GARFIELD PARK,,,,,Ed. / Debra Moris / Moriarty,Yes,No,No,,,,,,,,,, +657,1.0,1498,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS DOOLITTLE, JAMES R.",535 EAST 35TH STREET ,60653,5351050,,,,,,,CHICAGO PUBLIC SCHOOLS,DOUGLAS,,,,,Ms. Lori A. Lennix,Yes,No,No,,,,,,,,,, +658,1.0,1499,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS DULLES, JOHN FOSTER",6311 SOUTH CALUMET ,60637,5350690,,,,,,,CHICAGO PUBLIC SCHOOLS,GREATER GRAND CROSSING,,,,,Ms. Pamela Creed,Yes,No,No,,,,,,,,,, +659,1.0,1500,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS DVORAK MATH & SCIENCE TECH ACADEMY, ANTON",3615 WEST 16TH ,60623,5341690,,,,,,,CHICAGO PUBLIC SCHOOLS,NORTH LAWNDALE,,,,,Ms. Alma Thompson,Yes,No,No,,,,,,,,,, +660,1.0,1501,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS EBERHART, JOHN F.",3400 W 65TH PL ,60629,5359190,,,,,,,CHICAGO PUBLIC SCHOOLS,CHICAGO LAWN,,,,,Nneka Gunn,Yes,No,No,,,,,,,,,, +1132,1.0,1502,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS EDWARDS, RICHARD",4815 S KARLOV AVE ,60632,5354875,,,,,,,CHICAGO PUBLIC SCHOOLS,ARCHER HEIGHTS,,,,,Mrs. Judith Sauri,Yes,No,No,,,,,,,,,, +661,1.0,1503,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS ELLINGTON, EDWARD ""DUKE"" K.",243 NORTH PARKSIDE ,60644,5346361,,,,,,,CHICAGO PUBLIC SCHOOLS,AUSTIN,,,,,Ms. Shirley M. Scott,Yes,No,No,,,,,,,,,, +662,1.0,1504,chapin_dfss_providers_2011_070212.csv,CHICAGO PUBLIC SCHOOLS ESMOND ELEMENTARY,1865 WEST MONTVALE ,60643,5352650,,,,,,,CHICAGO PUBLIC SCHOOLS,MORGAN PARK,,,,,Dr. Angela Tucker,Yes,No,No,,,,,,,,,, +663,1.0,1505,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS FINKL, WILLIAM F.",2332 S WESTERN AVE ,60608,5355850,,,,,,,CHICAGO PUBLIC SCHOOLS,LOWER WEST SIDE,,,,,Mr. Abelino Quintero,Yes,No,No,,,,,,,,,, +664,1.0,1506,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS FISKE, JOHN",6145 SOUTH INGLESIDE ,60637,5350990,,,,,,,CHICAGO PUBLIC SCHOOLS,WOODLAWN,,,,,Ms. Cynthia Miller,Yes,No,No,,,,,,,,,, +665,1.0,1507,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS FULLER, MELVILLE W.",4214 S ST LAWRENCE ,60653,5351687,,,,,,,CHICAGO PUBLIC SCHOOLS,GRAND BOULEVARD,,,,,Dr. Patricia D. Kennedy,Yes,No,No,,,,,,,,,, +666,1.0,1508,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS FULTON, ROBERT",5300 S HERMITAGE ,60609,5359000,,,,,,,CHICAGO PUBLIC SCHOOLS,NEW CITY,,,,,Dr. Warletta Johnson-Brookins,Yes,No,No,,,,,,,,,, +667,1.0,1509,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS FUNSTON, FREDERICK",2010 N CENTRAL PARK ,60647,5344125,,,,,,,CHICAGO PUBLIC SCHOOLS,LOGAN SQUARE,,,,,Ms. Nilma Osiecki,Yes,No,No,,,,,,,,,, +668,1.0,1510,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS GALE COMM. ACAD., STEPHEN F.",1631 W JONQUIL TERRACE ,60626,5342100,,,,,,,CHICAGO PUBLIC SCHOOLS,ROGERS PARK,,,,,Mr. Richard P. Glass Jr.,Yes,No,No,,,,,,,,,, +669,1.0,1511,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS GARY, JOSEPH E.",3740 W 31ST ST ,60623,5341455,,,,,,,CHICAGO PUBLIC SCHOOLS,SOUTH LAWNDALE,,,,,Mr. Alberto Juarez,Yes,No,No,,,,,,,,,, +670,1.0,1512,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS GOLDBLATT, NATHAN R.",4257 W ADAMS ,60624,5346860,,,,,,,CHICAGO PUBLIC SCHOOLS,WEST GARFIELD PARK,,,,,Ms. Yvette R. Currington,Yes,No,No,,,,,,,,,, +671,1.0,1513,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS GOUDY, WILLIAM C.",5120 N WINTHROP ,60640,5342480,,,,,,,CHICAGO PUBLIC SCHOOLS,UPTOWN,,,,,Pamela S. Brandt,Yes,No,No,,,,,,,,,, +672,1.0,1514,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS GRAHAM, ALEXANDER",4436 S UNION ,60609,5351308,,,,,,,CHICAGO PUBLIC SCHOOLS,NEW CITY,,,,,Mr. John Nichols,Yes,No,No,,,,,,,,,, +673,1.0,1515,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS GRESHAM, WALTER Q.",8524 S GREEN ,60620,5353350,,,,,,,CHICAGO PUBLIC SCHOOLS,AUBURN GRESHAM,,,,,Ms. Diedrus U. Brown,Yes,No,No,,,,,,,,,, +674,1.0,1516,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS GUGGENHEIM, SIMON",7141 S MORGAN ST ,60621,5353587,,,,,,,CHICAGO PUBLIC SCHOOLS,ENGLEWOOD,,,,,Ms. Mary D. McNair,Yes,No,No,,,,,,,,,, +675,1.0,1517,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS HALEY, ALEX",11411 S EGGLESTON ,60628,5355345,,,,,,,CHICAGO PUBLIC SCHOOLS,ROSELAND,,,,,Ms. Vaida Williams,Yes,No,No,,,,,,,,,, +1133,1.0,1518,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS HAMLINE, JOHN H",4747 S BISHOP ST ,60609,5354565,,,,,,,CHICAGO PUBLIC SCHOOLS,NEW CITY,,,,,Valerie Brown,Yes,No,No,,,,,,,,,, +676,1.0,1519,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS HAY COMM. ACADEMY, JOHN",1018 N LARAMIE ,60651,5346000,,,,,,,CHICAGO PUBLIC SCHOOLS,AUSTIN,,,,,Ms. Beryl D. Guy,Yes,No,No,,,,,,,,,, +677,1.0,1520,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS HENSON, MATTHEW A.",1326 S AVERS ,60623,5341804,,,,,,,CHICAGO PUBLIC SCHOOLS,NORTH LAWNDALE,,,,,Mr. Robert J. Pales,Yes,No,No,,,,,,,,,, +678,1.0,1521,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS HERBERT, VICTOR",2131 W MONROE ,60612,5347806,,,,,,,CHICAGO PUBLIC SCHOOLS,NEAR WEST SIDE,,,,,Ms. Denise J. Gillespie,Yes,No,No,,,,,,,,,, +679,1.0,1522,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS HIGGINS C.A., THOMAS J.",11710 S MORGAN ,60643,5355625,,,,,,,CHICAGO PUBLIC SCHOOLS,WEST PULLMAN,,,,,Dr. Mabel Alfred,Yes,No,No,,,,,,,,,, +680,1.0,1523,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS HINTON, WILLIAM AUGUSTUS",644 W 71ST STREET ,60621,5353875,,,,,,,CHICAGO PUBLIC SCHOOLS,ENGLEWOOD,,,,,Ms. Pamela Brunson-Allen,Yes,No,No,,,,,,,,,, +681,1.0,1524,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS HOLMES, OLIVER WENDELL",955 W GARFIELD ,60621,5359025,,,,,,,CHICAGO PUBLIC SCHOOLS,ENGLEWOOD,,,,,Ms. Dorothy Susan Naughton,Yes,No,No,,,,,,,,,, +1134,1.0,1525,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS HUGHES, LANGSTON",226 W 104TH ST ,60628,5355075,,,,,,,CHICAGO PUBLIC SCHOOLS,ROSELAND,,,,,Anita Muse,Yes,No,No,,,,,,,,,, +682,1.0,1526,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS HURLEY, EDWARD N.",3849 W 69TH PLACE ,60629,5352068,,,,,,,CHICAGO PUBLIC SCHOOLS,WEST LAWN,,,,,Mrs. Dolores Cupp,Yes,No,No,,,,,,,,,, +683,1.0,1527,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS JENNER ACADEMY OF THE ARTS, EDWARD",1119 N CLEVELAND ,60610,5348440,,,,,,,CHICAGO PUBLIC SCHOOLS,NEAR NORTH SIDE,,,,,Ms. Zelma Woodson,Yes,No,No,,,,,,,,,, +1135,1.0,1528,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS JOHNSON, JAMES WELDON",1504 S ALBANY ,60623,5341833,,,,,,,CHICAGO PUBLIC SCHOOLS,NORTH LAWNDALE,,,,,Ms. Sallie P. Pinkston,Yes,No,No,,,,,,,,,, +684,1.0,1529,chapin_dfss_providers_2011_070212.csv,CHICAGO PUBLIC SCHOOLS JORDAN COMM.,7414 NORTH WOLCOTT ,60626,5342220,,,,,,,CHICAGO PUBLIC SCHOOLS,ROGERS PARK,,,,,Willie White,Yes,No,No,,,,,,,,,, +685,1.0,1530,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS JUNGMAN, JOSEPH",1746 S MILLER ,60608,5347375,,,,,,,CHICAGO PUBLIC SCHOOLS,LOWER WEST SIDE,,,,,Mrs. Zaida Hernandez,Yes,No,No,,,,,,,,,, +686,1.0,1531,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS KERSHAW, JOSHUA D.",6450 S LOWE ,60621,5353050,,,,,,,CHICAGO PUBLIC SCHOOLS,ENGLEWOOD,,,,,Mrs. Patricia A. Johnson,Yes,No,No,,,,,,,,,, +687,1.0,1532,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS KOHN, ALFRED DAVID",10414 S STATE ,60628,5355489,,,,,,,CHICAGO PUBLIC SCHOOLS,ROSELAND,,,,,Ms. Carol Briggs,Yes,No,No,,,,,,,,,, +688,1.0,1533,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS LAFAYETTE, JEAN DE",2714 W AUGUSTA BLVD ,60622,5344326,,,,,,,CHICAGO PUBLIC SCHOOLS,WEST TOWN,,,,,Mrs. Trisha Shrode,Yes,No,No,,,,,,,,,, +689,1.0,1534,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS LAVIZZO, MILDRED I.",138 W 109TH ST ,60628,5355300,,,,,,,CHICAGO PUBLIC SCHOOLS,ROSELAND,,,,,Mrs.Tracey Stelly,Yes,No,No,,,,,,,,,, +690,1.0,1535,chapin_dfss_providers_2011_070212.csv,CHICAGO PUBLIC SCHOOLS LAWNDALE COMM. ACADEMY,3500 W DOUGLAS BLVD ,60623,5341635,,,,,,,CHICAGO PUBLIC SCHOOLS,NORTH LAWNDALE,,,,,Ms. Jeannine M. Wolf,Yes,No,No,,,,,,,,,, +691,1.0,1536,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS LINNE, CARL VON",3221 N SACRAMENTO ,60618,5345262,,,,,,,CHICAGO PUBLIC SCHOOLS,AVONDALE,,,,,Mr. Daniel W. Rohan,Yes,No,No,,,,,,,,,, +692,1.0,1537,chapin_dfss_providers_2011_070212.csv,CHICAGO PUBLIC SCHOOLS LITTLE VILLAGE,2620 S LAWNDALE AVE ,60623,5341880,,,,,,,CHICAGO PUBLIC SCHOOLS,SOUTH LAWNDALE,,,,,Elsa Carmona,Yes,No,No,,,,,,,,,, +693,1.0,1538,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS LLOYD, HENRY D.",2103 N LAMON AV ,60639,5343070,,,,,,,CHICAGO PUBLIC SCHOOLS,BELMONT CRAGIN,,,,,Dr. Miryam Assaf-Keller,Yes,No,No,,,,,,,,,, +694,1.0,1539,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS MADISON, JAMES",7433 S DORCHESTER ,60619,5350551,,,,,,,CHICAGO PUBLIC SCHOOLS,SOUTH SHORE,,,,,Dr. Beverly J. Greene,Yes,No,No,,,,,,,,,, +695,1.0,1540,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS MASON, ROSWELL B.",4216 W 19TH ST ,60623,5341530,,,,,,,CHICAGO PUBLIC SCHOOLS,NORTH LAWNDALE,,,,,Ms. Tonya Tolbert,Yes,No,No,,,,,,,,,, +696,1.0,1541,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS MAY COMMUNITY ACADEMY, HORATIO",512 S LAVERGNE ,60644,5346140,,,,,,,CHICAGO PUBLIC SCHOOLS,AUSTIN,,,,,Roger Lewis,Yes,No,No,,,,,,,,,, +1136,1.0,1542,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS MAYO, WILLIAM J. & CHARLES H.",249 E 39TH ST ,60653,5351260,,,,,,,CHICAGO PUBLIC SCHOOLS,GRAND BOULEVARD,,,,,Ms. Nadine D. Dillanado,Yes,No,No,,,,,,,,,, +697,1.0,1543,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS MCCLELLAN, GEORGE B.",3527 S WALLACE ,60609,5351732,,,,,,,CHICAGO PUBLIC SCHOOLS,BRIDGEPORT,,,,,Mary E. Garcia-Humphreys,Yes,No,No,,,,,,,,,, +698,1.0,1544,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS MCCORMICK, CYRUS H.",2712 S SAWYER AVE ,60623,5357252,,,,,,,CHICAGO PUBLIC SCHOOLS,SOUTH LAWNDALE,,,,,ms. Virginia S. Rivera,Yes,No,No,,,,,,,,,, +699,1.0,1545,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS MCCUTCHEON MAIN, JOHN T.",4846 N SHERIDAN ,60640,5342680,,,,,,,CHICAGO PUBLIC SCHOOLS,UPTOWN,,,,,Mrs. Carol Ann Lang,Yes,No,No,,,,,,,,,, +700,1.0,1546,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS MCDOWELL, MARY E.",1419 E 89TH ST ,60619,5356404,,,,,,,CHICAGO PUBLIC SCHOOLS,CALUMET HEIGHTS,,,,,Dr. Jo La Tanya Easterling-Hood,Yes,No,No,,,,,,,,,, +1137,1.0,1547,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS MCKAY, FRANCIS M.",6901 S FAIRFIELD AVE ,60629,5359505,,,,,,,CHICAGO PUBLIC SCHOOLS,CHICAGO LAWN,,,,,Mrs. Dawn Prather-Hawk,Yes,No,No,,,,,,,,,, +701,1.0,1548,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS MCNAIR ACADEMY CENTER, RONALD E.",4820 W WALTON ,60651,5348980,,,,,,,CHICAGO PUBLIC SCHOOLS,AUSTIN,,,,,Dr. Shirley Dillard,Yes,No,No,,,,,,,,,, +702,1.0,1549,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS MCPHERSON, JAMES B.",4728 N WOLCOTT AV ,60640,5342625,,,,,,,CHICAGO PUBLIC SCHOOLS,LINCOLN SQUARE,,,,,Ms. Carmen A. Mendoza,Yes,No,No,,,,,,,,,, +703,1.0,1550,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS MONROE, JAMES",3651 W SCHUBERT AVE ,60647,5344155,,,,,,,CHICAGO PUBLIC SCHOOLS,LOGAN SQUARE,,,,,Mr. Edwin Rivera,Yes,No,No,,,,,,,,,, +704,1.0,1551,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS MORGAN, GARRETT A.",8407 S KERFOOT ,60620,5353366,,,,,,,CHICAGO PUBLIC SCHOOLS,AUBURN GRESHAM,,,,,Mrs. Linda E. Walker,Yes,No,No,,,,,,,,,, +705,1.0,1552,chapin_dfss_providers_2011_070212.csv,CHICAGO PUBLIC SCHOOLS MORTON CAREER ACADEMY,431 N TROY ,60612,5346791,,,,,,,CHICAGO PUBLIC SCHOOLS,HUMBOLDT PARK,,,,,Ms. Phyllis L. McCune,Yes,No,No,,,,,,,,,, +706,1.0,1553,chapin_dfss_providers_2011_070212.csv,CHICAGO PUBLIC SCHOOLS N.T.A. (NATIONAL TEACHERS ACADEMY),55 W CERMAK ,60616,5349970,,,,,,,CHICAGO PUBLIC SCHOOLS,NEAR SOUTH SIDE,,,,,Ms. Amy G. Rome,Yes,No,No,,,,,,,,,, +707,1.0,1554,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS NASH, HENRY H.",4837 W ERIE ST ,60644,5346125,,,,,,,CHICAGO PUBLIC SCHOOLS,AUSTIN,,,,,Ms. Tresa D. Dunbar,Yes,No,No,,,,,,,,,, +708,1.0,1555,chapin_dfss_providers_2011_070212.csv,CHICAGO PUBLIC SCHOOLS NEW FIELD PRIMARY SCHOOL,1707 W MORSE ,60626,5342760,,,,,,,CHICAGO PUBLIC SCHOOLS,ROGERS PARK,,,,,Ms. Blanca A. Trevino,Yes,No,No,,,,,,,,,, +709,1.0,1556,chapin_dfss_providers_2011_070212.csv,CHICAGO PUBLIC SCHOOLS NICHOLSON MATH AND SCIENCE,6006 S PEORIA ST ,60621,5353285,,,,,,,CHICAGO PUBLIC SCHOOLS,ENGLEWOOD,,,,,Mr. Rodney L. Hull,Yes,No,No,,,,,,,,,, +710,1.0,1557,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS NIXON, WILLIAM P.",2121 N KEELER AVE ,60639,5344375,,,,,,,CHICAGO PUBLIC SCHOOLS,HERMOSA,,,,,Herman Escobar,Yes,No,No,,,,,,,,,, +711,1.0,1558,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS O'KEEFFE, ISABELL C.",6940 S MERRILL ,60649,5350600,,,,,,,CHICAGO PUBLIC SCHOOLS,SOUTH SHORE,,,,,Mrs. Carolyn D. Townes,Yes,No,No,,,,,,,,,, +712,1.0,1559,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS O'TOOLE, LUKE",6550 S SEELEY ,60636,5359040,,,,,,,CHICAGO PUBLIC SCHOOLS,WEST ENGLEWOOD,,,,,Mr. Erick D. Pruitt,Yes,No,No,,,,,,,,,, +713,1.0,1560,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS PEABODY, ELIZABETH",1444 W AUGUSTA BLVD ,60622,5344170,,,,,,,CHICAGO PUBLIC SCHOOLS,WEST TOWN,,,,,Mr. Federico Flores,Yes,No,No,,,,,,,,,, +1138,1.0,1561,chapin_dfss_providers_2011_070212.csv,CHICAGO PUBLIC SCHOOLS PECK SCHOOL,3826 W 58TH ST ,60629,5352450,,,,,,,CHICAGO PUBLIC SCHOOLS,WEST ELSDON,,,,,Okab Hassan,Yes,No,No,,,,,,,,,, +714,1.0,1562,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS PENN, WILLIAM",1616 S AVERS ,60623,5341665,,,,,,,CHICAGO PUBLIC SCHOOLS,NORTH LAWNDALE,,,,,Mrs. Sherryl Moore-Ollie,Yes,No,No,,,,,,,,,, +715,1.0,1563,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS PEREZ, MANUEL",1241 W 19TH STREET ,60608,5347650,,,,,,,CHICAGO PUBLIC SCHOOLS,LOWER WEST SIDE,,,,,Mrs. Sylvia Stamatoglou,Yes,No,No,,,,,,,,,, +716,1.0,1564,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS PICCOLO SPECIALTY SCHOOL, BRIAN",1040 N KEELER AVENUE ,60651,5344425,,,,,,,CHICAGO PUBLIC SCHOOLS,HUMBOLDT PARK,,,,,Mrs. Althea Hammond,Yes,No,No,,,,,,,,,, +717,1.0,1565,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS PICKARD, JOSIAH L.",2301 W 21ST STREET ,60608,5357280,,,,,,,CHICAGO PUBLIC SCHOOLS,LOWER WEST SIDE,,,,,Rigo Hernandez,Yes,No,No,,,,,,,,,, +718,1.0,1566,chapin_dfss_providers_2011_070212.csv,CHICAGO PUBLIC SCHOOLS PILSEN COMM. ACADEMY,1420 W 17TH STREET ,60608,5347675,,,,,,,CHICAGO PUBLIC SCHOOLS,LOWER WEST SIDE,,,,,Dr. Adel M. Ali,Yes,No,No,,,,,,,,,, +719,1.0,1567,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS REAVIS, WILLIAM CLAUDE",834 E 50TH STREET ,60615,5351060,,,,,,,CHICAGO PUBLIC SCHOOLS,KENWOOD,,,,,Mr. Michael T. Johnson,Yes,No,No,,,,,,,,,, +720,1.0,1568,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS REVERE, PAUL",1010 E 72ND STREET ,60619,5350618,,,,,,,CHICAGO PUBLIC SCHOOLS,GREATER GRAND CROSSING,,,,,Mrs. Veronica J. Thompson,Yes,No,No,,,,,,,,,, +721,1.0,1569,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS ROBINSON, JACKIE R.",4225 S LAKE PARK AVE ,60653,5351777,,,,,,,CHICAGO PUBLIC SCHOOLS,OAKLAND,,,,,Ms. Keshia B. Warner,Yes,No,No,,,,,,,,,, +722,1.0,1570,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS RUGGLES, MARTHA M.",7831 S PRAIRIE AVE ,60619,5353085,,,,,,,CHICAGO PUBLIC SCHOOLS,GREATER GRAND CROSSING,,,,,Ida Patterson,Yes,No,No,,,,,,,,,, +723,1.0,1571,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS RYDER, WILLIAM H.",8716 S WALLACE STREET ,60620,5353843,,,,,,,CHICAGO PUBLIC SCHOOLS,AUBURN GRESHAM,,,,,Mrs. Janice Preston,Yes,No,No,,,,,,,,,, +724,1.0,1572,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS RYERSON, MARTIN A.",646 N LAWNDALE ,60624,5346700,,,,,,,CHICAGO PUBLIC SCHOOLS,HUMBOLDT PARK,,,,,Mr. Lorenzo Russell,Yes,No,No,,,,,,,,,, +725,1.0,1573,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS SANDOVAL, SOCORRO",5534 S SAINT LOUIS AVE ,60629,5350457,,,,,,,CHICAGO PUBLIC SCHOOLS,GAGE PARK,,,,,Dr. Ana Expinoza,Yes,No,No,,,,,,,,,, +726,1.0,1574,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS SAUCEDO SCHOLASTIC ACADEMY, MARIA",2850 W 24 TH BLVD ,60623,5341770,,,,,,,CHICAGO PUBLIC SCHOOLS,SOUTH LAWNDALE,,,,,Mrs. Leticia L. Gonzalez,Yes,No,No,,,,,,,,,, +727,1.0,1575,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS SEWARD, WILLIAM H.",4600 S HERMITAGE AVE ,60609,5354890,,,,,,,CHICAGO PUBLIC SCHOOLS,NEW CITY,,,,,Marcey Reyes,Yes,No,No,,,,,,,,,, +728,1.0,1576,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS SEXTON, AUSTIN O.",6020 S LANGLEY ,60637,5350640,,,,,,,CHICAGO PUBLIC SCHOOLS,WOODLAWN,,,,,Mrs. Ginger V. Bryant,Yes,No,No,,,,,,,,,, +729,1.0,1577,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS SHERWOOD, JESSIE",245 W 57TH ST ,60621,5350829,,,,,,,CHICAGO PUBLIC SCHOOLS,ENGLEWOOD,,,,,Alice Buzanis,Yes,No,No,,,,,,,,,, +730,1.0,1578,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS SHIELDS, JAMES",4250 S ROCKWELL ST ,60632,5357285,,,,,,,CHICAGO PUBLIC SCHOOLS,BRIGHTON PARK,,,,,Philip Salemi,Yes,No,No,,,,,,,,,, +731,1.0,1579,chapin_dfss_providers_2011_070212.csv,CHICAGO PUBLIC SCHOOLS SONGHAI LEARNING INSTITUTE,11725 S PERRY AVE ,60628,5355547,,,,,,,CHICAGO PUBLIC SCHOOLS,WEST PULLMAN,,,,,Ms. Taliva A. Tillman,Yes,No,No,,,,,,,,,, +732,1.0,1580,chapin_dfss_providers_2011_070212.csv,CHICAGO PUBLIC SCHOOLS SPENCER MATH AND SCIENCE ACADEMY,214 N LAVERGNE ,60644,5346150,,,,,,,CHICAGO PUBLIC SCHOOLS,AUSTIN,,,,,Mr. Shawn L. Jackson,Yes,No,No,,,,,,,,,, +733,1.0,1581,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS STAGG, AMOS A.",7424 S MORGAN ST ,60621,5353565,,,,,,,CHICAGO PUBLIC SCHOOLS,ENGLEWOOD,,,,,Ms. Ruth A. Miller,Yes,No,No,,,,,,,,,, +734,1.0,1582,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS STEWART, GRAEME",4525 N KENMORE ,60640,5342640,,,,,,,CHICAGO PUBLIC SCHOOLS,UPTOWN,,,,,Ms. Patricia A. Turner,Yes,No,No,,,,,,,,,, +1139,1.0,1583,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS STOCKTON, JOSEPH",4420 N BEACON ST ,60640,5342450,,,,,,,CHICAGO PUBLIC SCHOOLS,UPTOWN,,,,,Ms. Jill Besenjak,Yes,No,No,,,,,,,,,, +735,1.0,1584,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS STOWE, HARRIET BEECHER",3444 W WABANSIA ,60647,5344175,,,,,,,CHICAGO PUBLIC SCHOOLS,HUMBOLDT PARK,,,,,Dr. Charles L. Kyle,Yes,No,No,,,,,,,,,, +736,1.0,1585,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS TANNER, HENRY O.",7350 S EVANS ,60619,5353870,,,,,,,CHICAGO PUBLIC SCHOOLS,GREATER GRAND CROSSING,,,,,Mrs. Mona T. Miller,Yes,No,No,,,,,,,,,, +737,1.0,1586,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS THOMAS CENTER, VELMA",3625 S HOYNE ,60609,5354088,,,,,,,CHICAGO PUBLIC SCHOOLS,MCKINLEY PARK,,,,,Elizabeth Najera,Yes,No,No,,,,,,,,,, +738,1.0,1587,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS THORP, JAMES N.",8914 S BUFFALO AVE ,60617,5356250,,,,,,,CHICAGO PUBLIC SCHOOLS,SOUTH CHICAGO,,,,,Tony Fisher,Yes,No,No,,,,,,,,,, +739,1.0,1588,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS WARD, LAURA S.",410 N MONTICELLO ,60624,5346440,,,,,,,CHICAGO PUBLIC SCHOOLS,HUMBOLDT PARK,,,,,Ms. Relanda Hobbs,Yes,No,No,,,,,,,,,, +740,1.0,1589,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS WHITTIER, JOHN GREENLEAF",1900 W 23RD ST ,60608,5354590,,,,,,,CHICAGO PUBLIC SCHOOLS,LOWER WEST SIDE,,,,,Ms. Zoila Garcia,Yes,No,No,,,,,,,,,, +741,1.0,1590,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS WILLIAMS, DANIEL H.",2710 S DEARBORN ,60616,5349226,,,,,,,CHICAGO PUBLIC SCHOOLS,DOUGLAS,,,,,Ms. Lashonn Graham,Yes,No,No,,,,,,,,,, +742,1.0,1591,chapin_dfss_providers_2011_070212.csv,CHICAGO PUBLIC SCHOOLS WOODLAWN COMMUNITY SCHOOL,6657 S KIMBARK AVE ,60637,5350801,,,,,,,CHICAGO PUBLIC SCHOOLS,WOODLAWN,,,,,Frank Embil,Yes,No,No,,,,,,,,,, +1140,1.0,1592,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS WOODSON SOUTH, CARTER G.",4414 S EVANS ,60653,5351280,,,,,,,CHICAGO PUBLIC SCHOOLS,GRAND BOULEVARD,,,,,Ms. Renee A. Thomas,Yes,No,No,,,,,,,,,, +743,1.0,1593,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS YATES, RICHARD",1839 N RICHMOND ,60647,5344550,,,,,,,CHICAGO PUBLIC SCHOOLS,LOGAN SQUARE,,,,,Mr. Harry Randell,Yes,No,No,,,,,,,,,, +744,1.0,1594,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS YOUNG, ELLA FLAGG",1434 N PARKSIDE ,60651,5346200,,,,,,,CHICAGO PUBLIC SCHOOLS,AUSTIN,,,,,Ms. Crystal Bell,Yes,No,No,,,,,,,,,, +745,1.0,1595,chapin_dfss_providers_2011_070212.csv,CHICAGO PUBLIC SCHOOLS ZAPATA ACADEMY,2728 S KOSTNER AVE ,60623,5341390,,,,,,,CHICAGO PUBLIC SCHOOLS,SOUTH LAWNDALE,,,,,Ms. Ruth F. Garcia,Yes,No,No,,,,,,,,,, +1141,1.0,1596,chapin_dfss_providers_2011_070212.csv,CHICAGO STATE UNIVERSITY FCCH-EVELYN CROSS,724 W 116TH PL ,60628,4374020,,,,,,,CHICAGO STATE UNIVERSITY,WEST PULLMAN,,,,,Evelyn Lang,No,Yes,No,"5992IP(EHS Collaboration Enhanced Home IP), 5992IT(EHS Enhan",,,,,,,,, +1142,1.0,1597,chapin_dfss_providers_2011_070212.csv,CHICAGO STATE UNIVERSITY FCCH-LATASHIE TAIWO,8609 S INGLESIDE ,60619,4880716,,,,,,,CHICAGO STATE UNIVERSITY,CHATHAM,,,,,Evelyn Lang,No,Yes,No,"5971IP(EHS Collaboration Enhanced Home IP), 5973IT(Child Car",,,,,,,,, +746,1.0,1598,chapin_dfss_providers_2011_070212.csv,CHICAGO STATE UNIVERSITY GRANT CREATIVE LEARNING CENTER,4025 S DREXEL BLVD ,60653,2858440,,,,,,,CHICAGO STATE UNIVERSITY,OAKLAND,,,,,Mary Billingsey,Yes,No,Yes,"4383SA(School Age (SA)), 4383PS(Child Care PS Center), 4370P",,,,,,,,, +14,1.0,1599,chapin_dfss_providers_2011_070212.csv,CHICAGO STATE UNIVERSITY RAISE UP A CHILD,124 E 113 ST ,60628,7851172,,,,,,,CHICAGO STATE UNIVERSITY,ROSELAND,,,,,,Yes,Yes,Yes,"4138PS(Child Care PS Center), 4134PS(HS Collaboration with C",,,,,,,,, +747,1.0,1600,chapin_dfss_providers_2011_070212.csv,CHICAGO STATE UNIVERSITY SHINING STAR EARLY LEARNING ACADEMY - II,854 E 79TH ST ,60619,4191994,,,,,,,CHICAGO STATE UNIVERSITY,GREATER GRAND CROSSING,,,,,Shnida Wray,Yes,No,No,4142PS(HS Collaboration with Childcare),,,,,,,,, +73,1.0,1601,chapin_dfss_providers_2011_070212.csv,CHICAGO STATE UNIVERSITY SHINING STAR EARLY LEARNING ACADEMY - III,338 E 103RD ST ,60628,4191994,,,,,,,CHICAGO STATE UNIVERSITY,ROSELAND,,,,,Erica Shirley,Yes,No,No,4143PS(HS Collaboration with Childcare),,,,,,,,, +748,1.0,1602,chapin_dfss_providers_2011_070212.csv,CHICAGO STATE UNIVERSITY THE LOVE LEARNING CENTER,228 E 61ST ST ,60637,7520243,,,,,,,CHICAGO STATE UNIVERSITY,WASHINGTON PARK,,,,,Burchell Love,Yes,No,No,,,,,,,,,, +749,1.0,1603,chapin_dfss_providers_2011_070212.csv,CHICAGO STATE UNIVERSITY TINY TOTS VILLA,8128 S KING DR ,60641,4836251,,,,,,,CHICAGO STATE UNIVERSITY,CHATHAM,,,,,Judith Tyson,Yes,No,Yes,"4292PS(Child Care PS Center), 4205PS(HS Collaboration with C",,,,,,,,, +76,0.9999999200319775,1604,chapin_dfss_providers_2011_070212.csv,CHICAGO YOUTH CENTERS ABC,3415 W 13TH PL ,60623,7625655,,,,,,,CHICAGO YOUTH CENTERS,NORTH LAWNDALE,,,,,Talina Bowie,Yes,No,No,,,,,,,,,, +70,0.9999999538304407,1605,chapin_dfss_providers_2011_070212.csv,CHICAGO YOUTH CENTERS CENTRO NUESTRO,3222 W DIVISION ,60651,4893157,,,,,,,CHICAGO YOUTH CENTERS,HUMBOLDT PARK,,,,,Valerie Meritt,Yes,No,No,4301PS(HS Collaboration with Childcare & PreK),,,,,,,,, +750,1.0,1606,chapin_dfss_providers_2011_070212.csv,CHICAGO YOUTH CENTERS CUDDLE CARE ACADEMY,4800 S LAKE PARK AVE ,60615,2851114,,,,,,,CHICAGO YOUTH CENTERS,KENWOOD,,,,,,Yes,No,No,,,,,,,,,, +154,0.9999999496248808,1607,chapin_dfss_providers_2011_070212.csv,CHICAGO YOUTH CENTERS DOROTHY GAUTREAUX,975 E 132ND ST ,60627,2911000,,,,,,,CHICAGO YOUTH CENTERS,RIVERDALE,,,,,Glenda Williams,Yes,No,No,,,,,,,,,, +751,1.0,1608,chapin_dfss_providers_2011_070212.csv,CHICAGO YOUTH CENTERS EZZARD CHARLES SCHOOL,7946 S ASHLAND AVE ,60620,4870227,,,,,,,CHICAGO YOUTH CENTERS,AUBURN GRESHAM,,,,,Eldora Davis,Yes,No,No,,,,,,,,,, +377,0.9999999578531515,1609,chapin_dfss_providers_2011_070212.csv,CHICAGO YOUTH CENTERS FELLOWSHIP HOUSE,844 W 32ND ST ,60608,3262282,,,,,,,CHICAGO YOUTH CENTERS,BRIDGEPORT,,,,,Levory Wilder,Yes,No,No,,,,,,,,,, +1143,1.0,1610,chapin_dfss_providers_2011_070212.csv,CHICAGO YOUTH CENTERS JUST LIKE HOME,301 E 79TH ST ,60619,7830955,,,,,,,CHICAGO YOUTH CENTERS,CHATHAM,,,,,,No,No,No,,,,,,,,,, +752,1.0,1611,chapin_dfss_providers_2011_070212.csv,CHICAGO YOUTH CENTERS KIDS R US,7453 S VINCENNES ,60621,8465437,,,,,,,CHICAGO YOUTH CENTERS,GREATER GRAND CROSSING,,,,,Tammy Oliver,Yes,No,No,,,,,,,,,, +257,0.9999999578531515,1612,chapin_dfss_providers_2011_070212.csv,CHICAGO YOUTH CENTERS LOTTS OF LOVE,1139 W 79TH ST ,60620,8744954,,,,,,,CHICAGO YOUTH CENTERS,AUBURN GRESHAM,,,,,Carol Quinn,Yes,No,No,,,,,,,,,, +22,0.9999999403953552,1613,chapin_dfss_providers_2011_070212.csv,CHICAGO YOUTH CENTERS MT. MORIAH-TAYLOR,1501 N HARDING ,60651,2785837,,,,,,,CHICAGO YOUTH CENTERS,HUMBOLDT PARK,,,,,Elizabeth Heilbronn,Yes,No,No,7065PS(HS Collaboration with Childcare & PreK),,,,,,,,, +753,1.0,1614,chapin_dfss_providers_2011_070212.csv,CHICAGO YOUTH CENTERS PATHWAY,6535 S KEDZIE AVE ,60629,,,,,,,,CHICAGO YOUTH CENTERS,CHICAGO LAWN,,,,,,Yes,No,No,,,,,,,,,, +754,1.0,1615,chapin_dfss_providers_2011_070212.csv,CHICAGO YOUTH CENTERS PATHWAYS TO LEARNING CC,3418 W 79TH ST ,60652,7765439,,,,,,,CHICAGO YOUTH CENTERS,ASHBURN,,,,,Carol Quinn,Yes,No,No,,,,,,,,,, +317,0.999999915706303,1616,chapin_dfss_providers_2011_070212.csv,CHICAGO YOUTH CENTERS PATHWAYS TO LEARNING CC1,3460 W 79TH ST ,60652,4369244,,,,,,,CHICAGO YOUTH CENTERS,ASHBURN,,,,,Carol Quinn,Yes,No,No,,,,,,,,,, +316,0.999999915706303,1617,chapin_dfss_providers_2011_070212.csv,CHICAGO YOUTH CENTERS RACHEL'S 1,3430 W ROOSEVELT RD ,60624,5331837,,,,,,,CHICAGO YOUTH CENTERS,NORTH LAWNDALE,,,,,Carol Quinn,Yes,No,No,,,,,,,,,, +755,1.0,1618,chapin_dfss_providers_2011_070212.csv,CHICAGO YOUTH CENTERS RACHEL'S 2,5242 W NORTH AVE ,60639,2371444,,,,,,,CHICAGO YOUTH CENTERS,AUSTIN,,,,,Carol Quinn,Yes,No,No,,,,,,,,,, +139,0.9999999774715619,1619,chapin_dfss_providers_2011_070212.csv,CHICAGO YOUTH CENTERS REBECCA CROWN,7601 S PHILLIPS ,60649,7310444,,,,,,,CHICAGO YOUTH CENTERS,SOUTH SHORE,,,,,Annette Anthony,Yes,No,No,7088PS(HS Collaboration with Childcare & PreK),,,,,,,,, +95,0.9999999071128699,1620,chapin_dfss_providers_2011_070212.csv,CHICAGO YOUTH CENTERS ROSELAND CHILD DEVELOPMENT,461 E 111TH ST ,60627,4684405,,,,,,,CHICAGO YOUTH CENTERS,ROSELAND,,,,,Leola Clay,Yes,No,No,7066PS(HS Collaboration with Childcare & PreK),,,,,,,,, +756,1.0,1621,chapin_dfss_providers_2011_070212.csv,CHICAGO YOUTH CENTERS SHINING STAR 1,3012 16 E 92ND ST ,60617,9787827,,,,,,,CHICAGO YOUTH CENTERS,SOUTH DEERING,,,,,Carol Quinn,Yes,No,No,,,,,,,,,, +42,0.9999999811513564,1622,chapin_dfss_providers_2011_070212.csv,CHINESE AMERICAN SERVICE LEAGUE CHINESE AMERICAN SERVICE LEAGUE CHILD DEV CTR,2141 S TAN COURT ,60616,7910454,,,,,,,CHINESE AMERICAN SERVICE LEAGUE,ARMOUR SQUARE,,,,,Weilian Xin,Yes,No,Yes,"3248PS (HS Collaboration with Childcare & PreK), 2771PS (Chi",,,,,,,,, +51,0.9999999528783908,1623,chapin_dfss_providers_2011_070212.csv,CHRISTOPHER HOUSE GREENVIEW,2507 N GREENVIEW ,60614,4721083,,,,,,,CHRISTOPHER HOUSE,LINCOLN PARK,,,,,Aimee Washington,Yes,No,No,"2681IT(Child Care IT Center), 3406PS(HS Collaboration with C",,,,,,,,, +72,0.9999999076608814,1624,chapin_dfss_providers_2011_070212.csv,CHRISTOPHER HOUSE LOGAN SQUARE,3255 W ALTGELD ,60647,2354073,,,,,,,CHRISTOPHER HOUSE,LOGAN SQUARE,,,,,Carmen Velez,Yes,No,Yes,"4321IT(Child Care IT Center), 7087PS(HS Collaboration with C",,,,,,,,, +132,0.9999999513330113,1625,chapin_dfss_providers_2011_070212.csv,CHRISTOPHER HOUSE ROGERS PARK,7059 N GREENVIEW ,60626,2745477,,,,,,,CHRISTOPHER HOUSE,ROGERS PARK,,,,,Joni Rudds,Yes,No,Yes,"7073PS(HS Collaboration with Childcare & PreK), 4147PS(Child",,,,,,,,, +98,0.9999999555733209,1626,chapin_dfss_providers_2011_070212.csv,CHRISTOPHER HOUSE UPTOWN,4701 N WINTHROP ,60640,7694540,,,,,,,CHRISTOPHER HOUSE,UPTOWN,,,,,Karen Ross William,Yes,No,No,"2672IT(Child Care IT Center), 3405PS(HS Collaboration with C",,,,,,,,, +34,0.9999999105930328,1627,chapin_dfss_providers_2011_070212.csv,CHURCH OF GOD TRUE BELIEVERS CHURCH OF GOD COMMUNITY DAY CARE,1738 W MARQUETTE ST ,60636,,,,,,,,CHURCH OF GOD TRUE BELIEVERS,WEST ENGLEWOOD,,,,,Rev. Sheila Sims,Yes,No,No,7130PS(HS Collaboration with Childcare),,,,,,,,, +255,0.9999999655872422,1628,chapin_dfss_providers_2011_070212.csv,COMMUNITY LEARNING CENTER COMMUNITY LEARNING CENTER,10612 S WENTWORTH ,60628,9284104,,,,,,,COMMUNITY LEARNING CENTER,ROSELAND,,,,,Wanda Avery,Yes,No,No,,,,,,,,,, +149,0.999999926999517,1629,chapin_dfss_providers_2011_070212.csv,DOROTHY SUTTON BRANCH DOROTHY SUTTON BRANCH,8601 S STATE ,60619,7234445,,,,,,,DOROTHY SUTTON BRANCH,CHATHAM,,,,,Ms. Ola Kirksey,Yes,No,No,7123PS(HS Collaboration with Childcare),,,,,,,,, +106,0.9999999483808635,1630,chapin_dfss_providers_2011_070212.csv,"DOUGLASS-TUBMAN YOUTH MINISTRIES,INC. DOUGLASS-TUBMAN CHILD DEV CTR",5010 W CHICAGO AVE ,60651,6266581,,,,,,,"DOUGLASS-TUBMAN YOUTH MINISTRIES,INC.",AUSTIN,,,,,Mrs. Andrea Young,No,No,No,"2101SA(School Age (SA)), 2100PS(Child Care PS Center)",,,,,,,,, +757,1.0,1631,chapin_dfss_providers_2011_070212.csv,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO ALLISON'S INFANT & TODDLER CENTER,234 E 114TH ST ,60628,8404502,,,,,,,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO,ROSELAND,,,,,Allison Caldwell,No,Yes,No,,,,,,,,,, +758,1.0,1632,chapin_dfss_providers_2011_070212.csv,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO CHANNINGS CHILD CARE,5701 W DIVISION ST ,60651,4572990,,,,,,,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO,AUSTIN,,,,,Ruth Kimble,Yes,No,No,,,,,,,,,, +759,1.0,1633,chapin_dfss_providers_2011_070212.csv,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO CHILDREN'S INTERNATIONAL ACADEMY,5850 W ROOSEVELT RD ,60644,2870808,,,,,,,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO,AUSTIN,,,,,Gaby Servin,Yes,No,No,,,,,,,,,, +760,1.0,1634,chapin_dfss_providers_2011_070212.csv,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO CHIPPER PRESCHOOL,8225 S KEDZIE ,60652,7785757,,,,,,,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO,ASHBURN,,,,,Ms. Nelson,Yes,No,No,,,,,,,,,, +761,1.0,1635,chapin_dfss_providers_2011_070212.csv,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO FIFTH CITY,3411 W JACKSON ,60624,8268686,,,,,,,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO,EAST GARFIELD PARK,,,,,Ms. Veal,Yes,No,No,,,,,,,,,, +762,1.0,1636,chapin_dfss_providers_2011_070212.csv,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO FIRST START CHILDREN'S ACADEMY,4753 W WASHINGTON BLVD ,60644,3794928,,,,,,,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO,AUSTIN,,,,,Ms. Cachet,Yes,Yes,No,,,,,,,,,, +763,1.0,1637,chapin_dfss_providers_2011_070212.csv,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO FIRST START CHILDREN'S ACADEMY SOUTH,5700 S ASHLAND AVE 1ST FL ,60636,2777090,,,,,,,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO,WEST ENGLEWOOD,,,,,Beverly Mims,No,No,No,,,,,,,,,, +764,1.0,1638,chapin_dfss_providers_2011_070212.csv,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO FRESH START DAY CARE CENTER,6924 W NORTH AVENUE ,60635,4792870,,,,,,,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO,AUSTIN,,,,,Claudia Aguayo,Yes,No,No,,,,,,,,,, +3,0.9999999623027127,1639,chapin_dfss_providers_2011_070212.csv,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO GILCHRIST MARCHMAN,1001 W ROOSEVELT RD 606 ,81559,4927402,,,,,,,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO,NEAR WEST SIDE,,,,,Ms. Adrienne Hamilton,Yes,Yes,Yes,"4249IT(Child Care IT Center), 7012PS(HS Collaboration with C",,,,,,,,, +765,1.0,1640,chapin_dfss_providers_2011_070212.csv,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO IMANI'S CHILDREN,11443 S HALSTED ST ,60628,6609667,,,,,,,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO,ROSELAND,,,,,Marianne Powell-Dee,Yes,Yes,No,,,,,,,,,, +326,0.999999915706303,1641,chapin_dfss_providers_2011_070212.csv,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO LITTLE GIANTS,3863 W HARRISON ,60624,2656330,,,,,,,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO,WEST GARFIELD PARK,,,,,Ms. Granberry,Yes,No,No,,,,,,,,,, +766,1.0,1642,chapin_dfss_providers_2011_070212.csv,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO LIZ-NEY-LAND #1,4610 S PULASKI RD ,60632,2479779,,,,,,,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO,ARCHER HEIGHTS,,,,,Liz Medrano,Yes,No,No,,,,,,,,,, +767,1.0,1643,chapin_dfss_providers_2011_070212.csv,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO LIZ-NEY-LAND #2,6010 S PULASKI ,60632,5828355,,,,,,,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO,WEST LAWN,,,,,Liz Medrano,Yes,No,No,,,,,,,,,, +768,1.0,1644,chapin_dfss_providers_2011_070212.csv,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO LORDANCHILD DAYCARE,3344 W 79TH ST ,60652,4344918,,,,,,,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO,ASHBURN,,,,,Quentin Donald,Yes,No,No,,,,,,,,,, +769,1.0,1645,chapin_dfss_providers_2011_070212.csv,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO MOTHER'S TOUCH,2501 W 71ST ST ,60629,4363177,,,,,,,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO,CHICAGO LAWN,,,,,Ethel Daniels,Yes,No,No,,,,,,,,,, +770,1.0,1646,chapin_dfss_providers_2011_070212.csv,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO NEAR SOUTH SIDE CHILD DEVELOPMENT CENTER,2214 S FEDERAL ST ,60616,5483614,,,,,,,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO,ARMOUR SQUARE,,,,,Catherine Rokusek,No,Yes,No,"4388IP(EHS Collaboration Enhanced Center-IP), 4388EP(EHS Col",,,,,,,,, +771,1.0,1647,chapin_dfss_providers_2011_070212.csv,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO RACHEL'S LEARNING CENTER #1,3430 W ROOSEVELT RD ,60624,5330444,,,,,,,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO,NORTH LAWNDALE,,,,,Rochelle Ray,No,Yes,No,,,,,,,,,, +772,1.0,1648,chapin_dfss_providers_2011_070212.csv,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO RACHEL'S LEARNING CENTER #2,5242 W NORTH AVE ,60639,2371444,,,,,,,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO,AUSTIN,,,,,Rochelle Ray,No,Yes,No,,,,,,,,,, +773,1.0,1649,chapin_dfss_providers_2011_070212.csv,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO WHIZ KIDS NURSERY CENTER,518 W 103RD ST ,60628,2339445,,,,,,,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO,WASHINGTON HEIGHTS,,,,,Diana Ross,No,Yes,No,,,,,,,,,, +116,0.9999998,1650,chapin_dfss_providers_2011_070212.csv,EL HOGAR DEL NINO FCCH-BLANCA ALATORRE,5738 S KENNETH AVE ,60623,5812872,,,,,,,EL HOGAR DEL NINO,WEST ELSDON,,,,,,Yes,Yes,No,"5861PS(HS Collaboration with Childcare Homes), 5653IP(EHS Co",,,,,,,,, +1144,1.0,1651,chapin_dfss_providers_2011_070212.csv,EL HOGAR DEL NINO FCCH-ISABEL GUITERREZ,3448 W 59TH ST ,60623,4987085,,,,,,,EL HOGAR DEL NINO,GAGE PARK,,,,,,Yes,Yes,No,"5863PS(HS Collaboration with Childcare Homes), 5656IP(EHS Co",,,,,,,,, +1145,1.0,1652,chapin_dfss_providers_2011_070212.csv,EL HOGAR DEL NINO FCCH-LOURDES VELASCO,4718 S LECLAIRE AVE ,60638,5822250,,,,,,,EL HOGAR DEL NINO,GARFIELD RIDGE,,,,,,Yes,Yes,No,"5867PS(HS Collaboration with Childcare Homes), 5814IP(EHS Co",,,,,,,,, +1146,1.0,1653,chapin_dfss_providers_2011_070212.csv,EL HOGAR DEL NINO FCCH-MARIA GUZMAN,5548 S TRIPP AVE ,60629,7354542,,,,,,,EL HOGAR DEL NINO,WEST ELSDON,,,,,,Yes,Yes,No,"5873PS(HS Collaboration with Childcare Homes), 5657IP(EHS Co",,,,,,,,, +1147,1.0,1654,chapin_dfss_providers_2011_070212.csv,EL HOGAR DEL NINO FCCH-ROSA LOPEZ,4924 S KEELER ,60632,5818869,,,,,,,EL HOGAR DEL NINO,ARCHER HEIGHTS,,,,,,Yes,Yes,No,"5878PS(HS Collaboration with Childcare Homes), 5659IP(EHS Co",,,,,,,,, +32,0.9999999820285234,1655,chapin_dfss_providers_2011_070212.csv,EL HOGAR DEL NINO LOOMIS EL HOGAR,1718 S LOOMIS ,60608,5630644,,,,,,,EL HOGAR DEL NINO,LOWER WEST SIDE,,,,,Aurea De Jesus,Yes,No,No,"4136IT(Child Care IT Center), 8027PS(HS Collaboration with C",,,,,,,,, +774,1.0,1656,chapin_dfss_providers_2011_070212.csv,EL VALOR AMAZING GRACE CHILD CARE CENTER,11123 S HALSTED ST ,60628,2643636,,,,,,,EL VALOR,ROSELAND,,,,,Rachel Adesola,Yes,No,No,,,,,,,,,, +775,1.0,1657,chapin_dfss_providers_2011_070212.csv,EL VALOR BRENDA'S KIDS CLUB,3552 E 118TH STREET ,60617,6460007,,,,,,,EL VALOR,HEGEWISCH,,,,,Brenda Lopez,Yes,No,No,,,,,,,,,, +50,0.9999998967617268,1658,chapin_dfss_providers_2011_070212.csv,EL VALOR CARLOS CANTU,2434 S KILDARE ,60623,2422700,,,,,,,EL VALOR,SOUTH LAWNDALE,,,,,Irma Carmona,Yes,No,Yes,"4305IT(Child Care IT Center), 4305PS(Child Care PS Center),",,,,,,,,, +56,0.9999999513330113,1659,chapin_dfss_providers_2011_070212.csv,EL VALOR CENTRO INFANTIL (PUERTO RICAN COMM),2739 W DIVISION ,60622,3428866,,,,,,,EL VALOR,WEST TOWN,,,,,Xochiti Ramirez,Yes,No,No,,,,,,,,,, +776,1.0,1660,chapin_dfss_providers_2011_070212.csv,EL VALOR CHICAGO PRE-SCHOOL ACADEMY,532 E 87TH ST ,60619,4884495,,,,,,,EL VALOR,CHATHAM,,,,,Deneen Grover,Yes,No,No,,,,,,,,,, +1148,1.0,1661,chapin_dfss_providers_2011_070212.csv,EL VALOR FCCH-PATRICIA COBA,2719 S MILLARD ,60623,5222345,,,,,,,EL VALOR,SOUTH LAWNDALE,,,,,Nina Duena,No,No,No,"5991IT(Child Care Home IT), 5991PS(Child Care Home PS), 5991",,,,,,,,, +39,0.9999999362799544,1662,chapin_dfss_providers_2011_070212.csv,EL VALOR GUADALUPE REYES CHILDREN & FAMILY CENTER,1951 W 19TH ST ,60608,9972021,,,,,,,EL VALOR,LOWER WEST SIDE,,,,,Lydia Marcos,Yes,No,Yes,"4141PS(Child Care PS Center), 7026PS(HS Collaboration with C",,,,,,,,, +92,0.9999999513330113,1663,chapin_dfss_providers_2011_070212.csv,EL VALOR KIDDY KARE LEARNING CENTER,4444 S KEDZIE ,60632,2476642,,,,,,,EL VALOR,BRIGHTON PARK,,,,,Marina Lopez,Yes,No,No,,,,,,,,,, +777,1.0,1664,chapin_dfss_providers_2011_070212.csv,EL VALOR KIDZ COLONY,6287 SOUTH ARCHER AVE ,60638,7678522,,,,,,,EL VALOR,GARFIELD RIDGE,,,,,Joy Avila,Yes,No,No,,,,,,,,,, +778,1.0,1665,chapin_dfss_providers_2011_070212.csv,EL VALOR LITTLE BROWN BEAR PRE-SCHOOL,8046 S WESTERN AVE ,60620,4343508,,,,,,,EL VALOR,ASHBURN,,,,,Deborah Broyles,Yes,No,No,,,,,,,,,, +779,1.0,1666,chapin_dfss_providers_2011_070212.csv,EL VALOR LITTLE KIDS VILLAGE,2656 W 71ST ST ,60629,7764753,,,,,,,EL VALOR,CHICAGO LAWN,,,,,Sherri Thompson,Yes,No,No,,,,,,,,,, +118,0.9999999513330113,1667,chapin_dfss_providers_2011_070212.csv,EL VALOR LITTLE LEARNERS,5923 W 63RD STREET ,60638,5815541,,,,,,,EL VALOR,CLEARING,,,,,Marilyn Gonzalez,Yes,No,No,,,,,,,,,, +30,0.999999946687985,1668,chapin_dfss_providers_2011_070212.csv,EL VALOR LITTLE TYKES I,1711 W 35TH STREET ,60609,2547710,,,,,,,EL VALOR,MCKINLEY PARK,,,,,Sara Matta,Yes,No,No,,,,,,,,,, +33,0.999999946687985,1669,chapin_dfss_providers_2011_070212.csv,EL VALOR LITTLE TYKES II,1723 W 35TH STREET ,60609,5791791,,,,,,,EL VALOR,MCKINLEY PARK,,,,,Laura Gonzalez,Yes,No,No,,,,,,,,,, +780,1.0,1670,chapin_dfss_providers_2011_070212.csv,EL VALOR MARI'S BUMBLE BEE ACADEMY,9725 S COMMERCIAL AVE ,60617,2217692,,,,,,,EL VALOR,SOUTH DEERING,,,,,Marisol Lopez,Yes,No,No,,,,,,,,,, +781,1.0,1671,chapin_dfss_providers_2011_070212.csv,EL VALOR NEW AGE PREPARATORY (8940 S COTTAGE GROVE AVE),8940 S COTTAGE GROVE AVE ,60619,7832431,,,,,,,EL VALOR,CHATHAM,,,,,Tanya Furlow,No,No,No,,,,,,,,,, +782,1.0,1672,chapin_dfss_providers_2011_070212.csv,EL VALOR NEW AGE PREPARATORY ACADEMY (10951 S MICHIGAN AVE),10951 S MICHIGAN AVE ,60628,7857737,,,,,,,EL VALOR,ROSELAND,,,,,Tanya Furlow,Yes,No,No,,,,,,,,,, +66,0.9999999538304407,1673,chapin_dfss_providers_2011_070212.csv,EL VALOR REY GONZALEZ CHILDREN AND FAMILY CENTER,3050 E 92ND ST ,60617,7219311,,,,,,,EL VALOR,SOUTH CHICAGO,,,,,Monica Williams,Yes,No,Yes,"2170IT(Child Care IT Center), 2170PS(Child Care PS Center),",,,,,,,,, +298,0.999999915706303,1674,chapin_dfss_providers_2011_070212.csv,EL VALOR TEDDY BEAR 1 (51ST STREET),2649 W 51ST STREET ,60632,4760700,,,,,,,EL VALOR,GAGE PARK,,,,,Francy Torres,Yes,No,No,,,,,,,,,, +78,0.9999999026660227,1675,chapin_dfss_providers_2011_070212.csv,EL VALOR TEDDY BEAR 2 (COLUMBUS DR),3473 W COLUMBUS ,60652,4342327,,,,,,,EL VALOR,ASHBURN,,,,,Connie Gayton,Yes,No,No,,,,,,,,,, +125,0.999999853999034,1676,chapin_dfss_providers_2011_070212.csv,EL VALOR TEDDY BEAR 3 (6401 S PULASKI RD),6401 S PULASKI ,60629,2842292,,,,,,,EL VALOR,WEST LAWN,,,,,Natasha Catchings,Yes,No,No,,,,,,,,,, +109,0.999999853999034,1677,chapin_dfss_providers_2011_070212.csv,EL VALOR TEDDY BEAR 5 (5160 S PULASKI),5160 S PULASKI RD ,60632,2847030,,,,,,,EL VALOR,WEST ELSDON,,,,,Mary Zirngibl,Yes,No,No,,,,,,,,,, +64,0.9999999513330113,1678,chapin_dfss_providers_2011_070212.csv,EL VALOR YOUNG SCHOLARS DEV. INS.,3038 W 59TH STREET ,60629,9181944,,,,,,,EL VALOR,GAGE PARK,,,,,Elizabeth Campbell,Yes,No,No,,,,,,,,,, +783,1.0,1679,chapin_dfss_providers_2011_070212.csv,ERIE NEIGHBORHOOD HOUSE CHARTER SCHOOL,1405 N WASHTENAW AVE ,60622,,,,,,,,ERIE NEIGHBORHOOD HOUSE,WEST TOWN,,,,,,No,No,No,,,,,,,,,, +29,0.9999999483808635,1680,chapin_dfss_providers_2011_070212.csv,ERIE NEIGHBORHOOD HOUSE ERIE COMMUNITY CENTER,1701 W SUPERIOR ,60622,5635800,,,,,,,ERIE NEIGHBORHOOD HOUSE,WEST TOWN,,,,,Celena Roldan,Yes,No,No,"2640IT(Child Care IT Center), 3256PS(HS Collaboration with C",,,,,,,,, +584,0.999999926999517,1681,chapin_dfss_providers_2011_070212.csv,ERIE NEIGHBORHOOD HOUSE ERIE HOUSE,1347 W ERIE ,60622,,,,,,,,ERIE NEIGHBORHOOD HOUSE,WEST TOWN,,,,,Mr. Dennis Puhr,No,No,No,2648SA(School Age (SA)),,,,,,,,, +586,0.999999915706303,1682,chapin_dfss_providers_2011_070212.csv,ERIE NEIGHBORHOOD HOUSE ERIE NEIGHBORHOOD HOUSE - CORTEZ SA,2510 W CORTEZ ,60622,4867161,,,,,,,ERIE NEIGHBORHOOD HOUSE,WEST TOWN,,,,,Amy Kinney,No,No,Yes,4148SA(School Age (SA)),,,,,,,,, +1149,1.0,1683,chapin_dfss_providers_2011_070212.csv,ERIE NEIGHBORHOOD HOUSE FCCH-ANALIDA SANCHEZ SITE,1914 N SAYRE ,60707,4322213,,,,,,,ERIE NEIGHBORHOOD HOUSE,AUSTIN,,,,,Cynthia Suarez,No,No,No,"5697IP(EHS Collaboration Enhanced Home IP), 5700IT(Child Car",,,,,,,,, +1150,1.0,1684,chapin_dfss_providers_2011_070212.csv,ERIE NEIGHBORHOOD HOUSE FCCH-CARMEN L. VEGA SITE,3528 W PIERCE ,60618,4322213,,,,,,,ERIE NEIGHBORHOOD HOUSE,HUMBOLDT PARK,,,,,Cynthia Suarez,No,No,No,"5702IT(Child Care Home IT), 5702PS(Child Care Home PS), 5702",,,,,,,,, +1151,1.0,1685,chapin_dfss_providers_2011_070212.csv,ERIE NEIGHBORHOOD HOUSE FCCH-CARMEN MARTELL SITE,3509 W PIERCE ,60651,4322213,,,,,,,ERIE NEIGHBORHOOD HOUSE,HUMBOLDT PARK,,,,,Cynthia Saurez,No,No,No,"5692IT(Child Care Home IT), 5692PS(Child Care Home PS), 5692",,,,,,,,, +1152,1.0,1686,chapin_dfss_providers_2011_070212.csv,ERIE NEIGHBORHOOD HOUSE FCCH-GLADYS LORENZO,2636 N WASHTENAW AVE ,60647,,,,,,,,ERIE NEIGHBORHOOD HOUSE,LOGAN SQUARE,,,,,,No,Yes,No,"5999PS(HS Collaboration with Childcare Homes), 5999IP(EHS Co",,,,,,,,, +1153,1.0,1687,chapin_dfss_providers_2011_070212.csv,ERIE NEIGHBORHOOD HOUSE FCCH-IRAIDA GARRIGA SITE,2523 N PARKSIDE ,60639,4322213,,,,,,,ERIE NEIGHBORHOOD HOUSE,BELMONT CRAGIN,,,,,Cynthia Suarez,No,Yes,No,"6110IP(EHS Collaboration Enhanced Home IP), 5684IT(Child Car",,,,,,,,, +1154,1.0,1688,chapin_dfss_providers_2011_070212.csv,ERIE NEIGHBORHOOD HOUSE FCCH-JESUS E. RAMIREZ SITE,4414 N CHRISTIANA ,60625,4322213,,,,,,,ERIE NEIGHBORHOOD HOUSE,ALBANY PARK,,,,,Cynthia Suarez,No,Yes,No,"5966IP(EHS Collaboration Enhanced Home IP), 5694IT(Child Car",,,,,,,,, +1155,1.0,1689,chapin_dfss_providers_2011_070212.csv,ERIE NEIGHBORHOOD HOUSE FCCH-LUCIA RUBIO SITE,5522 W NEWPORT ST ,60641,4322213,,,,,,,ERIE NEIGHBORHOOD HOUSE,PORTAGE PARK,,,,,Cynthia Saurez,No,Yes,No,"6112IP(EHS Collaboration Enhanced Home IP), 5695IT(Child Car",,,,,,,,, +1156,1.0,1690,chapin_dfss_providers_2011_070212.csv,ERIE NEIGHBORHOOD HOUSE FCCH-MARGARITA DEL VALLE SITE,1004 N KEDZIE AVE ,60651,4322213,,,,,,,ERIE NEIGHBORHOOD HOUSE,HUMBOLDT PARK,,,,,Cynthia Suarez,No,Yes,No,"5682IP(EHS Collaboration Enhanced Home IP), 5934IT(Child Car",,,,,,,,, +1157,1.0,1691,chapin_dfss_providers_2011_070212.csv,ERIE NEIGHBORHOOD HOUSE FCCH-MARIA BAUTISTA SITE,1422 N CENTRAL AVE ,60651,4322213,,,,,,,ERIE NEIGHBORHOOD HOUSE,AUSTIN,,,,,Cynthia Suarez,No,Yes,No,"5678IP(EHS Collaboration Enhanced Home IP), 5813IT(Child Car",,,,,,,,, +1158,1.0,1692,chapin_dfss_providers_2011_070212.csv,ERIE NEIGHBORHOOD HOUSE FCCH-MARIA GUERRERO SITE,2311 N KEATING ,60639,4322213,,,,,,,ERIE NEIGHBORHOOD HOUSE,BELMONT CRAGIN,,,,,Cythnia Suarez,No,No,No,,,,,,,,,, +1159,1.0,1693,chapin_dfss_providers_2011_070212.csv,ERIE NEIGHBORHOOD HOUSE FCCH-MARIA MAHECHA SITE,4151 W LAWRENCE ,60630,4322213,,,,,,,ERIE NEIGHBORHOOD HOUSE,ALBANY PARK,,,,,Cynthia Suarez,No,Yes,No,"5688IP(EHS Collaboration Enhanced Home IP), 5691IT(Child Car",,,,,,,,, +1160,1.0,1694,chapin_dfss_providers_2011_070212.csv,ERIE NEIGHBORHOOD HOUSE FCCH-MARIA YOLANDA GUERRO SITE,4848 N KEELER ST ,60630,4322213,,,,,,,ERIE NEIGHBORHOOD HOUSE,ALBANY PARK,,,,,Cynthia Suarez,No,Yes,No,"5686IP(EHS Collaboration Enhanced Home IP), 5689IT(Child Car",,,,,,,,, +1161,1.0,1695,chapin_dfss_providers_2011_070212.csv,ERIE NEIGHBORHOOD HOUSE FCCH-MARISELA MARTINEZ SITE,5018 W DRUMMOND PL ,60639,4322213,,,,,,,ERIE NEIGHBORHOOD HOUSE,BELMONT CRAGIN,,,,,Cythnia Suarez,No,Yes,No,"6111IP(EHS Collaboration Enhanced Home IP), 5693IT(Child Car",,,,,,,,, +1162,1.0,1696,chapin_dfss_providers_2011_070212.csv,ERIE NEIGHBORHOOD HOUSE FCCH-MIGDALIA SEPULVEDA SITE,1254 N MAPLEWOOD ,60622,4322213,,,,,,,ERIE NEIGHBORHOOD HOUSE,WEST TOWN,,,,,Cynthia Suarez,No,No,No,"5701IT(Child Care Home IT), 5701PS(Child Care Home PS), 5701",,,,,,,,, +1163,1.0,1697,chapin_dfss_providers_2011_070212.csv,ERIE NEIGHBORHOOD HOUSE FCCH-NURY RODRIGUEZ,2420 W LEMOYNE AVE 1 ,60622,,,,,,,,ERIE NEIGHBORHOOD HOUSE,WEST TOWN,,,,,,No,Yes,No,"5919IP(EHS Collaboration Enhanced Home IP), 5922IT(Child Car",,,,,,,,, +1164,1.0,1698,chapin_dfss_providers_2011_070212.csv,ERIE NEIGHBORHOOD HOUSE FCCH-PATRICIA CASTANDA SITE,4906 N LAWNDALE ,60625,4322213,,,,,,,ERIE NEIGHBORHOOD HOUSE,ALBANY PARK,,,,,Cythnia Suarez,No,Yes,No,"5679IP(EHS Collaboration Enhanced Home IP), 5680IT(Child Car",,,,,,,,, +1165,1.0,1699,chapin_dfss_providers_2011_070212.csv,ERIE NEIGHBORHOOD HOUSE FCCH-SERVIA GALVA SITE,2008 W SUPERIOR ,60622,4322213,,,,,,,ERIE NEIGHBORHOOD HOUSE,WEST TOWN,,,,,Cynthia Suarez,No,No,No,"5683IT(Child Care Home IT), 5683PS(Child Care Home PS), 5683",,,,,,,,, +1166,1.0,1700,chapin_dfss_providers_2011_070212.csv,ERIE NEIGHBORHOOD HOUSE FCCH-SILVERIA CRUZ SITE,1656 N SPRINGFIELD ,60647,4322213,,,,,,,ERIE NEIGHBORHOOD HOUSE,HUMBOLDT PARK,,,,,Cythnia Suarez,No,Yes,No,"6109IP(EHS Collaboration Enhanced Home IP), 5681IT(Child Car",,,,,,,,, +1167,1.0,1701,chapin_dfss_providers_2011_070212.csv,ERIE NEIGHBORHOOD HOUSE FCCH-TANIA PEREZ,4502 N CHRISTIANA AVE ,60625,5041813,,,,,,,ERIE NEIGHBORHOOD HOUSE,ALBANY PARK,,,,,Nancy Vazquez,No,No,No,"6133IP(EHS Collaboration Enhanced Home IP), 6134IT(Child Car",,,,,,,,, +784,1.0,1702,chapin_dfss_providers_2011_070212.csv,FIRMAN COMMUNITY SERVICES FIRMAN COMMUNITY SERVICES EARLY BEGINNINGS,4705 S STATE ,60609,,,,,,,,FIRMAN COMMUNITY SERVICES,GRAND BOULEVARD,,,,,,No,No,No,,,,,,,,,, +785,1.0,1703,chapin_dfss_providers_2011_070212.csv,FIRMAN COMMUNITY SERVICES FIRMAN HOUSE EAST,4910 S KING ,60615,3733400,,,,,,,FIRMAN COMMUNITY SERVICES,GRAND BOULEVARD,,,,,Ms. Carmolita Curry,Yes,No,No,"7077PS(HS Collaboration with Childcare & PreK), 4144SA(Schoo",,,,,,,,, +112,1.0,1704,chapin_dfss_providers_2011_070212.csv,FIRMAN COMMUNITY SERVICES FIRMAN HOUSE SOUTH,5401 S WENTWORTH AVE ,60609,3733400,,,,,,,FIRMAN COMMUNITY SERVICES,FULLER PARK,,,,,Donna Skinner-Echols,No,No,No,"4394IT(Child Care IT Center), 4394PS(Child Care PS Center &",,,,,,,,, +80,0.9999999578531515,1705,chapin_dfss_providers_2011_070212.csv,FIRMAN COMMUNITY SERVICES FIRMAN HOUSE WEST,37 W 47TH ST ,60609,3733400,,,,,,,FIRMAN COMMUNITY SERVICES,GRAND BOULEVARD,,,,,Ms. Donna Skinner-Echols,Yes,No,No,"7076PS(HS Collaboration with Childcare & PreK), 2759SA(Schoo",,,,,,,,, +590,0.9999999311744846,1706,chapin_dfss_providers_2011_070212.csv,FIRMAN COMMUNITY SERVICES FIRMAN WEST II SA 4644 S. DEARBORN,4644 S DEARBORN ,60609,3733400,,,,,,,FIRMAN COMMUNITY SERVICES,GRAND BOULEVARD,,,,,LaTasha Gentry,No,No,Yes,2760SA(School Age (SA)),,,,,,,,, +290,0.9999999655872422,1707,chapin_dfss_providers_2011_070212.csv,FIRST CHURCH OF LOVE AND FAITH FIRST CHURCH OF LOVE AND FAITH,2140 W 79TH ST ,60620,8739155,,,,,,,FIRST CHURCH OF LOVE AND FAITH,AUBURN GRESHAM,,,,,Connie Guyton,Yes,No,No,,,,,,,,,, +1168,1.0,1708,chapin_dfss_providers_2011_070212.csv,FIRST CHURCH OF LOVE AND FAITH FIRST CHURCH OF LOVE AND FAITH#2,2141 WEST 79TH STREET ,60620,2246800,,,,,,,FIRST CHURCH OF LOVE AND FAITH,AUBURN GRESHAM,,,,,CONNIIE GUYTON,Yes,No,No,3258PS(HS Collaboration with Childcare),,,,,,,,, +1169,1.0,1709,chapin_dfss_providers_2011_070212.csv,FSS BLUE NORTH,1615 W CHICAGO AVENUE ST ,60622,7432084,,,,,,,FSS,WEST TOWN,,,,,,No,No,No,CYSPS(Child Care IT Center),,,,,,,,, +1170,1.0,1710,chapin_dfss_providers_2011_070212.csv,FSS RED SOUTH,1615 W CHICAGO ,60622,,,,,,,,FSS,WEST TOWN,,,,,Mr. Walters,No,No,No,CYSPS(Child Care IT Center),,,,,,,,, +1171,1.0,1711,chapin_dfss_providers_2011_070212.csv,GADS HILL CENTER FCCH-AMELIA VALENCIA SITE,3021 W 53RD ST ,60632,2511196,,,,,,,GADS HILL CENTER,GAGE PARK,,,,,Celina Orozco,No,Yes,No,"5708IP(EHS Collaboration Enhanced Home IP), 5714IT(Child Car",,,,,,,,, +1172,1.0,1712,chapin_dfss_providers_2011_070212.csv,GADS HILL CENTER FCCH-EDITH ORTEGA SITE,3737 W 51ST ,60632,2511196,,,,,,,GADS HILL CENTER,WEST ELSDON,,,,,Celina Orozco,No,Yes,No,"5705IP(EHS Collaboration Enhanced Home IP), 5711IT(Child Car",,,,,,,,, +1173,1.0,1713,chapin_dfss_providers_2011_070212.csv,GADS HILL CENTER FCCH-LUZ OROZCO SITE,4546 W 67TH ST ,60632,2511196,,,,,,,GADS HILL CENTER,WEST LAWN,,,,,Celina Orozco,No,Yes,No,"5704IP(EHS Collaboration Enhanced Home IP), 5710IT(Child Car",,,,,,,,, +1174,1.0,1714,chapin_dfss_providers_2011_070212.csv,GADS HILL CENTER FCCH-MAGDALENA ORTEGA SITE,2318 S HOYNE ,60608,2511196,,,,,,,GADS HILL CENTER,LOWER WEST SIDE,,,,,Celina Orozco,No,Yes,No,"5706IP(EHS Collaboration Enhanced Home IP), 5706IT(EHS Enhan",,,,,,,,, +1175,1.0,1715,chapin_dfss_providers_2011_070212.csv,GADS HILL CENTER FCCH-MARIA GONZALEZ,5753 S MOZART AVE ,60629,4714975,,,,,,,GADS HILL CENTER,GAGE PARK,,,,,,No,Yes,No,"5979IP(EHS Collaboration Enhanced Home IP), 5979IT(EHS Enhan",,,,,,,,, +1176,1.0,1716,chapin_dfss_providers_2011_070212.csv,GADS HILL CENTER FCCH-MARIA PADRON,3754 W 55TH ST ,60632,8388760,,,,,,,GADS HILL CENTER,WEST ELSDON,,,,,,No,Yes,No,"5980IP(EHS Collaboration Enhanced Home IP), 5980IT(EHS Enhan",,,,,,,,, +1177,1.0,1717,chapin_dfss_providers_2011_070212.csv,GADS HILL CENTER FCCH-SARA ORTEGA SITE,6110 S MOZART ,60629,2511196,,,,,,,GADS HILL CENTER,CHICAGO LAWN,,,,,Celina Orozco,No,No,No,"5707IP(EHS Collaboration Enhanced Home IP), 5713IT(Child Car",,,,,,,,, +585,0.9999998623489692,1718,chapin_dfss_providers_2011_070212.csv,GADS HILL CENTER GH CULLERTON LOCATION,1919 W CULLERTON ,60608,,,,,,,,GADS HILL CENTER,LOWER WEST SIDE,,,,,Mr. Montes de Oca,No,Yes,Yes,2651SA(School Age (SA)),,,,,,,,, +192,0.999999943169201,1719,chapin_dfss_providers_2011_070212.csv,GADS HILL CENTER GH SINAI COMMUNITY OGDEN,2653 W OGDEN ,60608,5211196,,,,,,,GADS HILL CENTER,NORTH LAWNDALE,,,,,Rick Baldwin,Yes,No,Yes,4289SA(School Age (SA)),,,,,,,,, +786,1.0,1720,chapin_dfss_providers_2011_070212.csv,GADS HILL CENTER HUNT'S EARLY CHILDHOOD EDUCATIONAL ACADEMY,2701 W 79TH ST ,60652,8638260,,,,,,,GADS HILL CENTER,ASHBURN,,,,,Sallie Hunt,Yes,No,No,,,,,,,,,, +787,1.0,1721,chapin_dfss_providers_2011_070212.csv,GADS HILL CENTER KOVE LEARNING ACADEMY,3137 W 71ST ST ,60629,4763083,,,,,,,GADS HILL CENTER,CHICAGO LAWN,,,,,Olivia Hargon,Yes,No,No,,,,,,,,,, +788,1.0,1722,chapin_dfss_providers_2011_070212.csv,GADS HILL CENTER M & E DAYCARE - 79TH STREET DAY CARE,3728 W 79TH ST ,60652,5857979,,,,,,,GADS HILL CENTER,ASHBURN,,,,,Lisa Pearson,Yes,No,No,,,,,,,,,, +789,1.0,1723,chapin_dfss_providers_2011_070212.csv,HAYMARKET CENTER HAYMARKET CENTER,120 N SANGAMON ,60607,2267984,,,,,,,HAYMARKET CENTER,NEAR WEST SIDE,,,,,Bakahia Madison,No,Yes,No,,,,,,,,,, +790,1.0,1724,chapin_dfss_providers_2011_070212.csv,HAYMARKET CENTER WHOLLY INNOCENCE DAY CARE CENTER,34 N SANGAMON ,60607,2267984,,,,,,,HAYMARKET CENTER,NEAR WEST SIDE,,,,,Bakahia Madison,No,No,No,"4343IT(Child Care IT Center), 4343PS(Child Care PS Center),",,,,,,,,, +103,0.999999915706303,1725,chapin_dfss_providers_2011_070212.csv,HEALING TEMPLE FCCH-EARNESTINE MOORE,4941 W CHICAGO AVE ,60651,2876964,,,,,,,HEALING TEMPLE,AUSTIN,,,,,,No,Yes,No,"5981IP(EHS Collaboration Enhanced Home IP), 5982IT(Child Car",,,,,,,,, +1178,1.0,1726,chapin_dfss_providers_2011_070212.csv,HEALING TEMPLE FCCH-GLENNER MITCHELL,5412 W POTOMAC AVE ,60651,3784974,,,,,,,HEALING TEMPLE,AUSTIN,,,,,,No,Yes,No,"5608IP(EHS Collaboration Enhanced Home IP), 5608IT(EHS Enhan",,,,,,,,, +1179,1.0,1727,chapin_dfss_providers_2011_070212.csv,HEALING TEMPLE FCCH-MARY MURPHY,5418 W JACKSON ,60644,2876994,,,,,,,HEALING TEMPLE,AUSTIN,,,,,Lucille Brown,No,Yes,No,"5717IP(EHS Collaboration Enhanced Home IP), 5717IT(EHS Enhan",,,,,,,,, +1180,1.0,1728,chapin_dfss_providers_2011_070212.csv,HEALING TEMPLE FCCH-ROSIE CRAWFORD,1114 N LARAMIE ,60651,2876964,,,,,,,HEALING TEMPLE,AUSTIN,,,,,Lucille Brown,No,Yes,No,"5715IP(EHS Collaboration Enhanced Home IP), 5715IT(EHS Enhan",,,,,,,,, +103,0.9999999578531515,1729,chapin_dfss_providers_2011_070212.csv,HEALING TEMPLE HEALING TEMPLE,4941 W CHICAGO ,60651,2876964,,,,,,,HEALING TEMPLE,AUSTIN,,,,,Carole Smoot,Yes,No,No,,,,,,,,,, +791,1.0,1730,chapin_dfss_providers_2011_070212.csv,HEKTOEN INSTITUTE EARLY HEAD START PROGRAM AT STROGER HOSPITAL,1900 W POLK ,60612,8646560,,,,,,,HEKTOEN INSTITUTE,NEAR WEST SIDE,,,,,Grace Ortiz,No,Yes,No,,,,,,,,,, +345,0.9999999578531515,1731,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE ALL ABOUT KIDS LEARNING ACADEMY,514 E 75TH ST ,60619,8922800,,,,,,,HENRY BOOTH HOUSE,GREATER GRAND CROSSING,,,,,Tess McKenzie,Yes,No,No,,,,,,,,,, +792,1.0,1732,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE ALLISON'S,34 E 115TH STREET ,60628,8404502,,,,,,,HENRY BOOTH HOUSE,ROSELAND,,,,,Allison Perkins,Yes,No,No,,,,,,,,,, +351,0.9999999578531515,1733,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE ALLISON'S INFANT TODDLER,5522 S RACINE ,60636,4363193,,,,,,,HENRY BOOTH HOUSE,WEST ENGLEWOOD,,,,,LaParish Woody,Yes,No,No,,,,,,,,,, +348,0.999999915706303,1734,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE ANGEL WINGS,5365 W NORTH ,60639,7450262,,,,,,,HENRY BOOTH HOUSE,AUSTIN,,,,,Lisa Collins,Yes,No,No,,,,,,,,,, +793,1.0,1735,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE BRITE NEW MINDS,112 E 51ST STREET ,60615,,,,,,,,HENRY BOOTH HOUSE,GRAND BOULEVARD,,,,,,Yes,No,No,,,,,,,,,, +350,0.999999915706303,1736,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE BUNNYLAND LAND DAY CARE,545 W 119TH STREET ,60628,5685200,,,,,,,HENRY BOOTH HOUSE,WEST PULLMAN,,,,,Ms. Boykin,Yes,No,No,,,,,,,,,, +297,0.9999999578531515,1737,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE COLOR FOR TOTS,2550 E 73RD ST ,60649,3638687,,,,,,,HENRY BOOTH HOUSE,SOUTH SHORE,,,,,Cassandra Williams,Yes,No,No,,,,,,,,,, +794,1.0,1738,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE GINA'S UNBELIEVABLE,7239 S DOBSON ,60619,3242010,,,,,,,HENRY BOOTH HOUSE,GREATER GRAND CROSSING,,,,,Gina Thomas,Yes,No,No,,,,,,,,,, +359,0.999999915706303,1739,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE GRANNY'S DAY CARE CENTER,645 W 127TH STREET ,60628,2644800,,,,,,,HENRY BOOTH HOUSE,WEST PULLMAN,,,,,Ms. Priscilla Bolling,Yes,No,No,,,,,,,,,, +302,0.999999915706303,1740,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE HEGEWISCH,2725 E 130TH STREET ,60633,,,,,,,,HENRY BOOTH HOUSE,HEGEWISCH,,,,,,Yes,No,Yes,"4358IT(Child Care IT Center), 4358PS(Child Care PS Center),",,,,,,,,, +256,0.9999999578531515,1741,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE HIPPITY HOP TINY TOTS,11223 S HALSTED ST ,60628,7853340,,,,,,,HENRY BOOTH HOUSE,ROSELAND,,,,,Ms. Tuggle,Yes,No,No,,,,,,,,,, +367,0.9999999578531515,1742,chapin_dfss_providers_2011_070212.csv,"HENRY BOOTH HOUSE ITSY BITSY PEOPLE PALACE, INC",7419 S COTTAGE GROVE AVE ,60619,8467396,,,,,,,HENRY BOOTH HOUSE,GREATER GRAND CROSSING,,,,,Ms. Whiting,Yes,No,No,,,,,,,,,, +378,0.999999915706303,1743,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE JELLY BEAN LEARINING CENTER-8501 S ASHLAND,8501 S ASHLAND ,60620,2395437,,,,,,,HENRY BOOTH HOUSE,AUBURN GRESHAM,,,,,Ms. Donna Taylor,Yes,No,No,,,,,,,,,, +795,1.0,1744,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE JELLY BEAN-358-370 E 71ST,358 370 E 71ST ,60636,8738888,,,,,,,HENRY BOOTH HOUSE,GREATER GRAND CROSSING,,,,,Donna Taylor,Yes,No,No,,,,,,,,,, +334,0.9999999578531515,1745,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE JONES ACADEMY,4344 S WENTWORTH AVE ,60609,5363757,,,,,,,HENRY BOOTH HOUSE,FULLER PARK,,,,,Felicia Jones,Yes,No,No,,,,,,,,,, +265,0.9999999578531515,1746,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE KIDS PLACE II,1318 W 95TH STREET ,60643,4456500,,,,,,,HENRY BOOTH HOUSE,WASHINGTON HEIGHTS,,,,,Ms. Porter,Yes,No,No,,,,,,,,,, +259,1.0,1747,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE KIDS R FIRST 1155 W 81ST,1155 W 81ST STREET ,60620,7838080,,,,,,,HENRY BOOTH HOUSE,AUBURN GRESHAM,,,,,Wilborn,Yes,No,No,,,,,,,,,, +796,1.0,1748,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE KIDS R FIRST 7838 S HALSTED,7838 S HALSTED ,60620,4889443,,,,,,,HENRY BOOTH HOUSE,AUBURN GRESHAM,,,,,Ms. Jones,Yes,No,No,,,,,,,,,, +275,0.999999915706303,1749,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE LAKEVIEW DEVELOPMENT CENTER,1531 W LAWRENCE ,60640,,,,,,,,HENRY BOOTH HOUSE,UPTOWN,,,,,,Yes,No,No,,,,,,,,,, +374,0.99999994,1750,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE LEARNING TREE,8128 S KEDZIE ,60652,7788802,,,,,,,HENRY BOOTH HOUSE,ASHBURN,,,,,Ms. Vaughn,No,No,No,,,,,,,,,, +362,0.9999999578531515,1751,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE LITTLE ANGELS FAMILY DAYCARE,6701 S EMERALD AVE ,60621,4888777,,,,,,,HENRY BOOTH HOUSE,ENGLEWOOD,,,,,NaShone Greer,Yes,No,No,,,,,,,,,, +797,1.0,1752,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE LITTLE FOLKS DAY CARE,2527 E 73RD STREET ,60649,,,,,,,,HENRY BOOTH HOUSE,SOUTH SHORE,,,,,,Yes,No,No,,,,,,,,,, +372,0.999999915706303,1753,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE LITTLE HANDS & FEET,7801 S WOLCOTT ,60620,9948561,,,,,,,HENRY BOOTH HOUSE,AUBURN GRESHAM,,,,,Ms. Doyle,Yes,No,No,,,,,,,,,, +269,0.999999915706303,1754,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE LITTLE HANDS AND FEET II (87TH),1414 W 87TH STREET ,60620,2392322,,,,,,,HENRY BOOTH HOUSE,AUBURN GRESHAM,,,,,Ms. Jackson,Yes,No,No,,,,,,,,,, +310,0.9999999578531515,1755,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE LITTLE LEADERS OF TOMORROW I - MAYFIELD,301 N MAYFIELD AVE ,60644,3788302,,,,,,,HENRY BOOTH HOUSE,AUSTIN,,,,,Ms. Navy,Yes,No,No,,,,,,,,,, +798,1.0,1756,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE LIVING WITNESS,4259 N LARAMIE ,60641,,,,,,,,HENRY BOOTH HOUSE,PORTAGE PARK,,,,,,Yes,No,No,,,,,,,,,, +285,0.9999999578531515,1757,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE LOOP,2001 S MICHIGAN ,60616,2258828,,,,,,,HENRY BOOTH HOUSE,NEAR SOUTH SIDE,,,,,Ms. Gregg,Yes,No,No,,,,,,,,,, +799,1.0,1758,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE LOVE N LEARN ACADEMY,723 725 E 75TH STREET ,60619,7230338,,,,,,,HENRY BOOTH HOUSE,GREATER GRAND CROSSING,,,,,Ms. Blanton & Ms. Johnson,Yes,No,No,,,,,,,,,, +60,0.9999999578531515,1759,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE NEAR SOUTH,2929 S WABASH ,60616,7910424,,,,,,,HENRY BOOTH HOUSE,DOUGLAS,,,,,Ms. Newsome,Yes,No,No,7013PS(HS Collaboration with Childcare),,,,,,,,, +144,0.9999999513330113,1760,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE NEW PISGAH,8130 S RACINE ,60620,8735392,,,,,,,HENRY BOOTH HOUSE,AUBURN GRESHAM,,,,,Mr. S. Smith,Yes,No,No,,,,,,,,,, +282,0.99999994,1761,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE NICO'S,1855 W 95TH STREET ,60643,2380117,,,,,,,HENRY BOOTH HOUSE,BEVERLY,,,,,Ms. Watts,No,No,No,,,,,,,,,, +148,0.9999999026660227,1762,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE NORTH KENWOOD DAY CARE CENTER,857 E PERSHING ,60653,,,,,,,,HENRY BOOTH HOUSE,OAKLAND,,,,,,Yes,No,No,,,,,,,,,, +383,0.9999999578531515,1763,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE PATTI CAKE,939 W 87TH STREET ,60620,8749460,,,,,,,HENRY BOOTH HOUSE,AUBURN GRESHAM,,,,,Ms. Harris,Yes,No,No,,,,,,,,,, +375,0.9999999578531515,1764,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE PINK'S CHILD CARE ACADEMY,8236 S KEDZIE ,60652,8637465,,,,,,,HENRY BOOTH HOUSE,ASHBURN,,,,,Ms. Jones,Yes,No,No,,,,,,,,,, +800,1.0,1765,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE PRECIOUS LITTLE ONES,5327 S MICHIGAN AVE ,60615,,,,,,,,HENRY BOOTH HOUSE,WASHINGTON PARK,,,,,,Yes,No,No,,,,,,,,,, +801,1.0,1766,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE PRODIGY CHILD LEARNING CENTER,1921 E 79TH STREET ,60649,2213100,,,,,,,HENRY BOOTH HOUSE,SOUTH CHICAGO,,,,,Shonzette Cheeks,Yes,No,No,,,,,,,,,, +802,1.0,1767,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE THE WORLD IS YOURS,8026 S COTTAGE GROVE AVE ,60619,,,,,,,,HENRY BOOTH HOUSE,CHATHAM,,,,,,Yes,No,No,,,,,,,,,, +281,0.9999999578531515,1768,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE WEE CARE NURSERY,1845 E 79TH STREET ,60649,2214442,,,,,,,HENRY BOOTH HOUSE,SOUTH CHICAGO,,,,,Ms. Williams-Morgan,Yes,No,No,,,,,,,,,, +294,0.999999915706303,1769,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE WEE WEE CENTER FOR CREATIVE,2434 W 71ST STREET ,60629,4710869,,,,,,,HENRY BOOTH HOUSE,CHICAGO LAWN,,,,,Ms. Duckery,Yes,No,No,,,,,,,,,, +803,1.0,1770,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE WEST AUSTIN,4920 W MADISON ,60644,,,,,,,,HENRY BOOTH HOUSE,AUSTIN,,,,,,Yes,No,No,,,,,,,,,, +804,1.0,1771,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE WHIZ KIDS NURSERY 518 W 103 RD ST,518 W 103RD STREET ,60628,2339445,,,,,,,HENRY BOOTH HOUSE,WASHINGTON HEIGHTS,,,,,Ms. Craft,Yes,No,No,,,,,,,,,, +805,1.0,1772,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE YOUNG ACHIEVERS ACADEMY,520 E 79TH STREET ,60619,,,,,,,,HENRY BOOTH HOUSE,GREATER GRAND CROSSING,,,,,,Yes,No,No,,,,,,,,,, +97,0.9999999240186883,1773,chapin_dfss_providers_2011_070212.csv,HOME OF LIFE COMMUNITY DEV. CORP. HLCDC DEV. II,4650 W MADISON ,60644,6268655,,,,,,,HOME OF LIFE COMMUNITY DEV. CORP.,AUSTIN,,,,,Dorietta Sceanior,Yes,No,Yes,"2114IT(Child Care IT Center), 7199PS(HS Collaboration with C",,,,,,,,, +96,0.9999999356196254,1774,chapin_dfss_providers_2011_070212.csv,HOME OF LIFE COMMUNITY DEV. CORP. HOME OF LIFE JUST FOR YOU,4647 W WASHINGTON ,60644,6268655,,,,,,,HOME OF LIFE COMMUNITY DEV. CORP.,AUSTIN,,,,,Nena Porter Cooper,Yes,No,No,"2114PS(Child Care PS Center), 7199PS(HS Collaboration with C",,,,,,,,, +138,1.0,1775,chapin_dfss_providers_2011_070212.csv,HOWARD AREA COMMUNITY CENTER HOWARD AREA,7510 N ASHLAND ,60626,2626622,,,,,,,HOWARD AREA COMMUNITY CENTER,ROGERS PARK,,,,,Stephania Koliarakis,Yes,No,Yes,"7071PS(HS Collaboration with Childcare & PreK), 2765PS(Child",,,,,,,,, +1181,1.0,1776,chapin_dfss_providers_2011_070212.csv,HULL HOUSE ASSOCIATION BOTTLES TO BOOKS LEARNING CENTER,6014 S RACINE ,60621,4345772,,,,,,,HULL HOUSE ASSOCIATION,WEST ENGLEWOOD,,,,,Tamika Daniels,Yes,No,No,,,,,,,,,, +1182,1.0,1777,chapin_dfss_providers_2011_070212.csv,HULL HOUSE ASSOCIATION FCCH-BARBARA DAVIS,1656 N LOTUS ST ,60639,2355342,,,,,,,HULL HOUSE ASSOCIATION,AUSTIN,,,,,Etisha Wofford,No,No,No,"5734IP(EHS Collaboration Enhanced Home IP), 5735IT(Child Car",,,,,,,,, +1183,1.0,1778,chapin_dfss_providers_2011_070212.csv,HULL HOUSE ASSOCIATION FCCH-DIANIRA ULIN,1912 N PULASKI AVE ,60639,2355342,,,,,,,HULL HOUSE ASSOCIATION,HERMOSA,,,,,Etisha Wofford,No,Yes,No,"5937IP(EHS Collaboration Enhanced Home IP), 5746IT(Child Car",,,,,,,,, +1184,1.0,1779,chapin_dfss_providers_2011_070212.csv,HULL HOUSE ASSOCIATION FCCH-EARLINE HAGGARD,3347 W CARROLL AVE ,60624,8267766,,,,,,,HULL HOUSE ASSOCIATION,EAST GARFIELD PARK,,,,,,No,Yes,No,"6128IP(EHS Collaboration Enhanced Home IP), 6129IT(Child Car",,,,,,,,, +1185,1.0,1780,chapin_dfss_providers_2011_070212.csv,HULL HOUSE ASSOCIATION FCCH-EDITH COLLINS,5538 W CORTLAND AVE ,60639,2355342,,,,,,,HULL HOUSE ASSOCIATION,AUSTIN,,,,,Etisha Wofford,No,No,No,"5731IP(EHS Collaboration Enhanced Home IP), 5732IT(Child Car",,,,,,,,, +1186,1.0,1781,chapin_dfss_providers_2011_070212.csv,HULL HOUSE ASSOCIATION FCCH-EMILY JENKINS,1743 N LATROBE ST ,60639,2355342,,,,,,,HULL HOUSE ASSOCIATION,AUSTIN,,,,,Etisha Wofford,No,Yes,No,"5739IP(EHS Collaboration Enhanced Home IP), 5741IT(Child Car",,,,,,,,, +1187,1.0,1782,chapin_dfss_providers_2011_070212.csv,HULL HOUSE ASSOCIATION FCCH-MONICA PIERCE,1644 S AVERS ST ,60623,2355342,,,,,,,HULL HOUSE ASSOCIATION,NORTH LAWNDALE,,,,,Etisha Wofford,No,Yes,No,"5743IP(EHS Collaboration Enhanced Home IP), 5942IT(Child Car",,,,,,,,, +1188,1.0,1783,chapin_dfss_providers_2011_070212.csv,HULL HOUSE ASSOCIATION FCCH-ROBIN JAMES,4537 S LECLAIRE ,60639,2355342,,,,,,,HULL HOUSE ASSOCIATION,GARFIELD RIDGE,,,,,Etisha Wofford,No,No,No,,,,,,,,,, +1189,1.0,1784,chapin_dfss_providers_2011_070212.csv,HULL HOUSE ASSOCIATION FCCH-SHANETTA HOWARD,5255 W JACKSON ,60644,3785120,,,,,,,HULL HOUSE ASSOCIATION,AUSTIN,,,,,,No,No,No,"5912IP(EHS Collaboration Enhanced Home IP), 5913IT(Child Car",,,,,,,,, +1190,1.0,1785,chapin_dfss_providers_2011_070212.csv,HULL HOUSE ASSOCIATION FCCH-SHARON TRULL-YUSSESS,4222 W WILCOX ST ,60624,7228308,,,,,,,HULL HOUSE ASSOCIATION,WEST GARFIELD PARK,,,,,,No,Yes,No,"5879IP(EHS Collaboration Enhanced Home IP), 5880IT(Child Car",,,,,,,,, +1191,1.0,1786,chapin_dfss_providers_2011_070212.csv,HULL HOUSE ASSOCIATION FCCH-SHAUNTA COLLINS,1626 N MASON ST ,60623,2355342,,,,,,,HULL HOUSE ASSOCIATION,AUSTIN,,,,,Etisha Wofford,No,No,No,,,,,,,,,, +1192,1.0,1787,chapin_dfss_providers_2011_070212.csv,HULL HOUSE ASSOCIATION FCCH-SHELIA LANGHAM,11312 S NORMAL ST ,60628,2355342,,,,,,,HULL HOUSE ASSOCIATION,ROSELAND,,,,,Etisha Wofford,No,Yes,No,"5740IP(EHS Collaboration Enhanced Home IP), 5742IT(Child Car",,,,,,,,, +1193,1.0,1788,chapin_dfss_providers_2011_070212.csv,HULL HOUSE ASSOCIATION FCCH-SHERISSE HOLMES,4119 W 16TH ST ,60623,2355342,,,,,,,HULL HOUSE ASSOCIATION,NORTH LAWNDALE,,,,,Etisha Wofford,No,Yes,No,"5737IP(EHS Collaboration Enhanced Home IP), 5945IT(Child Car",,,,,,,,, +1194,1.0,1789,chapin_dfss_providers_2011_070212.csv,HULL HOUSE ASSOCIATION FCCH-TAKELYA ELLINGTON,3421 W 12TH ,60623,5424196,,,,,,,HULL HOUSE ASSOCIATION,NORTH LAWNDALE,,,,,,No,Yes,No,"5882IP(EHS Collaboration Enhanced Home IP), 5883IT(Child Car",,,,,,,,, +1195,1.0,1790,chapin_dfss_providers_2011_070212.csv,HULL HOUSE ASSOCIATION FCCH-TAYNA AYENA,10836 S NORMAL AVE ,60628,8218491,,,,,,,HULL HOUSE ASSOCIATION,ROSELAND,,,,,,No,Yes,No,"6130IP(EHS Collaboration Enhanced Home IP), 6131IT(Child Car",,,,,,,,, +1196,1.0,1791,chapin_dfss_providers_2011_070212.csv,HULL HOUSE ASSOCIATION FCCH-VERNELL KENNEDY,11515 S THROOP ST ,60643,6609953,,,,,,,HULL HOUSE ASSOCIATION,WEST PULLMAN,,,,,,No,No,Yes,"6132IT(Child Care Home IT), 6132PS(Child Care Home PS), 6132",,,,,,,,, +1197,1.0,1792,chapin_dfss_providers_2011_070212.csv,HULL HOUSE ASSOCIATION FCCH-WANDA FIELDER,21 E 101ST PLACE ,60628,5686610,,,,,,,HULL HOUSE ASSOCIATION,ROSELAND,,,,,,No,No,No,"5961PS(HS Collaboration with Childcare Homes), 5961IP(EHS Co",,,,,,,,, +1198,1.0,1793,chapin_dfss_providers_2011_070212.csv,HULL HOUSE ASSOCIATION KINGS KIDDIE KINGDOM,815 W 74TH ST ,60621,,,,,,,,HULL HOUSE ASSOCIATION,ENGLEWOOD,,,,,Camille King,Yes,No,No,,,,,,,,,, +91,0.9999999538304407,1794,chapin_dfss_providers_2011_070212.csv,HULL HOUSE ASSOCIATION LECLAIRE-RYDER,4410 S LAPORTE ,60638,7675170,,,,,,,HULL HOUSE ASSOCIATION,GARFIELD RIDGE,,,,,Shirley Mullin,Yes,No,No,7072PS(HS Collaboration with Childcare),,,,,,,,, +99,0.9999999455886526,1795,chapin_dfss_providers_2011_070212.csv,HULL HOUSE ASSOCIATION LINCOLN SQUARE,4754 N LEAVITT ,60625,8789651,,,,,,,HULL HOUSE ASSOCIATION,LINCOLN SQUARE,,,,,Raina Sajous,Yes,No,No,"7129PS(HS Collaboration with Childcare & PreK), 2709SA(Schoo",,,,,,,,, +135,0.999999915706303,1796,chapin_dfss_providers_2011_070212.csv,HULL HOUSE ASSOCIATION ORR INFANT TODDLER PROGRAM,730 N PULASKI RD ,60624,8261090,,,,,,,HULL HOUSE ASSOCIATION,HUMBOLDT PARK,,,,,,No,Yes,No,,,,,,,,,, +211,0.9999999311744846,1797,chapin_dfss_providers_2011_070212.csv,HULL HOUSE ASSOCIATION PARKWAY COMMUNITY CENTER,500 E 67TH STREET ,60637,4931306,,,,,,,HULL HOUSE ASSOCIATION,WOODLAWN,,,,,Carmen Knight,Yes,No,No,"3263PS(HS Collaboration with Childcare & PreK), 2637SA(Schoo",,,,,,,,, +4,0.9999999513330113,1798,chapin_dfss_providers_2011_070212.csv,HULL HOUSE ASSOCIATION UPTOWN - EAST,1020 W BRYN MAWR ,60660,7695753,,,,,,,HULL HOUSE ASSOCIATION,EDGEWATER,,,,,Martha Abarca,Yes,No,No,7027PS(HS Collaboration with Childcare & PreK),,,,,,,,, +93,0.9999999071128699,1799,chapin_dfss_providers_2011_070212.csv,HULL HOUSE ASSOCIATION UPTOWN COMMUNITY CENTER WEST,4520 N BEACON ,60640,5613500,,,,,,,HULL HOUSE ASSOCIATION,UPTOWN,,,,,Patricia Showers,Yes,No,No,"3409PS(HS Collaboration with Childcare & PreK), 2518SA(Schoo",,,,,,,,, +87,0.9999999496248808,1800,chapin_dfss_providers_2011_070212.csv,KOREAN AMERICAN COMMUNITY SERVICES KOREAN AMERICAN COMMUNITY SERVICES,4300 N CALIFORNIA ,60618,5838281,,,,,,,KOREAN AMERICAN COMMUNITY SERVICES,IRVING PARK,,,,,Hye K. Choi,Yes,No,Yes,"7131PS(HS Collaboration with Childcare & PreK), 2808SA(Schoo",,,,,,,,, +806,1.0,1801,chapin_dfss_providers_2011_070212.csv,LUTHERAN SOCIAL SERVICES OF ILLINOIS ARRA HOME BASED INITIATIVE - ROSELAND CHRISTIAN MINISTRIES,10 W 35TH ST 15TH FLOOR ,60616,9494789,,,,,,,LUTHERAN SOCIAL SERVICES OF ILLINOIS,DOUGLAS,,,,,Sophia Coleman,Yes,No,No,,,,,,,,,, +284,0.999999915706303,1802,chapin_dfss_providers_2011_070212.csv,LUTHERAN SOCIAL SERVICES OF ILLINOIS ENGLEWOOD MESSIAH,1910 W 64TH STREET ,60636,4365110,,,,,,,LUTHERAN SOCIAL SERVICES OF ILLINOIS,WEST ENGLEWOOD,,,,,Delphine Whittlesey,Yes,No,No,,,,,,,,,, +20,0.9999999578531515,1803,chapin_dfss_providers_2011_070212.csv,LUTHERAN SOCIAL SERVICES OF ILLINOIS NORTH AUSTIN HEAD START,1500 N MASON ,60651,2371930,,,,,,,LUTHERAN SOCIAL SERVICES OF ILLINOIS,AUSTIN,,,,,Doris Holden,Yes,No,No,"4115IT(Child Care IT Center), 7015PS(HS Collaboration with C",,,,,,,,, +35,1.0,1804,chapin_dfss_providers_2011_070212.csv,LUTHERAN SOCIAL SERVICES OF ILLINOIS ROGERS PARK,1754 W DEVON ,60660,6354600,,,,,,,LUTHERAN SOCIAL SERVICES OF ILLINOIS,ROGERS PARK,,,,,Deloris McDowell,Yes,No,No,7134PS(HS Collaboration with Childcare & PreK),,,,,,,,, +307,1.0,1805,chapin_dfss_providers_2011_070212.csv,LUTHERAN SOCIAL SERVICES OF ILLINOIS TRINIDAD LUTHERAN,2921 W DIVISION ,60622,6354600,,,,,,,LUTHERAN SOCIAL SERVICES OF ILLINOIS,WEST TOWN,,,,,Emilia Espinal,Yes,No,No,,,,,,,,,, +101,0.9999999578531515,1806,chapin_dfss_providers_2011_070212.csv,LUTHERAN SOCIAL SERVICES OF ILLINOIS WINTHROP CHILDREN'S CENTER,4848 N WINTHROP ,60640,8783210,,,,,,,LUTHERAN SOCIAL SERVICES OF ILLINOIS,UPTOWN,,,,,,Yes,No,No,"2664IT(Child Care IT Center), 7133PS(HS Collaboration with C",,,,,,,,, +219,0.9999999733439925,1807,chapin_dfss_providers_2011_070212.csv,MARCY NEWBERRY ASSOCIATION AUSTIN TOWN HALL,5610 W LAKE ,60644,2611505,,,,,,,MARCY NEWBERRY ASSOCIATION,AUSTIN,,,,,Marsha Ballenger,Yes,No,No,"7028PS(HS Collaboration with Childcare & PreK), 4155PS(Child",,,,,,,,, +1199,1.0,1808,chapin_dfss_providers_2011_070212.csv,MARCY NEWBERRY ASSOCIATION FCCH-ALICE TWITTY,1054 N KARLOV ST ,60651,2520732,,,,,,,MARCY NEWBERRY ASSOCIATION,HUMBOLDT PARK,,,,,Alice Twitty,No,Yes,No,"5754IP(EHS Collaboration Enhanced Home IP), 5754IT(EHS Enhan",,,,,,,,, +1200,1.0,1809,chapin_dfss_providers_2011_070212.csv,MARCY NEWBERRY ASSOCIATION FCCH-DEBRA BAKER,1728 N AUSTIN AVE ,60639,2376009,,,,,,,MARCY NEWBERRY ASSOCIATION,AUSTIN,,,,,Celia Wills,No,Yes,No,"6117IP(EHS Collaboration Enhanced Home IP), 6120IT(Child Car",,,,,,,,, +1201,1.0,1810,chapin_dfss_providers_2011_070212.csv,MARCY NEWBERRY ASSOCIATION FCCH-IDERIA HOWARD,1013 N MONITOR AVE ,60644,2612115,,,,,,,MARCY NEWBERRY ASSOCIATION,AUSTIN,,,,,Celia Wills,No,Yes,No,"6119IP(EHS Collaboration Enhanced Home IP), 6122IT(Child Car",,,,,,,,, +1202,1.0,1811,chapin_dfss_providers_2011_070212.csv,MARCY NEWBERRY ASSOCIATION FCCH-JANET THOMAS,1034 N KARLOV ST ,60651,2529401,,,,,,,MARCY NEWBERRY ASSOCIATION,HUMBOLDT PARK,,,,,Janet L. Thomas,No,No,No,"5753IP(EHS Collaboration Enhanced Home IP), 5753IT(EHS Enhan",,,,,,,,, +1203,1.0,1812,chapin_dfss_providers_2011_070212.csv,MARCY NEWBERRY ASSOCIATION FCCH-LASHANDA BAYLOR,1051 N MASSASOIT AVE ,60651,8297555,,,,,,,MARCY NEWBERRY ASSOCIATION,AUSTIN,,,,,Celia Wills,No,Yes,No,"6118IP(EHS Collaboration Enhanced Home IP), 6121IT(Child Car",,,,,,,,, +1204,1.0,1813,chapin_dfss_providers_2011_070212.csv,MARCY NEWBERRY ASSOCIATION FCCH-MELVIN TURNER,1508 W MONITOR ,60651,,,,,,,,MARCY NEWBERRY ASSOCIATION,AUSTIN,,,,,,No,Yes,No,"5969IP(EHS Collaboration Enhanced Home IP), 5970IT(Child Car",,,,,,,,, +1205,1.0,1814,chapin_dfss_providers_2011_070212.csv,MARCY NEWBERRY ASSOCIATION FCCH-NORMA JACKSON,935 N MENARD ,60651,,,,,,,,MARCY NEWBERRY ASSOCIATION,AUSTIN,,,,,Celia Wills,No,Yes,No,"6104IP(EHS Collaboration Enhanced Home IP), 6105IT(Child Car",,,,,,,,, +1206,1.0,1815,chapin_dfss_providers_2011_070212.csv,MARCY NEWBERRY ASSOCIATION FCCH-SHARON JAMES,311 N WALLER ,60644,2879737,,,,,,,MARCY NEWBERRY ASSOCIATION,AUSTIN,,,,,Sharon James,No,No,No,"5750IP(EHS Collaboration Enhanced Home IP), 5750IT(EHS Enhan",,,,,,,,, +16,0.9999999381453369,1816,chapin_dfss_providers_2011_070212.csv,MARCY NEWBERRY ASSOCIATION FOSCO,1312 S RACINE ,60608,7466024,,,,,,,MARCY NEWBERRY ASSOCIATION,NEAR WEST SIDE,,,,,Kimberly Johnson,Yes,Yes,No,"4195IT(Child Care IT Center), 7086PS (HS Collaboration with",,,,,,,,, +1207,1.0,1817,chapin_dfss_providers_2011_070212.csv,MARCY NEWBERRY ASSOCIATION KENYATTA'S DAY CARE,2334 E 75TH ST ,60649,,,,,,,,MARCY NEWBERRY ASSOCIATION,SOUTH SHORE,,,,,Brenda Owens,No,No,No,,,,,,,,,, +807,1.0,1818,chapin_dfss_providers_2011_070212.csv,MARCY NEWBERRY ASSOCIATION LEARNING TREE 1,8128 S KEDZIE ,60652,7788802,,,,,,,MARCY NEWBERRY ASSOCIATION,ASHBURN,,,,,Joanne Williams,Yes,No,No,,,,,,,,,, +808,1.0,1819,chapin_dfss_providers_2011_070212.csv,MARCY NEWBERRY ASSOCIATION LEARNING TREE 2,8322 S PULASKI RD ,60652,8843345,,,,,,,MARCY NEWBERRY ASSOCIATION,ASHBURN,,,,,Joanne Williams,Yes,No,No,,,,,,,,,, +23,0.9999999403953552,1820,chapin_dfss_providers_2011_070212.csv,MARCY NEWBERRY ASSOCIATION MARCY CENTER,1539 S SPRINGFIELD ,60623,7622300,,,,,,,MARCY NEWBERRY ASSOCIATION,NORTH LAWNDALE,,,,,Barbara Tucker,Yes,No,Yes,"2751IT(Child Care IT Center), 7135PS(HS Collaboration with C",,,,,,,,, +582,0.9999999701976776,1821,chapin_dfss_providers_2011_070212.csv,MARCY NEWBERRY ASSOCIATION NEWBERRY CENTER,1073 W MAXWELL ,60608,8297555,,,,,,,MARCY NEWBERRY ASSOCIATION,NEAR WEST SIDE,,,,,Vernon Lyle,No,No,Yes,2753SA(School Age (SA)),,,,,,,,, +146,0.9999999403953552,1822,chapin_dfss_providers_2011_070212.csv,MARCY NEWBERRY ASSOCIATION SOUTH HARPER MONTESSORI,8358 S STONY ISLAND AVE ,60617,7340375,,,,,,,MARCY NEWBERRY ASSOCIATION,AVALON PARK,,,,,Georgianna Coachman,No,No,No,,,,,,,,,, +115,1.0,1823,chapin_dfss_providers_2011_070212.csv,MARCY NEWBERRY ASSOCIATION ST. JOHN,5701 W MIDWAY PARK ,60644,3795533,,,,,,,MARCY NEWBERRY ASSOCIATION,AUSTIN,,,,,Willie Mae Cole,Yes,No,No,3149PS(HS Collaboration with Childcare),,,,,,,,, +809,1.0,1824,chapin_dfss_providers_2011_070212.csv,MARY CRANE LEAGUE CHILDREN'S LEARN AND PLAY,6512 S HALSTED ST ,60621,,,,,,,,MARY CRANE LEAGUE,ENGLEWOOD,,,,,,Yes,No,No,,,,,,,,,, +63,0.9999999026660227,1825,chapin_dfss_providers_2011_070212.csv,MARY CRANE LEAGUE MARY CRANE CENTER (EAST),2974 N CLYBOURN AVE ,60618,3485528,,,,,,,MARY CRANE LEAGUE,NORTH CENTER,,,,,Jennifer Jones,Yes,No,Yes,"4145IT(Child Care IT Center), 4236PS(HS Collaboration with C",,,,,,,,, +810,1.0,1826,chapin_dfss_providers_2011_070212.csv,MARY CRANE LEAGUE MARY CRANE CENTER (LAKE & PULASKI),316 N PULASKI SITE ,60624,2653830,,,,,,,MARY CRANE LEAGUE,WEST GARFIELD PARK,,,,,,Yes,Yes,Yes,"4374IT(Child Care IT Center), 4374PS(Child Care PS Center),",,,,,,,,, +811,1.0,1827,chapin_dfss_providers_2011_070212.csv,MARY CRANE LEAGUE MARY CRANE CENTER (MOLADE CHILD DEV.),1120 N LAMON ,60651,6267760,,,,,,,MARY CRANE LEAGUE,AUSTIN,,,,,,Yes,Yes,Yes,"4372IT(Child Care IT Center), 4372PS(Child Care PS Center),",,,,,,,,, +24,0.9999999200319775,1828,chapin_dfss_providers_2011_070212.csv,MARY CRANE LEAGUE MARY CRANE CENTER (MORSE),1545 W MORSE ,60626,2621390,,,,,,,MARY CRANE LEAGUE,ROGERS PARK,,,,,Guadalupe Herrera,Yes,No,No,4270PS(HS Collaboration with Childcare & PreK),,,,,,,,, +59,1.0,1829,chapin_dfss_providers_2011_070212.csv,MARY CRANE LEAGUE MARY CRANE CENTER (NORTH),2905 N LEAVITT ,60618,3485528,,,,,,,MARY CRANE LEAGUE,NORTH CENTER,,,,,Lavetter Terry,No,Yes,No,,,,,,,,,, +57,0.9999999038903982,1830,chapin_dfss_providers_2011_070212.csv,MARY CRANE LEAGUE MARY CRANE CENTER (WEST),2820 N LEAVITT ,60618,3485528,,,,,,,MARY CRANE LEAGUE,NORTH CENTER,,,,,Emily Hamlin,Yes,Yes,No,4237PS(HS Collaboration with Childcare & PreK),,,,,,,,, +69,0.9999999578531515,1831,chapin_dfss_providers_2011_070212.csv,METROPOLITAN FAMILY SERVICES MIDWAY CHILDREN'S CENTER,3215 W 63RD ST ,60629,8842350,,,,,,,METROPOLITAN FAMILY SERVICES,CHICAGO LAWN,,,,,Guadalupe Valdine,Yes,No,Yes,"4331IT(Child Care IT Center), 3783PS(HS Collaboration with C",,,,,,,,, +226,0.9999999513330113,1832,chapin_dfss_providers_2011_070212.csv,METROPOLITAN FAMILY SERVICES MIDWAY HEAD START,6422 S KEDZIE ,60629,7374790,,,,,,,METROPOLITAN FAMILY SERVICES,CHICAGO LAWN,,,,,Rhonda Freeman,Yes,No,No,,,,,,,,,, +71,0.9999999026660227,1833,chapin_dfss_providers_2011_070212.csv,METROPOLITAN FAMILY SERVICES NORTH CHILDREN'S CENTER,3249 N CENTRAL AVE ,60634,,,,,,,,METROPOLITAN FAMILY SERVICES,PORTAGE PARK,,,,,Dawn Delgado,Yes,No,Yes,"4329IT(Child Care IT Center), 4330PS(HS Collaboration with C",,,,,,,,, +1208,1.0,1834,chapin_dfss_providers_2011_070212.csv,NORTH AVENUE DAY NURSERY FCCH-AIDA CARDONA,2117 N KEDVALE ,60639,,,,,,,,NORTH AVENUE DAY NURSERY,HERMOSA,,,,,,No,Yes,Yes,"5829IP(EHS Collaboration Enhanced Home IP), 5830IT(Child Car",,,,,,,,, +1209,1.0,1835,chapin_dfss_providers_2011_070212.csv,NORTH AVENUE DAY NURSERY FCCH-AMANDA LOPEZ,4433 N HARDING ,60625,,,,,,,,NORTH AVENUE DAY NURSERY,ALBANY PARK,,,,,Sonja Anthony,No,Yes,No,"5932IP(EHS Collaboration Enhanced Home IP), 5933IT(Child Car",,,,,,,,, +1210,1.0,1836,chapin_dfss_providers_2011_070212.csv,NORTH AVENUE DAY NURSERY FCCH-BETTY WILLIAMS,1543 N KOLIN ,60651,,,,,,,,NORTH AVENUE DAY NURSERY,HUMBOLDT PARK,,,,,,No,No,No,,,,,,,,,, +1211,1.0,1837,chapin_dfss_providers_2011_070212.csv,NORTH AVENUE DAY NURSERY FCCH-CAROLYN PRICE,2020 W JACKSON ,60612,,,,,,,,NORTH AVENUE DAY NURSERY,NEAR WEST SIDE,,,,,,No,No,No,"5833IP(EHS Collaboration Enhanced Home IP), 5834IT(Child Car",,,,,,,,, +1212,1.0,1838,chapin_dfss_providers_2011_070212.csv,NORTH AVENUE DAY NURSERY FCCH-CHERYL COOK,5929 W WALTON ,60651,,,,,,,,NORTH AVENUE DAY NURSERY,AUSTIN,,,,,,No,No,No,"5835IT(Child Care Home IT), 5835PS(Child Care Home PS), 5835",,,,,,,,, +1213,1.0,1839,chapin_dfss_providers_2011_070212.csv,NORTH AVENUE DAY NURSERY FCCH-DORA LOPEZ,2256 W FOSTER ,60625,7845132,,,,,,,NORTH AVENUE DAY NURSERY,LINCOLN SQUARE,,,,,Sonja Anthony,No,Yes,No,"6127IP(EHS Collaboration Enhanced Home IP), 6136IT(Child Car",,,,,,,,, +1214,1.0,1840,chapin_dfss_providers_2011_070212.csv,NORTH AVENUE DAY NURSERY FCCH-EMMA TURNER,1815 W MONROE ,60612,,,,,,,,NORTH AVENUE DAY NURSERY,NEAR WEST SIDE,,,,,,No,Yes,Yes,"5803IP(EHS Collaboration Enhanced Home IP), 5805IT(Child Car",,,,,,,,, +1215,1.0,1841,chapin_dfss_providers_2011_070212.csv,NORTH AVENUE DAY NURSERY FCCH-GLADYS LORENZO,2642 N FAIRFIELD ,60647,,,,,,,,NORTH AVENUE DAY NURSERY,LOGAN SQUARE,,,,,,No,No,No,,,,,,,,,, +812,1.0,1842,chapin_dfss_providers_2011_070212.csv,NORTH AVENUE DAY NURSERY FCCH-HILDA PEREZ,4339 W MCLEAN ,60639,,,,,,,,NORTH AVENUE DAY NURSERY,HERMOSA,,,,,,No,No,No,,,,,,,,,, +1216,1.0,1843,chapin_dfss_providers_2011_070212.csv,NORTH AVENUE DAY NURSERY FCCH-JOHNNIE VAUGHN,1701 N MAJOR ,60639,8040261,,,,,,,NORTH AVENUE DAY NURSERY,AUSTIN,,,,,,No,No,No,"5916IP(EHS Collaboration Enhanced Home IP), 5916IT(EHS Enhan",,,,,,,,, +1217,1.0,1844,chapin_dfss_providers_2011_070212.csv,NORTH AVENUE DAY NURSERY FCCH-LUZ GONZALEZ,1743 N FRANCISCO ,60647,,,,,,,,NORTH AVENUE DAY NURSERY,WEST TOWN,,,,,,No,No,No,"5836IT(Child Care Home IT), 5836PS(Child Care Home PS), 5836",,,,,,,,, +1218,1.0,1845,chapin_dfss_providers_2011_070212.csv,NORTH AVENUE DAY NURSERY FCCH-MARIA BERRERA,2443 W FOSTER ,60625,6000846,,,,,,,NORTH AVENUE DAY NURSERY,LINCOLN SQUARE,,,,,Sonja Anthony,No,Yes,No,"6126IP(EHS Collaboration Enhanced Home IP), 6135IT(Child Car",,,,,,,,, +1219,1.0,1846,chapin_dfss_providers_2011_070212.csv,NORTH AVENUE DAY NURSERY FCCH-NELLIE AGRON,922 N RIDGEWAY ,60651,7828281,,,,,,,NORTH AVENUE DAY NURSERY,HUMBOLDT PARK,,,,,,No,No,No,"5918IT(Child Care Home IT), 5918PS(Child Care Home PS), 5918",,,,,,,,, +1220,1.0,1847,chapin_dfss_providers_2011_070212.csv,NORTH AVENUE DAY NURSERY FCCH-ROBBIE ANTHONY,5916 WEST SUPERIOR ,60644,2974124,,,,,,,NORTH AVENUE DAY NURSERY,AUSTIN,,,,,Sonja Anthony,No,Yes,No,"6124IP(EHS Collaboration Enhanced Home IP), 6125IT(Child Car",,,,,,,,, +1221,1.0,1848,chapin_dfss_providers_2011_070212.csv,NORTH AVENUE DAY NURSERY FCCH-SHELONDA HASSELL,5924 W OHIO AVE ,60644,,,,,,,,NORTH AVENUE DAY NURSERY,AUSTIN,,,,,,No,No,No,"5985IP(EHS Collaboration Enhanced Home IP), 5986IT(Child Car",,,,,,,,, +1222,1.0,1849,chapin_dfss_providers_2011_070212.csv,NORTH AVENUE DAY NURSERY FCCH-SONYA HARRIS,329 N LONG AVE ,60644,6269894,,,,,,,NORTH AVENUE DAY NURSERY,AUSTIN,,,,,,No,No,No,"5917IP(EHS Collaboration Enhanced Home IP), 5921IT(Child Car",,,,,,,,, +1223,1.0,1850,chapin_dfss_providers_2011_070212.csv,NORTH AVENUE DAY NURSERY FCCH-TIFFANY TAYLOR,1135 S SACRAMENTO 1 ,60612,9815376,,,,,,,NORTH AVENUE DAY NURSERY,NORTH LAWNDALE,,,,,Sonja Anthony,No,No,No,,,,,,,,,, +1224,1.0,1851,chapin_dfss_providers_2011_070212.csv,NORTH AVENUE DAY NURSERY FCCH-VALERIE MARTIN,2043 W PIERCE ,60622,,,,,,,,NORTH AVENUE DAY NURSERY,WEST TOWN,,,,,,No,Yes,Yes,"5757IP(EHS Collaboration Enhanced Home IP), 5837IT(Child Car",,,,,,,,, +1225,1.0,1852,chapin_dfss_providers_2011_070212.csv,NORTH AVENUE DAY NURSERY FCCH-VIOLET JACKSON,208 N MENARD ,60644,8246764,,,,,,,NORTH AVENUE DAY NURSERY,AUSTIN,,,,,,No,No,No,,,,,,,,,, +1226,1.0,1853,chapin_dfss_providers_2011_070212.csv,NORTH AVENUE DAY NURSERY FCCH-YONNA BANKS,3907 W FILLMORE ,60624,4919316,,,,,,,NORTH AVENUE DAY NURSERY,NORTH LAWNDALE,,,,,Sonja Anthony,No,No,No,,,,,,,,,, +40,0.9999999559790524,1854,chapin_dfss_providers_2011_070212.csv,NORTH AVENUE DAY NURSERY NORTH AVENUE DAY NURSERY,2001 W PIERCE ,60622,3424499,,,,,,,NORTH AVENUE DAY NURSERY,WEST TOWN,,,,,Steve Koll,Yes,No,Yes,"3270PS(HS Collaboration with Childcare & PreK), 2742PS(Child",,,,,,,,, +174,0.9999999578531515,1855,chapin_dfss_providers_2011_070212.csv,NORTHWESTERN UNIVERSITY SETTLEMENT HOUSE NORTHWESTERN UNIVERSITY SETTLEMENT HOUSE,1400 W AUGUSTA ,60622,2787471,,,,,,,NORTHWESTERN UNIVERSITY SETTLEMENT HOUSE,WEST TOWN,,,,,Linda McLaren,Yes,No,No,,,,,,,,,, +324,0.999999915706303,1856,chapin_dfss_providers_2011_070212.csv,ONWARD NEIGHBORHOOD HOUSE ABC PRESCHOOL,3800 N AUSTIN AVENUE ,60634,6859033,,,,,,,ONWARD NEIGHBORHOOD HOUSE,DUNNING,,,,,Patricia Bentz,Yes,No,No,,,,,,,,,, +354,0.9999999578531515,1857,chapin_dfss_providers_2011_070212.csv,ONWARD NEIGHBORHOOD HOUSE LEE'S CUDDLES N CARE,6100 W NORTH AVENUE ,60639,7458054,,,,,,,ONWARD NEIGHBORHOOD HOUSE,AUSTIN,,,,,Anndrella Lee,Yes,No,No,,,,,,,,,, +813,1.0,1858,chapin_dfss_providers_2011_070212.csv,ONWARD NEIGHBORHOOD HOUSE MCKINNEY EARLY LEARNING ACADEMY,5745 W DIVISION ST ,60651,,,,,,,,ONWARD NEIGHBORHOOD HOUSE,AUSTIN,,,,,,Yes,No,No,,,,,,,,,, +349,0.9999999578531515,1859,chapin_dfss_providers_2011_070212.csv,ONWARD NEIGHBORHOOD HOUSE NEW BEGINNINGS,5445 W NORTH AVENUE ,60639,3855365,,,,,,,ONWARD NEIGHBORHOOD HOUSE,AUSTIN,,,,,Verlene Vanderbilt,Yes,No,No,,,,,,,,,, +113,0.9999998488746425,1860,chapin_dfss_providers_2011_070212.csv,ONWARD NEIGHBORHOOD HOUSE ONWARD NEIGHBORHOOD HOUSE - BELMONT/CRAGIN,5423 W DIVERSEY AVE ,60639,6223215,,,,,,,ONWARD NEIGHBORHOOD HOUSE,BELMONT CRAGIN,,,,,Santa Rivera,Yes,Yes,Yes,"3153IT(Child Care IT Center), 3153PS(Child Care PS Center &",,,,,,,,, +119,0.9999999496248808,1861,chapin_dfss_providers_2011_070212.csv,ONWARD NEIGHBORHOOD HOUSE ONWARD NEIGHBORHOOD HOUSE - WEST TOWN,600 N LEAVITT STREET ,60612,6666726,,,,,,,ONWARD NEIGHBORHOOD HOUSE,WEST TOWN,,,,,Darica Charles,Yes,No,No,"2744IT(Child Care IT Center), 3272PS(HS Collaboration with C",,,,,,,,, +114,0.9999999026660227,1862,chapin_dfss_providers_2011_070212.csv,ONWARD NEIGHBORHOOD HOUSE TINY TOWN FOR TOTS,5654 W DIVISION ST ,60651,6260048,,,,,,,ONWARD NEIGHBORHOOD HOUSE,AUSTIN,,,,,Ricky Spain,Yes,No,No,,,,,,,,,, +814,1.0,1863,chapin_dfss_providers_2011_070212.csv,SALVATION ARMY ALL THINGS ARE POSIBLE,4014 W CHICAGO AVE ,60651,4892464,,,,,,,SALVATION ARMY,HUMBOLDT PARK,,,,,Shelandria Galsper,Yes,No,No,,,,,,,,,, +815,1.0,1864,chapin_dfss_providers_2011_070212.csv,SALVATION ARMY BUILDING BLOCKS,1120 W 69TH ST ,60621,4882222,,,,,,,SALVATION ARMY,ENGLEWOOD,,,,,Mitchelle Redd,Yes,No,No,,,,,,,,,, +105,0.9999999549431237,1865,chapin_dfss_providers_2011_070212.csv,SALVATION ARMY COLUMBUS PARK,500 S CENTRAL ,60644,9214162,,,,,,,SALVATION ARMY,AUSTIN,,,,,Felice Lewis,Yes,No,No,7017PS(HS Collaboration with Childcare & PreK),,,,,,,,, +816,1.0,1866,chapin_dfss_providers_2011_070212.csv,SALVATION ARMY CREATIVE LITTLE ONES,2809 W 59TH ST ,60629,4762562,,,,,,,SALVATION ARMY,CHICAGO LAWN,,,,,Audy Sejour,Yes,No,No,,,,,,,,,, +817,1.0,1867,chapin_dfss_providers_2011_070212.csv,SALVATION ARMY EDSEL ALBERT AMMONS NURSERY,549 E 76TH ST ,60619,4837040,,,,,,,SALVATION ARMY,GREATER GRAND CROSSING,,,,,Debbie Reynolds,Yes,No,No,,,,,,,,,, +249,1.0,1868,chapin_dfss_providers_2011_070212.csv,SALVATION ARMY FAMILY OUTREACH INITIATIVE (SAL ARMY,845 W 69TH STREET ,60621,8324716,,,,,,,SALVATION ARMY,ENGLEWOOD,,,,,Rosie Mohammad,Yes,No,No,4121IT(EHS),,,,,,,,, +1227,1.0,1869,chapin_dfss_providers_2011_070212.csv,SALVATION ARMY FCCH-ALLIE WINFIELD,1312 W 95TH ST ,60643,2382079,,,,,,,SALVATION ARMY,WASHINGTON HEIGHTS,,,,,Kelli Kemp,No,No,No,"6108IP(EHS Collaboration Enhanced Home IP), 6108IT(EHS Enhan",,,,,,,,, +1228,1.0,1870,chapin_dfss_providers_2011_070212.csv,SALVATION ARMY FCCH-GERALDINE SIVERAND,1504 N LECLAIRE ,60620,8040406,,,,,,,SALVATION ARMY,AUSTIN,,,,,Kelli Kemp,No,No,No,"5759IP(EHS Collaboration Enhanced Home IP), 5759IT(EHS Enhan",,,,,,,,, +1229,1.0,1871,chapin_dfss_providers_2011_070212.csv,SALVATION ARMY FCCH-JESSICA HINTON,222 E 87TH ST ,60619,7982000,,,,,,,SALVATION ARMY,CHATHAM,,,,,Kelli Kemp,No,Yes,No,"6106IP(EHS Collaboration Enhanced Home IP), 6106IT(EHS Enhan",,,,,,,,, +1230,1.0,1872,chapin_dfss_providers_2011_070212.csv,SALVATION ARMY FCCH-MILDRED SPEARS,6749 S WINCHESTER ,60636,9301832,,,,,,,SALVATION ARMY,WEST ENGLEWOOD,,,,,Kelli Kemp,No,No,No,"6107IP(EHS Collaboration Enhanced Home IP), 6107IT(EHS Enhan",,,,,,,,, +1231,1.0,1873,chapin_dfss_providers_2011_070212.csv,SALVATION ARMY FCCH-SHIRLEY OLIVER,6020 S PAULINA ,60636,9126264,,,,,,,SALVATION ARMY,WEST ENGLEWOOD,,,,,Kelli Kemp,No,Yes,No,"5989IP(EHS Collaboration Enhanced Home IP), 5989IT(EHS Enhan",,,,,,,,, +17,0.9999999513330113,1874,chapin_dfss_providers_2011_070212.csv,SALVATION ARMY INCARNATION,1345 N KARLOV ,60651,2764118,,,,,,,SALVATION ARMY,HUMBOLDT PARK,,,,,Zoraida Fernandini,Yes,No,No,,,,,,,,,, +86,0.9999999549431237,1875,chapin_dfss_providers_2011_070212.csv,SALVATION ARMY NEW HOPE,4255 W DIVISION ,60651,7724908,,,,,,,SALVATION ARMY,HUMBOLDT PARK,,,,,Catherine Eason,Yes,No,No,3278PS(HS Collaboration with Childcare & PreK),,,,,,,,, +242,0.9999999655872422,1876,chapin_dfss_providers_2011_070212.csv,SALVATION ARMY RED SHIELD,945 W 69TH STREET ,60621,3583224,,,,,,,SALVATION ARMY,ENGLEWOOD,,,,,Lillie Denton,Yes,No,No,,,,,,,,,, +818,1.0,1877,chapin_dfss_providers_2011_070212.csv,SALVATION ARMY SOUTH SHORE BIBLE/MARANATHA HEAD START,1631 E 71ST ST ,60649,4937500,,,,,,,SALVATION ARMY,SOUTH SHORE,,,,,Jaqueline Carter,Yes,No,No,4380PS(HS Collaboration with Childcare),,,,,,,,, +819,1.0,1878,chapin_dfss_providers_2011_070212.csv,SALVATION ARMY TEEN PARENTING PROGRAM,1548 W ADAMS ,60607,4210327,,,,,,,SALVATION ARMY,NEAR WEST SIDE,,,,,Jasmin Marshall,No,Yes,No,,,,,,,,,, +0,0.999999943804202,1879,chapin_dfss_providers_2011_070212.csv,SALVATION ARMY TEMPLE,1 N OGDEN ,60640,2262649,,,,,,,SALVATION ARMY,NEAR WEST SIDE,,,,,Barbara Martin,No,No,No,,,,,,,,,, +145,0.9999999356196254,1880,chapin_dfss_providers_2011_070212.csv,SOUTH CENTRAL COMMUNITY SERVICES SOUTH CENTRAL COMMUNITY SERVICE,8316 S ELLIS AVE ,60619,4830900,,,,,,,SOUTH CENTRAL COMMUNITY SERVICES,CHATHAM,,,,,Marsha Hightower,Yes,No,No,,,,,,,,,, +820,1.0,1881,chapin_dfss_providers_2011_070212.csv,SOUTH EAST ASIA CENTER SOUTH EAST ASIA CENTER (AINSLIE),1134 W AINSLIE ,60640,9897433,,,,,,,SOUTH EAST ASIA CENTER,UPTOWN,,,,,Fe Mendoza,No,No,Yes,"7139IT(Child Care IT Center), 7139PS (Child Care PS Center &",,,,,,,,, +213,0.999999946687985,1882,chapin_dfss_providers_2011_070212.csv,SOUTH EAST ASIA CENTER SOUTH EAST ASIA CENTER (BROADWAY),5120 N BROADWAY AVE ,60640,9897433,,,,,,,SOUTH EAST ASIA CENTER,UPTOWN,,,,,Loipin Chin,No,No,Yes,"2779PS(Child Care PS Center & State Pre-K), 2779SA(School Ag",,,,,,,,, +583,0.9999999311744846,1883,chapin_dfss_providers_2011_070212.csv,SOUTH EAST ASIA CENTER SOUTH EAST ASIA CENTER (FOSTER),1112 W FOSTER ,60640,9897433,,,,,,,SOUTH EAST ASIA CENTER,EDGEWATER,,,,,Tsering Ngalutsang,No,No,Yes,4127SA(School Age (SA)),,,,,,,,, +136,1.0,1884,chapin_dfss_providers_2011_070212.csv,SOUTH SHORE UNITED METHODIST SOUTH SHORE UNITED METHODIST,7350 S JEFFERY ,60649,3424430,,,,,,,SOUTH SHORE UNITED METHODIST,SOUTH SHORE,,,,,Bettye Turner,Yes,No,No,7141PS(HS Collaboration with Childcare),,,,,,,,, +8,0.999999926999517,1885,chapin_dfss_providers_2011_070212.csv,THRESHOLDS THRESHOLDS MOTHERS' PROJECT,1110 W BELMONT ,60657,5373290,,,,,,,THRESHOLDS,LAKE VIEW,,,,,Marshelia Harris,No,No,No,"2535IT(Child Care IT Center), 2535PS(Child Care PS Center),",,,,,,,,, +381,0.9999999578531515,1886,chapin_dfss_providers_2011_070212.csv,"TRINITY RESOURCES UNLIMITED, INC. HIGH MOUNTAIN",919 N LAVERGNE ,60651,6263997,,,,,,,"TRINITY RESOURCES UNLIMITED, INC.",AUSTIN,,,,,Marion Hayes,Yes,No,No,,,,,,,,,, +117,0.9999999538304407,1887,chapin_dfss_providers_2011_070212.csv,"TRINITY RESOURCES UNLIMITED, INC. HOPE FOR YOUTH",5900 W IOWA ,60651,6260322,,,,,,,"TRINITY RESOURCES UNLIMITED, INC.",AUSTIN,,,,,Bernice Porter,Yes,No,No,7019PS(HS Collaboration with Childcare),,,,,,,,, +129,0.9999999513330113,1888,chapin_dfss_providers_2011_070212.csv,TRINITY UNITED CHURCH OF CHRIST DR. DETON J. BROOKS HEAD START,6921 S STONY ISLAND ,60649,9552818,,,,,,,TRINITY UNITED CHURCH OF CHRIST,SOUTH SHORE,,,,,Cherie Brown,Yes,No,Yes,"7079PS(HS Collaboration with Childcare & PreK), 4118PS(Child",,,,,,,,, +110,0.9999998996704326,1889,chapin_dfss_providers_2011_070212.csv,TRINITY UNITED CHURCH OF CHRIST TRINITY UCC,532 W 95TH ST ,60628,,,,,,,,TRINITY UNITED CHURCH OF CHRIST,WASHINGTON HEIGHTS,,,,,Ekoi Florence,Yes,No,Yes,"2527IT(Child Care IT Center), 4311PS(HS Collaboration with C",,,,,,,,, +342,0.9999999578531515,1890,chapin_dfss_providers_2011_070212.csv,WESTSIDE HOLISTIC FAMILY SERVICES WESTSIDE HOLISTIC FAMILY SERVICES,4909 W DIVISION ,60651,9218777,,,,,,,WESTSIDE HOLISTIC FAMILY SERVICES,AUSTIN,,,,,Florence Merritt,Yes,No,No,,,,,,,,,, +126,0.999999915706303,1891,chapin_dfss_providers_2011_070212.csv,WOODLAWN A.M.E. CHURCH WOODLAWN AME CHURCH,6456 S EVANS ,60637,6671402,,,,,,,WOODLAWN A.M.E. CHURCH,WOODLAWN,,,,,Samara Akins,No,No,No,"7148IT(Child Care IT Center), 2686SA(School Age (SA)), 7148P",,,,,,,,, +821,1.0,1892,chapin_dfss_providers_2011_070212.csv,YMCA OF METROPOLITAN CHICAGO DR. EFFIE O ELLIS,10 S KEDZIE ,60612,5339011,,,,,,,YMCA OF METROPOLITAN CHICAGO,EAST GARFIELD PARK,,,,,Anelyn Jablo,Yes,No,No,4364PS(HS Collaboration with Childcare & PreK),,,,,,,,, +131,0.999999946687985,1893,chapin_dfss_providers_2011_070212.csv,YMCA OF METROPOLITAN CHICAGO GARFIELD,7 N HOMAN ,60624,2653900,,,,,,,YMCA OF METROPOLITAN CHICAGO,EAST GARFIELD PARK,,,,,Paulette Hernandez,Yes,Yes,No,"7081PS(HS Collaboration with Childcare & PreK), 6039IP(EHS C",,,,,,,,, +49,0.9999999483808635,1894,chapin_dfss_providers_2011_070212.csv,YMCA OF METROPOLITAN CHICAGO HIGH RIDGE,2424 W TOUHY ,60645,2628300,,,,,,,YMCA OF METROPOLITAN CHICAGO,WEST RIDGE,,,,,Linda Acevedo,Yes,No,Yes,"2132IT(Child Care IT Center), 7094PS(HS Collaboration with C",,,,,,,,, +822,1.0,1895,chapin_dfss_providers_2011_070212.csv,YMCA OF METROPOLITAN CHICAGO JEANNE KENNEY DAY CARE CENTER,7600 S PARNELL ,60620,8861216,,,,,,,YMCA OF METROPOLITAN CHICAGO,WASHINGTON HEIGHTS,,,,,Arlene Lewis,Yes,Yes,No,"4393IT(Child Care IT Center), 4393PS(Child Care PS Center),",,,,,,,,, +318,0.9999999578531515,1896,chapin_dfss_providers_2011_070212.csv,YMCA OF METROPOLITAN CHICAGO LOGAN SQUARE - FIRST LUTHERAN,3500 W FULLERTON ,60647,8625960,,,,,,,YMCA OF METROPOLITAN CHICAGO,LOGAN SQUARE,,,,,Nilsa Ramirez,Yes,No,No,,,,,,,,,, +248,1.0,1897,chapin_dfss_providers_2011_070212.csv,YMCA OF METROPOLITAN CHICAGO MARSHALL,3250 W ADAMS ,60624,2650145,,,,,,,YMCA OF METROPOLITAN CHICAGO,EAST GARFIELD PARK,,,,,Beverly Ross,No,Yes,No,"6040IP(EHS Collaboration Enhanced Center-IP), 6040EP(EHS Col",,,,,,,,, +37,0.999999946687985,1898,chapin_dfss_providers_2011_070212.csv,YMCA OF METROPOLITAN CHICAGO MCCORMICK TRIBUNE,1834 N LAWNDALE ,60647,2352525,,,,,,,YMCA OF METROPOLITAN CHICAGO,LOGAN SQUARE,,,,,Maria Franco,Yes,Yes,Yes,"2697IT(Child Care IT Center), 7096PS(HS Collaboration with C",,,,,,,,, +77,0.999999943169201,1899,chapin_dfss_providers_2011_070212.csv,YMCA OF METROPOLITAN CHICAGO NORTH LAWNDALE,3449 W ARTHINGTON ,60624,6380773,,,,,,,YMCA OF METROPOLITAN CHICAGO,NORTH LAWNDALE,,,,,Leslie Hampton,Yes,Yes,Yes,"8023IT(Child Care IT Center), 8022PS(HS Collaboration with C",,,,,,,,, +54,0.999999943169201,1900,chapin_dfss_providers_2011_070212.csv,YMCA OF METROPOLITAN CHICAGO RAUNER,2700 S WESTERN AVE ,60608,8473115,,,,,,,YMCA OF METROPOLITAN CHICAGO,LOWER WEST SIDE,,,,,Sonya Sifuentes,Yes,Yes,Yes,"4167IT(Child Care IT Center), 4170PS(HS Collaboration with C",,,,,,,,, +65,0.999999946687985,1901,chapin_dfss_providers_2011_070212.csv,YMCA OF METROPOLITAN CHICAGO SOUTH CHICAGO,3039 E 91ST STREET ,60617,7219100,,,,,,,YMCA OF METROPOLITAN CHICAGO,SOUTH CHICAGO,,,,,Sherry Ceroomes,Yes,No,Yes,"2694IT(Child Care IT Center), 7095PS(HS Collaboration with C",,,,,,,,, +124,1.0,1902,chapin_dfss_providers_2011_070212.csv,YMCA OF METROPOLITAN CHICAGO SOUTH SIDE,6330 S STONY ISLAND ,60637,7739470,,,,,,,YMCA OF METROPOLITAN CHICAGO,WOODLAWN,,,,,Bobbie Dickens,Yes,Yes,Yes,"2695IT(Child Care IT Center), 7144PS(HS Collaboration with C",,,,,,,,, +587,0.9999999578531515,1903,chapin_dfss_providers_2011_070212.csv,YMCA OF METROPOLITAN CHICAGO WABASH,3763 S WABASH AVE ,60653,2850020,,,,,,,YMCA OF METROPOLITAN CHICAGO,DOUGLAS,,,,,LaVonna Loving,No,No,Yes,2133SA(School Age (SA)),,,,,,,,, +588,1.0,1904,DFSS_AgencySiteLies_2012.csv,Abraham Lincoln Center Abraham-Lincoln,3858 S. Cottage Grove ,60654,2851390,,,,,,,Abraham Lincoln Center,,,,,,,,,,,www.abelink.org,Zirl Smith,Rosalyn Lee,,,,,, +130,0.9999999362799544,1905,DFSS_AgencySiteLies_2012.csv,Abraham Lincoln Center Lincoln Roseland,7 E. 119th St. ,60628,2647633,,,,,,,Abraham Lincoln Center,,,,,,,,,,,www.abelink.org,Zirl Smith,Barbara Woods,,,,,, +90,0.9999999513330113,1906,DFSS_AgencySiteLies_2012.csv,Abraham Lincoln Center Lincoln/King,4314 S. Cottage Grove ,60653,7472310,,,,,,,Abraham Lincoln Center,,,,,,,,,,,www.abelink.org,Zirl Smith,Keita King,,,,,, +603,1.0,1907,DFSS_AgencySiteLies_2012.csv,"Ada S. McKinley +Community Services Albany Location",5954 S Albany ,60629,7377810,,,,,,,"Ada S. McKinley +Community Services",,,,,,,,,,,www.adasmckinley.org,"George Jones, Jr.",Mildred Burnside,,,,,, +604,1.0,1908,DFSS_AgencySiteLies_2012.csv,"Ada S. McKinley +Community Services Children's Center (Halsted)",12803 S Halsted ,60628,2645171,,,,,,,"Ada S. McKinley +Community Services",,,,,,,,,,,www.adasmckinley.org,"George Jones, Jr.",Rosalyn Patton,,,,,, +605,1.0,1909,DFSS_AgencySiteLies_2012.csv,"Ada S. McKinley +Community Services Little Genius",11439 S Michigan Ave. ,60628,6298091,,,,,,,"Ada S. McKinley +Community Services",,,,,,,,,,,www.adasmckinley.org,"George Jones, Jr.",Vera Webbs,,,,,, +133,0.9999999026660227,1910,DFSS_AgencySiteLies_2012.csv,"Ada S. McKinley +Community Services Little Hands",7146 S Ashland Ave. ,60636,4710662,,,,,,,"Ada S. McKinley +Community Services",,,,,,,,,,,www.adasmckinley.org,"George Jones, Jr.",Lafredia Hobson,,,,,, +134,0.9999999513330113,1911,DFSS_AgencySiteLies_2012.csv,"Ada S. McKinley +Community Services McKinley-Ersula Howard",7222 S. Exchange ,60649,2219711,,,,,,,"Ada S. McKinley +Community Services",,,,,,,,,,,www.adasmckinley.org,"George Jones, Jr.",Joni Rudds,,,,,, +89,0.9999999026660227,1912,DFSS_AgencySiteLies_2012.csv,"Ada S. McKinley +Community Services McKinley-Maggie Drummond",4301 S. Wabash ,60653,3738200,,,,,,,"Ada S. McKinley +Community Services",,,,,,,,,,,www.adasmckinley.org,"George Jones, Jr.",Lyris Clark,,,,,, +11,0.9999999474336443,1913,DFSS_AgencySiteLies_2012.csv,"Ada S. McKinley +Community Services McKinley-Roseland",11410 S. Edbrooke ,60628,4681918,,,,,,,"Ada S. McKinley +Community Services",,,,,,,,,,,www.adasmckinley.org,"George Jones, Jr.",Anna Luna,,,,,, +254,1.0,1914,DFSS_AgencySiteLies_2012.csv,"Ada S. McKinley +Community Services McKinley-Trumbull Park",10530 S. Oglesby ,60617,9785341,,,,,,,"Ada S. McKinley +Community Services",,,,,,,,,,,www.adasmckinley.org,"George Jones, Jr.",Damita Collins,,,,,, +142,0.9999999356196254,1915,DFSS_AgencySiteLies_2012.csv,"Ada S. McKinley +Community Services McKinley-Wright Renaissance",7939 S. Western ,60620,4768805,,,,,,,"Ada S. McKinley +Community Services",,,,,,,,,,,www.adasmckinley.org,"George Jones, Jr.",Corllis Wright,,,,,, +606,1.0,1916,DFSS_AgencySiteLies_2012.csv,"Ada S. McKinley +Community Services Montessori Academy",11025 S Halsted Ave. ,60628,2810069,,,,,,,"Ada S. McKinley +Community Services",,,,,,,,,,,www.adasmckinley.org,"George Jones, Jr.",Gloria Walker,,,,,, +607,1.0,1917,DFSS_AgencySiteLies_2012.csv,"Ada S. McKinley +Community Services Stepping Stones CCC",1300 E 75th St. ,60619,4930000,,,,,,,"Ada S. McKinley +Community Services",,,,,,,,,,,www.adasmckinley.org,"George Jones, Jr.",Dr. Nelda Jones,,,,,, +74,0.9999999549431237,1918,DFSS_AgencySiteLies_2012.csv,"Albany Park Community +Center Ainslie",3401 W. Ainslie ,60625,5395907,,,,,,,"Albany Park Community +Center",,,,,,,,,,,www.apcc-chgo.org,Harold Rice,John DeJulio,,,,,, +108,0.9999999578531515,1919,DFSS_AgencySiteLies_2012.csv,"Albany Park Community +Center Kimball",5121 N. Kimball ,60625,5095657,,,,,,,"Albany Park Community +Center",,,,,,,,,,,www.apcc-chgo.org,Harold Rice,Eve Volin,,,,,, +104,0.9999999538304407,1920,DFSS_AgencySiteLies_2012.csv,"Appeal for Charities and +Goodwill Appeals for Charities",50 W. 71st St ,60621,6515400,,,,,,,"Appeal for Charities and +Goodwill",,,,,,,,,,,,P.A. Onsei-Bonsu,Charlotte Osei-Bonsu,,,,,, +608,1.0,1921,DFSS_AgencySiteLies_2012.csv,BBF Family Services BBF Family Service,1512 S. Pulaski ,60623,2779582,,,,,,,BBF Family Services,,,,,,,,,,,www.betterboys.org,,,,,,,, +609,1.0,1922,DFSS_AgencySiteLies_2012.csv,Beacon Therapeutic Beacon Therapeutic,1912 W 103rd St ,60643,2981243,,,,,,,Beacon Therapeutic,,,,,,,,,,,www.beacon-therapeutic.org,Susan Reyna-Guerrero,Susan Reyna-Guerrero,,,,,, +610,1.0,1923,DFSS_AgencySiteLies_2012.csv,"Board Trustees-City +Colleges of Chicago Daley College",7500 S Pulaski Rd. ,60652,8387562,,,,,,,"Board Trustees-City +Colleges of Chicago",,,,,,,,,,,www.ccc.edu,Phyllis Daniels-Ward,Marcey Reyes,,,,,, +611,1.0,1924,DFSS_AgencySiteLies_2012.csv,"Board Trustees-City +Colleges of Chicago Kennedy-King College",710 W 65th Building Z ,60621,6025481,,,,,,,"Board Trustees-City +Colleges of Chicago",,,,,,,,,,,www.ccc.edu,Phyllis Daniels-Ward,Guadalupe Pacias,,,,,, +38,1.0,1925,DFSS_AgencySiteLies_2012.csv,"Board Trustees-City +Colleges of Chicago Malcolm X College",1900 W. Van Buren ,60612,8507176,,,,,,,"Board Trustees-City +Colleges of Chicago",,,,,,,,,,,www.ccc.edu,Phyllis Daniels-Ward,Aisha Ruther,,,,,, +2,1.0,1926,DFSS_AgencySiteLies_2012.csv,"Board Trustees-City +Colleges of Chicago Olive-Harvey College",10001 S. Woodlawn ,60628,2916317,,,,,,,"Board Trustees-City +Colleges of Chicago",,,,,,,,,,,www.ccc.edu,Phyllis Daniels-Ward,Tiffany Carter,,,,,, +12,1.0,1927,DFSS_AgencySiteLies_2012.csv,"Board Trustees-City +Colleges of Chicago Truman College",1145 W. Wilson Ave ,60640,8784740,,,,,,,"Board Trustees-City +Colleges of Chicago",,,,,,,,,,,www.ccc.edu,Phyllis Daniels-Ward,Dexter Smith,,,,,, +61,0.9999999544762006,1928,DFSS_AgencySiteLies_2012.csv,"Carole Robertson Center +For Learning Carole Robertson Center-2929",2929 W. 19th St. ,60623,5211600,,,,,,,"Carole Robertson Center +For Learning",,,,,,,,,,,www.crcl.net,Gail Nelson,Ruby Walker,,,,,, +81,0.9999999562621483,1929,DFSS_AgencySiteLies_2012.csv,"Carole Robertson Center +For Learning Carole Robertson Center - +3701(OGDEN)",3701 W. Ogden ,60623,5228400,,,,,,,"Carole Robertson Center +For Learning",,,,,,,,,,,www.crcl.net,Gail Nelson,Tracey Young,,,,,, +41,0.9999999578531515,1930,DFSS_AgencySiteLies_2012.csv,"Carole Robertson Center +For Learning Carole Robertson Center-2020",2020 W. Roosevlet Rd ,60608,2437300,,,,,,,"Carole Robertson Center +For Learning",,,,,,,,,,,www.crcl.net,Gail Nelson,Betty Lee,,,,,, +309,0.9999999701976776,1931,DFSS_AgencySiteLies_2012.csv,"Catholic Charities of the +Archdiocese of Chicago Chicago Lawn",3001 W. 59th St. ,60629,9251085,,,,,,,"Catholic Charities of the +Archdiocese of Chicago",,,,,,,,,,,www.catholiccharities.net,Laura Rios,Virginia Carrillo,,,,,, +111,0.9999999549431237,1932,DFSS_AgencySiteLies_2012.csv,"Catholic Charities of the +Archdiocese of Chicago Grace Mission",5332 S. Western ,60609,4761990,,,,,,,"Catholic Charities of the +Archdiocese of Chicago",,,,,,,,,,,www.catholiccharities.net,Laura Rios,Francine Johnson,,,,,, +19,0.9999999403953552,1933,DFSS_AgencySiteLies_2012.csv,"Catholic Charities of the +Archdiocese of Chicago Our Lady of Lourdes",1449 S. Keeler ,60623,5213126,,,,,,,"Catholic Charities of the +Archdiocese of Chicago",,,,,,,,,,,www.catholiccharities.net,Laura Rios,Deborah O'Brien,,,,,, +48,0.9999999448168219,1934,DFSS_AgencySiteLies_2012.csv,"Catholic Charities of the +Archdiocese of Chicago Our Lady of Tepeyac",2414 S. Albany ,60623,2775888,,,,,,,"Catholic Charities of the +Archdiocese of Chicago",,,,,,,,,,,www.catholiccharities.net,Laura Rios,Petra Gutierrez,,,,,, +100,0.9999999513330113,1935,DFSS_AgencySiteLies_2012.csv,"Catholic Charities of the +Archdiocese of Chicago St. Joseph",4800 S. Paulina ,60609,9272524,,,,,,,"Catholic Charities of the +Archdiocese of Chicago",,,,,,,,,,,www.catholiccharities.net,Laura Rios,Janice Williams,,,,,, +153,0.9999999513330113,1936,DFSS_AgencySiteLies_2012.csv,Centers For New Horizons Altgeld I,941 E. 132nd St. ,60627,4683055,,,,,,,Centers For New Horizons,,,,,,,,,,,www.cnh.org,"Sokoni Karanja, Pres.",Gloria Lawson,,,,,, +88,0.999999913112046,1937,DFSS_AgencySiteLies_2012.csv,Centers For New Horizons Effie Ellis,4301 S Cottage Grove ,60653,5489839,,,,,,,Centers For New Horizons,,,,,,,,,,,www.cnh.org,"Sokoni Karanja, Pres.",Valerie Jones,,,,,, +83,1.0,1938,DFSS_AgencySiteLies_2012.csv,Centers For New Horizons Ida B. Wells at Dawson,3901 S. State ,60609,5367864,,,,,,,Centers For New Horizons,,,,,,,,,,,www.cnh.org,"Sokoni Karanja, Pres.",Carolyn Terry,,,,,, +218,1.0,1939,DFSS_AgencySiteLies_2012.csv,Chicago Child Care Society Chicago Child Care Society,5467 S University Ave ,60615,6430452,,,,,,,Chicago Child Care Society,,,,,,,,,,,www.cccsociety.org,Pamela Flowers-Thomas,Elizabeth Rogers,,,,,, +612,1.0,1940,DFSS_AgencySiteLies_2012.csv,"Chicago Commons +Association A-Z Mall World",2629 S Lawndale ,60623,77352211561150,,,,,,,"Chicago Commons +Association",,,,,,,,,,,www.chicagocommons.org,Dan Valliere,,,,,,, +613,1.0,1941,DFSS_AgencySiteLies_2012.csv,"Chicago Commons +Association Betty's Daycare Academy",5725 W Chicago Ave ,60651,2611433,,,,,,,"Chicago Commons +Association",,,,,,,,,,,www.chicagocommons.org,Dan Valliere,Betty Hughes,,,,,, +170,0.9999999403953552,1942,DFSS_AgencySiteLies_2012.csv,"Chicago Commons +Association Chicago Urban Daycare",1248 W 69th St ,60636,4833555,,,,,,,"Chicago Commons +Association",,,,,,,,,,,www.chicagocommons.org,Dan Valliere,Rene Jordan,,,,,, +614,1.0,1943,DFSS_AgencySiteLies_2012.csv,"Chicago Commons +Association Children's World",3356 S. Ashland ,60609,5230100,,,,,,,"Chicago Commons +Association",,,,,,,,,,,www.chicagocommons.org,Dan Valliere,Paula Montilla,,,,,, +615,1.0,1944,DFSS_AgencySiteLies_2012.csv,"Chicago Commons +Association Computer Preschool Academy",1400 W Garfield Blvd ,60609,6275000,,,,,,,"Chicago Commons +Association",,,,,,,,,,,www.chicagocommons.org,Dan Valliere,Paris Woody,,,,,, +616,1.0,1945,DFSS_AgencySiteLies_2012.csv,"Chicago Commons +Association Diversey Day Care","3007 W Diversey, Chicago ",60647,3427777,,,,,"Chicago Commons +Association",,,,,,,,,,,www.chicagocommons.org,Dan Valliere,Sharon Holiday,,,,,,,, +617,1.0,1946,DFSS_AgencySiteLies_2012.csv,"Chicago Commons +Association Eyes on the Future",6969 N. Ravenswood ,60626,9730771,,,,,,,"Chicago Commons +Association",,,,,,,,,,,www.chicagocommons.org,Dan Valliere,Azieb Gebrehiiwet,,,,,, +36,0.9999999356196254,1947,DFSS_AgencySiteLies_2012.csv,"Chicago Commons +Association Guadalupano Family Center",1814 S. Paulina ,60639,6663883,,,,,,,"Chicago Commons +Association",,,,,,,,,,,www.chicagocommons.org,Dan Valliere,Esmeralda Arroyo,,,,,, +618,1.0,1948,DFSS_AgencySiteLies_2012.csv,"Chicago Commons +Association Joyful Noise Day Care",4843 W North Ave ,60639,2525990,,,,,,,"Chicago Commons +Association",,,,,,,,,,,www.chicagocommons.org,Dan Valliere,Maria Gonzalez,,,,,, +619,1.0,1949,DFSS_AgencySiteLies_2012.csv,"Chicago Commons +Association Kiddie Garden Little Angels",4235 S Kedzie Ave ,60632,3928199,,,,,,,"Chicago Commons +Association",,,,,,,,,,,www.chicagocommons.org,Dan Valliere,Sandra McPherson,,,,,, +620,1.0,1950,DFSS_AgencySiteLies_2012.csv,"Chicago Commons +Association Kimball Day Care",1636 N Kimball Ave ,60647,2357200,,,,,,,"Chicago Commons +Association",,,,,,,,,,,www.chicagocommons.org,Dan Valliere,Alberta Varda,,,,,, +621,1.0,1951,DFSS_AgencySiteLies_2012.csv,"Chicago Commons +Association Little People's Day Care",7428 N Rogers Ave ,60626,7612305,,,,,,,"Chicago Commons +Association",,,,,,,,,,,www.chicagocommons.org,Dan Valliere,Reyna Nava,,,,,, +622,1.0,1952,DFSS_AgencySiteLies_2012.csv,"Chicago Commons +Association Los Pequenos Angelitos",3711 W 55th St ,60632,7355827,,,,,,,"Chicago Commons +Association",,,,,,,,,,,www.chicagocommons.org,Dan Valliere,Angeles Nunez,,,,,, +623,1.0,1953,DFSS_AgencySiteLies_2012.csv,"Chicago Commons +Association My Precious Little Angels",7012 W North Ave ,60707,6371708,,,,,,,"Chicago Commons +Association",,,,,,,,,,,www.chicagocommons.org,Dan Valliere,Doris Gadberry,,,,,, +137,0.9999999789265758,1954,DFSS_AgencySiteLies_2012.csv,"Chicago Commons +Association Nia Family Center",744 N. Monticello ,60612,7220115,,,,,,,"Chicago Commons +Association",,,,,,,,,,,www.chicagocommons.org,Dan Valliere,Erica Barbara,,,,,, +624,1.0,1955,DFSS_AgencySiteLies_2012.csv,"Chicago Commons +Association Panda Montessori",6921 N. Ridge ,60645,3386755,,,,,,,"Chicago Commons +Association",,,,,,,,,,,www.chicagocommons.org,Dan Valliere,Angela Perry,,,,,, +28,0.9999999549431237,1956,DFSS_AgencySiteLies_2012.csv,"Chicago Commons +Association Paulo Freire",1653 W. 43rd St ,60609,8266260,,,,,,,"Chicago Commons +Association",,,,,,,,,,,www.chicagocommons.org,Dan Valliere,Nilda Vargas,,,,,, +625,1.0,1957,DFSS_AgencySiteLies_2012.csv,"Chicago Commons +Association Rainbow Daycare",3250 W Irving Park Rd ,60618,4788182,,,,,,,"Chicago Commons +Association",,,,,,,,,,,www.chicagocommons.org,Dan Valliere,James Limson,,,,,, +1232,1.0,1958,DFSS_AgencySiteLies_2012.csv,"Chicago Commons +Association St Catherine's - St. Lucy School",27 Washington Oak Park IL 60302,,3865286,,,,,"Chicago Commons +Association",,,,,,,,,,,www.chicagocommons.org,Dan Valliere,Sister Marion Cypser,,,,,,,, +26,0.9999999528783908,1959,DFSS_AgencySiteLies_2012.csv,"Chicago Commons +Association Taylor Center for New +Experiences",1633 N. Hamlin ,60647,2278551,,,,,,,"Chicago Commons +Association",,,,,,,,,,,www.chicagocommons.org,Dan Valliere,Vanessa Powell,,,,,, +626,1.0,1960,DFSS_AgencySiteLies_2012.csv,"Chicago Commons +Association Tots Express Learning Center",1705 E 87th St ,60617,7218687,,,,,,,"Chicago Commons +Association",,,,,,,,,,,www.chicagocommons.org,Dan Valliere,Clara Cureton,,,,,, +627,1.0,1961,DFSS_AgencySiteLies_2012.csv,"Chicago Commons +Association V & J Day Care Center",1 E 113th St ,60628,7853940,,,,,,,"Chicago Commons +Association",,,,,,,,,,,www.chicagocommons.org,Dan Valliere,Reaver Barlow-Bell,,,,,, +628,1.0,1962,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Aldridge, Ira F.",630 E. 131st St. ,60827,5355614,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mr. Vincent Payne,,,,,, +629,1.0,1963,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Altgeld, John P.",7007 S. Loomis ,60636,5353250,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Gloria Davis,,,,,, +630,1.0,1964,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Azuela, Mariano",4707 W. Marquette ,60629,5357395,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Carmen Navarro,,,,,, +631,1.0,1965,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Barton, Clara",7650 S. Wolcott Ave ,60620,5353260,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mr. Frank Gettridge,,,,,, +632,1.0,1966,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Beethoven, Ludwig V.",25 W. 47th St. ,60609,5351480,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Dyrice Garner,,,,,, +633,1.0,1967,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Beidler, Jacob",3151 W. Walnut ,60612,5346811,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mr Charles Anderson,,,,,, +634,1.0,1968,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Bethune, Mary McLeod",3033 W. Arthington ,60612,5346890,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Zipporah Hightower,,,,,, +635,1.0,1969,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Bond, Carrie Jacobs","7050 S. May, Chicago ",60621,5353480,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Valesta Cobbs,,,,,,,, +636,1.0,1970,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Bradwell, Myra",7736 S. Burnham ,60649,5356600,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Bennette/Kimberly Henderson,,,,,, +637,1.0,1971,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Brown, Ronald",12607 S Union ,60628,5355385,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Gale Baker,,,,,, +638,1.0,1972,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Brunson Math & Science, Milton",932 N. Central ,60651,5346025,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Carol Wilson,,,,,, +639,1.0,1973,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Burke, Edmond",5356 S. King Dr ,60615,5351325,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Nicholas Gaines,,,,,, +640,1.0,1974,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Cameron, Daniel R.",1234 N. Monticello ,60651,5344290,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mr. Stephen D Harden,,,,,, +641,1.0,1975,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Cardenas, Lazaro",2345 S. Millard ,60623,5341475,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Dr. Jeremy Feiwell,,,,,, +642,1.0,1976,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Carson, Rachel",5516 S. Mapplewood Ave ,60629,5359222,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Javier Arriola-Lopez,,,,,, +643,1.0,1977,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Cather, Willa",2908 W. Washington Blvd. ,60612,5346780,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Hattie B. King,,,,,, +644,1.0,1978,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Chalmers, Thomas",2745 W. Roosevelt ,60608,5341720,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mr. Kent Nolen,,,,,, +645,1.0,1979,DFSS_AgencySiteLies_2012.csv,Chicago Public Schools Chase Elementary,2021 N. Point St ,60647,5344185,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Raquel Saucedo,,,,,, +646,1.0,1980,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Chopin, Frederic",2450 W. Rice ,60622,5344080,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Antuanette Mester,,,,,, +647,1.0,1981,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Claremont Math and Science +Academy",2300 W. 64th St. ,60636,5358110,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mrs. Rebecca L. Stinson,,,,,, +648,1.0,1982,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Cockrell, Oneida",30 East 61st Street ,60637,5350650,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Rashid Shabazz,,,,,, +649,1.0,1983,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Cooper Dual Language +Academy, Peter",1624 W. 19th Street ,60608,5347205,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Martha Monrroy,,,,,, +650,1.0,1984,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Corkery, Daniel",2510 S Kildare Ave ,60623,5341650,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Bertha Arredondo,,,,,, +651,1.0,1985,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Curtis, George W.",32 East 115th Street ,60628,5355050,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Evelyn Robbins,,,,,, +652,1.0,1986,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Daley, Richard J.",5024 S Wolcott Ave ,60609,5359091,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Rhonda Hoskins,,,,,, +653,1.0,1987,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Davis, Nathan",3014 W. 39th Place ,60632,5354540,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mr. Santos Gomez,,,,,, +1233,1.0,1988,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Deneen, Charles S.",7257 S. State ,60619,5353035,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Annise Lewis,,,,,, +654,1.0,1989,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools DePriest, Oscar",139 S Parkside Ave ,60639,5346800,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Minnie Watson,,,,,, +655,1.0,1990,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Dett, R. Nathaniel",2306 West Maypole ,60612,5347160,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Deborah J. Bonner,,,,,, +656,1.0,1991,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Dodge Renaissance Academy, Mary Mapes",2651 West Washington ,60612,5346640,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Edward Morris/Debra Moriarty,,,,,, +657,1.0,1992,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Doolittle, James R.",535 East 35th Street ,60653,5351040,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Lauren Norwood,,,,,, +658,1.0,1993,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Dulles, John Foster",6311 South Calumet ,60637,5350690,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Pamela Creed,,,,,, +659,1.0,1994,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Dvorak Math & Science Tech +Academy, Anton",3615 West 16th ,60623,5341690,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Alma Thompson,,,,,, +660,1.0,1995,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Eberhart, John F.",3400 W 65th Pl. ,60629,5359190,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Nneka Gunn,,,,,, +1234,1.0,1996,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Edwards, Richard",4950 S. LaPorte ,60632,5352000,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mrs. Judith Sauri,,,,,, +661,1.0,1997,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Ellington, Edward ""Duke"" K.",243 North Parkside ,60644,5346361,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Shirley M. Scott,,,,,, +662,1.0,1998,DFSS_AgencySiteLies_2012.csv,Chicago Public Schools Esmond Elementary,1865 West Montvale ,60643,5352650,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Dr. Angela Tucker,,,,,, +663,1.0,1999,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Finkl, William F.",2332 S Western Ave. ,60608,5355850,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mr. Abelino Quintero,,,,,, +664,1.0,2000,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Fiske, John",6145 South Ingleside ,60637,5350990,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Cynthia Miller,,,,,, +665,1.0,2001,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Fuller, Melville W.",4214 S. St. Lawrence ,60653,5351687,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms Camilla Young,,,,,, +666,1.0,2002,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Fulton, Robert",5300 S. Hermitage ,60609,5359000,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Cherie Novak,,,,,, +667,1.0,2003,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Funston, Frederick",2010 N Central Park ,60647,5344125,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Nilma Osiecki,,,,,, +668,1.0,2004,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Gale Comm. Acad., Stephen F.",1631 W. Jonquil Terrace ,60626,5342100,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Cassandra Washington,,,,,, +669,1.0,2005,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Gary, Joseph E.",3740 W. 31st St. ,60623,5341455,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mr. Alberto Juarez,,,,,, +670,1.0,2006,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Goldblatt, Nathan R.",4257 W. Adams ,60624,5346860,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Yvette R. Currington,,,,,, +671,1.0,2007,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Goudy, William C.",5120 N. Winthrop ,60640,5342480,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Pamela S. Brandt,,,,,, +672,1.0,2008,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Graham, Alexander",4436 S. Union ,60609,5351308,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mr. John Nichols,,,,,, +673,1.0,2009,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Gresham, Walter Q.",8524 S. Green ,60620,5353350,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Diedrus U. Brown,,,,,, +674,1.0,2010,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Guggenheim, Simon",7141 S. Morgan St. ,60621,5353587,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Vikki Stokes,,,,,, +675,1.0,2011,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Haley, Alex",11411 S. Eggleston ,60628,5355345,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Vaida Williams,,,,,, +1235,1.0,2012,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Hamline, John H",4652 S. Bishop ,60609,5354520,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Valerie Brown,,,,,, +676,1.0,2013,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Hay Comm. Academy, John",1018 N. Laramie ,60651,5346000,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mr. Wayne Williams,,,,,, +677,1.0,2014,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Henson, Matthew A.",1326 S. Avers ,60623,5341804,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mr. Demetrius D. Hobson,,,,,, +678,1.0,2015,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Herbert, Victor",2131 W. Monroe ,60612,5347809,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Denise J. Gillespie,,,,,, +679,1.0,2016,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Higgins C.A., Thomas J.",11710 S. Morgan ,60643,5355625,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Dr. Mabel Alfred,,,,,, +680,1.0,2017,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Hinton, William Augustus",644 W. 71st Street ,60621,5353875,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Pamela Brunson-Allen,,,,,, +681,1.0,2018,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Holmes, Oliver Wendell",955 W. Garfield ,60621,5359025,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Angela L. Thomas,,,,,, +1236,1.0,2019,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Hughes, Langston",240 W. 104th St. ,60628,5355075,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Anita Muse,,,,,, +682,1.0,2020,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Hurley, Edward N.",3849 W. 69th Place ,60629,5352068,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mrs. Dolores Cupp,,,,,, +683,1.0,2021,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Jenner Academy of the Arts, Edward",1119 N. Cleveland ,60610,5348440,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Berlinder Fry,,,,,, +1237,1.0,2022,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Johnson, James Weldon",1420 S. Albany ,60623,5341829,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Alice F. Henry,,,,,, +684,1.0,2023,DFSS_AgencySiteLies_2012.csv,Chicago Public Schools Jordan Comm.,7414 North Wolcott ,60626,5342220,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Willie White,,,,,, +685,1.0,2024,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Jungman, Joseph",1746 S. Miller ,60608,5347375,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mrs. Zaida Hernandez,,,,,, +686,1.0,2025,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Kershaw, Joshua D.",6450 S. Lowe ,60621,5353050,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Veronica Nash,,,,,, +687,1.0,2026,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Kohn, Alfred David",10414 S. State ,60628,5355489,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Kimberly Moore,,,,,, +688,1.0,2027,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Lafayette, Jean De",2714 W. Augusta Blvd. ,60622,5344326,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mrs. Trisha Shrode,,,,,, +689,1.0,2028,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Lavizzo, Mildred I.",138 W. 109th St ,60628,5355300,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mrs.Tracey Stelly,,,,,, +690,1.0,2029,DFSS_AgencySiteLies_2012.csv,Chicago Public Schools Lawndale Comm. Academy,3500 W. Douglas Blvd ,60623,5341635,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mr. Wilard Willette,,,,,, +691,1.0,2030,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Linne, Carl Von",3221 N. Sacramento ,60618,5345262,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Renee P. Mackin,,,,,, +692,1.0,2031,DFSS_AgencySiteLies_2012.csv,Chicago Public Schools Little Village,2620 S Lawndale Ave ,60623,5341880,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Elsa Carmona,,,,,, +693,1.0,2032,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Lloyd, Henry D.",2103 N. Lamon Av ,60639,5343070,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mr. Kiltae Kim,,,,,, +694,1.0,2033,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Madison, James",7433 S. Dorchester ,60619,5350551,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Dr. Beverly J. Greene,,,,,, +695,1.0,2034,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Mason, Roswell B.",4216 W. 19th St ,60623,5341530,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Tonya Tolbert,,,,,, +696,1.0,2035,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools May Community Academy, Horatio",512 S. Lavergne ,60644,5346140,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Roger Lewis,,,,,, +1238,1.0,2036,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Mayo, William J. & Charles H.",249 E. 37th St ,60653,5351260,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Stephen Bournes,,,,,, +697,1.0,2037,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools McClellan, George B.",3527 S. Wallace ,60609,5351732,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Joseph Shoffner,,,,,, +698,1.0,2038,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools McCormick, Cyrus H.",2712 S Sawyer Ave. ,60623,5357252,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Cristina Romo,,,,,, +699,1.0,2039,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools McCutcheon Main, John T.",4846 N. Sheridan ,60640,5342680,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Dr. Carol Ann Lang,,,,,, +700,1.0,2040,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools McDowell, Mary E.",1419 E. 89th St. ,60619,5356404,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Dr. Jo La Tanya Easterling-Hood,,,,,, +1239,1.0,2041,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools McKay, Francis M.",7060 S. Washtenaw ,60629,5359340,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mrs. Dawn Prather-Hawk,,,,,, +701,1.0,2042,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools McNair Academy Center, Ronald +E.",4820 W. Walton ,60651,5348980,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Dr. Shirley Dillard,,,,,, +702,1.0,2043,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools McPherson, James B.",4728 N. Wolcott Av ,60640,5342625,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Carmen A. Mendoza,,,,,, +703,1.0,2044,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Monroe, James",3651 W. Schubert Ave ,60647,5344155,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mr. Edwin Rivera,,,,,, +704,1.0,2045,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Morgan, Garrett A.",8407 S. Kerfoot ,60620,5353366,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Jerrold Washington,,,,,, +705,1.0,2046,DFSS_AgencySiteLies_2012.csv,Chicago Public Schools Morton Career Academy,431 N.Troy ,60612,5346791,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Angel L. Turner,,,,,, +706,1.0,2047,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools N.T.A. (National Teachers +Academy)",55 W. Cermak ,60616,5349970,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Amy G. Rome,,,,,, +707,1.0,2048,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Nash, Henry H.",4837 W. Erie St. ,60644,5346125,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Tresa D. Dunbar,,,,,, +708,1.0,2049,DFSS_AgencySiteLies_2012.csv,Chicago Public Schools New Field Primary School,1707 W. Morse ,60626,5342760,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Susan M. Kilbane,,,,,, +709,1.0,2050,DFSS_AgencySiteLies_2012.csv,Chicago Public Schools Nicholson Math and Science,6006 S Peoria St ,60621,5353285,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mr. Rodney L. Hull,,,,,, +710,1.0,2051,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Nixon, William P.",2121 N Keeler Ave. ,60639,5344375,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Herman Escobar,,,,,, +711,1.0,2052,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools O'Keeffe, Isabell C.",6940 S. Merrill ,60649,5350600,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Stephen Parker,,,,,, +712,1.0,2053,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools O'Toole, Luke",6550 S. Seeley ,60636,5359040,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mr. King Hall,,,,,, +713,1.0,2054,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Peabody, Elizabeth",1444 W. Augusta Blvd. ,60622,5344170,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mr. Federico Flores,,,,,, +1240,1.0,2055,DFSS_AgencySiteLies_2012.csv,Chicago Public Schools Peck School,4026 W. 59th Street ,60629,5352450,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Okab Hassan,,,,,, +714,1.0,2056,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Penn, William",1616 S. Avers ,60623,5341665,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mrs. Sherryl Moore-Ollie,,,,,, +715,1.0,2057,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Perez, Manuel",1241 W. 19th Street ,60608,5347650,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Vicky Kleros,,,,,, +716,1.0,2058,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Piccolo Specialty School, Brian",1040 N. Keeler Avenue ,60651,5344425,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Tiffany S. Allison,,,,,, +717,1.0,2059,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Pickard, Josiah L.",2301 W. 21st Street ,60608,5357280,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Rigo Hernandez,,,,,, +718,1.0,2060,DFSS_AgencySiteLies_2012.csv,Chicago Public Schools Pilsen Comm. Academy,1420 W. 17th Street ,60608,5347675,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Dr. Adel M. Ali,,,,,, +719,1.0,2061,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Reavis, William Claude",834 E. 50th Street ,60615,5351060,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mr. Michael T. Johnson,,,,,, +720,1.0,2062,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Revere, Paul",1010 E. 72nd Street ,60619,5350618,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mrs. Veronica J. Thompson,,,,,, +721,1.0,2063,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Robinson, Jackie R.",4225 S. Lake Park Ave. ,60653,5351777,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Sonja Spiller,,,,,, +722,1.0,2064,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Ruggles, Martha M.",7831 S. Prairie Ave. ,60619,5353085,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ida Patterson,,,,,, +723,1.0,2065,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Ryder, William H.",8716 S. Wallace Street ,60620,5353843,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mrs. Janice Preston,,,,,, +724,1.0,2066,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Ryerson, Martin A.",646 N Lawndale ,60624,5346700,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mr. Lorenzo Russell,,,,,, +725,1.0,2067,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Sandoval, Socorro",5534 S Saint Louis Ave ,60629,5350457,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Dr. Ana Expinoza,,,,,, +726,1.0,2068,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Saucedo Scholastic Academy, Maria",2850 W. 24 th Blvd ,60623,5341770,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Isamar Vargas Colon,,,,,, +727,1.0,2069,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Seward, William H.",4600 S Hermitage Ave. ,60609,5354890,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Nora Cardenas,,,,,, +728,1.0,2070,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Sexton, Austin O.",6020 S. Langley ,60637,5350640,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mrs. Ginger V. Bryant,,,,,, +729,1.0,2071,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Sherwood, Jessie",245 W 57th St ,60621,5350829,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Alice Buzanis,,,,,, +730,1.0,2072,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Shields, James",4250 S Rockwell St. ,60632,5357285,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Philip Salemi,,,,,, +731,1.0,2073,DFSS_AgencySiteLies_2012.csv,Chicago Public Schools Songhai Learning Institute,11725 S. Perry Ave ,60628,5355547,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Kathy Farr,,,,,, +732,1.0,2074,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Spencer Math and Science +Academy",214 N. Lavergne ,60644,5346150,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mr. Shawn L. Jackson,,,,,, +733,1.0,2075,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Stagg, Amos A.",7424 S. Morgan St. ,60621,5353565,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Ruth A. Miller,,,,,, +734,1.0,2076,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Stewart, Graeme",4525 N. Kenmore ,60640,5342640,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Juliet Rempa,,,,,, +1241,1.0,2077,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Stockton, Joseph",4423 N. Magnolia ,60640,5342510,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Jill Besenjak,,,,,, +735,1.0,2078,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Stowe, Harriet Beecher",3444 W. Wabansia ,60647,5344175,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Dr. Charles L. Kyle,,,,,, +736,1.0,2079,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Tanner, Henry O.",7350 S. Evans ,60619,5353870,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Kenndell Smith ,,,,,, +737,1.0,2080,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Thomas Center, Velma",3625 S Hoyne ,60609,5354088,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Elizabeth Najera ,,,,,, +738,1.0,2081,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Thorp, James N.",8914 S Buffalo Ave. ,60617,5356250,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Tony Fisher,,,,,, +739,1.0,2082,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Ward, Laura S.",410 N. Monticello ,60624,5346440,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Relanda Hobbs ,,,,,, +740,1.0,2083,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Whittier, John Greenleaf",1900 W. 23rd St ,60608,5354590,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Zoila Garcia ,,,,,, +741,1.0,2084,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Williams, Daniel H.",2710 S. Dearborn ,60616,5349226,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Lashonn Graham,,,,,, +742,1.0,2085,DFSS_AgencySiteLies_2012.csv,Chicago Public Schools Woodlawn Community School,6657 S Kimbark Ave ,60637,5350801,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Frank Embil,,,,,, +1242,1.0,2086,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Woodson South, Carter G.",44511 S. Evans ,60653,5351822,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Tamara Littlejohn ,,,,,, +743,1.0,2087,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Yates, Richard",1839 N. Richmond ,60647,5344550,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mr. Harry Randell ,,,,,, +744,1.0,2088,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Young, Ella Flagg",1434 N. Parkside ,60651,5346200,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Crystal Bell ,,,,,, +745,1.0,2089,DFSS_AgencySiteLies_2012.csv,Chicago Public Schools Zapata Academy,2728 S. Kostner Ave. ,60623,5341390,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Ruth F. Garcia,,,,,, +746,1.0,2090,DFSS_AgencySiteLies_2012.csv,Chicago State University Grant Creative Learning Center,4025 S Drexel Blvd. ,60653,2858440,,,,,,,Chicago State University,,,,,,,,,,,www.gamechicago.org,Grace Ratliff,Grace Ratliff,,,,,, +14,1.0,2091,DFSS_AgencySiteLies_2012.csv,Chicago State University Raise Up a Child,124 E. 113 St. ,60628,7851172,,,,,,,Chicago State University,,,,,,,,,,,www.gamechicago.org,Grace Ratliff,Sherrie Smith,,,,,, +747,1.0,2092,DFSS_AgencySiteLies_2012.csv,Chicago State University Shining Star Early Learning Academy - II,854 E 79th St ,60619,4191994,,,,,,,Chicago State University,,,,,,,,,,,www.gamechicago.org,Grace Ratliff,Shanida Wray,,,,,, +73,1.0,2093,DFSS_AgencySiteLies_2012.csv,Chicago State University Shining Star Early Learning Academy - III,338 E 103rd St ,60628,9957827,,,,,,,Chicago State University,,,,,,,,,,,www.gamechicago.org,Grace Ratliff,Erica Shirley ,,,,,, +748,1.0,2094,DFSS_AgencySiteLies_2012.csv,Chicago State University The Love Learning Center,228 E 61st St ,60637,7520243,,,,,,,Chicago State University,,,,,,,,,,,www.gamechicago.org,Grace Ratliff,Burchell Love ,,,,,, +749,1.0,2095,DFSS_AgencySiteLies_2012.csv,Chicago State University Tiny Tots Villa,8128 S. King Dr. ,60641,4836251,,,,,,,Chicago State University,,,,,,,,,,,www.gamechicago.org,Grace Ratliff,Judith Tyson,,,,,, +76,0.9999999200319775,2096,DFSS_AgencySiteLies_2012.csv,Chicago Youth Centers ABC,3415 W. 13th Pl. ,60623,7625655,,,,,,,Chicago Youth Centers,,,,,,,,,,,www.chicagoyouthcenters.org,Harry Wells,Tamarra White ,,,,,, +70,0.9999999538304407,2097,DFSS_AgencySiteLies_2012.csv,Chicago Youth Centers Centro Nuestro,3222 W. Division ,60651,4893157,,,,,,,Chicago Youth Centers,,,,,,,,,,,www.chicagoyouthcenters.org,Harry Wells,Beth Mrofcza ,,,,,, +750,1.0,2098,DFSS_AgencySiteLies_2012.csv,Chicago Youth Centers Cuddle Care Academy,4800 S Lake Park Ave ,60615,2851114,,,,,,,Chicago Youth Centers,,,,,,,,,,,www.chicagoyouthcenters.org,Harry Wells,Robbin Cole ,,,,,, +154,0.9999999496248808,2099,DFSS_AgencySiteLies_2012.csv,Chicago Youth Centers Dorothy Gautreaux,975 E. 132nd St. ,60627,2911000,,,,,,,Chicago Youth Centers,,,,,,,,,,,www.chicagoyouthcenters.org,Harry Wells,Glenda Williams ,,,,,, +751,1.0,2100,DFSS_AgencySiteLies_2012.csv,Chicago Youth Centers Ezzard Charles School,7946 S Ashland Ave ,60620,4870227,,,,,,,Chicago Youth Centers,,,,,,,,,,,www.chicagoyouthcenters.org,Harry Wells,Eldora Davis ,,,,,, +377,0.9999999578531515,2101,DFSS_AgencySiteLies_2012.csv,Chicago Youth Centers Fellowship House,844 W. 32nd St. ,60608,3262282,,,,,,,Chicago Youth Centers,,,,,,,,,,,www.chicagoyouthcenters.org,Harry Wells,Levory Wilder ,,,,,, +752,1.0,2102,DFSS_AgencySiteLies_2012.csv,Chicago Youth Centers Kids R Us,7453 S. Vincennes ,60621,8465437,,,,,,,Chicago Youth Centers,,,,,,,,,,,www.chicagoyouthcenters.org,Harry Wells,Tammy Oliver ,,,,,, +257,0.9999999578531515,2103,DFSS_AgencySiteLies_2012.csv,Chicago Youth Centers Lotts of Love,1139 W. 79th St. ,60620,8744954,,,,,,,Chicago Youth Centers,,,,,,,,,,,www.chicagoyouthcenters.org,Harry Wells,Carol Quinn,,,,,, +22,0.9999999403953552,2104,DFSS_AgencySiteLies_2012.csv,Chicago Youth Centers Mt. Moriah-Taylor,1501 N. Harding ,60651,2785837,,,,,,,Chicago Youth Centers,,,,,,,,,,,www.chicagoyouthcenters.org,Harry Wells,Elizabeth Heilbronn ,,,,,, +753,1.0,2105,DFSS_AgencySiteLies_2012.csv,Chicago Youth Centers Pathway,6535 S. Kedzie ,60629,7780017,,,,,,,Chicago Youth Centers,,,,,,,,,,,www.chicagoyouthcenters.org,Harry Wells,Tracy Baker ,,,,,, +754,1.0,2106,DFSS_AgencySiteLies_2012.csv,Chicago Youth Centers Pathways to Learning CC,3418 W 79th St ,60652,7765439,,,,,,,Chicago Youth Centers,,,,,,,,,,,www.chicagoyouthcenters.org,Harry Wells,Carol Quinn ,,,,,, +317,0.999999915706303,2107,DFSS_AgencySiteLies_2012.csv,Chicago Youth Centers Pathways to Learning CC1,3460 W. 79th St. ,60652,4369244,,,,,,,Chicago Youth Centers,,,,,,,,,,,www.chicagoyouthcenters.org,Harry Wells,Carol Quinn ,,,,,, +316,0.999999915706303,2108,DFSS_AgencySiteLies_2012.csv,Chicago Youth Centers Rachel's 1,3430 W. Roosevelt Rd ,60624,5330444,,,,,,,Chicago Youth Centers,,,,,,,,,,,www.chicagoyouthcenters.org,Harry Wells,Carol Quinn ,,,,,, +755,1.0,2109,DFSS_AgencySiteLies_2012.csv,Chicago Youth Centers Rachel's 2,5242 W. North Ave ,60639,2371444,,,,,,,Chicago Youth Centers,,,,,,,,,,,www.chicagoyouthcenters.org,Harry Wells,Carol Quinn ,,,,,, +139,0.9999999774715619,2110,DFSS_AgencySiteLies_2012.csv,Chicago Youth Centers Rebecca Crown,7601 S. Phillips ,60649,7310444,,,,,,,Chicago Youth Centers,,,,,,,,,,,www.chicagoyouthcenters.org,Harry Wells,Eddie Wilson ,,,,,, +95,0.9999999071128699,2111,DFSS_AgencySiteLies_2012.csv,Chicago Youth Centers Roseland Child Development,461 E. 111th St. ,60627,4684405,,,,,,,Chicago Youth Centers,,,,,,,,,,,www.chicagoyouthcenters.org,Harry Wells,Leola Clay,,,,,, +756,1.0,2112,DFSS_AgencySiteLies_2012.csv,Chicago Youth Centers Shining Star 1,3012-16 E. 92nd St. ,60617,9787827,,,,,,,Chicago Youth Centers,,,,,,,,,,,www.chicagoyouthcenters.org,Harry Wells,Carol Quinn,,,,,, +42,0.9999999811513564,2113,DFSS_AgencySiteLies_2012.csv,Chinese American Service League Chinese American Service League Child Dev Ctr,2141 S. Tan Court ,60616,7910454,,,,,,,Chinese American Service League,,,,,,,,,,,www.caslservice.org,Esther Wong,Brenda Arksey,,,,,, +51,0.9999999528783908,2114,DFSS_AgencySiteLies_2012.csv,Christopher House Greenview,2507 N. Greenview ,60614,4721083,,,,,,,Christopher House,,,,,,,,,,,www.christopherhouse.org,Lori Baas,Aimee Washington,,,,,, +72,0.9999999076608814,2115,DFSS_AgencySiteLies_2012.csv,Christopher House Logan Square,3255 W. Altgeld ,60647,2354073,,,,,,,Christopher House,,,,,,,,,,,www.christopherhouse.org,Lori Baas,Carmen Velez,,,,,, +132,0.9999999122643385,2116,DFSS_AgencySiteLies_2012.csv,Christopher House Rogers Park,7059 N. Greenview ,60626,2745477,,,,,,,Christopher House,,,,,,,,,,,www.christopherhouse.org,Lori Baas,Atena Danner-McPhaden,,,,,, +98,0.9999999555733209,2117,DFSS_AgencySiteLies_2012.csv,Christopher House Uptown,4701 N. Winthrop ,60640,7694540,,,,,,,Christopher House,,,,,,,,,,,www.christopherhouse.org,Lori Baas,Karen Ross William,,,,,, +34,1.0,2118,DFSS_AgencySiteLies_2012.csv,Church of God True Believers CHURCH OF GOD COMMUNITY DAY CARE,1738 W. Marquette St. ,60636,4769562,,,,,,,Church of God True Believers,,,,,,,,,,,,Rev. Sheila Sims,Rev. Sheila Sims,,,,,, +255,0.9999999655872422,2119,DFSS_AgencySiteLies_2012.csv,Community Learning Center Community Learning Center,10612 S. Wentworth ,60628,9284104,,,,,,,Community Learning Center,,,,,,,,,,,,Wanda Avery,Wanda Avery,,,,,, +149,0.999999926999517,2120,DFSS_AgencySiteLies_2012.csv,Dorothy Sutton Branch Dorothy Sutton Branch,8601 S. State St ,60619,7234445,,,,,,,Dorothy Sutton Branch,,,,,,,,,,,,Ola Kirksey,Ms. Ola Kirksey,,,,,, +757,1.0,2121,DFSS_AgencySiteLies_2012.csv,Easter Seals Society of Metropolitan Chicago Allison's Infant & Toddler Center,234 E 114th St ,60628,8404502,,,,,,,Easter Seals Society of Metropolitan Chicago,,,,,,,,,,,www.easterseaslchicago.org,Barbara Zawacki,Allison Caldwell,,,,,, +758,1.0,2122,DFSS_AgencySiteLies_2012.csv,Easter Seals Society of Metropolitan Chicago Channings Child Care,5701 W Division St ,60651,4572990,,,,,,,Easter Seals Society of Metropolitan Chicago,,,,,,,,,,,www.easterseaslchicago.org,Barbara Zawacki,Ruth Kimble,,,,,, +759,1.0,2123,DFSS_AgencySiteLies_2012.csv,Easter Seals Society of Metropolitan Chicago Children's International Academy,5850 W. Roosevelt Rd. ,60644,2870808,,,,,,,Easter Seals Society of Metropolitan Chicago,,,,,,,,,,,www.easterseaslchicago.org,Barbara Zawacki,Gaby Servin,,,,,, +760,1.0,2124,DFSS_AgencySiteLies_2012.csv,Easter Seals Society of Metropolitan Chicago Chipper Preschool,8225 S Kedzie ,60652,7785757,,,,,,,Easter Seals Society of Metropolitan Chicago,,,,,,,,,,,www.easterseaslchicago.org,Barbara Zawacki,Ms.Amaryllis Nelson,,,,,, +761,1.0,2125,DFSS_AgencySiteLies_2012.csv,Easter Seals Society of Metropolitan Chicago FIFTH CITY,3411 W Jackson ,60624,8268686,,,,,,,Easter Seals Society of Metropolitan Chicago,,,,,,,,,,,www.easterseaslchicago.org,Barbara Zawacki,Ms.Bettie Veal,,,,,, +762,1.0,2126,DFSS_AgencySiteLies_2012.csv,Easter Seals Society of Metropolitan Chicago First Start Children's Academy,4753 W. Washington Blvd ,60644,3794928,,,,,,,Easter Seals Society of Metropolitan Chicago,,,,,,,,,,,www.easterseaslchicago.org,Barbara Zawacki,P. Cachet Cook,,,,,, +763,1.0,2127,DFSS_AgencySiteLies_2012.csv,Easter Seals Society of Metropolitan Chicago First Start Children's Academy South,5700 S Ashland Ave 1st Fl ,60636,77327770904244111,,,,,,,Easter Seals Society of Metropolitan Chicago,,,,,,,,,,,www.easterseaslchicago.org,Barbara Zawacki,Beverly Mims ,,,,,, +764,1.0,2128,DFSS_AgencySiteLies_2012.csv,Easter Seals Society of Metropolitan Chicago Fresh Start Day Care Center,6924 W. North Avenue ,60635,4792870,,,,,,,Easter Seals Society of Metropolitan Chicago,,,,,,,,,,,www.easterseaslchicago.org,Barbara Zawacki,Claudia Aguayo ,,,,,, +3,0.9999999623027127,2129,DFSS_AgencySiteLies_2012.csv,Easter Seals Society of Metropolitan Chicago Gilchrist Marchman,1001 W Roosevelt Rd ,60608,4927402,,,,,,,Easter Seals Society of Metropolitan Chicago,,,,,,,,,,,www.easterseaslchicago.org,Barbara Zawacki,Morayma Cancel ,,,,,, +765,1.0,2130,DFSS_AgencySiteLies_2012.csv,Easter Seals Society of Metropolitan Chicago Imani's Children,11443 S Halsted St ,60628,6609667,,,,,,,Easter Seals Society of Metropolitan Chicago,,,,,,,,,,,www.easterseaslchicago.org,Barbara Zawacki,Marianne Powell ,,,,,, +326,0.999999915706303,2131,DFSS_AgencySiteLies_2012.csv,Easter Seals Society of Metropolitan Chicago Little Giants,3863 W. Harrison ,60624,2656330,,,,,,,Easter Seals Society of Metropolitan Chicago,,,,,,,,,,,www.easterseaslchicago.org,Barbara Zawacki,Ms.Gloria Granberry ,,,,,, +766,1.0,2132,DFSS_AgencySiteLies_2012.csv,Easter Seals Society of Metropolitan Chicago Liz-Ney-Land #1,4610 S Pulaski Rd ,60632,2479779,,,,,,,Easter Seals Society of Metropolitan Chicago,,,,,,,,,,,www.easterseaslchicago.org,Barbara Zawacki,Liz Medrano,,,,,, +767,1.0,2133,DFSS_AgencySiteLies_2012.csv,Easter Seals Society of Metropolitan Chicago Liz-Ney-Land #2,6010 S. Pulaski ,60632,5828355,,,,,,,Easter Seals Society of Metropolitan Chicago,,,,,,,,,,,www.easterseaslchicago.org,Barbara Zawacki,Liz Medrano ,,,,,, +768,1.0,2134,DFSS_AgencySiteLies_2012.csv,Easter Seals Society of Metropolitan Chicago Lordanchild Daycare,3344 W 79th St ,60652,4344918,,,,,,,Easter Seals Society of Metropolitan Chicago,,,,,,,,,,,www.easterseaslchicago.org,Barbara Zawacki,Quentin Donald ,,,,,, +769,1.0,2135,DFSS_AgencySiteLies_2012.csv,Easter Seals Society of Metropolitan Chicago Mother's Touch,2501 W 71st St ,60629,4363177,,,,,,,Easter Seals Society of Metropolitan Chicago,,,,,,,,,,,www.easterseaslchicago.org,Barbara Zawacki,Ethel Daniels ,,,,,, +770,1.0,2136,DFSS_AgencySiteLies_2012.csv,Easter Seals Society of Metropolitan Chicago Near South Side Child Development Center,2214 S Federal St ,60616,5483614,,,,,,,Easter Seals Society of Metropolitan Chicago,,,,,,,,,,,www.easterseaslchicago.org,Barbara Zawacki,Catherine Rokusek ,,,,,, +771,1.0,2137,DFSS_AgencySiteLies_2012.csv,Easter Seals Society of Metropolitan Chicago Rachel's Learning Center #1,3430 W Roosevelt Rd ,60624,5330444,,,,,,,Easter Seals Society of Metropolitan Chicago,,,,,,,,,,,www.easterseaslchicago.org,Barbara Zawacki,Rochelle Ray ,,,,,, +772,1.0,2138,DFSS_AgencySiteLies_2012.csv,Easter Seals Society of Metropolitan Chicago Rachel's Learning Center #2,5242 W North Ave ,60639,2371444,,,,,,,Easter Seals Society of Metropolitan Chicago,,,,,,,,,,,www.easterseaslchicago.org,Barbara Zawacki,Rochelle Ray,,,,,, +773,1.0,2139,DFSS_AgencySiteLies_2012.csv,Easter Seals Society of Metropolitan Chicago Whiz Kids Nursery Center,518 W 103rd St. ,60628,2339445,,,,,,,Easter Seals Society of Metropolitan Chicago,,,,,,,,,,,www.easterseaslchicago.org,Barbara Zawacki,Diana Ross,,,,,, +32,0.9999999820285234,2140,DFSS_AgencySiteLies_2012.csv,El Hogar Del Nino Loomis El Hogar,1718 S Loomis ,60608,5630644,,,,,,,El Hogar Del Nino,,,,,,,,,,,www.elhogardelnino.org,Rebecca Estrada,Kimberly Johnson,,,,,, +774,1.0,2141,DFSS_AgencySiteLies_2012.csv,El Valor Amazing Grace Child Care Center,11123 S Halsted St ,60628,2643636,,,,,,,El Valor,,,,,,,,,,,www.elvalor.org,Vincent Allocco,Rachel Adesola ,,,,,, +775,1.0,2142,DFSS_AgencySiteLies_2012.csv,El Valor Brenda's Kids Club,3552 E 118th St. ,60617,6460007,,,,,,,El Valor,,,,,,,,,,,www.elvalor.org,Vincent Allocco,Brenda Lopez ,,,,,, +50,0.9999998967617268,2143,DFSS_AgencySiteLies_2012.csv,El Valor Carlos Cantu,2434 S. Kildare ,60623,2422700,,,,,,,El Valor,,,,,,,,,,,www.elvalor.org,Vincent Allocco,Irma Carmona ,,,,,, +56,0.9999999513330113,2144,DFSS_AgencySiteLies_2012.csv,El Valor Centro Infantil (Puerto Rican Comm),2739 W Division ,60622,3428866,,,,,,,El Valor,,,,,,,,,,,www.elvalor.org,Vincent Allocco,Xochiti Ramirez,,,,,, +776,1.0,2145,DFSS_AgencySiteLies_2012.csv,El Valor Chicago Pre-School Academy,532 E 87th St ,60619,4884495,,,,,,,El Valor,,,,,,,,,,,www.elvalor.org,Vincent Allocco,Deneen Grover,,,,,, +39,0.9999999496248808,2146,DFSS_AgencySiteLies_2012.csv,El Valor Guadalupe Reyes Children & Family Center,1951 W. 19th St. ,60608,9972021,,,,,,,El Valor,,,,,,,,,,,www.elvalor.org,Vincent Allocco,Rosa Moreno ,,,,,, +92,0.9999999513330113,2147,DFSS_AgencySiteLies_2012.csv,El Valor Kiddy Kare Learning Center,4444 S. Kedzie ,60632,2476642,,,,,,,El Valor,,,,,,,,,,,www.elvalor.org,Vincent Allocco,Marina Lopez ,,,,,, +777,1.0,2148,DFSS_AgencySiteLies_2012.csv,El Valor Kidz Colony,6287 South Archer Ave ,60638,7678522,,,,,,,El Valor,,,,,,,,,,,www.elvalor.org,Vincent Allocco,Joy Avila,,,,,, +778,1.0,2149,DFSS_AgencySiteLies_2012.csv,El Valor Little Brown Bear Pre-School,8046 S Western Ave ,60620,4343500,,,,,,,El Valor,,,,,,,,,,,www.elvalor.org,Vincent Allocco,Deborah Broyles ,,,,,, +779,1.0,2150,DFSS_AgencySiteLies_2012.csv,El Valor Little Kids Village,2656 W. 71st St. ,60629,7764753,,,,,,,El Valor,,,,,,,,,,,www.elvalor.org,Vincent Allocco,Sherri Thompson ,,,,,, +118,0.9999999513330113,2151,DFSS_AgencySiteLies_2012.csv,El Valor Little Learners,5923 W. 63rd Street ,60638,5815541,,,,,,,El Valor,,,,,,,,,,,www.elvalor.org,Vincent Allocco,Paula Parrilli,,,,,, +30,0.999999946687985,2152,DFSS_AgencySiteLies_2012.csv,El Valor Little Tykes I,1711 W. 35th Street ,60609,2547710,,,,,,,El Valor,,,,,,,,,,,www.elvalor.org,Vincent Allocco,Sara Matta,,,,,, +33,0.999999946687985,2153,DFSS_AgencySiteLies_2012.csv,El Valor Little Tykes II,1723 W. 35th Street ,60609,5791791,,,,,,,El Valor,,,,,,,,,,,www.elvalor.org,Vincent Allocco,Laura Gonzalez ,,,,,, +780,1.0,2154,DFSS_AgencySiteLies_2012.csv,El Valor Mari's Bumble Bee Academy,9725 S Commercial Ave ,60617,2217692,,,,,,,El Valor,,,,,,,,,,,www.elvalor.org,Vincent Allocco,Marisol Lopez ,,,,,, +781,1.0,2155,DFSS_AgencySiteLies_2012.csv,El Valor New Age Preparatory,8940 S Cottage Grove Ave ,60619,7832431,,,,,,,El Valor,,,,,,,,,,,www.elvalor.org,Vincent Allocco,Tanya Furlow,,,,,, +782,1.0,2156,DFSS_AgencySiteLies_2012.csv,El Valor New Age Preparatory Academy,10951 S Michigan Ave ,60628,7857737,,,,,,,El Valor,,,,,,,,,,,www.elvalor.org,Vincent Allocco,Tanya Furlow,,,,,, +66,0.9999999538304407,2157,DFSS_AgencySiteLies_2012.csv,El Valor Rey Gonzalez Children and Family Center,3050 E. 92nd St. ,60617,7219311,,,,,,,El Valor,,,,,,,,,,,www.elvalor.org,Vincent Allocco,Carmen Flores,,,,,, +298,0.999999915706303,2158,DFSS_AgencySiteLies_2012.csv,El Valor Teddy Bear 1,2649 W 51st St. ,60632,4760700,,,,,,,El Valor,,,,,,,,,,,www.elvalor.org,Vincent Allocco,Francy Torres ,,,,,, +78,0.9999999026660227,2159,DFSS_AgencySiteLies_2012.csv,El Valor Teddy Bear 2,3473 W Columbus ,60652,4342327,,,,,,,El Valor,,,,,,,,,,,www.elvalor.org,Vincent Allocco,Connie Guyton ,,,,,, +125,0.9999999026660227,2160,DFSS_AgencySiteLies_2012.csv,El Valor Teddy Bear 3,6401 S Pulaski Rd. ,60629,2842292,,,,,,,El Valor,,,,,,,,,,,www.elvalor.org,Vincent Allocco,Natasha Catchings ,,,,,, +109,0.9999999026660227,2161,DFSS_AgencySiteLies_2012.csv,El Valor Teddy Bear 5,5160 S Pulaski Rd. ,60632,2847030,,,,,,,El Valor,,,,,,,,,,,www.elvalor.org,Vincent Allocco,Mary Zirngibl,,,,,, +64,0.9999999513330113,2162,DFSS_AgencySiteLies_2012.csv,El Valor Young Scholars Dev. Ins.,3038 W. 59th St. ,60629,9181944,,,,,,,El Valor,,,,,,,,,,,www.elvalor.org,Vincent Allocco,Elizabeth Campbell,,,,,, +783,1.0,2163,DFSS_AgencySiteLies_2012.csv,Erie Neighborhood House Charter School,1405 N Washtenaw Ave ,60622,4867234,,,,,,,Erie Neighborhood House,,,,,,,,,,,www.eriehouse.org,Celena Roldan,,,,,,, +29,0.9999999483808635,2164,DFSS_AgencySiteLies_2012.csv,Erie Neighborhood House Erie Community Center,1701 W. Superior ,60622,5635800,,,,,,,Erie Neighborhood House,,,,,,,,,,,www.eriehouse.org,Celena Roldan,Celena Roldan,,,,,, +584,0.9999999701976776,2165,DFSS_AgencySiteLies_2012.csv,Erie Neighborhood House Erie House,1347 W. Erie ,60622,6663430,,,,,,,Erie Neighborhood House,,,,,,,,,,,www.eriehouse.org,Celena Roldan,Valery Sheppard,,,,,, +785,1.0,2166,DFSS_AgencySiteLies_2012.csv,Firman Community Services Firman House East,4910 S. King ,60615,3732083,,,,,,,Firman Community Services,,,,,,,,,,, www.firmancs.org,Marguerite Young,Ms. Earline Moore ,,,,,, +80,0.9999999578531515,2167,DFSS_AgencySiteLies_2012.csv,Firman Community Services Firman House West,37 W. 47th St. ,60609,3733400,,,,,,,Firman Community Services,,,,,,,,,,, www.firmancs.org,Marguerite Young,Dontrease Thomas ,,,,,, +590,0.9999999311744846,2168,DFSS_AgencySiteLies_2012.csv,Firman Community Services Firman West II SA 4644 S. Dearborn,4644 S. Dearborn ,60609,3733400,,,,,,,Firman Community Services,,,,,,,,,,, www.firmancs.org,Marguerite Young,Dontrease Thomas,,,,,, +290,1.0,2169,DFSS_AgencySiteLies_2012.csv,First Church of Love And Faith FIRST CHURCH OF LOVE AND FAITH#1,2140 W. 79th St. ,60620,2246800,,,,,,,First Church of Love And Faith,,,,,,,,,,,,Archbishop Lucius Hall,Barbara Mosley,,,,,, +43,1.0,2170,DFSS_AgencySiteLies_2012.csv,First Church of Love And Faith FIRST CHURCH OF LOVE AND FAITH#2,2141 W. 79th St. ,60200,8739155,,,,,,,First Church of Love And Faith,,,,,,,,,,,,Archbishop Lucius Hall,Barbara Mosley,,,,,, +585,0.9999999311744846,2171,DFSS_AgencySiteLies_2012.csv,Gads Hill Center GH Cullerton Location,1919 W. Cullerton ,60608,2260963,,,,,,,Gads Hill Center,,,,,,,,,,,www.gadshillcenter.org,Barbara Castellan,Mr. Montes de Oca,,,,,, +192,0.999999943169201,2172,DFSS_AgencySiteLies_2012.csv,Gads Hill Center GH Sinai Community Ogden,2653 W. Ogden ,60608,5211196,,,,,,,Gads Hill Center,,,,,,,,,,,www.gadshillcenter.org,Barbara Castellan,Rick Baldwin,,,,,, +786,1.0,2173,DFSS_AgencySiteLies_2012.csv,Gads Hill Center Hunt's Early Childhood Educational Academy,2701 W 79th St. ,60652,8638260,,,,,,,Gads Hill Center,,,,,,,,,,,www.gadshillcenter.org,Barbara Castellan,Sallie Hunt ,,,,,, +787,1.0,2174,DFSS_AgencySiteLies_2012.csv,Gads Hill Center Kove Learning Academy,3137 W 71st St. ,60629,4763083,,,,,,,Gads Hill Center,,,,,,,,,,,www.gadshillcenter.org,Barbara Castellan,Olivia Hargon ,,,,,, +788,1.0,2175,DFSS_AgencySiteLies_2012.csv,Gads Hill Center M & E Daycare - 79th Street Day Care,3728 W 79th St. ,60652,5857979,,,,,,,Gads Hill Center,,,,,,,,,,,www.gadshillcenter.org,Barbara Castellan,Lisa Pearson,,,,,, +789,1.0,2176,DFSS_AgencySiteLies_2012.csv,Haymarket Center Haymarket Center,120 N Sangamon ,60607,2267984,,,,,,,Haymarket Center,,,,,,,,,,,www.hcenter.org,Bakahia Madison,Bakahia Madison,,,,,, +790,1.0,2177,DFSS_AgencySiteLies_2012.csv,Haymarket Center Wholly Innocence Day Care Center,34 N. Sangamon ,60607,2267984,,,,,,,Haymarket Center,,,,,,,,,,,www.hcenter.org,Bakahia Madison,Bakahia Madison,,,,,, +103,0.9999999578531515,2178,DFSS_AgencySiteLies_2012.csv,Healing Temple Healing Temple,4941 W. Chicago ,60651,2876964,,,,,,,Healing Temple,,,,,,,,,,,,Elizabeth Lockhart,Carole Smoot,,,,,, +791,1.0,2179,DFSS_AgencySiteLies_2012.csv,Hektoen Institute Early Head Start Program at Stroger Hospital,1900 W Polk ,60612,8646560,,,,,,,Hektoen Institute,,,,,,,,,,,,Grace Ortiz,Grace Ortiz,,,,,, +345,0.9999999578531515,2180,DFSS_AgencySiteLies_2012.csv,Henry Booth House All About Kids Learning Academy,514 E. 75th St. ,60619,8922800,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,Tess McKenzie ,,,,,, +792,1.0,2181,DFSS_AgencySiteLies_2012.csv,Henry Booth House Allison's,34 E. 115th St. ,60628,8404502,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,Allison Perkins ,,,,,, +351,0.9999999578531515,2182,DFSS_AgencySiteLies_2012.csv,Henry Booth House Allison's Infant Toddler,5522 S Racine ,60636,4363193,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,LaParish Woody ,,,,,, +348,0.999999915706303,2183,DFSS_AgencySiteLies_2012.csv,Henry Booth House Angel Wings,5365 W Noth ,60639,7450262,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,Lisa Collins,,,,,, +793,1.0,2184,DFSS_AgencySiteLies_2012.csv,Henry Booth House Brite New Minds,112 E 51ST St. ,60615,,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,,,,,,, +350,0.999999915706303,2185,DFSS_AgencySiteLies_2012.csv,Henry Booth House Bunnyland Land Day Care,545 W 119TH St. ,60628,5685200,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,Ms. Boykin,,,,,, +297,0.9999999578531515,2186,DFSS_AgencySiteLies_2012.csv,Henry Booth House Color For Tots,2550 E. 73rd St. ,60649,3638687,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,Cassandra Williams ,,,,,, +794,1.0,2187,DFSS_AgencySiteLies_2012.csv,Henry Booth House Gina's Unbelievable,7239 S. Dobson ,60619,3242010,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,Gina Thomas ,,,,,, +359,0.999999915706303,2188,DFSS_AgencySiteLies_2012.csv,Henry Booth House Granny's Day Care Center,645 W 127TH St. ,60628,2644800,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,Ms. Priscilla Bolling ,,,,,, +302,0.999999915706303,2189,DFSS_AgencySiteLies_2012.csv,Henry Booth House Hegewisch,2725 E 130th St. ,60633,,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,,,,,,, +256,0.9999999578531515,2190,DFSS_AgencySiteLies_2012.csv,Henry Booth House Hippity Hop Tiny Tots,11223 S. Halsted St. ,60628,7853340,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,Ms. Tuggle ,,,,,, +367,0.9999999578531515,2191,DFSS_AgencySiteLies_2012.csv,Henry Booth House Itsy Bitsy People Palace. Inc,7419 S. Cottage Grove Ave. ,60619,8467396,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,Ms. Whiting ,,,,,, +378,0.999999915706303,2192,DFSS_AgencySiteLies_2012.csv,Henry Booth House Jelly Bean Learining Center-8501 S ASHLAND,8501 S Ashland ,60620,2395437,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,Ms. Donna Taylor ,,,,,, +795,1.0,2193,DFSS_AgencySiteLies_2012.csv,Henry Booth House Jelly Bean-358-370 E 71st,358-370 E 71st. ,60636,8738888,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,Donna Taylor ,,,,,, +334,0.9999999578531515,2194,DFSS_AgencySiteLies_2012.csv,Henry Booth House Jones Academy,4344 S. Wentworth Ave. ,60609,5363757,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,Felicia Jones,,,,,, +265,0.9999999578531515,2195,DFSS_AgencySiteLies_2012.csv,Henry Booth House Kids Place II,1318 W 95TH St. ,60643,4456500,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,Ms. Porter ,,,,,, +259,1.0,2196,DFSS_AgencySiteLies_2012.csv,Henry Booth House Kids R First 1155 W 81st,1155 W. 81st St. ,60620,7838080,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,Wilborn ,,,,,, +796,1.0,2197,DFSS_AgencySiteLies_2012.csv,Henry Booth House Kids R First 7838 S Halsted,7838 S Halsted ,60620,4889443,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,Ms. Jones ,,,,,, +275,0.999999915706303,2198,DFSS_AgencySiteLies_2012.csv,Henry Booth House Lakeview Development Center,1531 W Lawrence ,60640,,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,,,,,,, +362,0.9999999578531515,2199,DFSS_AgencySiteLies_2012.csv,Henry Booth House Little Angels Family DayCare,6701 S. Emerald Ave. ,60621,4888777,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,NaShone Greer,,,,,, +797,1.0,2200,DFSS_AgencySiteLies_2012.csv,Henry Booth House Little Folks Day Care,2527 E 73RD St. ,60649,,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,,,,,,, +372,0.999999915706303,2201,DFSS_AgencySiteLies_2012.csv,Henry Booth House Little Hands & Feet,7801 S Wolcott ,60620,9948561,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,Ms. Doyle ,,,,,, +269,0.999999915706303,2202,DFSS_AgencySiteLies_2012.csv,Henry Booth House Little Hands and Feet II (87th),1414 W 87TH St. ,60620,2392322,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,Ms. Jackson ,,,,,, +310,0.9999999578531515,2203,DFSS_AgencySiteLies_2012.csv,Henry Booth House Little Leaders of Tomorrow I - Mayfield,301 N. Mayfield Ave. ,60644,3788302,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,Ms. Navy,,,,,, +798,1.0,2204,DFSS_AgencySiteLies_2012.csv,Henry Booth House Living Witness,4259 N Laramie ,60641,,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,,,,,,, +285,0.9999999578531515,2205,DFSS_AgencySiteLies_2012.csv,Henry Booth House Loop,2001 S Michigan ,60616,2258828,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,Ms. Gregg,,,,,, +799,1.0,2206,DFSS_AgencySiteLies_2012.csv,Henry Booth House Love N Learn Academy,723-725 E 75TH St. ,60619,7230338,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,Ms. Blanton & Ms. Johnson,,,,,, +60,0.9999999578531515,2207,DFSS_AgencySiteLies_2012.csv,Henry Booth House Near South,2929 S. Wabash ,60616,7910424,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,Ms. Newsome,,,,,, +144,0.9999999513330113,2208,DFSS_AgencySiteLies_2012.csv,Henry Booth House New Pisgah,8130 S Racine ,60620,8735392,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,Mr. S. Smith,,,,,, +148,0.999999853999034,2209,DFSS_AgencySiteLies_2012.csv,Henry Booth House Home of Life Community North Kenwood Day Care Center,857 E Pershing ,60653,,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,,,,,,, +383,0.9999999578531515,2210,DFSS_AgencySiteLies_2012.csv,Henry Booth House Patti Cake,939 W 87TH St. ,60620,8749460,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,Ms. Harris ,,,,,, +375,0.9999999578531515,2211,DFSS_AgencySiteLies_2012.csv,Henry Booth House Pink's Child Care Academy,8236 S Kedzie ,60652,8637465,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,Ms. Jones ,,,,,, +800,1.0,2212,DFSS_AgencySiteLies_2012.csv,Henry Booth House Precious Little Ones,5327 S Michigan Ave. ,60615,,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,,,,,,, +801,1.0,2213,DFSS_AgencySiteLies_2012.csv,Henry Booth House Prodigy Child Learning Center,1921 E. 79th St. ,60649,2213100,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,Shonzette Cheeks,,,,,, +802,1.0,2214,DFSS_AgencySiteLies_2012.csv,Henry Booth House The World Is Yours,8026 S Cottage Grove Ave. ,60619,,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,,,,,,, +281,0.9999999578531515,2215,DFSS_AgencySiteLies_2012.csv,Henry Booth House Wee Care Nursery,1845 E 79TH St. ,60649,2214442,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,Ms. Williams-Morgan,,,,,, +294,0.999999915706303,2216,DFSS_AgencySiteLies_2012.csv,Henry Booth House Wee Wee Center for Creative,2434 W 71ST St. ,60629,4710869,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,Ms. Duckery,,,,,, +803,1.0,2217,DFSS_AgencySiteLies_2012.csv,Henry Booth House West Austin,4920 W Madison ,60644,,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,,,,,,, +804,1.0,2218,DFSS_AgencySiteLies_2012.csv,Henry Booth House Whiz Kids Nursery 518 W 103 Rd ST,518 W 103rd St. ,60628,2339445,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,Ms. Craft,,,,,, +805,1.0,2219,DFSS_AgencySiteLies_2012.csv,Henry Booth House Young Achievers Academy,520 E 79TH St. ,60619,,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,,,,,,, +97,0.9999999240186883,2220,DFSS_AgencySiteLies_2012.csv,Home of Life Community Dev. Corp. HLCDC Dev. II,4650 W. Madison ,60644,6268655,,,,,,,Home of Life Community Dev. Corp.,,,,,,,,,,,www.homeoflife.org,Delores Sheppard,Diane Congress,,,,,, +96,0.9999998884899203,2221,DFSS_AgencySiteLies_2012.csv,Home of Life Community Dev. Corp. HOME OF LIFE JUST FOR YOU (773)-626-8655,4647 W. Washington ,60644,,,,,,,,Home of Life Community Dev. Corp.,,,,,,,,,,,www.homeoflife.org,Delores Sheppard,Diane Congress,,,,,, +138,1.0,2222,DFSS_AgencySiteLies_2012.csv,Howard Area Community Center HOWARD AREA,7510 N. Ashland ,60626,2626622,,,,,,,Howard Area Community Center,,,,,,,,,,,www.howardarea.org,Bruce Rasey,Stephania Koliarakis,,,,,, +87,0.9999999496248808,2223,DFSS_AgencySiteLies_2012.csv,Korean American Community Services Korean American Community Services,4300 N. California ,60618,5838281,,,,,,,Korean American Community Services,,,,,,,,,,,www.kacschicago.org,In chul Choi,Hye K. Choi,,,,,, +806,1.0,2224,DFSS_AgencySiteLies_2012.csv,Lutheran Social Services of Illinois ARRA Home Based Initiative - Roseland Christian Ministries,10 W 35th St 15th Floor ,60616,9494789,,,,,,,Lutheran Social Services of Illinois,,,,,,,,,,,www.lssi.org,John Schnier,,,,,,, +284,0.999999915706303,2225,DFSS_AgencySiteLies_2012.csv,Lutheran Social Services of Illinois ENGLEWOOD MESSIAH,1910 W. 64th Street ,60636,4365110,,,,,,,Lutheran Social Services of Illinois,,,,,,,,,,,www.lssi.org,John Schnier,Delphine Whittlesey,,,,,, +20,0.9999999578531515,2226,DFSS_AgencySiteLies_2012.csv,Lutheran Social Services of Illinois NORTH AUSTIN HEAD START,1500 N. Mason ,60651,2371930,,,,,,,Lutheran Social Services of Illinois,,,,,,,,,,,www.lssi.org,John Schnier,Doris Holden,,,,,, +35,1.0,2227,DFSS_AgencySiteLies_2012.csv,Lutheran Social Services of Illinois ROGERS PARK,1754 W. Devon ,60660,6354600,,,,,,,Lutheran Social Services of Illinois,,,,,,,,,,,www.lssi.org,John Schnier,Deloris McDowell ,,,,,, +307,1.0,2228,DFSS_AgencySiteLies_2012.csv,Lutheran Social Services of Illinois TRINIDAD LUTHERAN,2921 W. Division ,60622,6354600,,,,,,,Lutheran Social Services of Illinois,,,,,,,,,,,www.lssi.org,John Schnier,Emilia Espinal ,,,,,, +101,0.9999999578531515,2229,DFSS_AgencySiteLies_2012.csv,Lutheran Social Services of Illinois WINTHROP CHILDREN'S CENTER,4848 N. Winthrop ,60640,8783210,,,,,,,Lutheran Social Services of Illinois,,,,,,,,,,,www.lssi.org,John Schnier,,,,,,, +219,0.9999999733439925,2230,DFSS_AgencySiteLies_2012.csv,Marcy Newberry Association Austin Town Hall,5610 W. Lake ,60644,2611505,,,,,,,Marcy Newberry Association,,,,,,,,,,,www.marcy-newberry.org,Gertrude Ricks,Marsha Ballenger,,,,,, +16,0.9999999381453369,2231,DFSS_AgencySiteLies_2012.csv,Marcy Newberry Association FOSCO,1312 S. Racine ,60608,7466024,,,,,,,Marcy Newberry Association,,,,,,,,,,,www.marcy-newberry.org,Gertrude Ricks,Kimberly Johnson ,,,,,, +807,1.0,2232,DFSS_AgencySiteLies_2012.csv,Marcy Newberry Association Learning Tree 1,8128 S Kedzie ,60652,7788802,,,,,,,Marcy Newberry Association,,,,,,,,,,,www.marcy-newberry.org,Gertrude Ricks,Joanne Williams ,,,,,, +808,1.0,2233,DFSS_AgencySiteLies_2012.csv,Marcy Newberry Association Learning Tree 2,8322 S Pulaski Rd. ,60652,8843345,,,,,,,Marcy Newberry Association,,,,,,,,,,,www.marcy-newberry.org,Gertrude Ricks,Joanne Williams ,,,,,, +23,0.9999999403953552,2234,DFSS_AgencySiteLies_2012.csv,Marcy Newberry Association Marcy Center,1539 S. Springfield ,60623,7622300,,,,,,,Marcy Newberry Association,,,,,,,,,,,www.marcy-newberry.org,Gertrude Ricks,Barbara Tucker ,,,,,, +582,0.9999999701976776,2235,DFSS_AgencySiteLies_2012.csv,Marcy Newberry Association Newberry Center,1073 W. Maxwell ,60608,8297555,,,,,,,Marcy Newberry Association,,,,,,,,,,,www.marcy-newberry.org,Gertrude Ricks,Vernon Lyle,,,,,, +115,1.0,2236,DFSS_AgencySiteLies_2012.csv,Marcy Newberry Association St. John, 5701 W. Midway Park ,60644,3795533,,,,,,,Marcy Newberry Association,,,,,,,,,,,www.marcy-newberry.org,Gertrude Ricks,Willie Mae Cole,,,,,, +809,1.0,2237,DFSS_AgencySiteLies_2012.csv,Mary Crane League Children's Learn and Play,6512 S. Halsted ,60621,9667162,,,,,,,Mary Crane League,,,,,,,,,,,www.marycrane.org,Lavetter Terry,Mashanda Scott ,,,,,, +63,1.0,2238,DFSS_AgencySiteLies_2012.csv,Mary Crane League Mary Crane Center (East),2974 N. Clybourn ,60618,9388130,,,,,,,Mary Crane League,,,,,,,,,,,www.marycrane.org,Lavetter Terry,Martuice Williams ,,,,,, +810,1.0,2239,DFSS_AgencySiteLies_2012.csv,Mary Crane League Mary Crane Center (Lake & Pulaski),316 N. Pulaski ,60624,2655954,,,,,,,Mary Crane League,,,,,,,,,,,www.marycrane.org,Lavetter Terry,Marcia Newsome ,,,,,, +811,1.0,2240,DFSS_AgencySiteLies_2012.csv,Mary Crane League Mary Crane Center (Molade),1120 N. Lamon ,60651,2877365,,,,,,,Mary Crane League,,,,,,,,,,,www.marycrane.org,Lavetter Terry,Kathleen Pesek ,,,,,, +24,0.9999999200319775,2241,DFSS_AgencySiteLies_2012.csv,Mary Crane League Mary Crane Center (Morse),1545 W. Morse ,60626,2621390,,,,,,,Mary Crane League,,,,,,,,,,,www.marycrane.org,Lavetter Terry,Traci Medina,,,,,, +59,1.0,2242,DFSS_AgencySiteLies_2012.csv,Mary Crane League Mary Crane Center (North),2905 N. Leavitt ,60618,9388130,,,,,,,Mary Crane League,,,,,,,,,,,www.marycrane.org,Lavetter Terry,Martuice Williams ,,,,,, +57,1.0,2243,DFSS_AgencySiteLies_2012.csv,Mary Crane League Mary Crane Center (West),2820 N. Leavitt ,60618,9388130,,,,,,,Mary Crane League,,,,,,,,,,,www.marycrane.org,Lavetter Terry,Martuice Williams ,,,,,, +1243,1.0,2244,DFSS_AgencySiteLies_2012.csv,Mary Crane League Mary Crane Center (St. Martin De Porres),6423 S. Woodlawn ,60637,9388130,,,,,,,Mary Crane League,,,,,,,,,,,www.marycrane.org,Lavetter Terry,Victoria Harbin,,,,,, +69,0.9999999578531515,2245,DFSS_AgencySiteLies_2012.csv,Metropolitan Family Services Midway Children's Center,3215 W. 63rd St. ,60629,8842350,,,,,,,Metropolitan Family Services,,,,,,,,,,,www.metrofamily.org,Laurie Sedio,Guadalupe Valdine,,,,,, +226,0.9999999513330113,2246,DFSS_AgencySiteLies_2012.csv,Metropolitan Family Services Midway Head Start,6422 S. Kedzie ,60629,7374790,,,,,,,Metropolitan Family Services,,,,,,,,,,,www.metrofamily.org,Laurie Sedio,Rhonda Freeman,,,,,, +71,0.9999999513330113,2247,DFSS_AgencySiteLies_2012.csv,Metropolitan Family Services North Children's Center,3249 N Central Ave. ,60634,3713770,,,,,,,Metropolitan Family Services,,,,,,,,,,,www.metrofamily.org,Fernando Freire,Dawn Delgado,,,,,, +40,0.9999999559790524,2248,DFSS_AgencySiteLies_2012.csv,North Avenue Day Nursery North Avenue Day Nursery,2001 W. Pierce ,60622,3424499,,,,,,,North Avenue Day Nursery,,,,,,,,,,,www.nadnkids.org,Steve Koll,Steve Koll,,,,,, +174,0.9999999578531515,2249,DFSS_AgencySiteLies_2012.csv,Northwestern University Settlement House NORTHWESTERN UNIVERSITY SETTLEMENT HOUSE,1400 W. Augusta ,60622,2787471,,,,,,,Northwestern University Settlement House,,,,,,,,,,,www.nush.org,Jose Alatorre, Linda McLaren,,,,,, +324,0.999999915706303,2250,DFSS_AgencySiteLies_2012.csv,Onward Neighborhood House ABC Preschool,3800 N. Austin Avenue ,60634,6859033,,,,,,,Onward Neighborhood House,,,,,,,,,,,www.onwardhouse.org,Mario Garcia,Patricia Bentz ,,,,,, +354,0.9999999578531515,2251,DFSS_AgencySiteLies_2012.csv,Onward Neighborhood House Lee's Cuddles N Care,6100 W. North Avenue ,60639,7458054,,,,,,,Onward Neighborhood House,,,,,,,,,,,www.onwardhouse.org,Mario Garcia,Anndrella Lee ,,,,,, +813,1.0,2252,DFSS_AgencySiteLies_2012.csv,Onward Neighborhood House McKinney Early Learning Academy,5745 W Division St. ,60651,,,,,,,,Onward Neighborhood House,,,,,,,,,,,www.onwardhouse.org,Mario Garcia,,,,,,, +349,0.9999999578531515,2253,DFSS_AgencySiteLies_2012.csv,Onward Neighborhood House New Beginnings,5445 W. North Ave. ,60639,3855365,,,,,,,Onward Neighborhood House,,,,,,,,,,,www.onwardhouse.org,Mario Garcia,Verlene Vanderbilt,,,,,, +113,0.9999998488746425,2254,DFSS_AgencySiteLies_2012.csv,Onward Neighborhood House Onward Neighborhood House - Belmont/Cragin,5423 W Diversey Ave. ,60639,6223215,,,,,,,Onward Neighborhood House,,,,,,,,,,,www.onwardhouse.org,Mario Garcia,Santa Rivera,,,,,, +119,0.9999999496248808,2255,DFSS_AgencySiteLies_2012.csv,Onward Neighborhood House Onward Neighborhood House - West Town,600 N. Leavitt St. ,60612,6666726,,,,,,,Onward Neighborhood House,,,,,,,,,,,www.onwardhouse.org,Mario Garcia,Darica Charles,,,,,, +114,0.9999999026660227,2256,DFSS_AgencySiteLies_2012.csv,Onward Neighborhood House Tiny Town for Tots,5654 W. Division St. ,60651,6260048,,,,,,,Onward Neighborhood House,,,,,,,,,,,www.onwardhouse.org,Mario Garcia,Ricky Spain,,,,,, +814,1.0,2257,DFSS_AgencySiteLies_2012.csv,Salvation Army All Things Are Posible,4014 W. Chicago Ave. ,60651,4892464,,,,,,,Salvation Army,,,,,,,,,,,www.usc.salvationarmy.com,Claudia Rowland, Shelandria Galsper ,,,,,, +815,1.0,2258,DFSS_AgencySiteLies_2012.csv,Salvation Army Building Blocks,1120 W 69th St. ,60621,4882222,,,,,,,Salvation Army,,,,,,,,,,,www.usc.salvationarmy.com,Claudia Rowland,Mitchelle Redd ,,,,,, +105,0.9999999549431237,2259,DFSS_AgencySiteLies_2012.csv,Salvation Army Columbus Park,500 S. CENTRAL ,60644,9214162,,,,,,,Salvation Army,,,,,,,,,,,www.usc.salvationarmy.com,Claudia Rowland,Felice Lewis ,,,,,, +816,1.0,2260,DFSS_AgencySiteLies_2012.csv,Salvation Army Creative Little Ones,2809 W 59th St. ,60629,4762562,,,,,,,Salvation Army,,,,,,,,,,,www.usc.salvationarmy.com,Claudia Rowland,Audy Sejour,,,,,, +817,1.0,2261,DFSS_AgencySiteLies_2012.csv,Salvation Army Edsel Albert Ammons Nursery,549 E 76th St. ,60619,4837040,,,,,,,Salvation Army,,,,,,,,,,,www.usc.salvationarmy.com,Claudia Rowland,Debbie Reynolds,,,,,, +249,1.0,2262,DFSS_AgencySiteLies_2012.csv,Salvation Army FAMILY OUTREACH INITIATIVE (SAL ARMY,845 W. 69th St. ,60621,8324716,,,,,,,Salvation Army,,,,,,,,,,,www.usc.salvationarmy.com,Claudia Rowland,Rosie Mohammad ,,,,,, +17,0.9999999513330113,2263,DFSS_AgencySiteLies_2012.csv,Salvation Army Incarnation,1345 N. KARLOV ,60651,2764118,,,,,,,Salvation Army,,,,,,,,,,,www.usc.salvationarmy.com,Claudia Rowland,Zoraida Fernandini ,,,,,, +86,0.9999999549431237,2264,DFSS_AgencySiteLies_2012.csv,Salvation Army New Hope,4255 W. Division ,60651,7724908,,,,,,,Salvation Army,,,,,,,,,,,www.usc.salvationarmy.com,Claudia Rowland,Catherine Eason ,,,,,, +242,0.9999999655872422,2265,DFSS_AgencySiteLies_2012.csv,Salvation Army Red Shield,945 W. 69th St. ,60621,3583224,,,,,,,Salvation Army,,,,,,,,,,,www.usc.salvationarmy.com,Claudia Rowland,Lillie Denton,,,,,, +818,1.0,2266,DFSS_AgencySiteLies_2012.csv,Salvation Army South Shore Bible/Maranatha Head Start,1631 E. 71st St. ,60649,4937500,,,,,,,Salvation Army,,,,,,,,,,,www.usc.salvationarmy.com,Claudia Rowland,Jaqueline Carter,,,,,, +819,1.0,2267,DFSS_AgencySiteLies_2012.csv,Salvation Army Teen Parenting Program,1548 W Adams ,60607,4210327,,,,,,,Salvation Army,,,,,,,,,,,www.usc.salvationarmy.com,Claudia Rowland,Jasmin Marshall,,,,,, +145,0.9999999311744846,2268,DFSS_AgencySiteLies_2012.csv,South Central Community Services South Central Community Service,8316 S. Ellis Ave. ,60618,4830900,,,,,,,South Central Community Services,,,,,,,,,,,www.sccsinc.org,Felicia Blasingame,Marsha Hightower,,,,,, +820,1.0,2269,DFSS_AgencySiteLies_2012.csv,South East Asia Center South East Asia Center (Ainslie),1134 W. Ainslie ,60640,9897433,,,,,,,South East Asia Center,,,,,,,,,,,www.se-asiacenter.org,Peter Porr,Fe Mendoza,,,,,, +213,0.999999946687985,2270,DFSS_AgencySiteLies_2012.csv,South East Asia Center South East Asia Center (Broadway),5120 N. Broadway Ave. ,60640,9897433,,,,,,,South East Asia Center,,,,,,,,,,,www.se-asiacenter.org,Peter Porr,Loipin Chin,,,,,, +583,0.9999998967617268,2271,DFSS_AgencySiteLies_2012.csv,South East Asia Center South Shore United South East Asia Center (Foster),1112 W. Foster ,60640,9897433,,,,,,,South East Asia Center,,,,,,,,,,,www.se-asiacenter.org,Peter Porr,Tsering Ngalutsang,,,,,, +136,0.9999999513330113,2272,DFSS_AgencySiteLies_2012.csv,South Shore United Methodist South Shore United Child Care Center,7350 S. Jeffery ,60649,3244430,,,,,,,South Shore United Methodist,,,,,,,,,,,,Marcell Hooks,Marcell Hooks,,,,,, +8,0.9999999230507345,2273,DFSS_AgencySiteLies_2012.csv,Thresholds Thresholds Mothers' Project,1110 W. Belmont ,60613,5373290,,,,,,,Thresholds,,,,,,,,,,,www.thresholds.org,Ayana Kiklas,Ayana Kiklas,,,,,, +381,0.9999999578531515,2274,DFSS_AgencySiteLies_2012.csv,Trinity Resources Unlimited Inc High Mountain,919 N. Lavergne ,60651,6263997,,,,,,,Trinity Resources Unlimited Inc,,,,,,,,,,,,Marion Hayes,Marion Hayes,,,,,, +117,0.9999999538304407,2275,DFSS_AgencySiteLies_2012.csv,Trinity Resources Unlimited Inc Hope for Youth,5900 W. Iowa ,60651,6260322,,,,,,,Trinity Resources Unlimited Inc,,,,,,,,,,,,Marion Hayes,Yolonda Johnson,,,,,, +129,1.0,2276,DFSS_AgencySiteLies_2012.csv,Trinity United Church of Christ Dr. Deton J. Brooks Head Start,6921 S. Stony Island ,60649,9661603,,,,,,,Trinity United Church of Christ,,,,,,,,,,,www.tucc.org,Janet Moore,Cherie Brown,,,,,, +110,1.0,2277,DFSS_AgencySiteLies_2012.csv,Trinity United Church of Christ Dr. Jeremiah Wright Jr. Early Care and Learning Center,532 W 95th St. ,60628,9661503,,,,,,,Trinity United Church of Christ,,,,,,,,,,,www.tucc.org,Janet Moore,Ekoi Florence,,,,,, +342,0.9999999578531515,2278,DFSS_AgencySiteLies_2012.csv,Westside Holistic Family Services WESTSIDE HOLISTIC FAMILY SERVICES,4909 W. Division ,60651,9218777,,,,,,,Westside Holistic Family Services,,,,,,,,,,,,Jo Anne Anderson,Florence Merritt,,,,,, +126,0.999999915706303,2279,DFSS_AgencySiteLies_2012.csv,Woodlawn A.M.E. Church WOODLAWN AME CHURCH,6456 S. Evans ,60637,6671402,,,,,,,Woodlawn A.M.E. Church,,,,,,,,,,,www.woodlawnamechurch.org,Samara Akins,Samara Akins,,,,,, +821,1.0,2280,DFSS_AgencySiteLies_2012.csv,YMCA of Metropolitan Chicago Dr. Effie O Ellis,10 S. Kedzie ,60612,5339011,,,,,,,YMCA of Metropolitan Chicago,,,,,,,,,,,www.ymcachicago.org,Dorothy Cole-Gary,Anelyn Jablo ,,,,,, +131,0.999999946687985,2281,DFSS_AgencySiteLies_2012.csv,YMCA of Metropolitan Chicago Garfield,7 N. Homan ,60624,2653900,,,,,,,YMCA of Metropolitan Chicago,,,,,,,,,,,www.ymcachicago.org,Dorothy Cole-Gary,Paulette Hernandez ,,,,,, +49,0.9999999483808635,2282,DFSS_AgencySiteLies_2012.csv,YMCA of Metropolitan Chicago High Ridge,2424 W. Touhy ,60645,2628300,,,,,,,YMCA of Metropolitan Chicago,,,,,,,,,,,www.ymcachicago.org,Dorothy Cole-Gary,Linda Acevedo,,,,,, +822,1.0,2283,DFSS_AgencySiteLies_2012.csv,YMCA of Metropolitan Chicago Jeanne Kenney Day Care Center,7600 S. Parnell ,60620,8861216,,,,,,,YMCA of Metropolitan Chicago,,,,,,,,,,,www.ymcachicago.org,Dorothy Cole-Gary,Arlene Lewis,,,,,, +318,0.9999999578531515,2284,DFSS_AgencySiteLies_2012.csv,YMCA of Metropolitan Chicago Logan Square - First Lutheran,3500 W. Fullerton ,60647,8625960,,,,,,,YMCA of Metropolitan Chicago,,,,,,,,,,,www.ymcachicago.org,Dorothy Cole-Gary,Nilsa Ramirez ,,,,,, +248,1.0,2285,DFSS_AgencySiteLies_2012.csv,YMCA of Metropolitan Chicago Marshall,3250 W. Adams ,60624,2650145,,,,,,,YMCA of Metropolitan Chicago,,,,,,,,,,,www.ymcachicago.org,Dorothy Cole-Gary,Beverly Ross ,,,,,, +37,0.999999946687985,2286,DFSS_AgencySiteLies_2012.csv,YMCA of Metropolitan Chicago McCormick Tribune,1834 N. Lawndale ,60647,2352525,,,,,,,YMCA of Metropolitan Chicago,,,,,,,,,,,www.ymcachicago.org,Dorothy Cole-Gary,Maria Franco ,,,,,, +77,0.999999943169201,2287,DFSS_AgencySiteLies_2012.csv,YMCA of Metropolitan Chicago North Lawndale,3449 W. Arthington ,60624,6380773,,,,,,,YMCA of Metropolitan Chicago,,,,,,,,,,,www.ymcachicago.org,Dorothy Cole-Gary,Leslie Hampton ,,,,,, +54,0.999999943169201,2288,DFSS_AgencySiteLies_2012.csv,YMCA of Metropolitan Chicago Rauner,2700 S. Western Ave. ,60608,8473115,,,,,,,YMCA of Metropolitan Chicago,,,,,,,,,,,www.ymcachicago.org,Dorothy Cole-Gary,Sonya Sifuentes ,,,,,, +65,0.999999946687985,2289,DFSS_AgencySiteLies_2012.csv,YMCA of Metropolitan Chicago South Chicago,3039 E. 91st St. ,60617,7219100,,,,,,,YMCA of Metropolitan Chicago,,,,,,,,,,,www.ymcachicago.org,Dorothy Cole-Gary,Sherry Ceroomes ,,,,,, +124,1.0,2290,DFSS_AgencySiteLies_2012.csv,YMCA of Metropolitan Chicago South Side,6330 S. Stony Island ,60637,7739470,,,,,,,YMCA of Metropolitan Chicago,,,,,,,,,,,www.ymcachicago.org,Dorothy Cole-Gary,Bobbie Dickens ,,,,,, +587,0.9999999578531515,2291,DFSS_AgencySiteLies_2012.csv,YMCA of Metropolitan Chicago Wabash,3763 S. Wabash Ave. ,60653,2850020,,,,,,,YMCA of Metropolitan Chicago,,,,,,,,,,,www.ymcachicago.org,Dorothy Cole-Gary,LaVonna Loving,,,,,, +195,0.999999915706303,2292,ECE Chicago Find a School scrape.csv, A-Karrasel Nursery Sch,3030 N. Kedzie ,60618,4636151,,,,,,Avondale,,,,,,,,,,,,,CP,,,,,,, +1244,1.0,2293,ECE Chicago Find a School scrape.csv, Addams,10810 Ave. H ,60617,5356210,,,,,,East Side,,,,,,,,,,,,,PFA-REG,,,,,,, +454,0.9999999513330113,2294,ECE Chicago Find a School scrape.csv, Agassiz(Blended),2851 N. Seminary ,60657,5345725,,,,,,Lake View,,,,,,,,,,,,,PFA-REG,,,,,,, +454,0.9999999513330113,2295,ECE Chicago Find a School scrape.csv, Agassiz(Blended),2851 N. Seminary ,60657,5345725,,,,,,Lake View,,,,,,,,,,,,,TB,,,,,,, +74,1.0,2296,ECE Chicago Find a School scrape.csv, Albany Park Comm Ctr,3401 W. Ainslie ,60625,5095657,,,,,,Albany Park,,,,,,,,,,,,,CP,,,,,,, +823,1.0,2297,ECE Chicago Find a School scrape.csv, Albany Park Comm Ctr. East,5101 N. Kimball ,60625,5835111,,,,,,North Park,,,,,,,,,,,,,CP,,,,,,, +594,0.99999994,2298,ECE Chicago Find a School scrape.csv, Alcott,2625 N. Orchard ,60614,5345460,,,,,,Lincoln Park,,,,,,,,,,,,,TB,,,,,,, +356,0.99999994,2299,ECE Chicago Find a School scrape.csv, Aldridge,630 E. 131St St. ,60627,5355614,,,,,,Riverdale,,,,,,,,,,,,,HS-FD,,,,,,, +1245,1.0,2300,ECE Chicago Find a School scrape.csv, Altgeld,7007 S. Loomis ,60636,5353250,,,,,,West Englewood,,,,,,,,,,,,,HS-HD,,,,,,, +396,0.99999994,2301,ECE Chicago Find a School scrape.csv, Ariel Comm,1119 E. 46th St. ,60653,5351996,,,,,,Kenwood,,,,,,,,,,,,,PFA-REG,,,,,,, +1246,1.0,2302,ECE Chicago Find a School scrape.csv, Armour,950 W. 33rd Place ,60608,5354530,,,,,,Bridgeport,,,,,,,,,,,,,PFA-REG,,,,,,, +427,0.99999994,2303,ECE Chicago Find a School scrape.csv, Armstrong,2110 W. Greenleaf ,60645,5342150,,,,,,West Ridge,,,,,,,,,,,,,PFA-REG,,,,,,, +563,0.99999994,2304,ECE Chicago Find a School scrape.csv, Ashburn School,8300 S. St. Louis ,60652,5357860,,,,,,Ashburn,,,,,,,,,,,,,PFA-REG,,,,,,, +1247,1.0,2305,ECE Chicago Find a School scrape.csv, Attucks,5055 S. State St. ,60609,5351270,,,,,,Douglas,,,,,,,,,,,,,PFA-REG,,,,,,, +469,0.9999999513330113,2306,ECE Chicago Find a School scrape.csv, Audubon,3500 N. Hoyne ,60618,5345470,,,,,,North Center,,,,,,,,,,,,,PFA-REG TS,,,,,,, +469,0.9999999513330113,2307,ECE Chicago Find a School scrape.csv, Audubon,3500 N. Hoyne ,60618,5345470,,,,,,North Center,,,,,,,,,,,,,TB,,,,,,, +560,0.99999994,2308,ECE Chicago Find a School scrape.csv, Avalon Park,8045 S. Kenwood ,60619,5356615,,,,,,Avalon Park,,,,,,,,,,,,,PFA-REG,,,,,,, +455,0.99999994,2309,ECE Chicago Find a School scrape.csv, Avondale,2945 N. Sawyer ,60618,5345244,,,,,,Avondale,,,,,,,,,,,,,PFA-REG TS,,,,,,, +1248,1.0,2310,ECE Chicago Find a School scrape.csv, B & G Club General R.E. Wood,2950 W. 25th St ,60623,7627383,,,,,,South Lawndale,,,,,,,,,,,,,CP,,,,,,, +1249,1.0,2311,ECE Chicago Find a School scrape.csv, B & G Ida Mae Fletcher,3140 W Ogden ,60623,8475172,,,,,,North Lawndale,,,,,,,,,,,,,CP,,,,,,, +1250,1.0,2312,ECE Chicago Find a School scrape.csv, B & G James Jordan,2102 W. Monroe ,60612,4324294,,,,,,Near West Side,,,,,,,,,,,,,CP,,,,,,, +1251,1.0,2313,ECE Chicago Find a School scrape.csv, B & G John Yancey,6245 S. Wabash ,60637,3634733,,,,,,Washington Park,,,,,,,,,,,,,CP,,,,,,, +540,0.99999994,2314,ECE Chicago Find a School scrape.csv, Banneker,6656 S. Normal ,60621,5353020,,,,,,Englewood,,,,,,,,,,,,,PFA-REG,,,,,,, +390,0.99999994,2315,ECE Chicago Find a School scrape.csv, Barnard,10354 S. Charles St. ,60643,5352625,,,,,,Beverly,,,,,,,,,,,,,PFA-REG,,,,,,, +1252,1.0,2316,ECE Chicago Find a School scrape.csv, Barry,4634 W. Diversey ,60641,5343455,,,,,,Hermosa,,,,,,,,,,,,,PFA-REG TS,,,,,,, +370,0.9999999403953552,2317,ECE Chicago Find a School scrape.csv, Barton,7650 S. Wolcott Ave. ,60620,5353260,,,,,,Auburn Gresham,,,,,,,,,,,,,HS-FD,,,,,,, +398,0.99999994,2318,ECE Chicago Find a School scrape.csv, Bass,1140 W. 66th St. ,60621,5353275,,,,,,Englewood,,,,,,,,,,,,,PFA-REG,,,,,,, +330,0.9999999403953552,2319,ECE Chicago Find a School scrape.csv, Bateman,4220 N. Richmond ,60618,5345055,,,,,,Irving Park,,,,,,,,,,,,,PFA-REG,,,,,,, +533,1.0,2320,ECE Chicago Find a School scrape.csv, Beard,6445 W. Strong ,60656,5341228,,,,,,Norwood Park,,,,,,,,,,,,,PFA-REG,,,,,,, +824,1.0,2321,ECE Chicago Find a School scrape.csv, Beasley,5255 S. State St ,60609,5351230,,,,,,Washington Park,,,,,,,,,,,,,CPC-FD,,,,,,, +504,0.99999994,2322,ECE Chicago Find a School scrape.csv, Beaubien,5025 N. Laramie ,60630,5343500,,,,,,Jefferson Park,,,,,,,,,,,,,PFA-REG TS,,,,,,, +1253,1.0,2323,ECE Chicago Find a School scrape.csv, Beethoven,4421 S. State St. ,60609,5351480,,,,,,Fuller Park,,,,,,,,,,,,,HS-FD,,,,,,, +312,0.99999994,2324,ECE Chicago Find a School scrape.csv, Beidler,3151 W. Walnut ,60612,5346811,,,,,,East Garfield Park,,,,,,,,,,,,,HS-HD,,,,,,, +1254,1.0,2325,ECE Chicago Find a School scrape.csv, Belding,4207 W. Irving Park ,60641,5343590,,,,,,Irving Park,,,,,,,,,,,,,PFA-REG,,,,,,, +488,0.99999994,2326,ECE Chicago Find a School scrape.csv, Belding,4257 N. Tripp ,60641,5343590,,,,,,Irving Park,,,,,,,,,,,,,PFA-REG,,,,,,, +526,0.9999999578531515,2327,ECE Chicago Find a School scrape.csv, Belmont-Cragin,6041 W. Diversey ,60639,5343318,,,,,,Belmont Cragin,,,,,,,,,,,,,PFA-REG TS,,,,,,, +388,0.99999994,2328,ECE Chicago Find a School scrape.csv, Bennett,10115 S. Prairie ,60628,5355460,,,,,,Roseland,,,,,,,,,,,,,PFA-REG,,,,,,, +9,0.999999946687985,2329,ECE Chicago Find a School scrape.csv, Bethel New Life,1120 N. Lamon ,60651,6267760,,,,,,Austin,,,,,,,,,,,,,CP,,,,,,, +311,0.99999994,2330,ECE Chicago Find a School scrape.csv, Bethune,3030 W. Arthington ,60612,5346890,,,,,,East Garfield Park,,,,,,,,,,,,,HS-HD,,,,,,, +407,0.9999999513330113,2331,ECE Chicago Find a School scrape.csv, Blaine,1420 W. Grace ,60613,5345750,,,,,,Lake View,,,,,,,,,,,,,TB,,,,,,, +407,0.9999999513330113,2332,ECE Chicago Find a School scrape.csv, Blaine,1420 W. Grace ,60613,5345750,,,,,,Lake View,,,,,,,,,,,,,PFA-REG,,,,,,, +363,0.99999994,2333,ECE Chicago Find a School scrape.csv, Bond,7050 S. May ,60621,5353480,,,,,,Englewood,,,,,,,,,,,,,HS-HD,,,,,,, +1255,1.0,2334,ECE Chicago Find a School scrape.csv, Bontemps,1241 W. 58th St ,60636,5359175,,,,,,West Englewood,,,,,,,,,,,,,PFA-REG,,,,,,, +542,0.99999994,2335,ECE Chicago Find a School scrape.csv, Boone,6710 N. Washtenaw ,60645,5342160,,,,,,West Ridge,,,,,,,,,,,,,PFA-REG TS,,,,,,, +551,0.99999994,2336,ECE Chicago Find a School scrape.csv, Bouchet,7355 S. Jefferey Blvd. ,60649,5350501,,,,,,South Shore,,,,,,,,,,,,,PFA-REG,,,,,,, +371,0.9999999403953552,2337,ECE Chicago Find a School scrape.csv, Bradwell,7736 S. Burnhan ,60649,5356600,,,,,,South Shore,,,,,,,,,,,,,HS-HD,,,,,,, +487,0.99999994,2338,ECE Chicago Find a School scrape.csv, Brennemann,4251 N. Clarendon ,60613,5345766,,,,,,Uptown,,,,,,,,,,,,,PFA-REG,,,,,,, +449,0.99999994,2339,ECE Chicago Find a School scrape.csv, Brentano,2723 N. Fairfield ,60647,5344100,,,,,,Logan Square,,,,,,,,,,,,,PFA-REG,,,,,,, +1256,1.0,2340,ECE Chicago Find a School scrape.csv, Bridge,3800 N. New England ,60634,5343718,,,,,,Dunning,,,,,,,,,,,,,PFA-REG,,,,,,, +391,0.99999994,2341,ECE Chicago Find a School scrape.csv, Bright,10740 S. Calhoun ,60617,5356215,,,,,,South Deering,,,,,,,,,,,,,PFA-REG,,,,,,, +479,0.99999994,2342,ECE Chicago Find a School scrape.csv, Brighton Park,3825 S. Washtenaw Ave. ,60632,5357235,,,,,,Brighton Park,,,,,,,,,,,,,PFA-REG,,,,,,, +511,0.99999994,2343,ECE Chicago Find a School scrape.csv, Brown,54 N. Hermitage ,60612,5347250,,,,,,Near West Side,,,,,,,,,,,,,PFA-REG,,,,,,, +264,0.99999994,2344,ECE Chicago Find a School scrape.csv, Brown Academy,12607 S. Union ,60628,5355385,,,,,,West Pullman,,,,,,,,,,,,,HS-HD,,,,,,, +543,0.99999994,2345,ECE Chicago Find a School scrape.csv, Brownell,6741 S. Michigan ,60637,5353030,,,,,,Greater Grand Crossing,,,,,,,,,,,,,PFA-REG,,,,,,, +382,0.99999994,2346,ECE Chicago Find a School scrape.csv, Brunson,932 N. Central Av ,60651,5346025,,,,,,Austin,,,,,,,,,,,,,HS-HD,,,,,,, +447,0.99999994,2347,ECE Chicago Find a School scrape.csv, Budlong,2701 W. Foster ,60625,5342591,,,,,,Lincoln Square,,,,,,,,,,,,,PFA-REG,,,,,,, +426,0.99999994,2348,ECE Chicago Find a School scrape.csv, Burbank,2035 N. Mobile ,60639,5343000,,,,,,Belmont Cragin,,,,,,,,,,,,,PFA-REG,,,,,,, +1257,1.0,2349,ECE Chicago Find a School scrape.csv, Burke,5356 S. King Dr. ,60615,5351325,,,,,,Washington Park,,,,,,,,,,,,,HS-HD,,,,,,, +417,0.9999999513330113,2350,ECE Chicago Find a School scrape.csv, Burley,1630 W. Barry ,60657,5345475,,,,,,Lake View,,,,,,,,,,,,,PFA-REG,,,,,,, +417,0.9999999513330113,2351,ECE Chicago Find a School scrape.csv, Burley,1630 W. Barry ,60657,5345475,,,,,,Lake View,,,,,,,,,,,,,TB,,,,,,, +537,0.99999994,2352,ECE Chicago Find a School scrape.csv, Burnside,650 E. 91st Pl. ,60619,5353300,,,,,,Chatham,,,,,,,,,,,,,PFA-REG,,,,,,, +416,0.9999999578531515,2353,ECE Chicago Find a School scrape.csv, Burr,1621 W. Wabansia ,60622,5344090,,,,,,West Town,,,,,,,,,,,,,TB,,,,,,, +416,0.9999999578531515,2354,ECE Chicago Find a School scrape.csv, Burr,1621 W. Wabansia ,60622,5344090,,,,,,West Town,,,,,,,,,,,,,PFA-REG,,,,,,, +472,0.99999994,2355,ECE Chicago Find a School scrape.csv, Burroughs,3542 S. Washtenaw Ave. ,60632,5357226,,,,,,Brighton Park,,,,,,,,,,,,,PFA-REG TS,,,,,,, +569,0.99999994,2356,ECE Chicago Find a School scrape.csv, Caldwell (Blended),8546 S. Cregier ,60617,5356300,,,,,,Avalon Park,,,,,,,,,,,,,PFA-REG,,,,,,, +453,0.99999994,2357,ECE Chicago Find a School scrape.csv, Calhoun,2833 W. Adams Street ,60612,5346940,,,,,,East Garfield Park,,,,,,,,,,,,,PFA-REG,,,,,,, +262,0.99999994,2358,ECE Chicago Find a School scrape.csv, Cameron,1234 N. Monticello ,60651,5344290,,,,,,Humboldt Park,,,,,,,,,,,,,HS-HD,,,,,,, +1258,1.0,2359,ECE Chicago Find a School scrape.csv, Cardenas Modular,2406 S. Central Park Ave ,60623,5341475,,,,,,South Lawndale,,,,,,,,,,,,,HS-HD,,,,,,, +406,0.99999994,2360,ECE Chicago Find a School scrape.csv, Carnegie,1414 E. 61st Pl. ,60637,5350530,,,,,,Woodlawn,,,,,,,,,,,,,PFA-REG,,,,,,, +61,0.9999999544762006,2361,ECE Chicago Find a School scrape.csv, Carole Robertson,2929 W. 19th St. ,60623,5211600,,,,,,South Lawndale,,,,,,,,,,,,,CP,,,,,,, +61,0.9999999544762006,2362,ECE Chicago Find a School scrape.csv, Carole Robertson I/T,2929 W. 19th St. ,60623,5211600,,,,,,South Lawndale,,,,,,,,,,,,,CP,,,,,,, +81,1.0,2363,ECE Chicago Find a School scrape.csv, Carole Robertson Jubilee,3701 W. Ogden ,60623,5211680,,,,,,North Lawndale,,,,,,,,,,,,,CP,,,,,,, +81,1.0,2364,ECE Chicago Find a School scrape.csv, Carole Robertson Jubilee I/T,3701 W. Ogden ,60623,5211680,,,,,,North Lawndale,,,,,,,,,,,,,CP,,,,,,, +445,0.99999994,2365,ECE Chicago Find a School scrape.csv, Carroll/ Rosenwald Br,2541 W. 80th St ,60652,5359355,,,,,,Ashburn,,,,,,,,,,,,,PFA-REG,,,,,,, +1259,1.0,2366,ECE Chicago Find a School scrape.csv, Carson (Dual Lang.),5516 S. Maplewood ,60629,5359222,,,,,,Gage Park,,,,,,,,,,,,,HS-HD,,,,,,, +522,0.99999994,2367,ECE Chicago Find a School scrape.csv, Carter,5740 S. Michgan Ave. ,60637,5350860,,,,,,Washington Park,,,,,,,,,,,,,PFA-REG,,,,,,, +470,0.99999994,2368,ECE Chicago Find a School scrape.csv, Casals,3501 W. Potomac ,60651,5344444,,,,,,Humboldt Park,,,,,,,,,,,,,PFA-REG,,,,,,, +306,0.99999994,2369,ECE Chicago Find a School scrape.csv, Cather,2908 W. Washington ,60612,5346780,,,,,,East Garfield Park,,,,,,,,,,,,,HS-HD,,,,,,, +7,0.9999999071128699,2370,ECE Chicago Find a School scrape.csv, Catholic Charities-Cordi-Marian,1100 S. May St. ,60607,6663787,,,,,,Near West Side,,,,,,,,,,,,,CP,,,,,,, +7,0.9999999071128699,2371,ECE Chicago Find a School scrape.csv, Catholic Charities-Cordi-Marian I/T,1100 S. May St. ,60607,6663787,,,,,,Near West Side,,,,,,,,,,,,,CP,,,,,,, +111,0.9999999549431237,2372,ECE Chicago Find a School scrape.csv, Catholic Charities-Grace Mission,5332 S. Western ,60609,4761900,,,,,,Gage Park,,,,,,,,,,,,,CP,,,,,,, +19,0.9999999057567817,2373,ECE Chicago Find a School scrape.csv, Catholic Charities-Our Lady of Lourdes,1449 S. Keeler ,60623,5213126,,,,,,North Lawndale,,,,,,,,,,,,,CP,,,,,,, +19,0.9999999057567817,2374,ECE Chicago Find a School scrape.csv, Catholic Charities-Our Lady of Lourdes I/T,1449 S. Keeler ,60623,5213126,,,,,,North Lawndale,,,,,,,,,,,,,CP,,,,,,, +825,1.0,2375,ECE Chicago Find a School scrape.csv, Catholic Charities-St Mark,1041 N. Campbell ,60622,7726606,,,,,,West Town,,,,,,,,,,,,,CP,,,,,,, +1260,1.0,2376,ECE Chicago Find a School scrape.csv, Catholic Charities-St Mel Holy Ghost,4215 W. West End ,60624,5331556,,,,,,West Garfield Park,,,,,,,,,,,,,CP,,,,,,, +153,0.9999999544762006,2377,ECE Chicago Find a School scrape.csv, Centers For New Horizons Altgeld,941 E. 132nd St ,60627,4683055,,,,,,Riverdale,,,,,,,,,,,,,CP,,,,,,, +153,0.9999999513330113,2378,ECE Chicago Find a School scrape.csv, Centers For New Horizons Altgeld II,941 E. 132nd St ,60627,4683055,,,,,,Riverdale,,,,,,,,,,,,,CP,,,,,,, +826,1.0,2379,ECE Chicago Find a School scrape.csv, Centers For New Horizons E.L. Hoard ELC,3948 S. State ,60609,5362187,,,,,,Grand Boulevard,,,,,,,,,,,,,CP,,,,,,, +827,1.0,2380,ECE Chicago Find a School scrape.csv, Centers For New Horizons Ida B. Wells ELC,3641 S. Rhodes ,60653,3733640,,,,,,Douglas,,,,,,,,,,,,,CP,,,,,,, +828,1.0,2381,ECE Chicago Find a School scrape.csv, Centers For New Horizons James Pitts ELC,226 E. 43rd St ,60653,6240061,,,,,,Grand Boulevard,,,,,,,,,,,,,CP,,,,,,, +829,1.0,2382,ECE Chicago Find a School scrape.csv, Centers For New Horizons Robert Taylor,5140 S. Federal ,60609,5360510,,,,,,Washington Park,,,,,,,,,,,,,CP,,,,,,, +830,0.99999994,2383,ECE Chicago Find a School scrape.csv, Centers For New Horizons Stateway,3663 S. Wabash ,60609,3735673,,,,,,Douglas,,,,,,,,,,,,,CP,,,,,,, +121,0.9999999483808635,2384,ECE Chicago Find a School scrape.csv, Centers For New Horizons Washington Pk,6225 S. Wabash ,60637,6672065,,,,,,Washington Park,,,,,,,,,,,,,CP,,,,,,, +831,1.0,2385,ECE Chicago Find a School scrape.csv, Central Batist Bridgeport,3053 S. Normal ,60616,8425566,,,,,,Bridgeport,,,,,,,,,,,,,CP,,,,,,, +831,1.0,2386,ECE Chicago Find a School scrape.csv, Central Batist Bridgeport I/T,3053 S. Normal ,60616,8425566,,,,,,Bridgeport,,,,,,,,,,,,,CP,,,,,,, +304,0.99999994,2387,ECE Chicago Find a School scrape.csv, Chalmers,2745 W. Roosevelt Rd. ,60608,5341720,,,,,,North Lawndale,,,,,,,,,,,,,HS-HD,,,,,,, +430,0.99999994,2388,ECE Chicago Find a School scrape.csv, Chappell,2135 W. Foster ,60625,5342390,,,,,,Lincoln Square,,,,,,,,,,,,,PFA-REG,,,,,,, +286,0.99999994,2389,ECE Chicago Find a School scrape.csv, Chase,2021 N. Point St. ,60647,5344185,,,,,,Logan Square,,,,,,,,,,,,,HS-HD,,,,,,, +1261,1.0,2390,ECE Chicago Find a School scrape.csv, Chavez (Yr Round),4747 S. Marshfield ,60609,5354600,,,,,,New City,,,,,,,,,,,,,PFA-REG,,,,,,, +241,1.0,2391,ECE Chicago Find a School scrape.csv, Chesterfield Tom Thumb,9214 S. Cottage Grove ,60619,8473985,,,,,,Chatham,,,,,,,,,,,,,CP,,,,,,, +464,0.99999994,2392,ECE Chicago Find a School scrape.csv, Chicago Academy,3400 N. Austin ,60634,5343885,,,,,,Dunning,,,,,,,,,,,,,PFA-REG,,,,,,, +218,0.9999999701976776,2393,ECE Chicago Find a School scrape.csv, Chicago Child Care Society,5467 S. University ,60615,2562450,,,,,,Hyde Park,,,,,,,,,,,,,CP,,,,,,, +36,0.9999998996704326,2394,ECE Chicago Find a School scrape.csv, Chicago Commons Guadalupano,1814 S. Paulina ,60608,6663883,,,,,,Lower West Side,,,,,,,,,,,,,CP,,,,,,, +832,1.0,2395,ECE Chicago Find a School scrape.csv, Chicago Commons NEW CITY,4600 S. McDowell ,60609,3761657,,,,,,New City,,,,,,,,,,,,,CP,,,,,,, +137,1.0,2396,ECE Chicago Find a School scrape.csv, Chicago Commons NIA,744 N. Monticelo ,60624,8263770,,,,,,Humboldt Park,,,,,,,,,,,,,CP,,,,,,, +28,0.9999999774715619,2397,ECE Chicago Find a School scrape.csv, Chicago Commons PauloFreire,1653 W. 43rd St ,60609,8266260,,,,,,New City,,,,,,,,,,,,,CP,,,,,,, +26,0.999999913112046,2398,ECE Chicago Find a School scrape.csv, Chicago Commons Taylor Center,1633 N. Hamlin ,60647,2278551,,,,,,Humboldt Park,,,,,,,,,,,,,CP,,,,,,, +1262,1.0,2399,ECE Chicago Find a School scrape.csv, Chicago International Charter-Basil Campus,1824 W. Garfield Blvd. ,60609,8630652,,,,,,New City,,,,,,,,,,,,,CP,,,,,,, +1263,1.0,2400,ECE Chicago Find a School scrape.csv, Chicago State University,9501 S. King Dr. ,60628,9952556,,,,,,Roseland,,,,,,,,,,,,,CP,,,,,,, +170,0.9999999701976776,2401,ECE Chicago Find a School scrape.csv, Chicago Urban Day School,1248 W. 69th St. ,60636,4833555,,,,,,West Englewood,,,,,,,,,,,,,CP,,,,,,, +22,0.999999926999517,2402,ECE Chicago Find a School scrape.csv, Chicago Youth Centers Centro Nuestro,1501 N. Harding ,60651,2785837,,,,,,Humboldt Park,,,,,,,,,,,,,CP,,,,,,, +168,0.999999915706303,2403,ECE Chicago Find a School scrape.csv, Children's Dev Inst Morgan Pk,10928 S. Halsted ,60628,9950600,,,,,,Morgan Park,,,,,,,,,,,,,CP,,,,,,, +168,0.9999998735594545,2404,ECE Chicago Find a School scrape.csv, Children's Dev Inst Morgan Pk I/T,10928 S. Halsted ,60628,9950600,,,,,,Morgan Park,,,,,,,,,,,,,CP,,,,,,, +230,0.999999915706303,2405,ECE Chicago Find a School scrape.csv, Children's Dev Inst So Shore,7037 S. Stony Island ,60649,3633200,,,,,,South Shore,,,,,,,,,,,,,CP,,,,,,, +230,0.9999998735594545,2406,ECE Chicago Find a School scrape.csv, Children's Dev Inst So Shore I/T,7037 S. Stony Island ,60649,3633200,,,,,,South Shore,,,,,,,,,,,,,CP,,,,,,, +1264,1.0,2407,ECE Chicago Find a School scrape.csv, Children's Home Englewood Family Center,5958 S. Marshfield ,60636,4766998,,,,,,West Englewood,,,,,,,,,,,,,CP,,,,,,, +190,0.9999998735594545,2408,ECE Chicago Find a School scrape.csv, Children's Home Viva Family Center,2516 W. Division ,60602,2526313,,,,,,West Town,,,,,,,,,,,,,CP,,,,,,, +176,0.999999915706303,2409,ECE Chicago Find a School scrape.csv, Children's Place Family Center,1800 N. Humboldt ,60622,3959193,,,,,,Logan Square,,,,,,,,,,,,,CP,,,,,,, +833,1.0,2410,ECE Chicago Find a School scrape.csv, ChildServ Humboldt,4909 W. Division ,60651,8677350,,,,,,Austin,,,,,,,,,,,,,CP,,,,,,, +833,1.0,2411,ECE Chicago Find a School scrape.csv, ChildServ Lawndale,4909 W. Division ,60651,8677350,,,,,,North Lawndale,,,,,,,,,,,,,CP,,,,,,, +834,1.0,2412,ECE Chicago Find a School scrape.csv, ChildServ St. Matthew,1000 N. Orleans ,60610,9443403,,,,,,Near North Side,,,,,,,,,,,,,CP,,,,,,, +31,0.9999998053320454,2413,ECE Chicago Find a School scrape.csv, ChildServ West Englewood,1711 W. Garfield Blvd. ,60636,8677350,,,,,,West Englewood,,,,,,,,,,,,,CP,,,,,,, +835,1.0,2414,ECE Chicago Find a School scrape.csv, Chinese Amer Svc Lea 3,310 W. 24th Place ,60616,7910509,,,,,,Armour Square,,,,,,,,,,,,,CP,,,,,,, +1265,1.0,2415,ECE Chicago Find a School scrape.csv, Chipper Preschool,8225 S. Kedzie ,60652,7785757,,,,,,Ashburn,,,,,,,,,,,,,CP,,,,,,, +295,0.99999994,2416,ECE Chicago Find a School scrape.csv, Chopin,2450 W. Rice ,60622,5344080,,,,,,West Town,,,,,,,,,,,,,HS-HD,,,,,,, +836,1.0,2417,ECE Chicago Find a School scrape.csv, Christopher House Buena Park,4303 N. Kenmore ,60613,8830788,,,,,,Uptown,,,,,,,,,,,,,CP,,,,,,, +147,0.9999999026660227,2418,ECE Chicago Find a School scrape.csv, Christopher House Eastwood,850 W. Eastwood ,60640,2719403,,,,,,Uptown,,,,,,,,,,,,,CP,,,,,,, +51,0.9999999528783908,2419,ECE Chicago Find a School scrape.csv, Christopher House Greenview,2507 N. Greenview ,60614,4721083,,,,,,Lincoln Park,,,,,,,,,,,,,CP,,,,,,, +147,0.9999999513330113,2420,ECE Chicago Find a School scrape.csv, Christopher House Lakeshore,850 W. Eastwood ,60640,2719403,,,,,,Uptown,,,,,,,,,,,,,CP,,,,,,, +52,0.999999946687985,2421,ECE Chicago Find a School scrape.csv, Christopher House Logan Sq,2610 N. Francisco ,60647,2354073,,,,,,Logan Square,,,,,,,,,,,,,CP,,,,,,, +837,1.0,2422,ECE Chicago Find a School scrape.csv, Christopher House Palmer Sq,2140 N. Richmond ,60647,7728693,,,,,,Logan Square,,,,,,,,,,,,,CP,,,,,,, +98,0.9999999555733209,2423,ECE Chicago Find a School scrape.csv, Christopher House Uptown,4701 N. Winthorp ,60640,7694540,,,,,,Uptown,,,,,,,,,,,,,CP,,,,,,, +98,0.9999999180812513,2424,ECE Chicago Find a School scrape.csv, Christopher House Uptown I/T,4701 N. Winthorp ,60640,7694540,,,,,,Uptown,,,,,,,,,,,,,CP,,,,,,, +234,0.9999999578531515,2425,ECE Chicago Find a School scrape.csv, City Colleges Daley,7500 S. Pulaski ,60652,8387562,,,,,,West Lawn,,,,,,,,,,,,,CP,,,,,,, +234,0.9999999578531515,2426,ECE Chicago Find a School scrape.csv, City Colleges Daley Semester Program,7500 S. Pulaski ,60652,8387562,,,,,,West Lawn,,,,,,,,,,,,,CP,,,,,,, +1266,1.0,2427,ECE Chicago Find a School scrape.csv, City Colleges Kennedy King,6800 S. Wentworth ,60621,6025481,,,,,,Greater Grand Crossing,,,,,,,,,,,,,CP,,,,,,, +179,0.99999994,2428,ECE Chicago Find a School scrape.csv, City Colleges Malcolm X,1900 W. VanBuren ,60612,8507176,,,,,,Near West Side,,,,,,,,,,,,,CP,,,,,,, +165,0.99999994,2429,ECE Chicago Find a School scrape.csv, City Colleges Olive Harvey,10001 S. Woodlawn ,60628,2916315,,,,,,Pullman,,,,,,,,,,,,,CP,,,,,,, +169,0.99999994,2430,ECE Chicago Find a School scrape.csv, City Colleges Truman,1145 W. Wilson ,60640,9074741,,,,,,Uptown,,,,,,,,,,,,,CP,,,,,,, +291,0.99999994,2431,ECE Chicago Find a School scrape.csv, Claremont,2300 W. 64th St ,60636,5358110,,,,,,Chicago Lawn,,,,,,,,,,,,,HS-HD,,,,,,, +1267,1.0,2432,ECE Chicago Find a School scrape.csv, Clark,1045 S. Monitor Ave ,60644,5346225,,,,,,Austin,,,,,,,,,,,,,PFA-REG,,,,,,, +405,0.99999994,2433,ECE Chicago Find a School scrape.csv, Clay,13231 S.Burley ,60633,5355600,,,,,,Hegewisch,,,,,,,,,,,,,PFA-REG,,,,,,, +460,0.99999994,2434,ECE Chicago Find a School scrape.csv, Cleveland,3121 W. Byron ,60618,5345130,,,,,,Irving Park,,,,,,,,,,,,,PFA-REG,,,,,,, +1268,1.0,2435,ECE Chicago Find a School scrape.csv, Clinton,6110 N. Fairfield ,60659,5342025,,,,,,West Ridge,,,,,,,,,,,,,PFA-REG,,,,,,, +308,1.0,2436,ECE Chicago Find a School scrape.csv, Cockrell,30 E. 61St ,60637,5350650,,,,,,Washington Park,,,,,,,,,,,,,HS-HD,,,,,,, +411,0.99999994,2437,ECE Chicago Find a School scrape.csv," Colemon, Johnnie",1441 W. 119th St. ,60643,5353975,,,,,,West Pullman,,,,,,,,,,,,,PFA-REG,,,,,,, +566,0.99999994,2438,ECE Chicago Find a School scrape.csv, Coles,8441 S. Yates ,60617,5356550,,,,,,South Chicago,,,,,,,,,,,,,PFA-REG,,,,,,, +337,0.99999994,2439,ECE Chicago Find a School scrape.csv, Columbia Explorers,4520 S. Kedzie ,60632,5354050,,,,,,Brighton Park,,,,,,,,,,,,,HS-HD,,,,,,, +387,0.99999994,2440,ECE Chicago Find a School scrape.csv, Columbus,1003 N. Leavitt ,60622,5344350,,,,,,West Town,,,,,,,,,,,,,PFA-REG,,,,,,, +562,0.99999994,2441,ECE Chicago Find a School scrape.csv, Cook,8150 S. Bishop ,60620,5353315,,,,,,Auburn Gresham,,,,,,,,,,,,,PFA-REG,,,,,,, +480,0.99999994,2442,ECE Chicago Find a School scrape.csv, Coonley,4046 N. Leavitt ,60618,5345140,,,,,,North Center,,,,,,,,,,,,,PFA-REG,,,,,,, +276,0.9999999403953552,2443,ECE Chicago Find a School scrape.csv, Cooper,1624 W. 19Th St. ,60608,5347205,,,,,,Lower West Side,,,,,,,,,,,,,HS-HD,,,,,,, +444,0.99999994,2444,ECE Chicago Find a School scrape.csv, Corkery,2510 S. Kildare ,60623,5341650,,,,,,South Lawndale,,,,,,,,,,,,,HS-HD,,,,,,, +420,0.99999994,2445,ECE Chicago Find a School scrape.csv, Courtenay,1726 W. Berteau ,60613,5345790,,,,,,Lake View,,,,,,,,,,,,,PFA-REG,,,,,,, +209,0.99999994,2446,ECE Chicago Find a School scrape.csv, Creative Mansion,4745 S. Ellis ,60615,2686066,,,,,,Kenwood,,,,,,,,,,,,,CP,,,,,,, +429,0.99999994,2447,ECE Chicago Find a School scrape.csv, Crown,2128 S. St. Louis Ave ,60623,5341680,,,,,,North Lawndale,,,,,,,,,,,,,PFA-REG,,,,,,, +1269,1.0,2448,ECE Chicago Find a School scrape.csv, Cuffe,8324 S. Racine ,60620,5358250,,,,,,Auburn Gresham,,,,,,,,,,,,,PFA-REG,,,,,,, +313,0.99999994,2449,ECE Chicago Find a School scrape.csv, Curtis,32 E. 115Th St. ,60628,5355050,,,,,,Roseland,,,,,,,,,,,,,HS-HD,,,,,,, +503,0.99999994,2450,ECE Chicago Find a School scrape.csv, Daley,5024 S. Wolcott ,60609,5359091,,,,,,New City,,,,,,,,,,,,,HS-HD,,,,,,, +459,0.99999994,2451,ECE Chicago Find a School scrape.csv, Darwin,3116 W. Belden ,60647,5344110,,,,,,Logan Square,,,,,,,,,,,,,PFA-REG,,,,,,, +1270,1.0,2452,ECE Chicago Find a School scrape.csv, Davis,3014 W. 39th Pl ,60632,5354540,,,,,,Brighton Park,,,,,,,,,,,,,HS-HD,,,,,,, +477,0.99999994,2453,ECE Chicago Find a School scrape.csv, Dawes,3810 W. 81st Pl. ,60652,5352350,,,,,,Ashburn,,,,,,,,,,,,,PFA-REG,,,,,,, +404,0.99999994,2454,ECE Chicago Find a School scrape.csv, De Diego,1313 N. Claremont ,60622,5344451,,,,,,West Town,,,,,,,,,,,,,PFA-REG,,,,,,, +838,1.0,2455,ECE Chicago Find a School scrape.csv, Delano,3905 W. Wilcox ,60624,5346450,,,,,,West Garfield Park,,,,,,,,,,,,,CPC-FD,,,,,,, +1271,1.0,2456,ECE Chicago Find a School scrape.csv, Deneen,7257 S. State ,60619,5353035,,,,,,Greater Grand Crossing,,,,,,,,,,,,,HS-HD,,,,,,, +293,0.99999994,2457,ECE Chicago Find a School scrape.csv, Dett,2306 W. Maypole ,60612,5347160,,,,,,Near West Side,,,,,,,,,,,,,HS-FD,,,,,,, +468,0.99999994,2458,ECE Chicago Find a School scrape.csv, Dever,3436 N. Osceola ,60634,5343090,,,,,,Dunning,,,,,,,,,,,,,PFA-REG,,,,,,, +163,0.9999999513330113,2459,ECE Chicago Find a School scrape.csv, Dewey CPC,638 W. 54Th Pl. ,60609,5351671,,,,,,New City,,,,,,,,,,,,,CPC-HD,,,,,,, +163,0.9999999513330113,2460,ECE Chicago Find a School scrape.csv, Dewey CPC,638 W. 54Th Pl. ,60609,5351671,,,,,,New City,,,,,,,,,,,,,CPC-FD,,,,,,, +570,0.99999994,2461,ECE Chicago Find a School scrape.csv, Dirksen,8601 W. Foster ,60656,5341090,,,,,,O'Hare,,,,,,,,,,,,,PFA-REG TS,,,,,,, +483,0.9999999513330113,2462,ECE Chicago Find a School scrape.csv, Disney Magnet,4140 N. Marine Dr. ,60613,5345840,,,,,,Uptown,,,,,,,,,,,,,PFA-REG,,,,,,, +478,1.0,2463,ECE Chicago Find a School scrape.csv, Disney Magnet,3815 N. Kedvale Ave. ,60613,5345840,,,,,,Uptown,,,,,,,,,,,,,PFA-REG,,,,,,, +483,0.9999999513330113,2464,ECE Chicago Find a School scrape.csv, Disney Magnet,4140 N. Marine Dr. ,60613,5345840,,,,,,Uptown,,,,,,,,,,,,,TB,,,,,,, +478,1.0,2465,ECE Chicago Find a School scrape.csv, Disney Magnet,3815 N. Kedvale Ave. ,60613,5345840,,,,,,Uptown,,,,,,,,,,,,,TB,,,,,,, +564,0.99999994,2466,ECE Chicago Find a School scrape.csv, Dixon,8306 S. St. Lawrence ,60619,5353834,,,,,,Chatham,,,,,,,,,,,,,PFA-REG,,,,,,, +299,0.99999994,2467,ECE Chicago Find a School scrape.csv, Dodge,2651 W. Washington ,60612,5346640,,,,,,East Garfield Park,,,,,,,,,,,,,HS-FD,,,,,,, +1272,1.0,2468,ECE Chicago Find a School scrape.csv, Dominguez,3000 S. Lawndale Ave ,60623,5341600,,,,,,South Lawndale,,,,,,,,,,,,,PFA-REG,,,,,,, +347,0.99999994,2469,ECE Chicago Find a School scrape.csv, Doolittle East EC,535 E. 35th St ,60616,5351040,,,,,,Douglas,,,,,,,,,,,,,HS-HD,,,,,,, +527,0.99999994,2470,ECE Chicago Find a School scrape.csv, Dore,6108 S. Natoma ,60638,5352080,,,,,,Clearing,,,,,,,,,,,,,PFA-REG,,,,,,, +181,0.9999999578531515,2471,ECE Chicago Find a School scrape.csv, Dorsey Developmental Institute,2050 E 93th St. ,60617,3754300,,,,,,Calumet Heights,,,,,,,,,,,,,CP,,,,,,, +193,0.99999994,2472,ECE Chicago Find a School scrape.csv, Dorsey Developmental Institute III,2938 E. 91st St. ,60617,9330053,,,,,,South Chicago,,,,,,,,,,,,,CP,,,,,,, +1273,1.0,2473,ECE Chicago Find a School scrape.csv, Dubois,330 E. 133Rd St. ,60627,5355582,,,,,,Riverdale,,,,,,,,,,,,,HS-HD,,,,,,, +357,0.99999994,2474,ECE Chicago Find a School scrape.csv, Dulles,6311 S. Calumet ,60637,5350690,,,,,,Greater Grand Crossing,,,,,,,,,,,,,HS-HD,,,,,,, +1274,1.0,2475,ECE Chicago Find a School scrape.csv, Dumas,6650 S. Ellis ,60637,5350750,,,,,,Woodlawn,,,,,,,,,,,,,PFA-REG,,,,,,, +393,0.99999994,2476,ECE Chicago Find a School scrape.csv, Dunne,10845 S. Union ,60628,5355517,,,,,,Roseland,,,,,,,,,,,,,PFA-REG,,,,,,, +1275,1.0,2477,ECE Chicago Find a School scrape.csv, Durkin Park School,8445 S. Kolin ,60652,5352322,,,,,,Ashburn,,,,,,,,,,,,,PFA-REG,,,,,,, +321,0.99999994,2478,ECE Chicago Find a School scrape.csv, Dvorak,3615 W. 16Th St. ,60623,5341690,,,,,,North Lawndale,,,,,,,,,,,,,HS-HD,,,,,,, +1276,1.0,2479,ECE Chicago Find a School scrape.csv, Earle,6121 S. Hermitage ,60636,5359130,,,,,,West Englewood,,,,,,,,,,,,,PFA-REG,,,,,,, +839,1.0,2480,ECE Chicago Find a School scrape.csv, Easter Seals Gilchrist Marchman,2345 W. North Ave ,60647,2764000,,,,,,West Town,,,,,,,,,,,,,CP,,,,,,, +221,0.99999994,2481,ECE Chicago Find a School scrape.csv, Easter Seals Windy City Kids,600 W. Madison ,60648,5756550,,,,,,Near West Side,,,,,,,,,,,,,CP,,,,,,, +1277,1.0,2482,ECE Chicago Find a School scrape.csv, Eberhart,3400 W. 65th Pl ,60629,5359190,,,,,,Chicago Lawn,,,,,,,,,,,,,HS-HD,,,,,,, +550,0.99999994,2483,ECE Chicago Find a School scrape.csv, Ebinger,7350 W Pratt ,60631,5341070,,,,,,Edison Park,,,,,,,,,,,,,PFA-REG,,,,,,, +1278,1.0,2484,ECE Chicago Find a School scrape.csv, Edison,6220 N. Olcott ,60631,5340960,,,,,,Norwood Park,,,,,,,,,,,,,PFA-REG,,,,,,, +1279,1.0,2485,ECE Chicago Find a School scrape.csv, Edwards,4950 S. LaPorte ,60632,5352011,,,,,,Archer Heights,,,,,,,,,,,,,HS-HD,,,,,,, +44,0.9999999222850513,2486,ECE Chicago Find a School scrape.csv, El Hogar California,2325 S. California ,60608,5231629,,,,,,South Lawndale,,,,,,,,,,,,,CP,,,,,,, +32,0.9999999640570468,2487,ECE Chicago Find a School scrape.csv, El Hogar Loomis,1718 S. Loomis ,60608,5630662,,,,,,Lower West Side,,,,,,,,,,,,,CP,,,,,,, +32,0.9999999640570468,2488,ECE Chicago Find a School scrape.csv, El Hogar New Loomis,1718 S. Loomis ,60608,5630662,,,,,,Lower West Side,,,,,,,,,,,,,CP,,,,,,, +32,0.9999999640570468,2489,ECE Chicago Find a School scrape.csv, El Hogar New Loomis I/T,1718 S. Loomis ,60608,5630662,,,,,,Lower West Side,,,,,,,,,,,,,CP,,,,,,, +840,1.0,2490,ECE Chicago Find a School scrape.csv, El Hogar Racine,1854 S. Racine ,60608,2430011,,,,,,Lower West Side,,,,,,,,,,,,,CP,,,,,,, +840,1.0,2491,ECE Chicago Find a School scrape.csv, El Hogar Racine I/T,1854 S. Racine ,60608,2430011,,,,,,Lower West Side,,,,,,,,,,,,,CP,,,,,,, +1280,1.0,2492,ECE Chicago Find a School scrape.csv, Ellington,243 N. Parkside ,60644,5346361,,,,,,Austin,,,,,,,,,,,,,HS-HD,,,,,,, +516,0.99999994,2493,ECE Chicago Find a School scrape.csv, Emmet,5500 W. Madison ,60644,5346050,,,,,,Austin,,,,,,,,,,,,,PFA-REG,,,,,,, +473,0.99999994,2494,ECE Chicago Find a School scrape.csv, Ericson,3600 West 5th Ave ,60624,5346660,,,,,,East Garfield Park,,,,,,,,,,,,,PFA-REG,,,,,,, +841,1.0,2495,ECE Chicago Find a School scrape.csv, Erie House,1701 W. Superior ,60622,5635800,,,,,,West Town,,,,,,,,,,,,,CP,,,,,,, +841,1.0,2496,ECE Chicago Find a School scrape.csv, Erie House I/T,1701 W. Superior ,60622,5635800,,,,,,West Town,,,,,,,,,,,,,CP,,,,,,, +1281,1.0,2497,ECE Chicago Find a School scrape.csv, Esmond (Blended),1865 W. Montvale ,60643,5352650,,,,,,Morgan Park,,,,,,,,,,,,,HS-HD,,,,,,, +465,0.99999994,2498,ECE Chicago Find a School scrape.csv, Everett,3419 S. Bell Av. ,60608,5354550,,,,,,McKinley Park,,,,,,,,,,,,,PFA-REG,,,,,,, +1282,1.0,2499,ECE Chicago Find a School scrape.csv, Eyes on the Future,1329 W. Loyola ,60626,9730771,,,,,,Rogers Park,,,,,,,,,,,,,CP,,,,,,, +1283,1.0,2500,ECE Chicago Find a School scrape.csv, Eyes on the Future II,1773 W. Lunt ,60626,7628045,,,,,,Rogers Park,,,,,,,,,,,,,CP,,,,,,, +237,0.9999999578531515,2501,ECE Chicago Find a School scrape.csv, Ezzard Charles,7946 S Ashland ,60620,4870227,,,,,,Auburn Gresham,,,,,,,,,,,,,CP,,,,,,, +456,0.99999994,2502,ECE Chicago Find a School scrape.csv, Falconer,3020 N. Lamon ,60641,5343560,,,,,,Belmont Cragin,,,,,,,,,,,,,PFA-REG TS,,,,,,, +513,0.99999994,2503,ECE Chicago Find a School scrape.csv, Farnsworth,5414 N. Linder ,60630,5343535,,,,,,Jefferson Park,,,,,,,,,,,,,PFA-REG,,,,,,, +438,0.99999994,2504,ECE Chicago Find a School scrape.csv, Farragut,2345 S. Christiana ,60623,5341300,,,,,,South Lawndale,,,,,,,,,,,,,PFA-REG,,,,,,, +157,0.9999999513330113,2505,ECE Chicago Find a School scrape.csv, Ferguson CPC,1420 N. Hudson ,60610,5348580,,,,,,Near North Side,,,,,,,,,,,,,CPC-FD,,,,,,, +1284,1.0,2506,ECE Chicago Find a School scrape.csv, Finkl,2332 S. Western ,60608,5355850,,,,,,Lower West Side,,,,,,,,,,,,,HS-HD,,,,,,, +785,1.0,2507,ECE Chicago Find a School scrape.csv, Firman Community Svcs East,4910 S. King Drive ,60615,3733400,,,,,,Grand Boulevard,,,,,,,,,,,,,CP,,,,,,, +80,0.9999999578531515,2508,ECE Chicago Find a School scrape.csv, Firman Community Svcs West,37 W. 47Th St ,60609,3733400,,,,,,Grand Boulevard,,,,,,,,,,,,,CP,,,,,,, +171,0.9999999578531515,2509,ECE Chicago Find a School scrape.csv, First Congregational Church DC,1305 N. Hamlin ,60651,3848118,,,,,,Humboldt Park,,,,,,,,,,,,,CP,,,,,,, +171,0.9999999578531515,2510,ECE Chicago Find a School scrape.csv, First Congregational Church DC I/T,1305 N. Hamlin ,60651,3848118,,,,,,Humboldt Park,,,,,,,,,,,,,CP,,,,,,, +355,0.9999999403953552,2511,ECE Chicago Find a School scrape.csv, Fiske,6145 S. Ingleside ,60637,5350990,,,,,,Woodlawn,,,,,,,,,,,,,HS-HD,,,,,,, +501,0.99999994,2512,ECE Chicago Find a School scrape.csv, Fleming/ Grimes Br.,4918 W. 64Th St. ,60638,5352405,,,,,,Clearing,,,,,,,,,,,,,PFA-REG,,,,,,, +568,0.99999994,2513,ECE Chicago Find a School scrape.csv, Foster Park,8530 S. Wood St. ,60620,5352725,,,,,,Auburn Gresham,,,,,,,,,,,,,PFA-REG,,,,,,, +328,0.99999994,2514,ECE Chicago Find a School scrape.csv, Fuller,4214 S. St Lawrence ,60653,5351687,,,,,,Grand Boulevard,,,,,,,,,,,,,HS-HD,,,,,,, +346,0.99999994,2515,ECE Chicago Find a School scrape.csv, Fulton,5300 S. Hermitage ,60609,5359000,,,,,,New City,,,,,,,,,,,,,HS-HD,,,,,,, +1285,1.0,2516,ECE Chicago Find a School scrape.csv, Funston,2010 N. Central Park ,60647,5344125,,,,,,Logan Square,,,,,,,,,,,,,HS-HD,,,,,,, +192,0.999999910142617,2517,ECE Chicago Find a School scrape.csv, Gads Hill Child Care,2653 W. Ogden ,60608,5211196,,,,,,North Lawndale,,,,,,,,,,,,,CP,,,,,,, +192,0.999999910142617,2518,ECE Chicago Find a School scrape.csv, Gads Hill Child Care I/T,2653 W. Ogden ,60608,5211196,,,,,,North Lawndale,,,,,,,,,,,,,CP,,,,,,, +277,0.99999994,2519,ECE Chicago Find a School scrape.csv, Gale,1631 W. Jonquil Tr. ,60626,5342100,,,,,,Rogers Park,,,,,,,,,,,,,HS-HD,,,,,,, +1286,1.0,2520,ECE Chicago Find a School scrape.csv, Galileo Scholastic,820 S. Carpenter ,60607,5347070,,,,,,Near West Side,,,,,,,,,,,,,PFA-REG,,,,,,, +389,0.99999994,2521,ECE Chicago Find a School scrape.csv, Gallistel,10347 S. Ewing Ave. ,60617,5356540,,,,,,East Side,,,,,,,,,,,,,PFA-REG TS,,,,,,, +323,0.99999994,2522,ECE Chicago Find a School scrape.csv, Gary,3740 W. 31St St. ,60623,5341455,,,,,,South Lawndale,,,,,,,,,,,,,HS-HD,,,,,,, +576,0.99999994,2523,ECE Chicago Find a School scrape.csv, Gillespie,9301 S. State St. ,60619,5355065,,,,,,Roseland,,,,,,,,,,,,,PFA-REG,,,,,,, +436,0.99999994,2524,ECE Chicago Find a School scrape.csv, Goethe,2236 N. Rockwell ,60647,5344135,,,,,,Logan Square,,,,,,,,,,,,,PFA-REG,,,,,,, +332,0.99999994,2525,ECE Chicago Find a School scrape.csv, Goldblatt,4257 W. Adams ,60624,5346860,,,,,,West Garfield Park,,,,,,,,,,,,,HS-HD,,,,,,, +1287,1.0,2526,ECE Chicago Find a School scrape.csv, Goodlow,2040 W. 62nd St. ,60636,5359365,,,,,,West Englewood,,,,,,,,,,,,,PFA-REG,,,,,,, +344,0.99999994,2527,ECE Chicago Find a School scrape.csv, Goudy,5120 N. Winthrop ,60640,5342480,,,,,,Uptown,,,,,,,,,,,,,HS-HD,,,,,,, +1288,1.0,2528,ECE Chicago Find a School scrape.csv, Graham,745 W. 45th St. ,60609,5351308,,,,,,New City,,,,,,,,,,,,,HS-HD,,,,,,, +1289,1.0,2529,ECE Chicago Find a School scrape.csv, Gray,3730 N. Laramie ,60641,5343520,,,,,,Portage Park,,,,,,,,,,,,,PFA-REG TS,,,,,,, +565,0.99999994,2530,ECE Chicago Find a School scrape.csv, Greeley,832 W. Sheridan ,60613,5345800,,,,,,Lake View,,,,,,,,,,,,,PFA-REG,,,,,,, +476,0.99999994,2531,ECE Chicago Find a School scrape.csv, Gregory,3715 W. Polk Street ,60624,5346820,,,,,,East Garfield Park,,,,,,,,,,,,,PFA-REG,,,,,,, +379,0.99999994,2532,ECE Chicago Find a School scrape.csv, Gresham,8524 S. Green ,60620,5353350,,,,,,Auburn Gresham,,,,,,,,,,,,,HS-HD,,,,,,, +403,0.99999994,2533,ECE Chicago Find a School scrape.csv, Grissom,12810 S. Escanaba ,60633,5355380,,,,,,Hegewisch,,,,,,,,,,,,,PFA-REG,,,,,,, +364,0.99999994,2534,ECE Chicago Find a School scrape.csv, Guggenheim,7141 S. Morgan ,60621,5353587,,,,,,Englewood,,,,,,,,,,,,,HS-HD,,,,,,, +1290,1.0,2535,ECE Chicago Find a School scrape.csv, Gunsaulus Acad,4420 S. Sacramento ,60632,5357215,,,,,,Brighton Park,,,,,,,,,,,,,PFA-REG,,,,,,, +443,0.99999994,2536,ECE Chicago Find a School scrape.csv, Haines,247 W. 23rd Pl. ,60616,5349200,,,,,,Armour Square,,,,,,,,,,,,,PFA-REG,,,,,,, +528,0.99999994,2537,ECE Chicago Find a School scrape.csv, Hale,6140 S. Melvina ,60638,5352265,,,,,,Clearing,,,,,,,,,,,,,PFA-REG,,,,,,, +258,0.99999994,2538,ECE Chicago Find a School scrape.csv," Haley, Alex",11411 S. Eggleston ,60628,5355345,,,,,,Roseland,,,,,,,,,,,,,HS-HD,,,,,,, +593,0.99999994,2539,ECE Chicago Find a School scrape.csv, Hamilton,1650 W. Cornelia ,60657,5345484,,,,,,Lake View,,,,,,,,,,,,,TB,,,,,,, +1291,1.0,2540,ECE Chicago Find a School scrape.csv, Hamline (Yr Round),4652 S. Bishop ,60609,5354520,,,,,,New City,,,,,,,,,,,,,HS-HD,,,,,,, +452,0.99999994,2541,ECE Chicago Find a School scrape.csv, Hammond,2819 W. 21st Pl ,60623,5354580,,,,,,South Lawndale,,,,,,,,,,,,,PFA-REG,,,,,,, +467,0.99999994,2542,ECE Chicago Find a School scrape.csv," Hampton, Lionel",3434 W. 77th ,60652,5354030,,,,,,Ashburn,,,,,,,,,,,,,PFA-REG,,,,,,, +160,0.999999946687985,2543,ECE Chicago Find a School scrape.csv, Hansberry CPC,4055 W Arthington ,60624,5346931,,,,,,North Lawndale,,,,,,,,,,,,,CPC-FD,,,,,,, +1292,1.0,2544,ECE Chicago Find a School scrape.csv, Hanson Park,2318 N. Lorel ,60639,5342926,,,,,,Belmont Cragin,,,,,,,,,,,,,PFA-REG,,,,,,, +512,0.99999994,2545,ECE Chicago Find a School scrape.csv, Hanson Park,5411 W. Fullerton ,60639,5343100,,,,,,Belmont Cragin,,,,,,,,,,,,,PFA-REG,,,,,,, +205,0.99999994,2546,ECE Chicago Find a School scrape.csv, Happy Holiday Nursery,401 E. 111th St ,60628,8217009,,,,,,Roseland,,,,,,,,,,,,,CP,,,,,,, +414,0.99999994,2547,ECE Chicago Find a School scrape.csv, Harte,1556 E. 56th St. ,60637,5350870,,,,,,Hyde Park,,,,,,,,,,,,,PFA-REG,,,,,,, +557,0.99999994,2548,ECE Chicago Find a School scrape.csv, Harvard,7525 S. Harvard ,60620,5353045,,,,,,Greater Grand Crossing,,,,,,,,,,,,,PFA-REG,,,,,,, +496,0.99999994,2549,ECE Chicago Find a School scrape.csv, Haugan,4540 N. Hamlin ,60625,5345040,,,,,,Albany Park,,,,,,,,,,,,,PFA-REG,,,,,,, +251,0.99999994,2550,ECE Chicago Find a School scrape.csv, Hay,1018 N. Laramie ,60651,5346000,,,,,,Austin,,,,,,,,,,,,,HS-HD,,,,,,, +413,0.99999994,2551,ECE Chicago Find a School scrape.csv, Hayt,1518 W. Granville ,60660,5342040,,,,,,Edgewater,,,,,,,,,,,,,PFA-REG,,,,,,, +457,0.99999994,2552,ECE Chicago Find a School scrape.csv, Healy,3040 S. Parnell ,60616,5349170,,,,,,Bridgeport,,,,,,,,,,,,,PFA-REG,,,,,,, +1293,1.0,2553,ECE Chicago Find a School scrape.csv, Hearst,4640 S. Lamon ,60638,5352376,,,,,,Garfield Ridge,,,,,,,,,,,,,PFA-REG,,,,,,, +500,0.99999994,2554,ECE Chicago Find a School scrape.csv, Hedges,4747 S. Winchester ,60609,5357360,,,,,,New City,,,,,,,,,,,,,PFA-REG TS,,,,,,, +493,0.99999994,2555,ECE Chicago Find a School scrape.csv, Hefferan,4409 W. Wilcox St ,60624,5346192,,,,,,West Garfield Park,,,,,,,,,,,,,PFA-REG,,,,,,, +521,0.99999994,2556,ECE Chicago Find a School scrape.csv, Henderson,5650 S. Wolcott ,60636,5359080,,,,,,West Englewood,,,,,,,,,,,,,PFA-REG,,,,,,, +490,0.99999994,2557,ECE Chicago Find a School scrape.csv, Hendricks,4316 S. Princeton ,60609,5351696,,,,,,Fuller Park,,,,,,,,,,,,,PFA-REG,,,,,,, +486,0.99999994,2558,ECE Chicago Find a School scrape.csv, Henry,4250 N. St. Louis ,60618,5345060,,,,,,Irving Park,,,,,,,,,,,,,PFA-REG,,,,,,, +45,1.0,2559,ECE Chicago Find a School scrape.csv, Henry Booth House Gentry,2326 S.Dearborn ,60616,7910051,,,,,,Near South Side,,,,,,,,,,,,,CP,,,,,,, +60,0.999999915706303,2560,ECE Chicago Find a School scrape.csv, Henry Booth Near South,2929 S. Wabash ,60616,7910424,,,,,,Douglas,,,,,,,,,,,,,CP,,,,,,, +1294,1.0,2561,ECE Chicago Find a School scrape.csv, Henson (Olive),1326 S. Avers Ave ,60623,5341804,,,,,,North Lawndale,,,,,,,,,,,,,HS-HD,,,,,,, +288,0.99999994,2562,ECE Chicago Find a School scrape.csv, Herbert,2131 W. Monroe ,60612,5347806,,,,,,Near West Side,,,,,,,,,,,,,HS-HD,,,,,,, +156,0.9999999448168219,2563,ECE Chicago Find a School scrape.csv, Herzl (CPC),1401 S. Hamlin ,60623,5341751,,,,,,North Lawndale,,,,,,,,,,,,,CPC-FD,,,,,,, +462,0.99999994,2564,ECE Chicago Find a School scrape.csv, Hibbard,3244 W. Ainslie ,60625,5345191,,,,,,Albany Park,,,,,,,,,,,,,PFA-REG,,,,,,, +260,0.99999994,2565,ECE Chicago Find a School scrape.csv, Higgins,11710 S. Morgan ,60643,5355625,,,,,,West Pullman,,,,,,,,,,,,,HS-HD,,,,,,, +358,0.99999994,2566,ECE Chicago Find a School scrape.csv, Hinton,644 W. 71st Street ,60621,5353875,,,,,,Englewood,,,,,,,,,,,,,HS-FD,,,,,,, +518,0.99999994,2567,ECE Chicago Find a School scrape.csv, Hitch,5625 N. Mcvicker ,60646,5341189,,,,,,Norwood Park,,,,,,,,,,,,,PFA-REG,,,,,,, +395,0.99999994,2568,ECE Chicago Find a School scrape.csv, Holden,1104 W. 31st Street ,60608,5357200,,,,,,Bridgeport,,,,,,,,,,,,,PFA-REG,,,,,,, +384,0.99999994,2569,ECE Chicago Find a School scrape.csv, Holmes,955 W. Garfield ,60621,5359025,,,,,,Englewood,,,,,,,,,,,,,HS-HD,,,,,,, +97,0.9999999578531515,2570,ECE Chicago Find a School scrape.csv, Home of Life II,4650 W. Madison ,60644,6268655,,,,,,Austin,,,,,,,,,,,,,CP,,,,,,, +97,0.9999999578531515,2571,ECE Chicago Find a School scrape.csv, Home of Life II I/T,4650 W. Madison ,60644,6268655,,,,,,Austin,,,,,,,,,,,,,CP,,,,,,, +97,0.9999999240186883,2572,ECE Chicago Find a School scrape.csv, Home of Life Just For You,4650 W. Madison ,60644,6268655,,,,,,Austin,,,,,,,,,,,,,CP,,,,,,, +140,1.0,2573,ECE Chicago Find a School scrape.csv, Howard Area EC Center,7638 N. Paulina ,60626,2624309,,,,,,Rogers Park,,,,,,,,,,,,,CP,,,,,,, +547,0.99999994,2574,ECE Chicago Find a School scrape.csv, Howe,720 N. Lorel ,60644,5346060,,,,,,Austin,,,,,,,,,,,,,PFA-REG,,,,,,, +485,0.99999994,2575,ECE Chicago Find a School scrape.csv," Hughes, C.",4247 W. 15Th St. ,60623,5341762,,,,,,North Lawndale,,,,,,,,,,,,,PFA-REG,,,,,,, +1295,1.0,2576,ECE Chicago Find a School scrape.csv," Hughes, L.",240 W. 104th St. ,60628,5355075,,,,,,Roseland,,,,,,,,,,,,,HS-HD,,,,,,, +211,0.9999999403953552,2577,ECE Chicago Find a School scrape.csv, Hull House - Parkway,500 E. 67th St. ,60619,4931306,,,,,,Woodlawn,,,,,,,,,,,,,CP,,,,,,, +93,0.9999998992497617,2578,ECE Chicago Find a School scrape.csv, Hull House - Uptown,4520 N. Beacon ,60640,5613500,,,,,,Uptown,,,,,,,,,,,,,CP,,,,,,, +325,0.99999994,2579,ECE Chicago Find a School scrape.csv, Hurley,3849 W. 69Th St ,60629,5352068,,,,,,West Lawn,,,,,,,,,,,,,HS-HD,,,,,,, +567,0.99999994,2580,ECE Chicago Find a School scrape.csv, Inter-American,851 W. Waveland ,60657,5345490,,,,,,Lake View,,,,,,,,,,,,,PFA-REG,,,,,,, +554,0.99999994,2581,ECE Chicago Find a School scrape.csv, Irving,749 S. Oakley Blvd ,60612,5347295,,,,,,Near West Side,,,,,,,,,,,,,PFA-REG,,,,,,, +194,0.9999999578531515,2582,ECE Chicago Find a School scrape.csv, Irving Park Early Learning Ctr,3023 W. Montrose ,60618,5397422,,,,,,Irving Park,,,,,,,,,,,,,CP,,,,,,, +574,0.99999994,2583,ECE Chicago Find a School scrape.csv," Jackson,M",917 W. 88Th St. ,60620,5353341,,,,,,Auburn Gresham,,,,,,,,,,,,,PFA-REG,,,,,,, +461,0.99999994,2584,ECE Chicago Find a School scrape.csv, Jahn,3149 N. Wolcott ,60657,5345500,,,,,,Lake View,,,,,,,,,,,,,PFA-REG,,,,,,, +1296,1.0,2585,ECE Chicago Find a School scrape.csv, Jenner,1119 N. Cleveland ,60610,5348440,,,,,,Near North Side,,,,,,,,,,,,,HS-HD,,,,,,, +1297,1.0,2586,ECE Chicago Find a School scrape.csv, Jensen Schol Acad,3030 W. Harrison ,60612,5346840,,,,,,East Garfield Park,,,,,,,,,,,,,PFA-REG,,,,,,, +1298,1.0,2587,ECE Chicago Find a School scrape.csv, Johnson,1420 S. Albany ,60623,5341829,,,,,,North Lawndale,,,,,,,,,,,,,HS-HD,,,,,,, +1299,1.0,2588,ECE Chicago Find a School scrape.csv, Joplin,7931 S. Honore St. ,60620,5353425,,,,,,Auburn Gresham,,,,,,,,,,,,,PFA-REG,,,,,,, +366,0.99999994,2589,ECE Chicago Find a School scrape.csv, Jordan,7414 N. Wolcott ,60626,5342220,,,,,,Rogers Park,,,,,,,,,,,,,HS-HD,,,,,,, +279,0.99999994,2590,ECE Chicago Find a School scrape.csv, Jungman,1746 S. Miller ,60608,5347375,,,,,,Lower West Side,,,,,,,,,,,,,HS-HD,,,,,,, +434,0.99999994,2591,ECE Chicago Find a School scrape.csv, Kanoon,2233 S. Kedzie ,60623,5341736,,,,,,South Lawndale,,,,,,,,,,,,,PFA-REG,,,,,,, +1300,1.0,2592,ECE Chicago Find a School scrape.csv, Keller,3020 W. 108th St. ,60655,5352636,,,,,,Mount Greenwood,,,,,,,,,,,,,CP,,,,,,, +556,0.99999994,2593,ECE Chicago Find a School scrape.csv, Kellman Corp Comm,751 S. Sacramento Blvd ,60612,5346602,,,,,,East Garfield Park,,,,,,,,,,,,,PFA-REG,,,,,,, +186,0.9999999578531515,2594,ECE Chicago Find a School scrape.csv, Kenyatta's Day Care Center,2334 E. 75th St. ,60649,2213777,,,,,,South Shore,,,,,,,,,,,,,CP,,,,,,, +360,0.99999994,2595,ECE Chicago Find a School scrape.csv, Kershaw,6450 S. Lowe ,60621,5353050,,,,,,Englewood,,,,,,,,,,,,,HS-HD,,,,,,, +1301,1.0,2596,ECE Chicago Find a School scrape.csv, Kiddie Korner,645 W. 127th St. ,60628,8215437,,,,,,West Pullman,,,,,,,,,,,,,CP,,,,,,, +204,0.9999999578531515,2597,ECE Chicago Find a School scrape.csv," Kidwatch Plus, Inc.",3901 N. Ridgeway ,60618,5395431,,,,,,Irving Park,,,,,,,,,,,,,CP,,,,,,, +541,0.99999994,2598,ECE Chicago Find a School scrape.csv, Kilmer,6700 N. Greenview ,60626,5342115,,,,,,Rogers Park,,,,,,,,,,,,,PFA-REG,,,,,,, +552,0.99999994,2599,ECE Chicago Find a School scrape.csv, King,740 S. Campbell Ave ,60612,5347898,,,,,,Near West Side,,,,,,,,,,,,,PFA-REG,,,,,,, +519,0.99999994,2600,ECE Chicago Find a School scrape.csv, Kinzie,5625 S. Mobile ,60638,5352425,,,,,,Garfield Ridge,,,,,,,,,,,,,PFA-REG,,,,,,, +1302,1.0,2601,ECE Chicago Find a School scrape.csv, KKP - Kiddy Kare I,4444 S. Kedzie ,60632,2476642,,,,,,Brighton Park,,,,,,,,,,,,,CP,,,,,,, +1303,1.0,2602,ECE Chicago Find a School scrape.csv, KKP - Kidz Colony,6287 S. Archer ,60638,7670844,,,,,,Garfield Ridge,,,,,,,,,,,,,CP,,,,,,, +1304,1.0,2603,ECE Chicago Find a School scrape.csv, KKP - Little Learners Daycare,5923 W. 63rd St. ,60609,5815541,,,,,,Clearing,,,,,,,,,,,,,CP,,,,,,, +1305,1.0,2604,ECE Chicago Find a School scrape.csv, KKP - Little Tykes I,1711 W. 35th St. ,60609,2548396,,,,,,McKinley Park,,,,,,,,,,,,,CP,,,,,,, +1306,1.0,2605,ECE Chicago Find a School scrape.csv, KKP - Little Tykes II,1723 W. 35th St. ,60609,5791793,,,,,,McKinley Park,,,,,,,,,,,,,CP,,,,,,, +253,0.99999994,2606,ECE Chicago Find a School scrape.csv, Kohn,10414 S. State ,60628,5355489,,,,,,Roseland,,,,,,,,,,,,,HS-HD,,,,,,, +577,0.99999994,2607,ECE Chicago Find a School scrape.csv, Kozminski Com Acad,936 E. 54th St. ,60615,5350980,,,,,,Hyde Park,,,,,,,,,,,,,PFA-REG,,,,,,, +301,0.9999999403953552,2608,ECE Chicago Find a School scrape.csv, Lafayette,2714 W. Augusta Bl. ,60622,5344326,,,,,,West Town,,,,,,,,,,,,,HS-HD,,,,,,, +498,0.99999994,2609,ECE Chicago Find a School scrape.csv, Lara,4619 S. Wolcott ,60609,5354389,,,,,,New City,,,,,,,,,,,,,PFA-REG,,,,,,, +399,0.99999994,2610,ECE Chicago Find a School scrape.csv, Lasalle Lang Acad,1148 N. Honore ,60614,5344284,,,,,,Lincoln Park,,,,,,,,,,,,,PFA-REG,,,,,,, +1307,1.0,2611,ECE Chicago Find a School scrape.csv, Laurance Amour,630 S. Ashland ,60607,9426501,,,,,,Near West Side,,,,,,,,,,,,,CP,,,,,,, +268,0.99999994,2612,ECE Chicago Find a School scrape.csv, Lavizzo,138 W. 109Th St ,60628,5355300,,,,,,Roseland,,,,,,,,,,,,,HS-HD,,,,,,, +319,0.99999994,2613,ECE Chicago Find a School scrape.csv, Lawndale,3500 W. Douglas ,60623,5341635,,,,,,North Lawndale,,,,,,,,,,,,,HS-HD,,,,,,, +581,0.99999994,2614,ECE Chicago Find a School scrape.csv, Lawrence,9928 S. Crandon ,60617,5356320,,,,,,South Deering,,,,,,,,,,,,,PFA-REG,,,,,,, +534,0.99999994,2615,ECE Chicago Find a School scrape.csv, Lee,6448 S. Tripp ,60629,5352255,,,,,,West Lawn,,,,,,,,,,,,,PFA-REG,,,,,,, +507,0.99999994,2616,ECE Chicago Find a School scrape.csv, Leland,5221 W. Congress ,60644,5346340,,,,,,Austin,,,,,,,,,,,,,PFA-REG,,,,,,, +561,0.99999994,2617,ECE Chicago Find a School scrape.csv, Lenart,8101 S. LaSalle ,60620,5350040,,,,,,Chatham,,,,,,,,,,,,,PFA-REG,,,,,,, +410,0.99999994,2618,ECE Chicago Find a School scrape.csv, Lewis,1431 N. Leamington ,60651,5343060,,,,,,Austin,,,,,,,,,,,,,PFA-REG,,,,,,, +1308,1.0,2619,ECE Chicago Find a School scrape.csv, Libby,5338 S. Loomis ,60609,5359350,,,,,,New City,,,,,,,,,,,,,PFA-REG,,,,,,, +314,0.9999999403953552,2620,ECE Chicago Find a School scrape.csv, Linne,3221 N. Sacramento ,60618,5345262,,,,,,Avondale,,,,,,,,,,,,,HS-HD,,,,,,, +446,0.99999994,2621,ECE Chicago Find a School scrape.csv, Little Village,2620 S. Lawndale ,60623,5341880,,,,,,South Lawndale,,,,,,,,,,,,,HS-HD,,,,,,, +287,0.99999994,2622,ECE Chicago Find a School scrape.csv, Lloyd,2103 N. Lamon ,60639,5343070,,,,,,Belmont Cragin,,,,,,,,,,,,,HS-HD,,,,,,, +1309,1.0,2623,ECE Chicago Find a School scrape.csv, Love Learning Center,362 E. 61st St ,60637,7520243,,,,,,Washington Park,,,,,,,,,,,,,CP,,,,,,, +531,0.99999994,2624,ECE Chicago Find a School scrape.csv, Lovett,6333 W. Bloomingdale ,60639,5343130,,,,,,Austin,,,,,,,,,,,,,PFA-REG,,,,,,, +1310,1.0,2625,ECE Chicago Find a School scrape.csv, Lozano,1424 N. Cleaver ,60622,5344150,,,,,,West Town,,,,,,,,,,,,,PFA-REG,,,,,,, +177,0.9999999578531515,2626,ECE Chicago Find a School scrape.csv, Lutheran Day Nursery,1802 N. Fairfield ,60647,4864222,,,,,,Logan Square,,,,,,,,,,,,,CP,,,,,,, +842,0.99999994,2627,ECE Chicago Find a School scrape.csv, Lutheran Family Mission Day Care III,5251 W. North Ave. ,60637,6372344,,,,,,Austin,,,,,,,,,,,,,CP,,,,,,, +843,1.0,2628,ECE Chicago Find a School scrape.csv, Lutheran Family Mission Fam Cnt,4920 W Madison ,60644,9214960,,,,,,Austin,,,,,,,,,,,,,CP,,,,,,, +20,0.999999926999517,2629,ECE Chicago Find a School scrape.csv, Lutheran Social Services-North Austin,1500 N. Mason ,60651,2371930,,,,,,Austin,,,,,,,,,,,,,CP,,,,,,, +35,0.9999999578531515,2630,ECE Chicago Find a School scrape.csv, Lutheran Social Services-Roger Park,1754 W. Devon ,60660,2623366,,,,,,Rogers Park,,,,,,,,,,,,,CP,,,,,,, +101,0.9999999578531515,2631,ECE Chicago Find a School scrape.csv, Lutheran Social Services-Winthrop,4848 N. Winthrop ,60640,8783210,,,,,,Uptown,,,,,,,,,,,,,CP,,,,,,, +369,0.99999994,2632,ECE Chicago Find a School scrape.csv, Madison,7433 S. Dorchester ,60619,5350551,,,,,,South Shore,,,,,,,,,,,,,HS-HD,,,,,,, +437,0.99999994,2633,ECE Chicago Find a School scrape.csv, Marconi,230 N. Kolmar ,60624,5346210,,,,,,West Garfield Park,,,,,,,,,,,,,PFA-REG,,,,,,, +219,0.9999999733439925,2634,ECE Chicago Find a School scrape.csv, Marcy Newberry Austin Town,5610 W. Lake St. ,60644,2611505,,,,,,Austin,,,,,,,,,,,,,CP,,,,,,, +23,0.9999999483808635,2635,ECE Chicago Find a School scrape.csv, Marcy Newberry Marcy Center,1539 S. Springfield ,60623,7622300,,,,,,North Lawndale,,,,,,,,,,,,,CP,,,,,,, +182,0.999999915706303,2636,ECE Chicago Find a School scrape.csv, Marillac Social Center,212 S. Francisco Ave ,60612,7227440,,,,,,East Garfield Park,,,,,,,,,,,,,CP,,,,,,, +1311,1.0,2637,ECE Chicago Find a School scrape.csv, Marin/ Lowell,3320 W. Evergreen ,60651,5344300,,,,,,Humboldt Park,,,,,,,,,,,,,PFA-REG,,,,,,, +538,0.99999994,2638,ECE Chicago Find a School scrape.csv, Marquette,6550 S. Richmond ,60629,5359260,,,,,,Chicago Lawn,,,,,,,,,,,,,PFA-REG,,,,,,, +579,0.99999994,2639,ECE Chicago Find a School scrape.csv, Marsh,9810 S. Exchange ,60617,5356430,,,,,,South Deering,,,,,,,,,,,,,PFA-REG,,,,,,, +59,1.0,2640,ECE Chicago Find a School scrape.csv, Mary Crane,2905 N. Leavitt ,60618,3485528,,,,,,North Center,,,,,,,,,,,,,CP,,,,,,, +63,0.9999999026660227,2641,ECE Chicago Find a School scrape.csv, Mary Crane East 0-3,2974 N. Clybourn ,60618,3485528,,,,,,North Center,,,,,,,,,,,,,CP,,,,,,, +59,1.0,2642,ECE Chicago Find a School scrape.csv, Mary Crane North,2905 N. Leavitt ,60618,3485528,,,,,,North Center,,,,,,,,,,,,,CP,,,,,,, +59,1.0,2643,ECE Chicago Find a School scrape.csv, Mary Crane North 0-3,2905 N. Leavitt ,60618,3485528,,,,,,North Center,,,,,,,,,,,,,CP,,,,,,, +1312,1.0,2644,ECE Chicago Find a School scrape.csv, Mason,4216 W. 19th St. ,60623,5341530,,,,,,North Lawndale,,,,,,,,,,,,,HS-FD,,,,,,, +343,0.99999994,2645,ECE Chicago Find a School scrape.csv, May,512 S. Lavergne ,60644,5346140,,,,,,Austin,,,,,,,,,,,,,HS-HD,,,,,,, +296,0.99999994,2646,ECE Chicago Find a School scrape.csv, Mayo,249 E. 37th St. ,60653,5351260,,,,,,Douglas,,,,,,,,,,,,,HS-HD,,,,,,, +422,0.99999994,2647,ECE Chicago Find a School scrape.csv, McAuliffe,1841 N. Springfield ,60647,5344400,,,,,,Hermosa,,,,,,,,,,,,,PFA-REG,,,,,,, +240,0.99999994,2648,ECE Chicago Find a School scrape.csv, McCann's Daycare Center,8612 S. Stony Island ,60617,3757932,,,,,,Avalon Park,,,,,,,,,,,,,CP,,,,,,, +320,0.99999994,2649,ECE Chicago Find a School scrape.csv, McClellan,3527 S. Wallace ,60609,5351732,,,,,,Bridgeport,,,,,,,,,,,,,HS-HD,,,,,,, +448,0.99999994,2650,ECE Chicago Find a School scrape.csv, McCormick,2712 S. Sawyer ,60623,5357252,,,,,,South Lawndale,,,,,,,,,,,,,HS-HD,,,,,,, +1313,1.0,2651,ECE Chicago Find a School scrape.csv, McCutcheon,4846 N. Sheridan Rd ,60640,5342680,,,,,,Uptown,,,,,,,,,,,,,HS-HD,,,,,,, +270,0.99999994,2652,ECE Chicago Find a School scrape.csv, McDowell,1419 E. 89th St. ,60619,5356404,,,,,,Calumet Heights,,,,,,,,,,,,,HS-FD,,,,,,, +1314,1.0,2653,ECE Chicago Find a School scrape.csv, McKay,7059 S. Washtenaw ,60629,5359340,,,,,,Chicago Lawn,,,,,,,,,,,,,HS-HD,,,,,,, +1315,1.0,2654,ECE Chicago Find a School scrape.csv, McNair Acad Ctr,4820 W. Walton ,60651,5348980,,,,,,Austin,,,,,,,,,,,,,HS-HD,,,,,,, +339,0.9999999403953552,2655,ECE Chicago Find a School scrape.csv, McPherson,4728 N. Wolcott Ave ,60640,5342625,,,,,,Lincoln Square,,,,,,,,,,,,,HS-HD,,,,,,, +1316,1.0,2656,ECE Chicago Find a School scrape.csv, Melody,412 S. Keeler ,60624,5346850,,,,,,West Garfield Park,,,,,,,,,,,,,PFA-REG,,,,,,, +401,0.99999994,2657,ECE Chicago Find a School scrape.csv, Metcalfe,12339 S. Normal ,60628,5355590,,,,,,West Pullman,,,,,,,,,,,,,PFA-REG,,,,,,, +69,1.0,2658,ECE Chicago Find a School scrape.csv, Metropolitan Family Services,3215 W. 63rd St ,60629,7374790,,,,,,Chicago Lawn,,,,,,,,,,,,,CP,,,,,,, +69,1.0,2659,ECE Chicago Find a School scrape.csv, Metropolitan Family Services 0-3,3215 W. 63rd St ,60629,7374790,,,,,,Chicago Lawn,,,,,,,,,,,,,CP,,,,,,, +572,0.99999994,2660,ECE Chicago Find a School scrape.csv, Mireles,9000 S. Exchange ,60617,5356360,,,,,,South Chicago,,,,,,,,,,,,,PFA-REG,,,,,,, +435,0.99999994,2661,ECE Chicago Find a School scrape.csv, Mitchell,2233 W. Ohio ,60612,5347655,,,,,,West Town,,,,,,,,,,,,,PFA-REG,,,,,,, +322,0.9999999403953552,2662,ECE Chicago Find a School scrape.csv, Monroe,3651 W. Schubert ,60647,5344155,,,,,,Logan Square,,,,,,,,,,,,,HS-HD,,,,,,, +1317,1.0,2663,ECE Chicago Find a School scrape.csv, Monroe,3651 W. Shubert ,60647,5344155,,,,,,Logan Square,,,,,,,,,,,,,PFA-REG,,,,,,, +419,0.99999994,2664,ECE Chicago Find a School scrape.csv, Moos,1711 N. California ,60647,5344340,,,,,,West Town,,,,,,,,,,,,,PFA-REG,,,,,,, +376,0.99999994,2665,ECE Chicago Find a School scrape.csv, Morgan,8407 S. Kerfoot ,60620,5353366,,,,,,Auburn Gresham,,,,,,,,,,,,,HS-HD,,,,,,, +525,0.99999994,2666,ECE Chicago Find a School scrape.csv, Morrill,6011 S. Rockwell ,60629,5359288,,,,,,Chicago Lawn,,,,,,,,,,,,,PFA-REG,,,,,,, +333,0.99999994,2667,ECE Chicago Find a School scrape.csv, Morton,431 N. Troy ,60612,5346791,,,,,,Humboldt Park,,,,,,,,,,,,,HS-HD,,,,,,, +1318,1.0,2668,ECE Chicago Find a School scrape.csv, Mosaic (Portage Park),5332 W. Addison ,60641,7777411,,,,,,Portage Park,,,,,,,,,,,,,CP,,,,,,, +189,0.99999994,2669,ECE Chicago Find a School scrape.csv, Mother's Touch I,2501 W. 71St ,60629,4363177,,,,,,Chicago Lawn,,,,,,,,,,,,,CP,,,,,,, +1319,1.0,2670,ECE Chicago Find a School scrape.csv, Mother's Touch II,2547 W. 69th Street ,60629,4712532,,,,,,Chicago Lawn,,,,,,,,,,,,,CP,,,,,,, +431,0.99999994,2671,ECE Chicago Find a School scrape.csv, Mozart,2200 N. Hamlin ,60647,5344160,,,,,,Logan Square,,,,,,,,,,,,,PFA-REG TS,,,,,,, +392,0.99999994,2672,ECE Chicago Find a School scrape.csv, Mt Greenwood,10841 S. Homan ,60655,5352786,,,,,,Mount Greenwood,,,,,,,,,,,,,PFA-REG,,,,,,, +471,0.99999994,2673,ECE Chicago Find a School scrape.csv, Murphy,3539 W. Grace ,60618,5345223,,,,,,Irving Park,,,,,,,,,,,,,PFA-REG,,,,,,, +1320,1.0,2674,ECE Chicago Find a School scrape.csv, Murray Lang Acad,5335 S. Kenwood ,60615,5350585,,,,,,Hyde Park,,,,,,,,,,,,,PFA-REG,,,,,,, +340,0.99999994,2675,ECE Chicago Find a School scrape.csv, Nash,4837 W. Erie ,60644,5346125,,,,,,Austin,,,,,,,,,,,,,HS-HD,,,,,,, +1321,1.0,2676,ECE Chicago Find a School scrape.csv, National Teachers Acad,55 West Cermak ,60616,5349970,,,,,,Near South Side,,,,,,,,,,,,,HS-FD,,,,,,, +1322,1.0,2677,ECE Chicago Find a School scrape.csv, NE Ill Univ Child Care Center,5500 N. St Louis ,60625,5390570,,,,,,North Park,,,,,,,,,,,,,CP,,,,,,, +1323,1.0,2678,ECE Chicago Find a School scrape.csv, Near North Sp. Ed Ctr.,739 N. Ada St. ,60622,5347846,,,,,,West Town,,,,,,,,,,,,,CP,,,,,,, +463,0.9999999513330113,2679,ECE Chicago Find a School scrape.csv, Nettelhorst,3252 N. Broadway ,60657,5345810,,,,,,Lake View,,,,,,,,,,,,,PFA-REG,,,,,,, +463,0.9999999513330113,2680,ECE Chicago Find a School scrape.csv, Nettelhorst,3252 N. Broadway ,60657,5345810,,,,,,Lake View,,,,,,,,,,,,,TB,,,,,,, +278,0.99999994,2681,ECE Chicago Find a School scrape.csv, New Field,1707 W. Morse ,60626,5342760,,,,,,Rogers Park,,,,,,,,,,,,,HS-HD,,,,,,, +225,0.99999994,2682,ECE Chicago Find a School scrape.csv, New Hope Lutheran School,6416 S. Washtenaw ,60629,7769849,,,,,,Chicago Lawn,,,,,,,,,,,,,CP,,,,,,, +1324,1.0,2683,ECE Chicago Find a School scrape.csv, Newberry Magnet,700 W. Willow ,60614,5348000,,,,,,Lincoln Park,,,,,,,,,,,,,TB,,,,,,, +352,0.99999994,2684,ECE Chicago Find a School scrape.csv, Nicholson,6006 S. Peoria ,60621,5353285,,,,,,Englewood,,,,,,,,,,,,,HS-FD,,,,,,, +509,0.99999994,2685,ECE Chicago Find a School scrape.csv, Nightingale,5250 S. Rockwell ,60632,5359270,,,,,,Gage Park,,,,,,,,,,,,,PFA-REG,,,,,,, +428,0.99999994,2686,ECE Chicago Find a School scrape.csv, Nixon,2121 N. Keeler ,60639,5344375,,,,,,Hermosa,,,,,,,,,,,,,HS-HD,,,,,,, +1325,1.0,2687,ECE Chicago Find a School scrape.csv, NLU - Effie O. Ellis HS,10 S. Kedzie ,60612,5339011,,,,,,East Garfield Park,,,,,,,,,,,,,CP,,,,,,, +482,0.99999994,2688,ECE Chicago Find a School scrape.csv, Nobel,4127 W. Hirsch ,60651,5344365,,,,,,Humboldt Park,,,,,,,,,,,,,PFA-REG,,,,,,, +40,0.9999999559790524,2689,ECE Chicago Find a School scrape.csv, North Avenue,2001 W. Pierce St. ,60622,3424499,,,,,,West Town,,,,,,,,,,,,,CP,,,,,,, +40,0.9999999559790524,2690,ECE Chicago Find a School scrape.csv, North Avenue I/T,2001 W. Pierce St. ,60622,3424499,,,,,,West Town,,,,,,,,,,,,,CP,,,,,,, +1326,1.0,2691,ECE Chicago Find a School scrape.csv, North Kenwood Day Care Ctr.,857 E. Pershing Rd. ,60653,2682223,,,,,,Oakland,,,,,,,,,,,,,CP,,,,,,, +494,1.0,2692,ECE Chicago Find a School scrape.csv, North River,4416 N. Troy ,60625,5340590,,,,,,Albany Park,,,,,,,,,,,,,PFA-REG,,,,,,, +206,1.0,2693,ECE Chicago Find a School scrape.csv, Northwest Institute,4040 W. Division ,60651,2788261,,,,,,Humboldt Park,,,,,,,,,,,,,CP,,,,,,, +174,0.9999999578531515,2694,ECE Chicago Find a School scrape.csv, Northwestern Univ Settlement Hse.,1400 W. Augusta Blvd. ,60622,2787471,,,,,,West Town,,,,,,,,,,,,,CP,,,,,,, +523,0.99999994,2695,ECE Chicago Find a School scrape.csv, Norwood Park,5900 N. Nina ,60631,5341198,,,,,,Norwood Park,,,,,,,,,,,,,PFA-REG,,,,,,, +1327,1.0,2696,ECE Chicago Find a School scrape.csv, O'Keeffe,6941 S. Merrill ,60649,5350600,,,,,,South Shore,,,,,,,,,,,,,HS-HD,,,,,,, +361,0.99999994,2697,ECE Chicago Find a School scrape.csv, O'Toole,6550 S. Seeley ,60636,5359040,,,,,,West Englewood,,,,,,,,,,,,,HS-HD,,,,,,, +1328,1.0,2698,ECE Chicago Find a School scrape.csv, Ogden,1443 N. Ogden ,60610,5348110,,,,,,Near North Side,,,,,,,,,,,,,TB,,,,,,, +558,0.99999994,2699,ECE Chicago Find a School scrape.csv, Oglesby,7646 S. Green ,60620,5353060,,,,,,Auburn Gresham,,,,,,,,,,,,,PFA-REG,,,,,,, +539,0.99999994,2700,ECE Chicago Find a School scrape.csv, Onahan,6634 W. Raven St. ,60631,5341180,,,,,,Norwood Park,,,,,,,,,,,,,PFA-REG,,,,,,, +1329,1.0,2701,ECE Chicago Find a School scrape.csv, Onward House,600 N. Leavitt ,60612,6666729,,,,,,West Town,,,,,,,,,,,,,CP,,,,,,, +514,0.99999994,2702,ECE Chicago Find a School scrape.csv, Oriole Park,5424 N. Oketo ,60656,5341201,,,,,,Norwood Park,,,,,,,,,,,,,PFA-REG,,,,,,, +508,0.99999994,2703,ECE Chicago Find a School scrape.csv, Otis,525 N. Armour ,60622,5347665,,,,,,West Town,,,,,,,,,,,,,PFA-REG,,,,,,, +1330,1.0,2704,ECE Chicago Find a School scrape.csv, Ounce -Garfield Head Start,30 W. Garfield ,60609,3730234,,,,,,Washington Park,,,,,,,,,,,,,CP,,,,,,, +212,0.9999999403953552,2705,ECE Chicago Find a School scrape.csv, Ounce of Prev EC Center,5044 S Wabash ,60615,9242334,,,,,,Grand Boulevard,,,,,,,,,,,,,CP,,,,,,, +212,0.9999999403953552,2706,ECE Chicago Find a School scrape.csv, Ounce of Prev EC Center I/T,5044 S Wabash ,60615,9242334,,,,,,Grand Boulevard,,,,,,,,,,,,,CP,,,,,,, +162,0.9999999513330113,2707,ECE Chicago Find a School scrape.csv, Overton CPC,4935 S. Indiana ,60615,5351811,,,,,,Grand Boulevard,,,,,,,,,,,,,CPC-FD,,,,,,, +402,0.99999994,2708,ECE Chicago Find a School scrape.csv, Owens,12450 S. State St. ,60628,5355661,,,,,,West Pullman,,,,,,,,,,,,,PFA-REG,,,,,,, +505,0.99999994,2709,ECE Chicago Find a School scrape.csv, Palmer,5051 N. Kenneth ,60630,5343704,,,,,,Albany Park,,,,,,,,,,,,,PFA-REG,,,,,,, +1331,1.0,2710,ECE Chicago Find a School scrape.csv, Panda Montessori Academy,6921 N. Ridge ,60645,3386755,,,,,,Rogers Park,,,,,,,,,,,,,CP,,,,,,, +546,0.99999994,2711,ECE Chicago Find a School scrape.csv, Park Manor,7037 S. Rhodes ,60637,5353070,,,,,,Greater Grand Crossing,,,,,,,,,,,,,PFA-REG,,,,,,, +158,0.99999994,2712,ECE Chicago Find a School scrape.csv, Parker CPC,328 W. 69Th ,60621,5353853,,,,,,Englewood,,,,,,,,,,,,,CPC-FD,,,,,,, +441,0.99999994,2713,ECE Chicago Find a School scrape.csv, Parkman,245 W. 51St. St. ,60609,5351739,,,,,,Fuller Park,,,,,,,,,,,,,PFA-REG,,,,,,, +544,0.99999994,2714,ECE Chicago Find a School scrape.csv, Parkside,6938 S. East End Av. ,60649,5350940,,,,,,South Shore,,,,,,,,,,,,,PFA-REG,,,,,,, +1332,1.0,2715,ECE Chicago Find a School scrape.csv, Pathways to Learning,3416 W. 79th St. ,60652,4369244,,,,,,Ashburn,,,,,,,,,,,,,CP,,,,,,, +274,0.99999994,2716,ECE Chicago Find a School scrape.csv, Peabody,1444 W. Augusta ,60622,5344170,,,,,,West Town,,,,,,,,,,,,,HS-HD,,,,,,, +1333,1.0,2717,ECE Chicago Find a School scrape.csv, Peck,4026 W. 59th Street ,60629,5352450,,,,,,West Elsdon,,,,,,,,,,,,,TS HS-HD,,,,,,, +408,0.99999994,2718,ECE Chicago Find a School scrape.csv, Peirce,1423 W. Bryn Mawr ,60660,5342440,,,,,,Edgewater,,,,,,,,,,,,,PFA-REG,,,,,,, +1334,1.0,2719,ECE Chicago Find a School scrape.csv, Penn (Blended),1616 S. Avers ,60623,5341665,,,,,,North Lawndale,,,,,,,,,,,,,HS-HD,,,,,,, +263,0.99999994,2720,ECE Chicago Find a School scrape.csv, Perez,1241 W. 19Th St. ,60608,5347650,,,,,,Lower West Side,,,,,,,,,,,,,HS-HD,,,,,,, +458,0.99999994,2721,ECE Chicago Find a School scrape.csv, Pershing,3113 S. Rhodes ,60616,5349272,,,,,,Douglas,,,,,,,,,,,,,PFA-REG CP,,,,,,, +517,0.99999994,2722,ECE Chicago Find a School scrape.csv, Peterson,5510 N. Christiana ,60625,5345070,,,,,,North Park,,,,,,,,,,,,,PFA-REG TS,,,,,,, +252,0.99999994,2723,ECE Chicago Find a School scrape.csv, Piccolo,1040 N. Keeler ,60651,5344425,,,,,,Humboldt Park,,,,,,,,,,,,,HS-HD,,,,,,, +292,0.99999994,2724,ECE Chicago Find a School scrape.csv, Pickard,2301 W. 21st Pl. ,60608,5357280,,,,,,Lower West Side,,,,,,,,,,,,,HS-HD,,,,,,, +271,0.9999999403953552,2725,ECE Chicago Find a School scrape.csv, Pilsen,1420 W. 17Th St. ,60608,5347675,,,,,,Lower West Side,,,,,,,,,,,,,HS-HD,,,,,,, +536,0.99999994,2726,ECE Chicago Find a School scrape.csv, Pirie,650 E. 85Th St ,60619,5353435,,,,,,Chatham,,,,,,,,,,,,,PFA-REG,,,,,,, +510,0.99999994,2727,ECE Chicago Find a School scrape.csv, Portage Park,5330 .W Berteau ,60641,5343576,,,,,,Portage Park,,,,,,,,,,,,,PFA-REG,,,,,,, +418,0.99999994,2728,ECE Chicago Find a School scrape.csv, Prescott,1632 W. Wrightwood ,60614,5345505,,,,,,Lincoln Park,,,,,,,,,,,,,PFA-REG,,,,,,, +424,0.99999994,2729,ECE Chicago Find a School scrape.csv, Pritzker,2009 W. Schiller St ,60622,5344415,,,,,,West Town,,,,,,,,,,,,,PFA-REG,,,,,,, +844,1.0,2730,ECE Chicago Find a School scrape.csv, Progressive Com DC Ctr,56 E. 48th St. ,60615,9246561,,,,,,Grand Boulevard,,,,,,,,,,,,,CP,,,,,,, +499,0.99999994,2731,ECE Chicago Find a School scrape.csv, Prussing,4650 N. Menard ,60630,5343460,,,,,,Portage Park,,,,,,,,,,,,,PFA-REG,,,,,,, +433,0.99999994,2732,ECE Chicago Find a School scrape.csv, Pulaski,2230 W. Mclean ,60647,5344391,,,,,,Logan Square,,,,,,,,,,,,,PFA-REG,,,,,,, +397,0.99999994,2733,ECE Chicago Find a School scrape.csv, Pullman,11311 S. Forrestville ,60628,5355395,,,,,,Pullman,,,,,,,,,,,,,PFA-REG,,,,,,, +548,0.99999994,2734,ECE Chicago Find a School scrape.csv, Randolph,7316 S. Hoyne ,60636,5359015,,,,,,West Englewood,,,,,,,,,,,,,PFA-REG,,,,,,, +492,0.9999999513330113,2735,ECE Chicago Find a School scrape.csv, Ravenswood,4332 N. Paulina St. ,60613,5345525,,,,,,Lake View,,,,,,,,,,,,,PFA-REG,,,,,,, +492,0.9999999513330113,2736,ECE Chicago Find a School scrape.csv, Ravenswood,4332 N. Paulina St. ,60613,5345525,,,,,,Lake View,,,,,,,,,,,,,PFA-REG,,,,,,, +210,0.99999994,2737,ECE Chicago Find a School scrape.csv, Ravenswood Community CCC,4908 N. Damen ,60625,2714495,,,,,,Lincoln Square,,,,,,,,,,,,,CP,,,,,,, +520,0.9999999513330113,2738,ECE Chicago Find a School scrape.csv, Ray,5631 S Kimbark ,60637,5350970,,,,,,Hyde Park,,,,,,,,,,,,,TB,,,,,,, +520,0.9999999513330113,2739,ECE Chicago Find a School scrape.csv, Ray,5631 S Kimbark ,60637,5350970,,,,,,Hyde Park,,,,,,,,,,,,,PFA-REG,,,,,,, +1335,1.0,2740,ECE Chicago Find a School scrape.csv, Reavis (Blended),834 E. 50Th St. ,60615,5351060,,,,,,Kenwood,,,,,,,,,,,,,HS-HD,,,,,,, +475,0.99999994,2741,ECE Chicago Find a School scrape.csv, Reilly,3650 W. School ,60618,5345250,,,,,,Avondale,,,,,,,,,,,,,PFA-REG TB,,,,,,, +466,0.99999994,2742,ECE Chicago Find a School scrape.csv, Reinberg,3425 N. Major ,60634,5343465,,,,,,Portage Park,,,,,,,,,,,,,PFA-REG,,,,,,, +250,0.99999994,2743,ECE Chicago Find a School scrape.csv, Revere,1010 E. 72nd St. ,60619,5350618,,,,,,Greater Grand Crossing,,,,,,,,,,,,,HS-HD,,,,,,, +331,0.99999994,2744,ECE Chicago Find a School scrape.csv, Robinson,4225 S. Lake Park ,60653,5351777,,,,,,Oakland,,,,,,,,,,,,,HS-HD,,,,,,, +549,0.99999994,2745,ECE Chicago Find a School scrape.csv, Rogers,7345 N. Washtenaw ,60645,5342125,,,,,,West Ridge,,,,,,,,,,,,,PFA-REG TS,,,,,,, +394,0.99999994,2746,ECE Chicago Find a School scrape.csv, Rudolph,110 N Paulina ,60612,5347460,,,,,,Near West Side,,,,,,,,,,,,,PFA-FD,,,,,,, +373,0.99999994,2747,ECE Chicago Find a School scrape.csv, Ruggles,7831 S. Prairie ,60619,5353085,,,,,,Greater Grand Crossing,,,,,,,,,,,,,HS-HD,,,,,,, +440,0.99999994,2748,ECE Chicago Find a School scrape.csv, Ruiz,2410 S. Leavitt ,60608,5354825,,,,,,Lower West Side,,,,,,,,,,,,,PFA-REG,,,,,,, +380,0.99999994,2749,ECE Chicago Find a School scrape.csv, Ryder,8716 S. Wallace ,60620,5353843,,,,,,Auburn Gresham,,,,,,,,,,,,,HS-HD,,,,,,, +535,0.99999994,2750,ECE Chicago Find a School scrape.csv, Ryerson,646 N. Lawndale ,60624,5346700,,,,,,Humboldt Park,,,,,,,,,,,,,HS-HD,,,,,,, +415,0.99999994,2751,ECE Chicago Find a School scrape.csv, Salazar,160 W. Wendell ,60610,5348310,,,,,,Near North Side,,,,,,,,,,,,,PFA-FD,,,,,,, +105,0.9999999549431237,2752,ECE Chicago Find a School scrape.csv, Salvation Army Columbus Park,500 S. Central ,60644,9214162,,,,,,Austin,,,,,,,,,,,,,CP,,,,,,, +1336,1.0,2753,ECE Chicago Find a School scrape.csv, Salvation Army La Villita,3621 W. 24th St. ,60623,7332355,,,,,,South Lawndale,,,,,,,,,,,,,CP,,,,,,, +1337,1.0,2754,ECE Chicago Find a School scrape.csv, Salvation Army Lawn,5900 S. Spaulding ,60629,7332533,,,,,,Chicago Lawn,,,,,,,,,,,,,CP,,,,,,, +86,0.9999999549431237,2755,ECE Chicago Find a School scrape.csv, Salvation Army New Hope,4255 W. Division ,60651,7724908,,,,,,Humboldt Park,,,,,,,,,,,,,CP,,,,,,, +1338,1.0,2756,ECE Chicago Find a School scrape.csv, Salvation Army Red Shield,69th and Sangamon ,60621,7332533,,,,,,West Englewood,,,,,,,,,,,,,CP,,,,,,, +845,1.0,2757,ECE Chicago Find a School scrape.csv, Salvation Army Shiloah,9211 S. Justine ,60620,8814142,,,,,,Washington Heights,,,,,,,,,,,,,CP,,,,,,, +0,0.9999999474336443,2758,ECE Chicago Find a School scrape.csv, Salvation Army Temple,1 N. Ogden ,60607,2262649,,,,,,Near West Side,,,,,,,,,,,,,CP,,,,,,, +1339,1.0,2759,ECE Chicago Find a School scrape.csv, Sandoval,5534 S. St Louis ,60629,5350457,,,,,,Gage Park,,,,,,,,,,,,,HS-HD,,,,,,, +305,0.99999994,2760,ECE Chicago Find a School scrape.csv, Saucedo,2850 W. 24Th Blvd ,60623,5341770,,,,,,South Lawndale,,,,,,,,,,,,,HS-HD,,,,,,, +423,0.99999994,2761,ECE Chicago Find a School scrape.csv, Sayre Lang Acad,1850 N. Newland ,60635,5343351,,,,,,Austin,,,,,,,,,,,,,PFA-REG,,,,,,, +484,0.99999994,2762,ECE Chicago Find a School scrape.csv, Scammon,4201 W. Henderson ,60641,5343475,,,,,,Irving Park,,,,,,,,,,,,,PFA-REG,,,,,,, +578,0.99999994,2763,ECE Chicago Find a School scrape.csv, Schmid,9755 S. Greenwood ,60628,5356235,,,,,,Pullman,,,,,,,,,,,,,PFA-REG,,,,,,, +450,0.99999994,2764,ECE Chicago Find a School scrape.csv, Schubert,2727 N. Long ,60639,5343080,,,,,,Belmont Cragin,,,,,,,,,,,,,PFA-REG TS,,,,,,, +497,0.99999994,2765,ECE Chicago Find a School scrape.csv, Seward,4600 S. Hermitage ,60609,5354890,,,,,,New City,,,,,,,,,,,,,HS-HD,,,,,,, +353,0.9999999,2766,ECE Chicago Find a School scrape.csv," Sexton, A .O.",6020 S. Langley ,60637,5350640,,,,,,Woodlawn,,,,,,,,,,,,,HS-HD,,,,,,, +386,0.99999994,2767,ECE Chicago Find a School scrape.csv, Sherman,1000 W. 52nd St. ,60609,5351757,,,,,,New City,,,,,,,,,,,,,PFA-REG,,,,,,, +442,0.99999994,2768,ECE Chicago Find a School scrape.csv, Sherwood (Blended),245 W. 57Th St. ,60621,5350829,,,,,,Englewood,,,,,,,,,,,,,HS-HD,,,,,,, +1340,1.0,2769,ECE Chicago Find a School scrape.csv, Shields,4250 S. Rockwell ,60632,5357285,,,,,,Brighton Park,,,,,,,,,,,,,HS-HD,,,,,,, +412,0.99999994,2770,ECE Chicago Find a School scrape.csv, Shoop,1460 W. 112Th St. ,60643,5352715,,,,,,Morgan Park,,,,,,,,,,,,,PFA-REG,,,,,,, +592,0.99999994,2771,ECE Chicago Find a School scrape.csv, Skinner,111 S. Throop ,60607,5347790,,,,,,Near West Side,,,,,,,,,,,,,TB,,,,,,, +166,0.99999994,2772,ECE Chicago Find a School scrape.csv, Small Stride Academy,10317 S. Western ,60643,2390040,,,,,,Beverly,,,,,,,,,,,,,CP,,,,,,, +553,0.99999994,2773,ECE Chicago Find a School scrape.csv, Smith,744 E. 103rd St. ,60628,5355689,,,,,,Pullman,,,,,,,,,,,,,PFA-REG,,,,,,, +489,0.99999994,2774,ECE Chicago Find a School scrape.csv, Smyser,4310 N. Melvina ,60634,5343711,,,,,,Portage Park,,,,,,,,,,,,,PFA-REG TS,,,,,,, +529,0.99999994,2775,ECE Chicago Find a School scrape.csv, Solomon,6206 N. Hamlin ,60659,5345226,,,,,,North Park,,,,,,,,,,,,,PFA-REG,,,,,,, +261,0.99999994,2776,ECE Chicago Find a School scrape.csv, Songhai,11725 S. Perry ,60628,5355547,,,,,,West Pullman,,,,,,,,,,,,,HS-HD,,,,,,, +145,0.9999999089524012,2777,ECE Chicago Find a School scrape.csv, South Central Holistic Pre-K,8316 S. Ellis ,60619,4830900,,,,,,Chatham,,,,,,,,,,,,,CP,,,,,,, +820,1.0,2778,ECE Chicago Find a School scrape.csv, South East Asia Ainslie,1134 W. Ainslie St ,60640,9896927,,,,,,Uptown,,,,,,,,,,,,,CP,,,,,,, +213,0.999999915706303,2779,ECE Chicago Find a School scrape.csv, South East Asia Com Broadway,5120 N. Broadway ,60640,9890960,,,,,,Uptown,,,,,,,,,,,,,CP,,,,,,, +239,0.9999999655872422,2780,ECE Chicago Find a School scrape.csv, South Harper 0-3,8358 S. Stony Island ,60617,7340303,,,,,,Avalon Park,,,,,,,,,,,,,CP,,,,,,, +239,0.9999999655872422,2781,ECE Chicago Find a School scrape.csv, South Harper Montessori Sch,8358 S. Stony Island ,60617,7340303,,,,,,Avalon Park,,,,,,,,,,,,,CP,,,,,,, +1341,1.0,2782,ECE Chicago Find a School scrape.csv, South Loop,1915 S. Federal ,60605,5349066,,,,,,Near South Side,,,,,,,,,,,,,TB,,,,,,, +1342,1.0,2783,ECE Chicago Find a School scrape.csv, South Shore Academy,1415 E. 70Th St. ,60637,5348690,,,,,,South Shore,,,,,,,,,,,,,PFA-REG,,,,,,, +289,0.99999994,2784,ECE Chicago Find a School scrape.csv, Spencer,214 N. Lavergne ,60644,5346150,,,,,,Austin,,,,,,,,,,,,,HS-HD,,,,,,, +439,0.99999994,2785,ECE Chicago Find a School scrape.csv, Spry,2400 S. Marshall Bl ,60623,5341700,,,,,,South Lawndale,,,,,,,,,,,,,PFA-REG,,,,,,, +75,0.9999999076608814,2786,ECE Chicago Find a School scrape.csv, St Augustine - Flamboyan,3401 W. McLean Ave. ,60647,2763423,,,,,,Logan Square,,,,,,,,,,,,,CP,,,,,,, +53,0.9999999287588233,2787,ECE Chicago Find a School scrape.csv, St Augustine - Nayarit HS,2610 W. 25th Pl. ,60608,8783653,,,,,,South Lawndale,,,,,,,,,,,,,CP,,,,,,, +172,0.99999994,2788,ECE Chicago Find a School scrape.csv, St Augustine College - Canillatas,1333-45 W. Argyle ,60640,8783231,,,,,,Uptown,,,,,,,,,,,,,CP,,,,,,, +183,0.9999999311744846,2789,ECE Chicago Find a School scrape.csv, St Vincent Depaul,2145 N. Halsted ,60614,9436776,,,,,,Lincoln Park,,,,,,,,,,,,,CP,,,,,,, +183,0.9999999311744846,2790,ECE Chicago Find a School scrape.csv, St Vincent Depaul I/T,2145 N. Halsted ,60614,9436776,,,,,,Lincoln Park,,,,,,,,,,,,,CP,,,,,,, +94,0.9999998807907104,2791,ECE Chicago Find a School scrape.csv, St. Paul-Chaney Ford Child Care,4526 S. Wabash ,60653,2858721,,,,,,Grand Boulevard,,,,,,,,,,,,,CP,,,,,,, +368,0.99999994,2792,ECE Chicago Find a School scrape.csv, Stagg,7424 S. Morgan ,60621,5353565,,,,,,Englewood,,,,,,,,,,,,,HS-HD,,,,,,, +559,0.99999994,2793,ECE Chicago Find a School scrape.csv, Stevenson,8010 S. Kostner ,60652,5352280,,,,,,Ashburn,,,,,,,,,,,,,PFA-REG,,,,,,, +338,0.99999994,2794,ECE Chicago Find a School scrape.csv, Stewart,4525 N. Kenmore ,60640,5342640,,,,,,Uptown,,,,,,,,,,,,,HS-HD,,,,,,, +555,0.99999994,2795,ECE Chicago Find a School scrape.csv, Stock,7507 W. Birchwood ,60631,5341215,,,,,,Edison Park,,,,,,,,,,,,,PFA-REG TS,,,,,,, +335,0.9999999403953552,2796,ECE Chicago Find a School scrape.csv, Stockton CPC Br.,4425 N. Magnolia Ave ,60640,5342510,,,,,,Uptown,,,,,,,,,,,,,HS-HD,,,,,,, +1343,1.0,2797,ECE Chicago Find a School scrape.csv, Stowe (Blended),3444 W. Wabansia ,60647,5344175,,,,,,Humboldt Park,,,,,,,,,,,,,HS-HD,,,,,,, +1344,1.0,2798,ECE Chicago Find a School scrape.csv, Sullivan,8255 S. Houston ,60617,5356585,,,,,,South Chicago,,,,,,,,,,,,,PFA-REG,,,,,,, +491,0.99999994,2799,ECE Chicago Find a School scrape.csv, Sumner,4320 W. Fifth Ave ,60624,5346730,,,,,,West Garfield Park,,,,,,,,,,,,,PFA-REG,,,,,,, +524,0.99999994,2800,ECE Chicago Find a School scrape.csv, Swift,5900 N. Winthrop ,60660,5342695,,,,,,Edgewater,,,,,,,,,,,,,PFA-REG,,,,,,, +421,0.99999994,2801,ECE Chicago Find a School scrape.csv, Talcott,1840 W. Ohio ,60622,5347130,,,,,,West Town,,,,,,,,,,,,,PFA-REG,,,,,,, +515,0.99999994,2802,ECE Chicago Find a School scrape.csv, Talman,5450 S. Talman ,60632,5357850,,,,,,Gage Park,,,,,,,,,,,,,PFA-REG,,,,,,, +1345,1.0,2803,ECE Chicago Find a School scrape.csv, Tanner (Blended),7350 S. Evans ,60619,5353870,,,,,,Greater Grand Crossing,,,,,,,,,,,,,HS-HD,,,,,,, +580,0.99999994,2804,ECE Chicago Find a School scrape.csv, Taylor,9912 S. Avenue H ,60617,5356240,,,,,,East Side,,,,,,,,,,,,,PFA-REG,,,,,,, +191,0.99999994,2805,ECE Chicago Find a School scrape.csv, Teddy Bear 1,2649 W. 51st St ,60632,4760700,,,,,,Gage Park,,,,,,,,,,,,,CP,,,,,,, +1346,1.0,2806,ECE Chicago Find a School scrape.csv, Teddy Bear 2,3800 W. 84th Street ,60652,2842141,,,,,,Ashburn,,,,,,,,,,,,,CP,,,,,,, +224,0.99999994,2807,ECE Chicago Find a School scrape.csv, Teddy Bear 3,6401 S. Pulaski ,60629,2842292,,,,,,West Lawn,,,,,,,,,,,,,CP,,,,,,, +214,0.99999994,2808,ECE Chicago Find a School scrape.csv, Teddy Bear 5,5160 S. Pulaski ,60632,2847030,,,,,,West Elsdon,,,,,,,,,,,,,CP,,,,,,, +1347,1.0,2809,ECE Chicago Find a School scrape.csv, Teddy Bear VI,150 S. Wacker ,60606,6412327,,,,,,Loop,,,,,,,,,,,,,CP,,,,,,, +238,0.99999994,2810,ECE Chicago Find a School scrape.csv, Terry Town Nursery School,817 N. Hamlin ,60651,4894271,,,,,,Humboldt Park,,,,,,,,,,,,,CP,,,,,,, +571,0.99999994,2811,ECE Chicago Find a School scrape.csv," Thorp, J.N.",8914 S. Buffalo ,60617,5356250,,,,,,South Chicago,,,,,,,,,,,,,HS-HD,,,,,,, +8,0.9999999513330113,2812,ECE Chicago Find a School scrape.csv, Thresholds Mothers' Project,1110 W. Belmont ,60657,4720328,,,,,,Lake View,,,,,,,,,,,,,CP,,,,,,, +8,0.9999999513330113,2813,ECE Chicago Find a School scrape.csv, Thresholds Mothers' Project I/T,1110 W. Belmont ,60657,4720328,,,,,,Lake View,,,,,,,,,,,,,CP,,,,,,, +432,0.99999994,2814,ECE Chicago Find a School scrape.csv, Tilton,223 N. Keeler Av. ,60624,5346746,,,,,,West Garfield Park,,,,,,,,,,,,,PFA-REG,,,,,,, +1348,1.0,2815,ECE Chicago Find a School scrape.csv, Tiny Tot Villa,8121 S. King Drive ,60619,4836521,,,,,,Chatham,,,,,,,,,,,,,CP,,,,,,, +129,0.9999999026660227,2816,ECE Chicago Find a School scrape.csv, Trinity UCC - Denton Brooks,6921 S. Stony Island ,60649,9552818,,,,,,South Shore,,,,,,,,,,,,,CP,,,,,,, +506,0.99999994,2817,ECE Chicago Find a School scrape.csv, Trumbull,5200 N. Ashland ,60640,5342430,,,,,,Edgewater,,,,,,,,,,,,,PFA-REG,,,,,,, +1349,1.0,2818,ECE Chicago Find a School scrape.csv, Twain,5134 S. Lotus Ave ,60638,5352290,,,,,,Garfield Ridge,,,,,,,,,,,,,PFA-REG,,,,,,, +232,0.9999999578531515,2819,ECE Chicago Find a School scrape.csv, UIC Children's Cent I East,728 W. Roosevelt Rd ,60607,4135331,,,,,,Near West Side,,,,,,,,,,,,,CP,,,,,,, +180,0.99999994,2820,ECE Chicago Find a School scrape.csv, UIC Children's Cent II West,1919 W. Taylor ,60612,4135326,,,,,,Near West Side,,,,,,,,,,,,,CP,,,,,,, +1350,1.0,2821,ECE Chicago Find a School scrape.csv," Vick, Barbara Ctr.",2554 W. 113Th St ,60655,5352671,,,,,,Morgan Park,,,,,,,,,,,,,PFA-REG TS,,,,,,, +502,0.99999994,2822,ECE Chicago Find a School scrape.csv, Volta,4950 N. Avers ,60625,5345080,,,,,,Albany Park,,,,,,,,,,,,,PFA-REG,,,,,,, +155,0.9999999578531515,2823,ECE Chicago Find a School scrape.csv, Von Humboldt CPC,1345 N. Rockwell ,60622,5344668,,,,,,West Town,,,,,,,,,,,,,CPC-FD,,,,,,, +532,0.99999994,2824,ECE Chicago Find a School scrape.csv, Wadsworth,6420 S. University ,60637,5350730,,,,,,Woodlawn,,,,,,,,,,,,,PFA-REG PFA-FD,,,,,,, +425,0.99999994,2825,ECE Chicago Find a School scrape.csv, Walsh,2015 S. Peoria ,60608,5347950,,,,,,Lower West Side,,,,,,,,,,,,,PFA-REG,,,,,,, +1351,1.0,2826,ECE Chicago Find a School scrape.csv, Ward,2701 S. Shields ,60616,5349050,,,,,,Armour Square,,,,,,,,,,,,,PFA-REG,,,,,,, +327,0.99999994,2827,ECE Chicago Find a School scrape.csv," Ward, Laura",410 N. Monticello ,60624,5346440,,,,,,Humboldt Park,,,,,,,,,,,,,HS-HD,,,,,,, +575,0.99999994,2828,ECE Chicago Find a School scrape.csv, Warren,9239 S. Jeffery ,60617,5356625,,,,,,Calumet Heights,,,,,,,,,,,,,PFA-REG,,,,,,, +474,0.99999994,2829,ECE Chicago Find a School scrape.csv, Washington G.,3611 E. 114Th St. ,60617,5355010,,,,,,East Side,,,,,,,,,,,,,PFA-REG,,,,,,, +573,0.99999994,2830,ECE Chicago Find a School scrape.csv," Washington, H.",9130 S. University ,60617,5356225,,,,,,Burnside,,,,,,,,,,,,,PFA-REG,,,,,,, +495,0.9999999513330113,2831,ECE Chicago Find a School scrape.csv, Waters,4540 N. Campbell ,60625,5345090,,,,,,Lincoln Square,,,,,,,,,,,,,PFA-REG,,,,,,, +495,0.9999999513330113,2832,ECE Chicago Find a School scrape.csv, Waters,4540 N. Campbell ,60625,5345090,,,,,,Lincoln Square,,,,,,,,,,,,,TB,,,,,,, +545,0.99999994,2833,ECE Chicago Find a School scrape.csv, Wentworth,6950 S. Sangamon ,60621,5353394,,,,,,Englewood,,,,,,,,,,,,,PFA-REG,,,,,,, +409,0.99999994,2834,ECE Chicago Find a School scrape.csv, West Park Acad,1425 N. Tripp ,60651,5344940,,,,,,Humboldt Park,,,,,,,,,,,,,PFA-REG,,,,,,, +1352,1.0,2835,ECE Chicago Find a School scrape.csv, West Pullman,11941 S. Parnell Ave ,60628,5355500,,,,,,West Pullman,,,,,,,,,,,,,PFA-REG,,,,,,, +481,1.0,2836,ECE Chicago Find a School scrape.csv, Westcott,409 W. 80Th St. ,60620,5353394,,,,,,Chatham,,,,,,,,,,,,,PFA-REG,,,,,,, +164,0.9999999448168219,2837,ECE Chicago Find a School scrape.csv, Wheatley CPC,902 E. 133rd Pl ,60627,5355718,,,,,,Riverdale,,,,,,,,,,,,,CPC-FD,,,,,,, +400,0.99999994,2838,ECE Chicago Find a School scrape.csv, Whistler,11533 S. Ada ,60643,5355560,,,,,,West Pullman,,,,,,,,,,,,,PFA-REG,,,,,,, +451,0.99999994,2839,ECE Chicago Find a School scrape.csv, Whitney,2815 S. Komensky ,60623,5341560,,,,,,South Lawndale,,,,,,,,,,,,,PFA-REG,,,,,,, +283,0.99999994,2840,ECE Chicago Find a School scrape.csv, Whittier,1900 W. 23rd St. ,60608,5354590,,,,,,Lower West Side,,,,,,,,,,,,,HS-HD,,,,,,, +300,1.0,2841,ECE Chicago Find a School scrape.csv, Williams,2710 S.Dearborn ,60616,5349226,,,,,,Douglas,,,,,,,,,,,,,HS-HD,,,,,,, +243,0.9999999311744846,2842,ECE Chicago Find a School scrape.csv, Woodlawn EC Development Ctr,950 E 61st St ,60637,6673300,,,,,,Woodlawn,,,,,,,,,,,,,CP,,,,,,, +243,0.9999999311744846,2843,ECE Chicago Find a School scrape.csv, Woodlawn EC Development Ctr I/T,950 E 61st St ,60637,6673300,,,,,,Woodlawn,,,,,,,,,,,,,CP,,,,,,, +846,1.0,2844,ECE Chicago Find a School scrape.csv, Woodlawn T.W.O. Infant Toddler,1445 E. 65th St. ,60637,4931311,,,,,,Woodlawn,,,,,,,,,,,,,CP,,,,,,, +530,0.99999994,2845,ECE Chicago Find a School scrape.csv, Woods,6206 S. Racine ,60636,5359250,,,,,,West Englewood,,,,,,,,,,,,,PFA-REG,,,,,,, +161,1.0,2846,ECE Chicago Find a School scrape.csv, Woodson South,4511 S. Evans Ave ,60653,5351280,,,,,,Grand Boulevard,,,,,,,,,,,,,HS-FD,,,,,,, +280,0.9999999403953552,2847,ECE Chicago Find a School scrape.csv, Yates,1839 N. Richmond ,60647,5344550,,,,,,Logan Square,,,,,,,,,,,,,HS-HD,,,,,,, +847,1.0,2848,ECE Chicago Find a School scrape.csv, YMCA Austin,501 N. Central ,60644,2879120,,,,,,Austin,,,,,,,,,,,,,CP,,,,,,, +848,1.0,2849,ECE Chicago Find a School scrape.csv, YMCA Duncan,1001 W. Roosevelt Rd ,60608,7385443,,,,,,Near West Side,,,,,,,,,,,,,CP,,,,,,, +229,0.9999999701976776,2850,ECE Chicago Find a School scrape.csv, YMCA Garfield,7 N. Homan Av. ,60624,2653900,,,,,,East Garfield Park,,,,,,,,,,,,,CP,,,,,,, +229,0.9999999701976776,2851,ECE Chicago Find a School scrape.csv, YMCA Garfield I/T,7 N. Homan Av. ,60624,2653900,,,,,,East Garfield Park,,,,,,,,,,,,,CP,,,,,,, +187,1.0,2852,ECE Chicago Find a School scrape.csv, YMCA High Ridge,2424 W Touhy ,60645,2716120,,,,,,West Ridge,,,,,,,,,,,,,CP,,,,,,, +1353,1.0,2853,ECE Chicago Find a School scrape.csv, YMCA Marshall HS Infant/Toddler,3520 W. Adams ,60647,2650145,,,,,,East Garfield Park,,,,,,,,,,,,,CP,,,,,,, +178,0.9999999578531515,2854,ECE Chicago Find a School scrape.csv, YMCA McCormick Tribune,1834 N. Lawndale ,60647,2352525,,,,,,West Town,,,,,,,,,,,,,CP,,,,,,, +1354,1.0,2855,ECE Chicago Find a School scrape.csv, YMCA New City,1515 N. Halsted ,60622,4407272,,,,,,Near North,,,,,,,,,,,,,CP,,,,,,, +200,0.9999999701976776,2856,ECE Chicago Find a School scrape.csv, YMCA North Lawndale,3449 W. Arthington ,60624,6380773,,,,,,North Lawndale,,,,,,,,,,,,,CP,,,,,,, +200,0.9999999701976776,2857,ECE Chicago Find a School scrape.csv, YMCA North Lawndale 0-3,3449 W. Arthington ,60624,6380773,,,,,,North Lawndale,,,,,,,,,,,,,CP,,,,,,, +197,0.9999999578531515,2858,ECE Chicago Find a School scrape.csv, YMCA South Chicago,3039 E. 91st St. ,60617,7219100,,,,,,South Chicago,,,,,,,,,,,,,CP,,,,,,, +223,0.9999999578531515,2859,ECE Chicago Find a School scrape.csv, YMCA South Side,6330 S Stony Island ,60637,9470700,,,,,,Woodlawn,,,,,,,,,,,,,CP,,,,,,, +273,0.99999994,2860,ECE Chicago Find a School scrape.csv, Young,1434 N. Parkside ,60651,5346200,,,,,,Austin,,,,,,,,,,,,,HS-HD,,,,,,, +196,0.99999994,2861,ECE Chicago Find a School scrape.csv, Young Scholars Develop Inst,3038 W. 59th St. ,60629,9181944,,,,,,Gage Park,,,,,,,,,,,,,CP,,,,,,, +1355,1.0,2862,ECE Chicago Find a School scrape.csv, YWCA Coretta Scott King,436 E. 39th Street ,60653,5380212,,,,,,Douglas,,,,,,,,,,,,,CP,,,,,,, +1356,1.0,2863,ECE Chicago Find a School scrape.csv, YWCA Harris,6200 S. Drexel ,60637,6670014,,,,,,Woodlawn,,,,,,,,,,,,,CP,,,,,,, +1357,1.0,2864,ECE Chicago Find a School scrape.csv, YWCA Northside,5244 N. Lakewood ,60640,2716120,,,,,,Edgewater,,,,,,,,,,,,,CP,,,,,,, +303,0.99999994,2865,ECE Chicago Find a School scrape.csv, Zapata,2728 S. Kostner ,60623,5341390,,,,,,South Lawndale,,,,,,,,,,,,,HS-HD,,,,,,, +1358,1.0,2866,NAEYC_accreditation.csv, ABC & Me DayCare Center,1100 West Lawrence Ave ,60640,5614488,,,,,,,,,,,,,,,,,,,,,,12/31/13,461353,abcandmedaycare@sbcglobal.net,, +1359,1.0,2867,NAEYC_accreditation.csv," Academy of Saint Benedict the African, Laflin Campus",6020 South Laflin ,60636,7763316,,,,,,,,,,,,,,,,,,http://www.academystbenedict.org,,,,08/01/16,307193,pmurphy@archchicago.org,, +1360,1.0,2868,NAEYC_accreditation.csv, Albany Park Community Center,3401 West Ainslie ,60625,5395907,,,,,,,,,,,,,,,,,,http://www.apcc-chgo.org,,,,09/30/12,415663,wthompson@apcc-chgo.org,, +1361,1.0,2869,NAEYC_accreditation.csv, Albany Park Community Center - Lincoln Square,4754 N. Leavitt Street ,60625,2713851,,,,,,,,,,,,,,,,,,http://www.apcc-chgo.org,,,,01/31/13,486800,rsajous@apcc-chgo.org,, +1362,1.0,2870,NAEYC_accreditation.csv, Albany Park Community Center - Uptown,1020 West Bryn Mawr 211 ,60660,7693197,,,,,,,,,,,,,,,,,,http://www.apcc.org,,,,01/31/13,486804,mabarca@apcc-chgo.org,, +823,1.0,2871,NAEYC_accreditation.csv, Albany Park Head Start,5101 N. Kimball ,60625,5095657,,,,,,,,,,,,,,,,,,http://www.apcc-chgo.org,,,,12/31/12,486881,,, +1363,1.0,2872,NAEYC_accreditation.csv," All Aboard... Learning Express, Inc.",4008 W. Rosemont ,60646,2020554,,,,,,,,,,,,,,,,,,,,,,07/01/15,595216,allaboardlearningexpress@yahoo.com,, +1364,1.0,2873,NAEYC_accreditation.csv, Alphonsus Academy & Center for the Arts,1439 West Wellington ,60657,3484629,,,,,,,,,,,,,,,,,,http://www.alphonsusacademy.org,,,,01/31/13,338338,mstanton@alphonsusacademy.org,, +526,0.999999915706303,2874,NAEYC_accreditation.csv, Belmont Cragin Early Childhood Center,6041 W. Diversey Avenue ,60639,5343318,,,,,,,,,,,,,,,,,,,,,,08/01/16,723729,mmoya-leanga@cps.edu,, +1365,1.0,2875,NAEYC_accreditation.csv, Bridgeport Child Development Center,3053 South Normal Avenue ,60616,8425566,,,,,,,,,,,,,,,,,,http://www.onehopeunited.org,,,,09/01/15,191594,twarner@onehopeunited.org,, +602,1.0,2876,NAEYC_accreditation.csv, Bridgeport Child Development Center II,514 W. 31st Street ,60616,9494015,,,,,,,,,,,,,,,,,,http://www.onehopeunited.org,,,,10/01/15,725011,bdavis@onehopeunited.org,, +1366,1.0,2877,NAEYC_accreditation.csv, Bright Horizons at River East,325 East Grand Avenue ,60611,9265437,,,,,,,,,,,,,,,,,,http://centers.brighthorizons.com/northwestern,,,,08/31/13,339670,kshackel@nmh.org,, +1367,1.0,2878,NAEYC_accreditation.csv, Brite New Mind Daycare Center Inc,112 East 51 Street ,60615,9243090,,,,,,,,,,,,,,,,,,,,,,11/01/15,725776,corrsholdings77@yahoo.com,, +1368,1.0,2879,NAEYC_accreditation.csv, Bunnyland Developmental Day Care Center,545 West 119th Street ,60628,5685200,,,,,,,,,,,,,,,,,,,,,,09/01/15,723622,bunnylanddevelopmentme@sbcglobal.net,, +1369,1.0,2880,NAEYC_accreditation.csv, C.Y.C. Roseland Head Start,461 East 111th Street ,60628,4684405,,,,,,,,,,,,,,,,,,http://chicagoyouthcenters.org,,,,11/01/16,274894,leola.clay@chicagoyouthcenters.org,, +1370,1.0,2881,NAEYC_accreditation.csv, Carole Robertson Center For Learning,2929 West 19th Street ,60623,5211600,,,,,,,,,,,,,,,,,,http://www.crcl.net,,,,09/01/15,486936,walkerr@crcl.net,, +81,0.9999999562621483,2882,NAEYC_accreditation.csv, Carole Robertson Center for Learning,3701 W. Ogden Ave ,60623,5228400,,,,,,,,,,,,,,,,,,http://www.crcl.net,,,,05/31/14,723127,youngt@crcl.net,, +41,1.0,2883,NAEYC_accreditation.csv, Carole Robertson Center for Learning,2020 W. Roosevelt ,60608,5228400,,,,,,,,,,,,,,,,,,http://www.crcl.net,,,,05/31/14,723127,youngt@crcl.net,, +1371,1.0,2884,NAEYC_accreditation.csv, Centers for New Horizons / Ida B. Wells @ Dawson,3901 South State Steet 1st Floor ,60609,5362187,,,,,,,,,,,,,,,,,,http://www.cnh.org,,,,01/31/15,564193,ibwelc@cnh.org,, +1372,1.0,2885,NAEYC_accreditation.csv, Chesterfield Tom Thumb Day Care Center & Kindergarten,9208-9214 South Cottage Grove ,60619,8743985,,,,,,,,,,,,,,,,,,,,,,09/30/13,564164,brittsavage@sbcglobal.net,, +1373,1.0,2886,NAEYC_accreditation.csv, Chicago Child Care Society-child and Family Dev Center,5467 South University ,60615,6430452,,,,,,,,,,,,,,,,,,http://www.cccsociety.org,,,,02/01/16,280649,pflowers@cccsociety.org,, +1374,1.0,2887,NAEYC_accreditation.csv, Chicago Commons Guadalupano Family Center,1814 South Paulina ,60608,6663884,,,,,,,,,,,,,,,,,,http://www.chicagocommons.org,,,,09/30/14,405263,arroyoe@chicagocommons.org,, +1375,1.0,2888,NAEYC_accreditation.csv, Chicago Commons Nia Family Center,744 North Monticello Ave. 1st Floor ,60624,7220115,,,,,,,,,,,,,,,,,,http://www.chicagocommons.org,,,,09/30/14,407656,barbere@chicagocommons.org,, +1376,1.0,2889,NAEYC_accreditation.csv, Chicago Commons Taylor Center for New Experiences,1633 North Hamlin Avenue ,60647,2278551,,,,,,,,,,,,,,,,,,http://chicagocommons.org,,,,08/31/14,283654,powellv@chicagocommons.org,, +1377,1.0,2890,NAEYC_accreditation.csv, Chicago Lawn,3001 West 59th Street 1st Floor ,60629,9251085,,,,,,,,,,,,,,,,,,,,,,01/31/13,486645,vcarrill@catholiccharities.net,, +139,0.9999999774715619,2891,NAEYC_accreditation.csv, Chicago Youth Centers / Rebecca K. Crown,7601 S. Phillips Avenue ,60649,7310444,,,,,,,,,,,,,,,,,,http://www.chicagoyouthcenters.org,,,,11/01/16,508236,annette.anthony@chicagoyouthcenters.org,, +1378,1.0,2892,NAEYC_accreditation.csv," Children First, Inc. Chicago East Loop",225 North Michigan Avenue Suite E08-100 ,60601,6166690,,,,,,,,,,,,,,,,,,http://backupcenters.brighthorizons.com/eastloop/,,,,08/31/12,470195,chicagoeastloop@brighthorizons.com,, +1379,1.0,2893,NAEYC_accreditation.csv, Children's Home & Aid-Englewood Child & Family Center,1701 West 63rd Street ,60636,4766998,,,,,,,,,,,,,,,,,,http://www.childrenshomeandaid.org,,,,08/31/13,293097,nmoore@childrenshomeandaid.org,, +1380,1.0,2894,NAEYC_accreditation.csv, Chinese American Service League ,2141 South Tan Court 1st Floor ,60616,7910454,,,,,,,,,,,,,,,,,,,,,,08/31/14,209110,brenda_arksey@caslservice.org,, +1381,1.0,2895,NAEYC_accreditation.csv, Christopher House Greenview,2507 North Greenview ,60614,4721083,,,,,,,,,,,,,,,,,,http://www.christopherhouse.org,,,,04/30/14,129456,awashington@christopherhouse.org,, +72,0.9999999076608814,2896,NAEYC_accreditation.csv, Christopher House Logan Square ,3255 W. Altgeld Street ,60647,2354073,,,,,,,,,,,,,,,,,,http://www.christopherhouse.org,,,,05/31/15,289774,cvelez@christopherhouse.org,, +1382,1.0,2897,NAEYC_accreditation.csv, Christopher House Uptown,4701 North Winthrop Avenue ,60640,7694540,,,,,,,,,,,,,,,,,,http://www.christopherhouse.org,,,,08/31/12,293293,kross@christopherhouse.org,, +1383,1.0,2898,NAEYC_accreditation.csv, Christopher House-Rogers Park,7059 North Greenview Avenue ,60626,2745477,,,,,,,,,,,,,,,,,,http://www.christopherhouse.org,,,,08/31/13,437986,adanner@christopherhouse.org,, +1384,1.0,2899,NAEYC_accreditation.csv," Community Learning Center, Inc.",10612-20 South Wentworth ,60628,9284104,,,,,,,,,,,,,,,,,,,,,,04/01/16,587966,wereason@aol.com,, +1385,1.0,2900,NAEYC_accreditation.csv, Concordia Place,3855 North Seeley Avenue ,60618,9353739,,,,,,,,,,,,,,,,,,http://www.concordiaplace.org,,,,04/30/14,292544,aroberts@concordiaplace.org,, +198,0.99999994,2901,NAEYC_accreditation.csv, Concordia Place,3300 N. Whipple Street ,60618,4631600,,,,,,,,,,,,,,,,,,http://www.concordiaplace.com,,,,11/30/14,724782,avondale@concordiaplace.org,, +1386,1.0,2902,NAEYC_accreditation.csv, Cordi Marian Center,1100 South May ,60607,6663787,,,,,,,,,,,,,,,,,,,,,,02/01/16,486708,mahayden@catholiccharities.net,, +1387,1.0,2903,NAEYC_accreditation.csv, Corporate Childcare Consultants ,219 South Dearborn Second Floor ,60604,3533796,,,,,,,,,,,,,,,,,,,,,,01/31/13,291362,ccclearningcenter78@comcast.net,, +1388,1.0,2904,NAEYC_accreditation.csv, Corporate Childcare Consultants,78 West Van Buren Floor 1 ,60605,8860834,,,,,,,,,,,,,,,,,,,,,,07/01/17,291368,ccclearningcenter78@comcast.net,, +1389,1.0,2905,NAEYC_accreditation.csv," Corporate Childcare Consultants, Inc",610 South Canal Street 170C ,60607,3538686,,,,,,,,,,,,,,,,,,,,,,12/01/15,275978,ccclearning@sbcglobal.net,, +1390,1.0,2906,NAEYC_accreditation.csv, Dorothy Sutton Branch Head Start & Day Care,8601 South State Street ,60619,7234445,,,,,,,,,,,,,,,,,,,,,,04/30/14,557917,dorthysbr@aol.com,, +1391,1.0,2907,NAEYC_accreditation.csv, Early Childhood Services at Bernard Horwich JCC,3003 West Touhy Avenue ,60645,5165881,,,,,,,,,,,,,,,,,,http://www.gojcc.org,,,,05/31/15,595153,maberman@gojcc.org,, +1392,1.0,2908,NAEYC_accreditation.csv, Easter Seals Gilchrist Marchman ,1001 West Roosevelt Rd. ,60608,4927402,,,,,,,,,,,,,,,,,,http://www.eastersealschicago.org,,,,01/31/13,508147,mcancel@eastersealschicago.org,, +1393,1.0,2909,NAEYC_accreditation.csv, Easter Seals Metropolitan Chicago Windy City Kids,600 West Madison Street ,60661,5756550,,,,,,,,,,,,,,,,,,http://www.eastersealschicago.org,,,,04/30/13,546222,rarmstrong@eastersealschicago.org,, +1394,1.0,2910,NAEYC_accreditation.csv, Easter Seals Near South Side Child Development Center,2214 South Federal Street ,60616,5483614,,,,,,,,,,,,,,,,,,http://www.eastersealschicago.org,,,,10/01/16,723005,crokusek@eastersealschicago.org,, +1395,1.0,2911,NAEYC_accreditation.csv, El Hogar del Nino,1710 South Loomis Street ,60608,7335584,,,,,,,,,,,,,,,,,,http://www.elhogardelnino.org,,,,05/01/16,274925,elhogardelnino@gmail.com,, +1396,1.0,2912,NAEYC_accreditation.csv, Erie Neighborhood House,1701 West Superior ,60622,5635800,,,,,,,,,,,,,,,,,,http://www.eriehouse.org,,,,05/31/13,293383,lfalk@eriehouse.org,, +228,0.9999999578531515,2913,NAEYC_accreditation.csv, Eyes on the Future ,6969 N. Ravenswood Avenue Suite A ,60626,9730771,,,,,,,,,,,,,,,,,,http://www.eyesonthefuture.net,,,,01/31/13,486830,eotfuture@gmail.com,, +595,1.0,2914,NAEYC_accreditation.csv, Ezzard Charles School,7946 South Ashland Avenue ,60620,4870227,,,,,,,,,,,,,,,,,,,,,,08/31/13,486942,ezzardezzi@aol.com,, +1397,1.0,2915,NAEYC_accreditation.csv, Ezzard Charles School,7949 South Ashland Avenue ,60620,4870227,,,,,,,,,,,,,,,,,,,,,,08/31/13,486942,ezzardezzi@aol.com,, +1398,1.0,2916,NAEYC_accreditation.csv, Firman Community Services,37 West 47th Street ,60609,3733400,,,,,,,,,,,,,,,,,,http://www.firmancs.org,,,,04/30/15,399224,firmancs@compuserve.com,, +1399,1.0,2917,NAEYC_accreditation.csv, Florence G. Heller Jewish Community Center (JCC),524 West Melrose ,60657,8716780,,,,,,,,,,,,,,,,,,http://www.gojcc.org,,,,09/30/13,281351,,, +1400,1.0,2918,NAEYC_accreditation.csv, Frances Xavier Warde School ,120 South DesPlaines ,60661,4660700,,,,,,,,,,,,,,,,,,http://www.fxw.org,,,,02/01/16,276806,reilingm@fxw.org,, +1401,1.0,2919,NAEYC_accreditation.csv, Gads Hill Center,2653 West Ogden Avenue ,60608,5211196,,,,,,,,,,,,,,,,,,http://www.gadshillcenter.org,,,,11/01/16,723718,bstokes@gadshillcenter.org,, +1402,1.0,2920,NAEYC_accreditation.csv, Gan Shalom Early Childhood Center,3480 North Lake Shore Drive 3rd Floor ,60657,5254867,,,,,,,,,,,,,,,,,,http://www.sholomchicago.org,,,,07/01/15,446548,rimma@sholomchicago.org,, +1403,1.0,2921,NAEYC_accreditation.csv, Garfield YMCA,7 North Homan Avenue ,60624,2653900,,,,,,,,,,,,,,,,,,,,,,10/01/15,508110,phernandez@ymcachicago.org,, +1404,1.0,2922,NAEYC_accreditation.csv, Gina's Unbelievable Learning Center,7239 S. Dobson Avenue ,60619,3242010,,,,,,,,,,,,,,,,,,,,,,08/01/16,726339,thomag836@ameritech.net,, +1405,1.0,2923,NAEYC_accreditation.csv, Grace Mission Daycare,5332 South Western Ave. ,60609,4761990,,,,,,,,,,,,,,,,,,,,,,09/30/12,486644,fjohnson@catholiccharities.net,, +1406,1.0,2924,NAEYC_accreditation.csv, Happy Holiday Nursery & Kindergarten,401 East 111th Street ,60628,8217009,,,,,,,,,,,,,,,,,,,,,,01/31/14,508127,haphol401@aol.com,, +138,0.9999999356196254,2925,NAEYC_accreditation.csv, Howard Area Family Center,7510 N. Ashland Avenue ,60626,7647610,,,,,,,,,,,,,,,,,,http://www.howardarea.org,,,,09/30/14,372557,skoliarakis@howardarea.org,, +1407,1.0,2926,NAEYC_accreditation.csv, Immaculate Conception,1431 N. North Park Avenue ,60610,9440304,,,,,,,,,,,,,,,,,,,,,,05/31/15,601502,ksullivan@icsnorthpark.com,, +1408,1.0,2927,NAEYC_accreditation.csv, Immaculate Conception,363 W. Hill ,60610,9440304,,,,,,,,,,,,,,,,,,,,,,05/31/15,601502,,, +1409,1.0,2928,NAEYC_accreditation.csv, Immaculate Conception Early Childhood Program,7263 West Talcott Avenue ,60631,7750545,,,,,,,,,,,,,,,,,,http://www.iccowboys.net,,,,12/01/15,595619,felicione@iccowboys.net,, +1410,1.0,2929,NAEYC_accreditation.csv," Itsy Bitsy People Palace ,Inc.",7419 South Cottage Grove Avenue ,60619,8467396,,,,,,,,,,,,,,,,,,http://info@itsybitsypeoplepalace.com,,,,04/30/13,486831,info@itsybitsypeoplepalace.com,, +1411,1.0,2930,NAEYC_accreditation.csv," Itsy Bitsy People Palace ,Inc.",7411 South Cottage Grove Ave. Ground Floor ,60619,8467396,,,,,,,,,,,,,,,,,,,,,,04/30/13,486831,info@itsybitsypeoplepalace.com,, +1412,1.0,2931,NAEYC_accreditation.csv, Jane Addams Hull House Association LeClaire Ryder Head Start,5120 West 44th Street ,60638,4048229,,,,,,,,,,,,,,,,,,,,,,07/31/13,486668,tturner@hullhouse.org,, +1413,1.0,2932,NAEYC_accreditation.csv, Kennedy-King College Child Development Lab Center,710 W. 65th Street Building Z ,60621,6025481,,,,,,,,,,,,,,,,,,http//kennedyking.ccc.edu,,,,09/30/12,27012,gpasillas@ccc.edu,, +1414,1.0,2933,NAEYC_accreditation.csv, Kidwatch Plus ,3901 North Ridgeway ,60618,5395431,,,,,,,,,,,,,,,,,,http://www.kidwatchplus.com,,,,09/30/12,486945,info@kidwatchplus.com,, +1415,1.0,2934,NAEYC_accreditation.csv, Korean American Community Services ,4300 North California Ave. ,60618,5838281,,,,,,,,,,,,,,,,,,http://www.kacschicago.org,,,,04/30/14,585396,hchoi@kacschicago.org,, +220,0.9999999578531515,2935,NAEYC_accreditation.csv, Lake Shore Schools,5611 N. Clark Street ,60660,5616707,,,,,,,,,,,,,,,,,,http://www.lakeshoreschoolschicago.com,,,,01/31/13,724391,info@lakeshoreschoolschicago.com,, +1416,1.0,2936,NAEYC_accreditation.csv, Lincoln Park Cooperative Nursery School,1753 North Fern Court ,60614,9445469,,,,,,,,,,,,,,,,,,http://www.lincolnparkcoop.org,,,,07/31/14,299156,admin@lincolnparkcoop.org,, +1417,1.0,2937,NAEYC_accreditation.csv, Lincoln Park Preparatory,108 West Germania Place ,60610,4829009,,,,,,,,,,,,,,,,,,http://lincolnparkprep.com,,,,11/01/15,726036,lppg@sbcglobal.net,, +1418,1.0,2938,NAEYC_accreditation.csv, Lincoln Park Preschool,312 West Belden Avenue ,60614,6650110,,,,,,,,,,,,,,,,,,http://lincolnparkpreschool.com,,,,10/01/15,449174,lppoffice@sbcglobal.net,, +1419,1.0,2939,NAEYC_accreditation.csv," Little Learners Preschool, Inc.",6255 South Mayfield ,60638,5815541,,,,,,,,,,,,,,,,,,,,,,09/01/16,725678,,, +1420,1.0,2940,NAEYC_accreditation.csv, Logan Square YMCA First Lutheran Head Start,3500 West Fullerton ,60647,8625960,,,,,,,,,,,,,,,,,,http://www.ymcachicago.org,,,,04/30/15,546223,niramirez@ymcachicago.org,, +1421,1.0,2941,NAEYC_accreditation.csv, Loop Learning Center,2001 South Michigan Avenue ,60616,2258828,,,,,,,,,,,,,,,,,,,,,,02/01/17,722736,,, +1422,1.0,2942,NAEYC_accreditation.csv, Lutheran Day Nursery,1802 North Fairfield ,60647,4864222,,,,,,,,,,,,,,,,,,http://www.lutherandaynursery.org,,,,08/01/16,602295,Ldn1802@sbcglobal.net,, +1423,1.0,2943,NAEYC_accreditation.csv, Lutheran Social Services Englewood Messiah Head Start,1910 West 64th Street ,60636,4365110,,,,,,,,,,,,,,,,,,,,,,12/31/13,557873,delphine.whittlesey@lssi.org,, +1424,1.0,2944,NAEYC_accreditation.csv, Malcolm X College Child Development Lab Center,1900 West Van Buren Street 1608 ,60612,8507490,,,,,,,,,,,,,,,,,,http://www.ccc.edu/menu/pages/child-development-La,,,,09/30/12,277294,aruther@ccc.edu,, +596,1.0,2945,NAEYC_accreditation.csv, Marillac Social Center,212 South Francisco ,60612,7227440,,,,,,,,,,,,,,,,,,http://www.marillachouse.org,,,,04/30/14,466434,,, +597,1.0,2946,NAEYC_accreditation.csv, Mary Crane Center,2974 North Clybourn Avenue ,60618,9388131,,,,,,,,,,,,,,,,,,http://www.marycrane.org,,,,08/01/16,722999,info@marycrane.org,, +1425,1.0,2947,NAEYC_accreditation.csv, Mary Meyer School,2817 North Pine Grove Avenue ,60657,5490870,,,,,,,,,,,,,,,,,,http://www.marymeyer.org,,,,06/30/13,383113,kevin@marymeyer.org,, +1426,1.0,2948,NAEYC_accreditation.csv, McCormick Tribune YMCA Head Start Program,1834 N. Lawndale ,60647,2352525,,,,,,,,,,,,,,,,,,http://ymcachicago.org/mccormicktribune,,,,11/01/16,726298,mfranco@ymcachicago.org,, +1427,1.0,2949,NAEYC_accreditation.csv, Metropolitan Family Services ,6422 South Kedzie ,60629,8842400,,,,,,,,,,,,,,,,,,http://www.metrofamily.org,,,,01/31/13,426821,freeman@metrofamily.org,, +1428,1.0,2950,NAEYC_accreditation.csv, Metropolitan Family Services - North Children's Center,3255 North Central ,60634,3713770,,,,,,,,,,,,,,,,,,http://www.metrofamily.org,,,,05/01/16,725944,delgadod@metrofamily.org,, +1429,1.0,2951,NAEYC_accreditation.csv, Metropolitan Family Services Midway Children's Center,3215 West 63rd Street ,60629,8842350,,,,,,,,,,,,,,,,,,http://www.metrofamily.org,,,,08/01/16,722978,valdiviG@metrofamily.org,, +1430,1.0,2952,NAEYC_accreditation.csv, New Concept School,7825 South Ellis Avenue ,60619,6519599,,,,,,,,,,,,,,,,,,http//www.ipe.clc.org,,,,01/31/15,437984,dcgbon21@yahoo.com,, +1431,1.0,2953,NAEYC_accreditation.csv, North Austin Head Start,1500 North Mason ,60651,2371930,,,,,,,,,,,,,,,,,,,,,,05/31/13,343090,,, +1432,1.0,2954,NAEYC_accreditation.csv, North Avenue Day Nursery,2001 West Pierce ,60622,3424499,,,,,,,,,,,,,,,,,,http://nadsnkids.org,,,,04/30/15,274678,steven@nadnkids.org,, +1433,1.0,2955,NAEYC_accreditation.csv, North Lawndale YMCA,3449 W. Arthington ,60624,6380773,,,,,,,,,,,,,,,,,,,,,,02/01/16,508141,tjthompson@ymcachicago.org,, +1434,1.0,2956,NAEYC_accreditation.csv, Northeastern Illinois University Child Care Center,5500 North Saint Louis Avenue ,60625,4424540,,,,,,,,,,,,,,,,,,http://www.neiu.edu/neiuccc,,,,01/31/13,125305,E-Weber1@neiu.edu,, +1435,1.0,2957,NAEYC_accreditation.csv, Northern Trust Child Development Center,801 South Canal Street C1S ,60607,5572540,,,,,,,,,,,,,,,,,,http://www.brighthorizons.com,,,,08/31/13,113649,JM123@ntrs.com,, +598,1.0,2958,NAEYC_accreditation.csv, Northwestern University Settlement Association,1400 West Augusta Blvd ,60642,2787471,,,,,,,,,,,,,,,,,,http://www.nush.org,,,,04/30/14,587968,,, +1436,1.0,2959,NAEYC_accreditation.csv, Norwood Park Preschool for All,5900 North Nina Avenue ,60631,5341162,,,,,,,,,,,,,,,,,,http://www.norwoodparkschool.com,,,,07/01/16,489732,nmtokarz@cps.edu,, +1437,1.0,2960,NAEYC_accreditation.csv, Olive-Harvey Child Development Laboratory Center,10001 South Woodlawn Avenue First Floor ,60628,2916317,,,,,,,,,,,,,,,,,,http://www.oliveharvey.ccc.edu,,,,11/30/14,278168,tcarter63@ccc.edu,, +113,0.9999998992497617,2961,NAEYC_accreditation.csv, Onward Neighborhood House,5423 W. Diversey Ave. ,60639,6223215,,,,,,,,,,,,,,,,,,,,,,01/31/13,511442,mlarson@onwardhouse.org,, +1438,1.0,2962,NAEYC_accreditation.csv, Onward Neighborhood House,600 North Leavitt Street ,60612,6666726,,,,,,,,,,,,,,,,,,http://www.onwardhouse.org,,,,01/31/13,511442,mlarson@onwardhouse.org,, +1439,1.0,2963,NAEYC_accreditation.csv, Orr Infant and Family Development Center,730 North Pulaski Road ,60624,8261090,,,,,,,,,,,,,,,,,,http://www.hullhouse.org,,,,07/31/14,399578,reneeboyd@hullhouse.org,, +1440,1.0,2964,NAEYC_accreditation.csv, Our Lady of Tepeyac ,2414 South Albany Avenue ,60623,2775888,,,,,,,,,,,,,,,,,,,,,,01/31/13,486949,pgutierr@catholiccharities.net,, +1441,1.0,2965,NAEYC_accreditation.csv," Parent Cooperative for Early Learning, Inc.",5300 South Shore Drive STO ,60615,6846363,,,,,,,,,,,,,,,,,,http://www.parentcoop.org,,,,12/31/14,293469,PCEL_director@yahoo.com,, +1442,1.0,2966,NAEYC_accreditation.csv, Parkway Community House Child Care,500 East 67th Street ,60637,4931306,,,,,,,,,,,,,,,,,,http://hullhouse.org,,,,04/30/13,486671,cknighten@hullhouse.org,, +201,0.99999994,2967,NAEYC_accreditation.csv, Pathways to Learning Child Care Center,3450-54 West 79th Street ,60652,4369244,,,,,,,,,,,,,,,,,,,,,,09/30/14,725281,lmpedwards@yahoo.com,, +1443,1.0,2968,NAEYC_accreditation.csv, Paulo Freire Center,1653 West 43rd Street Building ,60609,8266260,,,,,,,,,,,,,,,,,,http://www.chicagocommons.org,,,,02/01/16,278793,vargasn@chicagocommons.org,, +1444,1.0,2969,NAEYC_accreditation.csv, Rauner Family YMCA,2700 S. Western Avenue ,60608,5060130,,,,,,,,,,,,,,,,,,http://ymcachgo.org,,,,11/01/15,726196,ssifuentes@ymcachicago.org,, +1445,1.0,2970,NAEYC_accreditation.csv, Ravenswood Community Child Care Center,4908 North Damen Avenue ,60625,2714495,,,,,,,,,,,,,,,,,,http://rc4cares.com,,,,09/30/12,600291,directorrc4cares@gmail.com,, +1446,1.0,2971,NAEYC_accreditation.csv, Rogers Park Children's Center,1754 West Devon Avenue ,60660,2623366,,,,,,,,,,,,,,,,,,,,,,01/31/13,557795,,, +1447,1.0,2972,NAEYC_accreditation.csv, Saint Augustine College-Nayarit Head Start,2610 West 25th Place Lower level ,60608,8783653,,,,,,,,,,,,,,,,,,,,,,01/31/13,511416,ecorona@staugustine.edu,, +1448,1.0,2973,NAEYC_accreditation.csv, Salvation Army Incarnation Head Start,1345 North Karlov ,60651,2764118,,,,,,,,,,,,,,,,,,,,,,03/31/15,344640,elsa_galan@usc.salvationarmy.org,, +1449,1.0,2974,NAEYC_accreditation.csv, Sinai Preschool,15 West Delaware Place ,60610,8677010,,,,,,,,,,,,,,,,,,http://www.chicagosinai.org,,,,08/01/17,495909,fkatz@chicagosinai.org,, +1450,1.0,2975,NAEYC_accreditation.csv, South Central Community Services Head Start Program,8316 South Ellis Avenue Building ,60619,4830900,,,,,,,,,,,,,,,,,,http://www.sccsinc.org,,,,05/31/14,508122,blasingame@sccsinc.org,, +1451,1.0,2976,NAEYC_accreditation.csv, South Shore United Methodist Child Care Center,7350 South Jeffery Boulevard ,60649,3244430,,,,,,,,,,,,,,,,,,,,,,03/31/13,564213,ssumccc1@ameritech.net,, +1452,1.0,2977,NAEYC_accreditation.csv, South Side YMCA Day Care,6330 S. Stony Island ,60637,3262570,,,,,,,,,,,,,,,,,,http://www.ymcachicago.org,,,,11/30/14,282881,BDickens@ymcachicago.org,, +75,0.9999999200319775,2978,NAEYC_accreditation.csv, St. Augustine College/Flamboyan Head Start ,3401 W. McLean Avenue ,60647,2763423,,,,,,,,,,,,,,,,,,,,,,01/31/13,511412,egalan@staugustine.edu,, +1453,1.0,2979,NAEYC_accreditation.csv, St. John Of God,5114 South Elizabeth 1st Floor ,60609,9242232,,,,,,,,,,,,,,,,,,,,,,11/01/15,725529,snewsome@catholiccharities.net,, +1454,1.0,2980,NAEYC_accreditation.csv, St. Joseph Child Care Center,4800 South Paulina ,60609,9272524,,,,,,,,,,,,,,,,,,,,,,02/01/17,502184,jwilliam@catholiccharities.net,, +599,1.0,2981,NAEYC_accreditation.csv, St. Vincent de Paul Center,2145 North Halsted Street ,60614,9436776,,,,,,,,,,,,,,,,,,http://www.svdpc.org,,,,12/01/15,597629,dhamilto@svdpc.org,, +1455,1.0,2982,NAEYC_accreditation.csv, St. William School,2559 North Sayre Avenue ,60707,6375130,,,,,,,,,,,,,,,,,,http://www.stwilliamschool.org,,,,06/01/16,722491,mbauer@stwilliamschool.org,, +1456,1.0,2983,NAEYC_accreditation.csv, State of Illinois Child Development Center,160 North LaSalle N201 ,60601,8144782,,,,,,,,,,,,,,,,,,http://www.earlychildcareservices.org,,,,08/31/13,214825,solsz@yahoo.com,, +1457,1.0,2984,NAEYC_accreditation.csv, The Children's Center for Creative Learning Inc.,7956 South Western Ave. ,60620,4714927,,,,,,,,,,,,,,,,,,,,,,05/31/13,722947,childrencenterwestern@yahoo.com,, +1458,1.0,2985,NAEYC_accreditation.csv, The Salvation Army Columbus Park Head Start,500 South Central ,60644,9214162,,,,,,,,,,,,,,,,,,,,,,09/30/14,395893,felice_lewis@usc.salvationarmy.org,, +1459,1.0,2986,NAEYC_accreditation.csv, Trinidad Lutheran Head Start,2921 West Division Avenue ,60622,2789332,,,,,,,,,,,,,,,,,,,,,,08/31/13,557882,emilia.espinal@lssi.org,, +1460,1.0,2987,NAEYC_accreditation.csv, Trinty Resources Unlimited High Mountain Head Start,919 North Lavergne Avenue ,60651,6263997,,,,,,,,,,,,,,,,,,,,,,01/31/13,546219,tru_highmountain@yahoo.com,, +232,0.999999915706303,2988,NAEYC_accreditation.csv, UIC Children's Center,728 W. Roosevelt Road (East Side) 2nd floor ,60607,,,,,,,,,,,,,,,,,,,http://www.uic.edu/depts/children,,,,12/31/12,291616,kkull@uic.edu,, +1461,1.0,2989,NAEYC_accreditation.csv, UIC Children's Center,1919 West Taylor Street (mc 525) Room 128 ,60612,4135328,,,,,,,,,,,,,,,,,,http://www.uic.edu/depts/children,,,,12/31/12,291616,kkull@uic.edu,, +1462,1.0,2990,NAEYC_accreditation.csv, University Children's Center,446 East Ontario Suite 150 ,60611,8677056,,,,,,,,,,,,,,,,,,http://www.cclc.com/Northwestern,,,,02/01/16,725256,lhafeman@cclc.com,, +1463,1.0,2991,NAEYC_accreditation.csv, Uptown Family Care Center,4520 North Beacon Street ,60640,5613500,,,,,,,,,,,,,,,,,,http://www.hullhouse.org,,,,10/01/16,399517,pshowers@hullhouse.org,, +1464,1.0,2992,NAEYC_accreditation.csv, Vireva Nursery School,1935 West 51st Street ,60609,9258417,,,,,,,,,,,,,,,,,,,,,,05/31/14,724937,vireva@comcast.net,, +1465,1.0,2993,NAEYC_accreditation.csv, Wee Care Nursery School and Kindergarten,1845 East 79th Street ,60649,2214442,,,,,,,,,,,,,,,,,,,,,,07/31/14,592567,weecarekids@sbcglobal.net,, +188,0.99999994,2994,NAEYC_accreditation.csv," Wee Wee Center for Creative Learning, Inc.",2434 W. 71st Street ,60629,4710869,,,,,,,,,,,,,,,,,,http://weeweecenter.com,,,,05/31/15,723603,weeweecenter@sbcglobal.net,, +1466,1.0,2995,NAEYC_accreditation.csv, Westside Holistic Family Services ,4909 West Division Street 1st Floor ,60651,9218887,,,,,,,,,,,,,,,,,,http://www.westsideholistic.org,,,,02/01/17,531882,,, +1467,1.0,2996,NAEYC_accreditation.csv, Winthrop Children's Center,4848 North Winthrop ,60640,8783210,,,,,,,,,,,,,,,,,,,,,,09/30/12,395889,,, +1468,1.0,2997,NAEYC_accreditation.csv, YMCA High Ridge,2424 West Touhy Avenue ,60645,2628300,,,,,,,,,,,,,,,,,,http://www.ymcachicago.org,,,,11/30/14,725321,,, +1469,1.0,2998,NAEYC_accreditation.csv, YMCA Marshall Child Development Center,3201 West Monroe ,60624,2650145,,,,,,,,,,,,,,,,,,http://ymcachgo.org,,,,11/01/15,726003,bross@ymcachicago.org,, +1470,1.0,2999,NAEYC_accreditation.csv, Young Scholars Developmental Institute,3038 West 59th Street 1st ,60629,9181944,,,,,,,,,,,,,,,,,,,,,,01/31/14,546228,youngscholars@sbcglobal.net,, +212,0.9999999701976776,3000,Ounce of Prevention - Site Locations.csv, Ounce of Prevention Fund - Educare of Chicago,5044 S. Wabash Ave ,60615,9242334,,,,,,,,,,,,,,,,,,,,,,,Grand Boulevard Community; Serves children ages 0-5,,, +1471,1.0,3001,Ounce of Prevention - Site Locations.csv, Ounce of Prevention Fund - Doula Home Visiting,"Hayes Center +4859 S. Wabash +",60615,3738670,,,,,,,,,,,,,,,,,,,,,,,Grand Boulevard Community; Serves children ages 0-5,,, +1472,1.0,3002,Ounce of Prevention - Site Locations.csv, Aunt Martha's - Riverdale Site,"14424 Wentworth Avenue +Riverdale, IL 60827",,8496019,,,,,,,,,,,,,,,,,,,,,,,Park Forest and Riverdale Communities; Serves children ages 3-5,,, +600,0.9999999,3003,Ounce of Prevention - Site Locations.csv, Aunt Martha's - Park Forest Site,"23485 Western Avenue +Park Forest, IL 60466",,7472780,,,,,,,,,,,,,,,,,,,,,,,Park Forest and Riverdale Communities; Serves children ages 3-5,,, +601,1.0,3004,Ounce of Prevention - Site Locations.csv, Casa Central - ABC Home-Based Head Start,"1349 N. California +",60622,6452404,,,,,,,,,,,,,,,,,,,,,,,Humboldt Park Community; Serves children ages 3-5,,, +185,1.0,3005,Ounce of Prevention - Site Locations.csv, Casa Central - APP Home Based Head Start,"2222 N. Kedzie Ave. +",60647,7828819,,,,,,,,,,,,,,,,,,,,,,,Humboldt Park Community; Serves children ages 3-5,,, +185,0.9999999655872422,3006,Ounce of Prevention - Site Locations.csv, Casa Central - Casa Infantil,"2222 N. Kedzie Ave. +",60647,7721170,,,,,,,,,,,,,,,,,,,,,,,Humboldt Park Community; Serves children ages 3-5,,, +173,0.9999998735594545,3007,Ounce of Prevention - Site Locations.csv, Casa Central - Community Service Center,"1343 N. California Ave. +",60622,6452300,,,,,,,,,,,,,,,,,,,,,,,Humboldt Park Community; Serves children ages 3-5,,, +1473,1.0,3008,Ounce of Prevention - Site Locations.csv, Casa Central - Munoz Marin-Lowell Early Childhood Center,"3320 W. Evergreen Ave. +",60651,5344315,,,,,,,,,,,,,,,,,,,,,,,Humboldt Park Community; Serves children ages 3-5,,, +88,0.999999913112046,3009,Ounce of Prevention - Site Locations.csv, Centers for New Horizons - Effie Ellis II Center,"4301 S. Cottage Grove Ave +",60653,5489839,,,,,,,,,,,,,,,,,,,,,,,Grand Boulevard Community; Serves children 0-3,,, +175,0.9999998735594545,3010,Ounce of Prevention - Site Locations.csv, Children's Home and Aid Society - Mitzi Freidheim Englewood Child + Family Center,"1701 W. 63rd St. +",60636,4766998,,,,,,,,,,,,,,,,,,,,,,,Humboldt Park and Englewood Communities; Serves children ages 3-5,,, +190,1.0,3011,Ounce of Prevention - Site Locations.csv, Children's Home and Aid Society - Viva Home Based,"2516 W. Division +",60622,2529100,,,,,,,,,,,,,,,,,,,,,,,Humboldt Park and Englewood Communities; Serves children ages 3-5,,, +176,0.999999891177305,3012,Ounce of Prevention - Site Locations.csv, Children's Place Association - Family Center,"1800 N. Humboldt Blvd. +",60647,3959193,,,,,,,,,,,,,,,,,,,,,,,Humboldt Park and City of Chicago Communities; Serves children ages 0-5,,, +1474,1.0,3013,Ounce of Prevention - Site Locations.csv, One Hope United - Bridgeport Child Development Center,"3053 South Normal Ave. +",60616,8425566,,,,,,,,,,,,,,,,,,,,,,,Bridgeport and Rogers Park Communities; Serves children ages 3-5,,, +1475,1.0,3014,Ounce of Prevention - Site Locations.csv, One Hope United - Bridgeport Child Development Center II,"514 W. 31st St. +",60616,9494015,,,,,,,,,,,,,,,,,,,,,,,Bridgeport and Rogers Park Communities; Serves children ages 3-5,,, +1476,1.0,3015,Ounce of Prevention - Site Locations.csv, One Hope United - Edgewater Early Learning Center,"5244 North Lakewood St. +",60640,9070278,,,,,,,,,,,,,,,,,,,,,,,Bridgeport and Rogers Park Communities; Serves children ages 3-5,,, +1477,1.0,3016,Ounce of Prevention - Site Locations.csv, SGA Youth and Family Services - SGA Youth & Family Services,"Early Head Start Home Based +11 E. Adams, Suite 1500 +",60603,4474356,,,,,,,,,,,,,,,,,,,,,,,Brighton Park and McKinley Park; Services children ages 0-3; Home Visiting,,, +1478,1.0,3017,Ounce of Prevention - Site Locations.csv, SGA Youth and Family Services - Program Site,"4222 S. Archer Ave. +",60632,,,,,,,,,,,,,,,,,,,,,,,,Brighton Park and McKinley Park; Services children ages 0-3; Home Visiting,,, +195,0.999999915706303,3018,purple_binder_early_childhood.csv, A Karrasel Nursery School & Kindergarten,3030 N Kedzie Avenue ,60618,4636151,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1479,1.0,3019,purple_binder_early_childhood.csv, A Step Ahead Day Care Center,4208 N Broadway Street 10 ,60612,4048664,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1480,1.0,3020,purple_binder_early_childhood.csv, ABC & Me Day Care Center,1100 W Lawrence Avenue ,60640,5614488,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1481,1.0,3021,purple_binder_early_childhood.csv, ABC Academy,2714 W Pratt Boulevard ,60645,3381033,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1482,1.0,3022,purple_binder_early_childhood.csv, ABLA Child Development Center,1342 S Racine Avenue ,60608,7335992,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1483,1.0,3023,purple_binder_early_childhood.csv, Abraham Lincoln Centre,7239 S Dobson Avenue ,60619,4934496,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1484,1.0,3024,purple_binder_early_childhood.csv, Abraham Lincoln Centre,5659 S Union Avenue ,60621,7832828,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +130,0.9999999496248808,3025,purple_binder_early_childhood.csv, Abraham Lincoln Centre,7 E 119th Street ,60628,2647633,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +18,0.9999999403953552,3026,purple_binder_early_childhood.csv, Abraham Lincoln Centre,1354 W 61st Street ,60636,4715100,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +588,0.9999999655872422,3027,purple_binder_early_childhood.csv, Abraham Lincoln Centre,3858 S Cottage Grove Avenue ,60653,3736600,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +207,0.9999999,3028,purple_binder_early_childhood.csv, Abraham Lincoln Centre - Berkley Center,4210 S Berkeley Avenue ,60653,4513360,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +90,0.9999999513330113,3029,purple_binder_early_childhood.csv, Abraham Lincoln Centre - Lincoln/King,4314 S Cottage Grove Avenue ,60653,7472310,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1485,1.0,3030,purple_binder_early_childhood.csv, Accounters Community Center,1155 W 81st Street ,60620,9945514,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1486,1.0,3031,purple_binder_early_childhood.csv, Ada S. McKinley Community Services,725 S Wells Street ,60607,3852000,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1487,1.0,3032,purple_binder_early_childhood.csv, Ada S. McKinley Community Services,4543 S Princeton Avenue ,60609,6249799,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1488,1.0,3033,purple_binder_early_childhood.csv, Ada S. McKinley Community Services,2647 E 88th Street ,60617,3751999,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +134,0.9999999356196254,3034,purple_binder_early_childhood.csv, Ada S. McKinley Community Services - Ersula Howard,7222 S Exchange Avenue ,60649,2219711,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +89,0.9999999356196254,3035,purple_binder_early_childhood.csv, Ada S. McKinley Community Services - Maggie Drummond,4301 S Wabash ,60653,3738200,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +11,0.9999999474336443,3036,purple_binder_early_childhood.csv, Ada S. McKinley Community Services - Roseland,11410 S Edbrooke Avenue ,60628,4681918,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +142,0.9999999356196254,3037,purple_binder_early_childhood.csv, Ada S. McKinley Community Services - Wright Renaissance,7939 S Western Avenue ,60620,4768805,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +254,0.9999999655872422,3038,purple_binder_early_childhood.csv, Ada S. McKinley Services - McKinley - Trumbull,10530 S Oglesby Avenue ,60617,3757022,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1489,1.0,3039,purple_binder_early_childhood.csv, Albany Park Community Center,3403 W Lawrence Avenue ,60625,4333204,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +74,0.9999999549431237,3040,purple_binder_early_childhood.csv, Albany Park Community Center - Ainslie,3401 W Ainslie Street ,60625,5395907,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +108,0.9999999578531515,3041,purple_binder_early_childhood.csv, Albany Park Community Center - Kimball,5121 N Kimball Avenue ,60625,5095650,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1490,1.0,3042,purple_binder_early_childhood.csv, All Nations Development Center,8435 S Stony Island Avenue ,60617,3757000,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1491,1.0,3043,purple_binder_early_childhood.csv, Appeal for Charities Ebenezer,7058 S LaFayette Avenue ,60621,6515400,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +104,0.9999999538304407,3044,purple_binder_early_childhood.csv, Appeal for Charities Emmanuel,50 W 71st Street ,60621,6515400,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +608,1.0,3045,purple_binder_early_childhood.csv, BBF Family Services,1512 S Pulaski Road ,60623,2779582,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1492,1.0,3046,purple_binder_early_childhood.csv, Bernard Horwich Jewish Community Center,3003 W Touhy Avenue ,60645,7619100,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1493,1.0,3047,purple_binder_early_childhood.csv, Bethel New Life,4950 W Thomas Street ,60651,4737870,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +9,0.9999999294748332,3048,purple_binder_early_childhood.csv, Bethel New Life School,1120 N Lamon Avenue ,60651,6267760,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1494,1.0,3049,purple_binder_early_childhood.csv," Boys & Girls Clubs of Chicago - Dr Martin Luther King, Jr. Club",2950 W Washington Boulevard ,60612,6385464,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1495,1.0,3050,purple_binder_early_childhood.csv, Boys & Girls Clubs of Chicago - Ida Mae Fletcher,3140 W Ogden Avenue ,60623,7627383,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1496,1.0,3051,purple_binder_early_childhood.csv, Boys & Girls Clubs of Chicago - James Jordan Club,2102 W Monroe Street ,60612,4324294,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +222,0.9999999,3052,purple_binder_early_childhood.csv, Boys & Girls Clubs of Chicago - Yancey,6245 S Wabash Avenue ,60637,3634733,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1497,1.0,3053,purple_binder_early_childhood.csv, Bray Temple Day Care,1049 E 73rd Street ,60619,4937092,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1498,1.0,3054,purple_binder_early_childhood.csv, Bright Horizons at Fourth Presbyterian Children's Center,126 E Chestnut Street ,60611,6244532,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +217,0.99999994,3055,purple_binder_early_childhood.csv, Bunnyland Developmental Day Care Center,545 W 119th Street ,60628,5685200,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1499,1.0,3056,purple_binder_early_childhood.csv, C.C.C. Learning Center,78 W Van Buren Street ,60605,4273342,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1500,1.0,3057,purple_binder_early_childhood.csv, C.C.C. Learning Center,610 S Canal Street ,60606,3538687,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1501,1.0,3058,purple_binder_early_childhood.csv, Cambodian Association of Illinois,2831 W Lawrence Avenue ,60625,8787090,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1502,1.0,3059,purple_binder_early_childhood.csv, Care-A-Lot Child Development Center,5522 N Milwaukee Avenue ,60630,7630888,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1503,1.0,3060,purple_binder_early_childhood.csv, Care-a-Lot Child Development Center,6441 N Central Avenue ,60646,7638888,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +41,0.9999999578531515,3061,purple_binder_early_childhood.csv, Carole Robertson Center for Learning,2020 W Roosevelt Road ,60608,2437300,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +81,0.9999999562621483,3062,purple_binder_early_childhood.csv, Carole Robertson Center for Learning,3701 W Ogden Avenue ,60623,5228400,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +61,0.9999999544762006,3063,purple_binder_early_childhood.csv, Carole Robertson Center for Learning,2929 W 19th Street ,60623,5211600,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +185,0.9999999655872422,3064,purple_binder_early_childhood.csv, Casa Central - Casa Infantil Child Development Center,2222 N Kedzie Avenue ,60647,7721170,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +173,0.999999915706303,3065,purple_binder_early_childhood.csv, Casa Central - CSC Child Development Center,1343 N California Avenue ,60622,6452300,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1504,1.0,3066,purple_binder_early_childhood.csv, Catholic Charities Chicago,721 N LaSalle Street ,60654,6557000,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +309,0.9999999403953552,3067,purple_binder_early_childhood.csv, Catholic Charities Chicago - Chicago Lawn,3001 W 59th Street ,60629,9251085,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +7,0.9999999071128699,3068,purple_binder_early_childhood.csv, Catholic Charities Chicago - Cordi-Marian,1100 S May Street ,60607,6663787,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +27,0.9999998807907104,3069,purple_binder_early_childhood.csv, Catholic Charities Chicago - Ebenezer,1652 W Foster Avenue ,60640,8789925,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +111,0.9999999187725611,3070,purple_binder_early_childhood.csv, Catholic Charities Chicago - Grace Mission School,5332 S Western Avenue ,60609,4761990,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +365,0.9999999,3071,purple_binder_early_childhood.csv, Catholic Charities Chicago - Maria's Garden,7320 S Yale Avenue ,60621,9943016,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +100,0.9999999122643385,3072,purple_binder_early_childhood.csv, Catholic Charities Chicago - St. Joseph,4800 S Paulina Street ,60609,9272524,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +6,0.9999998807907104,3073,purple_binder_early_childhood.csv, Catholic Charities Chicago - St. Kevin,10509 S Torrence Avenue ,60617,3746466,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +825,1.0,3074,purple_binder_early_childhood.csv, Catholic Charities Chicago - St. Mark,1041 N Campbell Avenue ,60622,7726606,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1505,1.0,3075,purple_binder_early_childhood.csv, Catholic Charities Chicago - St. Michael,8235 S Shore Drive ,60617,9337676,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +153,0.9999999455886526,3076,purple_binder_early_childhood.csv, Centers for New Horizons - Altgeld,941 E 132nd Street ,60827,4683055,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1506,1.0,3077,purple_binder_early_childhood.csv, Centers for New Horizons - Altgeld Gardens II Early Learning Center,939 E 132nd Street ,60827,4686033,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +826,1.0,3078,purple_binder_early_childhood.csv, Centers for New Horizons - Edison Hoard,3948 S State ,60609,5362187,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +828,1.0,3079,purple_binder_early_childhood.csv, Centers for New Horizons - Head Start,226 E 43rd Street ,60653,6240061,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1507,1.0,3080,purple_binder_early_childhood.csv, Centers for New Horizons Dr. King High School,4445 S Drexel Boulevard ,60653,2853327,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1508,1.0,3081,purple_binder_early_childhood.csv, Centers for New Horizons Hyde Park,5600 S Woodlawn ,60637,6672525,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +827,1.0,3082,purple_binder_early_childhood.csv, Centers for New Horizons Ida B. Wells,3641 S Rhodes Avenue ,60653,3733460,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +830,0.99999994,3083,purple_binder_early_childhood.csv, Centers for New Horizons Raymond School,3663 S Wabash Avenue ,60653,3735673,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1509,1.0,3084,purple_binder_early_childhood.csv, Centers for New Horizons Robert Taylor II,5120 S Federal Street ,60609,6240666,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +829,1.0,3085,purple_binder_early_childhood.csv, Centers For New Horizons Robert Taylor School,5140 S Federal Street ,60609,5360510,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +121,0.9999999483808635,3086,purple_binder_early_childhood.csv, Centers for New Horizons Washington Park,6225 S Wabash Avenue ,60637,6672065,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +831,1.0,3087,purple_binder_early_childhood.csv, Central Baptist Bridgeport School,3053 S Normal Avenue ,60616,8425566,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +218,1.0,3088,purple_binder_early_childhood.csv, Chicago Child Care Society School,5467 S University Avenue ,60615,6430452,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1510,1.0,3089,purple_binder_early_childhood.csv, Chicago Commons,3645 W Chicago Avenue ,60651,6385600,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +36,0.9999999455886526,3090,purple_binder_early_childhood.csv, Chicago Commons - Guadalupano Family Center,1814 S Paulina Street ,60608,6663883,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +137,0.9999999701976776,3091,purple_binder_early_childhood.csv, Chicago Commons - Nia Family Center,744 N Monticello Avenue ,60624,7220115,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +26,0.9999999057567817,3092,purple_binder_early_childhood.csv, Chicago Commons - Taylor Center School,1633 N Hamlin Avenue ,60647,2278551,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +832,1.0,3093,purple_binder_early_childhood.csv, Chicago Commons Association New City,4600 S McDowell ,60609,3761657,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1511,1.0,3094,purple_binder_early_childhood.csv, Chicago Commons Association Paulo Freire,1633 W 43rd Street ,60609,8262669,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1512,1.0,3095,purple_binder_early_childhood.csv, Chicago Department of Human Services - North Area,4740 N Sheridan Road ,60640,7442580,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1513,1.0,3096,purple_binder_early_childhood.csv, Chicago Department of Human Services - South Chicago,8759 S Commercial Avenue ,60617,7470331,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1514,1.0,3097,purple_binder_early_childhood.csv, Chicago Metropolitan Association for the Education of Young Children,30 E Adams Street ,60603,4275399,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +170,0.9999999701976776,3098,purple_binder_early_childhood.csv, Chicago Urban Day School,1248 W 69th Street ,60636,4833555,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +95,1.0,3099,purple_binder_early_childhood.csv, Chicago Youth Centers,461 E 111th Street ,60628,4684660,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +76,0.9999999200319775,3100,purple_binder_early_childhood.csv, Chicago Youth Centers - ABC Youth Center,3415 W 13th Place ,60623,7625655,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1515,1.0,3101,purple_binder_early_childhood.csv, Chicago Youth Centers - BBR Youth Center,1530 S Hamlin Avenue ,60623,7621140,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +70,0.9999999538304407,3102,purple_binder_early_childhood.csv, Chicago Youth Centers - Centro Nuestro,3222 W Division Street ,60651,4893157,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +154,0.9999999496248808,3103,purple_binder_early_childhood.csv, Chicago Youth Centers - Dorothy Gautreaux,975 E 132nd Street ,60827,2911000,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1516,1.0,3104,purple_binder_early_childhood.csv, Chicago Youth Centers - Elliott Donnelley Center,3947 S Michigan Avenue ,60653,2683815,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +22,0.9999999403953552,3105,purple_binder_early_childhood.csv, Chicago Youth Centers - Mt. Moriah-Taylor,1501 N Harding Avenue ,60651,2785837,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +139,0.9999999774715619,3106,purple_binder_early_childhood.csv, Chicago Youth Centers - Rebecca Crown,7601 S Phillips Avenue ,60649,7310444,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1517,1.0,3107,purple_binder_early_childhood.csv, Children's Campus,7250 W Touhy Avenue ,60631,6313632,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1518,1.0,3108,purple_binder_early_childhood.csv, Children's Home and Aid - Englewood Family Center,1701 W 53rd Avenue ,60609,4766998,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1519,1.0,3109,purple_binder_early_childhood.csv, Children's Place Association,3059 W Augusta Boulevard ,60622,8261230,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1520,1.0,3110,purple_binder_early_childhood.csv, Children's Playhouse,3342 W Bryn Mawr Avenue ,60659,4783888,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1521,1.0,3111,purple_binder_early_childhood.csv, Childrens Home and Aid Society,125 S Wacker Drive ,60606,4240200,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +834,1.0,3112,purple_binder_early_childhood.csv, ChildServ - St Matthew Head Start,1000 N Orleans Street ,60610,9443403,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +141,0.9999999,3113,purple_binder_early_childhood.csv, Childserv Englewood,7928 S Ashland Avenue ,60620,,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +68,1.0,3114,purple_binder_early_childhood.csv, Childserv Lawndale,3210 W Arthington ,60624,5677669,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +31,0.999999853999034,3115,purple_binder_early_childhood.csv, ChildServ West Englewood School,1711 W Garfield Boulevard ,60636,8677350,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +835,1.0,3116,purple_binder_early_childhood.csv, Chinese American Service League,310 W 24th Place ,60616,7910418,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +51,0.9999999528783908,3117,purple_binder_early_childhood.csv, Christopher House,2507 N Greenview Avenue ,60614,4721083,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +147,0.9999999513330113,3118,purple_binder_early_childhood.csv, Christopher House - Lakeshore,850 W Eastwood Avenue ,60640,2719403,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +132,0.9999999513330113,3119,purple_binder_early_childhood.csv, Christopher House - Rogers Park,7059 N Greenview Avenue ,60626,2745477,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +98,0.9999999180812513,3120,purple_binder_early_childhood.csv, Christopher House - Uptown Child Development Center,4701 N Winthrop Avenue ,60640,7694540,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +836,1.0,3121,purple_binder_early_childhood.csv, Christopher House Buena Park,4303 N Kenmore Avenue ,60613,8830288,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +52,0.9999999038903982,3122,purple_binder_early_childhood.csv, Christopher House Logan Square,2610 N Francisco Avenue ,60647,2354073,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +837,1.0,3123,purple_binder_early_childhood.csv, Christopher House Palmer Square,2140 N Richmond Street ,60647,9480010,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +34,0.9999998700946884,3124,purple_binder_early_childhood.csv, Church of God Community Day Care Center,1738 W Marquette Road ,60636,4715222,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +255,0.9999999655872422,3125,purple_binder_early_childhood.csv, Community Learning Center,10612 S Wentworth Avenue ,60628,9284104,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +203,0.99999994,3126,purple_binder_early_childhood.csv, Concordia Child Care Center,3855 N Seeley Avenue ,60618,9353739,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1522,1.0,3127,purple_binder_early_childhood.csv, Congregation K.I.N.S. Nursery School/Kinderland,2800 W North Shore Avenue ,60645,7614000,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1523,1.0,3128,purple_binder_early_childhood.csv, Consuelo Lee Corretjer Day Care Center,2739 W Division Street ,60622,3428866,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1524,1.0,3129,purple_binder_early_childhood.csv, Cook County/City of Chicago Child Development Center,40 N Dearborn Street ,60602,6244532,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1525,1.0,3130,purple_binder_early_childhood.csv, Dawson Technical Institute,3901 S State Street ,60609,4512000,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +181,0.9999999578531515,3131,purple_binder_early_childhood.csv, Dorsey Developmental Institute School,2050 E 93rd Street ,60617,3754300,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +106,1.0,3132,purple_binder_early_childhood.csv, Douglas-Tubman Child Development Center,5010 W Chicago Avenue ,60651,2683053,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1526,1.0,3133,purple_binder_early_childhood.csv, Downtown Children's Learning Place,400 N McClurg Court ,60611,8289590,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1527,1.0,3134,purple_binder_early_childhood.csv, Dr. Deton J. Brooks Head Start,6921 S Stony Island Avenue ,60649,9552818,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +839,1.0,3135,purple_binder_early_childhood.csv, Easter Seal Society Gilchrist Marchment,2345 W North Avenue ,60647,2764000,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1528,1.0,3136,purple_binder_early_childhood.csv, Educare Center,5044 S Wabash Avenue ,60615,9242334,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +32,0.9999999640570468,3137,purple_binder_early_childhood.csv, El Hogar Del Nino,1718 S Loomis Street ,60608,5639796,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +840,1.0,3138,purple_binder_early_childhood.csv, El Hogar del Nino,1854 S Racine Avenue ,60608,2430011,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +44,0.9999999222850513,3139,purple_binder_early_childhood.csv, El Hogar Del Nino Cuidar,2325 S California Avenue ,60608,5231629,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +39,0.9999999362799544,3140,purple_binder_early_childhood.csv, El Valor Guadalupe Reyes,1951 W 19th Street ,60608,9972021,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +66,0.999999934706383,3141,purple_binder_early_childhood.csv, El Valor Rey Gonzalez Child Care,3050 E 92nd Street ,60617,7219311,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +29,0.9999999483808635,3142,purple_binder_early_childhood.csv, Erie Neighborhood House,1701 W Superior Street ,60622,5635800,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +586,0.9999999578531515,3143,purple_binder_early_childhood.csv, Erie Neighborhood House,2510 W Cortez Street ,60622,4867161,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +584,0.9999999578531515,3144,purple_binder_early_childhood.csv, Erie Neighborhood House,1347 W Erie Street ,60642,6663430,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +228,0.9999999578531515,3145,purple_binder_early_childhood.csv, Eyes on the Future Child Care Center,6969 N Ravenswood Avenue ,60626,9730771,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +237,0.9999999578531515,3146,purple_binder_early_childhood.csv, Ezzard Charles School,7946 S Ashland Avenue ,60620,4870227,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +128,0.9999999403953552,3147,purple_binder_early_childhood.csv, Family Rescue Ridgeland,6824 S Ridgeland Avenue ,60649,6671073,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1529,1.0,3148,purple_binder_early_childhood.csv, Fellowship House Day Care Center,844 W 32nd Street ,60608,3262282,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1530,1.0,3149,purple_binder_early_childhood.csv, Fifth City Chicago Child Development Institute,3411 W Fifth Avenue ,60624,8268686,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +80,0.9999999578531515,3150,purple_binder_early_childhood.csv, Firman Community Services,37 W 47th Street ,60609,3733400,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +785,1.0,3151,purple_binder_early_childhood.csv, Firman Community Services,4910 S King Drive ,60615,3732083,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +590,0.9999999311744846,3152,purple_binder_early_childhood.csv, Firman Community Services - School Age Program,4644 S Dearborn Street ,60609,3733400,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +290,0.9999999655872422,3153,purple_binder_early_childhood.csv, First Church of Love and Faith,2140 W 79th Street ,60620,8739155,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1531,1.0,3154,purple_binder_early_childhood.csv, First Presbyterian Church,6400 S Kimbark Avenue ,60637,3630505,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1532,1.0,3155,purple_binder_early_childhood.csv, Florence Heller Jewish Community Center,524 W Melrose Avenue ,60657,8716780,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +227,0.99999994,3156,purple_binder_early_childhood.csv, Fresh Start Day Care,6924 W North Avenue ,60707,4792870,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +585,0.9999999655872422,3157,purple_binder_early_childhood.csv, Gads Hill Center,1919 W Cullerton Street ,60608,2260963,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +591,0.9999999,3158,purple_binder_early_childhood.csv, Gads Hill Center - Cesar Chavez Elementary,4747 S Marshfield Avenue ,60609,,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1533,1.0,3159,purple_binder_early_childhood.csv, Grant AME Church Day Care Center,4025 S Drexel Boulevard ,60653,2858440,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1534,1.0,3160,purple_binder_early_childhood.csv, Greenview Children's Center,1507 W Sunnyside Avenue ,60640,7281777,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1535,1.0,3161,purple_binder_early_childhood.csv, Habilitative Systems,415 S Kilpatrick Avenue ,60644,2612252,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1536,1.0,3162,purple_binder_early_childhood.csv, Happy Child Day Center,7750 W Devon Avenue ,60631,7757969,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1537,1.0,3163,purple_binder_early_childhood.csv, Harry S. Truman College Child Development Center,1145 W Wilson Avenue ,60640,9074740,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +120,0.9999998211860657,3164,purple_binder_early_childhood.csv, Heartland Alliance for Human Needs and Human Rights - Learning Center,615 W Wellington Avenue ,60657,7511870,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +58,0.9999999,3165,purple_binder_early_childhood.csv, Henry Booth Family Rescue,2850 S Michigan Avenue ,60616,9492151,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +47,1.0,3166,purple_binder_early_childhood.csv, Henry Booth House - Hilliard Head Start,2401 S Wabash Street ,60616,6639450,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +60,0.999999915706303,3167,purple_binder_early_childhood.csv, Henry Booth Near South School,2929 S Wabash Suite 200 ,60616,7910424,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1538,1.0,3168,purple_binder_early_childhood.csv, High Ridge YMCA Educational Center,2424 W Touhy Avenue ,60645,2628300,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +96,0.9999999513330113,3169,purple_binder_early_childhood.csv, Home of Life,4647 W Washington Boulevard ,60644,6268655,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1539,1.0,3170,purple_binder_early_childhood.csv, Howard Area Community Center,7648 N Paulina Street ,60626,2626622,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1540,1.0,3171,purple_binder_early_childhood.csv, Howard Area Community Services,7610 N Ashland Avenue ,60626,7647610,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1541,1.0,3172,purple_binder_early_childhood.csv, Hull House Association - Humboldt Park,1132 S Spaulding Avenue ,60624,2767968,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1542,1.0,3173,purple_binder_early_childhood.csv, Hull House Association - Lawndale,1401 S Sacramento Drive ,60623,9068600,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +589,0.9999999,3174,purple_binder_early_childhood.csv, Hull House Association - LeClaire Hearst Community Center,4340 S Lamon Avenue ,60638,7671516,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +91,0.9999999538304407,3175,purple_binder_early_childhood.csv, Hull House Association - LeClaire-Ryder,4410 S LaPorte Avenue ,60638,7675170,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +99,0.9999999455886526,3176,purple_binder_early_childhood.csv, Hull House Association - Lincoln Square,4754 N Leavitt Street ,60625,8788651,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +135,0.999999915706303,3177,purple_binder_early_childhood.csv, Hull House Association - Orr Infant and Family Development Center,730 N Pulaski Road ,60624,8261090,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +211,0.9999999311744846,3178,purple_binder_early_childhood.csv, Hull House Association - Parkway Community House,500 E 67th Street ,60637,4931306,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +93,0.9999999496248808,3179,purple_binder_early_childhood.csv, Hull House Association - Uptown West,4520 N Beacon Street ,60640,5613500,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1543,1.0,3180,purple_binder_early_childhood.csv, Hull House Association Child Development,3212 N Broadway Street ,60657,5345814,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1544,1.0,3181,purple_binder_early_childhood.csv, Human Resources Development Institute,222 S Jefferson Street ,60661,4686959,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1545,1.0,3182,purple_binder_early_childhood.csv, Hyde Park Neighborhood Club,5480 S Kenwood Avenue ,60615,6434062,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +194,0.9999999578531515,3183,purple_binder_early_childhood.csv, Irving Park Early Learning Center,3023 W Montrose Avenue ,60618,5397422,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1546,1.0,3184,purple_binder_early_childhood.csv, JCYS Lakeview Family Center,957 W Grace Street ,60613,2812533,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1547,1.0,3185,purple_binder_early_childhood.csv, Jewish Child and Family Services,216 W Jackson Boulevard ,60606,3574800,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1548,1.0,3186,purple_binder_early_childhood.csv, Jewish Child and Family Services - Joy Faith Knapp Children's Center,3145 W Pratt Boulevard ,60645,4673700,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1549,1.0,3187,purple_binder_early_childhood.csv, Jewish Community Centers of Chicago,30 S Wells Street ,60606,3574700,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1550,1.0,3188,purple_binder_early_childhood.csv, Jewish Community Centers of Chicago - Hyde Park,5200 S Hyde Park Boulevard ,60615,7533080,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +235,0.9999999,3189,purple_binder_early_childhood.csv, Jolly Fun House Playschool,7559 W Addison Street ,60634,,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1551,1.0,3190,purple_binder_early_childhood.csv, Kennedy-King College,6301 S Halsted Street ,60621,6025340,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1552,1.0,3191,purple_binder_early_childhood.csv, Kennedy-King College,6800 S Wentworth Avenue ,60621,6025340,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +186,0.9999999578531515,3192,purple_binder_early_childhood.csv, Kenyatta's Day Care,2334 E 75th Street ,60649,2213777,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1553,1.0,3193,purple_binder_early_childhood.csv, Kids Hope United,111 E Wacker Drive ,60601,9226733,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1554,1.0,3194,purple_binder_early_childhood.csv, Kids Hope United - Harris Child Development Center,6200 S Drexel Avenue ,60637,3245612,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1555,1.0,3195,purple_binder_early_childhood.csv, Kids Hope United - Kids Hope Child Development Center,5244 N Lakewood Avenue ,60640,9070278,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +204,0.9999999578531515,3196,purple_binder_early_childhood.csv, Kidwatch Plus,3901 N Ridgeway Avenue ,60618,5395431,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1556,1.0,3197,purple_binder_early_childhood.csv, Kinara Community Services Day Care Center,6201 S Sangamon Street ,60621,3710720,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1557,1.0,3198,purple_binder_early_childhood.csv, Kinder Care Kiddy College,7536 S Stewart ,60620,2243569,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1558,1.0,3199,purple_binder_early_childhood.csv, KinderCare,1501 S State Street ,60605,9131557,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +87,1.0,3200,purple_binder_early_childhood.csv, Korean American Community Services,4300 N California Avenue ,60618,5835501,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1559,1.0,3201,purple_binder_early_childhood.csv, Lake Shore Preparatory School,300 W Hill Street ,60610,2662020,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +220,0.9999999578531515,3202,purple_binder_early_childhood.csv, Lake Shore School,5611 N Clark Street ,60660,5616707,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1560,1.0,3203,purple_binder_early_childhood.csv, LaSalle Street Cycle,735 W Division Street ,60610,6642880,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +184,0.99999994,3204,purple_binder_early_childhood.csv, Laurance Armour Day School,2150 W Harrison Avenue ,60612,9426501,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1561,1.0,3205,purple_binder_early_childhood.csv, Literacy Chicago,17 N State Street ,60602,8701100,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1562,1.0,3206,purple_binder_early_childhood.csv, Little Angels Day Care Center,6407 N Maplewood ,60645,3389770,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1563,1.0,3207,purple_binder_early_childhood.csv, Little Harvard Academy,2708 W Peterson Avenue ,60659,9731500,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +233,0.99999994,3208,purple_binder_early_childhood.csv, Little People Day Care School,7428 N Rogers Avenue ,60626,7612305,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +167,0.99999994,3209,purple_binder_early_childhood.csv, Loyola University Chicago - Preschool/Day Care,1052 W Loyola Avenue ,60626,5083444,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +177,0.9999999578531515,3210,purple_binder_early_childhood.csv, Lutheran Day Nursery School,1802 N Fairfield Avenue ,60647,4864222,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +842,0.99999994,3211,purple_binder_early_childhood.csv, Lutheran Family Mission - North Avenue,5251 W North Avenue ,60639,6372344,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +843,1.0,3212,purple_binder_early_childhood.csv, Lutheran Family Mission Family Center,4920 W Madison Street ,60644,2872921,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +20,1.0,3213,purple_binder_early_childhood.csv, Lutheran Social Services - North Austin,1500 N Mason Avenue ,60651,6354600,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +35,1.0,3214,purple_binder_early_childhood.csv, Lutheran Social Services - Rogers Park,1754 W Devon Avenue ,60660,6354600,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +101,0.9999999578531515,3215,purple_binder_early_childhood.csv, Lutheran Social Services - Winthrop Children's Center,4848 N Winthrop Avenue ,60640,8783210,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1564,1.0,3216,purple_binder_early_childhood.csv, Luv N Care Day School,5776 N Lincoln Avenue ,60659,7459591,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1565,1.0,3217,purple_binder_early_childhood.csv, Lydia Home Association - Lydia Learn and Care,4300 W Irving Park Road ,60641,7361447,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1566,1.0,3218,purple_binder_early_childhood.csv, Malcolm X College,1900 W Van Buren Street ,60612,8507300,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +582,0.9999999701976776,3219,purple_binder_early_childhood.csv, Marcy Newberry Association,1073 W Maxwell Street ,60608,8297555,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1567,1.0,3220,purple_binder_early_childhood.csv, Marcy Newberry Association - Ashland Community Center,1440 S Ashland Avenue ,60608,6662036,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +219,0.9999999733439925,3221,purple_binder_early_childhood.csv, Marcy Newberry Association - Austin Town Hall,5610 W Lake Street ,60644,2611505,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +23,0.9999999483808635,3222,purple_binder_early_childhood.csv, Marcy Newberry Association - Marcy Center,1539 S Springfield Avenue ,60623,7612300,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1568,1.0,3223,purple_binder_early_childhood.csv, Marcy Newberry Association - North Austin Headstart,1256 N Waller Avenue ,60651,2611700,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1569,1.0,3224,purple_binder_early_childhood.csv, Marcy Newberry Association - Rockwell Center,2540 W Jackson Boulevard ,60612,6662931,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1570,1.0,3225,purple_binder_early_childhood.csv, Marillac Social Center,2114 W 22nd Place ,60612,7227440,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +182,0.9999999578531515,3226,purple_binder_early_childhood.csv, Marillac Social Center Supportive Services,212 S Francisco Avenue ,60612,7227440,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +24,0.9999999076608814,3227,purple_binder_early_childhood.csv, Mary Craine Center,1545 W Morse Avenue ,60626,2621390,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +59,0.9999999362799544,3228,purple_binder_early_childhood.csv, Mary Crane Center North,2905 N Leavitt Street ,60618,9753322,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1571,1.0,3229,purple_binder_early_childhood.csv, Mary Crane Family and Day Care Center,2905 N Clybourn Avenue ,60618,3485528,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1572,1.0,3230,purple_binder_early_childhood.csv, McKinney's Home Day Care Center,1109 N Laramie Avenue ,60651,3791685,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1573,1.0,3231,purple_binder_early_childhood.csv, Metropolitan Family Services - Calumet Center,235 E 103rd Street ,60628,3713600,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +69,0.9999999578531515,3232,purple_binder_early_childhood.csv, Metropolitan Family Services Children's Center,3215 W 63rd Street ,60629,8842350,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1574,1.0,3233,purple_binder_early_childhood.csv, Near the Pier Development Center,540 N Lake Shore Drive ,60611,5272223,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +236,0.99999994,3234,purple_binder_early_childhood.csv, New Concept School,7825 S Ellis Avenue ,60619,6519599,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1575,1.0,3235,purple_binder_early_childhood.csv, New Pisgah Day Care Center,8130 S Racine Avenue ,60620,8735392,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +40,0.9999999559790524,3236,purple_binder_early_childhood.csv, North Avenue Day Nursery,2001 W Pierce Street ,60622,3424499,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1576,1.0,3237,purple_binder_early_childhood.csv, Northshore Academy for Children,6711 N Sheridan Road ,60626,7434744,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1577,1.0,3238,purple_binder_early_childhood.csv, Olive-Harvey College,10001 S Woodlawn Avenue ,60628,2916700,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +119,0.9999999496248808,3239,purple_binder_early_childhood.csv, Onward Neighborhood House,600 N Leavitt Street ,60612,6666726,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1578,1.0,3240,purple_binder_early_childhood.csv, Onward Neighborhood House - After School,2158 W Ohio Street ,60612,2437920,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1579,1.0,3241,purple_binder_early_childhood.csv, Our Lady of Guadalupe Early Childhood Center,9129 S Burley Avenue ,60617,9785320,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1580,1.0,3242,purple_binder_early_childhood.csv, Our Lady of Lourdes Early Childhood Center,1449 S Keeler Avenue ,60623,5213126,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1581,1.0,3243,purple_binder_early_childhood.csv, Our Lady of Tepeyac Early Childhood Center,2414 S Albany Avenue ,60623,2775888,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +844,1.0,3244,purple_binder_early_childhood.csv, Progressive Community Center,56 E 48th Street ,60615,9246564,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1582,1.0,3245,purple_binder_early_childhood.csv, Resurrection Child Care Center,7435 W Talcott Avenue ,60631,7925253,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1583,1.0,3246,purple_binder_early_childhood.csv, Resurrection Day Care Center,1849 N Hermitage Avenue ,60622,3847142,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1584,1.0,3247,purple_binder_early_childhood.csv, Richard J. Daley College,7500 S Pulaski Road ,60652,8387803,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1585,1.0,3248,purple_binder_early_childhood.csv, Rogers Park Montessori School,1800 W Balmoral Avenue ,60640,2711700,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1586,1.0,3249,purple_binder_early_childhood.csv, Roseland Christian Ministries Center,10858 S Michigan Avenue ,60628,2645665,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1587,1.0,3250,purple_binder_early_childhood.csv, Ruthie Ann's Day Care Center,423 S Central Park Avenue ,60624,7222827,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1588,1.0,3251,purple_binder_early_childhood.csv, Saint Bronislava Early Childhood Center,8716 S Colfax Avenue ,60617,6557305,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1589,1.0,3252,purple_binder_early_childhood.csv, Saint Paul's House and Health Care Center - Byron,2815 W Byron Street ,60618,5838385,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1590,1.0,3253,purple_binder_early_childhood.csv, Salvation Army - Child Care,1515 W Monroe Street ,60607,7332533,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +105,0.9999999549431237,3254,purple_binder_early_childhood.csv, Salvation Army - Columbus Park School,500 S Central Avenue ,60644,9214162,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +0,0.9999998986915843,3255,purple_binder_early_childhood.csv, Salvation Army - Chicago Temple Corps Community Center,1 N Ogden Avenue ,60607,2262649,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +817,1.0,3256,purple_binder_early_childhood.csv, Salvation Army - Edsel Albert Ammons Nursery,549 E 76th Street ,60619,4837040,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +249,0.9999999701976776,3257,purple_binder_early_childhood.csv, Salvation Army - Family Outreach Initiative,845 W 69th Street ,60621,3824706,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +86,0.9999999549431237,3258,purple_binder_early_childhood.csv, Salvation Army - New Hope School,4255 W Division Street ,60651,7224908,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +845,1.0,3259,purple_binder_early_childhood.csv, Salvation Army - Shiloah School,9211 S Justine Street ,60620,8814142,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1591,1.0,3260,purple_binder_early_childhood.csv, Sinai Preschool,15 W Delaware Place ,60610,8677010,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1592,1.0,3261,purple_binder_early_childhood.csv, South Central Community Service,7001 S Union Avenue ,60621,6028120,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +820,1.0,3262,purple_binder_early_childhood.csv, South East Asia Center,1134 W Ainslie Street ,60640,9897433,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +239,1.0,3263,purple_binder_early_childhood.csv, South Harper Montessori Preschool,8358 S Stony Island Avenue ,60617,7343120,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +25,0.9999998807907104,3264,purple_binder_early_childhood.csv, South Shore Bible Baptist Church Marantha,1631 E 71st Street ,60649,4937500,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +583,0.9999999311744846,3265,purple_binder_early_childhood.csv, South-East Asia Center,1112 W Foster Avenue ,60640,9897433,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +213,0.999999946687985,3266,purple_binder_early_childhood.csv, South-East Asia Center,5120 N Broadway Avenue ,60640,9896927,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1593,1.0,3267,purple_binder_early_childhood.csv, Sr. Bonaventure Children's Center,3522 N Central Avenue ,60634,2023540,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +267,0.9999999,3268,purple_binder_early_childhood.csv, St Augustine College - Canillatas School,1333 W Argyle Street ,60640,8783231,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +75,0.9999999538304407,3269,purple_binder_early_childhood.csv, St. Augustine College Flamboyan,3401 W McLean Avenue ,60647,2763423,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1594,1.0,3270,purple_binder_early_childhood.csv, St. Paul-Chaney Ford Child Care,4528 S Wabash Avenue ,60653,2858721,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1595,1.0,3271,purple_binder_early_childhood.csv, St. Timothy Day Care Center,3555 W Huron Street ,60624,8541662,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +183,0.9999998967617268,3272,purple_binder_early_childhood.csv, St. Vincent De Paul Center,2145 N Halsted Street ,60614,9436776,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1596,1.0,3273,purple_binder_early_childhood.csv, Sunshine Preschool,2100 W Devon Avenue ,60659,7649815,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1597,1.0,3274,purple_binder_early_childhood.csv, Swedish Covenant Hospital Child Care,5140 N California Avenue ,60625,9071008,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1598,1.0,3275,purple_binder_early_childhood.csv, Teach 21 Day Care Inc,4343 N Clarendon Avenue ,60613,2810069,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1599,1.0,3276,purple_binder_early_childhood.csv, The Honey Tree Child Care,201 N Clark Street Floor 2 ,60606,5539100,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +8,0.9999999455886526,3277,purple_binder_early_childhood.csv, Thresholds - Mother's Project,1110 W Belmont Avenue ,60657,5373290,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +110,0.9999998858657947,3278,purple_binder_early_childhood.csv, Trinity Day Care Center,532 W 95th Street ,60628,4883511,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +117,0.9999999076608814,3279,purple_binder_early_childhood.csv, Trinity Resources Hope for Youth,5900 W Iowa Street ,60651,6260323,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1600,1.0,3280,purple_binder_early_childhood.csv, Trinity Resources Progressive True Vine,5035 W Ohio Street ,60644,6268254,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1601,1.0,3281,purple_binder_early_childhood.csv, Urban Family and Community Centers,4241 W Washington Boulevard ,60624,7228333,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1602,1.0,3282,purple_binder_early_childhood.csv, V and J Day Care Center,1 E 113th Street ,60628,7853940,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +107,0.9999999403953552,3283,purple_binder_early_childhood.csv, Wayman Daycare Center,511 W Elm Street ,60610,9432120,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +126,0.9999999578531515,3284,purple_binder_early_childhood.csv, Woodlawn AME,6456 S Evans Avenue ,60637,6671400,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1603,1.0,3285,purple_binder_early_childhood.csv, Woodlawn Organization,6040 S Harper Avenue ,60637,2885840,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1604,1.0,3286,purple_binder_early_childhood.csv, Woodlawn Organization - Early Childhood Development Center,6450 S Champlain Avenue ,60637,3631238,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +243,0.9999999311744846,3287,purple_binder_early_childhood.csv, Woodlawn Organization - Early Childhood Development Center,950 E 61st Street ,60637,6673300,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +846,1.0,3288,purple_binder_early_childhood.csv, Woodlawn T.W.O. Infant Toddler School,1445 E 65th Street ,60637,3245880,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +847,1.0,3289,purple_binder_early_childhood.csv, YMCA Austin School,501 N Central Avenue ,60644,2879120,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1605,1.0,3290,purple_binder_early_childhood.csv, YMCA Bowen School,2710 E 89th Street ,60617,9330166,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +848,1.0,3291,purple_binder_early_childhood.csv, YMCA Duncan School,1001 W Roosevelt Road ,60608,7385456,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +229,0.9999999701976776,3292,purple_binder_early_childhood.csv, YMCA Garfield School,7 N Homan Avenue ,60624,2653900,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +178,0.9999999578531515,3293,purple_binder_early_childhood.csv, YMCA McCormick Tribune School,1834 N Lawndale Avenue ,60647,2352525,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +200,0.9999999701976776,3294,purple_binder_early_childhood.csv, YMCA North Lawndale,3449 W Arthington Street ,60624,6380773,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1606,1.0,3295,purple_binder_early_childhood.csv, YMCA South Chicago II,8902 S Brandon Avenue ,60617,7217230,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +197,0.9999999578531515,3296,purple_binder_early_childhood.csv, YMCA South Chicago School,3039 E 91st Street ,60617,7219100,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +223,0.9999999578531515,3297,purple_binder_early_childhood.csv, YMCA South Side,6330 S Stony Island Avenue ,60637,9470700,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1607,1.0,3298,purple_binder_early_childhood.csv, YMCA Wabash,3763 S Wabash Avenue ,60653,2850020,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1608,1.0,3299,purple_binder_early_childhood.csv, YMCA West Side,5080 W Harrison Street ,60644,9553100,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +1609,1.0,3300,purple_binder_early_childhood.csv, YWCA Metropolitan Chicago,360 N Michigan Avenue ,60601,3726600,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +824,1.0,3301,purple_binder_early_childhood.csv, Beasley,5255 S State Street ,60609,5351230,,,,,,,,,,,,,,,,,,,,,,,,,,Child Parent Center +838,1.0,3302,purple_binder_early_childhood.csv, Delano,3905 W Wilcox Street ,60624,5346450,,,,,,,,,,,,,,,,,,,,,,,,,,Child Parent Center +1610,1.0,3303,purple_binder_early_childhood.csv, Dewey,638 W 54th Place ,60609,5351671,,,,,,,,,,,,,,,,,,,,,,,,,,Child Parent Center +157,0.9999999513330113,3304,purple_binder_early_childhood.csv, Ferguson CPC,1420 N Hudson Avenue ,60610,5348580,,,,,,,,,,,,,,,,,,,,,,,,,,Child Parent Center +160,0.999999946687985,3305,purple_binder_early_childhood.csv, Hansberry,4055 W Arthington Street ,60624,5346931,,,,,,,,,,,,,,,,,,,,,,,,,,Child Parent Center +156,0.9999999448168219,3306,purple_binder_early_childhood.csv, Herzl CPC,1401 S Hamlin Avenue ,60623,5341751,,,,,,,,,,,,,,,,,,,,,,,,,,Child Parent Center +162,0.9999999513330113,3307,purple_binder_early_childhood.csv, Overton,4935 S Indiana Avenue ,60615,5351811,,,,,,,,,,,,,,,,,,,,,,,,,,Child Parent Center +1611,1.0,3308,purple_binder_early_childhood.csv, Parker,328 W 69th Street ,60621,5353853,,,,,,,,,,,,,,,,,,,,,,,,,,Child Parent Center +155,0.9999999578531515,3309,purple_binder_early_childhood.csv, Von Humboldt,1345 N Rockwell Street ,60622,5344668,,,,,,,,,,,,,,,,,,,,,,,,,,Child Parent Center +164,0.9999999448168219,3310,purple_binder_early_childhood.csv, Wheatley,902 E 133rd Place ,60627,5355718,,,,,,,,,,,,,,,,,,,,,,,,,,Child Parent Center +81,0.9999999562621483,3311,purple_binder_early_childhood.csv, Carole Robertson Center For Learning,3701 W Ogden Avenue ,60623,5228400,,,,,,,,,,,,,,,,,,,,,,,,,,Early Head Start +61,0.9999999544762006,3312,purple_binder_early_childhood.csv, Carole Robertson Center For Learning,2929 W 19th Street ,60623,5211600,,,,,,,,,,,,,,,,,,,,,,,,,,Early Head Start +309,0.9999999403953552,3313,purple_binder_early_childhood.csv, Catholic Charities Chicago - Chicago Lawn,3001 W 59th Street ,60629,9251085,,,,,,,,,,,,,,,,,,,,,,,,,,Early Head Start +153,0.9999999544762006,3314,purple_binder_early_childhood.csv, Centers for New Horizons - Altgeld,941 E 132nd Street ,60627,4683055,,,,,,,,,,,,,,,,,,,,,,,,,,Early Head Start +1612,1.0,3315,purple_binder_early_childhood.csv, Diversey Day Care,3003 W Touhy Avenue ,60647,3427777,,,,,,,,,,,,,,,,,,,,,,,,,,Early Head Start +32,0.9999999640570468,3316,purple_binder_early_childhood.csv, El Hogar Del Nino,1718 S Loomis Street ,60608,5639796,,,,,,,,,,,,,,,,,,,,,,,,,,Early Head Start +584,0.9999999578531515,3317,purple_binder_early_childhood.csv, Erie Neighborhood House,1347 W Erie Street ,60642,6663430,,,,,,,,,,,,,,,,,,,,,,,,,,Early Head Start +784,1.0,3318,purple_binder_early_childhood.csv, Firman Community Services - Early Beginnings,4705 S State Street ,60609,,,,,,,,,,,,,,,,,,,,,,,,,,,Early Head Start +1613,1.0,3319,purple_binder_early_childhood.csv, First Start Children's Academy,4753 W Washington Boulevard ,60644,3794928,,,,,,,,,,,,,,,,,,,,,,,,,,Early Head Start +192,0.999999943169201,3320,purple_binder_early_childhood.csv, Gads Hill Center - Sinai Community Institute,2653 W Ogden Avenue ,60608,5211196,,,,,,,,,,,,,,,,,,,,,,,,,,Early Head Start +791,1.0,3321,purple_binder_early_childhood.csv, Hektoen Institute,1900 W Polk Street ,60612,8646560,,,,,,,,,,,,,,,,,,,,,,,,,,Early Head Start +1614,1.0,3322,purple_binder_early_childhood.csv, Henry Booth House - Allison's Infant & Toddler Center,234 E 114th Street ,60628,8404502,,,,,,,,,,,,,,,,,,,,,,,,,,Early Head Start +582,0.9999999701976776,3323,purple_binder_early_childhood.csv, Marcy Newberry Association,1073 W Maxwell Street ,60608,8297555,,,,,,,,,,,,,,,,,,,,,,,,,,Early Head Start +16,0.9999999381453369,3324,purple_binder_early_childhood.csv, Marcy Newberry Association,1312 S Racine Avenue ,60608,7466024,,,,,,,,,,,,,,,,,,,,,,,,,,Early Head Start +40,0.9999999559790524,3325,purple_binder_early_childhood.csv, North Avenue Day Nursery,2001 W Pierce Street ,60622,3424499,,,,,,,,,,,,,,,,,,,,,,,,,,Early Head Start +812,1.0,3326,purple_binder_early_childhood.csv, North Avenue Day Nursery,4339 W McLean Avenue ,60639,,,,,,,,,,,,,,,,,,,,,,,,,,,Early Head Start +1615,1.0,3327,purple_binder_early_childhood.csv, Precious Infants & Tots Learning Center,624 E 47th Street ,60653,2682685,,,,,,,,,,,,,,,,,,,,,,,,,,Early Head Start +199,1.0,3328,purple_binder_early_childhood.csv, Rachel's Learning Center #1,3430 W Roosevelt Road ,60624,5330444,,,,,,,,,,,,,,,,,,,,,,,,,,Early Head Start +216,0.99999994,3329,purple_binder_early_childhood.csv, Rachel's Learning Center #2,5242 W North Avenue ,60639,2371444,,,,,,,,,,,,,,,,,,,,,,,,,,Early Head Start +818,1.0,3330,purple_binder_early_childhood.csv, Salvation Army,1631 E 71st Street ,60649,4937500,,,,,,,,,,,,,,,,,,,,,,,,,,Early Head Start +215,0.99999994,3331,purple_binder_early_childhood.csv, Whiz Kids Nursery Center,518 W 103rd Street ,60628,2339445,,,,,,,,,,,,,,,,,,,,,,,,,,Early Head Start +229,0.9999999701976776,3332,purple_binder_early_childhood.csv, YMCA Garfield,7 N Homan Avenue ,60624,2653900,,,,,,,,,,,,,,,,,,,,,,,,,,Early Head Start +1616,1.0,3333,purple_binder_early_childhood.csv, YMCA Marshall,3250 W Adams Street ,60624,2650145,,,,,,,,,,,,,,,,,,,,,,,,,,Early Head Start +200,0.9999999701976776,3334,purple_binder_early_childhood.csv, YMCA North Lawndale,3449 W Arthington Street ,60624,6380773,,,,,,,,,,,,,,,,,,,,,,,,,,Early Head Start +1617,1.0,3335,purple_binder_early_childhood.csv, C.C.C. Learning Center,219 S Dearborn Street ,60605,3538687,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +152,0.99999994,3336,purple_binder_early_childhood.csv, Haymarket Center,932 W. Washington Blvd ,60607,2267984,,,,,,,,,,,,,,,,,,,,,,,,,,Early Head Start diff --git a/csv_example/csv_example_training.json b/csv_example/csv_example_training.json new file mode 100644 index 00000000..c07929dc --- /dev/null +++ b/csv_example/csv_example_training.json @@ -0,0 +1 @@ +{"distinct": [], "match": [[{"Id": "285", "Source": "cps_early_childhood_portal_scrape.csv", "Site name": "st. vincent depaul child development", "Address": "2145 n. halsted", "Zip": null, "Phone": null, "Fax": null, "Program Name": "community partnerships", "Length of Day": "8-11 hours, varies by facility", "IDHS Provider ID": null, "Agency": null, "Neighborhood": null, "Funded Enrollment": null, "Program Option": null, "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": null, "CC fund": null, "Progmod": null, "Website": null, "Executive Director": null, "Center Director": null, "ECE Available Programs": null, "NAEYC Valid Until": null, "NAEYC Program Id": null, "Email Address": null, "Ounce of Prevention Description": null, "Purple binder service type": null, "Column": null, "Column2": null}, {"Id": "2789", "Source": "ece chicago find a school scrape.csv", "Site name": "st vincent depaul", "Address": "2145 n. halsted", "Zip": "60614", "Phone": "9436776", "Fax": null, "Program Name": null, "Length of Day": null, "IDHS Provider ID": null, "Agency": null, "Neighborhood": "lincoln park", "Funded Enrollment": null, "Program Option": null, "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": null, "CC fund": null, "Progmod": null, "Website": null, "Executive Director": null, "Center Director": null, "ECE Available Programs": "cp", "NAEYC Valid Until": null, "NAEYC Program Id": null, "Email Address": null, "Ounce of Prevention Description": null, "Purple binder service type": null, "Column": null, "Column2": null}], [{"Id": "655", "Source": "cps_early_childhood_portal_scrape.csv", "Site name": "el valor - teddy bear 1 51st street", "Address": "2649 w 51st st", "Zip": null, "Phone": null, "Fax": null, "Program Name": "head start", "Length of Day": "half day/full day", "IDHS Provider ID": null, "Agency": null, "Neighborhood": null, "Funded Enrollment": null, "Program Option": null, "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": null, "CC fund": null, "Progmod": null, "Website": null, "Executive Director": null, "Center Director": null, "ECE Available Programs": null, "NAEYC Valid Until": null, "NAEYC Program Id": null, "Email Address": null, "Ounce of Prevention Description": null, "Purple binder service type": null, "Column": null, "Column2": null}, {"Id": "2158", "Source": "dfss_agencysitelies_2012.csv", "Site name": "el valor teddy bear 1", "Address": "2649 w 51st st.", "Zip": "60632", "Phone": "4760700", "Fax": null, "Program Name": null, "Length of Day": null, "IDHS Provider ID": null, "Agency": null, "Neighborhood": null, "Funded Enrollment": "el valor", "Program Option": null, "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": null, "CC fund": null, "Progmod": null, "Website": null, "Executive Director": null, "Center Director": "www.elvalor.org", "ECE Available Programs": "vincent allocco", "NAEYC Valid Until": "francy torres", "NAEYC Program Id": null, "Email Address": null, "Ounce of Prevention Description": null, "Purple binder service type": null, "Column": null, "Column2": null}], [{"Id": "1735", "Source": "chapin_dfss_providers_2011_070212.csv", "Site name": "henry booth house brite new minds", "Address": "112 e 51st street", "Zip": "60615", "Phone": null, "Fax": null, "Program Name": null, "Length of Day": null, "IDHS Provider ID": null, "Agency": null, "Neighborhood": null, "Funded Enrollment": "henry booth house", "Program Option": "grand boulevard", "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": null, "CC fund": "yes", "Progmod": "no", "Website": "no", "Executive Director": null, "Center Director": null, "ECE Available Programs": null, "NAEYC Valid Until": null, "NAEYC Program Id": null, "Email Address": null, "Ounce of Prevention Description": null, "Purple binder service type": null, "Column": null, "Column2": null}, {"Id": "2184", "Source": "dfss_agencysitelies_2012.csv", "Site name": "henry booth house brite new minds", "Address": "112 e 51st st.", "Zip": "60615", "Phone": null, "Fax": null, "Program Name": null, "Length of Day": null, "IDHS Provider ID": null, "Agency": null, "Neighborhood": null, "Funded Enrollment": "henry booth house", "Program Option": null, "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": null, "CC fund": null, "Progmod": null, "Website": null, "Executive Director": null, "Center Director": "www.henryboothhouse.org", "ECE Available Programs": "scott perkins", "NAEYC Valid Until": null, "NAEYC Program Id": null, "Email Address": null, "Ounce of Prevention Description": null, "Purple binder service type": null, "Column": null, "Column2": null}], [{"Id": "2423", "Source": "ece chicago find a school scrape.csv", "Site name": "christopher house uptown", "Address": "4701 n. winthorp", "Zip": "60640", "Phone": "7694540", "Fax": null, "Program Name": null, "Length of Day": null, "IDHS Provider ID": null, "Agency": null, "Neighborhood": "uptown", "Funded Enrollment": null, "Program Option": null, "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": null, "CC fund": null, "Progmod": null, "Website": null, "Executive Director": null, "Center Director": null, "ECE Available Programs": "cp", "NAEYC Valid Until": null, "NAEYC Program Id": null, "Email Address": null, "Ounce of Prevention Description": null, "Purple binder service type": null, "Column": null, "Column2": null}, {"Id": "2424", "Source": "ece chicago find a school scrape.csv", "Site name": "christopher house uptown i/t", "Address": "4701 n. winthorp", "Zip": "60640", "Phone": "7694540", "Fax": null, "Program Name": null, "Length of Day": null, "IDHS Provider ID": null, "Agency": null, "Neighborhood": "uptown", "Funded Enrollment": null, "Program Option": null, "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": null, "CC fund": null, "Progmod": null, "Website": null, "Executive Director": null, "Center Director": null, "ECE Available Programs": "cp", "NAEYC Valid Until": null, "NAEYC Program Id": null, "Email Address": null, "Ounce of Prevention Description": null, "Purple binder service type": null, "Column": null, "Column2": null}], [{"Id": "2705", "Source": "ece chicago find a school scrape.csv", "Site name": "ounce of prev ec center", "Address": "5044 s wabash", "Zip": "60615", "Phone": "9242334", "Fax": null, "Program Name": null, "Length of Day": null, "IDHS Provider ID": null, "Agency": null, "Neighborhood": "grand boulevard", "Funded Enrollment": null, "Program Option": null, "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": null, "CC fund": null, "Progmod": null, "Website": null, "Executive Director": null, "Center Director": null, "ECE Available Programs": "cp", "NAEYC Valid Until": null, "NAEYC Program Id": null, "Email Address": null, "Ounce of Prevention Description": null, "Purple binder service type": null, "Column": null, "Column2": null}, {"Id": "2706", "Source": "ece chicago find a school scrape.csv", "Site name": "ounce of prev ec center i/t", "Address": "5044 s wabash", "Zip": "60615", "Phone": "9242334", "Fax": null, "Program Name": null, "Length of Day": null, "IDHS Provider ID": null, "Agency": null, "Neighborhood": "grand boulevard", "Funded Enrollment": null, "Program Option": null, "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": null, "CC fund": null, "Progmod": null, "Website": null, "Executive Director": null, "Center Director": null, "ECE Available Programs": "cp", "NAEYC Valid Until": null, "NAEYC Program Id": null, "Email Address": null, "Ounce of Prevention Description": null, "Purple binder service type": null, "Column": null, "Column2": null}], [{"Id": "1353", "Source": "idhs_child_care_provider_list.csv", "Site name": "northwestern university settlement", "Address": "1400 west augusta blvd.", "Zip": "60642", "Phone": "2787471", "Fax": "(773) 278-7536", "Program Name": null, "Length of Day": null, "IDHS Provider ID": "5701-4911-5433-005", "Agency": null, "Neighborhood": null, "Funded Enrollment": null, "Program Option": null, "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": null, "CC fund": null, "Progmod": null, "Website": null, "Executive Director": null, "Center Director": null, "ECE Available Programs": null, "NAEYC Valid Until": null, "NAEYC Program Id": null, "Email Address": null, "Ounce of Prevention Description": null, "Purple binder service type": null, "Column": null, "Column2": null}, {"Id": "2958", "Source": "naeyc_accreditation.csv", "Site name": "northwestern university settlement association", "Address": "1400 west augusta blvd", "Zip": "60642", "Phone": "2787471", "Fax": null, "Program Name": null, "Length of Day": null, "IDHS Provider ID": null, "Agency": null, "Neighborhood": null, "Funded Enrollment": null, "Program Option": null, "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": null, "CC fund": null, "Progmod": null, "Website": null, "Executive Director": null, "Center Director": "http://www.nush.org", "ECE Available Programs": null, "NAEYC Valid Until": null, "NAEYC Program Id": null, "Email Address": "04/30/14", "Ounce of Prevention Description": "587968", "Purple binder service type": null, "Column": null, "Column2": null}], [{"Id": "1680", "Source": "chapin_dfss_providers_2011_070212.csv", "Site name": "erie neighborhood house erie community center", "Address": "1701 w superior", "Zip": "60622", "Phone": "5635800", "Fax": null, "Program Name": null, "Length of Day": null, "IDHS Provider ID": null, "Agency": null, "Neighborhood": null, "Funded Enrollment": "erie neighborhood house", "Program Option": "west town", "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": "celena roldan", "CC fund": "yes", "Progmod": "no", "Website": "no", "Executive Director": "2640it(child care it center), 3256ps(hs collaboration with c", "Center Director": null, "ECE Available Programs": null, "NAEYC Valid Until": null, "NAEYC Program Id": null, "Email Address": null, "Ounce of Prevention Description": null, "Purple binder service type": null, "Column": null, "Column2": null}, {"Id": "3142", "Source": "purple_binder_early_childhood.csv", "Site name": "erie neighborhood house", "Address": "1701 w superior street", "Zip": "60622", "Phone": "5635800", "Fax": null, "Program Name": null, "Length of Day": null, "IDHS Provider ID": null, "Agency": null, "Neighborhood": null, "Funded Enrollment": null, "Program Option": null, "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": null, "CC fund": null, "Progmod": null, "Website": null, "Executive Director": null, "Center Director": null, "ECE Available Programs": null, "NAEYC Valid Until": null, "NAEYC Program Id": null, "Email Address": null, "Ounce of Prevention Description": null, "Purple binder service type": null, "Column": null, "Column2": "child care"}], [{"Id": "1854", "Source": "chapin_dfss_providers_2011_070212.csv", "Site name": "north avenue day nursery north avenue day nursery", "Address": "2001 w pierce", "Zip": "60622", "Phone": "3424499", "Fax": null, "Program Name": null, "Length of Day": null, "IDHS Provider ID": null, "Agency": null, "Neighborhood": null, "Funded Enrollment": "north avenue day nursery", "Program Option": "west town", "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": "steve koll", "CC fund": "yes", "Progmod": "no", "Website": "yes", "Executive Director": "3270ps(hs collaboration with childcare & prek), 2742ps(child", "Center Director": null, "ECE Available Programs": null, "NAEYC Valid Until": null, "NAEYC Program Id": null, "Email Address": null, "Ounce of Prevention Description": null, "Purple binder service type": null, "Column": null, "Column2": null}, {"Id": "3236", "Source": "purple_binder_early_childhood.csv", "Site name": "north avenue day nursery", "Address": "2001 w pierce street", "Zip": "60622", "Phone": "3424499", "Fax": null, "Program Name": null, "Length of Day": null, "IDHS Provider ID": null, "Agency": null, "Neighborhood": null, "Funded Enrollment": null, "Program Option": null, "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": null, "CC fund": null, "Progmod": null, "Website": null, "Executive Director": null, "Center Director": null, "ECE Available Programs": null, "NAEYC Valid Until": null, "NAEYC Program Id": null, "Email Address": null, "Ounce of Prevention Description": null, "Purple binder service type": null, "Column": null, "Column2": "child care"}], [{"Id": "2327", "Source": "ece chicago find a school scrape.csv", "Site name": "belmont-cragin", "Address": "6041 w. diversey", "Zip": "60639", "Phone": "5343318", "Fax": null, "Program Name": null, "Length of Day": null, "IDHS Provider ID": null, "Agency": null, "Neighborhood": "belmont cragin", "Funded Enrollment": null, "Program Option": null, "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": null, "CC fund": null, "Progmod": null, "Website": null, "Executive Director": null, "Center Director": null, "ECE Available Programs": "pfa-reg ts", "NAEYC Valid Until": null, "NAEYC Program Id": null, "Email Address": null, "Ounce of Prevention Description": null, "Purple binder service type": null, "Column": null, "Column2": null}, {"Id": "2874", "Source": "naeyc_accreditation.csv", "Site name": "belmont cragin early childhood center", "Address": "6041 w. diversey avenue", "Zip": "60639", "Phone": "5343318", "Fax": null, "Program Name": null, "Length of Day": null, "IDHS Provider ID": null, "Agency": null, "Neighborhood": null, "Funded Enrollment": null, "Program Option": null, "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": null, "CC fund": null, "Progmod": null, "Website": null, "Executive Director": null, "Center Director": null, "ECE Available Programs": null, "NAEYC Valid Until": null, "NAEYC Program Id": null, "Email Address": "08/01/16", "Ounce of Prevention Description": "723729", "Purple binder service type": "mmoya-leanga@cps.edu", "Column": null, "Column2": null}], [{"Id": "1865", "Source": "chapin_dfss_providers_2011_070212.csv", "Site name": "salvation army columbus park", "Address": "500 s central", "Zip": "60644", "Phone": "9214162", "Fax": null, "Program Name": null, "Length of Day": null, "IDHS Provider ID": null, "Agency": null, "Neighborhood": null, "Funded Enrollment": "salvation army", "Program Option": "austin", "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": "felice lewis", "CC fund": "yes", "Progmod": "no", "Website": "no", "Executive Director": "7017ps(hs collaboration with childcare & prek)", "Center Director": null, "ECE Available Programs": null, "NAEYC Valid Until": null, "NAEYC Program Id": null, "Email Address": null, "Ounce of Prevention Description": null, "Purple binder service type": null, "Column": null, "Column2": null}, {"Id": "3254", "Source": "purple_binder_early_childhood.csv", "Site name": "salvation army - columbus park school", "Address": "500 s central avenue", "Zip": "60644", "Phone": "9214162", "Fax": null, "Program Name": null, "Length of Day": null, "IDHS Provider ID": null, "Agency": null, "Neighborhood": null, "Funded Enrollment": null, "Program Option": null, "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": null, "CC fund": null, "Progmod": null, "Website": null, "Executive Director": null, "Center Director": null, "ECE Available Programs": null, "NAEYC Valid Until": null, "NAEYC Program Id": null, "Email Address": null, "Ounce of Prevention Description": null, "Purple binder service type": null, "Column": null, "Column2": "child care"}], [{"Id": "546", "Source": "cps_early_childhood_portal_scrape.csv", "Site name": "brown academy, r.", "Address": "12607 s. union", "Zip": null, "Phone": "5355385", "Fax": null, "Program Name": "head start", "Length of Day": "3-4 hours", "IDHS Provider ID": null, "Agency": null, "Neighborhood": null, "Funded Enrollment": null, "Program Option": null, "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": null, "CC fund": null, "Progmod": null, "Website": null, "Executive Director": null, "Center Director": null, "ECE Available Programs": null, "NAEYC Valid Until": null, "NAEYC Program Id": null, "Email Address": null, "Ounce of Prevention Description": null, "Purple binder service type": null, "Column": null, "Column2": null}, {"Id": "2344", "Source": "ece chicago find a school scrape.csv", "Site name": "brown academy", "Address": "12607 s. union", "Zip": "60628", "Phone": "5355385", "Fax": null, "Program Name": null, "Length of Day": null, "IDHS Provider ID": null, "Agency": null, "Neighborhood": "west pullman", "Funded Enrollment": null, "Program Option": null, "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": null, "CC fund": null, "Progmod": null, "Website": null, "Executive Director": null, "Center Director": null, "ECE Available Programs": "hs-hd", "NAEYC Valid Until": null, "NAEYC Program Id": null, "Email Address": null, "Ounce of Prevention Description": null, "Purple binder service type": null, "Column": null, "Column2": null}], [{"Id": "36", "Source": "cps_early_childhood_portal_scrape.csv", "Site name": "marcy newberry association - marcy center", "Address": "1539 s springfield ave", "Zip": null, "Phone": "7612300", "Fax": null, "Program Name": "child care", "Length of Day": "extended day", "IDHS Provider ID": null, "Agency": null, "Neighborhood": null, "Funded Enrollment": null, "Program Option": null, "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": null, "CC fund": null, "Progmod": null, "Website": null, "Executive Director": null, "Center Director": null, "ECE Available Programs": null, "NAEYC Valid Until": null, "NAEYC Program Id": null, "Email Address": null, "Ounce of Prevention Description": null, "Purple binder service type": null, "Column": null, "Column2": null}, {"Id": "3222", "Source": "purple_binder_early_childhood.csv", "Site name": "marcy newberry association - marcy center", "Address": "1539 s springfield avenue", "Zip": "60623", "Phone": "7612300", "Fax": null, "Program Name": null, "Length of Day": null, "IDHS Provider ID": null, "Agency": null, "Neighborhood": null, "Funded Enrollment": null, "Program Option": null, "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": null, "CC fund": null, "Progmod": null, "Website": null, "Executive Director": null, "Center Director": null, "ECE Available Programs": null, "NAEYC Valid Until": null, "NAEYC Program Id": null, "Email Address": null, "Ounce of Prevention Description": null, "Purple binder service type": null, "Column": null, "Column2": "child care"}], [{"Id": "277", "Source": "cps_early_childhood_portal_scrape.csv", "Site name": "north avenue day nursery", "Address": "2001 w. pierce", "Zip": null, "Phone": "3424499", "Fax": null, "Program Name": "community partnerships", "Length of Day": "8-11 hours, varies by facility", "IDHS Provider ID": null, "Agency": null, "Neighborhood": null, "Funded Enrollment": null, "Program Option": null, "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": null, "CC fund": null, "Progmod": null, "Website": null, "Executive Director": null, "Center Director": null, "ECE Available Programs": null, "NAEYC Valid Until": null, "NAEYC Program Id": null, "Email Address": null, "Ounce of Prevention Description": null, "Purple binder service type": null, "Column": null, "Column2": null}, {"Id": "2248", "Source": "dfss_agencysitelies_2012.csv", "Site name": "north avenue day nursery north avenue day nursery", "Address": "2001 w. pierce", "Zip": "60622", "Phone": "3424499", "Fax": null, "Program Name": null, "Length of Day": null, "IDHS Provider ID": null, "Agency": null, "Neighborhood": null, "Funded Enrollment": "north avenue day nursery", "Program Option": null, "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": null, "CC fund": null, "Progmod": null, "Website": null, "Executive Director": null, "Center Director": "www.nadnkids.org", "ECE Available Programs": "steve koll", "NAEYC Valid Until": "steve koll", "NAEYC Program Id": null, "Email Address": null, "Ounce of Prevention Description": null, "Purple binder service type": null, "Column": null, "Column2": null}], [{"Id": "749", "Source": "cps_early_childhood_portal_scrape.csv", "Site name": "hull house association - uptown west / hull house", "Address": "4520 n beacon st", "Zip": null, "Phone": "5613500", "Fax": null, "Program Name": "head start", "Length of Day": "half day/full day", "IDHS Provider ID": null, "Agency": null, "Neighborhood": null, "Funded Enrollment": null, "Program Option": null, "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": null, "CC fund": null, "Progmod": null, "Website": null, "Executive Director": null, "Center Director": null, "ECE Available Programs": null, "NAEYC Valid Until": null, "NAEYC Program Id": null, "Email Address": null, "Ounce of Prevention Description": null, "Purple binder service type": null, "Column": null, "Column2": null}, {"Id": "3179", "Source": "purple_binder_early_childhood.csv", "Site name": "hull house association - uptown west", "Address": "4520 n beacon street", "Zip": "60640", "Phone": "5613500", "Fax": null, "Program Name": null, "Length of Day": null, "IDHS Provider ID": null, "Agency": null, "Neighborhood": null, "Funded Enrollment": null, "Program Option": null, "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": null, "CC fund": null, "Progmod": null, "Website": null, "Executive Director": null, "Center Director": null, "ECE Available Programs": null, "NAEYC Valid Until": null, "NAEYC Program Id": null, "Email Address": null, "Ounce of Prevention Description": null, "Purple binder service type": null, "Column": null, "Column2": "child care"}], [{"Id": "255", "Source": "cps_early_childhood_portal_scrape.csv", "Site name": "chicago commons-taylor center for new experiences", "Address": "1633 n. hamlin", "Zip": null, "Phone": "2278551", "Fax": null, "Program Name": "community partnerships", "Length of Day": "8-11 hours, varies by facility", "IDHS Provider ID": null, "Agency": null, "Neighborhood": null, "Funded Enrollment": null, "Program Option": null, "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": null, "CC fund": null, "Progmod": null, "Website": null, "Executive Director": null, "Center Director": null, "ECE Available Programs": null, "NAEYC Valid Until": null, "NAEYC Program Id": null, "Email Address": null, "Ounce of Prevention Description": null, "Purple binder service type": null, "Column": null, "Column2": null}, {"Id": "2398", "Source": "ece chicago find a school scrape.csv", "Site name": "chicago commons taylor center", "Address": "1633 n. hamlin", "Zip": "60647", "Phone": "2278551", "Fax": null, "Program Name": null, "Length of Day": null, "IDHS Provider ID": null, "Agency": null, "Neighborhood": "humboldt park", "Funded Enrollment": null, "Program Option": null, "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": null, "CC fund": null, "Progmod": null, "Website": null, "Executive Director": null, "Center Director": null, "ECE Available Programs": "cp", "NAEYC Valid Until": null, "NAEYC Program Id": null, "Email Address": null, "Ounce of Prevention Description": null, "Purple binder service type": null, "Column": null, "Column2": null}]]} \ No newline at end of file From ea014b3020914bf74e7a00ae7b872fa45606ec5a Mon Sep 17 00:00:00 2001 From: RobKraft Date: Sun, 7 Mar 2021 12:42:34 -0600 Subject: [PATCH 03/33] Dedupe example reading/writing AWS S3 buckets --- .gitignore | 2 + dedupe-examples.pyproj | 62 + s3_csv_example/requirements.txt | 1 + s3_csv_example/s3_csv_example.py | 217 + .../s3_csv_example_learned_settings | Bin 0 -> 680813 bytes s3_csv_example/s3_csv_example_training.json | 1 + s3_csv_example/s3firstfiletest.csv | 3682 +++++++++++++++++ 7 files changed, 3965 insertions(+) create mode 100644 dedupe-examples.pyproj create mode 100644 s3_csv_example/requirements.txt create mode 100644 s3_csv_example/s3_csv_example.py create mode 100644 s3_csv_example/s3_csv_example_learned_settings create mode 100644 s3_csv_example/s3_csv_example_training.json create mode 100644 s3_csv_example/s3firstfiletest.csv diff --git a/.gitignore b/.gitignore index 3fb24683..d0f1e61c 100644 --- a/.gitignore +++ b/.gitignore @@ -26,3 +26,5 @@ ENV distpgsql_init_db.py pgsql_example/pgsql_init_db.py .idea +/.vs/dedupe-examples/v16/.suo +/.vs/slnx.sqlite diff --git a/dedupe-examples.pyproj b/dedupe-examples.pyproj new file mode 100644 index 00000000..0e8ef7b6 --- /dev/null +++ b/dedupe-examples.pyproj @@ -0,0 +1,62 @@ + + + + Debug + 2.0 + {d588098a-74ed-4cc7-a86f-26ff7f60504a} + + s3_csv_example\s3_csv_example.py + + . + . + {888888a0-9f3d-457c-b088-3a5042f75d52} + Standard Python launcher + + wildrydes-rob-kraft pp4ncaliftwo + False + + + + + 10.0 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/s3_csv_example/requirements.txt b/s3_csv_example/requirements.txt new file mode 100644 index 00000000..051b14ce --- /dev/null +++ b/s3_csv_example/requirements.txt @@ -0,0 +1 @@ +unidecode diff --git a/s3_csv_example/s3_csv_example.py b/s3_csv_example/s3_csv_example.py new file mode 100644 index 00000000..cad2f0b2 --- /dev/null +++ b/s3_csv_example/s3_csv_example.py @@ -0,0 +1,217 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +""" +This code demonstrates how to use dedupe with a comma separated values +(CSV) file. All operations are performed in memory, so will run very +quickly on datasets up to ~10,000 rows. + +We start with a CSV file containing our messy data. In this example, +it is listings of early childhood education centers in Chicago +compiled from several different sources. + +The output will be a CSV with our clustered results. + +For larger datasets, see our [mysql_example](mysql_example.html) +""" + +import os +import csv +import re +import logging +import optparse +import sys + +import dedupe +from unidecode import unidecode + + +def preProcess(column): + """ + Do a little bit of data cleaning with the help of Unidecode and Regex. + Things like casing, extra spaces, quotes and new lines can be ignored. + """ + column = unidecode(column) + column = re.sub(' +', ' ', column) + column = re.sub('\n', ' ', column) + column = column.strip().strip('"').strip("'").lower().strip() + # If data is missing, indicate that by setting the value to `None` + if not column: + column = None + return column + + +def readData(filename): + """ + Read in our data from a CSV file and create a dictionary of records, + where the key is a unique record ID and each value is dict + """ + + data_d = {} + with open(filename) as f: + reader = csv.DictReader(f) + for row in reader: + clean_row = [(k, preProcess(v)) for (k, v) in row.items()] + row_id = int(row['Id']) + data_d[row_id] = dict(clean_row) + + return data_d + + +if __name__ == '__main__': + + # ## Logging + + # Dedupe uses Python logging to show or suppress verbose output. This + # code block lets you change the level of loggin on the command + # line. You don't need it if you don't want that. To enable verbose + # logging, run `python examples/csv_example/csv_example.py -v` + optp = optparse.OptionParser() + optp.add_option('-v', '--verbose', dest='verbose', action='count', + help='Increase verbosity (specify multiple times for more)' + ) + (opts, args) = optp.parse_args() + log_level = logging.WARNING + if opts.verbose: + if opts.verbose == 1: + log_level = logging.INFO + elif opts.verbose >= 2: + log_level = logging.DEBUG + logging.getLogger().setLevel(log_level) + + # ## Setup + + input_file = 's3_csv_example_messy_input.csv' + output_file = 's3_csv_example_output.csv' + settings_file = 's3_csv_example_learned_settings' + training_file = 's3_csv_example_training.json' + + scriptpath = os.path.dirname(__file__) + input_file = os.path.join(scriptpath, input_file) + #output_file = os.path.join(scriptpath, output_file) + settings_file = os.path.join(scriptpath, settings_file) + training_file = os.path.join(scriptpath, training_file) + + import sys + if len(sys.argv) > 1: + bucket = sys.argv[1] + if len(sys.argv) > 1: + output_bucket = sys.argv[2] + + s3files = [] + + import boto3 + s3_client = boto3.client('s3') + result = s3_client.list_objects(Bucket = bucket, Prefix='') + for o in result.get('Contents'): + filename = o.get('Key'); + print(filename) + data = s3_client.get_object(Bucket=bucket, Key=filename) + if filename[:2] == 's3': + input_file = filename + s3_client.download_file(bucket,filename,filename) + s3files.append(filename) + response = s3_client.delete_object( + Bucket=bucket, + Key=filename) + + print('importing data ...') + data_d = {} + for eachFile in s3files: + data_d.update(readData(eachFile)) + + if not data_d: + print('no files found to process in s3 bucket') + os._exit(1) + + # If a settings file already exists, we'll just load that and skip training + if os.path.exists(settings_file): + print('reading from', settings_file) + with open(settings_file, 'rb') as f: + deduper = dedupe.StaticDedupe(f) + else: + # ## Training + + # Define the fields dedupe will pay attention to + fields = [ + {'field': 'Site name', 'type': 'String'}, + {'field': 'Address', 'type': 'String'}, + {'field': 'Zip', 'type': 'Exact', 'has missing': True}, + {'field': 'Phone', 'type': 'String', 'has missing': True}, + ] + + # Create a new deduper object and pass our data model to it. + deduper = dedupe.Dedupe(fields) + + # If we have training data saved from a previous run of dedupe, + # look for it and load it in. + # __Note:__ if you want to train from scratch, delete the training_file + if os.path.exists(training_file): + print('reading labeled examples from ', training_file) + with open(training_file, 'rb') as f: + deduper.prepare_training(data_d, f) + else: + deduper.prepare_training(data_d) + + # ## Active learning + # Dedupe will find the next pair of records + # it is least certain about and ask you to label them as duplicates + # or not. + # use 'y', 'n' and 'u' keys to flag duplicates + # press 'f' when you are finished + print('starting active labeling...') + + dedupe.console_label(deduper) + + # Using the examples we just labeled, train the deduper and learn + # blocking predicates + deduper.train() + + # When finished, save our training to disk + with open(training_file, 'w') as tf: + deduper.write_training(tf) + + # Save our weights and predicates to disk. If the settings file + # exists, we will skip all the training and learning next time we run + # this file. + with open(settings_file, 'wb') as sf: + deduper.write_settings(sf) + + # ## Clustering + + # `partition` will return sets of records that dedupe + # believes are all referring to the same entity. + + print('clustering...') + clustered_dupes = deduper.partition(data_d, 0.5) + + print('# duplicate sets', len(clustered_dupes)) + + # ## Writing Results + + # Write our original data back out to a CSV with a new column called + # 'Cluster ID' which indicates which records refer to each other. + + cluster_membership = {} + for cluster_id, (records, scores) in enumerate(clustered_dupes): + for record_id, score in zip(records, scores): + cluster_membership[record_id] = { + "Cluster ID": cluster_id, + "confidence_score": score + } + + with open(output_file, 'w') as f_output, open(input_file) as f_input: + + reader = csv.DictReader(f_input) + fieldnames = ['Cluster ID', 'confidence_score'] + reader.fieldnames + + writer = csv.DictWriter(f_output, fieldnames=fieldnames) + writer.writeheader() + + for row in reader: + row_id = int(row['Id']) + row.update(cluster_membership[row_id]) + writer.writerow(row) + s3 = boto3.resource('s3') + s3.meta.client.upload_file(output_file, output_bucket, output_file) + os.remove(output_file) + diff --git a/s3_csv_example/s3_csv_example_learned_settings b/s3_csv_example/s3_csv_example_learned_settings new file mode 100644 index 0000000000000000000000000000000000000000..ab3f8d0405fc5952213d82858059584e779718fe GIT binary patch literal 680813 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�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 z z7U)^U=9U{ee(F?gi(yV+BPhlO#EXG(yky~D3b%)Hi)jEa2<~`ppZm+U%BJvFQs84E%Ho~Ml2xP@P24xy(DHe1}9!=9vu zff~oKrAFXljE}^$%vf%)a7x28EGVUgq7^xTWZBs|$FS`B5e zqCgr`%gAQTr3!y4+AKb*@Jl%wenKzQD~mx2cDTnC|Ae-V(kM+5;eEC%ELTUET7n$P zjCt9ER)$8a$Gd`Yx&qtW`l8|t3_eKKL{aBq`(rV$hspGTMb`H^6wzQr#Dsu&aX)($ z_NWD6tkFA*));G$(oe7x3cs}nDeS_{9X(@oPJf)sA{gyy8G62f0l)ed2PRh8qQxf# z^9H6A^V)~|k<|-7n6h8=CbSGtdR=o~NJK|zyQ4%!yJa-ZXLDu7#GReOxkWYg(a!iz z_d|G*!-D5eR7d5!-GFx~enK{~F~XooCuy+?gk!DLSTOv6hpwLr`yFFm(Xut>VTCpm zIbxqET6S)O77Y~JW^*?_&_H7y%ap~G6Q`r}Qw}89*-5%__PHL~te0qMDqv~XEc|_H zKv6(*Ha_r5v@}0onGL33NN}>5X&^z(vDO?@F#7M@r9}|ZJRegu_O<2~EGA87!^>un z1u&251MIuPjtoXP&$e<@#b}meMh?e89`t9r{9!9VWu31?Hrz7sO>-PC_$JUIl(S;) zz}TDpq*%~n=<)}+wIdrytfpObeRL97cVjINgl6ocyD{df9|U=shtU{0j)&_x7t-E^ zz{BD0cR6}lj^F0;6EOq8(_m{ytp%nUhRc$L5@nWE=MK!KZe!4mJ+^^Di;($OWV;V?Y&ASSoyA4JhpnSn#UOC*Nw%OWWpgWb~H8v7Da{ZZ$mmW^?w)Ur99wA8Y5I)Q0pw^897h|QO*C*&~Z zOiWiH!x)b*#_XUCtCx@Vfbi6;0h_LH`JtuxGc|x>`oaM|Wn*lBMi1i)imnf*nrqzy zbW}+mH1lE<^@PmLNfy*d?1@ z`O6UED4)89cFF3euD@P+>U#KA2yI01p(LR}^Ntd_NXYE~=d6eCb2xlri2cD*`0yi{ zINIg#<3csc#eB*^4K$Cz@H0knu4yp*d@0$biI|@+8O0zv7=FbF9%7)c8^wXC!SGv| zE=H;0cZ8ht;rGk%M~)kZb_c_s8nJy2f1U^y+hF*sa>C!1;U63~JmiDnpUZ)N%Rm;@ zKTBwX>#ESPPl$wdqZp3|!)psg*5jM6<3MSgZ8i#wxLZ094HD=EMqwWghTA0K`)^!A zHx_Ef5ky_PVGA722!SL=zYM=KMio%J&`#2DbPN4f`;4A}oFQt5tQFvMh!v|+Vww-;A z`mm@5!-p722=w7b%G-fP!Q&VVA5{uF#3;^4{M66=0;24Syv zFgz;}Th#Ltu|=I*LN7AnY&m?1P*hXo`sEH(bAP3gYT`9U`i9pVVcI~tHyXu)Z7_Uu zrh|KaFnp_#p81Xvy2wZ!;k}8N?GI#3*8GQsGNT`JpoW4^WbfU-6C>5YbrZqw zHyCbVq^weL`FT-0qsT$;MGf)H7P6@Hoi`VQd zs2*@fCsYYE3KZ4RHd3wkgiz}oMeke$MvuFj5jKf|cFiyj`1dx_{CD3(Y@ZJ>qB%3% z!w73CJY_GTcwszrA3@Eq`#WX`6%2+CGlG`{=zt;}yW=Cv@L< zBek}bMqH^5pDUD|@oWd`G3R7dnh-C{s9eGgUo2P)x5V&ej){df(El0fg|AKoKl5Pt zIwQT|e4%{(1%fpiFc&&z*#5W#%m^HFpm!N*5`Is{VqeA(d=9~su>KAG*Y`irX2M+2Py+6mIF_5pys0|lmnmSKt1*;MIa0DX@WJ5 z|7SQRSGU7w8L5>%$4Jxo^Nciatuj*HUSK4v@w`&Hmu5`9{1ry3-d71}etWHhWSqPq zld%flBozHMM&P$NP@Va0MzSy8X{2v>cgCbu^}a-nsKgHnsr`J!L0}0Z=;Mj__D>mc z?LGXAQP3K(NG!#?G-GmF`jU}8_A8l=7R1*xjD6r+LSbygL%-udmG1X5Q0B#t9H^=3 zr$RNjp$5aBJBS{h;jhZ+e(OLL%pZ)rL@c4d3F(>tbdc=z4YuG|Wk12No={o4wqRW| z>UD}h8Z({F;%f>6=Dc5no}Xa{6AzWQqRJNK@5MgmMJ=nV<&YUpl7B{x?P% zc7JcALi>}ErsKaFLD2;H{6~h-_V~AvhRfQPwzb&puVth)%_c@cvl|SrE0p!Qg#%SE z*EdpGZ=GRmqc_Sh+DzLTDcd(Iq3wmTC~lolUG27x8$^u3aHmqroinP2wmW7Z2)%=0 z!zidjSQ-jx?a<4J>}hv4(oA-@OvbruS0fq0_cl@$-q%Qt@&QKr!aant*!FUu+QmLb z>M{G554`YiNcQS!Mp})XE~J_B=>j>apIJZ_@Jc6?E&JRekh9#`4vcdigW)+w zn$};KQ8nkj*nwKpzRXA^{C`HOnpc+-zOH~=1D)@wbdZu26L6>vQV%B89h9CFxozQ8wD8#i^W8oNgkRpIYd0dNM5dkGA5^ofsuyNLoY~Gg@V&zVw2O$xlAdNG`IM8fhW@3M0MYRT+~*`)d<%!Sn_p zy8Paxzh}|B#St~mzfGt{v+$h`QUSlaobG)N)SUCdQq+$a$)ED^Ob8_{eEX*gNH61O z5~@r;@1(LEE-j%im7{*efpG#HyNX6ZGQqB*5w>4}zGFm6*zo%$^dlp+sh?&T3-RYh z>KMNgig6^y_1`*BL&YDAG?M+fh{{prZv|v+{L^tk1;ukVxV}a%ZDQ4pROZ(<0-X{u zuOpNb=4K9r)*=G8%s`dn4IHTXVH+Ve@f&9lt=5~C)7`ubZ|S%yfgMU{M| zAS2Cz4>r=;cHdIiLxj=-eYgWbR7TDZ%&1)2KB^q`kc>)q{G&_gFeBN@M;K`uIoe3A z>exh_8%{9NOnP#Lu^Jz5q|JaQ8mZczY^065rwY|rPtS0WM%!l^X|Q>AhHM+Yftn;f=0F}c7=F@7E$HGz%=hPvz;{BkxWq`;9e>eC zKH)Ey(tXWHdHZIDaRR$SC`ak`TM*8~O8p%<%laYqjosG0fe8)`3DYzk&S!+8`ujpk|PG)yD zl9%*uMMBO(yB3hc*S!;}x!u=EHSs;5g!V{8XXsu=s;Pa9G??vgq~`XpB4(7$0Y>`% zM;i6H)IGR}8MfPUBjsg9DeQ2gpxk23m|-*+9xD_LC5HCnGmxX#Ntuvc?{THDQ;oFr zJk3b2KV1mL&r*DPMrFRwG}4aG$|5RD__+mS%Cj9;{;+e5WcR!7!Lb|js$S@Ybg+?+M-kyka`MZoXv%W_t+u!>gsG0pk8I`a2 zsF51{CraqkLiw1_mf;s17mQPU<7Gw=dIP#V5x1znY80IP!SEYGG8n(@Aa#xJ8mXoH zz)1GukDZJpvnw5>O8kWo8WCUcYsaKP@Vksj>->*JOm@D%lmh>5q@ws&hOsGbxRn=+ zoC7x!Lc!3=+PHvRc5dppnshfeQp31j5tZ$2D+g+`=!Qme!QCXI$|JR%1I0(Wg^_yZ zt&H@J+a%(&u&hWI7Rc>0j3&S?M!I=;)=0a0Eg^g(WQ4G%=s*?Dos2Zo-qlDg;T}f% z{CgRx(e9S%Sg7|eVulmyff~eMH72tLY#iUF18+ zh@65C70Sl_m@*t@TvqUrMrx(U7|F0W&PdyjCmP96J4HyZe}X{1@JR*a+TbaUO7OHI zjIHDh!MaNOSw$c#<~a^j-kz6H+1ytZQTdz~WK{P2^U8rQb)ZJ~R~U%|@v4lf4)$6H zs=2)(qq66}DWi&S^A-onwfD9}92VYLL}l*Y?Lf7Z_Zi7|^uZGPh*3xjV`tH*M`qxs z5^*T_jFEEsc_UTarAFE>`%)s7%~yo7uDNs8EFRlZ6cZze-O&t{J9MOCa6aC&vMuXTWi?T`|Cz=#s}lV06qA2z+Z9;X5Z z!(>;-VY|U_!R+d~tezxS<7@<;VsdpIr~iP=tw#UC;f)cw8b=&}l3WdqXrM}Rbv;zX z#<?WYago$&G#EszrdHQG>}<)b#-Rm7t!7sDI1N@at8p9$>5^FuWkaB;nAJEC zgs9cbYIJYDGO5*&5JKFfR>w(-!7!=SIH?UZfm%&pW>TwF7fG$g;bf$nK&@6&sHRq< z-dO(TR>v?IA3esdj)s%$>X2I=v8zMrXE025wThscU5#s-5OWRL)wo^+4@q`)9P1kl zlU*&8>}s6ML73Uq=ri#}Nv@8QoP%K{xw^(&E`nRlwVAoqHBy31twzoqU;0_UyGCNUnt8ru*feYtW*XZf2q*klBOkh^4 zR4bX)Q8@8c)zoT;mLn{w)lgUfGPODiE)p)BTOG0}1-H7cVawF&dLJijv4d{@X^B~l zLgaEWsnr@oO|3>C=V5cJ>p1s|=Onwj&wjjcc6En7@nlzr9NCCnt-Z5kS8EPQcC}`( z>DbjAizcwEwIE(fc6D8MuTMd)jjF(hu7)-qqK?Sbv|c8VtJ#7p$<_4`bs7wlT^*Mx4u*?hSBLWPU^oT48V!-- ziRsl*RMDc7Uk$lrpyXFKXq6M+3)dXu5w+YsDp=yS;%+q98t1yybP2HGD3~St1i`ScBUE`|R z1nYW;_Y8*SSEESdta1{p6PjUNm(^#2b&aN+`PCZdlU)r>0zAa*>N+l{16nw_dX|g5 zBv*&v^I&LlH8RGQKY?A%akZLVjkC#kjM>$A47+pEt8wZbfu>jEkXCfAN`5u^4>zi& zB3Ns)q99n)(kTemKu^@dTRNw4m*|5nngJ+2k} zYMQX-SJ$CZgQu8Y4Tej!gJf50;!JjRT*Qg3@+6>=y;rcS*|iIHHJ>sKySg575hHRn z#4mtMu8yyb!Zy1aEht)v>D6^D`^>IJR5GJYua2oQQYODzUY1IJbse`GB4#zgIutK( z0@q)xC5;Kz@c2akF~7Qw`wW1RUL7|CVvVSDY9z_7j>|5wL{t#+*^b_n^y*NR7z{`B zY8uH&uMQnWoWONv=FqFTh%>z!?&yeVc6APWQ_!pH&@w?nv#V=t7)h>%2oi!!uCB+e z1A}3*t0A2UlOLouN_KS}x_)?O6}eg^Z*Fys z*0HJ8C=_l&P2g73LP~CRh`S7imE7v=k4di9s-}`$jY^5Koq}5(4~;h_xjLl$u{cbQ zWZdUC7@A$JFRUh4*FzWQJe{ zsawBL=T(zjE%VLfYJ4IKHQCirKSIJ}SBKsy)`rCgYp2{#jf)0x?AA!*_B8BjybpC zac>C1%&tbMa=5OhSEJ#^(3KZeX+-h6}goh-zI%LrX!{k=W zzDaI%T>pgSVKymx2F$INiEL`M8^4*=MkZFH%s3<_vpS@Au{zWMe-i<8K7HLn^ji+Dvftr}&|1z8oZ8s>Afy-HejJp>G~HZ1s$%)mriH9Ku3ts1Vu zXf(;HrfA$SS=DVCu+^+;t+EDp`oTmY%M4lOsN ztmIU?`U^@mTa78zXbhaosyWpfiIP(d1x&mmIn^O*G#DnQ8bZuK$*IoRsts8)YUI<KcuRN;WmNGh?(cpSmt5uj$mvv)R;jT&IVKNvDRu6wruH%|U(| zIyG*#LPFE2>(Imos%BGrY_29#H)*h$Obsu4l*BY#YE8JwrN(%VbOo21-&D<|)*>Uh z)Uu4srG|SfiZH3vkeLIjq*B|FHi1d4(YTUHjef;hB&pQed@+?8>ZtMlN+va0Z+u}T zk=jf4WKzc+1Xvd)O;WxFGpRR>DXf}Cjq4c^mNaUuR7|6e(IDDPC6BtsRq=vp)NpP` z@tQ@AZO(W>lBl)QP>`tUkuiz7j@xq)(;Vs=>wOvuHI)94%oJ)b*Qa1mV;eV$ED6+I zwoenNH7O>48iLM)K`mcJGN_@tjC5vDM_Y==m_iMb zYZOd!sAa7thZ<6`2s4K|5=LQ|L=DJ^KUvgqRUejx*?ypB3YaWvt)R`K)^2~2s6*Eo z>q7H!L--lX!hFgM>(DIf8uv;}qOQ@Io*Zi2(t%{jp@tAKP;#jCZgZ$nh%~ZIqW1n= za;Rkin?r5qW+jChkD;rznnSG>dNqeS?svrAp+6VbtN@uqjS?lRGD*~-?LHWqMD6Ls z9BM?R8Ji?(xxG!IMj%`5G%RY3hm|a9&aLK9+dX0uwMQIts8JU5lbJ+aSMy2^H5v^* z!W`-vw=PVfj?ay+pN2z?cd$-PqONfgNe;E)CgqLsH9P6 zg-_s7$7Pd)p?TDJ5PcmbT_=%R^_h#RaH|)OaHot5Y(mnY$^N)G&wQl}V(AC@4@8 zsnv5P5UFt^9io~@UE?@e@TgfB$)j%2s!ASpTv`NarmPEAck-y?1`wgrN)E!l_pbr5JlO9voi|0l1q&m-~?zg zwS0`#T39ST6^Qll(pqdJmIEgI-FWa_v|1S>>mR9viNQ^&1zSRp!0+z6AY z?Kep-HH7dHv*1#*#U+w2juH)WZ#H=P$*F&awFf^AMJj*Cild0`V zPcF4ATXU&5j8sXa*81N>YLpqf?SRZ^(qG0|nrp$>>LC5ifHyMOyrv*)ikel-$xuZl!{ zm(LZEtlubi%%U#qQ^(DSgF>Hr9u{@1T%zjlSxDrvhfO0;jij`kr=d}I=m)Q+ zQH!dXG-}+KjO<*EXw;!!KNwcisQWa!lSYmEau72`s?`E4QXOR#{XJ!>dt57}O!a(3 z>bN-r&JZ`G`H0lGjtMcBlt>*HIKvx~ZA0=p6R6a2$xuP1216h|*Ia6&g_Ei4xcmx_ zF_#*SxX4bbRF|mK^|-$f?huz#nMvJYXEc-AnMsA}9zCGb@Tj$WlmgWy9(9d<$nwN1PEBu^dBjPFYhb=-nkaHwls2~{(w`!qMVHla7JiJQQncHtJ{ z)FlFSJ?_^X3@iE5*#C-lH-$9yeDrCKIt!;y*Kth^UOo+b8dp6cW+6;Xmh766r*U&C zp1G#vY0!xxYir1zuJIu$Ox;-$>U3OGKbRy;jeB1ZIDtAXp7S-8I$e+JZLl@&ZiRbz zfWDBOjHAs|%xT zlZB}<+{a5QnbS3nw^pXc8`#{EIo;yfZj)TVBcKk}cM(=~1$SeP0` z!BOWw^QOUiiCLnWINjvvpTud|M$@QL&qJKXdN;b3dDCImM~5wBsn-T^x=jK_3RCxK z5=`Pv^D>tdrq+?P1@oq(9mcpb6>+*tl0>C8HJ-y6JekvRiywR+ZorFWPR9+U@OS#ldq;W#YkG!LS|w{5_c}+*OVadwn$)E7a-5rxNt+mX;In%gF7kSxQ3`>j-lR4Ay$;Los%CynKIn#It z+wwG|=>`ibNz=GA7w=zc(zI-gBu#fYzAu6_JxhZnC8@hSnv#;#4Q9NWG~M7$X-S&y z(nWdACQXBv9NjWG(`^p=)tu>ik4LYPG_4ap7Nx!lNYh=;0R?HA&3M72>9Qd8)rd5$ zqaxL6)Me5%Zcs%9t~qHMgw1FP8=F!*O9N_+S<^N4wh5eR_O?pSG{z-5juuXu?lIp5 zX`1`-Q;??NL5r`q5Vf6c)}fw{G980-%(2OtjthUWBc6ovSvJe$Ovh!h*b#RLmvpFW zw2r5sOyh+d6)QQ@;3mfOKMiZT&BC`1HNHMPT$Z5*HzrW3P{TD2v|tr#Fk+)bO_`2` zZ%i2GOxwwur0KXo9(&?0nE5oQ%cSWRU$K;=>2V3_GG*FXo`N%tljBihNty0*Tf0!8 z<{+91)bmiLL5Gb3v;OoP#qvs9eCTAuG!%WD;d)eg@|XGFb&%{$|)(+B0BDn99OzACQznl*yWa# zGA)NyQl{J5Dog?@U2SVfneNgeP1Wf>3nD4gaa;RfSWu=Jvr=?=Udl9=_ft@&p;Q+A zVFF`X&YhF}=}qpcBxAZoZoxE+>9XkbLI~3{>}HjOX&kSJ(JlGXUG7P&J-)OKfmZXS zaos&~lA6;^Zk|`urTcUTCSAJ2BMMW|rL}~qmYkj?cP%BS7eJS8bIMzDy0o;cQgnKj zQ+|q0x9Cu*q)USp6|;I0rZv1zLzoVKOO*J3W=w<05S^)#FkSCzld#~2j`O9RFbUIb zQjkrU#+kWjc?;)DW5+8N#naHG!6b}snX1zZU`x+(mNZ)$ch1FQ3eoAslBMOCpNcEp zrDtdwu5_P-6su0x=r~QTbf0dMO0KlFeJ3!bwL)D|rgXhcSKqoMO7}S3nJ8_uCk3b1 zHcuM!L0GBPH0eH<9Vs_0UP8)EmuS+ke52isSkm0_OSS3wSkf(?&Ma8c%uKb~G~Ec* zB}UynR7*{(lFW{dl8>p;M}zen<483*x<{kdGSm3LXp;*iM`P(0 zFDTg2TxO-lbeSD3YoS_Wy2Osg{#j&Y;pFHxyQ9g`c5_U{jc(BfNp5tLeAJYfmY=rZ zMr((lk{gY7z^&bCdbBQJs-#DExNKfSdbDS#C1yuAxT9}&v{&tw-u9?0C=#2M?cp#|<{v>B*~3UA1h*wktPVHnU5kiXDA% zi5-2;sjI3|wyIKoeVUY0$XZW$=M-FSrF{7!zVrE~u3CZA%f_U%xq)UDc9ScX5epns zVp&Q%df`Y)JBGNADCuIQwCA$GV|cfe_8PFjBV*t9H%VE0!~&1O>8BY+Kj7Mw(k`>W zJ3JFPVu6P(R>=a_37Rn$co-+svB2Z|Qb}71Q)4Xf2wV&coTK6GlJ(2A+axXR$Z69t z`<&-fOS?lqYro*chBY+O(vGHOEp4nL+0DmT;F0l(Ebs{2U5`alw&6)E@OWp6X-gA) zIu>~3Zo~qQR(eQ&qqh8u*V9}YiD}bRJR(D9xI#U;fILq*64R!~Y$T=~MR~GcQx?;n zp9LQ2MlA4H+D>GFM|mU*T<3X5Ebu7SYB_Cf(2rQ)F@{vjX^UVy6$?CG_s0BM?w-Hd zNS6`3)o3*qc+|}p3p_q41+~Rfw4gS2t)ncG1>WL2##rF-oROq1E1wtju8z!KEiU^b7|n@5>23i$A~$ifpca3Ze zU5y4F@2jMNV__D3)lRSfo zMDR$tPv$1T{(gn-nS5Bjko>{}GK|k05y7L94tCfa6>aQ1BCt|LdwwD~-AN-6?HB@1 z%GdJ)A15@I2p+Xkt)boI*5XJ*JKE$(LpxAvXqSlK@QlRwo$Z&;<$=d=@Ir;5=vnb= z$OG@t8*#qhw?q=!^o&d=p&hNDQbHTY&Z7}d$peoJ4kby&NPalTvg z(7{_|m{>-;Mt^vvigvX5$l8bv9u4i|dIJLKP)QkWZTL)NgGb)hE*qTFm$Y&+{pFc9Jv6-AzDWzu(OtdA*)J z_ug~PbDmT0`+g?1J32_KFtHyV^5B?T=Ba2$Z4Xkp)4j$ zhdBho!^+BN$1*JfcriqH$8;NEsx&gB?~09qnx(;n6}@l{_!C&9gGvDF(5)p2vj8_*6_S3n&~*+;LENbc&U(BMza4Pzn;WXB)?aqntw~JVvQyx^Xih zZLG4ED@|Vu+XApOWWvMuLm}<34%C(8e#SB3k$YA~JGDKsFcaQDH=M_W$DQMt@CbbA zXfK2b$J%3Ao&c=1 zj&^gaRCu_1FT=tkI@+64;W42PsqiS9bhOj=0Fh=YybVC192Fk97ed+-AaQmi6&|jL znAyQtc+~dZ@)>_{V2FiBLyW<~v4D?hOW~y zNa)O?!lUNa(eB`z+C@>}@fhi7Z;cA?U_hHEqaFRDkkO{9!H^1%eqG3DPoVb!>OW6HJLZ_7gm$?2XqK+t!hkpr3y-4bCA53kQ4X>2 z2=SqWb_A{^vn?bY^AVpzBY8LMU56ig-2zx`q^7h;Sq?lZnOp_)Mv>{6ag8k zXNNz}R$3c@_(E9&%=LNo>^?p+8A9Rllu}T5c)FZ;c6cc(o}FHO##01^*T5H_=gLli z?KTwN#sS(GC>%X|9uyw&I)uU_2)-;&^a0?0&0e}9pzx^CI4C@d@;ha|btpWV!NS>F zK;e-^9t!7gLl2>FYzE2L*09;$UBGP%#{yTg5>trQX-nU6!lqkg3nv!g>VQ&IRW z->qfwJAraYIO@>TjSE4-!@FgWaP;%w7Nzj@e`$5+08kBH`h}p<;Fn z6jsb8n7kMyJf3oj{fjO8skU%*SBFG+_}7BjTP4Ednd6A?m?4IO*j&m z2%v2d;ZOh539tF}r{DJM#C2~$N|)feD^eO`Sw%|E&8Ce&^r&)r*%c|BTvd_M&lfyf zk<#<@vMW-$BBf^&$`R9kMM@`hGsytN@~_#gCNT(Mk_?qCBrmP`JdL;qU=iK{?OV0k! zr4Pvg(k0}pD?qveq$??DYvcm4sidSUDQTR(U(lV3*XxR&{2}UN=f5Wr664a(kTq?OAIz0b5($Jaz_P7$E;ET z()fU)h2L!dk3jJbeg&Z>%(a0Rj62I}0_WS+2rRz(s}!W|jtY;XTxy7$G?=PzYq$@yLp-?GE%MpW0L3*j#U&s?z3ergvKO|faw&XA*;wwNpkmyQ5 zT0v1MNdH`(s1&4=z^*9h{}l!4PrvVV-}+|j0jK8x>Hcl@KYDuI+NlHPruUdxz5CK7 z)6c%kp}%-h{Cn~AbB>yR?wQjSAYB2{6(C&!(ol{|M@+5w_Phe5D?mDy#s6f#r~v87 znGO-x3Xo1=Q32BR7Ji204W_~IQ!a0o)xhuFyiEa90n+JLl;xQYeqE>nq$@x=QHL?X zJW!x&6JH%aL{=C0)v->)Z=z4iYU5X$R@17X-<_bON>oaURI}4 zke-~W0O{F!2XaFD3UchDKkg^1Qjo3y>6x<}4EVj*3XrY<>6w2jBq~5UzNG00-yA@1 zzh7{zSfbosiLHsCeh=}bSlZk{R=)zID?oa3=ADk534DKXuFXn8x&owe5ZR31^QaW0 z(_86Q1xU}#SxOu_Ocfwq0n%x7r~v5-ke=BjD!2lqD?l2gd=sy8D+Osdqg?^gIA*`U zaM%ivt^nx{#2-Fe0n$l2r5C^FTLIGb^lmOW;y^K<6(Bvc!60ydkQ{T0tqPE~Cvg7x zE?Jd=^snfNP&f#hu2PWxuPR7?^8G76+28e)J0?JS>Oo7E9Pq@s)8>{x9Ram{Sgi&eUb~@LBjS zv}$;dznhbw_`HX#HsmDs(uHu!HJyZ=!QQg^jqu*Svbz0v*|i_7G^jNrv0}#M9qyv? zqS`%Z#y-q`Y)2a&Cu`7-Rn{t7pmL6<6&QA0y2j=N-oT$&n27v!g^4GvFHEdUHqos2 zS`qt?lGSWQrjL=;#@B9-lhr}m6J-s$ao!q?f{jgr)v_Ta6)lO?g+Usc5@FC+Hl{CP3@fKN49FV`=x1kQ_$Z8#T;}Snl*&N?PTCBUDLN=KH6StyweVE-^tG$#O!nzSq*fG zyUU^w-92S>fFK`DE6s-JB*)OKwc{!G*Oh%Bxet;xfUNaHWidooI1LfAQdR?DF(r%T zoOT)pq=(Z=xnnlD;-GQo@MLA*!Y92?mDPuJrmP;O^jTlokNA0(uf(e4xw6_A4$qd= z#X;%|X{8Jy0{9Y|HPr9ry0QZ|y-HTA6_e#_ZT$~X<6LZfS|w}1OP`h1MNoWBRCVpJuZnU_Ly@zkZKyfcwZ7ezNBdZT(&HLFxA1i~4Q=fB(;^HJ_H?Sx*xcU^8 ztAjG1Dyxb3f2^z?=A6gN>LXU3L@UKOg5Y$TH8}GOUD<$Fo-V70*nFlfXpugLR(i@H zI^&!ZvD|!ttR@2R#j?8Sj4zWlz`P<{JVgO|<974nO$-h1a%oWE_sD7?$M@5!Ve0yj zli;V1%HpQ$xkFGYS|C@zKHE>dC#(jQ-y)xuiy8@{oJ z4WTUzK9|_~AJ)_6dS^+2WX4QWm(@YP-bEIhdpBA&97^rs3$c0JOG%x0#x<4H$5L-^ zUkHC*S-5xuGxLP<=3=8oE9QrY`mRkz@4)5+y2wGk6%li&Ep*U3%4%a!Il?z`PPnTQ z`{?IK7KwQ3QA*_Q;oh=ZIKYsgb~@aMspSDmW1o1iEld#)^L@RTy^fRB#hP@LtOhrP zvUUqdT70A)MTH{xrLb+X!+t=A7P4PR|iVh3IAQL>s?7Cxr96xDc~6ET=PQC17v z$fwBaATpj-+=%I0xHwlsV`y=#zMiM2^w77SUpzC`VlR@_g1cWTtB+an6|&kG%3dw2 ziJzKyoh)u--st-<^}U5wj2_{Ow=1!WE#^70T3AWETNa1z_xZ*&K&Bf%sKf@w{EzrX ztPDRUtBbh(B(49)P_*DxtNfe*p1 zU6@!LUB}mAQ**r{5e2`261x~n_IG01L8q3!sqX}BcneuAbixCC=>&>!8zr_e&fHE` z4`+8xSxw|9T0DgzhMh&=;vG2oPI@X=C3kU-IKa3&t;i#$#(Vlw+<3Gttl5u|)y5&g z{be=q15gi=)x&W0P+3iEKUc`=H$|Dw1u zqOCy1v9|o3(i(`MKgjB!dViMH!xH?jv|@I^mQaap3>yD-Vgo&4X(7yvuCS9p+%6XE zSCQ4gB5HS8EzGf3qg88!53fGoxE766dmI?;V{-x>>bklVbMf_Q)Z0k9k*p>>bCcpe z6g1C@b1iaf-Pph@lI61c2$6;@oDsEU_0Uc|TgdQ0Sv+GrSQa;5hso;V=Asw_?ckCipRYnjK>O4Y@Z?MX`H zmgn@sijH=MtQHQXo-S*ES>~Ct+K9C0_)07hjfyw02fyM_@$|bx5!r85<_#RvzJpfk zSr{ANrNjXibMKMW#@6@!v}y>05BWm0(MM(VFgko(Rv$aKPs!>cT+jD?+!p#iEP1~m ztBHfri)7K&UzOFyhWQ&#LzrJoD@KQy!!Gfq7{|WnOVNHml+{J>{zO&_tNNeI>S1~K ztKz;GxPB|EkMZX+--jXfPqI1~i7zj%jI#WlR=79zum4hF6S2HRBrx9{)M-Ve#k6Er zobN7n)1^%;efE&m$69$WSuJF7O<6r|3}tn(^4M1v=fVAC4X`J_A+4n`(cf4pbp6d_ zwJ~VlQdYka6Tz)$rTU>=ZtEMlGo)3+$kb9&8zXPm7Pc${TL`9uXoVx9TOF!IF0AfI zi_6?2d>_us?mE0LTz{mlM7tlQEBkn7cW+rebn*Mj8o+-Kkk!Onng`2j<7nbxvig{m zj&m9|-K%8vuv9yqRt+JzMoC?qU7sjxfbPCdRv+{IdRoby*c2@s6=x_t(T_=IPstNc zp;^O}|1@RTLTjEStBE>1V|ZVL!Lw~n;M(UE*G7+czN`VJ#23lxVM+T^T70Gd3g3pX zezmMNZhIZAR9_4gZ`6J0oNtkVIJT5FmzU@0Azcg<@0QiUtF8CRYN56tl+{EHJ|b&? zCC0~ObB;r(rsMs;my&bf&BxCXrd+havY_vdSxIv**1;_jR#&c)6@Ts`n~cJT82# zbHGcUH_)nKQT1luhH><5vYJ>^z0(%PxN~K7QK9!b4Lg|+6lvkx56j}Y;(4@^EFKE@U>-aT|)R*AV-xVg7iht0J4XmgCENg(V?60y~sQo{DCDQ&a ztB=B%73VQUR!lp58r#a<1;@5vt6E*6TnmemK(wp>;dgG_@~)FBpR?ZQMQdb*Zzk;lck z#m?$!rxh zS$)LT`LbF_yO37IPb}iUpu{Eyy^Cb^aD?zxS#7M_zu`1&B`=mm*6I>jbocjYr7Unl z^+P4Lu_OJ7tQMSaP3;!OCn4i?HjIgJzWcqbcqsM_f6`;RSixK_s{!lpv}%~`{^bj? zC|e@kYK|mzSv{0<7i(H$!L*yKKC;_GRs-9qy<`p0^w+e7z4G3)qGQMEZC@q!;kEr_ z5iz)-EWQHzpODl}#g4&vQ!vqceDd6z@A;U6pSdLyodL#=tX%<2G#gh;be-~e+Yd$K zs9jKWG*cV~7>ni`l`>c~N4x@y#=vq#V$qCPW6|VlghkiM>WGVuo*kRZZG+LiQe<>8 zfy@YvcItxR=sNMTJR413?`DD}TR1JarLoEhj1adfNXpm--`1C6c%Ets=E3ML*8Kvb)nUqT(W#wq zr@-j?0PDmBa?$lZc07I7DLoR0w6|9k*$WSm)kl=v!IyIKDnmv$!1C`{GMWR6$mrx? z@N;=Inna4xXj=a@G`fwGv@&QkL06&C?vx8>qcuJ+9FFc`ajVs$sb+PmKt*iz*_+_-Bj|!XtmHA4XN8VP}R#@pehpa`Q(hh#J(riMp z(wZO&R2t{81uD&H$EY;jkw>NZQGifs$MBGqj@B;2N^{abUhdc$EA4u*9YLbEv?Ox=V56M6NaUmc(XTzrDI^o!_piWv#_+I%Ct1w#Ab)_prs={C+wzof=)0w(&3ES_O~T^8R8eam5i4a#?XA5Jqb zmBpi(AJ9rp!piW+HW|-9)3sf^zxpMu8V;6!BLlC9em{EK4#lP2DR&m6$gRz;vbdSL zs;myq39`I&YTG!$8G}pn)unK09k7{}X1p$(mQEYJm`C!kG`(+FnlEs+8&0VXIY4;{E)2YH} z|1r=s+;3=_q8MYKX$}i{Xqst;rukN+3^dJ&;0lDMIVTyKW-$d#*ExQhndVp9S!TM< zMYN%5ewJfsnjc~bnohpQ(Mkzw+Rc>3rc)wj^E@}r4!sC&n!*WXxM?n17tT#fUn$Q` z)BRa)y3WH$VbiX@xM`auz-ew-_b!-6cv0ZAJ#KQE=P4qm^|im)Y3Eo9o+f#*V0fAu zD5cE(|GW0YC8q?D}gW0k4wEdFDr|bOo*Zefc zg~jmGYzy(zX>i4fQ5K+1iCCX)Cqk|FgJ!6y4Ys`uH8Q2`8@qvkTe95rKQ`#I_fY>4w5HFt#KsMU$H z7&WKpEJp2kyQv6Ds)F1?RtE=t2iU^a^)|A&?zkN-H+Zu!vFSEPO>dOpsN+GgB{fLR zI+g>e`8{hEq>i|X$BLxZG;WZZf%G6%tcRnZhuXpiKPzluvAt5(03Qxa(W+q(oputo zrw^CaLj13l#WjREY94i#;HXm_Ff;8~lA47PNu9F5ONi&Hq<2 ze6x^8sksu`HcIUZUU@9FPQZmyJ4nn@bAKY1I=%mjv%L~1b$SfAasp~xeH4A2`U46sUd;?^dx(`TKFm<{Vk#QBGj8Ws#G&NTZqN&rlYaDqQ zr>2jEQ+sGC!Bf|{B`yP0^Od!LYG)y$S|?6s`>h4yNK$uR~)wl|3dtgk!ZAZmUi*%a zif*`IxLU1iwz`2vD#2E#3^9=juBPau*lKr(F>p1955v{$A7kKZ1i~WVYJUEjg{v9A zW#H-osPjBr%}+EJ0ap(I^a!r@C?mR>PTV$J9epX*EVnYh&0*xWVzfIb_k@XU0QoJa z;RSV97QfdV$YM(zL`!W5x_aeVd)?&Rk3Hx)Thi67jN){?99_*#+xw`NoN|k8!92<7 z^cQp*X-+2-z0`m;R}})RDUg{Lo#yGrIMHc5bI4bN+s*RTQNR$I$?Hy2zt4a*`*$9& z=9$T_q!^vrF+KCQBR-h9Oo=@F_)}rUJbJk-W|1eXnI^)zPJ!%g1J;`1#8=n(Rdaz? zr_VZ4?s>eL;F-0j`A$;W(`j&tG2eJKKWDnJDN=N9$Fj-{(vi9&XI1g@qlO2E~;umoJ48VR9qx|%nduI3BGJYCH(!E`m7MRaxg z<(fd*KcnWPB&*?S<{-FQT$b2s7bXu^^G2&qQ%qH=)2Yqyxxl4GjNEq-s?*%| zC_T{ zwFWoqPSaCEygCM9=}z0l=BvB-cw@*{W5TfRH0KuSPN#BXm@r?>!sYntI>(c&@U$8{ z4_HSQ5jf)rYeZ_Eux6Ilo*pHvDPc9#o<<&7?P<>0)}H3)X4anOz&|9cF}CFiYx>`W zHAgcM)@mthPxH0tBSu<(qpT*FmPg9!qh%f~i-CHYEY3ntki~|v_Vfr~og57I+~U&| zgSPneRtalXe}}41M`>cxe}fA?LRj~3=2C*N<~VP{x`&;X2#6JC)Pw)4VdTKAk!+ri5SEX*ier^@vphu-3Xsd^II9 zjaReS!mCq$i1ejm7y0FLUVWOikot7G5dpky`RUC7YtF`b{b{Zf3|Mnu&jQwUPET3H zT4T@{!kRs#t?F_Wl_#v}r#xZZ!$Fw!r&&+|)Ha`}{u#+&S6RR68CJWsyEiD--x zaJ6T@g09AhZ@QXGD$&)7n(c?HImi|&)QFS?v(xnE}9aB>*Atghdt_6Xa7ouig zFkekzd_TdNoTzUoi=)DgWwr2y{LP$(fjo~_Go+1IcX2pkDQXUvEj@(;i12E~@E9R# z>e)+(+RiauO-G8Z=JX)AnugeFbvC2bWXgJWi_Z%(a@L0Rm;Byt2vYx8q^r{3|7+<(x9&M!?w?;_Kj{3 z7#Gmu-uLrLqGX1^>XbV+;$z5a1WA^xrn3!Jv$qJWW_H4=HBp(WW+-oys@7fqi%@kM zwD7fIo~mXyE}&{`?F>~juoeMTGd>MfGbHi~)XYLqwW76OkhwVIy1lq@z6?A>)&P-p z2U&cKk!o6bq?%!Fq?)V468h6A?66(50QD$R%~Qnf7oeVxRM*)ftUt{aul1+7%{5ZZ zIvJ_%VOluNPGo0&f*i$j*(b~D;;i?n#iiU7+T;dfR@ZXQdX_EBQbMZLZX&AFfDpSm z1J#^Cq(7amjH%x8(_B@Xr{=lkYn?sek}^OwA&pY{)2SVsajN$L=E5b5^rurA76t;U zxjq+9ttnIj)a*0`PmSeymZ#Pch=FRp43q$Moiu?IsGYf)YVKwwL7jFnaVT#EYPPTy zs7H`$E{gI3)QnjRP;*Oc0cwVji0V`pjPPZU>hyJMwD!`1UBsP6s$0+lvjFvGNHxMl z0@RvCgjCBKLsYZVnyBW~E25eWvk0J?LxzEB9uhB?aBT-VOoak9zLvHEHT{-Xpymmq z6sX<4mZ0XMXdF)+rxoU@Iebcjy3V0>s6ZWYkyoImW6CH{v+~BN*WqIo8hj9)n5o&#+ zR|2Tksg8K+*tJAy@-oy6#4Jy(MU8Q4#=2#wM{sH#vs_|d;G@^P3iZ}#Y6jx3^b}gA zsX1DfQK4ozr9z!t5#zl@sOfFP)XbqS<<}9IT6Gsotr>0%N{t+(K|O*}%Pj>-%}6Uq zYRsV~saa}~)XF^%QtOl3g4Rad8>D7unoyOfJ8v0kDywE?s6FIMhdSx4#5{ed9z#Eg zq?RuXQq!Z-q1M1%0;J}z16YQdI|GB%{GPmw3^fa8kecs;EJF=GYmI8aL-Z_2?EyeK z)S7GaGSq!&us%i)<#hhI5hsbG7McGPrj4jjr~Gi>V2qkWOkRdskFg3hV`L0P&55{> zp^oF0JVVWye<(wZS5}gtu9Hxb4t08695az2YFdJ*Q#G)yuo5+wA%zk(f-tRN|=9 zH*zr&SdV%uAa(lEEhZ~-)O<>wqo&8rQS(T*6i1!>f#L|HuCqASqvnGS5uQsY8>40w z3yhkNu^u(G$_qW}tzgs|;7n1oBBrRBZIK$K|To$J0an#oef1|6KrRIGFOU)e3QnTP@sX5MCn0l0@=5AiX)H-CBGIcu3 zjTO`Hm_K(^LaDj9$*WSgLE~AKnocuFP0JuPBf3zf?niEAIBHFX7NzDxvlw-1P`JL} zsA-y`=F$9(MB&nD(xt99uq(}S)Tx8vJ%W{~8Hoa^wKy-yQKNL`sGC5b4lYP?%v@QJ zTFXLn)bxNk>K0-#%Td?)ldBe{<{7v!>f|eo6AS04Jrr1)n#B=6&C?U((_EQZnVKHA zGBqPw_;jjagoEj6>Sko=X}7WQ=^j2)F+R=LWT(4{@h(cz)TtTaVQEuqIr~gsigQI1 z)GS+`p!RqxggTj6)=8h*sTQbiAsOH9FC{P_^iXm$H$`Cavj(4f7O^C$5 z#}-Zx1ySpCz0jwg&rsLo}p%Qn4xC;nW1Lc z%~1ETdon}K`@~Qys@AEAd7l|-T4tyj(_*MojZw766tNK@CWt!8yv4{XhT4@fM9m*w zG(^oj1W~i8o}p*5ah^?!i_qsOiT(TeMdr~>UnGmG9wXGOt@WvyTNa_#c=E=PXBG@K z`pnyv#zV<-Xu0jpP!p^$L(L5H3^iv6Gt?}o8ER%>hMG??L(S&QGSnh6j8Jo0{d!SQ zG?^J{`YF#)yF=w6Y8EvQQM0IqsM!$(QP=4jG1M9{|016bKaB>pKs9e%1U^k~8=q!Bmq0apr0D6S?Gl5v;Aw%I_gB&AZPC+?pDaFI zX8?I5o2q zI$fui-s$@=j-5MVnVqJ~%ue%}d3KsX{|P?D9ZT?ZYC%lCpB+uj;?r(z@zZ|N*Hk=4 zlmTiMC=XB%aE@evnn9BXsMCv~*!Gy8rmw_LJO45OHA^FaTJ4=Bs5Pw^pyqj09-!vB zQ~r*@o~pJrLiPg6GYRC$757MY)B7Fm9}&ZYb5ysw5`o9SuZmZzr~ka>EV z14-T9DItT_kc^6QsduQtSe!Jy7IjsaecCIL(3? zoaU87a2nI+`Kkj)$_r&N|1YT6IIX;BzF}&bbrm)3!SCXchg?D{H9Iyb-%}!sR)Ev+ zMWIQJ!&r0E>^MVB>R4Qhn|3T2oaQo0;B@*GjF_)4cWI!oBy`$El`6HLlZU4@9*CWm zC3M<%N|@Tu6+5k=(daZ!_VyOy$pwpOr#Uhf~U2EJ4g?ulf_P}hDN7(pM|OUObb&pEelVlqG4h(J%>MyL5{?#snbYtOi80 zx{_nY6Gw6|J6SPun-rrRIQQewyVJKds0#KF!+Z@oA2G#;56tR~IFVDaQCT zBQdW^%^ZwRck%0W#-|zUQl)k)mBFX^&^$iP)-^uOfkF7RmNw?6Ih=`~RsiSmX%^J@ zG@Dw&)bzFSY4#W4(~5iX(+)HN)NV2n)Vfx})LN7Nex$9 z^be3l2jnSghN-2g87HQwX^o+%IkuXj=BQ+fnt@`9nwBYQo+{m4MPnAGsA-v^W++;h znj5G47mX49$q;o9lI+r@cDtFPW(`;JMn<1?sp+O^y9q~34Hk?wwjaKqK)(1kURpE1WDWCdYSzKL;pVm@M0JU-yKkb5x zptdQ5S_47BP@|U=3^f)#(xg^t#8CS&S%_L4(F`@6Q!v!X!VERzdD{%N^ZT``&z3So zP1h_2qUK!kZ$6dbJ%*uXNySjdh!NXX>r%4-B_L`Yvh5?blCH@z)N-OBYUXegGnsrn zUOXjU)-IF9E6q^TGDFSk77R6h>)H%8%VLI_9pk_vzc|npL#_BK5NdcLk5Ka|We{pE z?}bovw`4(T7Fq-~lOE!7;r#1ZT5c2*)SO2|P^UyJ(((*7y>ybEN>7NP)*-17YPE{> zsClIcYFZ|!`}pmLF?!T=j0tLvhowC4yTp-j4w;%eUI1bDUQnQLis5yt{ z5o#9nPktu0gqO==lo+Arn!yM)(}Ylacr-)JL;()GR>tkKw`uH7h8BTJx3wYWvUxHGTLqJ%&yCOIp74 zH_ihu#D6b~l@dYiq8g!Q0gOfgX@CrA1Hl|LV2fSQ&7YL6yXqUP9Uf|{3#pw^*G)0M&oMLN`W z@lc2w(Qkm7Pc=ZzPHcdhc?h7^i&*p1Jt$d;pH^B{g<9ShKJ8XCKg}%6PjjDT6>1KA zR-xvVR-vY4e44Fje3}l=!lqqebJMJbxoHN%Pn88X@g=xvz1kKyt&kBpo#GyQ@xSV!JS`lDPDdOXoo0QF zPHSf<$dNI+yJ=AD@2@6{_mv>0wJk5eX-hRfFBc+%(tSW4LK9_YSu=u)s4n%`D7KGZf8DGsAm1L#(^a zO|w!%ZW`Sr&rS28$LcX$RZO}tXc|+~ER0pBY2~qLrWu>2Wo()q(bzOY!PqnxBae0N z=p?45dB$sMnoB`b)68KEHO)j*)3i)Y(-JkU?kw49_ccM&3O6y+y41)teQ0Ew1FMng z4myyLX=W&7+5u%|nwN^1cK%stnqzXFnPy)TGtCQ4OfxFa9|@TYN4za!+L@b~CamyP zUCM8pzd_5D5HziKx?`AWc0DuGbcUH}T4tsh7-FX7d?V8g6C=}fzL04R&?2VYorO%h zsQ((NvW2JV97EI0e-{feBNPoyb4=dD)G`)-C7|i_3yuK{>?`yc?`Mrnv+_cw6lG3#03{5 zV*21GFIjTH6X#BwTQ+^Y+1-~lGQ{*!5z}X%Hn-&s&CCt8t=+ISUF&QPTZ6c9!_>@C zsS;<*+$;S*bD#9zrj=8(d#+eLwSLVhQ>#~O*f_a<`gxo85c$)ap$qPc1JlTfTB~!_?gDUiV~o)GM%MX}CmCj7=KL5c>-9CHH-f-Enqo>!cojP#; zV>Yf&6&ZKe)TWiopRm)}hb`qV4b1Mc{>1gmPh3AYdxQH-ov`V|RF_9jt-i;)6V`0l zxMo%Q)B368mvw84(#`HXdE&{_lXG`DXf-7>$AJ9-E`85RqN9A zb4Mc2dL}m}Pt0E9@O3Ahyl&Il)kph}@t`HM zd$E<~|COyjyVLQT)~_`3YC83W>B$Y#b7$>(uVs(B-wTfa{EIiOoZd`zNd(+CN&YeCNL(1&V WtCCkX&fVp(bJ~c+4J%KdTmFBUS*^kV literal 0 HcmV?d00001 diff --git a/s3_csv_example/s3_csv_example_training.json b/s3_csv_example/s3_csv_example_training.json new file mode 100644 index 00000000..c07929dc --- /dev/null +++ b/s3_csv_example/s3_csv_example_training.json @@ -0,0 +1 @@ +{"distinct": [], "match": [[{"Id": "285", "Source": "cps_early_childhood_portal_scrape.csv", "Site name": "st. vincent depaul child development", "Address": "2145 n. halsted", "Zip": null, "Phone": null, "Fax": null, "Program Name": "community partnerships", "Length of Day": "8-11 hours, varies by facility", "IDHS Provider ID": null, "Agency": null, "Neighborhood": null, "Funded Enrollment": null, "Program Option": null, "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": null, "CC fund": null, "Progmod": null, "Website": null, "Executive Director": null, "Center Director": null, "ECE Available Programs": null, "NAEYC Valid Until": null, "NAEYC Program Id": null, "Email Address": null, "Ounce of Prevention Description": null, "Purple binder service type": null, "Column": null, "Column2": null}, {"Id": "2789", "Source": "ece chicago find a school scrape.csv", "Site name": "st vincent depaul", "Address": "2145 n. halsted", "Zip": "60614", "Phone": "9436776", "Fax": null, "Program Name": null, "Length of Day": null, "IDHS Provider ID": null, "Agency": null, "Neighborhood": "lincoln park", "Funded Enrollment": null, "Program Option": null, "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": null, "CC fund": null, "Progmod": null, "Website": null, "Executive Director": null, "Center Director": null, "ECE Available Programs": "cp", "NAEYC Valid Until": null, "NAEYC Program Id": null, "Email Address": null, "Ounce of Prevention Description": null, "Purple binder service type": null, "Column": null, "Column2": null}], [{"Id": "655", "Source": "cps_early_childhood_portal_scrape.csv", "Site name": "el valor - teddy bear 1 51st street", "Address": "2649 w 51st st", "Zip": null, "Phone": null, "Fax": null, "Program Name": "head start", "Length of Day": "half day/full day", "IDHS Provider ID": null, "Agency": null, "Neighborhood": null, "Funded Enrollment": null, "Program Option": null, "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": null, "CC fund": null, "Progmod": null, "Website": null, "Executive Director": null, "Center Director": null, "ECE Available Programs": null, "NAEYC Valid Until": null, "NAEYC Program Id": null, "Email Address": null, "Ounce of Prevention Description": null, "Purple binder service type": null, "Column": null, "Column2": null}, {"Id": "2158", "Source": "dfss_agencysitelies_2012.csv", "Site name": "el valor teddy bear 1", "Address": "2649 w 51st st.", "Zip": "60632", "Phone": "4760700", "Fax": null, "Program Name": null, "Length of Day": null, "IDHS Provider ID": null, "Agency": null, "Neighborhood": null, "Funded Enrollment": "el valor", "Program Option": null, "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": null, "CC fund": null, "Progmod": null, "Website": null, "Executive Director": null, "Center Director": "www.elvalor.org", "ECE Available Programs": "vincent allocco", "NAEYC Valid Until": "francy torres", "NAEYC Program Id": null, "Email Address": null, "Ounce of Prevention Description": null, "Purple binder service type": null, "Column": null, "Column2": null}], [{"Id": "1735", "Source": "chapin_dfss_providers_2011_070212.csv", "Site name": "henry booth house brite new minds", "Address": "112 e 51st street", "Zip": "60615", "Phone": null, "Fax": null, "Program Name": null, "Length of Day": null, "IDHS Provider ID": null, "Agency": null, "Neighborhood": null, "Funded Enrollment": "henry booth house", "Program Option": "grand boulevard", "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": null, "CC fund": "yes", "Progmod": "no", "Website": "no", "Executive Director": null, "Center Director": null, "ECE Available Programs": null, "NAEYC Valid Until": null, "NAEYC Program Id": null, "Email Address": null, "Ounce of Prevention Description": null, "Purple binder service type": null, "Column": null, "Column2": null}, {"Id": "2184", "Source": "dfss_agencysitelies_2012.csv", "Site name": "henry booth house brite new minds", "Address": "112 e 51st st.", "Zip": "60615", "Phone": null, "Fax": null, "Program Name": null, "Length of Day": null, "IDHS Provider ID": null, "Agency": null, "Neighborhood": null, "Funded Enrollment": "henry booth house", "Program Option": null, "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": null, "CC fund": null, "Progmod": null, "Website": null, "Executive Director": null, "Center Director": "www.henryboothhouse.org", "ECE Available Programs": "scott perkins", "NAEYC Valid Until": null, "NAEYC Program Id": null, "Email Address": null, "Ounce of Prevention Description": null, "Purple binder service type": null, "Column": null, "Column2": null}], [{"Id": "2423", "Source": "ece chicago find a school scrape.csv", "Site name": "christopher house uptown", "Address": "4701 n. winthorp", "Zip": "60640", "Phone": "7694540", "Fax": null, "Program Name": null, "Length of Day": null, "IDHS Provider ID": null, "Agency": null, "Neighborhood": "uptown", "Funded Enrollment": null, "Program Option": null, "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": null, "CC fund": null, "Progmod": null, "Website": null, "Executive Director": null, "Center Director": null, "ECE Available Programs": "cp", "NAEYC Valid Until": null, "NAEYC Program Id": null, "Email Address": null, "Ounce of Prevention Description": null, "Purple binder service type": null, "Column": null, "Column2": null}, {"Id": "2424", "Source": "ece chicago find a school scrape.csv", "Site name": "christopher house uptown i/t", "Address": "4701 n. winthorp", "Zip": "60640", "Phone": "7694540", "Fax": null, "Program Name": null, "Length of Day": null, "IDHS Provider ID": null, "Agency": null, "Neighborhood": "uptown", "Funded Enrollment": null, "Program Option": null, "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": null, "CC fund": null, "Progmod": null, "Website": null, "Executive Director": null, "Center Director": null, "ECE Available Programs": "cp", "NAEYC Valid Until": null, "NAEYC Program Id": null, "Email Address": null, "Ounce of Prevention Description": null, "Purple binder service type": null, "Column": null, "Column2": null}], [{"Id": "2705", "Source": "ece chicago find a school scrape.csv", "Site name": "ounce of prev ec center", "Address": "5044 s wabash", "Zip": "60615", "Phone": "9242334", "Fax": null, "Program Name": null, "Length of Day": null, "IDHS Provider ID": null, "Agency": null, "Neighborhood": "grand boulevard", "Funded Enrollment": null, "Program Option": null, "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": null, "CC fund": null, "Progmod": null, "Website": null, "Executive Director": null, "Center Director": null, "ECE Available Programs": "cp", "NAEYC Valid Until": null, "NAEYC Program Id": null, "Email Address": null, "Ounce of Prevention Description": null, "Purple binder service type": null, "Column": null, "Column2": null}, {"Id": "2706", "Source": "ece chicago find a school scrape.csv", "Site name": "ounce of prev ec center i/t", "Address": "5044 s wabash", "Zip": "60615", "Phone": "9242334", "Fax": null, "Program Name": null, "Length of Day": null, "IDHS Provider ID": null, "Agency": null, "Neighborhood": "grand boulevard", "Funded Enrollment": null, "Program Option": null, "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": null, "CC fund": null, "Progmod": null, "Website": null, "Executive Director": null, "Center Director": null, "ECE Available Programs": "cp", "NAEYC Valid Until": null, "NAEYC Program Id": null, "Email Address": null, "Ounce of Prevention Description": null, "Purple binder service type": null, "Column": null, "Column2": null}], [{"Id": "1353", "Source": "idhs_child_care_provider_list.csv", "Site name": "northwestern university settlement", "Address": "1400 west augusta blvd.", "Zip": "60642", "Phone": "2787471", "Fax": "(773) 278-7536", "Program Name": null, "Length of Day": null, "IDHS Provider ID": "5701-4911-5433-005", "Agency": null, "Neighborhood": null, "Funded Enrollment": null, "Program Option": null, "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": null, "CC fund": null, "Progmod": null, "Website": null, "Executive Director": null, "Center Director": null, "ECE Available Programs": null, "NAEYC Valid Until": null, "NAEYC Program Id": null, "Email Address": null, "Ounce of Prevention Description": null, "Purple binder service type": null, "Column": null, "Column2": null}, {"Id": "2958", "Source": "naeyc_accreditation.csv", "Site name": "northwestern university settlement association", "Address": "1400 west augusta blvd", "Zip": "60642", "Phone": "2787471", "Fax": null, "Program Name": null, "Length of Day": null, "IDHS Provider ID": null, "Agency": null, "Neighborhood": null, "Funded Enrollment": null, "Program Option": null, "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": null, "CC fund": null, "Progmod": null, "Website": null, "Executive Director": null, "Center Director": "http://www.nush.org", "ECE Available Programs": null, "NAEYC Valid Until": null, "NAEYC Program Id": null, "Email Address": "04/30/14", "Ounce of Prevention Description": "587968", "Purple binder service type": null, "Column": null, "Column2": null}], [{"Id": "1680", "Source": "chapin_dfss_providers_2011_070212.csv", "Site name": "erie neighborhood house erie community center", "Address": "1701 w superior", "Zip": "60622", "Phone": "5635800", "Fax": null, "Program Name": null, "Length of Day": null, "IDHS Provider ID": null, "Agency": null, "Neighborhood": null, "Funded Enrollment": "erie neighborhood house", "Program Option": "west town", "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": "celena roldan", "CC fund": "yes", "Progmod": "no", "Website": "no", "Executive Director": "2640it(child care it center), 3256ps(hs collaboration with c", "Center Director": null, "ECE Available Programs": null, "NAEYC Valid Until": null, "NAEYC Program Id": null, "Email Address": null, "Ounce of Prevention Description": null, "Purple binder service type": null, "Column": null, "Column2": null}, {"Id": "3142", "Source": "purple_binder_early_childhood.csv", "Site name": "erie neighborhood house", "Address": "1701 w superior street", "Zip": "60622", "Phone": "5635800", "Fax": null, "Program Name": null, "Length of Day": null, "IDHS Provider ID": null, "Agency": null, "Neighborhood": null, "Funded Enrollment": null, "Program Option": null, "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": null, "CC fund": null, "Progmod": null, "Website": null, "Executive Director": null, "Center Director": null, "ECE Available Programs": null, "NAEYC Valid Until": null, "NAEYC Program Id": null, "Email Address": null, "Ounce of Prevention Description": null, "Purple binder service type": null, "Column": null, "Column2": "child care"}], [{"Id": "1854", "Source": "chapin_dfss_providers_2011_070212.csv", "Site name": "north avenue day nursery north avenue day nursery", "Address": "2001 w pierce", "Zip": "60622", "Phone": "3424499", "Fax": null, "Program Name": null, "Length of Day": null, "IDHS Provider ID": null, "Agency": null, "Neighborhood": null, "Funded Enrollment": "north avenue day nursery", "Program Option": "west town", "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": "steve koll", "CC fund": "yes", "Progmod": "no", "Website": "yes", "Executive Director": "3270ps(hs collaboration with childcare & prek), 2742ps(child", "Center Director": null, "ECE Available Programs": null, "NAEYC Valid Until": null, "NAEYC Program Id": null, "Email Address": null, "Ounce of Prevention Description": null, "Purple binder service type": null, "Column": null, "Column2": null}, {"Id": "3236", "Source": "purple_binder_early_childhood.csv", "Site name": "north avenue day nursery", "Address": "2001 w pierce street", "Zip": "60622", "Phone": "3424499", "Fax": null, "Program Name": null, "Length of Day": null, "IDHS Provider ID": null, "Agency": null, "Neighborhood": null, "Funded Enrollment": null, "Program Option": null, "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": null, "CC fund": null, "Progmod": null, "Website": null, "Executive Director": null, "Center Director": null, "ECE Available Programs": null, "NAEYC Valid Until": null, "NAEYC Program Id": null, "Email Address": null, "Ounce of Prevention Description": null, "Purple binder service type": null, "Column": null, "Column2": "child care"}], [{"Id": "2327", "Source": "ece chicago find a school scrape.csv", "Site name": "belmont-cragin", "Address": "6041 w. diversey", "Zip": "60639", "Phone": "5343318", "Fax": null, "Program Name": null, "Length of Day": null, "IDHS Provider ID": null, "Agency": null, "Neighborhood": "belmont cragin", "Funded Enrollment": null, "Program Option": null, "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": null, "CC fund": null, "Progmod": null, "Website": null, "Executive Director": null, "Center Director": null, "ECE Available Programs": "pfa-reg ts", "NAEYC Valid Until": null, "NAEYC Program Id": null, "Email Address": null, "Ounce of Prevention Description": null, "Purple binder service type": null, "Column": null, "Column2": null}, {"Id": "2874", "Source": "naeyc_accreditation.csv", "Site name": "belmont cragin early childhood center", "Address": "6041 w. diversey avenue", "Zip": "60639", "Phone": "5343318", "Fax": null, "Program Name": null, "Length of Day": null, "IDHS Provider ID": null, "Agency": null, "Neighborhood": null, "Funded Enrollment": null, "Program Option": null, "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": null, "CC fund": null, "Progmod": null, "Website": null, "Executive Director": null, "Center Director": null, "ECE Available Programs": null, "NAEYC Valid Until": null, "NAEYC Program Id": null, "Email Address": "08/01/16", "Ounce of Prevention Description": "723729", "Purple binder service type": "mmoya-leanga@cps.edu", "Column": null, "Column2": null}], [{"Id": "1865", "Source": "chapin_dfss_providers_2011_070212.csv", "Site name": "salvation army columbus park", "Address": "500 s central", "Zip": "60644", "Phone": "9214162", "Fax": null, "Program Name": null, "Length of Day": null, "IDHS Provider ID": null, "Agency": null, "Neighborhood": null, "Funded Enrollment": "salvation army", "Program Option": "austin", "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": "felice lewis", "CC fund": "yes", "Progmod": "no", "Website": "no", "Executive Director": "7017ps(hs collaboration with childcare & prek)", "Center Director": null, "ECE Available Programs": null, "NAEYC Valid Until": null, "NAEYC Program Id": null, "Email Address": null, "Ounce of Prevention Description": null, "Purple binder service type": null, "Column": null, "Column2": null}, {"Id": "3254", "Source": "purple_binder_early_childhood.csv", "Site name": "salvation army - columbus park school", "Address": "500 s central avenue", "Zip": "60644", "Phone": "9214162", "Fax": null, "Program Name": null, "Length of Day": null, "IDHS Provider ID": null, "Agency": null, "Neighborhood": null, "Funded Enrollment": null, "Program Option": null, "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": null, "CC fund": null, "Progmod": null, "Website": null, "Executive Director": null, "Center Director": null, "ECE Available Programs": null, "NAEYC Valid Until": null, "NAEYC Program Id": null, "Email Address": null, "Ounce of Prevention Description": null, "Purple binder service type": null, "Column": null, "Column2": "child care"}], [{"Id": "546", "Source": "cps_early_childhood_portal_scrape.csv", "Site name": "brown academy, r.", "Address": "12607 s. union", "Zip": null, "Phone": "5355385", "Fax": null, "Program Name": "head start", "Length of Day": "3-4 hours", "IDHS Provider ID": null, "Agency": null, "Neighborhood": null, "Funded Enrollment": null, "Program Option": null, "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": null, "CC fund": null, "Progmod": null, "Website": null, "Executive Director": null, "Center Director": null, "ECE Available Programs": null, "NAEYC Valid Until": null, "NAEYC Program Id": null, "Email Address": null, "Ounce of Prevention Description": null, "Purple binder service type": null, "Column": null, "Column2": null}, {"Id": "2344", "Source": "ece chicago find a school scrape.csv", "Site name": "brown academy", "Address": "12607 s. union", "Zip": "60628", "Phone": "5355385", "Fax": null, "Program Name": null, "Length of Day": null, "IDHS Provider ID": null, "Agency": null, "Neighborhood": "west pullman", "Funded Enrollment": null, "Program Option": null, "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": null, "CC fund": null, "Progmod": null, "Website": null, "Executive Director": null, "Center Director": null, "ECE Available Programs": "hs-hd", "NAEYC Valid Until": null, "NAEYC Program Id": null, "Email Address": null, "Ounce of Prevention Description": null, "Purple binder service type": null, "Column": null, "Column2": null}], [{"Id": "36", "Source": "cps_early_childhood_portal_scrape.csv", "Site name": "marcy newberry association - marcy center", "Address": "1539 s springfield ave", "Zip": null, "Phone": "7612300", "Fax": null, "Program Name": "child care", "Length of Day": "extended day", "IDHS Provider ID": null, "Agency": null, "Neighborhood": null, "Funded Enrollment": null, "Program Option": null, "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": null, "CC fund": null, "Progmod": null, "Website": null, "Executive Director": null, "Center Director": null, "ECE Available Programs": null, "NAEYC Valid Until": null, "NAEYC Program Id": null, "Email Address": null, "Ounce of Prevention Description": null, "Purple binder service type": null, "Column": null, "Column2": null}, {"Id": "3222", "Source": "purple_binder_early_childhood.csv", "Site name": "marcy newberry association - marcy center", "Address": "1539 s springfield avenue", "Zip": "60623", "Phone": "7612300", "Fax": null, "Program Name": null, "Length of Day": null, "IDHS Provider ID": null, "Agency": null, "Neighborhood": null, "Funded Enrollment": null, "Program Option": null, "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": null, "CC fund": null, "Progmod": null, "Website": null, "Executive Director": null, "Center Director": null, "ECE Available Programs": null, "NAEYC Valid Until": null, "NAEYC Program Id": null, "Email Address": null, "Ounce of Prevention Description": null, "Purple binder service type": null, "Column": null, "Column2": "child care"}], [{"Id": "277", "Source": "cps_early_childhood_portal_scrape.csv", "Site name": "north avenue day nursery", "Address": "2001 w. pierce", "Zip": null, "Phone": "3424499", "Fax": null, "Program Name": "community partnerships", "Length of Day": "8-11 hours, varies by facility", "IDHS Provider ID": null, "Agency": null, "Neighborhood": null, "Funded Enrollment": null, "Program Option": null, "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": null, "CC fund": null, "Progmod": null, "Website": null, "Executive Director": null, "Center Director": null, "ECE Available Programs": null, "NAEYC Valid Until": null, "NAEYC Program Id": null, "Email Address": null, "Ounce of Prevention Description": null, "Purple binder service type": null, "Column": null, "Column2": null}, {"Id": "2248", "Source": "dfss_agencysitelies_2012.csv", "Site name": "north avenue day nursery north avenue day nursery", "Address": "2001 w. pierce", "Zip": "60622", "Phone": "3424499", "Fax": null, "Program Name": null, "Length of Day": null, "IDHS Provider ID": null, "Agency": null, "Neighborhood": null, "Funded Enrollment": "north avenue day nursery", "Program Option": null, "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": null, "CC fund": null, "Progmod": null, "Website": null, "Executive Director": null, "Center Director": "www.nadnkids.org", "ECE Available Programs": "steve koll", "NAEYC Valid Until": "steve koll", "NAEYC Program Id": null, "Email Address": null, "Ounce of Prevention Description": null, "Purple binder service type": null, "Column": null, "Column2": null}], [{"Id": "749", "Source": "cps_early_childhood_portal_scrape.csv", "Site name": "hull house association - uptown west / hull house", "Address": "4520 n beacon st", "Zip": null, "Phone": "5613500", "Fax": null, "Program Name": "head start", "Length of Day": "half day/full day", "IDHS Provider ID": null, "Agency": null, "Neighborhood": null, "Funded Enrollment": null, "Program Option": null, "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": null, "CC fund": null, "Progmod": null, "Website": null, "Executive Director": null, "Center Director": null, "ECE Available Programs": null, "NAEYC Valid Until": null, "NAEYC Program Id": null, "Email Address": null, "Ounce of Prevention Description": null, "Purple binder service type": null, "Column": null, "Column2": null}, {"Id": "3179", "Source": "purple_binder_early_childhood.csv", "Site name": "hull house association - uptown west", "Address": "4520 n beacon street", "Zip": "60640", "Phone": "5613500", "Fax": null, "Program Name": null, "Length of Day": null, "IDHS Provider ID": null, "Agency": null, "Neighborhood": null, "Funded Enrollment": null, "Program Option": null, "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": null, "CC fund": null, "Progmod": null, "Website": null, "Executive Director": null, "Center Director": null, "ECE Available Programs": null, "NAEYC Valid Until": null, "NAEYC Program Id": null, "Email Address": null, "Ounce of Prevention Description": null, "Purple binder service type": null, "Column": null, "Column2": "child care"}], [{"Id": "255", "Source": "cps_early_childhood_portal_scrape.csv", "Site name": "chicago commons-taylor center for new experiences", "Address": "1633 n. hamlin", "Zip": null, "Phone": "2278551", "Fax": null, "Program Name": "community partnerships", "Length of Day": "8-11 hours, varies by facility", "IDHS Provider ID": null, "Agency": null, "Neighborhood": null, "Funded Enrollment": null, "Program Option": null, "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": null, "CC fund": null, "Progmod": null, "Website": null, "Executive Director": null, "Center Director": null, "ECE Available Programs": null, "NAEYC Valid Until": null, "NAEYC Program Id": null, "Email Address": null, "Ounce of Prevention Description": null, "Purple binder service type": null, "Column": null, "Column2": null}, {"Id": "2398", "Source": "ece chicago find a school scrape.csv", "Site name": "chicago commons taylor center", "Address": "1633 n. hamlin", "Zip": "60647", "Phone": "2278551", "Fax": null, "Program Name": null, "Length of Day": null, "IDHS Provider ID": null, "Agency": null, "Neighborhood": "humboldt park", "Funded Enrollment": null, "Program Option": null, "Number per Site EHS": null, "Number per Site HS": null, "Director": null, "Head Start Fund": null, "Eearly Head Start Fund": null, "CC fund": null, "Progmod": null, "Website": null, "Executive Director": null, "Center Director": null, "ECE Available Programs": "cp", "NAEYC Valid Until": null, "NAEYC Program Id": null, "Email Address": null, "Ounce of Prevention Description": null, "Purple binder service type": null, "Column": null, "Column2": null}]]} \ No newline at end of file diff --git a/s3_csv_example/s3firstfiletest.csv b/s3_csv_example/s3firstfiletest.csv new file mode 100644 index 00000000..7001ca08 --- /dev/null +++ b/s3_csv_example/s3firstfiletest.csv @@ -0,0 +1,3682 @@ +Id,Source,Site name,Address,Zip,Phone,Fax,Program Name,Length of Day,IDHS Provider ID,Agency,Neighborhood,Funded Enrollment,Program Option,Number per Site EHS,Number per Site HS,Director,Head Start Fund,Eearly Head Start Fund,CC fund,Progmod,Website,Executive Director,Center Director,ECE Available Programs,NAEYC Valid Until,NAEYC Program Id,Email Address,Ounce of Prevention Description,Purple binder service type,Column,Column2 +0,CPS_Early_Childhood_Portal_scrape.csv, Salvation Army - Temple / Salvation Army,1 N Ogden Ave ,,2262649,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +1,CPS_Early_Childhood_Portal_scrape.csv, Salvation Army - Temple / Salvation Army,1 N Ogden Ave ,,2262649,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +2,CPS_Early_Childhood_Portal_scrape.csv, National Louis University - Dr. Effie O. Ellis Training Center,10 S Kedzie Ave ,,5339011,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +3,CPS_Early_Childhood_Portal_scrape.csv, National Louis University - Dr. Effie O. Ellis Training Center,10 S Kedzie Ave ,,5339011,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +4,CPS_Early_Childhood_Portal_scrape.csv, Board Trustees-City Colleges of Chicago - Olive-Harvey College,10001 S Woodlawn Ave ,,2916100,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +5,CPS_Early_Childhood_Portal_scrape.csv, Board Trustees-City Colleges of Chicago - Olive-Harvey College,10001 S Woodlawn Ave ,,2916100,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +6,CPS_Early_Childhood_Portal_scrape.csv, Easter Seals Society of Metropolitan Chicago - Gilchrist-Marchman,1001 W Roosevelt Rd ,,9395115,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +7,CPS_Early_Childhood_Portal_scrape.csv, Easter Seals Society of Metropolitan Chicago - Gilchrist-Marchman,1001 W Roosevelt Rd ,,9395115,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +8,CPS_Early_Childhood_Portal_scrape.csv, Hull House Association - Uptown Head Start / Hull House,1020 W Bryn Mawr Ave ,,7695753,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +9,CPS_Early_Childhood_Portal_scrape.csv, Hull House Association - Child Dev. Central Office- Hull House CDS-Homes,1030 W Van Buren St ,,9068600,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +10,CPS_Early_Childhood_Portal_scrape.csv, Hull House Association - Child Dev. Central Office- Hull House CDS-Homes,1030 W Van Buren St ,,9068600,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +11,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - St. Kevin,10509 S Torrence Ave ,,3746466,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +12,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - St. Kevin,10509 S Torrence Ave ,,3746466,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +13,CPS_Early_Childhood_Portal_scrape.csv, Chicago State University - Community Learning Center,10612 S Wentworth ,,,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +14,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - Cordia Marian,1100 S May St ,,6663787,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +15,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - Cordia Marian,1100 S May St ,,6663787,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +16,CPS_Early_Childhood_Portal_scrape.csv, Thresholds - Thresholds Mothers' Project,1110 W Belmont Ave ,,4723558,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +17,CPS_Early_Childhood_Portal_scrape.csv, Bethel New Life - Molade Child Development Center,1120 N Lamon Ave ,,6267760,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +18,CPS_Early_Childhood_Portal_scrape.csv, South East Asia Center - South-East Asia Center(Ainslie),1124 W Ainslie St ,,9897433,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +19,CPS_Early_Childhood_Portal_scrape.csv, Ada S. McKinley Community Services - McKinley - Roseland,11410 S Edbrooke Ave ,,4681918,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +20,CPS_Early_Childhood_Portal_scrape.csv, Ada S. McKinley Community Services - McKinley - Roseland,11410 S Edbrooke Ave ,,4681918,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +21,CPS_Early_Childhood_Portal_scrape.csv, Board Trustees-City Colleges of Chicago - Truman,1145 W Wilson Ave ,,8781700,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +22,CPS_Early_Childhood_Portal_scrape.csv, Chicago State University - Gingerbread House,11640 S Wentworth Ave ,,9284041,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +23,CPS_Early_Childhood_Portal_scrape.csv, Chicago State University - Gingerbread House,11640 S Wentworth Ave ,,9284041,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +24,CPS_Early_Childhood_Portal_scrape.csv, Chicago State University - Academy of Early Education,124 E 113th St ,,7858163,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +25,CPS_Early_Childhood_Portal_scrape.csv, Chicago State University - Academy of Early Education,124 E 113th St ,,7858163,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +26,CPS_Early_Childhood_Portal_scrape.csv, Easter Seals Society of Metropolitan Chicago - Stepping Stones Early/Childhood Lear,1300 E 75th St ,,4930000,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +27,CPS_Early_Childhood_Portal_scrape.csv, Marcy Newberry Association - FOSCO ABLA Center,1312 S Racine Ave ,,7466024,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +28,CPS_Early_Childhood_Portal_scrape.csv, Marcy Newberry Association - FOSCO ABLA Center,1312 S Racine Ave ,,7466024,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +29,CPS_Early_Childhood_Portal_scrape.csv, Salvation Army - Incarnation / Salvation Army,1345 N Karlov Ave ,,2764118,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +30,CPS_Early_Childhood_Portal_scrape.csv, Abraham Lincoln Centre - Hope Presbyterian Church,1354 W 61st St ,,4715100,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +31,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - Our Lady of Lourdes,1449 S Keeler Ave ,,5213126,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +32,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - Our Lady of Lourdes,1449 S Keeler Ave ,,5213126,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +33,CPS_Early_Childhood_Portal_scrape.csv, Lutheran Social Services of Illinois - North Austin / LSSI,1500 N Mason Ave ,,2371930,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +34,CPS_Early_Childhood_Portal_scrape.csv, Marcy Newberry Association - New Birth,1500 W 69th St ,,4710699,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +35,CPS_Early_Childhood_Portal_scrape.csv, Chicago Youth Centers - Mt. Moriah-Taylor / CYC,1501 N Harding Ave ,,2785837,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +36,CPS_Early_Childhood_Portal_scrape.csv, Marcy Newberry Association - Marcy Center,1539 S Springfield Ave ,,7612300,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +37,CPS_Early_Childhood_Portal_scrape.csv, Marcy Newberry Association - Marcy Center,1539 S Springfield Ave ,,7612300,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +38,CPS_Early_Childhood_Portal_scrape.csv, Mary Crane League - Mary Crane - Morse,1545 W Morse Ave ,,2621390,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +39,CPS_Early_Childhood_Portal_scrape.csv, South Shore Bible - Maranatha,1631 E 71st St ,,4937500,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +40,CPS_Early_Childhood_Portal_scrape.csv, Chicago Commons Association - Taylor Center for New Experiences,1633 N Hamlin Ave ,,2278551,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +41,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - Ebenezer,1652 W Foster Ave ,,8789925,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +42,CPS_Early_Childhood_Portal_scrape.csv, Chicago Commons Association - Paulo Freire,1653 W 43rd St ,,8262669,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +43,CPS_Early_Childhood_Portal_scrape.csv, Erie Neighborhood House - Erie Community Center,1701 W Superior St ,,5635800,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +44,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Little Tykes I,1711 W 35th St ,,2547700,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +45,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Little Tykes I,1711 W 35th St ,,2547700,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +46,CPS_Early_Childhood_Portal_scrape.csv, ChildServ - Pilsen,1711 W Garfield Blvd ,,,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +47,CPS_Early_Childhood_Portal_scrape.csv, El Hogar del Nino/Cuidar - El Hogar del Nino/El Centro - Loomis,1718 S Loomis Blvd ,,5639796,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +48,CPS_Early_Childhood_Portal_scrape.csv, El Hogar del Nino/Cuidar - El Hogar del Nino/El Centro - Loomis,1718 S Loomis Blvd ,,5639796,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +49,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Little Tykes II,1723 W 35th St ,,5791791,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +50,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Little Tykes II,1723 W 35th St ,,5791791,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +51,CPS_Early_Childhood_Portal_scrape.csv, Church of God True Believers - Church of God Day Care,1738 W Marquette Rd ,,4715222,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +52,CPS_Early_Childhood_Portal_scrape.csv, Lutheran Social Services of Illinois - Rogers Park / LSSI,1754 W Devon Ave ,,2623366,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +53,CPS_Early_Childhood_Portal_scrape.csv, Chicago Commons Association - Guadalupano Family Center,1814 S Paulina St ,,6663883,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +54,CPS_Early_Childhood_Portal_scrape.csv, Chicago Commons Association - Guadalupano Family Center,1814 S Paulina St ,,6663883,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +55,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - McCormick Tribune- YMCA,1834 N Lawndale Ave ,,2352525,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +56,CPS_Early_Childhood_Portal_scrape.csv, Board Trustees-City Colleges of Chicago - Malcolm X College,1900 W Van Buren St ,,8507000,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +57,CPS_Early_Childhood_Portal_scrape.csv, Board Trustees-City Colleges of Chicago - Malcolm X College,1900 W Van Buren St ,,8507000,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +58,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Guadalupe Reyes Children & Family Center,1951 W 19th St ,,9972021,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +59,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Guadalupe Reyes Children & Family Center,1951 W 19th St ,,9972021,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +60,CPS_Early_Childhood_Portal_scrape.csv, North Avenue Day Nursery - North Avenue Day Nursery,2001 W Pierce Ave ,,3424499,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +61,CPS_Early_Childhood_Portal_scrape.csv, Carole Robertson Center For Learning - Carole Robertson Center CTR 2020,2020 W Roosevelt Rd ,,2437300,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +62,CPS_Early_Childhood_Portal_scrape.csv, Carole Robertson Center For Learning - Carole Robertson Center CTR 2020,2020 W Roosevelt Rd ,,2437300,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +63,CPS_Early_Childhood_Portal_scrape.csv, Chinese American Service League - Chinese American Service League,2141 S Tan Ct ,,7910418,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +64,CPS_Early_Childhood_Portal_scrape.csv, Chinese American Service League - Chinese American Service League,2141 S Tan Ct ,,7910418,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +65,CPS_Early_Childhood_Portal_scrape.csv, First Church of Love And Faith - First Church of Love & Faith Annex,2141 W 79th St ,,2246800,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +66,CPS_Early_Childhood_Portal_scrape.csv, El Hogar del Nino/Cuidar - El Hogar del Nino/Cuidar- California,2325 S California Ave ,,5231629,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +67,CPS_Early_Childhood_Portal_scrape.csv, El Hogar del Nino/Cuidar - El Hogar del Nino/Cuidar- California,2325 S California Ave ,,5231629,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +68,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Bernard Gentry,2326 S Dearborn St ,,8428557,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +69,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Bernard Gentry,2326 S Dearborn St ,,8428557,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +70,CPS_Early_Childhood_Portal_scrape.csv, Chicago State University - Kenyatta's Day Care,2334 E 75th ,,2213777,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +71,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Hillard House / Henry Booth,2401 S Wabash Ave ,,7919710,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +72,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - Our Lady of Tepeyac,2414 S Albany Ave ,,2775888,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +73,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - Our Lady of Tepeyac,2414 S Albany Ave ,,2775888,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +74,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - High Ridge YMCA,2424 W Touhy Ave ,,2628300,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +75,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Carlos Cantu,2434 S Kildare Ave ,,,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +76,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Carlos Cantu,2434 S Kildare Ave ,,,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +77,CPS_Early_Childhood_Portal_scrape.csv, Christopher House - Christopher House - Greenview,2507 N Greenview Ave ,,4721083,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +78,CPS_Early_Childhood_Portal_scrape.csv, Christopher House - Christopher House - Logan Square,2610 N Francisco Ave ,,2354073,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +79,CPS_Early_Childhood_Portal_scrape.csv, St. Augustine College - St. Augustine - Nayarit,2610 W 25th Pl ,,8783641,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +80,CPS_Early_Childhood_Portal_scrape.csv, St. Augustine College - St. Augustine - Nayarit,2610 W 25th Pl ,,8783641,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +81,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - Rauner,2700 S Western Ave ,,8473115,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +82,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - Rauner,2700 S Western Ave ,,8473115,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +83,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - YMCA - Bowen High School,2710 E 89th St ,,9330166,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +84,CPS_Early_Childhood_Portal_scrape.csv, Easter Seals Society of Metropolitan Chicago - The Keeper's Inst.,2718 W 59th St ,,,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +85,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Centro Infantil(Puerto Rican Comm),2739 W Division St ,,3428866,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +86,CPS_Early_Childhood_Portal_scrape.csv, Mary Crane League - Mary Crane - West,2820 N Leavitt St ,,3485528,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +87,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Family Service Center / Henry Booth,2850 S Michigan Ave ,,9492151,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +88,CPS_Early_Childhood_Portal_scrape.csv, Mary Crane League - Mary Crane - North,2905 N Leavitt St ,,9753322,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +89,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Near South / Henry Booth,2929 S Wabash Ave ,,7910424,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +90,CPS_Early_Childhood_Portal_scrape.csv, Carole Robertson Center For Learning - Carole Robertson Center 2929,2929 W 19th St ,,5211600,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +91,CPS_Early_Childhood_Portal_scrape.csv, Carole Robertson Center For Learning - Carole Robertson Center 2929,2929 W 19th St ,,5211600,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +92,CPS_Early_Childhood_Portal_scrape.csv, Boys and Girls Clubs of Chicago - R.E. Woods,2950 W 25th St ,,8475172,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +93,CPS_Early_Childhood_Portal_scrape.csv, Boys and Girls Clubs of Chicago - R.E. Woods,2950 W 25th St ,,8475172,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +94,CPS_Early_Childhood_Portal_scrape.csv, Mary Crane League - Mary Crane - East,2974 N Clybourn Ave ,,3485528,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +95,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Young Scholars Dev. Ins,3038 W 59th St ,,9181944,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +96,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - South Chicago YMCA,3039 E 91st St ,,7219100,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +97,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Rey Gonzalez Children & Family Center,3050 E 92nd St ,,7219311,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +98,CPS_Early_Childhood_Portal_scrape.csv, Bethel New Life - Lake and Pulaski,316 N Pulaski Rd ,,2653830,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +99,CPS_Early_Childhood_Portal_scrape.csv, ChildServ - FSS of Lawndale,3210 W Arthington St ,,8677370,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +100,CPS_Early_Childhood_Portal_scrape.csv, ChildServ - FSS of Lawndale,3210 W Arthington St ,,8677370,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +101,CPS_Early_Childhood_Portal_scrape.csv, Metropolitan Family Services - Midway Children's Center (Chicago Lawn),3215 W 63rd St ,,8842350,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +102,CPS_Early_Childhood_Portal_scrape.csv, Chicago Youth Centers - Centro Nuestro / CYC,3222 W Division Ave ,,4893157,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +103,CPS_Early_Childhood_Portal_scrape.csv, Metropolitan Family Services - North Children's Center,3249 N Central Ave ,,3713700,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +104,CPS_Early_Childhood_Portal_scrape.csv, Christopher House - Christoper House - Logan Square,3255 W Altgeld St ,,2354073,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +105,CPS_Early_Childhood_Portal_scrape.csv, Chicago State University - Professional Playhouse,338 E 103rd ,,5680728,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +106,CPS_Early_Childhood_Portal_scrape.csv, Chicago State University - Professional Playhouse,338 E 103rd ,,5680728,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +107,CPS_Early_Childhood_Portal_scrape.csv, Albany Park Community Center - Albany Park Day Care - Ainslie,3401 W Ainslie St ,,5395907,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +108,CPS_Early_Childhood_Portal_scrape.csv, St. Augustine College - St. Augustine - Flamboyan,3401 W McLean Ave ,,2763423,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +109,CPS_Early_Childhood_Portal_scrape.csv, Chicago Youth Centers - ABC,3415 W 13th Pl ,,,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +110,CPS_Early_Childhood_Portal_scrape.csv, Chicago Youth Centers - ABC,3415 W 13th Pl ,,,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +111,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - North Lawndale YMCA,3449 W Arthington St ,,6380773,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +112,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - North Lawndale YMCA,3449 W Arthington St ,,6380773,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +113,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Teddy Bear 2 Columbus,3473 W Columbus ,,,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +114,CPS_Early_Childhood_Portal_scrape.csv, Centers For New Horizons - Ida B. Wells Learning Center,3601 S Rhodes St ,,3733640,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +115,CPS_Early_Childhood_Portal_scrape.csv, Firman Community Services - Firman House West,37 W 47th St ,,3733400,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +116,CPS_Early_Childhood_Portal_scrape.csv, Carole Robertson Center For Learning - Carole Robertson Center- Ogden 3701,3701 W Ogden Ave ,,5228400,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +117,CPS_Early_Childhood_Portal_scrape.csv, Carole Robertson Center For Learning - Carole Robertson Center- Ogden 3701,3701 W Ogden Ave ,,5228400,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +118,CPS_Early_Childhood_Portal_scrape.csv, Ada S. McKinley Community Services - McKinley - St. Thomas,3801 S Wabash Ave ,,2850617,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +119,CPS_Early_Childhood_Portal_scrape.csv, Centers For New Horizons - Edison L. Hoard Learning Center,3901 S State St ,,5362187,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +120,CPS_Early_Childhood_Portal_scrape.csv, Easter Seals Society of Metropolitan Chicago - It Takes a Village,4000 W Division St ,,,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +121,CPS_Early_Childhood_Portal_scrape.csv, Grant Creative Learning Center - Grant Day Care Center,4025 S Drexel St ,,2858440,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +122,CPS_Early_Childhood_Portal_scrape.csv, Salvation Army - New Hope / Salvation Army,4255 W Division St ,,7224908,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +123,CPS_Early_Childhood_Portal_scrape.csv, Korean American Community Services - Korean American Community Services,4300 N California Ave ,,5838281,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +124,CPS_Early_Childhood_Portal_scrape.csv, Centers For New Horizons - Effie Ellis,4301 S Cottage Grove Ave ,,,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +125,CPS_Early_Childhood_Portal_scrape.csv, Ada S. McKinley Community Services - Maggie Drummond Day Care,4301 S Wabash Ave ,,3738200,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +126,CPS_Early_Childhood_Portal_scrape.csv, Abraham Lincoln Centre - Lincoln - King,4314 S Cottage Grove Ave ,,7472310,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +127,CPS_Early_Childhood_Portal_scrape.csv, Hull House Association - Leclaire-Ryder Day Care / Hull House,4410 S Laporte Ave ,,7675170,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +128,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Kiddy Kare Learning Ctr,4444 S Kedzie Ave ,,2476642,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +129,CPS_Early_Childhood_Portal_scrape.csv, Hull House Association - Uptown West / Hull House,4520 N Beacon St ,,5613500,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +130,CPS_Early_Childhood_Portal_scrape.csv, St. Paul Church of God - Chaney Ford Child Care Center,4526 S Wabash Ave ,,2858721,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +131,CPS_Early_Childhood_Portal_scrape.csv, Chicago Youth Centers - Roseland / CYC,461 E 111th St ,,4684405,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +132,CPS_Early_Childhood_Portal_scrape.csv, Chicago Youth Centers - Roseland / CYC,461 E 111th St ,,4684405,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +133,CPS_Early_Childhood_Portal_scrape.csv, Home of Life Community Dev. Corp. - Home of Life Just For You,4647 W Washington Blvd ,,6268655,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +134,CPS_Early_Childhood_Portal_scrape.csv, Home of Life Community Dev. Corp. - Home of Life Community Development,4650 W Madison St ,,6268655,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +135,CPS_Early_Childhood_Portal_scrape.csv, Christopher House - Christopher House - Uptown,4701 N Winthrop Ave ,,7694540,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +136,CPS_Early_Childhood_Portal_scrape.csv, Hull House Association - Lincoln Square / Hull House,4754 N Leavitt St ,,8788651,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +137,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - St. Joseph,4800 S Paulina St ,,9272524,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +138,CPS_Early_Childhood_Portal_scrape.csv, Lutheran Social Services of Illinois - Winthrop Children's Center / LSSI,4848 N Winthrop Ave ,,8783210,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +139,CPS_Early_Childhood_Portal_scrape.csv, Firman Community Services - Firman House East,4910 S Dr. Martin Luther King Dr ,,3732083,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +140,CPS_Early_Childhood_Portal_scrape.csv, Healing Temple - Healing Temple,4941 W Chicago Ave ,,2876964,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +141,CPS_Early_Childhood_Portal_scrape.csv, Appeal for Charities and Goodwill - Appeal for Charities,50 W 71st St ,,6515400,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +142,CPS_Early_Childhood_Portal_scrape.csv, Salvation Army - Columbus Park / Salvation Army,500 S Central Ave ,,9214162,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +143,CPS_Early_Childhood_Portal_scrape.csv," Douglass-Tubman Youth Ministries,Inc. - Douglass-Tubman Child Development Center",5010 W Chicago Ave ,,6266581,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +144,CPS_Early_Childhood_Portal_scrape.csv, Wayman Day Care Center - Wayman Day Care,511 W Elm St ,,9432120,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +145,CPS_Early_Childhood_Portal_scrape.csv, Albany Park Community Center - Albany Park Head Start Center-Kimball,5121 N Kimball Ave ,,5095657,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +146,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Teddy Bear 5 Pulaski,5160 S Pulaski RD ,,,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +147,CPS_Early_Childhood_Portal_scrape.csv, Trinity United Church of Christ - Trinity United,532 W 95th St ,,4883511,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +148,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - Grace Mission,5332 S Western Ave ,,4761990,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +149,CPS_Early_Childhood_Portal_scrape.csv, Firman Community Services - Firman House South,5401 S Wentworth Ave ,,4513400,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +150,CPS_Early_Childhood_Portal_scrape.csv, Onward Neighborhood House - Belmont-Cragin,5423 W Diversey ,,,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +151,CPS_Early_Childhood_Portal_scrape.csv, Onward Neighborhood House - Tiny Town for Tots,5654 W Division St ,,,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +152,CPS_Early_Childhood_Portal_scrape.csv, Marcy Newberry Association - St. John Greater Holy Temple,5701 W Midway Park ,,9480094,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +153,CPS_Early_Childhood_Portal_scrape.csv, El Hogar del Nino/Cuidar - Blanca Alatorre,5738 S KENNETH AVE ,,,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +154,CPS_Early_Childhood_Portal_scrape.csv," Trinity Resources Unlimited, Inc. - Hope for Youth",5900 W Iowa St ,,6260323,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +155,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Little Learners,5923 W 63rd St ,,5815541,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +156,CPS_Early_Childhood_Portal_scrape.csv, Onward Neighborhood House - Onward Neighborhood House,600 N Leavitt St ,,6666726,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +157,CPS_Early_Childhood_Portal_scrape.csv," Heartland Alliance for Human Needs & Rights - Heartland Human Care Services, Inc",615 W Wellington Ave ,,,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +158,CPS_Early_Childhood_Portal_scrape.csv, Centers For New Horizons - Washington Park South Learning Center,6225 S Wabash Ave ,,6672065,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +159,CPS_Early_Childhood_Portal_scrape.csv, Boys and Girls Clubs of Chicago - Yancey,6245 S Wabash Ave ,,3634733,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +160,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Kidz Colony,6287 S Archer Ave ,,7678522,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +161,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - South Side YMCA,6330 S Stony Island Ave ,,9470700,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +162,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Teddy Bear 3 Pulaski,6401 S Pulaski RD ,,,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +163,CPS_Early_Childhood_Portal_scrape.csv, Woodlawn A.M.E. Church - Woodlawn A.M.E.,6456 S Evans Ave ,,6671402,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +164,CPS_Early_Childhood_Portal_scrape.csv, Board Trustees-City Colleges of Chicago - Kennedy-King College,6800 S Wentworth Ave ,,5533475,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +165,CPS_Early_Childhood_Portal_scrape.csv, Family Rescue - Ridgeland Head Start,6824 S Ridgeland Ave ,,6671073,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +166,CPS_Early_Childhood_Portal_scrape.csv, Trinity United Church of Christ - Dr. Denton J. Brooks Center,6921 S Stony Island Ave ,,9552818,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +167,CPS_Early_Childhood_Portal_scrape.csv, Abraham Lincoln Centre - Lincoln - Roseland,7 E 119th St ,,2647632,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +168,CPS_Early_Childhood_Portal_scrape.csv, Abraham Lincoln Centre - Lincoln - Roseland,7 E 119th St ,,2647632,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +169,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - Garfield Head Start/Child Developmental Center- YMCA,7 N Homan Ave ,,2653900,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +170,CPS_Early_Childhood_Portal_scrape.csv, Christopher House - Christopher House - Rogers Park,7059 N Greenview Ave ,,2745477,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +171,CPS_Early_Childhood_Portal_scrape.csv, Ada S. McKinley Community Services - Little Hands,7146 S Ashland Ave ,,,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +172,CPS_Early_Childhood_Portal_scrape.csv, Ada S. McKinley Community Services - McKinley - Howard,7222 S Exchange Ave ,,2219711,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +173,CPS_Early_Childhood_Portal_scrape.csv, Hull House Association - Orr High School non-cys funded,730 N Pulaski Rd ,,8261090,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +174,CPS_Early_Childhood_Portal_scrape.csv, South Shore United Methodist - South Shore United,7350 S Jeffery Blvd ,,3244430,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +175,CPS_Early_Childhood_Portal_scrape.csv, Chicago Commons Association - Nia Family Center,744 N Monticello Ave ,,8266971,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +176,CPS_Early_Childhood_Portal_scrape.csv, Howard Area Community Center - Howard Area Community Center,7510 N Ashland Ave ,,7647610,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +177,CPS_Early_Childhood_Portal_scrape.csv, Chicago Youth Centers - Rebecca K. Crown / CYC,7601 S Phillips Ave ,,6481550,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +178,CPS_Early_Childhood_Portal_scrape.csv, Howard Area Community Center - Howard Area,7638 N Paulina Ave ,,3813652,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +179,CPS_Early_Childhood_Portal_scrape.csv, ChildServ - Englewood,7928 S Ashland Ave ,,,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +180,CPS_Early_Childhood_Portal_scrape.csv, Ada S. McKinley Community Services - McKinley - Wright Renaissance,7939 S Western Ave ,,4768805,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +181,CPS_Early_Childhood_Portal_scrape.csv, Chicago State University - Tiny Tots Villa,8128 S Dr. Martin Luther King Dr ,,4836251,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +182,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - New Pisgah,8130 S Racine Ave ,,8735392,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +183,CPS_Early_Childhood_Portal_scrape.csv, Human Resources Development Institute - Human Resources Development Institute,8151 S Western Ave ,,8631145,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +184,CPS_Early_Childhood_Portal_scrape.csv, South Central Community Services - South Central Community Services,8316 S Ellis Ave ,,4830900,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +185,CPS_Early_Childhood_Portal_scrape.csv, Marcy Newberry Association - South Harper Montessori,8358 S Stony Island Ave ,,7340375,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +186,CPS_Early_Childhood_Portal_scrape.csv, Christopher House - Christopher House - Lakeshore,850 W Eastwood Ave ,,2719403,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +187,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - North Kenwood Day Care Center,857 E Pershing Rd ,,2682223,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +188,CPS_Early_Childhood_Portal_scrape.csv, Dorothy Sutton Branch - Dorothy Sutton Branch,8601 S State St ,,7234445,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +189,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - St. Bronislava,8716 S Colfax Ave ,,9337676,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +190,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - Our Lady of Guadalupe,9129 S Burley Ave ,,9785320,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +191,CPS_Early_Childhood_Portal_scrape.csv, Haymarket Center - Haymarket Center,932 W Washington Blvd ,,2267984,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +192,CPS_Early_Childhood_Portal_scrape.csv, Centers For New Horizons - Altgeld Gardens I,941 E 132nd Pl ,,4683055,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +193,CPS_Early_Childhood_Portal_scrape.csv, Centers For New Horizons - Altgeld Gardens I,941 E 132nd Pl ,,4683055,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +194,CPS_Early_Childhood_Portal_scrape.csv, The Woodlawn Organization - T.W.O. Early Child Development,950 E 61ST St ,,2885840,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +195,CPS_Early_Childhood_Portal_scrape.csv, Human Resources Development Institute - Donna Randle,9634 S CHAPPEL AVE ,,,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +196,CPS_Early_Childhood_Portal_scrape.csv, Chicago Youth Centers - Dorothy Gautreaux / CYC,975 E 132nd St ,,2911000,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +197,CPS_Early_Childhood_Portal_scrape.csv, Chicago Youth Centers - Dorothy Gautreaux / CYC,975 E 132nd St ,,2911000,,Child Care,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +198,CPS_Early_Childhood_Portal_scrape.csv, Joyner CPC,1315 S. Blue Island ,,5347903,,Child Parent Center,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +199,CPS_Early_Childhood_Portal_scrape.csv, Von Humboldt CPC,1345 N. Rockwell ,,5344668,,Child Parent Center,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +200,CPS_Early_Childhood_Portal_scrape.csv, Herzl CPC,1401 S. Hamlin ,,5341751,,Child Parent Center,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +201,CPS_Early_Childhood_Portal_scrape.csv, Herzl CPC,1401 S. Hamlin ,,5341751,,Child Parent Center,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +202,CPS_Early_Childhood_Portal_scrape.csv, Ferguson CPC,1420 N. Hudson ,,5348580,,Child Parent Center,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +203,CPS_Early_Childhood_Portal_scrape.csv, Parker CPC,328 W. 69Th ,,5353853,,Child Parent Center,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +204,CPS_Early_Childhood_Portal_scrape.csv, Delano CPC,3905 W. Wilcox ,,5346450,,Child Parent Center,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +205,CPS_Early_Childhood_Portal_scrape.csv, Hansberry CPC,4055 W. Arthington ,,5346931,,Child Parent Center,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +206,CPS_Early_Childhood_Portal_scrape.csv, Hansberry CPC,4055 W. Arthington ,,5346931,,Child Parent Center,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +207,CPS_Early_Childhood_Portal_scrape.csv, Cole CPC,412 S. Keeler ,,5346857,,Child Parent Center,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +208,CPS_Early_Childhood_Portal_scrape.csv, Woodson South CPC,4511 S. Evans Ave ,,5351822,,Child Parent Center,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +209,CPS_Early_Childhood_Portal_scrape.csv, Overton CPC,4935 S. Indiana ,,5351811,,Child Parent Center,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +210,CPS_Early_Childhood_Portal_scrape.csv, Beasley CPC,5165 S. State St ,,5351772,,Child Parent Center,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +211,CPS_Early_Childhood_Portal_scrape.csv, Dewey CPC,638 W. 54Th Pl. ,,5351671,,Child Parent Center,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +212,CPS_Early_Childhood_Portal_scrape.csv, Wheatley CPC,902 E. 133rd Pl ,,5355718,,Child Parent Center,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +213,CPS_Early_Childhood_Portal_scrape.csv, Wheatley CPC,902 E. 133rd Pl ,,5355718,,Child Parent Center,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +214,CPS_Early_Childhood_Portal_scrape.csv, V & J Day Care Center,1 E. 113th St. ,,7853940,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +215,CPS_Early_Childhood_Portal_scrape.csv, Salvation Army Temple,1 N. Ogden ,,2262649,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +216,CPS_Early_Childhood_Portal_scrape.csv, National Louis University-Dr. Effie O. Ellis Head Start,10 S. Kedzie ,,5339011,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +217,CPS_Early_Childhood_Portal_scrape.csv, City Colleges Olive-Harvey CDC,10001 S. Woodlawn ,,2916315,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +218,CPS_Early_Childhood_Portal_scrape.csv, Easter Seals - Gilchrist Marchman,1001 W. Roosevelt Rd ,,4927402,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +219,CPS_Early_Childhood_Portal_scrape.csv, Hull House Association Edgewater/Uptown,1020 W. Bryn Mawr ,,4695626,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +220,CPS_Early_Childhood_Portal_scrape.csv," Montessori Academy and Association, Inc. 2",10232 S. Halsted St. ,,2331100,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +221,CPS_Early_Childhood_Portal_scrape.csv, Archdiocese of Chicago - St. Mary of the Lake,1026 W. Buena Ave. ,,2810018,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +222,CPS_Early_Childhood_Portal_scrape.csv, Small Stride Academy,10317 S. Western ,,2390040,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +223,CPS_Early_Childhood_Portal_scrape.csv, Loyola University Chicago,1052 W. Loyola Ave ,,5083440,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +224,CPS_Early_Childhood_Portal_scrape.csv, Children?s Developmental Institute MP,10928 S. Halsted St. ,,9950600,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +225,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities - Cordi-Marian,1100 S. May Street ,,6663787,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +226,CPS_Early_Childhood_Portal_scrape.csv," Montessori Academy and Association, Inc. 1",11025 S. Halsted St. ,,4680033,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +227,CPS_Early_Childhood_Portal_scrape.csv," Kids Count Too Daycare, Preschool and Kindergarten-Kids Count Too Daycare - Englewo",1106-1108 W. 63rd St. ,,4767714,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +228,CPS_Early_Childhood_Portal_scrape.csv, Thresholds Mothers? Project,1110 W. Belmont ,,,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +229,CPS_Early_Childhood_Portal_scrape.csv, North Kenwood/Oakland Charter,1119 E. 46th St. ,,5362399,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +230,CPS_Early_Childhood_Portal_scrape.csv, Bethel New Life Molade CDC,1120 N. Lamon ,,6267760,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +231,CPS_Early_Childhood_Portal_scrape.csv, LEARN Charter School,1132 S. Homan ,,8266330,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +232,CPS_Early_Childhood_Portal_scrape.csv, Lots of Love Preschool Academy,1139 W. 79th St. ,,2091989,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +233,CPS_Early_Childhood_Portal_scrape.csv, Ada S. McKinley Roseland,11410 S. Edbrooke ,,4681918,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +234,CPS_Early_Childhood_Portal_scrape.csv, Imani Children's Academy,11443 S. Halsted ,,6609667,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +235,CPS_Early_Childhood_Portal_scrape.csv, City Colleges of Chicago Truman CDC,1145 W. Wilson ,,9074741,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +236,CPS_Early_Childhood_Portal_scrape.csv, Gingerbread House Daycare,11640 S. Wentworth ,,9284041,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +237,CPS_Early_Childhood_Portal_scrape.csv, Chicago Urban Day School,1248 W. 69th Street ,,4833555,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +238,CPS_Early_Childhood_Portal_scrape.csv, Stepping Stones Early Childhood Center,1300 E. 75th St. ,,4930000,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +239,CPS_Early_Childhood_Portal_scrape.csv, First Congregational Church Day Care,1305 N. Hamlin ,,3848118,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +240,CPS_Early_Childhood_Portal_scrape.csv, Marcy-Newberry - Fosco Park,1312 S. Racine ,,7466024,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +241,CPS_Early_Childhood_Portal_scrape.csv," Kids Place II, Inc.",1318 West 95th St. ,,4456500,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +242,CPS_Early_Childhood_Portal_scrape.csv, St. Augustine College - Canillitas,1333-45 W. Argyle ,,8783231,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +243,CPS_Early_Childhood_Portal_scrape.csv, Casa Central - CSC Development Program,1343 N. California ,,6452300,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +244,CPS_Early_Childhood_Portal_scrape.csv, Abraham Lincoln Center - Hope,1354 W. 61st St. ,,4715100,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +245,CPS_Early_Childhood_Portal_scrape.csv, Northwestern University Settlement House,1400 W. Augusta Blvd. ,,2787471,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +246,CPS_Early_Childhood_Portal_scrape.csv, Taylor - Day School Inc.,1414 W. 87th St ,,2392322,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +247,CPS_Early_Childhood_Portal_scrape.csv, Little Kiddies Day Care,1447 W. Devon ,,4657702,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +248,CPS_Early_Childhood_Portal_scrape.csv, Passages Charter School,1447 W. Montrose ,,5491052,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +249,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities - Our Lady of Lourdes,1449 S. Keeler ,,5213126,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +250,CPS_Early_Childhood_Portal_scrape.csv, Lutheran Social Services North Austin,1500 N. Mason ,,2371930,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +251,CPS_Early_Childhood_Portal_scrape.csv, Chicago Youth Centers Centro Nuestro (Taylor),1501 N. Harding ,,2785837,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +252,CPS_Early_Childhood_Portal_scrape.csv, Marcy-Newberry Marcy Center,1539 S. Springfield ,,7622300,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +253,CPS_Early_Childhood_Portal_scrape.csv, Mary Crane Morse,1545 W. Morse ,,2621390,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +254,CPS_Early_Childhood_Portal_scrape.csv," Early Child Care Services,Inc.",160 N. LaSalle N. 201 ,,8144782,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +255,CPS_Early_Childhood_Portal_scrape.csv, Chicago Commons-Taylor Center For New Experiences,1633 N. Hamlin ,,2278551,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +256,CPS_Early_Childhood_Portal_scrape.csv, Chicago Commons Paulo Freire,1653 W. 43rd Street ,,8266260,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +257,CPS_Early_Childhood_Portal_scrape.csv, Children?s Home & Aid Englewood,1701 W. 63rd St. ,,,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +258,CPS_Early_Childhood_Portal_scrape.csv, Erie Neighborhood House,1701 W. Superior ,,5635800,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +259,CPS_Early_Childhood_Portal_scrape.csv, El Hogar del Ni?o New Loomis,1710-1718 S. Loomis ,,5630662,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +260,CPS_Early_Childhood_Portal_scrape.csv, Kiddy Kare Preschools Little Tykes I,1711 W. 35th Street ,,2547710,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +261,CPS_Early_Childhood_Portal_scrape.csv, El Hogar del Ni?o Loomis Preschool,1718 S. Loomis ,,5630662,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +262,CPS_Early_Childhood_Portal_scrape.csv, Kiddy Kare Preschools Little Tykes II,1723 W. 35th Street ,,5791791,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +263,CPS_Early_Childhood_Portal_scrape.csv, Lutheran Social Services Rogers Park,1754 W. Devon ,,2623366,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +264,CPS_Early_Childhood_Portal_scrape.csv, Children?s Place Family Center,1800 N. Humboldt Blvd. ,,,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +265,CPS_Early_Childhood_Portal_scrape.csv, Lutheran Day Nursery,1802 N. Fairfield ,,4864222,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +266,CPS_Early_Childhood_Portal_scrape.csv, Chicago Commons Guadalupano,1814 S. Paulina ,,6663883,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +267,CPS_Early_Childhood_Portal_scrape.csv, Chicago International Charter Basil Campus,1816 W. Garfield Blvd. ,,8630652,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +268,CPS_Early_Childhood_Portal_scrape.csv, YMCA McCormick Tribune Preschool,1834 N. Lawndale ,,2352525,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +269,CPS_Early_Childhood_Portal_scrape.csv, Wee Care Nursery School & Kindergarten,1845 E. 79th St. ,,2214442,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +270,CPS_Early_Childhood_Portal_scrape.csv, City Colleges Malcolm X CDC,1900 W. Van Buren ,,8507176,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +271,CPS_Early_Childhood_Portal_scrape.csv, Archdiocese of Chicago - St. Pius V,1919 S. Ashland ,,2261590,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +272,CPS_Early_Childhood_Portal_scrape.csv, UIC Children?s Center II - West,1919 W. Taylor (m/c 525) Rm. 128 ,,4135326,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +273,CPS_Early_Childhood_Portal_scrape.csv, Terry Town Vireva Nursery School,1935 W. 51st St. ,,9258417,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +274,CPS_Early_Childhood_Portal_scrape.csv, El Valor Corporation-Guadalupe Reyes Children and Family Center,1951 W. 19th St. ,,9972021,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +275,CPS_Early_Childhood_Portal_scrape.csv, New Zion Child Care Academy,1960 W. 13th St. ,,7331263,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +276,CPS_Early_Childhood_Portal_scrape.csv, Loop Learning Center,2001 S. Michigan Ave. ,,2258828,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +277,CPS_Early_Childhood_Portal_scrape.csv, North Avenue Day Nursery,2001 W. Pierce ,,3424499,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +278,CPS_Early_Childhood_Portal_scrape.csv, Carole Robertson Center Roosevelt,2020 W. Roosevelt ,,2434881,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +279,CPS_Early_Childhood_Portal_scrape.csv, Dorsey Developmental Institute I,2050 E. 93rd Street ,,3754300,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +280,CPS_Early_Childhood_Portal_scrape.csv," Loren Children's Learning Center, Inc.",2106 E. 79th St. ,,3569400,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +281,CPS_Early_Childhood_Portal_scrape.csv, Archdiocese of Chicago - St. Paul/ Our Lady of Vilna,2114 W. 22nd Pl. ,,8476078,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +282,CPS_Early_Childhood_Portal_scrape.csv, Marillac House,212 S. Francisco ,,7227440,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +283,CPS_Early_Childhood_Portal_scrape.csv, Chinese American Service League,2141 S. Tan Ct. ,,7910454,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +284,CPS_Early_Childhood_Portal_scrape.csv, A Child's World Early Learning Center,2145 E. 83rd St. ,,9786598,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +285,CPS_Early_Childhood_Portal_scrape.csv, St. Vincent DePaul Child Development,2145 N. Halsted ,,,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +286,CPS_Early_Childhood_Portal_scrape.csv, Laurance Armour School,2150 W. Harrison St. ,,9426501,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +287,CPS_Early_Childhood_Portal_scrape.csv," Precious Little One's Learning Center, Inc.",221 E. 51st St. ,,2859902,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +288,CPS_Early_Childhood_Portal_scrape.csv, Archdiocese of Chicago - St. Ann,2211 W. 18th Pl. ,,8294153,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +289,CPS_Early_Childhood_Portal_scrape.csv, Casa Central - Casa Infantil Child Development Program,2222 N. Kedzie Ave. ,,7721170,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +290,CPS_Early_Childhood_Portal_scrape.csv, Ahadi Early Learning Center,2257 E. 71st St. ,,2517086,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +291,CPS_Early_Childhood_Portal_scrape.csv, Love Learning Center,228 E. 61st Street ,,7520243,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +292,CPS_Early_Childhood_Portal_scrape.csv, El Hogar Del Nino California,2325 S. California ,,,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +293,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Gentry,2326 S. Dearborn ,,8428557,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +294,CPS_Early_Childhood_Portal_scrape.csv, Kenyatta?s Day Care Center,2334 E. 75th Street ,,2213777,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +295,CPS_Early_Childhood_Portal_scrape.csv, Ada S. McKinley Trumball Park,2400 E. 105th St ,,9785341,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +296,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House Hilliard at Quinn Chapel,2401 S. Wabash ,,7919710,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +297,CPS_Early_Childhood_Portal_scrape.csv, YMCA High Ridge,2424 W. Touhy ,,2628300,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +298,CPS_Early_Childhood_Portal_scrape.csv, El Valor Corporation-Carlos Cantu Children and Family Centers,2434 S. Kildare ,,7219311,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +299,CPS_Early_Childhood_Portal_scrape.csv," Wee Wee Center for Creative Learning, Inc.",2434 W. 71st St. ,,4710869,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +300,CPS_Early_Childhood_Portal_scrape.csv, Archdiocese of Chicago - Our Lady of Grace,2446 N. Ridgeway Ave. ,,3420170,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +301,CPS_Early_Childhood_Portal_scrape.csv, Mother?s Touch I,2501 W. 71st Street ,,4363177,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +302,CPS_Early_Childhood_Portal_scrape.csv, Christopher House Greenview,2507 N. Greenview ,,4721083,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +303,CPS_Early_Childhood_Portal_scrape.csv, Children?s Home & Aid Society Viva,2516 W. Division ,,2526313,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +304,CPS_Early_Childhood_Portal_scrape.csv, Christopher House Logan Square,2610 N. Francisco ,,2354073,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +305,CPS_Early_Childhood_Portal_scrape.csv, St. Augustine College Nayarit,2610 W. 25th Pl. ,,8783653,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +306,CPS_Early_Childhood_Portal_scrape.csv, Archdiocese of Chicago - St. Agnes of Bohemia,2643 S. Central Park Ave. ,,5220143,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +307,CPS_Early_Childhood_Portal_scrape.csv," Teddy Bear Nursery School, Inc. I",2649 W. 51st Street ,,4760700,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +308,CPS_Early_Childhood_Portal_scrape.csv, Gads Hill Child Care Center,2653 W. Ogden ,,5211196,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +309,CPS_Early_Childhood_Portal_scrape.csv, Little Kids Village Learning,2656 W. 71st St. ,,7764753,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +310,CPS_Early_Childhood_Portal_scrape.csv, YMCA Rauner Family,2700 S. Western Ave. ,,5060130,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +311,CPS_Early_Childhood_Portal_scrape.csv, Keeper?s Institute Infant/Child Care,2718 W. 59th St. ,,4348835,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +312,CPS_Early_Childhood_Portal_scrape.csv, Mary Crane West,2820 N. Leavitt ,,3485528,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +313,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Near South,2929 S. Wabash ,,7910424,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +314,CPS_Early_Childhood_Portal_scrape.csv, Carole Robertson Center for Learning,2929 W. 19th St. ,,5211600,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +315,CPS_Early_Childhood_Portal_scrape.csv, Dorsey Developmental Institute III,2938 E. 91st Street ,,9330053,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +316,CPS_Early_Childhood_Portal_scrape.csv, Boys & Girls Clubs General R. E. Wood,2950 W. 25th Street ,,8475172,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +317,CPS_Early_Childhood_Portal_scrape.csv, Mary Crane Center East,2974 N. Clybourn ,,3485528,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +318,CPS_Early_Childhood_Portal_scrape.csv, Little Leaders of Tomorrow Daycare,301 N. Mayfield ,,3788302,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +319,CPS_Early_Childhood_Portal_scrape.csv, Shinning Star Child Development Institute,3012-16 E. 92nd St. ,,9787827,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +320,CPS_Early_Childhood_Portal_scrape.csv, Irving Park Early Learning Center,3023 W. Montrose ,,5397422,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +321,CPS_Early_Childhood_Portal_scrape.csv, Archdiocese of Chicago - St. Sylvester,3027 W. Palmer St. ,,7725222,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +322,CPS_Early_Childhood_Portal_scrape.csv, A-Karrasel - Avondale,3030 N. Kedzie ,,4636151,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +323,CPS_Early_Childhood_Portal_scrape.csv, Young Scholars Developmental Institute,3038 W. 59th St. ,,9181944,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +324,CPS_Early_Childhood_Portal_scrape.csv, YMCA South Chicago,3039 E. 91st Street ,,7219100,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +325,CPS_Early_Childhood_Portal_scrape.csv, El Valor Corporation-Ray Gonzalez Children and Family Center,3050 E. 92nd St. ,,7219311,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +326,CPS_Early_Childhood_Portal_scrape.csv, Kids Hope United Bridgeport CDC,3053 S. Normal ,,8425566,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +327,CPS_Early_Childhood_Portal_scrape.csv, Kove Learning Academy,3137 W. 71st Street ,,4763083,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +328,CPS_Early_Childhood_Portal_scrape.csv, Locke Charter School,3141 W. Jackson ,,2657232,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +329,CPS_Early_Childhood_Portal_scrape.csv, Bethel New Life Bethel Child Development,316 N. Pulaski ,,2653830,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +330,CPS_Early_Childhood_Portal_scrape.csv, Metropolitan Family Services,3215 W. 63rd Street ,,8842350,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +331,CPS_Early_Childhood_Portal_scrape.csv, Chicago Youth Centers Centro Nuestro Division,3222 W. Division ,,4893157,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +332,CPS_Early_Childhood_Portal_scrape.csv, Concordia Child Care Center Avondale,3300 N. Whipple ,,4631600,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +333,CPS_Early_Childhood_Portal_scrape.csv, Albany Park Community Center,3401 W. Ainslie ,,5395907,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +334,CPS_Early_Childhood_Portal_scrape.csv, St. Augustine College - Flamboyan,3401 W. McLean St. ,,2763423,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +335,CPS_Early_Childhood_Portal_scrape.csv, Chicago Youth Centers - ABC,3415 W. 13th Pl ,,7625655,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +336,CPS_Early_Childhood_Portal_scrape.csv, Pathways to Learning,3416 ? -18 W. 79th Street ,,4369244,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +337,CPS_Early_Childhood_Portal_scrape.csv, A-Karrasel ? Logan Square,3420 W. Fullerton ,,7724333,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +338,CPS_Early_Childhood_Portal_scrape.csv, Rachel's Learning Center - North Lawndale,3430 W. Roosevelt Rd. ,,5331834,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +339,CPS_Early_Childhood_Portal_scrape.csv, YMCA North Lawndale,3449 W. Arthington ,,6380773,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +340,CPS_Early_Childhood_Portal_scrape.csv, Pathways to Learning I/T,3450-54 W. 79th St ,,4369244,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +341,CPS_Early_Childhood_Portal_scrape.csv," Teddy Bear Nursery School, Inc. II",3473 W. Columbus ,,2842141,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +342,CPS_Early_Childhood_Portal_scrape.csv," Kids Count Too Daycare, Preschool and Kindergarten - Washington Heights",360-364 E. 61st ,,7523022,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +343,CPS_Early_Childhood_Portal_scrape.csv, Lava Inc. - Chatterbox Preschool,3613 West Devon ,,4782434,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +344,CPS_Early_Childhood_Portal_scrape.csv, Easter Seals Near South,3630 S. Wells Rm. 105 ,,5483614,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +345,CPS_Early_Childhood_Portal_scrape.csv, Center for New Horizons Ida B. Wells,3641 S. Rhodes ,,3733640,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +346,CPS_Early_Childhood_Portal_scrape.csv, Firman Pre-School West,37 W. 47th Street ,,3733400,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +347,CPS_Early_Childhood_Portal_scrape.csv, Carole Robertson Center Jubilee,3701 W. Ogden ,,5228400,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +348,CPS_Early_Childhood_Portal_scrape.csv, Ada S. McKinley St. Thomas CDC,3801 S. Wabash ,,2850617,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +349,CPS_Early_Childhood_Portal_scrape.csv, Concordia Child Care Center,3855 N. Seeley ,,9353739,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +350,CPS_Early_Childhood_Portal_scrape.csv, Little Giant Child Care Center,3863 W. Harrison ,,2656330,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +351,CPS_Early_Childhood_Portal_scrape.csv," Kidwatch Plus, Inc.",3901 N. Ridgeway ,,5395431,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +352,CPS_Early_Childhood_Portal_scrape.csv, Centers for New Horizons Edison L. Hoard,3901 S. State Street ,,5362187,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +353,CPS_Early_Childhood_Portal_scrape.csv, It Takes a Village Child Care Services,4000 W. Division ,,2761730,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +354,CPS_Early_Childhood_Portal_scrape.csv, Happy Holiday Nursery & Kindergarten,401 E. 111th Street ,,8217009,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +355,CPS_Early_Childhood_Portal_scrape.csv, Frazier Preparatory Academy,4027 W. Grenshaw ,,5358653,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +356,CPS_Early_Childhood_Portal_scrape.csv, Northwest Institute,4040 W. Division ,,9212800,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +357,CPS_Early_Childhood_Portal_scrape.csv, Caring Hands A Step Ahead,4208-20 N. Broadway ,,4048664,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +358,CPS_Early_Childhood_Portal_scrape.csv, Abraham Lincoln Center Near South,4210 S. Berkley ,,4513360,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +359,CPS_Early_Childhood_Portal_scrape.csv, Legacy Charter School (at Mason School),4217 W. 18th St. ,,5421640,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +360,CPS_Early_Childhood_Portal_scrape.csv, Legacy Charter School (at Mason School),4217 W. 18th St. ,,5421640,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +361,CPS_Early_Childhood_Portal_scrape.csv, Salvation Army New Hope,4255 W. Division ,,7724908,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +362,CPS_Early_Childhood_Portal_scrape.csv, Korean American Community Services,4300 N. California ,,5838281,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +363,CPS_Early_Childhood_Portal_scrape.csv, Centers for New Horizons Effie O. Ellis,4301 S. Cottage Grove ,,5489839,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +364,CPS_Early_Childhood_Portal_scrape.csv, Ada S. McKinley Maggie Drummond,4301 S. Wabash ,,3738200,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +365,CPS_Early_Childhood_Portal_scrape.csv, Abraham Lincoln Center - King,4314 S. Cottage Grove ,,7472310,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +366,CPS_Early_Childhood_Portal_scrape.csv, Golden Gate Day Care Center,432 E. 134th Street ,,9287085,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +367,CPS_Early_Childhood_Portal_scrape.csv, Archdiocese of Chicago - Pope John Paul II,4325 S. Richmond Ave. ,,5236161,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +368,CPS_Early_Childhood_Portal_scrape.csv," Jones Academy, Inc.",4344 S. Wentworth ,,3077507,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +369,CPS_Early_Childhood_Portal_scrape.csv," Fairyland Nursery School, Inc.",4350 N. Milwaukee ,,7251246,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +370,CPS_Early_Childhood_Portal_scrape.csv, Hull House Assn. LeClaire Hearst Ryder,4410 S. LaPorte ,,7670925,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +371,CPS_Early_Childhood_Portal_scrape.csv, Kiddy Kare Preschools Kiddy Kare I,4444 S. Kedzie ,,2476642,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +372,CPS_Early_Childhood_Portal_scrape.csv, Hull House Association Uptown Center,4520 N. Beacon ,,5613500,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +373,CPS_Early_Childhood_Portal_scrape.csv, St. Paul Church of God in Christ-Chaney Ford Child Care Center,4526 S. Wabash ,,2858721,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +374,CPS_Early_Childhood_Portal_scrape.csv, Chicago Youth Centers Roseland,461 E. 111th Street ,,4684405,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +375,CPS_Early_Childhood_Portal_scrape.csv, Home of Life Just for You,4647 W. Washington ,,6268655,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +376,CPS_Early_Childhood_Portal_scrape.csv, Home of Life II,4650 W. Madison ,,6268655,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +377,CPS_Early_Childhood_Portal_scrape.csv, Christopher House Uptown,4701 N. Winthrop ,,7694540,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +378,CPS_Early_Childhood_Portal_scrape.csv, Creative Mansion Children?s Academy,4745 S. Ellis ,,2686066,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +379,CPS_Early_Childhood_Portal_scrape.csv, First Start Child Care Academy,4753-59 W. Washington ,,3794928,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +380,CPS_Early_Childhood_Portal_scrape.csv, Hull House Association Lincoln Square,4754 N. Leavitt ,,8789651,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +381,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities - St. Joseph,4800 S. Paulina ,,9272524,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +382,CPS_Early_Childhood_Portal_scrape.csv, Archdiocese of Chicago - St. Thomas of Canterbury,4827 N. Kenmore ,,2810018,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +383,CPS_Early_Childhood_Portal_scrape.csv, Lutheran Social Services Winthrop,4848 N. Winthrop ,,8783210,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +384,CPS_Early_Childhood_Portal_scrape.csv, Ravenswood Community Child Care,4908 N. Damen ,,2714495,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +385,CPS_Early_Childhood_Portal_scrape.csv, Firman Pre-School East,4910 S. DR MARTIN LUTHER KING JRDrive ,,3732083,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +386,CPS_Early_Childhood_Portal_scrape.csv, Hull House Assn. Parkway,500 E. 67th Street ,,4931306,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +387,CPS_Early_Childhood_Portal_scrape.csv, Salvation Army Columbus Park,500 S. Central ,,9214162,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +388,CPS_Early_Childhood_Portal_scrape.csv, Children?s House - Lake Meadows,501 East 32nd Street ,,2252223,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +389,CPS_Early_Childhood_Portal_scrape.csv, Ounce of Prevention Fund Educare,5044 S. Wabash ,,9242334,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +390,CPS_Early_Childhood_Portal_scrape.csv, South East Asia Center Broadway,5120 N. Broadway ,,9890960,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +391,CPS_Early_Childhood_Portal_scrape.csv," All About Kids Learning Academy, Inc.",514 E. 75th St. ,,2555530,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +392,CPS_Early_Childhood_Portal_scrape.csv, Kids Hope United - CDC,5144 N. Lakewood ,,3245612,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +393,CPS_Early_Childhood_Portal_scrape.csv, North Kenwood Day Care Center,516-18 E. 43rd St ,,2682223,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +394,CPS_Early_Childhood_Portal_scrape.csv," Teddy Bear Nursery School, Inc. V",5160 S. Pulaski ,,2847030,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +395,CPS_Early_Childhood_Portal_scrape.csv," Whiz Kids Nursery Center, Inc.",518 W. 103rd St. ,,2339445,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +396,CPS_Early_Childhood_Portal_scrape.csv, Young Achievers,520 E. 79th ,,2639688,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +397,CPS_Early_Childhood_Portal_scrape.csv, Rachel's Learning Center - Austin,5242 W. North Ave. ,,2371444,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +398,CPS_Early_Childhood_Portal_scrape.csv, Trinity United Church of Christ,532 W. 95th Street ,,4883511,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +399,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities Grace Mission,5332 S. Western ,,4761990,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +400,CPS_Early_Childhood_Portal_scrape.csv, Mosaic Early Childhood Academy,5332 W. Addison ,,7777411,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +401,CPS_Early_Childhood_Portal_scrape.csv, Firman Preschool South,5401 S. Wentworth ,,4513400,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +402,CPS_Early_Childhood_Portal_scrape.csv, Archdiocese of Chicago - Holy Angels School,545 E. Oakwood Blvd. ,,6240727,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +403,CPS_Early_Childhood_Portal_scrape.csv, Bunnyland Developmental Childcare,545 W. 119th Street ,,5685200,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +404,CPS_Early_Childhood_Portal_scrape.csv, Chicago Child Care Society,5467 S. University ,,2562450,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +405,CPS_Early_Childhood_Portal_scrape.csv, Northeastern Illinois University,5500 N. St. Louis ,,4424540,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +406,CPS_Early_Childhood_Portal_scrape.csv, A-Karrasel ? Galewood Center,5504 W. Fullerton ,,6371022,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +407,CPS_Early_Childhood_Portal_scrape.csv, Allison's Infant and Toddler Center,5522 S. Racine ,,4363193,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +408,CPS_Early_Childhood_Portal_scrape.csv, Marcy-Newberry Austin Town Hall,5610 W. Lake St. ,,2611062,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +409,CPS_Early_Childhood_Portal_scrape.csv, Lake Shore Schools - Clark,5611 N. Clark Street ,,5616707,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +410,CPS_Early_Childhood_Portal_scrape.csv, Kiddy Kare Preschools Little Learners,5923 W. 63rd St. ,,5815541,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +411,CPS_Early_Childhood_Portal_scrape.csv, Improved Child Care Albany Child Care,5954 S. Albany ,,7377810,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +412,CPS_Early_Childhood_Portal_scrape.csv, Onward Neighborhood House,600 N. Leavitt ,,6666726,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +413,CPS_Early_Childhood_Portal_scrape.csv, Easter Seals Windy City Kids,600 W. Madison ,,5756550,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +414,CPS_Early_Childhood_Portal_scrape.csv, Learning Center of Heartland Human Care Services,615 W. Wellington Ave. ,,7511870,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +415,CPS_Early_Childhood_Portal_scrape.csv, Center for New Horizons Washington Park,6225 S. Wabash ,,6672065,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +416,CPS_Early_Childhood_Portal_scrape.csv, Boys & Girls Clubs John L. Yancey,6245 S. Wabash ,,3634733,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +417,CPS_Early_Childhood_Portal_scrape.csv, Kiddy Kare Preschools Kidz Colony,6287 S. Archer ,,7678522,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +418,CPS_Early_Childhood_Portal_scrape.csv, YMCA South Side,6330 S. Stony Island ,,9470700,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +419,CPS_Early_Childhood_Portal_scrape.csv," Teddy Bear Nursery School, Inc. III",6401 S. Pulaski ,,2842292,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +420,CPS_Early_Childhood_Portal_scrape.csv, New Hope Lutheran School,6416 S. Washtenaw ,,7769849,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +421,CPS_Early_Childhood_Portal_scrape.csv, Metropolitan Family Services Midway,6422 S. Kedzie ,,7374790,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +422,CPS_Early_Childhood_Portal_scrape.csv, Granny's Daycare Center,645 W. 127th St. ,,8485827,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +423,CPS_Early_Childhood_Portal_scrape.csv, Mt. Ararat Day Care,6514-16 W. Higgins Ave. ,,5939763,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +424,CPS_Early_Childhood_Portal_scrape.csv, Archdiocese of Chicago - Academy of St. Benedict the African (Stewart),6547 S. Stewart Ave. ,,9946100,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +425,CPS_Early_Childhood_Portal_scrape.csv, Little Angels Family Daycare,6701 S. Emerald ,,3703688,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +426,CPS_Early_Childhood_Portal_scrape.csv, Lake Shore Schools - Greenview,6759 N. Greenview ,,7431118,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +427,CPS_Early_Childhood_Portal_scrape.csv, Trinity United Church of Christ Denton Brooks,6921 S. Stony Island ,,9552818,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +428,CPS_Early_Childhood_Portal_scrape.csv," Fresh Start Daycare, Inc.",6924 W. North Avenue ,,4792870,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +429,CPS_Early_Childhood_Portal_scrape.csv, Eyes on the Future,6969 N. Ravenswood ,,9730771,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +430,CPS_Early_Childhood_Portal_scrape.csv, Abraham Lincoln Centre Roseland,7 E. 119th St. ,,2647633,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +431,CPS_Early_Childhood_Portal_scrape.csv, YMCA Garfield,7 N. Homan Avenue ,,2653900,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +432,CPS_Early_Childhood_Portal_scrape.csv, Children?s Developmental Institute SS,7037 S. Stony Island ,,3633200,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +433,CPS_Early_Childhood_Portal_scrape.csv, Christopher House Rogers Park,7059 N. Greenview ,,2745477,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +434,CPS_Early_Childhood_Portal_scrape.csv, Abraham Lincoln Center Donoghue,707 E. 37th St. ,,7295325,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +435,CPS_Early_Childhood_Portal_scrape.csv, City Colleges Kennedy King CDC,710 W. 65th St ,,6025447,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +436,CPS_Early_Childhood_Portal_scrape.csv, Archdiocese of Chicago - St. Columbanus School,7120 S. Calumet Ave. ,,2243811,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +437,CPS_Early_Childhood_Portal_scrape.csv, Archdiocese of Chicago - Queen of the Universe,7130 S. Hamlin ,,5824266,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +438,CPS_Early_Childhood_Portal_scrape.csv, Little Hands Child Creative Center,7146-48 S. Ashland Ave. ,,4710662,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +439,CPS_Early_Childhood_Portal_scrape.csv, Ada S. McKinley Ersula Howard,7222 S. Exchange ,,2219711,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +440,CPS_Early_Childhood_Portal_scrape.csv, UIC Children?s Center I - East,728 W. Roosevelt (m/c 050) Rm. 287 ,,4135331,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +441,CPS_Early_Childhood_Portal_scrape.csv," Itsy Bitsy People Palace, Inc.",7419 S. Cottage Grove ,,8467396,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +442,CPS_Early_Childhood_Portal_scrape.csv, Little People Day Care & Kindergarten,7428 N. Rogers Ave. ,,7612305,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +443,CPS_Early_Childhood_Portal_scrape.csv, Chicago Commons NIA,744 N. Monticello ,,8264259,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +444,CPS_Early_Childhood_Portal_scrape.csv, City Colleges Daley Semester Program,7500 S. Pulaski ,,8387562,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +445,CPS_Early_Childhood_Portal_scrape.csv, Howard Area Early Childhood Center,7510 N. Ashland ,,7647610,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +446,CPS_Early_Childhood_Portal_scrape.csv, Jolly Fun House Playschool,7559 W. Addison ,,6376115,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +447,CPS_Early_Childhood_Portal_scrape.csv, Chicago Youth Centers Rebecca K. Crown,7601 S. Phillips ,,7310444,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +448,CPS_Early_Childhood_Portal_scrape.csv, Archdiocese of Chicago - St. Sabina Academy,7800 S. Throop St. ,,4835000,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +449,CPS_Early_Childhood_Portal_scrape.csv, New Concept,7825 S. Ellis ,,6519599,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +450,CPS_Early_Childhood_Portal_scrape.csv, Ada S. McKinley Wright Renaissance,7939 S. Western ,,4768805,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +451,CPS_Early_Childhood_Portal_scrape.csv, Ezzard Charles School,7946 S. Ashland ,,4870227,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +452,CPS_Early_Childhood_Portal_scrape.csv, Children?s Center for Creative Learning,7954-58 S. Western ,,4714927,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +453,CPS_Early_Childhood_Portal_scrape.csv, Tiny Tot Villa,8128 S. DR MARTIN LUTHER KING JR Drive ,,4836251,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +454,CPS_Early_Childhood_Portal_scrape.csv, NIA LTD. The Learning Tree,8128 S. Kedzie ,,7788802,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +455,CPS_Early_Childhood_Portal_scrape.csv, New Pisgah Day Care Center,8128 S. Racine Ave. ,,8735392,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +456,CPS_Early_Childhood_Portal_scrape.csv," Terry Town Nursery School, Inc.",817 N. Hamlin ,,4894271,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +457,CPS_Early_Childhood_Portal_scrape.csv, Chipper Preschool,8225-29 S. Kedzie ,,7785757,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +458,CPS_Early_Childhood_Portal_scrape.csv, Archdiocese of Chicago - St. Michael,8231 S. Shore Drive ,,2210212,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +459,CPS_Early_Childhood_Portal_scrape.csv, Pinks Child Care Academy,8236 S. Kedzie ,,8637465,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +460,CPS_Early_Childhood_Portal_scrape.csv, South Central Holistic PreK Program,8316 S. Ellis ,,4830900,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +461,CPS_Early_Childhood_Portal_scrape.csv, South Harper Montessori School,8358 S. Stony Island ,,7340303,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +462,CPS_Early_Childhood_Portal_scrape.csv, Bethune Educational Center,843 W. 103rd Street ,,2336100,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +463,CPS_Early_Childhood_Portal_scrape.csv, Christopher House Lakeshore,850 W. Eastwood ,,2719403,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +464,CPS_Early_Childhood_Portal_scrape.csv, Institute for Creative Learning,8515 S. Stony Island ,,7686688,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +465,CPS_Early_Childhood_Portal_scrape.csv, Dorothy Sutton Branch Headstart and Daycare,8601 S. State St. ,,7234445,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +466,CPS_Early_Childhood_Portal_scrape.csv, McCann?s Daycare Center,8612 S. Stony Island ,,3757932,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +467,CPS_Early_Childhood_Portal_scrape.csv, Little Elite Academy,8748 S. Aberdeen ,,4487990,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +468,CPS_Early_Childhood_Portal_scrape.csv, Tots Express Learning Center,8938-40 S. Cottage Grove ,,7238687,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +469,CPS_Early_Childhood_Portal_scrape.csv, Children's Village Day Care and Kindergarten,9011 S. Cottage Grove ,,8731700,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +470,CPS_Early_Childhood_Portal_scrape.csv, Chesterfield Tom Thumb Day Care 2,9214 S. Cottage Grove ,,8743985,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +471,CPS_Early_Childhood_Portal_scrape.csv, Centers for New Horizons Altgeld Gardens I,941 E. 132nd Street ,,4683055,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +472,CPS_Early_Childhood_Portal_scrape.csv, Salvation Army Red Shield,945 W. 69th St. ,,3583224,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +473,CPS_Early_Childhood_Portal_scrape.csv, Woodlawn Early Childhood Development,950 E. 61st Street ,,6673300,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +474,CPS_Early_Childhood_Portal_scrape.csv, Chicago State University,9501 S. DR MARTIN LUTHER KING JR Drive ,,9952556,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +475,CPS_Early_Childhood_Portal_scrape.csv, Chicago Youth Centers Dorothy Gautreaux,975 E. 132nd Street ,,2911000,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +476,CPS_Early_Childhood_Portal_scrape.csv, Archdiocese of Chicago - St. Margaret of Scottland,9833 S. Throop St. ,,2381088,,Community Partnerships,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +477,CPS_Early_Childhood_Portal_scrape.csv, Carole Robertson Center For Learning - Maribella Rodriguez,1012 N Kedvale Ave ,,,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +478,CPS_Early_Childhood_Portal_scrape.csv, Hull House Association - Child Dev. Central Office- Hull House CDS-Homes,1030 W Van Buren St ,,9068600,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +479,CPS_Early_Childhood_Portal_scrape.csv, Hull House Association - Child Dev. Central Office- Hull House CDS-Homes,1030 W Van Buren St ,,9068600,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +480,CPS_Early_Childhood_Portal_scrape.csv, Marcy Newberry Association - FOSCO ABLA Center,1312 S Racine Ave ,,7466024,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +481,CPS_Early_Childhood_Portal_scrape.csv, Marcy Newberry Association - FOSCO ABLA Center,1312 S Racine Ave ,,7466024,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +482,CPS_Early_Childhood_Portal_scrape.csv, Chicago Commons Association - Taylor Center for New Experiences,1633 N Hamlin Ave ,,2278551,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +483,CPS_Early_Childhood_Portal_scrape.csv, Erie Neighborhood House - Erie Community Center,1701 W Superior St ,,5635800,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +484,CPS_Early_Childhood_Portal_scrape.csv, ChildServ - Pilsen,1711 W Garfield Blvd ,,,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +485,CPS_Early_Childhood_Portal_scrape.csv, North Avenue Day Nursery - North Avenue Day Nursery,2001 W Pierce Ave ,,3424499,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +486,CPS_Early_Childhood_Portal_scrape.csv, Carole Robertson Center For Learning - Delondia Robinson,2252 S Central Park Ave ,,,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +487,CPS_Early_Childhood_Portal_scrape.csv, El Hogar del Nino/Cuidar - El Hogar del Nino/Cuidar- California,2325 S California Ave ,,5231629,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +488,CPS_Early_Childhood_Portal_scrape.csv, El Hogar del Nino/Cuidar - El Hogar del Nino/Cuidar- California,2325 S California Ave ,,5231629,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +489,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - Rauner,2700 S Western Ave ,,8473115,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +490,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - Rauner,2700 S Western Ave ,,8473115,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +491,CPS_Early_Childhood_Portal_scrape.csv, Carole Robertson Center For Learning - Aurora Nunez,2701 W 18th St ,,,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +492,CPS_Early_Childhood_Portal_scrape.csv, Carole Robertson Center For Learning - Carole Robertson Center 2929,2929 W 19th St ,,5211600,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +493,CPS_Early_Childhood_Portal_scrape.csv, Carole Robertson Center For Learning - Carole Robertson Center 2929,2929 W 19th St ,,5211600,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +494,CPS_Early_Childhood_Portal_scrape.csv, Carole Robertson Center For Learning - Sharon James,311 N Waller Ave ,,,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +495,CPS_Early_Childhood_Portal_scrape.csv, ChildServ - FSS of Lawndale,3210 W Arthington St ,,8677370,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +496,CPS_Early_Childhood_Portal_scrape.csv, ChildServ - FSS of Lawndale,3210 W Arthington St ,,8677370,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +497,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - YMCA - Marshall High School,3250 W Adams St ,,2650022,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +498,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - North Lawndale YMCA,3449 W Arthington St ,,6380773,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +499,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - North Lawndale YMCA,3449 W Arthington St ,,6380773,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +500,CPS_Early_Childhood_Portal_scrape.csv, Easter Seals Society of Metropolitan Chicago - Near South Side,3630 S Wells Ave ,,5483614,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +501,CPS_Early_Childhood_Portal_scrape.csv, Carole Robertson Center For Learning - Carole Robertson Center- Ogden 3701,3701 W Ogden Ave ,,5228400,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +502,CPS_Early_Childhood_Portal_scrape.csv, Carole Robertson Center For Learning - Carole Robertson Center- Ogden 3701,3701 W Ogden Ave ,,5228400,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +503,CPS_Early_Childhood_Portal_scrape.csv, Easter Seals Society of Metropolitan Chicago - It Takes a Village,4000 W Division St ,,,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +504,CPS_Early_Childhood_Portal_scrape.csv, El Hogar del Nino/Cuidar - Maria Freeman,4312 S CALIFORNIA AVE ,,,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +505,CPS_Early_Childhood_Portal_scrape.csv, YWCA of Metropolitan Chicago - Debra Phillips,5116 S Prairie AVE ,,,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +506,CPS_Early_Childhood_Portal_scrape.csv, Onward Neighborhood House - Belmont-Cragin,5423 W Diversey ,,,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +507,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - Garfield Head Start/Child Developmental Center- YMCA,7 N Homan Ave ,,2653900,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +508,CPS_Early_Childhood_Portal_scrape.csv, Salvation Army - EHS Family Child Homes,845 W 69th St ,,3824700,,Early Head Start,EXTENDED DAY,,,,,,,,,,,,,,,,,,,,,,, +509,CPS_Early_Childhood_Portal_scrape.csv, Salvation Army - Temple / Salvation Army,1 N Ogden Ave ,,2262649,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +510,CPS_Early_Childhood_Portal_scrape.csv, Salvation Army - Temple / Salvation Army,1 N Ogden Ave ,,2262649,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +511,CPS_Early_Childhood_Portal_scrape.csv, National Louis University - Dr. Effie O. Ellis Training Center,10 S Kedzie Ave ,,5339011,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +512,CPS_Early_Childhood_Portal_scrape.csv, National Louis University - Dr. Effie O. Ellis Training Center,10 S Kedzie Ave ,,5339011,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +513,CPS_Early_Childhood_Portal_scrape.csv, Board Trustees-City Colleges of Chicago - Olive-Harvey College,10001 S Woodlawn Ave ,,2916100,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +514,CPS_Early_Childhood_Portal_scrape.csv, Board Trustees-City Colleges of Chicago - Olive-Harvey College,10001 S Woodlawn Ave ,,2916100,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +515,CPS_Early_Childhood_Portal_scrape.csv, Easter Seals Society of Metropolitan Chicago - Gilchrist-Marchman,1001 W Roosevelt Rd ,,9395115,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +516,CPS_Early_Childhood_Portal_scrape.csv, Easter Seals Society of Metropolitan Chicago - Gilchrist-Marchman,1001 W Roosevelt Rd ,,9395115,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +517,CPS_Early_Childhood_Portal_scrape.csv, Jenner,1009 N. Cleveland ,,5348440,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +518,CPS_Early_Childhood_Portal_scrape.csv, Revere,1010 E. 72nd St. ,,5350618,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +519,CPS_Early_Childhood_Portal_scrape.csv, Hay,1018 N. Laramie ,,5346000,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +520,CPS_Early_Childhood_Portal_scrape.csv, Hull House Association - Uptown Head Start / Hull House,1020 W Bryn Mawr Ave ,,7695753,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +521,CPS_Early_Childhood_Portal_scrape.csv, Piccolo,1040 N. Keeler ,,5344425,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +522,CPS_Early_Childhood_Portal_scrape.csv, Kohn,10414 S. State St. ,,5355489,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +523,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - St. Kevin,10509 S Torrence Ave ,,3746466,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +524,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - St. Kevin,10509 S Torrence Ave ,,3746466,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +525,CPS_Early_Childhood_Portal_scrape.csv, Ada S. McKinley Community Services - McKinley - Trumbull Park,10530 S Oglesby ,,3757022,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +526,CPS_Early_Childhood_Portal_scrape.csv, Community Learning Center - Community Learning Center,10612 S Wentworth Ave ,,9284104,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +527,CPS_Early_Childhood_Portal_scrape.csv, Hull House Association - New Age,10951 S Michigan Ave ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +528,CPS_Early_Childhood_Portal_scrape.csv, Bethel New Life - Molade Child Development Center,1120 N Lamon Ave ,,6267760,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +529,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Hippity Hop Tiny Tots,11223 S Halsted St ,,7853340,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +530,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Humpty Dumpty,1126 W 99th ST ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +531,CPS_Early_Childhood_Portal_scrape.csv, Chicago Youth Centers - Lotts of Love,1139 W 79th St ,,8744954,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +532,CPS_Early_Childhood_Portal_scrape.csv, Ada S. McKinley Community Services - McKinley - Roseland,11410 S Edbrooke Ave ,,4681918,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +533,CPS_Early_Childhood_Portal_scrape.csv, Ada S. McKinley Community Services - McKinley - Roseland,11410 S Edbrooke Ave ,,4681918,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +534,CPS_Early_Childhood_Portal_scrape.csv," Haley, Alex",11411 S. Eggleston ,,5355340,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +535,CPS_Early_Childhood_Portal_scrape.csv, Board Trustees-City Colleges of Chicago - Truman,1145 W Wilson Ave ,,8781700,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +536,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Accounters/Partners,1155 W 81st St ,,9945514,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +537,CPS_Early_Childhood_Portal_scrape.csv, Chicago State University - Gingerbread House,11640 S Wentworth Ave ,,9284041,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +538,CPS_Early_Childhood_Portal_scrape.csv, Chicago State University - Gingerbread House,11640 S Wentworth Ave ,,9284041,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +539,CPS_Early_Childhood_Portal_scrape.csv, Higgins,11710 S. Morgan ,,5355625,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +540,CPS_Early_Childhood_Portal_scrape.csv, Songhai,11725 S. Perry ,,5355547,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +541,CPS_Early_Childhood_Portal_scrape.csv, Cameron,1234 N. Monticello ,,5344290,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +542,CPS_Early_Childhood_Portal_scrape.csv, Chicago State University - Academy of Early Education,124 E 113th St ,,7858163,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +543,CPS_Early_Childhood_Portal_scrape.csv, Chicago State University - Academy of Early Education,124 E 113th St ,,7858163,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +544,CPS_Early_Childhood_Portal_scrape.csv, Perez,1241 W. 19Th St. ,,5347650,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +545,CPS_Early_Childhood_Portal_scrape.csv, Carpenter,1250 W. Erie ,,5347385,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +546,CPS_Early_Childhood_Portal_scrape.csv," Brown Academy, R.",12607 S. Union ,,5355385,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +547,CPS_Early_Childhood_Portal_scrape.csv, Easter Seals Society of Metropolitan Chicago - Stepping Stones Early/Childhood Lear,1300 E 75th St ,,4930000,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +548,CPS_Early_Childhood_Portal_scrape.csv, Marcy Newberry Association - FOSCO ABLA Center,1312 S Racine Ave ,,7466024,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +549,CPS_Early_Childhood_Portal_scrape.csv, Marcy Newberry Association - FOSCO ABLA Center,1312 S Racine Ave ,,7466024,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +550,CPS_Early_Childhood_Portal_scrape.csv," Henry Booth House - Kids Place II, Inc",1318 W 95th St ,,4456500,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +551,CPS_Early_Childhood_Portal_scrape.csv, Henson,1326 S. Avers Ave ,,5341804,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +552,CPS_Early_Childhood_Portal_scrape.csv, Henson,1326 S. Avers Ave ,,5341804,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +553,CPS_Early_Childhood_Portal_scrape.csv, Medill Inter,1326 W. 14Th Pl. ,,5347760,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +554,CPS_Early_Childhood_Portal_scrape.csv, St. Augustine College - St. Augustine - Main Campus,1333 W Argyle St ,,8783231,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +555,CPS_Early_Childhood_Portal_scrape.csv, Altgeld,1340 W. 71St ,,5353250,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +556,CPS_Early_Childhood_Portal_scrape.csv, Salvation Army - Incarnation / Salvation Army,1345 N Karlov Ave ,,2764118,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +557,CPS_Early_Childhood_Portal_scrape.csv, Abraham Lincoln Centre - Hope Presbyterian Church,1354 W 61st St ,,4715100,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +558,CPS_Early_Childhood_Portal_scrape.csv, Lavizzo,138 W. 109Th St ,,5355300,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +559,CPS_Early_Childhood_Portal_scrape.csv, Northwestern University Settlement House - Northwestern University Settlement House,1400 W Augusta Blvd ,,2787471,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +560,CPS_Early_Childhood_Portal_scrape.csv, Herzl CPC,1401 S. Hamlin ,,5341751,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +561,CPS_Early_Childhood_Portal_scrape.csv, Herzl CPC,1401 S. Hamlin ,,5341751,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +562,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Taylor Day School,1414 W 87th St ,,2392322,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +563,CPS_Early_Childhood_Portal_scrape.csv, McDowell,1419 E. 89Th ,,5356404,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +564,CPS_Early_Childhood_Portal_scrape.csv, Pilsen,1420 W. 17Th St. ,,5347675,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +565,CPS_Early_Childhood_Portal_scrape.csv, Pilsen,1420 W. 17Th St. ,,5347675,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +566,CPS_Early_Childhood_Portal_scrape.csv, Lozano Bilingual,1424 N. Cleaver ,,5344150,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +567,CPS_Early_Childhood_Portal_scrape.csv, Young,1434 N. Parkside ,,5346200,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +568,CPS_Early_Childhood_Portal_scrape.csv, Lathrop,1440 S. Christiana ,,5341812,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +569,CPS_Early_Childhood_Portal_scrape.csv, Peabody,1444 W. Augusta ,,5344170,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +570,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - Our Lady of Lourdes,1449 S Keeler Ave ,,5213126,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +571,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - Our Lady of Lourdes,1449 S Keeler Ave ,,5213126,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +572,CPS_Early_Childhood_Portal_scrape.csv, Lutheran Social Services of Illinois - North Austin / LSSI,1500 N Mason Ave ,,2371930,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +573,CPS_Early_Childhood_Portal_scrape.csv, Marcy Newberry Association - New Birth,1500 W 69th St ,,4710699,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +574,CPS_Early_Childhood_Portal_scrape.csv, Chicago Youth Centers - Mt. Moriah-Taylor / CYC,1501 N Harding Ave ,,2785837,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +575,CPS_Early_Childhood_Portal_scrape.csv, Johnson,1504 S. Albany ,,5341833,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +576,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Lakeview Development Center,1531 W Lawrence Ave ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +577,CPS_Early_Childhood_Portal_scrape.csv, Marcy Newberry Association - Marcy Center,1539 S Springfield Ave ,,7612300,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +578,CPS_Early_Childhood_Portal_scrape.csv, Marcy Newberry Association - Marcy Center,1539 S Springfield Ave ,,7612300,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +579,CPS_Early_Childhood_Portal_scrape.csv, Mary Crane League - Mary Crane - Morse,1545 W Morse Ave ,,2621390,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +580,CPS_Early_Childhood_Portal_scrape.csv, Penn,1616 S. Avers ,,5341665,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +581,CPS_Early_Childhood_Portal_scrape.csv, Cooper,1624 W. 19Th St. ,,5347205,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +582,CPS_Early_Childhood_Portal_scrape.csv, Cooper,1624 W. 19Th St. ,,5347205,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +583,CPS_Early_Childhood_Portal_scrape.csv, South Shore Bible - Maranatha,1631 E 71st St ,,4937500,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +584,CPS_Early_Childhood_Portal_scrape.csv, Gale,1631 W. Jonquil Tr. ,,5342100,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +585,CPS_Early_Childhood_Portal_scrape.csv, Chicago Commons Association - Taylor Center for New Experiences,1633 N Hamlin Ave ,,2278551,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +586,CPS_Early_Childhood_Portal_scrape.csv, Easter Seals Society of Metropolitan Chicago - Kimball Day Care,1636 N Kimball Ave ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +587,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - Ebenezer,1652 W Foster Ave ,,8789925,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +588,CPS_Early_Childhood_Portal_scrape.csv, Chicago Commons Association - Paulo Freire,1653 W 43rd St ,,8262669,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +589,CPS_Early_Childhood_Portal_scrape.csv, Erie Neighborhood House - Erie Community Center,1701 W Superior St ,,5635800,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +590,CPS_Early_Childhood_Portal_scrape.csv, New Field,1707 W. Morse ,,5342760,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +591,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Little Tykes I,1711 W 35th St ,,2547700,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +592,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Little Tykes I,1711 W 35th St ,,2547700,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +593,CPS_Early_Childhood_Portal_scrape.csv, El Hogar del Nino/Cuidar - El Hogar del Nino/El Centro - Loomis,1718 S Loomis Blvd ,,5639796,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +594,CPS_Early_Childhood_Portal_scrape.csv, El Hogar del Nino/Cuidar - El Hogar del Nino/El Centro - Loomis,1718 S Loomis Blvd ,,5639796,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +595,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Little Tykes II,1723 W 35th St ,,5791791,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +596,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Little Tykes II,1723 W 35th St ,,5791791,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +597,CPS_Early_Childhood_Portal_scrape.csv, Church of God True Believers - Church of God Day Care,1738 W Marquette Rd ,,4715222,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +598,CPS_Early_Childhood_Portal_scrape.csv, Jungman,1746 S. Miller ,,5347375,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +599,CPS_Early_Childhood_Portal_scrape.csv, Lutheran Social Services of Illinois - Rogers Park / LSSI,1754 W Devon Ave ,,2623366,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +600,CPS_Early_Childhood_Portal_scrape.csv, Chicago Commons Association - Guadalupano Family Center,1814 S Paulina St ,,6663883,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +601,CPS_Early_Childhood_Portal_scrape.csv, Chicago Commons Association - Guadalupano Family Center,1814 S Paulina St ,,6663883,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +602,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - McCormick Tribune- YMCA,1834 N Lawndale Ave ,,2352525,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +603,CPS_Early_Childhood_Portal_scrape.csv, Yates,1839 N. Richmond ,,5344550,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +604,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Wee Care Nursery and Kindergarden,1845 E 79th St ,,2214442,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +605,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Nico's,1855 W 95th St ,,2380117,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +606,CPS_Early_Childhood_Portal_scrape.csv, Esmond,1865 W. Montvale ,,5352650,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +607,CPS_Early_Childhood_Portal_scrape.csv, Board Trustees-City Colleges of Chicago - Malcolm X College,1900 W Van Buren St ,,8507000,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +608,CPS_Early_Childhood_Portal_scrape.csv, Board Trustees-City Colleges of Chicago - Malcolm X College,1900 W Van Buren St ,,8507000,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +609,CPS_Early_Childhood_Portal_scrape.csv, Whittier,1900 W. 23rd St. ,,5354590,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +610,CPS_Early_Childhood_Portal_scrape.csv, Lutheran Social Services of Illinois - Englewood Messiah,1910 W 64th ST ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +611,CPS_Early_Childhood_Portal_scrape.csv, Ada S. McKinley Community Services - Vereva,1935 W 51st St ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +612,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Kiddie Kottage,1946 W 87th St ,,2337292,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +613,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Guadalupe Reyes Children & Family Center,1951 W 19th St ,,9972021,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +614,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Guadalupe Reyes Children & Family Center,1951 W 19th St ,,9972021,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +615,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Loop,2001 S Michigan Ave ,,2258828,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +616,CPS_Early_Childhood_Portal_scrape.csv, North Avenue Day Nursery - North Avenue Day Nursery,2001 W Pierce Ave ,,3424499,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +617,CPS_Early_Childhood_Portal_scrape.csv, Carole Robertson Center For Learning - Carole Robertson Center CTR 2020,2020 W Roosevelt Rd ,,2437300,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +618,CPS_Early_Childhood_Portal_scrape.csv, Carole Robertson Center For Learning - Carole Robertson Center CTR 2020,2020 W Roosevelt Rd ,,2437300,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +619,CPS_Early_Childhood_Portal_scrape.csv, Chase,2021 N. Point St. ,,5344185,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +620,CPS_Early_Childhood_Portal_scrape.csv, Lloyd,2103 N. Lamon ,,5343070,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +621,CPS_Early_Childhood_Portal_scrape.csv, Herbert,2131 W. Monroe ,,5347806,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +622,CPS_Early_Childhood_Portal_scrape.csv, Spencer,214 N. Lavergne ,,5346150,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +623,CPS_Early_Childhood_Portal_scrape.csv, First Church of Love And Faith - First Church of Love & Faith Church,2140 W 79th St ,,8739155,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +624,CPS_Early_Childhood_Portal_scrape.csv, Chinese American Service League - Chinese American Service League,2141 S Tan Ct ,,7910418,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +625,CPS_Early_Childhood_Portal_scrape.csv, Chinese American Service League - Chinese American Service League,2141 S Tan Ct ,,7910418,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +626,CPS_Early_Childhood_Portal_scrape.csv, First Church of Love And Faith - First Church of Love & Faith Annex,2141 W 79th St ,,2246800,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +627,CPS_Early_Childhood_Portal_scrape.csv, Paderewski,2221 S. Lawndale ,,5341821,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +628,CPS_Early_Childhood_Portal_scrape.csv, Ellington,224 N. Central ,,5346361,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +629,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Love Learning Center,228 E 61st St ,,7520243,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +630,CPS_Early_Childhood_Portal_scrape.csv, Claremont,2300 W. 64th St ,,5358110,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +631,CPS_Early_Childhood_Portal_scrape.csv, Pickard,2301 W. 21st Pl. ,,5357280,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +632,CPS_Early_Childhood_Portal_scrape.csv, Dett,2306 W. Maypole ,,5347160,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +633,CPS_Early_Childhood_Portal_scrape.csv, El Hogar del Nino/Cuidar - El Hogar del Nino/Cuidar- California,2325 S California Ave ,,5231629,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +634,CPS_Early_Childhood_Portal_scrape.csv, El Hogar del Nino/Cuidar - El Hogar del Nino/Cuidar- California,2325 S California Ave ,,5231629,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +635,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Bernard Gentry,2326 S Dearborn St ,,8428557,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +636,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Bernard Gentry,2326 S Dearborn St ,,8428557,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +637,CPS_Early_Childhood_Portal_scrape.csv, Chicago State University - Kenyatta's Day Care,2334 E 75th ,,2213777,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +638,CPS_Early_Childhood_Portal_scrape.csv, Cardenas,2345 S. Millard ,,5341465,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +639,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Hillard House / Henry Booth,2401 S Wabash Ave ,,7919710,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +640,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - Our Lady of Tepeyac,2414 S Albany Ave ,,2775888,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +641,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - Our Lady of Tepeyac,2414 S Albany Ave ,,2775888,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +642,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - High Ridge YMCA,2424 W Touhy Ave ,,2628300,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +643,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Carlos Cantu,2434 S Kildare Ave ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +644,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Carlos Cantu,2434 S Kildare Ave ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +645,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Wee Wee Center for Creative,2434 W 71st St ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +646,CPS_Early_Childhood_Portal_scrape.csv, Chopin,2450 W. Rice ,,5344080,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +647,CPS_Early_Childhood_Portal_scrape.csv, Mayo,249 E. 37Th ,,5351260,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +648,CPS_Early_Childhood_Portal_scrape.csv, Beethoven,25 W. 47Th St. ,,5351480,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +649,CPS_Early_Childhood_Portal_scrape.csv, Christopher House - Christopher House - Greenview,2507 N Greenview Ave ,,4721083,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +650,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Color For Tots,2550 E 73rd St ,,3638687,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +651,CPS_Early_Childhood_Portal_scrape.csv, Christopher House - Christopher House - Logan Square,2610 N Francisco Ave ,,2354073,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +652,CPS_Early_Childhood_Portal_scrape.csv, St. Augustine College - St. Augustine - Nayarit,2610 W 25th Pl ,,8783641,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +653,CPS_Early_Childhood_Portal_scrape.csv, St. Augustine College - St. Augustine - Nayarit,2610 W 25th Pl ,,8783641,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +654,CPS_Early_Childhood_Portal_scrape.csv, Von Humboldt,2620 W. Hirsch St. ,,5344480,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +655,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Teddy Bear 1 51st Street,2649 W 51st St ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +656,CPS_Early_Childhood_Portal_scrape.csv, Dodge,2651 W. Washington ,,5346640,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +657,CPS_Early_Childhood_Portal_scrape.csv, Gads Hill Center - Sinai Community/Ogden,2653 W Ogden Ave ,,5211196,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +658,CPS_Early_Childhood_Portal_scrape.csv, Gads Hill Center - Sinai Community/Ogden,2653 W Ogden Ave ,,5211196,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +659,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - Rauner,2700 S Western Ave ,,8473115,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +660,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - Rauner,2700 S Western Ave ,,8473115,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +661,CPS_Early_Childhood_Portal_scrape.csv, Williams,2710 S.Dearborn ,,5349245,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +662,CPS_Early_Childhood_Portal_scrape.csv, Lafayette,2714 W. Augusta Blvd. ,,5344326,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +663,CPS_Early_Childhood_Portal_scrape.csv, Easter Seals Society of Metropolitan Chicago - The Keeper's Inst.,2718 W 59th St ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +664,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Hegewisch,2725 E 130th ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +665,CPS_Early_Childhood_Portal_scrape.csv, Zapata,2728 S. Kostner ,,5341390,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +666,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Centro Infantil(Puerto Rican Comm),2739 W Division St ,,3428866,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +667,CPS_Early_Childhood_Portal_scrape.csv, Chalmers,2745 W. Roosevelt Rd. ,,5341720,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +668,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Whiz Kidz Learning Center,2814 W Marquette Rd ,,9252859,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +669,CPS_Early_Childhood_Portal_scrape.csv, Mary Crane League - Mary Crane - West,2820 N Leavitt St ,,3485528,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +670,CPS_Early_Childhood_Portal_scrape.csv, Onward Neighborhood House - Cozy Corner,2820 W North Ave ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +671,CPS_Early_Childhood_Portal_scrape.csv, Saucedo,2850 W. 24Th St. ,,5341770,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +672,CPS_Early_Childhood_Portal_scrape.csv, Cather,2908 W. Washington ,,5346780,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +673,CPS_Early_Childhood_Portal_scrape.csv, Lutheran Social Services of Illinois - Trinidad / LSSI,2921 W Division St ,,2789332,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +674,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Near South / Henry Booth,2929 S Wabash Ave ,,7910424,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +675,CPS_Early_Childhood_Portal_scrape.csv, Carole Robertson Center For Learning - Carole Robertson Center 2929,2929 W 19th St ,,5211600,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +676,CPS_Early_Childhood_Portal_scrape.csv, Carole Robertson Center For Learning - Carole Robertson Center 2929,2929 W 19th St ,,5211600,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +677,CPS_Early_Childhood_Portal_scrape.csv, Boys and Girls Clubs of Chicago - R.E. Woods,2950 W 25th St ,,8475172,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +678,CPS_Early_Childhood_Portal_scrape.csv, Boys and Girls Clubs of Chicago - R.E. Woods,2950 W 25th St ,,8475172,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +679,CPS_Early_Childhood_Portal_scrape.csv, Schneider,2957 N. Hoyne ,,5345510,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +680,CPS_Early_Childhood_Portal_scrape.csv, Mary Crane League - Mary Crane - East,2974 N Clybourn Ave ,,3485528,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +681,CPS_Early_Childhood_Portal_scrape.csv, Cockrell,30 E. 61St ,,5350798,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +682,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - Chicago Lawn,3001 W 59th St ,,9251085,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +683,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Little Leaders of Tomorrow,301 N Mayfield Ave ,,3788302,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +684,CPS_Early_Childhood_Portal_scrape.csv, Chicago Youth Centers - Shining Star,3012 E 92nd St ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +685,CPS_Early_Childhood_Portal_scrape.csv, Bethune,3030 W. Arthington ,,5346890,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +686,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Young Scholars Dev. Ins,3038 W 59th St ,,9181944,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +687,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - South Chicago YMCA,3039 E 91st St ,,7219100,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +688,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Rey Gonzalez Children & Family Center,3050 E 92nd St ,,7219311,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +689,CPS_Early_Childhood_Portal_scrape.csv, Beidler,3151 W. Walnut ,,5346811,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +690,CPS_Early_Childhood_Portal_scrape.csv, Bethel New Life - Lake and Pulaski,316 N Pulaski Rd ,,2653830,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +691,CPS_Early_Childhood_Portal_scrape.csv, Curtis,32 E. 115Th St. ,,5355050,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +692,CPS_Early_Childhood_Portal_scrape.csv, Metropolitan Family Services - Midway Children's Center (Chicago Lawn),3215 W 63rd St ,,8842350,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +693,CPS_Early_Childhood_Portal_scrape.csv, Linne,3221 N. Sacramento ,,5345262,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +694,CPS_Early_Childhood_Portal_scrape.csv, Chicago Youth Centers - Centro Nuestro / CYC,3222 W Division Ave ,,4893157,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +695,CPS_Early_Childhood_Portal_scrape.csv, Metropolitan Family Services - North Children's Center,3249 N Central Ave ,,3713700,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +696,CPS_Early_Childhood_Portal_scrape.csv, Christopher House - Christoper House - Logan Square,3255 W Altgeld St ,,2354073,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +697,CPS_Early_Childhood_Portal_scrape.csv, Chicago State University - Professional Playhouse,338 E 103rd ,,5680728,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +698,CPS_Early_Childhood_Portal_scrape.csv, Chicago State University - Professional Playhouse,338 E 103rd ,,5680728,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +699,CPS_Early_Childhood_Portal_scrape.csv, St. Augustine College - St. Augustine - Flamboyan,3401 W McLean Ave ,,2763423,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +700,CPS_Early_Childhood_Portal_scrape.csv, Easter Seals Society of Metropolitan Chicago - Fifth City,3411 W Fifth Ave ,,8268686,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +701,CPS_Early_Childhood_Portal_scrape.csv, Edgewater Community Council - A B C Center / CYC,3415 W 13th Pl ,,7625655,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +702,CPS_Early_Childhood_Portal_scrape.csv, Edgewater Community Council - A B C Center / CYC,3415 W 13th Pl ,,7625655,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +703,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Pathway,3418 W 79th St ,,7765439,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +704,CPS_Early_Childhood_Portal_scrape.csv, Chicago Youth Centers - Rachel's Learning Center #1,3430 W Roosevelt Rd ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +705,CPS_Early_Childhood_Portal_scrape.csv, Stowe,3444 W. Wabansia ,,5344175,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +706,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - North Lawndale YMCA,3449 W Arthington St ,,6380773,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +707,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - North Lawndale YMCA,3449 W Arthington St ,,6380773,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +708,CPS_Early_Childhood_Portal_scrape.csv, Chicago Youth Centers - Pathway To Learning,3460 W 79th St ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +709,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Teddy Bear 2 Columbus,3473 W Columbus ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +710,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - Logan Square - First Lutheran YMCA,3500 W Fullerton Ave ,,8625960,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +711,CPS_Early_Childhood_Portal_scrape.csv, Lawndale,3500 W. Douglas ,,5341635,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +712,CPS_Early_Childhood_Portal_scrape.csv, McClellan,3527 S. Wallace ,,5351732,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +713,CPS_Early_Childhood_Portal_scrape.csv, Centers For New Horizons - Ida B. Wells Learning Center,3601 S Rhodes St ,,3733640,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +714,CPS_Early_Childhood_Portal_scrape.csv, Dvorak,3615 W. 16Th St. ,,5341690,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +715,CPS_Early_Childhood_Portal_scrape.csv, V.F. Thomas Early Childhood Center,3625 S. Hoyne Ave ,,5354088,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +716,CPS_Early_Childhood_Portal_scrape.csv, Easter Seals Society of Metropolitan Chicago - Near South Side,3630 S Wells Ave ,,5483614,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +717,CPS_Early_Childhood_Portal_scrape.csv, Monroe,3651 W. Schubert ,,5344155,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +718,CPS_Early_Childhood_Portal_scrape.csv, Firman Community Services - Firman House West,37 W 47th St ,,3733400,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +719,CPS_Early_Childhood_Portal_scrape.csv, Carole Robertson Center For Learning - Carole Robertson Center- Ogden 3701,3701 W Ogden Ave ,,5228400,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +720,CPS_Early_Childhood_Portal_scrape.csv, Carole Robertson Center For Learning - Carole Robertson Center- Ogden 3701,3701 W Ogden Ave ,,5228400,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +721,CPS_Early_Childhood_Portal_scrape.csv, Gary,3740 W. 31St St. ,,5341455,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +722,CPS_Early_Childhood_Portal_scrape.csv, Onward Neighborhood House - ABC Day Care,3800 N Austin Ave ,,6859033,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +723,CPS_Early_Childhood_Portal_scrape.csv, Ada S. McKinley Community Services - McKinley - St. Thomas,3801 S Wabash Ave ,,2850617,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +724,CPS_Early_Childhood_Portal_scrape.csv, Peck,3826 W. 58Th ,,5352450,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +725,CPS_Early_Childhood_Portal_scrape.csv, Hurley,3849 W. 69Th St ,,5352068,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +726,CPS_Early_Childhood_Portal_scrape.csv, Easter Seals Society of Metropolitan Chicago - Little Giants,3863 W Harrison St ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +727,CPS_Early_Childhood_Portal_scrape.csv, Centers For New Horizons - Edison L. Hoard Learning Center,3901 S State St ,,5362187,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +728,CPS_Early_Childhood_Portal_scrape.csv, Easter Seals Society of Metropolitan Chicago - It Takes a Village,4000 W Division St ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +729,CPS_Early_Childhood_Portal_scrape.csv," Ward, Laura",410 N. Monticello ,,5346440,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +730,CPS_Early_Childhood_Portal_scrape.csv, Fuller,4214 S. St Lawrence ,,5351687,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +731,CPS_Early_Childhood_Portal_scrape.csv, Mason,4217 W. 18Th St. ,,5341530,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +732,CPS_Early_Childhood_Portal_scrape.csv, Mason,4217 W. 18Th St. ,,5341530,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +733,CPS_Early_Childhood_Portal_scrape.csv, Bateman,4220 N. Richmond ,,5345055,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +734,CPS_Early_Childhood_Portal_scrape.csv, Robinson,4225 S. Lake Park ,,5351777,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +735,CPS_Early_Childhood_Portal_scrape.csv, Salvation Army - New Hope / Salvation Army,4255 W Division St ,,7224908,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +736,CPS_Early_Childhood_Portal_scrape.csv, Goldblatt,4257 W. Adams ,,5346860,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +737,CPS_Early_Childhood_Portal_scrape.csv, Korean American Community Services - Korean American Community Services,4300 N California Ave ,,5838281,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +738,CPS_Early_Childhood_Portal_scrape.csv, Centers For New Horizons - Effie Ellis,4301 S Cottage Grove Ave ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +739,CPS_Early_Childhood_Portal_scrape.csv, Ada S. McKinley Community Services - Maggie Drummond Day Care,4301 S Wabash Ave ,,3738200,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +740,CPS_Early_Childhood_Portal_scrape.csv, Morton,431 N. Troy ,,5346791,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +741,CPS_Early_Childhood_Portal_scrape.csv, Abraham Lincoln Centre - Lincoln - King,4314 S Cottage Grove Ave ,,7472310,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +742,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Jones Academy,4344 S Wentworth Ave ,,5363757,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +743,CPS_Early_Childhood_Portal_scrape.csv, Hull House Association - Leclaire-Ryder Day Care / Hull House,4410 S Laporte Ave ,,7675170,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +744,CPS_Early_Childhood_Portal_scrape.csv, McCorkle,4421 S. State St. ,,5351793,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +745,CPS_Early_Childhood_Portal_scrape.csv, Stockton Br.,4425 N. Magnolia Ave ,,5342510,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +746,CPS_Early_Childhood_Portal_scrape.csv, Graham,4436 S. Union ,,5351308,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +747,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Kiddy Kare Learning Ctr,4444 S Kedzie Ave ,,2476642,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +748,CPS_Early_Childhood_Portal_scrape.csv, Woodson South,4444 S. Evans Ave ,,5351280,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +749,CPS_Early_Childhood_Portal_scrape.csv, Hull House Association - Uptown West / Hull House,4520 N Beacon St ,,5613500,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +750,CPS_Early_Childhood_Portal_scrape.csv, Columbia Explorers,4520 S. Kedzie ,,5354050,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +751,CPS_Early_Childhood_Portal_scrape.csv, Stewart,4525 N. Kenmore ,,5342640,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +752,CPS_Early_Childhood_Portal_scrape.csv, St. Paul Church of God - Chaney Ford Child Care Center,4526 S Wabash Ave ,,2858721,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +753,CPS_Early_Childhood_Portal_scrape.csv, Chicago Youth Centers - Roseland / CYC,461 E 111th St ,,4684405,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +754,CPS_Early_Childhood_Portal_scrape.csv, Chicago Youth Centers - Roseland / CYC,461 E 111th St ,,4684405,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +755,CPS_Early_Childhood_Portal_scrape.csv, Home of Life Community Dev. Corp. - Home of Life Just For You,4647 W Washington Blvd ,,6268655,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +756,CPS_Early_Childhood_Portal_scrape.csv, Home of Life Community Dev. Corp. - Home of Life Community Development,4650 W Madison St ,,6268655,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +757,CPS_Early_Childhood_Portal_scrape.csv, Christopher House - Christopher House - Uptown,4701 N Winthrop Ave ,,7694540,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +758,CPS_Early_Childhood_Portal_scrape.csv, McPherson,4728 N. Wolcott Ave ,,5344625,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +759,CPS_Early_Childhood_Portal_scrape.csv, Onward Neighborhood House - First Start Academy,4753 W Washington Blvd ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +760,CPS_Early_Childhood_Portal_scrape.csv, Hull House Association - Lincoln Square / Hull House,4754 N Leavitt St ,,8788651,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +761,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - St. Joseph,4800 S Paulina St ,,9272524,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +762,CPS_Early_Childhood_Portal_scrape.csv, Nash,4837 W. Erie ,,5346125,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +763,CPS_Early_Childhood_Portal_scrape.csv, Lutheran Social Services of Illinois - Winthrop Children's Center / LSSI,4848 N Winthrop Ave ,,8783210,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +764,CPS_Early_Childhood_Portal_scrape.csv, McCutcheon,4865 N. Sheridan Rd ,,5342680,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +765,CPS_Early_Childhood_Portal_scrape.csv, Westside Holistic Family Services - Westside Holistic Family Service,4909 W Division St ,,9218777,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +766,CPS_Early_Childhood_Portal_scrape.csv, Firman Community Services - Firman House East,4910 S Dr. Martin Luther King Dr ,,3732083,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +767,CPS_Early_Childhood_Portal_scrape.csv, Overton CPC,4935 S. Indiana ,,5351811,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +768,CPS_Early_Childhood_Portal_scrape.csv, Healing Temple - Healing Temple,4941 W Chicago Ave ,,2876964,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +769,CPS_Early_Childhood_Portal_scrape.csv, Appeal for Charities and Goodwill - Appeal for Charities,50 W 71st St ,,6515400,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +770,CPS_Early_Childhood_Portal_scrape.csv, Hull House Association - Parkway Community Center / Hull House,500 E 67th St ,,4931306,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +771,CPS_Early_Childhood_Portal_scrape.csv, Salvation Army - Columbus Park / Salvation Army,500 S Central Ave ,,9214162,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +772,CPS_Early_Childhood_Portal_scrape.csv," Douglass-Tubman Youth Ministries,Inc. - Douglass-Tubman Child Development Center",5010 W Chicago Ave ,,6266581,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +773,CPS_Early_Childhood_Portal_scrape.csv, Wayman Day Care Center - Wayman Day Care,511 W Elm St ,,9432120,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +774,CPS_Early_Childhood_Portal_scrape.csv, May,512 S. Lavergne ,,5346140,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +775,CPS_Early_Childhood_Portal_scrape.csv, Goudy,5120 N. Winthrop ,,5342480,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +776,CPS_Early_Childhood_Portal_scrape.csv, Albany Park Community Center - Albany Park Head Start Center-Kimball,5121 N Kimball Ave ,,5095657,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +777,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - All About Kids Learning Academy,514 E 75th St ,,8922800,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +778,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Teddy Bear 5 Pulaski,5160 S Pulaski RD ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +779,CPS_Early_Childhood_Portal_scrape.csv, Fulton,5300 S. Hermitage ,,5359000,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +780,CPS_Early_Childhood_Portal_scrape.csv, Trinity United Church of Christ - Trinity United,532 W 95th St ,,4883511,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +781,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - Grace Mission,5332 S Western Ave ,,4761990,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +782,CPS_Early_Childhood_Portal_scrape.csv, Marcy Newberry Association - Mosaic,5332-34 W Addison Ave ,,7777411,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +783,CPS_Early_Childhood_Portal_scrape.csv, Doolittle West,535 E. 35th St ,,5351040,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +784,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Angel Wings,5365 W North Ave ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +785,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Near The Pier Dev Center,540 N Lakeshore Dr ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +786,CPS_Early_Childhood_Portal_scrape.csv, Firman Community Services - Firman House South,5401 S Wentworth Ave ,,4513400,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +787,CPS_Early_Childhood_Portal_scrape.csv, Onward Neighborhood House - Belmont-Cragin,5423 W Diversey ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +788,CPS_Early_Childhood_Portal_scrape.csv, Onward Neighborhood House - New Beginnings,5445 W North Ave ,,3855365,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +789,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Bunny Land DC,545 w 119th st ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +790,CPS_Early_Childhood_Portal_scrape.csv," Trinity Resources Unlimited, Inc. - Prince of Peace",5450 W Van Buren St ,,6263977,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +791,CPS_Early_Childhood_Portal_scrape.csv, National Teachers Acad,55 W. Cermack ,,5349970,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +792,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Allison's Infant Toddler,5522 S Racine Ave ,,4363193,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +793,CPS_Early_Childhood_Portal_scrape.csv, Marcy Newberry Association - Austin Town Hall,5610 W Lake St ,,2611505,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +794,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Coppin Early Learning Center,5627 S Michigan Ave ,,3632400,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +795,CPS_Early_Childhood_Portal_scrape.csv, Onward Neighborhood House - Tiny Town for Tots,5654 W Division St ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +796,CPS_Early_Childhood_Portal_scrape.csv, Marcy Newberry Association - St. John Greater Holy Temple,5701 W Midway Park ,,9480094,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +797,CPS_Early_Childhood_Portal_scrape.csv," Trinity Resources Unlimited, Inc. - Hope for Youth",5900 W Iowa St ,,6260323,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +798,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Little Learners,5923 W 63rd St ,,5815541,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +799,CPS_Early_Childhood_Portal_scrape.csv, Onward Neighborhood House - Onward Neighborhood House,600 N Leavitt St ,,6666726,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +800,CPS_Early_Childhood_Portal_scrape.csv, Nicholson,6006 S. Peoria ,,5353285,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +801,CPS_Early_Childhood_Portal_scrape.csv," Sexton, Austin O.",6020 S. Langley ,,5350640,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +802,CPS_Early_Childhood_Portal_scrape.csv, Onward Neighborhood House - Lee's Cuddles N Care,6100 W North Ave ,,7458054,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +803,CPS_Early_Childhood_Portal_scrape.csv, Fiske,6145 S. Ingleside ,,5350990,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +804,CPS_Early_Childhood_Portal_scrape.csv, Onward Neighborhood House - Alphabet Academy,6224 W North Ave ,,6227055,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +805,CPS_Early_Childhood_Portal_scrape.csv, Centers For New Horizons - Washington Park South Learning Center,6225 S Wabash Ave ,,6672065,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +806,CPS_Early_Childhood_Portal_scrape.csv, Boys and Girls Clubs of Chicago - Yancey,6245 S Wabash Ave ,,3634733,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +807,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Kidz Colony,6287 S Archer Ave ,,7678522,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +808,CPS_Early_Childhood_Portal_scrape.csv, Aldridge,630 E. 131St St. ,,5355614,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +809,CPS_Early_Childhood_Portal_scrape.csv, Dulles,6311 S. Calumet ,,5350690,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +810,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - South Side YMCA,6330 S Stony Island Ave ,,9470700,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +811,CPS_Early_Childhood_Portal_scrape.csv, Reed,6350 S. Stewart ,,5353075,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +812,CPS_Early_Childhood_Portal_scrape.csv, Dewey CPC,638 W. 54Th Pl. ,,5351671,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +813,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Teddy Bear 3 Pulaski,6401 S Pulaski RD ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +814,CPS_Early_Childhood_Portal_scrape.csv, Metropolitan Family Services - Midway Head Start Center,6422 S Kedzie Ave ,,7374790,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +815,CPS_Early_Childhood_Portal_scrape.csv, Hinton,644 W. 71St St. ,,5353875,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +816,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Granny's Day Care,645 w 127th st ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +817,CPS_Early_Childhood_Portal_scrape.csv, Kershaw,6450 S. Lowe ,,5353050,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +818,CPS_Early_Childhood_Portal_scrape.csv, O'Toole,6550 S. Seeley ,,5359040,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +819,CPS_Early_Childhood_Portal_scrape.csv, Woodlawn,6657 S. Kimbark ,,5350801,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +820,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Little Angels Family DayCare,6701 S Emerald Ave ,,4888777,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +821,CPS_Early_Childhood_Portal_scrape.csv," Davis, Miles Acad",6723 S. Wood ,,5359120,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +822,CPS_Early_Childhood_Portal_scrape.csv, Board Trustees-City Colleges of Chicago - Kennedy-King College,6800 S Wentworth Ave ,,5533475,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +823,CPS_Early_Childhood_Portal_scrape.csv, Family Rescue - Ridgeland Head Start,6824 S Ridgeland Ave ,,6671073,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +824,CPS_Early_Childhood_Portal_scrape.csv, Trinity United Church of Christ - Dr. Denton J. Brooks Center,6921 S Stony Island Ave ,,9552818,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +825,CPS_Early_Childhood_Portal_scrape.csv, O'Keeffe,6940 S. Merrill ,,5350600,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +826,CPS_Early_Childhood_Portal_scrape.csv, Abraham Lincoln Centre - Lincoln - Roseland,7 E 119th St ,,2647632,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +827,CPS_Early_Childhood_Portal_scrape.csv, Abraham Lincoln Centre - Lincoln - Roseland,7 E 119th St ,,2647632,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +828,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - Garfield Head Start/Child Developmental Center- YMCA,7 N Homan Ave ,,2653900,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +829,CPS_Early_Childhood_Portal_scrape.csv, Yale,7025 S. Princeton ,,5353190,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +830,CPS_Early_Childhood_Portal_scrape.csv, Bond,7050 S. May ,,5353480,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +831,CPS_Early_Childhood_Portal_scrape.csv, McKay,7050 S. Washtenaw ,,5359340,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +832,CPS_Early_Childhood_Portal_scrape.csv, Christopher House - Christopher House - Rogers Park,7059 N Greenview Ave ,,2745477,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +833,CPS_Early_Childhood_Portal_scrape.csv, Abraham Lincoln Centre - Donoghue,707 E 37th St ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +834,CPS_Early_Childhood_Portal_scrape.csv, Guggenheim,7141 S. Morgan ,,5353587,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +835,CPS_Early_Childhood_Portal_scrape.csv, Ada S. McKinley Community Services - Little Hands,7146 S Ashland Ave ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +836,CPS_Early_Childhood_Portal_scrape.csv, Ada S. McKinley Community Services - McKinley - Howard,7222 S Exchange Ave ,,2219711,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +837,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Love N Learn Academy,723 E 75th St ,,7230338,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +838,CPS_Early_Childhood_Portal_scrape.csv, Deneen,7240 S. Wabash ,,5353035,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +839,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - Maria's Garden,7320 S Yale Ave ,,9943016,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +840,CPS_Early_Childhood_Portal_scrape.csv, South Shore United Methodist - South Shore United,7350 S Jeffery Blvd ,,3244430,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +841,CPS_Early_Childhood_Portal_scrape.csv, Tanner,7350 S. Evans ,,5353870,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +842,CPS_Early_Childhood_Portal_scrape.csv, Jordan,7414 N. Wolcott ,,5342220,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +843,CPS_Early_Childhood_Portal_scrape.csv," Henry Booth House - Itsy Bitsy People Palace, Inc",7419 S Cottage Grove Ave ,,8467396,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +844,CPS_Early_Childhood_Portal_scrape.csv, Stagg,7424 S. Morgan ,,5353565,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +845,CPS_Early_Childhood_Portal_scrape.csv, Madison,7433 S. Dorchester ,,5350551,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +846,CPS_Early_Childhood_Portal_scrape.csv, Chicago Commons Association - Nia Family Center,744 N Monticello Ave ,,8266971,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +847,CPS_Early_Childhood_Portal_scrape.csv, Howard Area Community Center - Howard Area Community Center,7510 N Ashland Ave ,,7647610,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +848,CPS_Early_Childhood_Portal_scrape.csv, Chicago Youth Centers - Rebecca K. Crown / CYC,7601 S Phillips Ave ,,6481550,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +849,CPS_Early_Childhood_Portal_scrape.csv, Howard Area Community Center - Howard Area,7638 N Paulina Ave ,,3813652,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +850,CPS_Early_Childhood_Portal_scrape.csv, Barton,7650 S. Wolcott Ave. ,,5353260,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +851,CPS_Early_Childhood_Portal_scrape.csv, Bradwell,7736 S. Burnhan ,,5356600,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +852,CPS_Early_Childhood_Portal_scrape.csv, Bradwell,7736 S. Burnhan ,,5356600,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +853,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Little Hands & Feet,7801 S Wolcott Ave ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +854,CPS_Early_Childhood_Portal_scrape.csv, Ruggles,7831 S. Prairie ,,5353085,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +855,CPS_Early_Childhood_Portal_scrape.csv, Ada S. McKinley Community Services - McKinley - Wright Renaissance,7939 S Western Ave ,,4768805,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +856,CPS_Early_Childhood_Portal_scrape.csv, Chicago State University - Tiny Tots Villa,8128 S Dr. Martin Luther King Dr ,,4836251,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +857,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Learning Tree,8128 S Kedzie Ave ,,7788802,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +858,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - New Pisgah,8130 S Racine Ave ,,8735392,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +859,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Pink's Child Care Academy,8236 S Kedzie Ave ,,8637465,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +860,CPS_Early_Childhood_Portal_scrape.csv, South Central Community Services - South Central Community Services,8316 S Ellis Ave ,,4830900,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +861,CPS_Early_Childhood_Portal_scrape.csv, Reavis,834 E. 50Th St. ,,5351060,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +862,CPS_Early_Childhood_Portal_scrape.csv, Marcy Newberry Association - South Harper Montessori,8358 S Stony Island Ave ,,7340375,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +863,CPS_Early_Childhood_Portal_scrape.csv, Morgan,8407 S. Kerfoot ,,5353366,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +864,CPS_Early_Childhood_Portal_scrape.csv, Chicago Youth Centers - Fellowship House / CYC,844 W 32nd St ,,3262282,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +865,CPS_Early_Childhood_Portal_scrape.csv, Salvation Army - Family Outreach Initiative (Sal Army),845 W 69th St ,,8324700,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +866,CPS_Early_Childhood_Portal_scrape.csv, McNair Acad. Center,849 N. Leamington ,,5346100,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +867,CPS_Early_Childhood_Portal_scrape.csv, Christopher House - Christopher House - Lakeshore,850 W Eastwood Ave ,,2719403,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +868,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Jelly Learning Center,8501 S Ashland Ave ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +869,CPS_Early_Childhood_Portal_scrape.csv, Gresham,8524 S. Green ,,5353350,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +870,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - North Kenwood Day Care Center,857 E Pershing Rd ,,2682223,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +871,CPS_Early_Childhood_Portal_scrape.csv, Dorothy Sutton Branch - Dorothy Sutton Branch,8601 S State St ,,7234445,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +872,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - St. Bronislava,8716 S Colfax Ave ,,9337676,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +873,CPS_Early_Childhood_Portal_scrape.csv, Ryder,8716 S. Wallace ,,5353843,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +874,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Little Elite Childcare,8748 S Aberdeen St ,,4887988,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +875,CPS_Early_Childhood_Portal_scrape.csv, Ada S. McKinley Community Services - Child Quest,8751 S Greenwood Ave ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +876,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Pill Hill Development Center,8802 S Stony Island Ave ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +877,CPS_Early_Childhood_Portal_scrape.csv, Chicago Youth Centers - Tots Express,8938 S Cottage Grove ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +878,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Tots Express,8939 S Cottage Grove Ave ,,,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +879,CPS_Early_Childhood_Portal_scrape.csv, Wheatley CPC,902 E. 133rd Pl ,,5355718,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +880,CPS_Early_Childhood_Portal_scrape.csv, Wheatley CPC,902 E. 133rd Pl ,,5355718,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +881,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Kids R First,9040 S Vincennes Ave ,,4454900,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +882,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - Our Lady of Guadalupe,9129 S Burley Ave ,,9785320,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +883,CPS_Early_Childhood_Portal_scrape.csv," Trinity Resources Unlimited, Inc. - High Mountain",919 N Lavergne Ave ,,6263994,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +884,CPS_Early_Childhood_Portal_scrape.csv, Brunson,932 N. Central Av ,,5346025,,Head Start,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +885,CPS_Early_Childhood_Portal_scrape.csv, Henry Booth House - Pattie Cake,939 W 87th St ,,8749460,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +886,CPS_Early_Childhood_Portal_scrape.csv, Centers For New Horizons - Altgeld Gardens I,941 E 132nd Pl ,,4683055,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +887,CPS_Early_Childhood_Portal_scrape.csv, Centers For New Horizons - Altgeld Gardens I,941 E 132nd Pl ,,4683055,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +888,CPS_Early_Childhood_Portal_scrape.csv, Salvation Army - Red Shield,945 W 69th St ,,3583203,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +889,CPS_Early_Childhood_Portal_scrape.csv, Chicago State University - Chicago State University,9501 S Dr. Martin Luther King Dr ,,9952400,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +890,CPS_Early_Childhood_Portal_scrape.csv, Holmes,955 W. Garfield ,,5359025,,Head Start,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +891,CPS_Early_Childhood_Portal_scrape.csv, Chicago Youth Centers - Dorothy Gautreaux / CYC,975 E 132nd St ,,2911000,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +892,CPS_Early_Childhood_Portal_scrape.csv, Chicago Youth Centers - Dorothy Gautreaux / CYC,975 E 132nd St ,,2911000,,Head Start,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +893,CPS_Early_Childhood_Portal_scrape.csv, Henson,1326 S. Avers Ave ,,5341804,,Head Start/Child Parent Center,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +894,CPS_Early_Childhood_Portal_scrape.csv, Henson,1326 S. Avers Ave ,,5341804,,Head Start/Child Parent Center,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +895,CPS_Early_Childhood_Portal_scrape.csv, Herzl CPC,1401 S. Hamlin ,,5341751,,Head Start/Child Parent Center,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +896,CPS_Early_Childhood_Portal_scrape.csv, Herzl CPC,1401 S. Hamlin ,,5341751,,Head Start/Child Parent Center,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +897,CPS_Early_Childhood_Portal_scrape.csv, Ferguson CPC,1420 N. Hudson ,,5348580,,Head Start/Child Parent Center,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +898,CPS_Early_Childhood_Portal_scrape.csv, Delano CPC,3905 W. Wilcox ,,5346450,,Head Start/Child Parent Center,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +899,CPS_Early_Childhood_Portal_scrape.csv, Hansberry CPC,4055 W. Arthington ,,5346931,,Head Start/Child Parent Center,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +900,CPS_Early_Childhood_Portal_scrape.csv, Hansberry CPC,4055 W. Arthington ,,5346931,,Head Start/Child Parent Center,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +901,CPS_Early_Childhood_Portal_scrape.csv, South Loop,1212 S. Plymouth ,,5348690,,Head Start/Prekindergarten For,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +902,CPS_Early_Childhood_Portal_scrape.csv, South Loop,1212 S. Plymouth ,,5348690,,Head Start/Prekindergarten For,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +903,CPS_Early_Childhood_Portal_scrape.csv, Cockrell,30 E. 61St ,,5350798,,Head Start/Prekindergarten For,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +904,CPS_Early_Childhood_Portal_scrape.csv, Mason,4217 W. 18Th St. ,,5341530,,Head Start/Prekindergarten For,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +905,CPS_Early_Childhood_Portal_scrape.csv, Mason,4217 W. 18Th St. ,,5341530,,Head Start/Prekindergarten For,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +906,CPS_Early_Childhood_Portal_scrape.csv, McCutcheon,4865 N. Sheridan Rd ,,5342680,,Head Start/Prekindergarten For,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +907,CPS_Early_Childhood_Portal_scrape.csv, Fiske,6145 S. Ingleside ,,5350990,,Head Start/Prekindergarten For,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +908,CPS_Early_Childhood_Portal_scrape.csv, Barton,7650 S. Wolcott Ave. ,,5353260,,Head Start/Prekindergarten For,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +909,CPS_Early_Childhood_Portal_scrape.csv, Bradwell,7736 S. Burnhan ,,5356600,,Head Start/Prekindergarten For,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +910,CPS_Early_Childhood_Portal_scrape.csv, Wheatley CPC,902 E. 133rd Pl ,,5355718,,Head Start/Prekindergarten For,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +911,CPS_Early_Childhood_Portal_scrape.csv, Wheatley CPC,902 E. 133rd Pl ,,5355718,,Head Start/Prekindergarten For,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +912,CPS_Early_Childhood_Portal_scrape.csv, Sherman,1000 W. 52nd St. ,,5351757,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +913,CPS_Early_Childhood_Portal_scrape.csv, Columbus,1003 N. Leavitt ,,5344350,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +914,CPS_Early_Childhood_Portal_scrape.csv, Fernwood,10041 S. Union ,,5352700,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +915,CPS_Early_Childhood_Portal_scrape.csv, Bennett,10115 S. Prairie ,,5355460,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +916,CPS_Early_Childhood_Portal_scrape.csv, Garvey,10309 S. Morgan ,,5352763,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +917,CPS_Early_Childhood_Portal_scrape.csv, Gallistel,10347 S. Ewing Ave. ,,5356540,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +918,CPS_Early_Childhood_Portal_scrape.csv, Barnard,10354 S. Charles St. ,,5352625,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +919,CPS_Early_Childhood_Portal_scrape.csv," Clark, G.R.",1045 S. Monitor Ave ,,5346225,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +920,CPS_Early_Childhood_Portal_scrape.csv, Mt. Vernon,10540 S. Morgan ,,5352825,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +921,CPS_Early_Childhood_Portal_scrape.csv, Bright,10740 S. Calhoun ,,5356218,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +922,CPS_Early_Childhood_Portal_scrape.csv, Addams,10810 S. Ave. H ,,5356210,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +923,CPS_Early_Childhood_Portal_scrape.csv, Mt. Greenwood,10841 S. Homan Ave ,,5352786,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +924,CPS_Early_Childhood_Portal_scrape.csv, Dunne,10845 S. Union ,,5355517,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +925,CPS_Early_Childhood_Portal_scrape.csv, Rudolph,110 N. Paulina ,,5347460,,Prekindergarten For All,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +926,CPS_Early_Childhood_Portal_scrape.csv, Holden,1104 W. 31St. St. ,,5357200,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +927,CPS_Early_Childhood_Portal_scrape.csv, Ariel Comm,1119 E. 46th St. ,,5351996,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +928,CPS_Early_Childhood_Portal_scrape.csv, Pullman,11311 S. Forrestville ,,5355395,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +929,CPS_Early_Childhood_Portal_scrape.csv, Bass,1140 W. 66th St. ,,5353275,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +930,CPS_Early_Childhood_Portal_scrape.csv, LaSalle/Andersen,1148 N. Honore ,,5344276,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +931,CPS_Early_Childhood_Portal_scrape.csv, Whistler,11533 S. Ada ,,5355560,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +932,CPS_Early_Childhood_Portal_scrape.csv, Pullman West,11941 S. Parnell Ave ,,5355500,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +933,CPS_Early_Childhood_Portal_scrape.csv, Metcalfe,12339 S. Normal Av. ,,5355590,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +934,CPS_Early_Childhood_Portal_scrape.csv, Bontemps,1241 West 58th St ,,5359175,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +935,CPS_Early_Childhood_Portal_scrape.csv, Owens,12450 S. State St. ,,5355661,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +936,CPS_Early_Childhood_Portal_scrape.csv, Grissom,12810 S. Escanaba ,,5355380,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +937,CPS_Early_Childhood_Portal_scrape.csv, De Diego,1313 N. Claremont ,,5344451,,Prekindergarten For All,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +938,CPS_Early_Childhood_Portal_scrape.csv, Clay,13231 S.Burley ,,5355600,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +939,CPS_Early_Childhood_Portal_scrape.csv, De Priest,139 S. Parkside Ave ,,5346800,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +940,CPS_Early_Childhood_Portal_scrape.csv, Schiller,1409 N. Ogden ,,5348126,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +941,CPS_Early_Childhood_Portal_scrape.csv, Carnegie,1414 E. 61st Pl. ,,5350530,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +942,CPS_Early_Childhood_Portal_scrape.csv, Pilsen,1420 W. 17Th St. ,,5347675,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +943,CPS_Early_Childhood_Portal_scrape.csv, Pilsen,1420 W. 17Th St. ,,5347675,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +944,CPS_Early_Childhood_Portal_scrape.csv, Blaine,1420 W. Grace ,,5345750,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +945,CPS_Early_Childhood_Portal_scrape.csv, Peirce,1423 W. Bryn Mawr ,,5342440,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +946,CPS_Early_Childhood_Portal_scrape.csv, Lozano Bilingual,1424 N. Cleaver ,,5344150,,Prekindergarten For All,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +947,CPS_Early_Childhood_Portal_scrape.csv, West Park Acad,1425 N. Tripp ,,5344940,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +948,CPS_Early_Childhood_Portal_scrape.csv, Lewis,1431 N. Leamington ,,5343060,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +949,CPS_Early_Childhood_Portal_scrape.csv," Colemon, Johnnie",1441 W. 119th St. ,,5353975,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +950,CPS_Early_Childhood_Portal_scrape.csv, Shoop,1460 W. 112Th St. ,,5352715,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +951,CPS_Early_Childhood_Portal_scrape.csv, Hayt,1518 W. Granville ,,5342040,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +952,CPS_Early_Childhood_Portal_scrape.csv, Cuffe,1540 W. 84Th St. ,,5358250,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +953,CPS_Early_Childhood_Portal_scrape.csv, Harte,1556 E. 56Th St. ,,5350870,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +954,CPS_Early_Childhood_Portal_scrape.csv, Salazar,160 W. Wendell ,,5348310,,Prekindergarten For All,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +955,CPS_Early_Childhood_Portal_scrape.csv, Burr,1621 W. Wabansia ,,5344090,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +956,CPS_Early_Childhood_Portal_scrape.csv, Cooper,1624 W. 19Th St. ,,5347205,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +957,CPS_Early_Childhood_Portal_scrape.csv, Cooper,1624 W. 19Th St. ,,5347205,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +958,CPS_Early_Childhood_Portal_scrape.csv, Burley,1630 W. Barry ,,5345475,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +959,CPS_Early_Childhood_Portal_scrape.csv, Prescott,1632 W. Wrightwood ,,5345505,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +960,CPS_Early_Childhood_Portal_scrape.csv, Moos,1711 N. California ,,5344340,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +961,CPS_Early_Childhood_Portal_scrape.csv, Courtenay,1726 W. Berteau ,,5345790,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +962,CPS_Early_Childhood_Portal_scrape.csv, Yates,1839 N. Richmond ,,5344550,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +963,CPS_Early_Childhood_Portal_scrape.csv, Talcott,1840 W. Ohio ,,5347130,,Prekindergarten For All,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +964,CPS_Early_Childhood_Portal_scrape.csv, McAuliffe,1841 N. Springfield ,,5344400,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +965,CPS_Early_Childhood_Portal_scrape.csv, Sayre Lang Acad,1850 N. Newland ,,5343351,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +966,CPS_Early_Childhood_Portal_scrape.csv, Pritzker,2009 W. Schiller St. ,,5344415,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +967,CPS_Early_Childhood_Portal_scrape.csv, Walsh,2015 S. Peoria ,,5347950,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +968,CPS_Early_Childhood_Portal_scrape.csv, Burbank,2035 N. Mobile ,,5343000,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +969,CPS_Early_Childhood_Portal_scrape.csv," Armstrong , G.",2110 W. Greenleaf ,,5342150,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +970,CPS_Early_Childhood_Portal_scrape.csv, Nixon,2121 N. Keeler ,,5344375,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +971,CPS_Early_Childhood_Portal_scrape.csv, Crown,2128 S. St Louis Ave ,,5341680,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +972,CPS_Early_Childhood_Portal_scrape.csv, Chappell,2135 W. Foster ,,5342390,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +973,CPS_Early_Childhood_Portal_scrape.csv, Mozart,2200 N. Hamlin ,,5344160,,Prekindergarten For All,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +974,CPS_Early_Childhood_Portal_scrape.csv, Tilton,223 N. Keeler Av. ,,5346746,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +975,CPS_Early_Childhood_Portal_scrape.csv, Pulaski,2230 W. Mclean ,,5344391,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +976,CPS_Early_Childhood_Portal_scrape.csv, Kanoon,2233 S. Kedzie ,,5341736,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +977,CPS_Early_Childhood_Portal_scrape.csv, Mitchell,2233 W. Ohio St. ,,5347655,,Prekindergarten For All,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +978,CPS_Early_Childhood_Portal_scrape.csv, Goethe,2236 N. Rockwell ,,5344135,,Prekindergarten For All,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +979,CPS_Early_Childhood_Portal_scrape.csv, Marconi,230 N. Kolmar ,,5346210,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +980,CPS_Early_Childhood_Portal_scrape.csv, De La Cruz,2317 W. 23rd Pl. ,,5354585,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +981,CPS_Early_Childhood_Portal_scrape.csv, Farragut,2345 S. Christiana ,,5341300,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +982,CPS_Early_Childhood_Portal_scrape.csv, Spry,2400 S. Marshall Bl ,,5341700,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +983,CPS_Early_Childhood_Portal_scrape.csv, Ruiz,2410 S. Leavitt ,,5354825,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +984,CPS_Early_Childhood_Portal_scrape.csv, Parkman,245 W. 51St. St. ,,5351739,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +985,CPS_Early_Childhood_Portal_scrape.csv, Sherwood,245 W. 57Th St. ,,5350829,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +986,CPS_Early_Childhood_Portal_scrape.csv, Haines,247 W. 23Rd Pl ,,5349200,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +987,CPS_Early_Childhood_Portal_scrape.csv, Corkery,2510 S. Kildare ,,5341650,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +988,CPS_Early_Childhood_Portal_scrape.csv, Carroll-Rosenwald Br,2541 W. 80th St ,,5359355,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +989,CPS_Early_Childhood_Portal_scrape.csv, Barbara Vick Early Childhood & Fam Center,2554 W. 113Th St ,,5352671,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +990,CPS_Early_Childhood_Portal_scrape.csv, Little Village,2620 S. Lawndale ,,5341880,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +991,CPS_Early_Childhood_Portal_scrape.csv," Ward, J.",2701 S. Shields ,,5349050,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +992,CPS_Early_Childhood_Portal_scrape.csv, Budlong,2701 W. Foster ,,5342591,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +993,CPS_Early_Childhood_Portal_scrape.csv, McCormick,2712 S. Sawyer ,,5357252,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +994,CPS_Early_Childhood_Portal_scrape.csv, Lafayette,2714 W. Augusta Blvd. ,,5344326,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +995,CPS_Early_Childhood_Portal_scrape.csv, Brentano,2723 N. Fairfield ,,5344100,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +996,CPS_Early_Childhood_Portal_scrape.csv, Schubert,2727 N. Long ,,5343080,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +997,CPS_Early_Childhood_Portal_scrape.csv, McKinley Park,2744 W. Pershing Rd ,,5533661,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +998,CPS_Early_Childhood_Portal_scrape.csv, Whitney,2815 S. Komensky ,,5341560,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +999,CPS_Early_Childhood_Portal_scrape.csv, Hammond,2819 W. 21st Place ,,5354580,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1000,CPS_Early_Childhood_Portal_scrape.csv, Barry,2828 N. Kilbourn ,,5343455,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1001,CPS_Early_Childhood_Portal_scrape.csv, Locke,2828 N. Oak Park Ave ,,5343300,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1002,CPS_Early_Childhood_Portal_scrape.csv, Calhoun North,2833 W. Adams Street ,,5346940,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1003,CPS_Early_Childhood_Portal_scrape.csv, Agassiz,2851 N. Seminary ,,5345725,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1004,CPS_Early_Childhood_Portal_scrape.csv, Avondale,2945 N. Sawyer ,,5345244,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1005,CPS_Early_Childhood_Portal_scrape.csv, Ortiz De Dominguez,3000 S. Lawndale Ave ,,5341600,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1006,CPS_Early_Childhood_Portal_scrape.csv," Davis, N.",3014 W. 39th Pl ,,5354540,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1007,CPS_Early_Childhood_Portal_scrape.csv, Falconer,3020 N. Lamon ,,5343560,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1008,CPS_Early_Childhood_Portal_scrape.csv, Miller,3030 W. Harrison St ,,5346594,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1009,CPS_Early_Childhood_Portal_scrape.csv, Healy,3040 S. Parnell ,,5349170,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1010,CPS_Early_Childhood_Portal_scrape.csv, Pershing Magnet,3113 S. Rhodes ,,5349272,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1011,CPS_Early_Childhood_Portal_scrape.csv, Darwin,3116 W. Belden ,,5344110,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1012,CPS_Early_Childhood_Portal_scrape.csv, Cleveland,3121 W. Byron ,,5345130,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1013,CPS_Early_Childhood_Portal_scrape.csv, Jahn,3149 N. Wolcott ,,5345500,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1014,CPS_Early_Childhood_Portal_scrape.csv, Linne,3221 N. Sacramento ,,5345262,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1015,CPS_Early_Childhood_Portal_scrape.csv, Hibbard,3244 W. Ainslie ,,5345191,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1016,CPS_Early_Childhood_Portal_scrape.csv, Nettelhorst,3252 N. Broadway ,,5345810,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1017,CPS_Early_Childhood_Portal_scrape.csv, Lowell,3320 W. Hirsch ,,5344300,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1018,CPS_Early_Childhood_Portal_scrape.csv, Tarkington,3330 W. 71st St. ,,5354700,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1019,CPS_Early_Childhood_Portal_scrape.csv, Chicago Academy,3400 N. Austin ,,5343885,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1020,CPS_Early_Childhood_Portal_scrape.csv," Everett , Edward",3419 S. Bell Av. ,,5354550,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1021,CPS_Early_Childhood_Portal_scrape.csv, Reinberg,3425 N. Major ,,5343465,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1022,CPS_Early_Childhood_Portal_scrape.csv," Hampton, Lionel",3434 W. 77th ,,5354030,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1023,CPS_Early_Childhood_Portal_scrape.csv, Dever,3436 N. Osceola ,,5343090,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1024,CPS_Early_Childhood_Portal_scrape.csv, Audubon,3500 N. Hoyne ,,5345470,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1025,CPS_Early_Childhood_Portal_scrape.csv, Casals,3501 W. Potomac ,,5344444,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1026,CPS_Early_Childhood_Portal_scrape.csv, Murphy,3539 W. Grace ,,5345223,,Prekindergarten For All,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +1027,CPS_Early_Childhood_Portal_scrape.csv, Burroughs,3542 S. Washtenaw Ave. ,,5357226,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1028,CPS_Early_Childhood_Portal_scrape.csv, Ericson,3600 West 5th Ave ,,5346660,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1029,CPS_Early_Childhood_Portal_scrape.csv, Washington G.,3611 E. 114Th St. ,,5355010,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1030,CPS_Early_Childhood_Portal_scrape.csv, Reilly,3650 W. School ,,5345250,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1031,CPS_Early_Childhood_Portal_scrape.csv, Monroe,3651 W. Schubert ,,5344155,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1032,CPS_Early_Childhood_Portal_scrape.csv, Gregory,3715 W. Polk Street ,,5346820,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1033,CPS_Early_Childhood_Portal_scrape.csv, Dawes,3810 W. 81st Pl. ,,5352350,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1034,CPS_Early_Childhood_Portal_scrape.csv, Attucks,3813 S. Dearborn ,,5351270,,Prekindergarten For All,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +1035,CPS_Early_Childhood_Portal_scrape.csv, Disney Magnet II,3815 N. Kedvale ,,5358650,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1036,CPS_Early_Childhood_Portal_scrape.csv, Brighton Park,3825 S. Washtenaw Ave. ,,5357237,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1037,CPS_Early_Childhood_Portal_scrape.csv, Coonley,4046 N. Leavitt ,,5345140,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1038,CPS_Early_Childhood_Portal_scrape.csv, Westcott,409 W. 80Th St. ,,5353090,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1039,CPS_Early_Childhood_Portal_scrape.csv, Nobel,4127 W. Hirsch ,,5344365,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1040,CPS_Early_Childhood_Portal_scrape.csv, Disney Magnet,4140 N. Marine Dr. ,,5345840,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1041,CPS_Early_Childhood_Portal_scrape.csv, Scammon,4201 W. Henderson ,,5343475,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1042,CPS_Early_Childhood_Portal_scrape.csv, Bateman,4220 N. Richmond ,,5345055,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1043,CPS_Early_Childhood_Portal_scrape.csv," Hughes, C.",4247 W. 15Th St. ,,5341762,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1044,CPS_Early_Childhood_Portal_scrape.csv, Henry,4250 N. St. Louis ,,5345060,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1045,CPS_Early_Childhood_Portal_scrape.csv, Brennemann,4251 N. Clarendon ,,5345766,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1046,CPS_Early_Childhood_Portal_scrape.csv, Belding,4257 N. Tripp ,,5343590,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1047,CPS_Early_Childhood_Portal_scrape.csv, Smyser,4310 N. Melvina ,,5343711,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1048,CPS_Early_Childhood_Portal_scrape.csv, Hendricks,4316 S. Princeton ,,5351696,,Prekindergarten For All,5-6 hours,,,,,,,,,,,,,,,,,,,,,,, +1049,CPS_Early_Childhood_Portal_scrape.csv, Sumner,4320 W. Fifth Ave ,,5346730,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1050,CPS_Early_Childhood_Portal_scrape.csv, Ravenswood,4332 N. Paulina St. ,,5345525,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1051,CPS_Early_Childhood_Portal_scrape.csv, Hearst,4340 S. Lamon ,,5352376,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1052,CPS_Early_Childhood_Portal_scrape.csv, Hefferan,4409 W. Wilcox St ,,5346192,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1053,CPS_Early_Childhood_Portal_scrape.csv, North River,4416 N. Troy ,,5533658,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1054,CPS_Early_Childhood_Portal_scrape.csv, Stockton Br.,4425 N. Magnolia Ave ,,5342510,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1055,CPS_Early_Childhood_Portal_scrape.csv, Woodson South,4444 S. Evans Ave ,,5351280,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1056,CPS_Early_Childhood_Portal_scrape.csv, Waters,4540 N. Campbell ,,5345090,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1057,CPS_Early_Childhood_Portal_scrape.csv, Haugan,4540 N. Hamlin ,,5345040,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1058,CPS_Early_Childhood_Portal_scrape.csv, Seward,4600 S. Hermitage ,,5354890,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1059,CPS_Early_Childhood_Portal_scrape.csv, Lara,4619 S. Wolcott ,,5354389,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1060,CPS_Early_Childhood_Portal_scrape.csv, Prussing,4650 N. Menard ,,5343460,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1061,CPS_Early_Childhood_Portal_scrape.csv, McPherson,4728 N. Wolcott Ave ,,5344625,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1062,CPS_Early_Childhood_Portal_scrape.csv, Hamline,4747 S. Bishop ,,5354565,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1063,CPS_Early_Childhood_Portal_scrape.csv, Chavez,4747 S. Marshfield ,,5354600,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1064,CPS_Early_Childhood_Portal_scrape.csv, Hedges,4747 S. Winchester ,,5357360,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1065,CPS_Early_Childhood_Portal_scrape.csv, Edwards,4815 S. Karlov ,,5354875,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1066,CPS_Early_Childhood_Portal_scrape.csv, Fleming Br.,4918 W. 64Th St. ,,5352405,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1067,CPS_Early_Childhood_Portal_scrape.csv, Volta,4950 N. Avers ,,5345080,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1068,CPS_Early_Childhood_Portal_scrape.csv, Daley,5024 S. Wolcott ,,5359091,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1069,CPS_Early_Childhood_Portal_scrape.csv, Beaubien,5025 N. Laramie ,,5343500,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1070,CPS_Early_Childhood_Portal_scrape.csv, Palmer,5051 N. Kenneth ,,5343704,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1071,CPS_Early_Childhood_Portal_scrape.csv, Trumbull,5200 N. Ashland ,,5342430,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1072,CPS_Early_Childhood_Portal_scrape.csv, Leland,5221 W. Congress ,,5346340,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1073,CPS_Early_Childhood_Portal_scrape.csv, Otis,525 N. Armour St. ,,5347665,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1074,CPS_Early_Childhood_Portal_scrape.csv, Nightingale,5250 S. Rockwell ,,5359270,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1075,CPS_Early_Childhood_Portal_scrape.csv, Libby,5300 S. Loomis ,,5359050,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1076,CPS_Early_Childhood_Portal_scrape.csv, Portage Park,5330 W. Berteau ,,5343576,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1077,CPS_Early_Childhood_Portal_scrape.csv, Brown,54 N. Hermitage ,,5347250,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1078,CPS_Early_Childhood_Portal_scrape.csv, Hanson Park,5411 W. Fullerton ,,5343100,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1079,CPS_Early_Childhood_Portal_scrape.csv, Farnsworth,5414 N. Linder ,,5343535,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1080,CPS_Early_Childhood_Portal_scrape.csv, Oriole Park,5424 N. Oketo ,,5341201,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1081,CPS_Early_Childhood_Portal_scrape.csv, Talman,5450 S. Talman ,,5357850,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1082,CPS_Early_Childhood_Portal_scrape.csv, Emmet,5500 W. Madison ,,5346050,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1083,CPS_Early_Childhood_Portal_scrape.csv, Peterson,5510 N. Christiana ,,5345070,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1084,CPS_Early_Childhood_Portal_scrape.csv, Carson,5516 S. Maplewood ,,5359222,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1085,CPS_Early_Childhood_Portal_scrape.csv, Hitch,5625 N. Mcvicker ,,5341189,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1086,CPS_Early_Childhood_Portal_scrape.csv, Kinzie,5625 S. Mobile ,,5352425,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1087,CPS_Early_Childhood_Portal_scrape.csv, Ray,5631 S Kimbark ,,5350970,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1088,CPS_Early_Childhood_Portal_scrape.csv, Henderson,5650 S. Wolcott ,,5359080,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1089,CPS_Early_Childhood_Portal_scrape.csv, Carter,5740 S. Michigan Ave. ,,5350860,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1090,CPS_Early_Childhood_Portal_scrape.csv, Norwood Park,5900 N. Nina ,,5341198,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1091,CPS_Early_Childhood_Portal_scrape.csv, Swift,5900 N. Winthrop ,,5342695,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1092,CPS_Early_Childhood_Portal_scrape.csv, Copernicus,6010 S. Throop ,,5359180,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1093,CPS_Early_Childhood_Portal_scrape.csv, Morrill,6011 S. Rockwell ,,5359288,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1094,CPS_Early_Childhood_Portal_scrape.csv, Belmont-Cragin-Socrates,6041 W. Diversey ,,5343318,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1095,CPS_Early_Childhood_Portal_scrape.csv, Dore,6108 S. Natoma Ave. ,,5352080,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1096,CPS_Early_Childhood_Portal_scrape.csv, Hale,6140 S. Melvina ,,5352265,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1097,CPS_Early_Childhood_Portal_scrape.csv, Solomon,6206 N. Hamlin ,,5345226,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1098,CPS_Early_Childhood_Portal_scrape.csv, Woods,6206 S. Racine ,,5359250,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1099,CPS_Early_Childhood_Portal_scrape.csv, Edison Park,6220 N. Olcott ,,5341209,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1100,CPS_Early_Childhood_Portal_scrape.csv, Lovett,6333 W. Bloomingdale ,,5343130,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1101,CPS_Early_Childhood_Portal_scrape.csv, Wadsworth,6420 S. University ,,5350730,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1102,CPS_Early_Childhood_Portal_scrape.csv, Beard,6445 W. Strong ,,5341230,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1103,CPS_Early_Childhood_Portal_scrape.csv, Lee,6448 S. Tripp ,,5352255,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1104,CPS_Early_Childhood_Portal_scrape.csv, Ryerson,646 N. Lawndale ,,5346700,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1105,CPS_Early_Childhood_Portal_scrape.csv, Pirie,650 E. 85Th St ,,5353435,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1106,CPS_Early_Childhood_Portal_scrape.csv, Burnside,650 E. 91st Pl. ,,5353300,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1107,CPS_Early_Childhood_Portal_scrape.csv," Till, Emmet",6543 S. Champlain ,,5350570,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1108,CPS_Early_Childhood_Portal_scrape.csv, Marquette,6550 S. Richmond ,,5359260,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1109,CPS_Early_Childhood_Portal_scrape.csv, Dumas,6615 S. Kenwood Ave ,,5350802,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1110,CPS_Early_Childhood_Portal_scrape.csv, Onahan,6634 W. Raven St. ,,5341180,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1111,CPS_Early_Childhood_Portal_scrape.csv, Banneker,6656 S. Normal Blvd. ,,5353020,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1112,CPS_Early_Childhood_Portal_scrape.csv, Kilmer,6700 N. Greenview ,,5342115,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1113,CPS_Early_Childhood_Portal_scrape.csv, Boone,6710 N. Washtenaw ,,5342160,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1114,CPS_Early_Childhood_Portal_scrape.csv, Brownell,6741 S. Michigan ,,5353030,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1115,CPS_Early_Childhood_Portal_scrape.csv, Parkside,6938 S. East End Av. ,,5350940,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1116,CPS_Early_Childhood_Portal_scrape.csv, Wentworth,6950 S. Sangamon ,,5353394,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1117,CPS_Early_Childhood_Portal_scrape.csv, Park Manor,7037 S. Rhodes ,,5353070,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1118,CPS_Early_Childhood_Portal_scrape.csv, Howe,720 N. Lorel ,,5346060,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1119,CPS_Early_Childhood_Portal_scrape.csv, Randolph,7316 S. Hoyne ,,5359015,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1120,CPS_Early_Childhood_Portal_scrape.csv, Rogers,7345 N. Washtenaw ,,5342125,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1121,CPS_Early_Childhood_Portal_scrape.csv, Ebinger,7350 W Pratt ,,5341070,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1122,CPS_Early_Childhood_Portal_scrape.csv, Bouchet,7355 S. Jeffery ,,5350501,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1123,CPS_Early_Childhood_Portal_scrape.csv, King,740 S. Campbell Ave ,,5347898,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1124,CPS_Early_Childhood_Portal_scrape.csv, Smith,744 E. 103rd St. ,,5355689,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1125,CPS_Early_Childhood_Portal_scrape.csv, Irving,749 S. Oakley Blvd ,,5347295,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1126,CPS_Early_Childhood_Portal_scrape.csv, Stock,7507 W. Birchwood ,,5341215,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1127,CPS_Early_Childhood_Portal_scrape.csv, Kellman,751 S. Sacramento ,,5346602,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1128,CPS_Early_Childhood_Portal_scrape.csv, Harvard,7525 S. Harvard ,,5353045,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1129,CPS_Early_Childhood_Portal_scrape.csv, Oglesby,7646 S. Green ,,5353060,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1130,CPS_Early_Childhood_Portal_scrape.csv, Stevenson,8010 S. Kostner ,,5352280,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1131,CPS_Early_Childhood_Portal_scrape.csv, Avalon Park,8045 S. Kenwood ,,5356615,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1132,CPS_Early_Childhood_Portal_scrape.csv, Mann,8050 S. Chappel ,,5356640,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1133,CPS_Early_Childhood_Portal_scrape.csv, Lenart,8101 S. LaSalle St. ,,5350040,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1134,CPS_Early_Childhood_Portal_scrape.csv, Cook,8150 S. Bishop ,,5353315,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1135,CPS_Early_Childhood_Portal_scrape.csv, South Chicago,8255 S. Houston Ave. ,,5357930,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1136,CPS_Early_Childhood_Portal_scrape.csv, Ashburn School,8300 S. St Louis Ave. ,,5357860,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1137,CPS_Early_Childhood_Portal_scrape.csv, Dixon,8306 S. St. Lawrence ,,5353834,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1138,CPS_Early_Childhood_Portal_scrape.csv, Greeley,832 W. Sheridan ,,5345800,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1139,CPS_Early_Childhood_Portal_scrape.csv, New Sullivan,8331 S. Mackinaw ,,5356585,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1140,CPS_Early_Childhood_Portal_scrape.csv, Coles,8441 S. Yates ,,5356550,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1141,CPS_Early_Childhood_Portal_scrape.csv, Inter-American Magnet,851 W. Waveland ,,5345490,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1142,CPS_Early_Childhood_Portal_scrape.csv, Foster Park,8530 S. Wood St. ,,5352725,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1143,CPS_Early_Childhood_Portal_scrape.csv, Caldwell,8546 S. Cregier ,,5356300,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1144,CPS_Early_Childhood_Portal_scrape.csv, Dirksen,8601 W. Foster ,,5341090,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1145,CPS_Early_Childhood_Portal_scrape.csv," Thorp, J.N.",8914 S. Buffalo ,,5356250,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1146,CPS_Early_Childhood_Portal_scrape.csv, Mireles,9000 S. Exchange ,,5356360,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1147,CPS_Early_Childhood_Portal_scrape.csv, Fort Dearborn,9025 S. Throop ,,5352680,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1148,CPS_Early_Childhood_Portal_scrape.csv, Davis Dev. Center,9101 S. Jeffery ,,5356209,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1149,CPS_Early_Childhood_Portal_scrape.csv, Armour,911 West 32nd Place ,,5357297,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1150,CPS_Early_Childhood_Portal_scrape.csv," Washington, H.",9130 S. University ,,5356225,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1151,CPS_Early_Childhood_Portal_scrape.csv," Jackson, M.",917 W. 88Th St. ,,5353341,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1152,CPS_Early_Childhood_Portal_scrape.csv, Warren,9239 S. Jeffery ,,5356625,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1153,CPS_Early_Childhood_Portal_scrape.csv, Gillespie,9301 S. State St. ,,5355065,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1154,CPS_Early_Childhood_Portal_scrape.csv, Kozminski Com Acad,936 E. 54Th ,,5350980,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1155,CPS_Early_Childhood_Portal_scrape.csv, Wacker,9746 S. Morgan ,,5352821,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1156,CPS_Early_Childhood_Portal_scrape.csv, Schmid,9755 S. Greenwood ,,5356235,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1157,CPS_Early_Childhood_Portal_scrape.csv, Marsh,9810 S. Exchange ,,5356430,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1158,CPS_Early_Childhood_Portal_scrape.csv, Evers,9811 S. Lowe ,,5352565,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1159,CPS_Early_Childhood_Portal_scrape.csv, Taylor,9912 S. Avenue ,,5356240,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1160,CPS_Early_Childhood_Portal_scrape.csv, Lawrence,9928 S. Crandon ,,5356320,,Prekindergarten For All,3-4 hours,,,,,,,,,,,,,,,,,,,,,,, +1161,CPS_Early_Childhood_Portal_scrape.csv, Easter Seals Society of Metropolitan Chicago - Gilchrist-Marchman,1001 W Roosevelt Rd ,,9395115,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1162,CPS_Early_Childhood_Portal_scrape.csv, Easter Seals Society of Metropolitan Chicago - Gilchrist-Marchman,1001 W Roosevelt Rd ,,9395115,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1163,CPS_Early_Childhood_Portal_scrape.csv, Marcy Newberry Association - Newberry Center,1073 W Maxwell St ,,8297555,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1164,CPS_Early_Childhood_Portal_scrape.csv, South East Asia Center - South East Asia Center(Foster),1112 W Foster Ave ,,,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1165,CPS_Early_Childhood_Portal_scrape.csv, South East Asia Center - South-East Asia Center(Ainslie),1124 W Ainslie St ,,9897433,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1166,CPS_Early_Childhood_Portal_scrape.csv, Marcy Newberry Association - FOSCO ABLA Center,1312 S Racine Ave ,,7466024,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1167,CPS_Early_Childhood_Portal_scrape.csv, Marcy Newberry Association - FOSCO ABLA Center,1312 S Racine Ave ,,7466024,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1168,CPS_Early_Childhood_Portal_scrape.csv, Erie Neighborhood House - Erie House,1347 W Erie St ,,6663460,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1169,CPS_Early_Childhood_Portal_scrape.csv, Karen Cruz Children's Center - Karen Cruz Children's Center,1507 W Sunnyside Ave ,,7281777,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1170,CPS_Early_Childhood_Portal_scrape.csv, Better Boys Foundation - Better Boys Fndn Family Service,1512 S Pulaski St ,,2779582,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1171,CPS_Early_Childhood_Portal_scrape.csv, Marcy Newberry Association - Marcy Center,1539 S Springfield Ave ,,7612300,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1172,CPS_Early_Childhood_Portal_scrape.csv, Marcy Newberry Association - Marcy Center,1539 S Springfield Ave ,,7612300,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1173,CPS_Early_Childhood_Portal_scrape.csv, Chicago Commons Association - Paulo Freire,1653 W 43rd St ,,8262669,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1174,CPS_Early_Childhood_Portal_scrape.csv, Erie Neighborhood House - Erie Community Center,1701 W Superior St ,,5635800,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1175,CPS_Early_Childhood_Portal_scrape.csv, Chicago Commons Association - Guadalupano Family Center,1814 S Paulina St ,,6663883,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1176,CPS_Early_Childhood_Portal_scrape.csv, Chicago Commons Association - Guadalupano Family Center,1814 S Paulina St ,,6663883,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1177,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - McCormick Tribune- YMCA,1834 N Lawndale Ave ,,2352525,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1178,CPS_Early_Childhood_Portal_scrape.csv, Gads Hill Center - Gads Hill Center/Cullerton,1919 W Cullerton St ,,2260963,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1179,CPS_Early_Childhood_Portal_scrape.csv, North Avenue Day Nursery - North Avenue Day Nursery,2001 W Pierce Ave ,,3424499,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1180,CPS_Early_Childhood_Portal_scrape.csv, Chinese American Service League - Chinese American Service League,2141 S Tan Ct ,,7910418,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1181,CPS_Early_Childhood_Portal_scrape.csv, Chinese American Service League - Chinese American Service League,2141 S Tan Ct ,,7910418,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1182,CPS_Early_Childhood_Portal_scrape.csv, El Hogar del Nino/Cuidar - El Hogar del Nino/Cuidar- California,2325 S California Ave ,,5231629,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1183,CPS_Early_Childhood_Portal_scrape.csv, El Hogar del Nino/Cuidar - El Hogar del Nino/Cuidar- California,2325 S California Ave ,,5231629,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1184,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - Our Lady of Tepeyac,2414 S Albany Ave ,,2775888,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1185,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - Our Lady of Tepeyac,2414 S Albany Ave ,,2775888,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1186,CPS_Early_Childhood_Portal_scrape.csv, Christopher House - Christopher House - Greenview,2507 N Greenview Ave ,,4721083,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1187,CPS_Early_Childhood_Portal_scrape.csv, Erie Neighborhood House - Charter School - Cortez,2510 W Cortez St ,,4867161,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1188,CPS_Early_Childhood_Portal_scrape.csv, Christopher House - Christopher House - Logan Square,2610 N Francisco Ave ,,2354073,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1189,CPS_Early_Childhood_Portal_scrape.csv, Hull House Association - Hull House School Age,2625 N Orchard St ,,5299730,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1190,CPS_Early_Childhood_Portal_scrape.csv, Gads Hill Center - Sinai Community/Ogden,2653 W Ogden Ave ,,5211196,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1191,CPS_Early_Childhood_Portal_scrape.csv, Gads Hill Center - Sinai Community/Ogden,2653 W Ogden Ave ,,5211196,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1192,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - Rauner,2700 S Western Ave ,,8473115,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1193,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - Rauner,2700 S Western Ave ,,8473115,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1194,CPS_Early_Childhood_Portal_scrape.csv, Boys and Girls Clubs of Chicago - Little Village,2801 S Ridgeway Ave ,,7626100,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1195,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - South Chicago YMCA,3039 E 91st St ,,7219100,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1196,CPS_Early_Childhood_Portal_scrape.csv, Christopher House - Christoper House - Logan Square,3255 W Altgeld St ,,2354073,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1197,CPS_Early_Childhood_Portal_scrape.csv, Albany Park Community Center - Albany Park Day Care - Ainslie,3401 W Ainslie St ,,5395907,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1198,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - North Lawndale YMCA,3449 W Arthington St ,,6380773,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1199,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - North Lawndale YMCA,3449 W Arthington St ,,6380773,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1200,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - Wabash YMCA,3763 S Wabash Ave ,,2850020,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1201,CPS_Early_Childhood_Portal_scrape.csv, Abraham Lincoln Centre - Abraham Lincoln Center,3858 S Cottage Grove Ave ,,3736600,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1202,CPS_Early_Childhood_Portal_scrape.csv, Grant Creative Learning Center - Grant Day Care Center,4025 S Drexel St ,,2858440,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1203,CPS_Early_Childhood_Portal_scrape.csv, Korean American Community Services - Korean American Community Services,4300 N California Ave ,,5838281,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1204,CPS_Early_Childhood_Portal_scrape.csv, Centers For New Horizons - Effie Ellis,4301 S Cottage Grove Ave ,,,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1205,CPS_Early_Childhood_Portal_scrape.csv, Hull House Association - LeClaire Hearst / Hull House Association,4340 S Lamon Ave ,,7671516,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1206,CPS_Early_Childhood_Portal_scrape.csv, Hull House Association - Uptown West / Hull House,4520 N Beacon St ,,5613500,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1207,CPS_Early_Childhood_Portal_scrape.csv, Firman Community Services - Firman House II SA (21st Century CLC),4644 S Dearborn St ,,3733400,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1208,CPS_Early_Childhood_Portal_scrape.csv, Christopher House - Christopher House - Uptown,4701 N Winthrop Ave ,,7694540,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1209,CPS_Early_Childhood_Portal_scrape.csv, Gads Hill Center - Cesar Chavez Element,4747 S Marshfield St ,,,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1210,CPS_Early_Childhood_Portal_scrape.csv, Hull House Association - Lincoln Square / Hull House,4754 N Leavitt St ,,8788651,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1211,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - St. Joseph,4800 S Paulina St ,,9272524,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1212,CPS_Early_Childhood_Portal_scrape.csv, Boys and Girls Clubs of Chicago - McCormick,4835 N Sheridan Rd ,,9890222,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1213,CPS_Early_Childhood_Portal_scrape.csv, Firman Community Services - Firman House East,4910 S Dr. Martin Luther King Dr ,,3732083,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1214,CPS_Early_Childhood_Portal_scrape.csv, Appeal for Charities and Goodwill - Appeal for Charities,50 W 71st St ,,6515400,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1215,CPS_Early_Childhood_Portal_scrape.csv, Hull House Association - Parkway Community Center / Hull House,500 E 67th St ,,4931306,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1216,CPS_Early_Childhood_Portal_scrape.csv," Douglass-Tubman Youth Ministries,Inc. - Douglass-Tubman Child Development Center",5010 W Chicago Ave ,,6266581,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1217,CPS_Early_Childhood_Portal_scrape.csv, South East Asia Center - South-East Asia Center(Broadway),5120 N Broadway Ave ,,,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1218,CPS_Early_Childhood_Portal_scrape.csv, Onward Neighborhood House - Belmont-Cragin,5423 W Diversey ,,,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1219,CPS_Early_Childhood_Portal_scrape.csv, Onward Neighborhood House - Onward Neighborhood House,600 N Leavitt St ,,6666726,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1220,CPS_Early_Childhood_Portal_scrape.csv," Heartland Alliance for Human Needs & Rights - Heartland Human Care Services, Inc",615 W Wellington Ave ,,,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1221,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - South Side YMCA,6330 S Stony Island Ave ,,9470700,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1222,CPS_Early_Childhood_Portal_scrape.csv, Woodlawn A.M.E. Church - Woodlawn A.M.E.,6456 S Evans Ave ,,6671402,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1223,CPS_Early_Childhood_Portal_scrape.csv, Chicago Commons Association - Nia Family Center,744 N Monticello Ave ,,8266971,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1224,CPS_Early_Childhood_Portal_scrape.csv, Chicago Youth Centers - Rebecca K. Crown / CYC,7601 S Phillips Ave ,,6481550,,School Age,PART DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1225,CPS_Early_Childhood_Portal_scrape.csv, Salvation Army - Temple / Salvation Army,1 N Ogden Ave ,,2262649,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1226,CPS_Early_Childhood_Portal_scrape.csv, Salvation Army - Temple / Salvation Army,1 N Ogden Ave ,,2262649,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1227,CPS_Early_Childhood_Portal_scrape.csv, National Louis University - Dr. Effie O. Ellis Training Center,10 S Kedzie Ave ,,5339011,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1228,CPS_Early_Childhood_Portal_scrape.csv, National Louis University - Dr. Effie O. Ellis Training Center,10 S Kedzie Ave ,,5339011,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1229,CPS_Early_Childhood_Portal_scrape.csv, Easter Seals Society of Metropolitan Chicago - Gilchrist-Marchman,1001 W Roosevelt Rd ,,9395115,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1230,CPS_Early_Childhood_Portal_scrape.csv, Easter Seals Society of Metropolitan Chicago - Gilchrist-Marchman,1001 W Roosevelt Rd ,,9395115,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1231,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - Cordia Marian,1100 S May St ,,6663787,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1232,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - Cordia Marian,1100 S May St ,,6663787,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1233,CPS_Early_Childhood_Portal_scrape.csv, Bethel New Life - Molade Child Development Center,1120 N Lamon Ave ,,6267760,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1234,CPS_Early_Childhood_Portal_scrape.csv, South East Asia Center - South-East Asia Center(Ainslie),1124 W Ainslie St ,,9897433,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1235,CPS_Early_Childhood_Portal_scrape.csv, Ada S. McKinley Community Services - McKinley - Roseland,11410 S Edbrooke Ave ,,4681918,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1236,CPS_Early_Childhood_Portal_scrape.csv, Ada S. McKinley Community Services - McKinley - Roseland,11410 S Edbrooke Ave ,,4681918,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1237,CPS_Early_Childhood_Portal_scrape.csv, Marcy Newberry Association - FOSCO ABLA Center,1312 S Racine Ave ,,7466024,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1238,CPS_Early_Childhood_Portal_scrape.csv, Marcy Newberry Association - FOSCO ABLA Center,1312 S Racine Ave ,,7466024,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1239,CPS_Early_Childhood_Portal_scrape.csv, Abraham Lincoln Centre - Hope Presbyterian Church,1354 W 61st St ,,4715100,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1240,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - Our Lady of Lourdes,1449 S Keeler Ave ,,5213126,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1241,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - Our Lady of Lourdes,1449 S Keeler Ave ,,5213126,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1242,CPS_Early_Childhood_Portal_scrape.csv, Marcy Newberry Association - Marcy Center,1539 S Springfield Ave ,,7612300,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1243,CPS_Early_Childhood_Portal_scrape.csv, Marcy Newberry Association - Marcy Center,1539 S Springfield Ave ,,7612300,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1244,CPS_Early_Childhood_Portal_scrape.csv, Chicago Commons Association - Taylor Center for New Experiences,1633 N Hamlin Ave ,,2278551,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1245,CPS_Early_Childhood_Portal_scrape.csv, Chicago Commons Association - Paulo Freire,1653 W 43rd St ,,8262669,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1246,CPS_Early_Childhood_Portal_scrape.csv, Erie Neighborhood House - Erie Community Center,1701 W Superior St ,,5635800,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1247,CPS_Early_Childhood_Portal_scrape.csv, Chicago Commons Association - Guadalupano Family Center,1814 S Paulina St ,,6663883,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1248,CPS_Early_Childhood_Portal_scrape.csv, Chicago Commons Association - Guadalupano Family Center,1814 S Paulina St ,,6663883,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1249,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - McCormick Tribune- YMCA,1834 N Lawndale Ave ,,2352525,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1250,CPS_Early_Childhood_Portal_scrape.csv, North Avenue Day Nursery - North Avenue Day Nursery,2001 W Pierce Ave ,,3424499,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1251,CPS_Early_Childhood_Portal_scrape.csv, Chinese American Service League - Chinese American Service League,2141 S Tan Ct ,,7910418,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1252,CPS_Early_Childhood_Portal_scrape.csv, Chinese American Service League - Chinese American Service League,2141 S Tan Ct ,,7910418,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1253,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - High Ridge YMCA,2424 W Touhy Ave ,,2628300,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1254,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Carlos Cantu,2434 S Kildare Ave ,,,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1255,CPS_Early_Childhood_Portal_scrape.csv, El Valor - Carlos Cantu,2434 S Kildare Ave ,,,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1256,CPS_Early_Childhood_Portal_scrape.csv, Christopher House - Christopher House - Greenview,2507 N Greenview Ave ,,4721083,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1257,CPS_Early_Childhood_Portal_scrape.csv, St. Augustine College - St. Augustine - Nayarit,2610 W 25th Pl ,,8783641,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1258,CPS_Early_Childhood_Portal_scrape.csv, St. Augustine College - St. Augustine - Nayarit,2610 W 25th Pl ,,8783641,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1259,CPS_Early_Childhood_Portal_scrape.csv, Gads Hill Center - Sinai Community/Ogden,2653 W Ogden Ave ,,5211196,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1260,CPS_Early_Childhood_Portal_scrape.csv, Gads Hill Center - Sinai Community/Ogden,2653 W Ogden Ave ,,5211196,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1261,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - Rauner,2700 S Western Ave ,,8473115,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1262,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - Rauner,2700 S Western Ave ,,8473115,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1263,CPS_Early_Childhood_Portal_scrape.csv, Mary Crane League - Mary Crane - West,2820 N Leavitt St ,,3485528,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1264,CPS_Early_Childhood_Portal_scrape.csv, Mary Crane League - Mary Crane - North,2905 N Leavitt St ,,9753322,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1265,CPS_Early_Childhood_Portal_scrape.csv, Mary Crane League - Mary Crane - East,2974 N Clybourn Ave ,,3485528,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1266,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - South Chicago YMCA,3039 E 91st St ,,7219100,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1267,CPS_Early_Childhood_Portal_scrape.csv, Metropolitan Family Services - Midway Children's Center (Chicago Lawn),3215 W 63rd St ,,8842350,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1268,CPS_Early_Childhood_Portal_scrape.csv, Albany Park Community Center - Albany Park Day Care - Ainslie,3401 W Ainslie St ,,5395907,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1269,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - North Lawndale YMCA,3449 W Arthington St ,,6380773,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1270,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - North Lawndale YMCA,3449 W Arthington St ,,6380773,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1271,CPS_Early_Childhood_Portal_scrape.csv, Centers For New Horizons - Ida B. Wells Learning Center,3601 S Rhodes St ,,3733640,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1272,CPS_Early_Childhood_Portal_scrape.csv, Firman Community Services - Firman House West,37 W 47th St ,,3733400,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1273,CPS_Early_Childhood_Portal_scrape.csv, Ada S. McKinley Community Services - McKinley - St. Thomas,3801 S Wabash Ave ,,2850617,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1274,CPS_Early_Childhood_Portal_scrape.csv, Centers For New Horizons - Edison L. Hoard Learning Center,3901 S State St ,,5362187,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1275,CPS_Early_Childhood_Portal_scrape.csv, Salvation Army - New Hope / Salvation Army,4255 W Division St ,,7224908,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1276,CPS_Early_Childhood_Portal_scrape.csv, Korean American Community Services - Korean American Community Services,4300 N California Ave ,,5838281,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1277,CPS_Early_Childhood_Portal_scrape.csv, Centers For New Horizons - Effie Ellis,4301 S Cottage Grove Ave ,,,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1278,CPS_Early_Childhood_Portal_scrape.csv, Ada S. McKinley Community Services - Maggie Drummond Day Care,4301 S Wabash Ave ,,3738200,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1279,CPS_Early_Childhood_Portal_scrape.csv, Abraham Lincoln Centre - Lincoln - King,4314 S Cottage Grove Ave ,,7472310,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1280,CPS_Early_Childhood_Portal_scrape.csv, Hull House Association - Leclaire-Ryder Day Care / Hull House,4410 S Laporte Ave ,,7675170,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1281,CPS_Early_Childhood_Portal_scrape.csv, Hull House Association - Uptown West / Hull House,4520 N Beacon St ,,5613500,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1282,CPS_Early_Childhood_Portal_scrape.csv, Home of Life Community Dev. Corp. - Home of Life Just For You,4647 W Washington Blvd ,,6268655,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1283,CPS_Early_Childhood_Portal_scrape.csv, Home of Life Community Dev. Corp. - Home of Life Community Development,4650 W Madison St ,,6268655,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1284,CPS_Early_Childhood_Portal_scrape.csv, Christopher House - Christopher House - Uptown,4701 N Winthrop Ave ,,7694540,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1285,CPS_Early_Childhood_Portal_scrape.csv, Hull House Association - Lincoln Square / Hull House,4754 N Leavitt St ,,8788651,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1286,CPS_Early_Childhood_Portal_scrape.csv, Hull House Association - Parkway Community Center / Hull House,500 E 67th St ,,4931306,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1287,CPS_Early_Childhood_Portal_scrape.csv, Salvation Army - Columbus Park / Salvation Army,500 S Central Ave ,,9214162,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1288,CPS_Early_Childhood_Portal_scrape.csv, Trinity United Church of Christ - Trinity United,532 W 95th St ,,4883511,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1289,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - Grace Mission,5332 S Western Ave ,,4761990,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1290,CPS_Early_Childhood_Portal_scrape.csv, Firman Community Services - Firman House South,5401 S Wentworth Ave ,,4513400,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1291,CPS_Early_Childhood_Portal_scrape.csv, Onward Neighborhood House - Belmont-Cragin,5423 W Diversey ,,,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1292,CPS_Early_Childhood_Portal_scrape.csv," Trinity Resources Unlimited, Inc. - Hope for Youth",5900 W Iowa St ,,6260323,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1293,CPS_Early_Childhood_Portal_scrape.csv, Onward Neighborhood House - Onward Neighborhood House,600 N Leavitt St ,,6666726,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1294,CPS_Early_Childhood_Portal_scrape.csv," Heartland Alliance for Human Needs & Rights - Heartland Human Care Services, Inc",615 W Wellington Ave ,,,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1295,CPS_Early_Childhood_Portal_scrape.csv, Centers For New Horizons - Washington Park South Learning Center,6225 S Wabash Ave ,,6672065,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1296,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - South Side YMCA,6330 S Stony Island Ave ,,9470700,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1297,CPS_Early_Childhood_Portal_scrape.csv, Board Trustees-City Colleges of Chicago - Kennedy-King College,6800 S Wentworth Ave ,,5533475,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1298,CPS_Early_Childhood_Portal_scrape.csv, Trinity United Church of Christ - Dr. Denton J. Brooks Center,6921 S Stony Island Ave ,,9552818,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1299,CPS_Early_Childhood_Portal_scrape.csv, YMCA of Metropolitan Chicago - Garfield Head Start/Child Developmental Center- YMCA,7 N Homan Ave ,,2653900,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1300,CPS_Early_Childhood_Portal_scrape.csv, Christopher House - Christopher House - Rogers Park,7059 N Greenview Ave ,,2745477,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1301,CPS_Early_Childhood_Portal_scrape.csv, Abraham Lincoln Centre - Donoghue,707 E 37th St ,,,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1302,CPS_Early_Childhood_Portal_scrape.csv, Ada S. McKinley Community Services - McKinley - Howard,7222 S Exchange Ave ,,2219711,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1303,CPS_Early_Childhood_Portal_scrape.csv, Chicago Commons Association - Nia Family Center,744 N Monticello Ave ,,8266971,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1304,CPS_Early_Childhood_Portal_scrape.csv, Howard Area Community Center - Howard Area Community Center,7510 N Ashland Ave ,,7647610,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1305,CPS_Early_Childhood_Portal_scrape.csv, Ada S. McKinley Community Services - McKinley - Wright Renaissance,7939 S Western Ave ,,4768805,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1306,CPS_Early_Childhood_Portal_scrape.csv, South Central Community Services - South Central Community Services,8316 S Ellis Ave ,,4830900,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1307,CPS_Early_Childhood_Portal_scrape.csv, Marcy Newberry Association - South Harper Montessori,8358 S Stony Island Ave ,,7340375,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1308,CPS_Early_Childhood_Portal_scrape.csv, Christopher House - Christopher House - Lakeshore,850 W Eastwood Ave ,,2719403,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1309,CPS_Early_Childhood_Portal_scrape.csv, Catholic Charities of the Archdiocese of Chicago - Our Lady of Guadalupe,9129 S Burley Ave ,,9785320,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1310,CPS_Early_Childhood_Portal_scrape.csv, Centers For New Horizons - Altgeld Gardens I,941 E 132nd Pl ,,4683055,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1311,CPS_Early_Childhood_Portal_scrape.csv, Centers For New Horizons - Altgeld Gardens I,941 E 132nd Pl ,,4683055,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1312,CPS_Early_Childhood_Portal_scrape.csv, Chicago State University - Chicago State University,9501 S Dr. Martin Luther King Dr ,,9952400,,State Pre-Kindergarten,HALF DAY/FULL DAY,,,,,,,,,,,,,,,,,,,,,,, +1313,CPS_Early_Childhood_Portal_scrape.csv, Skinner,111 S. Throop ,,5347790,,Tuition Based Preschool,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +1314,CPS_Early_Childhood_Portal_scrape.csv, South Loop,1212 S. Plymouth ,,5348690,,Tuition Based Preschool,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +1315,CPS_Early_Childhood_Portal_scrape.csv, South Loop,1212 S. Plymouth ,,5348690,,Tuition Based Preschool,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +1316,CPS_Early_Childhood_Portal_scrape.csv, Blaine,1420 W. Grace ,,5345750,,Tuition Based Preschool,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +1317,CPS_Early_Childhood_Portal_scrape.csv, Burley,1630 W. Barry ,,5345475,,Tuition Based Preschool,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +1318,CPS_Early_Childhood_Portal_scrape.csv, Hamilton,1650 W. Cornelia ,,5345484,,Tuition Based Preschool,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +1319,CPS_Early_Childhood_Portal_scrape.csv, Alcott,2625 N. Orchard ,,5345460,,Tuition Based Preschool,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +1320,CPS_Early_Childhood_Portal_scrape.csv, Agassiz,2851 N. Seminary ,,5345725,,Tuition Based Preschool,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +1321,CPS_Early_Childhood_Portal_scrape.csv, Nettelhorst,3252 N. Broadway ,,5345810,,Tuition Based Preschool,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +1322,CPS_Early_Childhood_Portal_scrape.csv, Audubon,3500 N. Hoyne ,,5345470,,Tuition Based Preschool,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +1323,CPS_Early_Childhood_Portal_scrape.csv, Disney Magnet II,3815 N. Kedvale ,,5358650,,Tuition Based Preschool,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +1324,CPS_Early_Childhood_Portal_scrape.csv, Disney Magnet,4140 N. Marine Dr. ,,5345840,,Tuition Based Preschool,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +1325,CPS_Early_Childhood_Portal_scrape.csv, Ravenswood,4332 N. Paulina St. ,,5345525,,Tuition Based Preschool,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +1326,CPS_Early_Childhood_Portal_scrape.csv, Waters,4540 N. Campbell ,,5345090,,Tuition Based Preschool,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +1327,CPS_Early_Childhood_Portal_scrape.csv, Ray,5631 S Kimbark ,,5350970,,Tuition Based Preschool,"8-11 Hours, varies by facility",,,,,,,,,,,,,,,,,,,,,,, +1328,IDHS_child_care_provider_list.csv," Bloomington Day Care Center, Inc.","2708 East Lincoln Street, Bloomington",61704,6615600,"(309) +662-4202",,,8307-7891-7433-008,,,,,,,,,,,,,,,,,,,,,, +1329,IDHS_child_care_provider_list.csv," Carole Robertson Center +for Learning",2020 West Roosevelt Road,60608,2437300,"(312) +243-1087",,,6391-8286-5433-002,,,,,,,,,,,,,,,,,,,,,, +1330,IDHS_child_care_provider_list.csv, Casa Central,1343 North California Avenue,60622,6452368,"(773) +645-1432",,,5672-5795-5433-005,,,,,,,,,,,,,,,,,,,,,, +1331,IDHS_child_care_provider_list.csv," Chicago Urban Day +School",1248 West 69th Street Chicago,60636,4833555,"(773) +483-0150",,,3398-4665-5433-003,,,,,,,,,,,,,,,,,,,,,, +1332,IDHS_child_care_provider_list.csv, ChildServ,8765 West Higgins Road Suite 450,60631,8677308,"(773) +693-0322",,,2935-8342-5433-002,,,,,,,,,,,,,,,,,,,,,, +1333,IDHS_child_care_provider_list.csv," Child Care Center +of Evanston",1840 Asbury Avenue Evanston,60201,8692680,"(847) +869-2687",,,0305-2980-5433-002,,,,,,,,,,,,,,,,,,,,,, +1334,IDHS_child_care_provider_list.csv," Childcare Network +of Evanston","1416 Lake Street, +Evanston",60201,4752661,"(847) +475-2699",,,7767-4532-7633-003,,,,,,,,,,,,,,,,,,,,,, +1335,IDHS_child_care_provider_list.csv," Children's Center +of Tazewell County",210 North Thorncrest Drive Creve Coeur,61610,6996141,"(309) +699-5147",,,1281-8212-7433-003,,,,,,,,,,,,,,,,,,,,,, +1336,IDHS_child_care_provider_list.csv, Children's Home & Aid Society of Illinois,125 South Wacker Drive 14th Floor,60606,4240200,"(312) +424-6200",,,4277-4401-5433-006,,,,,,,,,,,,,,,,,,,,,, +1337,IDHS_child_care_provider_list.csv, Community Coordinated Child Care,"155 North 3rd Street +Suite 300 +DeKalb",60115,7588149,(815) 758-5652,,,3156-6336-5433-009,,,,,,,,,,,,,,,,,,,,,, +1338,IDHS_child_care_provider_list.csv, Community Mennonite,3215 West 162nd Street Markham,60428,3331232,"(708) +333-1248",,,9237-3517-0633-007,,,,,,,,,,,,,,,,,,,,,, +1339,IDHS_child_care_provider_list.csv, East Moline Citizens for Comm. Center,"489-27th Street, East Moline",61244,7555031,"(309) +755-5036",,,2987-4157-5433-004,,,,,,,,,,,,,,,,,,,,,, +1340,IDHS_child_care_provider_list.csv," Educational +Day Care Center",330 West Michigan Avenue Jacksonville,62650,2435720,"(217) +243-5385",,,6813-5632-7433-006,,,,,,,,,,,,,,,,,,,,,, +1341,IDHS_child_care_provider_list.csv, Ezzard Charles,7946 South Ashland,60620,4870227,"(773) +487-0044",,,6525-2857-5433-002,,,,,,,,,,,,,,,,,,,,,, +1342,IDHS_child_care_provider_list.csv," First Step +Day¬¨‚ĆCare Center","1300 Pearl Street +Belvidere", 6100,5446560,"(815) +544-6560",,,6896-1416-5433-006,,,,,,,,,,,,,,,,,,,,,, +1343,IDHS_child_care_provider_list.csv," Geneseo Development +& Growth, Inc.","541 East North Street +P.O. Box 172 +Geneseo",61254,9445024,"(309) +945-4103",,,2596-3557-5433-004,,,,,,,,,,,,,,,,,,,,,, +1344,IDHS_child_care_provider_list.csv," Highland Park Comm. Nursery School +& Day Care Center","1850 Green Bay Road +Highland Park",60035,4323301,"(847) +432-3308",,,2592-0023-5433-000,,,,,,,,,,,,,,,,,,,,,, +1345,IDHS_child_care_provider_list.csv, Human Development Corporation,"142 East 154th Street +Harvey",60426,3394449,"(708) +339-8513",,,1316-0598-5433-003,,,,,,,,,,,,,,,,,,,,,, +1346,IDHS_child_care_provider_list.csv," Improved Child Care +Mgt. Services, Inc.","520 North Halsted Street Suite 412 +Chicago",60642,7370231,"(773) +737-7009",,,7483-8223-6433-005,,,,,,,,,,,,,,,,,,,,,, +1347,IDHS_child_care_provider_list.csv," Just Kids Child Care, Inc.","1800 West¬¨‚Ć1st Street +¬¨‚ĆP.O. Box 410 +Mlian",61264,7876303,"(309) +787-6375",,,1640-4249-5433-009,,,,,,,,,,,,,,,,,,,,,, +1348,IDHS_child_care_provider_list.csv, Kiddie Kollege of Fairfield,"2226 Mt. Vernon Road +P.O. Box 362 +Fairfield",62837,8477102,"(618) +847-7212",,,3125-2563-7433-009,,,,,,,,,,,,,,,,,,,,,, +1349,IDHS_child_care_provider_list.csv, Marillac Social Center,212 South Francisco Street,60612,5843232,"(773) +722-1469",,,0350-8270-5433-000,,,,,,,,,,,,,,,,,,,,,, +1350,IDHS_child_care_provider_list.csv, Mary Crane League,2974 North Clybourn Avenue,60618,9388157,"(773) +325-2530",,,9356-4723-5433-005,,,,,,,,,,,,,,,,,,,,,, +1351,IDHS_child_care_provider_list.csv, McDonough County Council for Child Development DBA Wee Care Macomb,425 North Prairie Avenue Macomb,61455,8335267,"(309) +837-5751",,,3316-0591-7433-001,,,,,,,,,,,,,,,,,,,,,, +1352,IDHS_child_care_provider_list.csv," Northwest Suburban +Day Care Center","1755 Howard Street +DesPlaines",60018,2995103,"(847) +299-1070",,,4955-5565-5433-000,,,,,,,,,,,,,,,,,,,,,, +1353,IDHS_child_care_provider_list.csv, Northwestern University Settlement,1400 West Augusta Blvd.,60642,2787471,"(773) +278-7536",,,5701-4911-5433-005,,,,,,,,,,,,,,,,,,,,,, +1354,IDHS_child_care_provider_list.csv," Oak Park/River Forest +Day Nursery","1139 Randolph Steet +Oak Park",60302,3838211,"(708) +383-0692",,,9300-0813-5433-003,,,,,,,,,,,,,,,,,,,,,, +1355,IDHS_child_care_provider_list.csv, One Hope United,"P.O. Box 1128 +Lake Villa",60046,2456559,"(847) +245-6715",,,8581-4703-5433-004,,,,,,,,,,,,,,,,,,,,,, +1356,IDHS_child_care_provider_list.csv," Ounce of Prevention Fund, Inc.","33 West Monroe Street, Suite 2400",60603,9223863,"(312) +922-3337",,,3985-7887-5433-003,,,,,,,,,,,,,,,,,,,,,, +1357,IDHS_child_care_provider_list.csv," Paxton Day Care +Center",200 North Elm Street Paxton,60957,3793865,"(217) +379-6205",,,7766-4691-7433-009,,,,,,,,,,,,,,,,,,,,,, +1358,IDHS_child_care_provider_list.csv, Pillars,"333 North LaGrange¬¨‚Ć +LaGrange Park",60957,9953500,,,,7064-6764-9133-063,,,,,,,,,,,,,,,,,,,,,, +1359,IDHS_child_care_provider_list.csv, Rockford Day Nursery,2323 South 6th Street Rockford,61104,9620834,"(815) +962-0838",,,8253-6253-5433-002,,,,,,,,,,,,,,,,,,,,,, +1360,IDHS_child_care_provider_list.csv," Skip-A-Long +Daycare Center, Inc.","4800-60th Street +Moline",61265,7648110,"(309) +764-8281",,,7108-7395-5433-001,,,,,,,,,,,,,,,,,,,,,, +1361,IDHS_child_care_provider_list.csv," St. Vincent DePaul +Center -Halsted",2145 North Halsted Street,60614,9436776,"(312) +573-0646",,,7611-0607-4433-007,,,,,,,,,,,,,,,,,,,,,, +1362,IDHS_child_care_provider_list.csv," Streator Child +Development Center",405 Chicago Street Streator,61364,6724350,"(815) +672-4784",,,0858-7317-0633-006,,,,,,,,,,,,,,,,,,,,,, +1363,IDHS_child_care_provider_list.csv," Thornton Township +High School District +205 - Infant Care",465 East 170th Street South Holland,60473,2254118,"(708) +225-4088",,,1946-2627-6433-001,,,,,,,,,,,,,,,,,,,,,, +1364,IDHS_child_care_provider_list.csv," Tri-Con Child Care Center, Inc.","425 Laurel Avenue +Highland Park",60035,4331450,"(847) +433-1749",,,9795-2875-5433-009,,,,,,,,,,,,,,,,,,,,,, +1365,IDHS_child_care_provider_list.csv, YWCA of Elgin,"220 East Chicago Street +Elgin",60120,7427930,"(847) +742-8217",,,3498-6732-5433-003,,,,,,,,,,,,,,,,,,,,,, +1366,IDHS_child_care_provider_list.csv, YWCA of Kankakee,1086 East Court Street Kankakee,60901,9334516,"(815) +935-0015",,,3261-3053-5433-005,,,,,,,,,,,,,,,,,,,,,, +1367,chapin_ounce_providers_2011_071112.csv,"Ounce of Prevention Fund +(Directly Operated Programs) Educare","5044 S. Wabash Ave +",60615,9242334,,,,,"Ounce of Prevention Fund +(Directly Operated Programs)","Fuller Park, Grand Boulevard, Kenwood, New City, Oakland, Washington Park","64 +Early Head Start + +85 +Head Start + +","Early Head Start +Full Day/Full Year + +Head Start +Full Day/Full Year +",64,85,,,,,,,,,,,,,,,, +1368,chapin_ounce_providers_2011_071112.csv,"Healthy Parents and Babies Program +(Directly Operated Programs) Hayes Center","4859 S. Wabash Ave. +2nd floor +",60615,3738670,,,,,"Healthy Parents and Babies Program +(Directly Operated Programs)","Grand Boulevard, Kenwood, Washington Park +Brighton Park +McKinley Park +West Humboldt Park ","57 +Early Head Start","Early Head Start +Services to Pregnant Women + +Early Head Start +Home Based",57,"-- + + + + +",,,,,,,,,,,,,,,, +1369,chapin_ounce_providers_2011_071112.csv,"Centers for New Horizons +(Partner) Effie Ellis II Early Care & Education Center +","4301 S. Cottage Grove +",60653,5489839,,,,,"Centers for New Horizons +(Partner)","Grand Boulevard, Kenwood, Washington Park","40 +Early Head Start","Early Head Start +Full Day/Full Year",40,"-- +",,,,,,,,,,,,,,,, +1370,chapin_ounce_providers_2011_071112.csv,"Children‚Äö√Ñ√¥s Place Association +(Partner) Family Center","1800 N Humboldt Blvd +",60647,3959193,,,,,"Children‚Äö√Ñ√¥s Place Association +(Partner)","Medically Fragile Families +City-Wide +","56 +Early Head Start + +38 +Head Start + +","EHS Full Day/Full Year + +HS Full Day/Full Year",32,38,,,,,,,,,,,,,,,, +1371,chapin_ounce_providers_2011_071112.csv, EHS Home Based Program,"3059 W. Augusta +",60622,4754232,,,,,,,,EHS Home-Based,24,--,,,,,,,,,,,,,,,, +1372,chapin_ounce_providers_2011_071112.csv,"SGA Youth and Family Services +(Partner) SGA EHS/HS Home Based Program ","4222 South Archer +",60632,4474356,,,,,"SGA Youth and Family Services +(Partner)","Brighton Park +McKinley +Park","72 +Early Head Start + +50 Head Start +","EHS Home-Based + +HS Home Based",72,50,,,,,,,,,,,,,,,, +1373,chapin_ounce_providers_2011_071112.csv,"Aunt Martha‚Äö√Ñ√¥s Youth Services +(Delegate) Park Forest","23485 Western Ave +Park Forest, IL 60466 +",,7472780,,,,,"Aunt Martha‚Äö√Ñ√¥s Youth Services +(Delegate)","Chicago Heights (Beacon Hill area), Crete, Park Forest, Richton Park, Riverdale, Steger +University Park +","260 +Head Start","Double Session + +Full Day/Full Year","-- + +-- +","142 + +20",,,,,,,,,,,,,,,, +1374,chapin_ounce_providers_2011_071112.csv, Riverdale,"14424 Wentworth Ave +Riverdale, IL 60827 +",,8496019,,,,,,,,Double Session,"-- +",98,,,,,,,,,,,,,,,, +1375,chapin_ounce_providers_2011_071112.csv," +Casa Central +(Delegate) + + + + + +ABC Home Based Head Start"," +1349 N. California Ave +",60622,6452404,,,,," +Casa Central +(Delegate) + + + + +"," +Hermosa, Humboldt Park, Logan Square, West Town, Wicker Park "," +323 +Head Start"," +Home Based"," +-- +",120,,,,,,,,,,,,,,,, +1376,chapin_ounce_providers_2011_071112.csv, Adolescent Parenting Program (APP) ,"1335 N. California Ave +",60622,6452300,,,,,,,,Home Based,"-- +",24,,,,,,,,,,,,,,,, +1377,chapin_ounce_providers_2011_071112.csv, Casa Infantil,"2222 N. Kedzie Ave +",60647,7721170,,,,,,,,Full Day/Full Year,"-- +",57,,,,,,,,,,,,,,,, +1378,chapin_ounce_providers_2011_071112.csv, Community Service Center,"1343 N. California Ave +",60622,6452300,,,,,,,,Full Day/Full Year,"-- +",54,,,,,,,,,,,,,,,, +1379,chapin_ounce_providers_2011_071112.csv," Munoz Marin-Lowell Early Childhood Center +","3320 W. Evergreen Ave +",60651,7828459,,,,,,,,"Pre-K Partner +Double Session","-- +",68,,,,,,,,,,,,,,,, +1380,chapin_ounce_providers_2011_071112.csv,"Children‚Äö√Ñ√¥s Home + Aid +(Delegate) + Englewood Child and Family Center","1701 W. 63rd St. +",60636,4766998,,,,,"Children‚Äö√Ñ√¥s Home + Aid +(Delegate) +","Englewood, +West Englewood, Humboldt Park, West Town ","216 +Head Start","Full Day/Full Year + +6 Hour Head Start + +Double Session ","-- + +-- + +-- +","34 + +68 + +30",,,,,,,,,,,,,,,, +1381,chapin_ounce_providers_2011_071112.csv, Viva Family Center,"2516 W. Division +",60622,2529100,,,,,,,,Home Based,"-- +",84,,,,,,,,,,,,,,,, +1382,chapin_ounce_providers_2011_071112.csv,"One Hope United +(Delegate) Bridgeport Child Development Center I","3053 S. Normal Ave. +",60616,8425566,,,,,"One Hope United +(Delegate)","Bridgeport, Morgan Park, Edgewater, Rogers Park, Uptown","170 +Head Start",Full Day/Full Year,"-- +",100,,,,,,,,,,,,,,,, +1383,chapin_ounce_providers_2011_071112.csv, Bridgeport Child Development Center II,"514 W. 31st St. +",60616,9494015,,,,,,,,Full Day/Full Year,"-- +",40,,,,,,,,,,,,,,,, +1384,chapin_ounce_providers_2011_071112.csv, Edgewater Early Learning Center,"5244 N. Lakewood St. +",60640,9070278,,,,,,,,Full Day/Full Year,"-- +",30,,,,,,,,,,,,,,,, +1385,chapin_dfss_providers_2011_070212.csv,ABRAHAM LINCOLN CENTRE ABRAHAM-LINCOLN,3858 S COTTAGE GROVE ,60653,2851390,,,,,,,ABRAHAM LINCOLN CENTRE,OAKLAND,,,,,Charles Ann Stewart,Yes,No,Yes,2749SA(School Age (SA)),,,,,,,,, +1386,chapin_dfss_providers_2011_070212.csv,ABRAHAM LINCOLN CENTRE LINCOLN ROSELAND,7 E 119TH ST ,60628,2647633,,,,,,,ABRAHAM LINCOLN CENTRE,WEST PULLMAN,,,,,Barbara Woods,Yes,No,No,3175PS(HS Collaboration with Childcare & PreK),,,,,,,,, +1387,chapin_dfss_providers_2011_070212.csv,ABRAHAM LINCOLN CENTRE LINCOLN/KING,4314 S COTTAGE GROVE ,60653,7472310,,,,,,,ABRAHAM LINCOLN CENTRE,GRAND BOULEVARD,,,,,Joyce Wallace,Yes,No,No,7100PS(HS Collaboration with Childcare & PreK),,,,,,,,, +1388,chapin_dfss_providers_2011_070212.csv,ADA S. MCKINLEY COMMUNITY SERVICES ALBANY LOCATION,5954 S ALBANY ,60629,7377810,,,,,,,ADA S. MCKINLEY COMMUNITY SERVICES,CHICAGO LAWN,,,,,Mildred Burnside,Yes,No,No,,,,,,,,,, +1389,chapin_dfss_providers_2011_070212.csv,ADA S. MCKINLEY COMMUNITY SERVICES CHILDREN'S CENTER (HALSTED),12803 S HALSTED ,60628,2645171,,,,,,,ADA S. MCKINLEY COMMUNITY SERVICES,WEST PULLMAN,,,,,Olivia Ramsey,Yes,No,No,,,,,,,,,, +1390,chapin_dfss_providers_2011_070212.csv,ADA S. MCKINLEY COMMUNITY SERVICES CHILDREN'S CENTER (WESTERN),7956 S WESTERN ,60620,4768805,,,,,,,ADA S. MCKINLEY COMMUNITY SERVICES,ASHBURN,,,,,Corlis Wright,Yes,No,No,,,,,,,,,, +1391,chapin_dfss_providers_2011_070212.csv,ADA S. MCKINLEY COMMUNITY SERVICES LITTLE GENIUS,11439 S MICHIGAN AVE ,60628,6298091,,,,,,,ADA S. MCKINLEY COMMUNITY SERVICES,ROSELAND,,,,,Melissa Carter,Yes,No,No,,,,,,,,,, +1392,chapin_dfss_providers_2011_070212.csv,ADA S. MCKINLEY COMMUNITY SERVICES LITTLE HANDS,7146 S ASHLAND ,60636,4710662,,,,,,,ADA S. MCKINLEY COMMUNITY SERVICES,WEST ENGLEWOOD,,,,,Crystal Fielder,Yes,No,No,,,,,,,,,, +1393,chapin_dfss_providers_2011_070212.csv,ADA S. MCKINLEY COMMUNITY SERVICES MCKINLEY-ERSULA HOWARD,7222 S EXCHANGE ,60649,2219711,,,,,,,ADA S. MCKINLEY COMMUNITY SERVICES,SOUTH SHORE,,,,,Stella Sweeten,Yes,No,No,"4357IT(Child Care IT Center), 7035PS(HS Collaboration with C",,,,,,,,, +1394,chapin_dfss_providers_2011_070212.csv,ADA S. MCKINLEY COMMUNITY SERVICES MCKINLEY-MAGGIE DRUMMOND,4301 S WABASH ,60653,3738200,,,,,,,ADA S. MCKINLEY COMMUNITY SERVICES,GRAND BOULEVARD,,,,,Angie Fells,Yes,No,Yes,"4355IT(Child Care IT Center), 4355SA(School Age (SA)), 4355P",,,,,,,,, +1395,chapin_dfss_providers_2011_070212.csv,ADA S. MCKINLEY COMMUNITY SERVICES MCKINLEY-ROSELAND,11410 S EDBROOKE ,60628,4681918,,,,,,,ADA S. MCKINLEY COMMUNITY SERVICES,ROSELAND,,,,,Anna Luna,Yes,No,No,7021PS(HS Collaboration with Childcare),,,,,,,,, +1396,chapin_dfss_providers_2011_070212.csv,ADA S. MCKINLEY COMMUNITY SERVICES MCKINLEY-TRUMBULL PARK,10530 S OGLESBY ,60617,9785341,,,,,,,ADA S. MCKINLEY COMMUNITY SERVICES,SOUTH DEERING,,,,,Damita Brown,Yes,No,No,7051PS(HS Collaboration with Childcare),,,,,,,,, +1397,chapin_dfss_providers_2011_070212.csv,ADA S. MCKINLEY COMMUNITY SERVICES MCKINLEY-WRIGHT RENAISSANCE,7939 S WESTERN ,60620,4768805,,,,,,,ADA S. MCKINLEY COMMUNITY SERVICES,ASHBURN,,,,,Corllis Wright,Yes,Yes,Yes,"2708IT(Child Care IT Center), 2708PS(Child Care PS Center &",,,,,,,,, +1398,chapin_dfss_providers_2011_070212.csv,ADA S. MCKINLEY COMMUNITY SERVICES MONTESSORI ACADEMY,11025 S HALSTED AVE ,60628,2810069,,,,,,,ADA S. MCKINLEY COMMUNITY SERVICES,ROSELAND,,,,,,Yes,No,No,,,,,,,,,, +1399,chapin_dfss_providers_2011_070212.csv,ADA S. MCKINLEY COMMUNITY SERVICES STEPPING STONES CCC,1300 E 75TH ST ,60619,4930000,,,,,,,ADA S. MCKINLEY COMMUNITY SERVICES,SOUTH SHORE,,,,,Dr. Jones,Yes,No,No,,,,,,,,,, +1400,chapin_dfss_providers_2011_070212.csv,ALBANY PARK COMMUNITY CENTER AINSLIE,3401 W AINSLIE ,60625,5395907,,,,,,,ALBANY PARK COMMUNITY CENTER,ALBANY PARK,,,,,John DeJulio,No,No,No,"2502PS(Child Care PS Center & State Pre-K), 2502SA(School Ag",,,,,,,,, +1401,chapin_dfss_providers_2011_070212.csv,ALBANY PARK COMMUNITY CENTER KIMBALL,5121 N KIMBALL ,60625,5095657,,,,,,,ALBANY PARK COMMUNITY CENTER,NORTH PARK,,,,,Amy Labb,Yes,No,No,"3006HD(HS AM), 3007HD(HS PM), 6001IT(EHS), 2498PS(Child Care",,,,,,,,, +1402,chapin_dfss_providers_2011_070212.csv,APPEAL FOR CHARITIES AND GOODWILL APPEALS FOR CHARITIES,50 W 71ST ST ,60621,6515400,,,,,,,APPEAL FOR CHARITIES AND GOODWILL,GREATER GRAND CROSSING,,,,,Charlotte Osei-Bonsu,Yes,No,No,"4354IT(Child Care IT Center), 4354SA(School Age (SA)), 4354P",,,,,,,,, +1403,chapin_dfss_providers_2011_070212.csv,BBF FAMILY SERVICES BBF FAMILY SERVICE,1512 S PULASKI ,60623,2779582,,,,,,,BBF FAMILY SERVICES,NORTH LAWNDALE,,,,,,No,No,No,2616SA(School Age (SA)),,,,,,,,, +1404,chapin_dfss_providers_2011_070212.csv,BEACON THERAPEUTIC BEACON THERAPEUTIC,1912 W 103RD ST ,60643,2981243,,,,,,,BEACON THERAPEUTIC,BEVERLY,,,,,Susan Reyna-Guerrero,No,Yes,No,,,,,,,,,, +1405,chapin_dfss_providers_2011_070212.csv,BOARD TRUSTEES-CITY COLLEGES OF CHICAGO DALEY COLLEGE,7500 S PULASKI RD ,60652,8387562,,,,,,,BOARD TRUSTEES-CITY COLLEGES OF CHICAGO,WEST LAWN,,,,,Maria Sanchez,Yes,No,No,4387PS(Child Care PS Center & State Pre-K),,,,,,,,, +1406,chapin_dfss_providers_2011_070212.csv,BOARD TRUSTEES-CITY COLLEGES OF CHICAGO KENNEDY-KING COLLEGE,710 W 65TH BUILDING Z ,60621,6025481,,,,,,,BOARD TRUSTEES-CITY COLLEGES OF CHICAGO,ENGLEWOOD,,,,,Guadalupe Pacias,Yes,No,No,"7048PS(HS Collaboration with Childcare & PreK), 4384PS(Child",,,,,,,,, +1407,chapin_dfss_providers_2011_070212.csv,BOARD TRUSTEES-CITY COLLEGES OF CHICAGO MALCOLM X COLLEGE,1900 W VAN BUREN ,60612,8507176,,,,,,,BOARD TRUSTEES-CITY COLLEGES OF CHICAGO,NEAR WEST SIDE,,,,,Ereyne Weekes,Yes,No,No,"7025PS (HS Collaboration with Childcare & PreK), 4385PS(Chil",,,,,,,,, +1408,chapin_dfss_providers_2011_070212.csv,BOARD TRUSTEES-CITY COLLEGES OF CHICAGO OLIVE-HARVEY COLLEGE,10001 S WOODLAWN ,60628,2916317,,,,,,,BOARD TRUSTEES-CITY COLLEGES OF CHICAGO,PULLMAN,,,,,Tiffany Carter,Yes,No,No,7056PS(HS Collaboration with Childcare & PreK),,,,,,,,, +1409,chapin_dfss_providers_2011_070212.csv,BOARD TRUSTEES-CITY COLLEGES OF CHICAGO TRUMAN COLLEGE,1145 W WILSON AVE ,60640,8784740,,,,,,,BOARD TRUSTEES-CITY COLLEGES OF CHICAGO,UPTOWN,,,,,Judi Gibian-Mennenga,Yes,No,No,"7099PS(HS Collaboration with Childcare & PreK), 4386PS(Child",,,,,,,,, +1410,chapin_dfss_providers_2011_070212.csv,CAROLE ROBERTSON CENTER FOR LEARNING CAROLE ROBERTSON CENTER-2929,2929 W 19TH ST ,60623,5211600,,,,,,,CAROLE ROBERTSON CENTER FOR LEARNING,SOUTH LAWNDALE,,,,,Ruby Walker,Yes,Yes,No,,,,,,,,,, +1411,chapin_dfss_providers_2011_070212.csv,CAROLE ROBERTSON CENTER FOR LEARNING CAROLE ROBERTSON CENTER - 3701(OGDEN),3701 W OGDEN ,60623,5228400,,,,,,,CAROLE ROBERTSON CENTER FOR LEARNING,NORTH LAWNDALE,,,,,Tracey Young,Yes,Yes,No,,,,,,,,,, +1412,chapin_dfss_providers_2011_070212.csv,CAROLE ROBERTSON CENTER FOR LEARNING CAROLE ROBERTSON CENTER-2020,2020 W ROOSEVELT RD ,60608,2437300,,,,,,,CAROLE ROBERTSON CENTER FOR LEARNING,NEAR WEST SIDE,,,,,Betty Lee,No,Yes,No,,,,,,,,,, +1413,chapin_dfss_providers_2011_070212.csv,CAROLE ROBERTSON CENTER FOR LEARNING FCCH-ANGELITA YUGSI,6447 S KNOX AVE ,60629,5211600,,,,,,,CAROLE ROBERTSON CENTER FOR LEARNING,CLEARING,,,,,Jolene Martin,Yes,No,No,"5931PS(HS Collaboration with Childcare Homes), 5931IP(EHS Co",,,,,,,,, +1414,chapin_dfss_providers_2011_070212.csv,CAROLE ROBERTSON CENTER FOR LEARNING FCCH-ARACELI BASILE,2124 N CENTRAL PARK AVE ,60647,5211600,,,,,,,CAROLE ROBERTSON CENTER FOR LEARNING,LOGAN SQUARE,,,,,Jolene Martin,Yes,No,No,"5900PS(HS Collaboration with Childcare Homes), 5900IP(EHS Co",,,,,,,,, +1415,chapin_dfss_providers_2011_070212.csv,CAROLE ROBERTSON CENTER FOR LEARNING FCCH-AURORA NUNEZ,2701 W 18TH ST ,60608,5211600,,,,,,,CAROLE ROBERTSON CENTER FOR LEARNING,NORTH LAWNDALE,,,,,Jolene Martin,Yes,Yes,No,"5615PS(HS Collaboration with Childcare Homes), 5615IP(EHS Co",,,,,,,,, +1416,chapin_dfss_providers_2011_070212.csv,CAROLE ROBERTSON CENTER FOR LEARNING FCCH-DARLENE MCGHEE,8055 S WOOD ,60620,9945193,,,,,,,CAROLE ROBERTSON CENTER FOR LEARNING,AUBURN GRESHAM,,,,,Jolene Martin,No,No,No,"6000PS(HS Collaboration with Childcare Homes), 6000IP(EHS Co",,,,,,,,, +1417,chapin_dfss_providers_2011_070212.csv,CAROLE ROBERTSON CENTER FOR LEARNING FCCH-DELONDIA MOTLEY,2252 S CENTRAL PARK AVE ,60623,5211600,,,,,,,CAROLE ROBERTSON CENTER FOR LEARNING,SOUTH LAWNDALE,,,,,Jolene Martin,No,No,No,"5617PS(HS Collaboration with Childcare Homes), 5617IP(EHS Co",,,,,,,,, +1418,chapin_dfss_providers_2011_070212.csv,CAROLE ROBERTSON CENTER FOR LEARNING FCCH-ILEANA GONZALEZ,4250 W 81ST ST ,60652,5211600,,,,,,,CAROLE ROBERTSON CENTER FOR LEARNING,ASHBURN,,,,,Jolene Martin,Yes,No,No,"5606PS(HS Collaboration with Childcare Homes), 5606IP(EHS Co",,,,,,,,, +1419,chapin_dfss_providers_2011_070212.csv,CAROLE ROBERTSON CENTER FOR LEARNING FCCH-KEMISHA ALLEN,6954 S FAIRFIELD ,60629,,,,,,,,CAROLE ROBERTSON CENTER FOR LEARNING,CHICAGO LAWN,,,,,Jolene Martin,No,No,No,5983PS(HS Collaboration with Childcare Homes),,,,,,,,, +1420,chapin_dfss_providers_2011_070212.csv,CAROLE ROBERTSON CENTER FOR LEARNING FCCH-LINDA LEWIS,7312 S SAINT LAWRENCE AVE ,60619,2437225,,,,,,,CAROLE ROBERTSON CENTER FOR LEARNING,GREATER GRAND CROSSING,,,,,Jolene Martin,Yes,No,No,"6100PS(HS Collaboration with Childcare Homes), 6100IP(EHS Co",,,,,,,,, +1421,chapin_dfss_providers_2011_070212.csv,CAROLE ROBERTSON CENTER FOR LEARNING FCCH-LUZ OROZCO,4546 W 67TH ST ,60629,,,,,,,,CAROLE ROBERTSON CENTER FOR LEARNING,WEST LAWN,,,,,Jolene Martin,Yes,No,No,"5975PS(HS Collaboration with Childcare Homes), 5975IP(EHS Co",,,,,,,,, +1422,chapin_dfss_providers_2011_070212.csv,CAROLE ROBERTSON CENTER FOR LEARNING FCCH-MAGDELENA ORTEGA,2318 S HOYNE ,60608,,,,,,,,CAROLE ROBERTSON CENTER FOR LEARNING,LOWER WEST SIDE,,,,,Jolene Martin,Yes,No,No,"5616PS(HS Collaboration with Childcare Homes), 5616IP(EHS Co",,,,,,,,, +1423,chapin_dfss_providers_2011_070212.csv,CAROLE ROBERTSON CENTER FOR LEARNING FCCH-MARIA CEPEDA,4500 S SAWYER AVE ,60632,,,,,,,,CAROLE ROBERTSON CENTER FOR LEARNING,BRIGHTON PARK,,,,,Jolene Martin,No,No,No,"5976PS(HS Collaboration with Childcare Homes), 5976IP(EHS Co",,,,,,,,, +1424,chapin_dfss_providers_2011_070212.csv,CAROLE ROBERTSON CENTER FOR LEARNING FCCH-MARIA FLORES,3443 W 71ST ,60629,5211600,,,,,,,CAROLE ROBERTSON CENTER FOR LEARNING,CHICAGO LAWN,,,,,Jolene Martin,Yes,Yes,No,"5605PS(HS Collaboration with Childcare Homes), 5605IP(EHS Co",,,,,,,,, +1425,chapin_dfss_providers_2011_070212.csv,CAROLE ROBERTSON CENTER FOR LEARNING FCCH-MARIBELLA RODRIGUEZ,1012 N KEDVALE ST ,60608,5211600,,,,,,,CAROLE ROBERTSON CENTER FOR LEARNING,HUMBOLDT PARK,,,,,Jolene Martin,Yes,No,No,"5618PS(HS Collaboration with Childcare Homes), 5618IP(EHS Co",,,,,,,,, +1426,chapin_dfss_providers_2011_070212.csv,CAROLE ROBERTSON CENTER FOR LEARNING FCCH-MARY MURPHY,5418 W JACKSON ST ,60644,5211600,,,,,,,CAROLE ROBERTSON CENTER FOR LEARNING,AUSTIN,,,,,Jolene Martin,No,No,No,"5614PS(HS Collaboration with Childcare Homes), 5614IP(EHS Co",,,,,,,,, +1427,chapin_dfss_providers_2011_070212.csv,CAROLE ROBERTSON CENTER FOR LEARNING FCCH-MICHELLE PADILLA,7973 S KOLIN AVE ,60652,5211600,,,,,,,CAROLE ROBERTSON CENTER FOR LEARNING,ASHBURN,,,,,Jolene Martin,Yes,No,No,"5899PS(HS Collaboration with Childcare Homes), 5899IP(EHS Co",,,,,,,,, +1428,chapin_dfss_providers_2011_070212.csv,CAROLE ROBERTSON CENTER FOR LEARNING FCCH-NORMA JACKSON,935 N MENARD ,60651,,,,,,,,CAROLE ROBERTSON CENTER FOR LEARNING,AUSTIN,,,,,Jolene Martin,Yes,Yes,No,"5897PS(HS Collaboration with Childcare Homes), 5897IP(EHS Co",,,,,,,,, +1429,chapin_dfss_providers_2011_070212.csv,CAROLE ROBERTSON CENTER FOR LEARNING FCCH-PATRICIA HERNANDEZ,4958 S RACINE AVE ,60609,5381198,,,,,,,CAROLE ROBERTSON CENTER FOR LEARNING,NEW CITY,,,,,Jolene Martin,Yes,No,No,"5958PS(HS Collaboration with Childcare Homes), 5958IP(EHS Co",,,,,,,,, +1430,chapin_dfss_providers_2011_070212.csv,CAROLE ROBERTSON CENTER FOR LEARNING FCCH-PATRICIA OROS,2826 W 40TH PL ,60623,5232223,,,,,,,CAROLE ROBERTSON CENTER FOR LEARNING,BRIGHTON PARK,,,,,Jolene Martin,Yes,No,No,"5954PS(HS Collaboration with Childcare Homes), 5954IP(EHS Co",,,,,,,,, +1431,chapin_dfss_providers_2011_070212.csv,CAROLE ROBERTSON CENTER FOR LEARNING FCCH-RHONDA CULVERSON,3826 W 85TH STREET ,60629,5211600,,,,,,,CAROLE ROBERTSON CENTER FOR LEARNING,ASHBURN,,,,,Jolene Martin,No,No,No,"5928PS(HS Collaboration with Childcare Homes), 5926IP(EHS Co",,,,,,,,, +1432,chapin_dfss_providers_2011_070212.csv,CAROLE ROBERTSON CENTER FOR LEARNING FCCH-ROBBIE ANTHONY,5916 W SUPERIOR ,60644,2974124,,,,,,,CAROLE ROBERTSON CENTER FOR LEARNING,AUSTIN,,,,,Jolene Martin,No,No,No,"6101PS(HS Collaboration with Childcare Homes), 6101IP(EHS Co",,,,,,,,, +1433,chapin_dfss_providers_2011_070212.csv,CAROLE ROBERTSON CENTER FOR LEARNING FCCH-SONIA ARBOLEDA,4748 S TRIPP ,60632,2511600,,,,,,,CAROLE ROBERTSON CENTER FOR LEARNING,ARCHER HEIGHTS,,,,,Jolene Martin,Yes,No,No,"5601PS(HS Collaboration with Childcare Homes), 5601IP(EHS Co",,,,,,,,, +1434,chapin_dfss_providers_2011_070212.csv,CAROLE ROBERTSON CENTER FOR LEARNING FCCH-SUSIE CANNON,5921 W RICE ,60651,3784342,,,,,,,CAROLE ROBERTSON CENTER FOR LEARNING,AUSTIN,,,,,Jolene Martin,Yes,Yes,No,"5904PS(HS Collaboration with Childcare Homes), 5904IP(EHS Co",,,,,,,,, +1435,chapin_dfss_providers_2011_070212.csv,CAROLE ROBERTSON CENTER FOR LEARNING FCCH-TITA JACKSON,604 E 88TH ST ,60619,8744913,,,,,,,CAROLE ROBERTSON CENTER FOR LEARNING,CHATHAM,,,,,Jolene Martin,Yes,No,No,5990PS(HS Collaboration with Childcare Homes),,,,,,,,, +1436,chapin_dfss_providers_2011_070212.csv,CAROLE ROBERTSON CENTER FOR LEARNING FCCH-TOSHA KELLY,8050 S HONORE ,60620,,,,,,,,CAROLE ROBERTSON CENTER FOR LEARNING,AUBURN GRESHAM,,,,,Jolene Martin,Yes,No,No,5984PS(HS Collaboration with Childcare Homes),,,,,,,,, +1437,chapin_dfss_providers_2011_070212.csv,CATHOLIC CHARITIES OF THE ARCHDIOCESE OF CHICAGO CHICAGO LAWN,3001 W 59TH ST ,60629,9251085,,,,,,,CATHOLIC CHARITIES OF THE ARCHDIOCESE OF CHICAGO,CHICAGO LAWN,,,,,Virginia Carrillo,Yes,No,No,7040PS(HS Collaboration with Childcare),,,,,,,,, +1438,chapin_dfss_providers_2011_070212.csv,CATHOLIC CHARITIES OF THE ARCHDIOCESE OF CHICAGO GRACE MISSION,5332 S WESTERN ,60609,4761990,,,,,,,CATHOLIC CHARITIES OF THE ARCHDIOCESE OF CHICAGO,GAGE PARK,,,,,Francine Johnson,Yes,No,Yes,"3416PS(HS Collaboration with Childcare & PreK), 2711PS(Child",,,,,,,,, +1439,chapin_dfss_providers_2011_070212.csv,CATHOLIC CHARITIES OF THE ARCHDIOCESE OF CHICAGO OUR LADY OF LOURDES,1449 S KEELER ,60623,5213126,,,,,,,CATHOLIC CHARITIES OF THE ARCHDIOCESE OF CHICAGO,NORTH LAWNDALE,,,,,Deborah O'Brien,Yes,No,Yes,"2488IT(Child Care IT Center), 7030PS(HS Collaboration with C",,,,,,,,, +1440,chapin_dfss_providers_2011_070212.csv,CATHOLIC CHARITIES OF THE ARCHDIOCESE OF CHICAGO OUR LADY OF TEPEYAC,2414 S ALBANY ,60623,2775888,,,,,,,CATHOLIC CHARITIES OF THE ARCHDIOCESE OF CHICAGO,SOUTH LAWNDALE,,,,,Petra Gutierrez,Yes,No,Yes,"2617SA(School Age (SA)), 4382PS(HS Collaboration with Childc",,,,,,,,, +1441,chapin_dfss_providers_2011_070212.csv,CATHOLIC CHARITIES OF THE ARCHDIOCESE OF CHICAGO ST. JOSEPH,4800 S PAULINA ,60609,9272524,,,,,,,CATHOLIC CHARITIES OF THE ARCHDIOCESE OF CHICAGO,NEW CITY,,,,,Janice Williams,Yes,No,Yes,"2631SA(School Age (SA)), 7041PS(HS Collaboration with Childc",,,,,,,,, +1442,chapin_dfss_providers_2011_070212.csv,CENTERS FOR NEW HORIZONS ALTGELD I,941 E 132ND ST ,60627,4683055,,,,,,,CENTERS FOR NEW HORIZONS,RIVERDALE,,,,,Gloria Lawson,Yes,No,Yes,"4320IT(Child Care IT Center), 7044PS(HS Collaboration with C",,,,,,,,, +1443,chapin_dfss_providers_2011_070212.csv,CENTERS FOR NEW HORIZONS EFFIE ELLIS,4301 S COTTAGE GROVE ,60653,5489839,,,,,,,CENTERS FOR NEW HORIZONS,KENWOOD,,,,,Valerie Jones,Yes,No,Yes,"8012IT(Child Care IT Center), 7116PS(HS Collaboration with C",,,,,,,,, +1444,chapin_dfss_providers_2011_070212.csv,CENTERS FOR NEW HORIZONS IDA B. WELLS AT DAWSON,3901 S STATE ,60609,5367864,,,,,,,CENTERS FOR NEW HORIZONS,GRAND BOULEVARD,,,,,Carolyn Terry,Yes,No,No,"4391IT(Child Care IT Center), 4390PS(HS Collaboration with C",,,,,,,,, +1445,chapin_dfss_providers_2011_070212.csv,CHICAGO CHILD CARE SOCIETY CHICAGO CHILD CARE SOCIETY,5467 S UNIVERSITY AVE ,60615,6430452,,,,,,,CHICAGO CHILD CARE SOCIETY,HYDE PARK,,,,,Licia Palmore,No,Yes,No,,,,,,,,,, +1446,chapin_dfss_providers_2011_070212.csv,CHICAGO COMMONS ASSOCIATION A-Z MALL WORLD,2629 S LAWNDALE ,60623,,,,,,,,CHICAGO COMMONS ASSOCIATION,SOUTH LAWNDALE,,,,,,Yes,No,No,,,,,,,,,, +1447,chapin_dfss_providers_2011_070212.csv,CHICAGO COMMONS ASSOCIATION BETTY'S DAYCARE ACADEMY,5725 W CHICAGO AVE ,60651,2611433,,,,,,,CHICAGO COMMONS ASSOCIATION,AUSTIN,,,,,,Yes,No,No,,,,,,,,,, +1448,chapin_dfss_providers_2011_070212.csv,CHICAGO COMMONS ASSOCIATION CHICAGO URBAN DAYCARE,1248 W 69TH ST ,60636,4833555,,,,,,,CHICAGO COMMONS ASSOCIATION,WEST ENGLEWOOD,,,,,,Yes,No,No,,,,,,,,,, +1449,chapin_dfss_providers_2011_070212.csv,CHICAGO COMMONS ASSOCIATION CHILDREN'S WORLD,3356 S ASHLAND ,60609,5230100,,,,,,,CHICAGO COMMONS ASSOCIATION,MCKINLEY PARK,,,,,,Yes,No,No,,,,,,,,,, +1450,chapin_dfss_providers_2011_070212.csv,CHICAGO COMMONS ASSOCIATION COMPUTER PRESCHOOL ACADEMY,1400 W GARFIELD BLVD ,60609,6275000,,,,,,,CHICAGO COMMONS ASSOCIATION,NEW CITY,,,,,,Yes,No,No,,,,,,,,,, +1451,chapin_dfss_providers_2011_070212.csv,CHICAGO COMMONS ASSOCIATION DIVERSEY DAY CARE,3007 W DIVERSEY ,60647,3427777,,,,,,,CHICAGO COMMONS ASSOCIATION,LOGAN SQUARE,,,,,Alberta Varda,Yes,No,No,,,,,,,,,, +1452,chapin_dfss_providers_2011_070212.csv,CHICAGO COMMONS ASSOCIATION EYES ON THE FUTURE,6969 N RAVENSWOOD ,60626,9730771,,,,,,,CHICAGO COMMONS ASSOCIATION,ROGERS PARK,,,,,Azieb Gebrehiiwet,Yes,No,No,,,,,,,,,, +1453,chapin_dfss_providers_2011_070212.csv,CHICAGO COMMONS ASSOCIATION GUADALUPANO FAMILY CENTER,1814 S PAULINA ,60608,6663883,,,,,,,CHICAGO COMMONS ASSOCIATION,LOWER WEST SIDE,,,,,Migdalia Young,Yes,No,Yes,"2613IT(Child Care IT Center), 3403PS(HS Collaboration with C",,,,,,,,, +1454,chapin_dfss_providers_2011_070212.csv,CHICAGO COMMONS ASSOCIATION JOYFUL NOISE DAY CARE,4843 W NORTH AVE ,60639,2525990,,,,,,,CHICAGO COMMONS ASSOCIATION,AUSTIN,,,,,Mary Gonzalez,Yes,No,No,,,,,,,,,, +1455,chapin_dfss_providers_2011_070212.csv,CHICAGO COMMONS ASSOCIATION JPE DAYCARE CENTER,8625 S COTTAGE GROVE ,60619,9941300,,,,,,,CHICAGO COMMONS ASSOCIATION,CHATHAM,,,,,Jackie Cuvington,No,No,No,,,,,,,,,, +1456,chapin_dfss_providers_2011_070212.csv,CHICAGO COMMONS ASSOCIATION KIDDIE GARDEN LITTLE ANGELS,4235 S KEDZIE AVE ,60632,3928199,,,,,,,CHICAGO COMMONS ASSOCIATION,BRIGHTON PARK,,,,,Angeles Nunez,Yes,No,No,,,,,,,,,, +1457,chapin_dfss_providers_2011_070212.csv,CHICAGO COMMONS ASSOCIATION KIMBALL DAY CARE,1636 N KIMBALL AVE ,60647,2357200,,,,,,,CHICAGO COMMONS ASSOCIATION,HUMBOLDT PARK,,,,,Alberta Varda,Yes,No,No,,,,,,,,,, +1458,chapin_dfss_providers_2011_070212.csv,CHICAGO COMMONS ASSOCIATION LITTLE PEOPLE'S DAY CARE,7428 N ROGERS AVE ,60626,7612305,,,,,,,CHICAGO COMMONS ASSOCIATION,ROGERS PARK,,,,,Marlene Bansa,Yes,No,No,,,,,,,,,, +1459,chapin_dfss_providers_2011_070212.csv,CHICAGO COMMONS ASSOCIATION LOS PEQUENOS ANGELITOS,3711 W 55TH ST ,60632,2237292,,,,,,,CHICAGO COMMONS ASSOCIATION,WEST ELSDON,,,,,Angeles Nunez,Yes,No,No,,,,,,,,,, +1460,chapin_dfss_providers_2011_070212.csv,CHICAGO COMMONS ASSOCIATION MY PRECIOUS LITTLE ANGELS,7012 W NORTH AVE ,60707,6371708,,,,,,,CHICAGO COMMONS ASSOCIATION,AUSTIN,,,,,Doris Gadberry,Yes,No,No,,,,,,,,,, +1461,chapin_dfss_providers_2011_070212.csv,CHICAGO COMMONS ASSOCIATION NIA FAMILY CENTER,744 N MONTICELLO ,60612,7220115,,,,,,,CHICAGO COMMONS ASSOCIATION,HUMBOLDT PARK,,,,,Sharon Gibson,Yes,No,Yes,"2633IT(Child Care IT Center), 3404PS(HS Collaboration with C",,,,,,,,, +1462,chapin_dfss_providers_2011_070212.csv,CHICAGO COMMONS ASSOCIATION PANDA MONTESSORI,6921 N RIDGE ,60645,3386755,,,,,,,CHICAGO COMMONS ASSOCIATION,ROGERS PARK,,,,,Angela Perry,Yes,No,No,,,,,,,,,, +1463,chapin_dfss_providers_2011_070212.csv,CHICAGO COMMONS ASSOCIATION PAULO FREIRE,1653 W 43RD ST ,60609,8266260,,,,,,,CHICAGO COMMONS ASSOCIATION,NEW CITY,,,,,Jenny Seacat,Yes,No,Yes,"2626IT(Child Care IT Center), 3402PS(HS Collaboration with C",,,,,,,,, +1464,chapin_dfss_providers_2011_070212.csv,CHICAGO COMMONS ASSOCIATION RAINBOW DAYCARE,3250 W IRVING PARK RD ,60618,4788182,,,,,,,CHICAGO COMMONS ASSOCIATION,IRVING PARK,,,,,James Limson,Yes,No,No,,,,,,,,,, +1465,chapin_dfss_providers_2011_070212.csv,CHICAGO COMMONS ASSOCIATION TAYLOR CENTER FOR NEW EXPERIENCES,1633 N HAMLIN ,60647,2278551,,,,,,,CHICAGO COMMONS ASSOCIATION,HUMBOLDT PARK,,,,,Nilda Vargas,Yes,No,Yes,"2629IT(Child Care IT Center), 3401PS(HS Collaboration with C",,,,,,,,, +1466,chapin_dfss_providers_2011_070212.csv,CHICAGO COMMONS ASSOCIATION TOTS EXPRESS LEARNING CENTER,1705 E 87TH ST ,60617,7218687,,,,,,,CHICAGO COMMONS ASSOCIATION,CALUMET HEIGHTS,,,,,Clara Cureton,Yes,No,No,,,,,,,,,, +1467,chapin_dfss_providers_2011_070212.csv,CHICAGO COMMONS ASSOCIATION V & J DAY CARE CENTER,1 E 113THK ST ,60628,7854393,,,,,,,CHICAGO COMMONS ASSOCIATION,ROSELAND,,,,,Reaver Barlow-Bell,Yes,No,No,,,,,,,,,, +1468,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS ALDRIDGE, IRA F.",630 E 131ST ST ,60827,5355614,,,,,,,CHICAGO PUBLIC SCHOOLS,RIVERDALE,,,,,Mr. Vincent Payne,Yes,No,No,,,,,,,,,, +1469,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS ALTGELD, JOHN P.",7007 S LOOMIS ,60636,5353257,,,,,,,CHICAGO PUBLIC SCHOOLS,WEST ENGLEWOOD,,,,,Mrs. Vera Williams-Willis,Yes,No,No,,,,,,,,,, +1470,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS AZUELA, MARIANO",4707 W MARQUETTE ,60629,5357395,,,,,,,CHICAGO PUBLIC SCHOOLS,WEST LAWN,,,,,Carmen Navarro,Yes,No,No,,,,,,,,,, +1471,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS BARTON, CLARA",7650 S WOLCOTT AVE ,60620,5353260,,,,,,,CHICAGO PUBLIC SCHOOLS,AUBURN GRESHAM,,,,,Mr. Terrence Carter,Yes,No,No,,,,,,,,,, +1472,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS BEETHOVEN, LUDWIG V.",25 W 47TH ST ,60609,5351480,,,,,,,CHICAGO PUBLIC SCHOOLS,GRAND BOULEVARD,,,,,Ms. Dyrice Garner,Yes,No,No,,,,,,,,,, +1473,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS BEIDLER, JACOB",3151 W WALNUT ,60612,5346811,,,,,,,CHICAGO PUBLIC SCHOOLS,EAST GARFIELD PARK,,,,,Ms. Shirley Ewings,Yes,No,No,,,,,,,,,, +1474,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS BETHUNE, MARY MCLEOD",3033 W ARTHINGTON ,60612,5346890,,,,,,,CHICAGO PUBLIC SCHOOLS,EAST GARFIELD PARK,,,,,Ms. Zipporah Hightower,Yes,No,No,,,,,,,,,, +1475,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS BOND, CARRIE JACOBS",7050 S MAY ,60621,5353480,,,,,,,CHICAGO PUBLIC SCHOOLS,ENGLEWOOD,,,,,Mr. Alfonso Carington,Yes,No,No,,,,,,,,,, +1476,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS BRADWELL, MYRA",7736 S BURNHAM ,60649,5356600,,,,,,,CHICAGO PUBLIC SCHOOLS,SOUTH SHORE,,,,,Mr. Justin Moore,Yes,No,No,,,,,,,,,, +1477,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS BROWN, RONALD",12607 S UNION ,60628,5355385,,,,,,,CHICAGO PUBLIC SCHOOLS,WEST PULLMAN,,,,,Ms. Gale Baker,Yes,No,No,,,,,,,,,, +1478,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS BRUNSON MATH & SCIENCE, MILTON",932 N CENTRAL ,60651,5349674,,,,,,,CHICAGO PUBLIC SCHOOLS,AUSTIN,,,,,Carol Wilson,Yes,No,No,,,,,,,,,, +1479,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS BURKE, EDMOND",5356 S KING DR ,60615,5351325,,,,,,,CHICAGO PUBLIC SCHOOLS,WASHINGTON PARK,,,,,Ms. Kimberly Ellison,Yes,No,No,,,,,,,,,, +1480,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS CAMERON, DANIEL R.",1234 N MONTICELLO ,60651,5344290,,,,,,,CHICAGO PUBLIC SCHOOLS,HUMBOLDT PARK,,,,,David Kovach,Yes,No,No,,,,,,,,,, +1481,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS CARDENAS, LAZARO",2345 S MILLARD ,60623,5341465,,,,,,,CHICAGO PUBLIC SCHOOLS,SOUTH LAWNDALE,,,,,Dr. Jeremy Feiwell,Yes,No,No,,,,,,,,,, +1482,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS CARSON, RACHEL",5516 S MAPPLEWOOD AVE ,60629,5359222,,,,,,,CHICAGO PUBLIC SCHOOLS,GAGE PARK,,,,,Javier Arriola-Lopez,Yes,No,No,,,,,,,,,, +1483,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS CATHER, WILLA",2908 W WASHINGTON BLVD ,60612,5346780,,,,,,,CHICAGO PUBLIC SCHOOLS,EAST GARFIELD PARK,,,,,Ms. Hattie B. King,Yes,No,No,,,,,,,,,, +1484,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS CHALMERS, THOMAS",2745 W ROOSEVELT ,60608,5341720,,,,,,,CHICAGO PUBLIC SCHOOLS,NORTH LAWNDALE,,,,,Ms. Patricia Vaughn-Dossiea,Yes,No,No,,,,,,,,,, +1485,chapin_dfss_providers_2011_070212.csv,CHICAGO PUBLIC SCHOOLS CHASE ELEMENTARY,2021 N POINT ST ,60647,5344185,,,,,,,CHICAGO PUBLIC SCHOOLS,LOGAN SQUARE,,,,,Ms. Elizabeth Gonzalez,Yes,No,No,,,,,,,,,, +1486,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS CHOPIN, FREDERIC",2450 W RICE ,60622,5344080,,,,,,,CHICAGO PUBLIC SCHOOLS,WEST TOWN,,,,,Ms. Antuanette Mester,Yes,No,No,,,,,,,,,, +1487,chapin_dfss_providers_2011_070212.csv,CHICAGO PUBLIC SCHOOLS CLAREMONT MATH AND SCIENCE ACADEMY,2300 W 64TH ST ,60636,5358110,,,,,,,CHICAGO PUBLIC SCHOOLS,CHICAGO LAWN,,,,,Mrs. Rebecca L. Stinson,Yes,No,No,,,,,,,,,, +1488,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS COCKRELL, ONEIDA",30 EAST 61ST STREET ,60637,5350798,,,,,,,CHICAGO PUBLIC SCHOOLS,WASHINGTON PARK,,,,,Dr. Joy Pilcher,Yes,No,No,,,,,,,,,, +1489,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS COOPER DUAL LANGUAGE ACADEMY, PETER",1624 W 19TH STREET ,60608,5347205,,,,,,,CHICAGO PUBLIC SCHOOLS,LOWER WEST SIDE,,,,,Ms. Martha Monrroy,Yes,No,No,,,,,,,,,, +1490,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS CORKERY, DANIEL",2510 S KILDARE AVE ,60623,5341650,,,,,,,CHICAGO PUBLIC SCHOOLS,SOUTH LAWNDALE,,,,,Bertha Arredondo,Yes,No,No,,,,,,,,,, +1491,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS CURTIS, GEORGE W.",32 EAST 115TH STREET ,60628,5355050,,,,,,,CHICAGO PUBLIC SCHOOLS,ROSELAND,,,,,Mr. Charles H. Davis,Yes,No,No,,,,,,,,,, +1492,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS DALEY, RICHARD J.",5024 S WOLCOTT AVE ,60609,5359091,,,,,,,CHICAGO PUBLIC SCHOOLS,NEW CITY,,,,,Rhonda Hoskins,Yes,No,No,,,,,,,,,, +1493,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS DAVIS, NATHAN",3014 W 39TH PLACE ,60632,5354540,,,,,,,CHICAGO PUBLIC SCHOOLS,BRIGHTON PARK,,,,,Mr. Santos Gomez,Yes,No,No,,,,,,,,,, +1494,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS DENEEN, CHARLES S.",7240 S WABASH AVE ,60619,5353035,,,,,,,CHICAGO PUBLIC SCHOOLS,GREATER GRAND CROSSING,,,,,Joyce Lockhart-Fisher,Yes,No,No,,,,,,,,,, +1495,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS DEPRIEST, OSCAR",139 S PARKSIDE AVE ,60639,5346800,,,,,,,CHICAGO PUBLIC SCHOOLS,AUSTIN,,,,,Minnie Watson,Yes,No,No,,,,,,,,,, +1496,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS DETT, R. NATHANIEL",2306 WEST MAYPOLE ,60612,5347160,,,,,,,CHICAGO PUBLIC SCHOOLS,NEAR WEST SIDE,,,,,Ms. Deborah J. Bonner,Yes,No,No,,,,,,,,,, +1497,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS DODGE RENAISSANCE ACADEMY, MARY MAPES",2651 WEST WASHINGTON ,60612,5346640,,,,,,,CHICAGO PUBLIC SCHOOLS,EAST GARFIELD PARK,,,,,Ed. / Debra Moris / Moriarty,Yes,No,No,,,,,,,,,, +1498,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS DOOLITTLE, JAMES R.",535 EAST 35TH STREET ,60653,5351050,,,,,,,CHICAGO PUBLIC SCHOOLS,DOUGLAS,,,,,Ms. Lori A. Lennix,Yes,No,No,,,,,,,,,, +1499,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS DULLES, JOHN FOSTER",6311 SOUTH CALUMET ,60637,5350690,,,,,,,CHICAGO PUBLIC SCHOOLS,GREATER GRAND CROSSING,,,,,Ms. Pamela Creed,Yes,No,No,,,,,,,,,, +1500,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS DVORAK MATH & SCIENCE TECH ACADEMY, ANTON",3615 WEST 16TH ,60623,5341690,,,,,,,CHICAGO PUBLIC SCHOOLS,NORTH LAWNDALE,,,,,Ms. Alma Thompson,Yes,No,No,,,,,,,,,, +1501,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS EBERHART, JOHN F.",3400 W 65TH PL ,60629,5359190,,,,,,,CHICAGO PUBLIC SCHOOLS,CHICAGO LAWN,,,,,Nneka Gunn,Yes,No,No,,,,,,,,,, +1502,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS EDWARDS, RICHARD",4815 S KARLOV AVE ,60632,5354875,,,,,,,CHICAGO PUBLIC SCHOOLS,ARCHER HEIGHTS,,,,,Mrs. Judith Sauri,Yes,No,No,,,,,,,,,, +1503,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS ELLINGTON, EDWARD ""DUKE"" K.",243 NORTH PARKSIDE ,60644,5346361,,,,,,,CHICAGO PUBLIC SCHOOLS,AUSTIN,,,,,Ms. Shirley M. Scott,Yes,No,No,,,,,,,,,, +1504,chapin_dfss_providers_2011_070212.csv,CHICAGO PUBLIC SCHOOLS ESMOND ELEMENTARY,1865 WEST MONTVALE ,60643,5352650,,,,,,,CHICAGO PUBLIC SCHOOLS,MORGAN PARK,,,,,Dr. Angela Tucker,Yes,No,No,,,,,,,,,, +1505,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS FINKL, WILLIAM F.",2332 S WESTERN AVE ,60608,5355850,,,,,,,CHICAGO PUBLIC SCHOOLS,LOWER WEST SIDE,,,,,Mr. Abelino Quintero,Yes,No,No,,,,,,,,,, +1506,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS FISKE, JOHN",6145 SOUTH INGLESIDE ,60637,5350990,,,,,,,CHICAGO PUBLIC SCHOOLS,WOODLAWN,,,,,Ms. Cynthia Miller,Yes,No,No,,,,,,,,,, +1507,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS FULLER, MELVILLE W.",4214 S ST LAWRENCE ,60653,5351687,,,,,,,CHICAGO PUBLIC SCHOOLS,GRAND BOULEVARD,,,,,Dr. Patricia D. Kennedy,Yes,No,No,,,,,,,,,, +1508,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS FULTON, ROBERT",5300 S HERMITAGE ,60609,5359000,,,,,,,CHICAGO PUBLIC SCHOOLS,NEW CITY,,,,,Dr. Warletta Johnson-Brookins,Yes,No,No,,,,,,,,,, +1509,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS FUNSTON, FREDERICK",2010 N CENTRAL PARK ,60647,5344125,,,,,,,CHICAGO PUBLIC SCHOOLS,LOGAN SQUARE,,,,,Ms. Nilma Osiecki,Yes,No,No,,,,,,,,,, +1510,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS GALE COMM. ACAD., STEPHEN F.",1631 W JONQUIL TERRACE ,60626,5342100,,,,,,,CHICAGO PUBLIC SCHOOLS,ROGERS PARK,,,,,Mr. Richard P. Glass Jr.,Yes,No,No,,,,,,,,,, +1511,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS GARY, JOSEPH E.",3740 W 31ST ST ,60623,5341455,,,,,,,CHICAGO PUBLIC SCHOOLS,SOUTH LAWNDALE,,,,,Mr. Alberto Juarez,Yes,No,No,,,,,,,,,, +1512,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS GOLDBLATT, NATHAN R.",4257 W ADAMS ,60624,5346860,,,,,,,CHICAGO PUBLIC SCHOOLS,WEST GARFIELD PARK,,,,,Ms. Yvette R. Currington,Yes,No,No,,,,,,,,,, +1513,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS GOUDY, WILLIAM C.",5120 N WINTHROP ,60640,5342480,,,,,,,CHICAGO PUBLIC SCHOOLS,UPTOWN,,,,,Pamela S. Brandt,Yes,No,No,,,,,,,,,, +1514,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS GRAHAM, ALEXANDER",4436 S UNION ,60609,5351308,,,,,,,CHICAGO PUBLIC SCHOOLS,NEW CITY,,,,,Mr. John Nichols,Yes,No,No,,,,,,,,,, +1515,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS GRESHAM, WALTER Q.",8524 S GREEN ,60620,5353350,,,,,,,CHICAGO PUBLIC SCHOOLS,AUBURN GRESHAM,,,,,Ms. Diedrus U. Brown,Yes,No,No,,,,,,,,,, +1516,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS GUGGENHEIM, SIMON",7141 S MORGAN ST ,60621,5353587,,,,,,,CHICAGO PUBLIC SCHOOLS,ENGLEWOOD,,,,,Ms. Mary D. McNair,Yes,No,No,,,,,,,,,, +1517,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS HALEY, ALEX",11411 S EGGLESTON ,60628,5355345,,,,,,,CHICAGO PUBLIC SCHOOLS,ROSELAND,,,,,Ms. Vaida Williams,Yes,No,No,,,,,,,,,, +1518,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS HAMLINE, JOHN H",4747 S BISHOP ST ,60609,5354565,,,,,,,CHICAGO PUBLIC SCHOOLS,NEW CITY,,,,,Valerie Brown,Yes,No,No,,,,,,,,,, +1519,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS HAY COMM. ACADEMY, JOHN",1018 N LARAMIE ,60651,5346000,,,,,,,CHICAGO PUBLIC SCHOOLS,AUSTIN,,,,,Ms. Beryl D. Guy,Yes,No,No,,,,,,,,,, +1520,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS HENSON, MATTHEW A.",1326 S AVERS ,60623,5341804,,,,,,,CHICAGO PUBLIC SCHOOLS,NORTH LAWNDALE,,,,,Mr. Robert J. Pales,Yes,No,No,,,,,,,,,, +1521,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS HERBERT, VICTOR",2131 W MONROE ,60612,5347806,,,,,,,CHICAGO PUBLIC SCHOOLS,NEAR WEST SIDE,,,,,Ms. Denise J. Gillespie,Yes,No,No,,,,,,,,,, +1522,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS HIGGINS C.A., THOMAS J.",11710 S MORGAN ,60643,5355625,,,,,,,CHICAGO PUBLIC SCHOOLS,WEST PULLMAN,,,,,Dr. Mabel Alfred,Yes,No,No,,,,,,,,,, +1523,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS HINTON, WILLIAM AUGUSTUS",644 W 71ST STREET ,60621,5353875,,,,,,,CHICAGO PUBLIC SCHOOLS,ENGLEWOOD,,,,,Ms. Pamela Brunson-Allen,Yes,No,No,,,,,,,,,, +1524,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS HOLMES, OLIVER WENDELL",955 W GARFIELD ,60621,5359025,,,,,,,CHICAGO PUBLIC SCHOOLS,ENGLEWOOD,,,,,Ms. Dorothy Susan Naughton,Yes,No,No,,,,,,,,,, +1525,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS HUGHES, LANGSTON",226 W 104TH ST ,60628,5355075,,,,,,,CHICAGO PUBLIC SCHOOLS,ROSELAND,,,,,Anita Muse,Yes,No,No,,,,,,,,,, +1526,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS HURLEY, EDWARD N.",3849 W 69TH PLACE ,60629,5352068,,,,,,,CHICAGO PUBLIC SCHOOLS,WEST LAWN,,,,,Mrs. Dolores Cupp,Yes,No,No,,,,,,,,,, +1527,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS JENNER ACADEMY OF THE ARTS, EDWARD",1119 N CLEVELAND ,60610,5348440,,,,,,,CHICAGO PUBLIC SCHOOLS,NEAR NORTH SIDE,,,,,Ms. Zelma Woodson,Yes,No,No,,,,,,,,,, +1528,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS JOHNSON, JAMES WELDON",1504 S ALBANY ,60623,5341833,,,,,,,CHICAGO PUBLIC SCHOOLS,NORTH LAWNDALE,,,,,Ms. Sallie P. Pinkston,Yes,No,No,,,,,,,,,, +1529,chapin_dfss_providers_2011_070212.csv,CHICAGO PUBLIC SCHOOLS JORDAN COMM.,7414 NORTH WOLCOTT ,60626,5342220,,,,,,,CHICAGO PUBLIC SCHOOLS,ROGERS PARK,,,,,Willie White,Yes,No,No,,,,,,,,,, +1530,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS JUNGMAN, JOSEPH",1746 S MILLER ,60608,5347375,,,,,,,CHICAGO PUBLIC SCHOOLS,LOWER WEST SIDE,,,,,Mrs. Zaida Hernandez,Yes,No,No,,,,,,,,,, +1531,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS KERSHAW, JOSHUA D.",6450 S LOWE ,60621,5353050,,,,,,,CHICAGO PUBLIC SCHOOLS,ENGLEWOOD,,,,,Mrs. Patricia A. Johnson,Yes,No,No,,,,,,,,,, +1532,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS KOHN, ALFRED DAVID",10414 S STATE ,60628,5355489,,,,,,,CHICAGO PUBLIC SCHOOLS,ROSELAND,,,,,Ms. Carol Briggs,Yes,No,No,,,,,,,,,, +1533,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS LAFAYETTE, JEAN DE",2714 W AUGUSTA BLVD ,60622,5344326,,,,,,,CHICAGO PUBLIC SCHOOLS,WEST TOWN,,,,,Mrs. Trisha Shrode,Yes,No,No,,,,,,,,,, +1534,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS LAVIZZO, MILDRED I.",138 W 109TH ST ,60628,5355300,,,,,,,CHICAGO PUBLIC SCHOOLS,ROSELAND,,,,,Mrs.Tracey Stelly,Yes,No,No,,,,,,,,,, +1535,chapin_dfss_providers_2011_070212.csv,CHICAGO PUBLIC SCHOOLS LAWNDALE COMM. ACADEMY,3500 W DOUGLAS BLVD ,60623,5341635,,,,,,,CHICAGO PUBLIC SCHOOLS,NORTH LAWNDALE,,,,,Ms. Jeannine M. Wolf,Yes,No,No,,,,,,,,,, +1536,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS LINNE, CARL VON",3221 N SACRAMENTO ,60618,5345262,,,,,,,CHICAGO PUBLIC SCHOOLS,AVONDALE,,,,,Mr. Daniel W. Rohan,Yes,No,No,,,,,,,,,, +1537,chapin_dfss_providers_2011_070212.csv,CHICAGO PUBLIC SCHOOLS LITTLE VILLAGE,2620 S LAWNDALE AVE ,60623,5341880,,,,,,,CHICAGO PUBLIC SCHOOLS,SOUTH LAWNDALE,,,,,Elsa Carmona,Yes,No,No,,,,,,,,,, +1538,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS LLOYD, HENRY D.",2103 N LAMON AV ,60639,5343070,,,,,,,CHICAGO PUBLIC SCHOOLS,BELMONT CRAGIN,,,,,Dr. Miryam Assaf-Keller,Yes,No,No,,,,,,,,,, +1539,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS MADISON, JAMES",7433 S DORCHESTER ,60619,5350551,,,,,,,CHICAGO PUBLIC SCHOOLS,SOUTH SHORE,,,,,Dr. Beverly J. Greene,Yes,No,No,,,,,,,,,, +1540,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS MASON, ROSWELL B.",4216 W 19TH ST ,60623,5341530,,,,,,,CHICAGO PUBLIC SCHOOLS,NORTH LAWNDALE,,,,,Ms. Tonya Tolbert,Yes,No,No,,,,,,,,,, +1541,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS MAY COMMUNITY ACADEMY, HORATIO",512 S LAVERGNE ,60644,5346140,,,,,,,CHICAGO PUBLIC SCHOOLS,AUSTIN,,,,,Roger Lewis,Yes,No,No,,,,,,,,,, +1542,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS MAYO, WILLIAM J. & CHARLES H.",249 E 39TH ST ,60653,5351260,,,,,,,CHICAGO PUBLIC SCHOOLS,GRAND BOULEVARD,,,,,Ms. Nadine D. Dillanado,Yes,No,No,,,,,,,,,, +1543,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS MCCLELLAN, GEORGE B.",3527 S WALLACE ,60609,5351732,,,,,,,CHICAGO PUBLIC SCHOOLS,BRIDGEPORT,,,,,Mary E. Garcia-Humphreys,Yes,No,No,,,,,,,,,, +1544,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS MCCORMICK, CYRUS H.",2712 S SAWYER AVE ,60623,5357252,,,,,,,CHICAGO PUBLIC SCHOOLS,SOUTH LAWNDALE,,,,,ms. Virginia S. Rivera,Yes,No,No,,,,,,,,,, +1545,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS MCCUTCHEON MAIN, JOHN T.",4846 N SHERIDAN ,60640,5342680,,,,,,,CHICAGO PUBLIC SCHOOLS,UPTOWN,,,,,Mrs. Carol Ann Lang,Yes,No,No,,,,,,,,,, +1546,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS MCDOWELL, MARY E.",1419 E 89TH ST ,60619,5356404,,,,,,,CHICAGO PUBLIC SCHOOLS,CALUMET HEIGHTS,,,,,Dr. Jo La Tanya Easterling-Hood,Yes,No,No,,,,,,,,,, +1547,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS MCKAY, FRANCIS M.",6901 S FAIRFIELD AVE ,60629,5359505,,,,,,,CHICAGO PUBLIC SCHOOLS,CHICAGO LAWN,,,,,Mrs. Dawn Prather-Hawk,Yes,No,No,,,,,,,,,, +1548,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS MCNAIR ACADEMY CENTER, RONALD E.",4820 W WALTON ,60651,5348980,,,,,,,CHICAGO PUBLIC SCHOOLS,AUSTIN,,,,,Dr. Shirley Dillard,Yes,No,No,,,,,,,,,, +1549,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS MCPHERSON, JAMES B.",4728 N WOLCOTT AV ,60640,5342625,,,,,,,CHICAGO PUBLIC SCHOOLS,LINCOLN SQUARE,,,,,Ms. Carmen A. Mendoza,Yes,No,No,,,,,,,,,, +1550,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS MONROE, JAMES",3651 W SCHUBERT AVE ,60647,5344155,,,,,,,CHICAGO PUBLIC SCHOOLS,LOGAN SQUARE,,,,,Mr. Edwin Rivera,Yes,No,No,,,,,,,,,, +1551,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS MORGAN, GARRETT A.",8407 S KERFOOT ,60620,5353366,,,,,,,CHICAGO PUBLIC SCHOOLS,AUBURN GRESHAM,,,,,Mrs. Linda E. Walker,Yes,No,No,,,,,,,,,, +1552,chapin_dfss_providers_2011_070212.csv,CHICAGO PUBLIC SCHOOLS MORTON CAREER ACADEMY,431 N TROY ,60612,5346791,,,,,,,CHICAGO PUBLIC SCHOOLS,HUMBOLDT PARK,,,,,Ms. Phyllis L. McCune,Yes,No,No,,,,,,,,,, +1553,chapin_dfss_providers_2011_070212.csv,CHICAGO PUBLIC SCHOOLS N.T.A. (NATIONAL TEACHERS ACADEMY),55 W CERMAK ,60616,5349970,,,,,,,CHICAGO PUBLIC SCHOOLS,NEAR SOUTH SIDE,,,,,Ms. Amy G. Rome,Yes,No,No,,,,,,,,,, +1554,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS NASH, HENRY H.",4837 W ERIE ST ,60644,5346125,,,,,,,CHICAGO PUBLIC SCHOOLS,AUSTIN,,,,,Ms. Tresa D. Dunbar,Yes,No,No,,,,,,,,,, +1555,chapin_dfss_providers_2011_070212.csv,CHICAGO PUBLIC SCHOOLS NEW FIELD PRIMARY SCHOOL,1707 W MORSE ,60626,5342760,,,,,,,CHICAGO PUBLIC SCHOOLS,ROGERS PARK,,,,,Ms. Blanca A. Trevino,Yes,No,No,,,,,,,,,, +1556,chapin_dfss_providers_2011_070212.csv,CHICAGO PUBLIC SCHOOLS NICHOLSON MATH AND SCIENCE,6006 S PEORIA ST ,60621,5353285,,,,,,,CHICAGO PUBLIC SCHOOLS,ENGLEWOOD,,,,,Mr. Rodney L. Hull,Yes,No,No,,,,,,,,,, +1557,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS NIXON, WILLIAM P.",2121 N KEELER AVE ,60639,5344375,,,,,,,CHICAGO PUBLIC SCHOOLS,HERMOSA,,,,,Herman Escobar,Yes,No,No,,,,,,,,,, +1558,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS O'KEEFFE, ISABELL C.",6940 S MERRILL ,60649,5350600,,,,,,,CHICAGO PUBLIC SCHOOLS,SOUTH SHORE,,,,,Mrs. Carolyn D. Townes,Yes,No,No,,,,,,,,,, +1559,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS O'TOOLE, LUKE",6550 S SEELEY ,60636,5359040,,,,,,,CHICAGO PUBLIC SCHOOLS,WEST ENGLEWOOD,,,,,Mr. Erick D. Pruitt,Yes,No,No,,,,,,,,,, +1560,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS PEABODY, ELIZABETH",1444 W AUGUSTA BLVD ,60622,5344170,,,,,,,CHICAGO PUBLIC SCHOOLS,WEST TOWN,,,,,Mr. Federico Flores,Yes,No,No,,,,,,,,,, +1561,chapin_dfss_providers_2011_070212.csv,CHICAGO PUBLIC SCHOOLS PECK SCHOOL,3826 W 58TH ST ,60629,5352450,,,,,,,CHICAGO PUBLIC SCHOOLS,WEST ELSDON,,,,,Okab Hassan,Yes,No,No,,,,,,,,,, +1562,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS PENN, WILLIAM",1616 S AVERS ,60623,5341665,,,,,,,CHICAGO PUBLIC SCHOOLS,NORTH LAWNDALE,,,,,Mrs. Sherryl Moore-Ollie,Yes,No,No,,,,,,,,,, +1563,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS PEREZ, MANUEL",1241 W 19TH STREET ,60608,5347650,,,,,,,CHICAGO PUBLIC SCHOOLS,LOWER WEST SIDE,,,,,Mrs. Sylvia Stamatoglou,Yes,No,No,,,,,,,,,, +1564,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS PICCOLO SPECIALTY SCHOOL, BRIAN",1040 N KEELER AVENUE ,60651,5344425,,,,,,,CHICAGO PUBLIC SCHOOLS,HUMBOLDT PARK,,,,,Mrs. Althea Hammond,Yes,No,No,,,,,,,,,, +1565,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS PICKARD, JOSIAH L.",2301 W 21ST STREET ,60608,5357280,,,,,,,CHICAGO PUBLIC SCHOOLS,LOWER WEST SIDE,,,,,Rigo Hernandez,Yes,No,No,,,,,,,,,, +1566,chapin_dfss_providers_2011_070212.csv,CHICAGO PUBLIC SCHOOLS PILSEN COMM. ACADEMY,1420 W 17TH STREET ,60608,5347675,,,,,,,CHICAGO PUBLIC SCHOOLS,LOWER WEST SIDE,,,,,Dr. Adel M. Ali,Yes,No,No,,,,,,,,,, +1567,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS REAVIS, WILLIAM CLAUDE",834 E 50TH STREET ,60615,5351060,,,,,,,CHICAGO PUBLIC SCHOOLS,KENWOOD,,,,,Mr. Michael T. Johnson,Yes,No,No,,,,,,,,,, +1568,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS REVERE, PAUL",1010 E 72ND STREET ,60619,5350618,,,,,,,CHICAGO PUBLIC SCHOOLS,GREATER GRAND CROSSING,,,,,Mrs. Veronica J. Thompson,Yes,No,No,,,,,,,,,, +1569,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS ROBINSON, JACKIE R.",4225 S LAKE PARK AVE ,60653,5351777,,,,,,,CHICAGO PUBLIC SCHOOLS,OAKLAND,,,,,Ms. Keshia B. Warner,Yes,No,No,,,,,,,,,, +1570,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS RUGGLES, MARTHA M.",7831 S PRAIRIE AVE ,60619,5353085,,,,,,,CHICAGO PUBLIC SCHOOLS,GREATER GRAND CROSSING,,,,,Ida Patterson,Yes,No,No,,,,,,,,,, +1571,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS RYDER, WILLIAM H.",8716 S WALLACE STREET ,60620,5353843,,,,,,,CHICAGO PUBLIC SCHOOLS,AUBURN GRESHAM,,,,,Mrs. Janice Preston,Yes,No,No,,,,,,,,,, +1572,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS RYERSON, MARTIN A.",646 N LAWNDALE ,60624,5346700,,,,,,,CHICAGO PUBLIC SCHOOLS,HUMBOLDT PARK,,,,,Mr. Lorenzo Russell,Yes,No,No,,,,,,,,,, +1573,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS SANDOVAL, SOCORRO",5534 S SAINT LOUIS AVE ,60629,5350457,,,,,,,CHICAGO PUBLIC SCHOOLS,GAGE PARK,,,,,Dr. Ana Expinoza,Yes,No,No,,,,,,,,,, +1574,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS SAUCEDO SCHOLASTIC ACADEMY, MARIA",2850 W 24 TH BLVD ,60623,5341770,,,,,,,CHICAGO PUBLIC SCHOOLS,SOUTH LAWNDALE,,,,,Mrs. Leticia L. Gonzalez,Yes,No,No,,,,,,,,,, +1575,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS SEWARD, WILLIAM H.",4600 S HERMITAGE AVE ,60609,5354890,,,,,,,CHICAGO PUBLIC SCHOOLS,NEW CITY,,,,,Marcey Reyes,Yes,No,No,,,,,,,,,, +1576,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS SEXTON, AUSTIN O.",6020 S LANGLEY ,60637,5350640,,,,,,,CHICAGO PUBLIC SCHOOLS,WOODLAWN,,,,,Mrs. Ginger V. Bryant,Yes,No,No,,,,,,,,,, +1577,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS SHERWOOD, JESSIE",245 W 57TH ST ,60621,5350829,,,,,,,CHICAGO PUBLIC SCHOOLS,ENGLEWOOD,,,,,Alice Buzanis,Yes,No,No,,,,,,,,,, +1578,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS SHIELDS, JAMES",4250 S ROCKWELL ST ,60632,5357285,,,,,,,CHICAGO PUBLIC SCHOOLS,BRIGHTON PARK,,,,,Philip Salemi,Yes,No,No,,,,,,,,,, +1579,chapin_dfss_providers_2011_070212.csv,CHICAGO PUBLIC SCHOOLS SONGHAI LEARNING INSTITUTE,11725 S PERRY AVE ,60628,5355547,,,,,,,CHICAGO PUBLIC SCHOOLS,WEST PULLMAN,,,,,Ms. Taliva A. Tillman,Yes,No,No,,,,,,,,,, +1580,chapin_dfss_providers_2011_070212.csv,CHICAGO PUBLIC SCHOOLS SPENCER MATH AND SCIENCE ACADEMY,214 N LAVERGNE ,60644,5346150,,,,,,,CHICAGO PUBLIC SCHOOLS,AUSTIN,,,,,Mr. Shawn L. Jackson,Yes,No,No,,,,,,,,,, +1581,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS STAGG, AMOS A.",7424 S MORGAN ST ,60621,5353565,,,,,,,CHICAGO PUBLIC SCHOOLS,ENGLEWOOD,,,,,Ms. Ruth A. Miller,Yes,No,No,,,,,,,,,, +1582,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS STEWART, GRAEME",4525 N KENMORE ,60640,5342640,,,,,,,CHICAGO PUBLIC SCHOOLS,UPTOWN,,,,,Ms. Patricia A. Turner,Yes,No,No,,,,,,,,,, +1583,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS STOCKTON, JOSEPH",4420 N BEACON ST ,60640,5342450,,,,,,,CHICAGO PUBLIC SCHOOLS,UPTOWN,,,,,Ms. Jill Besenjak,Yes,No,No,,,,,,,,,, +1584,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS STOWE, HARRIET BEECHER",3444 W WABANSIA ,60647,5344175,,,,,,,CHICAGO PUBLIC SCHOOLS,HUMBOLDT PARK,,,,,Dr. Charles L. Kyle,Yes,No,No,,,,,,,,,, +1585,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS TANNER, HENRY O.",7350 S EVANS ,60619,5353870,,,,,,,CHICAGO PUBLIC SCHOOLS,GREATER GRAND CROSSING,,,,,Mrs. Mona T. Miller,Yes,No,No,,,,,,,,,, +1586,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS THOMAS CENTER, VELMA",3625 S HOYNE ,60609,5354088,,,,,,,CHICAGO PUBLIC SCHOOLS,MCKINLEY PARK,,,,,Elizabeth Najera,Yes,No,No,,,,,,,,,, +1587,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS THORP, JAMES N.",8914 S BUFFALO AVE ,60617,5356250,,,,,,,CHICAGO PUBLIC SCHOOLS,SOUTH CHICAGO,,,,,Tony Fisher,Yes,No,No,,,,,,,,,, +1588,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS WARD, LAURA S.",410 N MONTICELLO ,60624,5346440,,,,,,,CHICAGO PUBLIC SCHOOLS,HUMBOLDT PARK,,,,,Ms. Relanda Hobbs,Yes,No,No,,,,,,,,,, +1589,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS WHITTIER, JOHN GREENLEAF",1900 W 23RD ST ,60608,5354590,,,,,,,CHICAGO PUBLIC SCHOOLS,LOWER WEST SIDE,,,,,Ms. Zoila Garcia,Yes,No,No,,,,,,,,,, +1590,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS WILLIAMS, DANIEL H.",2710 S DEARBORN ,60616,5349226,,,,,,,CHICAGO PUBLIC SCHOOLS,DOUGLAS,,,,,Ms. Lashonn Graham,Yes,No,No,,,,,,,,,, +1591,chapin_dfss_providers_2011_070212.csv,CHICAGO PUBLIC SCHOOLS WOODLAWN COMMUNITY SCHOOL,6657 S KIMBARK AVE ,60637,5350801,,,,,,,CHICAGO PUBLIC SCHOOLS,WOODLAWN,,,,,Frank Embil,Yes,No,No,,,,,,,,,, +1592,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS WOODSON SOUTH, CARTER G.",4414 S EVANS ,60653,5351280,,,,,,,CHICAGO PUBLIC SCHOOLS,GRAND BOULEVARD,,,,,Ms. Renee A. Thomas,Yes,No,No,,,,,,,,,, +1593,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS YATES, RICHARD",1839 N RICHMOND ,60647,5344550,,,,,,,CHICAGO PUBLIC SCHOOLS,LOGAN SQUARE,,,,,Mr. Harry Randell,Yes,No,No,,,,,,,,,, +1594,chapin_dfss_providers_2011_070212.csv,"CHICAGO PUBLIC SCHOOLS YOUNG, ELLA FLAGG",1434 N PARKSIDE ,60651,5346200,,,,,,,CHICAGO PUBLIC SCHOOLS,AUSTIN,,,,,Ms. Crystal Bell,Yes,No,No,,,,,,,,,, +1595,chapin_dfss_providers_2011_070212.csv,CHICAGO PUBLIC SCHOOLS ZAPATA ACADEMY,2728 S KOSTNER AVE ,60623,5341390,,,,,,,CHICAGO PUBLIC SCHOOLS,SOUTH LAWNDALE,,,,,Ms. Ruth F. Garcia,Yes,No,No,,,,,,,,,, +1596,chapin_dfss_providers_2011_070212.csv,CHICAGO STATE UNIVERSITY FCCH-EVELYN CROSS,724 W 116TH PL ,60628,4374020,,,,,,,CHICAGO STATE UNIVERSITY,WEST PULLMAN,,,,,Evelyn Lang,No,Yes,No,"5992IP(EHS Collaboration Enhanced Home IP), 5992IT(EHS Enhan",,,,,,,,, +1597,chapin_dfss_providers_2011_070212.csv,CHICAGO STATE UNIVERSITY FCCH-LATASHIE TAIWO,8609 S INGLESIDE ,60619,4880716,,,,,,,CHICAGO STATE UNIVERSITY,CHATHAM,,,,,Evelyn Lang,No,Yes,No,"5971IP(EHS Collaboration Enhanced Home IP), 5973IT(Child Car",,,,,,,,, +1598,chapin_dfss_providers_2011_070212.csv,CHICAGO STATE UNIVERSITY GRANT CREATIVE LEARNING CENTER,4025 S DREXEL BLVD ,60653,2858440,,,,,,,CHICAGO STATE UNIVERSITY,OAKLAND,,,,,Mary Billingsey,Yes,No,Yes,"4383SA(School Age (SA)), 4383PS(Child Care PS Center), 4370P",,,,,,,,, +1599,chapin_dfss_providers_2011_070212.csv,CHICAGO STATE UNIVERSITY RAISE UP A CHILD,124 E 113 ST ,60628,7851172,,,,,,,CHICAGO STATE UNIVERSITY,ROSELAND,,,,,,Yes,Yes,Yes,"4138PS(Child Care PS Center), 4134PS(HS Collaboration with C",,,,,,,,, +1600,chapin_dfss_providers_2011_070212.csv,CHICAGO STATE UNIVERSITY SHINING STAR EARLY LEARNING ACADEMY - II,854 E 79TH ST ,60619,4191994,,,,,,,CHICAGO STATE UNIVERSITY,GREATER GRAND CROSSING,,,,,Shnida Wray,Yes,No,No,4142PS(HS Collaboration with Childcare),,,,,,,,, +1601,chapin_dfss_providers_2011_070212.csv,CHICAGO STATE UNIVERSITY SHINING STAR EARLY LEARNING ACADEMY - III,338 E 103RD ST ,60628,4191994,,,,,,,CHICAGO STATE UNIVERSITY,ROSELAND,,,,,Erica Shirley,Yes,No,No,4143PS(HS Collaboration with Childcare),,,,,,,,, +1602,chapin_dfss_providers_2011_070212.csv,CHICAGO STATE UNIVERSITY THE LOVE LEARNING CENTER,228 E 61ST ST ,60637,7520243,,,,,,,CHICAGO STATE UNIVERSITY,WASHINGTON PARK,,,,,Burchell Love,Yes,No,No,,,,,,,,,, +1603,chapin_dfss_providers_2011_070212.csv,CHICAGO STATE UNIVERSITY TINY TOTS VILLA,8128 S KING DR ,60641,4836251,,,,,,,CHICAGO STATE UNIVERSITY,CHATHAM,,,,,Judith Tyson,Yes,No,Yes,"4292PS(Child Care PS Center), 4205PS(HS Collaboration with C",,,,,,,,, +1604,chapin_dfss_providers_2011_070212.csv,CHICAGO YOUTH CENTERS ABC,3415 W 13TH PL ,60623,7625655,,,,,,,CHICAGO YOUTH CENTERS,NORTH LAWNDALE,,,,,Talina Bowie,Yes,No,No,,,,,,,,,, +1605,chapin_dfss_providers_2011_070212.csv,CHICAGO YOUTH CENTERS CENTRO NUESTRO,3222 W DIVISION ,60651,4893157,,,,,,,CHICAGO YOUTH CENTERS,HUMBOLDT PARK,,,,,Valerie Meritt,Yes,No,No,4301PS(HS Collaboration with Childcare & PreK),,,,,,,,, +1606,chapin_dfss_providers_2011_070212.csv,CHICAGO YOUTH CENTERS CUDDLE CARE ACADEMY,4800 S LAKE PARK AVE ,60615,2851114,,,,,,,CHICAGO YOUTH CENTERS,KENWOOD,,,,,,Yes,No,No,,,,,,,,,, +1607,chapin_dfss_providers_2011_070212.csv,CHICAGO YOUTH CENTERS DOROTHY GAUTREAUX,975 E 132ND ST ,60627,2911000,,,,,,,CHICAGO YOUTH CENTERS,RIVERDALE,,,,,Glenda Williams,Yes,No,No,,,,,,,,,, +1608,chapin_dfss_providers_2011_070212.csv,CHICAGO YOUTH CENTERS EZZARD CHARLES SCHOOL,7946 S ASHLAND AVE ,60620,4870227,,,,,,,CHICAGO YOUTH CENTERS,AUBURN GRESHAM,,,,,Eldora Davis,Yes,No,No,,,,,,,,,, +1609,chapin_dfss_providers_2011_070212.csv,CHICAGO YOUTH CENTERS FELLOWSHIP HOUSE,844 W 32ND ST ,60608,3262282,,,,,,,CHICAGO YOUTH CENTERS,BRIDGEPORT,,,,,Levory Wilder,Yes,No,No,,,,,,,,,, +1610,chapin_dfss_providers_2011_070212.csv,CHICAGO YOUTH CENTERS JUST LIKE HOME,301 E 79TH ST ,60619,7830955,,,,,,,CHICAGO YOUTH CENTERS,CHATHAM,,,,,,No,No,No,,,,,,,,,, +1611,chapin_dfss_providers_2011_070212.csv,CHICAGO YOUTH CENTERS KIDS R US,7453 S VINCENNES ,60621,8465437,,,,,,,CHICAGO YOUTH CENTERS,GREATER GRAND CROSSING,,,,,Tammy Oliver,Yes,No,No,,,,,,,,,, +1612,chapin_dfss_providers_2011_070212.csv,CHICAGO YOUTH CENTERS LOTTS OF LOVE,1139 W 79TH ST ,60620,8744954,,,,,,,CHICAGO YOUTH CENTERS,AUBURN GRESHAM,,,,,Carol Quinn,Yes,No,No,,,,,,,,,, +1613,chapin_dfss_providers_2011_070212.csv,CHICAGO YOUTH CENTERS MT. MORIAH-TAYLOR,1501 N HARDING ,60651,2785837,,,,,,,CHICAGO YOUTH CENTERS,HUMBOLDT PARK,,,,,Elizabeth Heilbronn,Yes,No,No,7065PS(HS Collaboration with Childcare & PreK),,,,,,,,, +1614,chapin_dfss_providers_2011_070212.csv,CHICAGO YOUTH CENTERS PATHWAY,6535 S KEDZIE AVE ,60629,,,,,,,,CHICAGO YOUTH CENTERS,CHICAGO LAWN,,,,,,Yes,No,No,,,,,,,,,, +1615,chapin_dfss_providers_2011_070212.csv,CHICAGO YOUTH CENTERS PATHWAYS TO LEARNING CC,3418 W 79TH ST ,60652,7765439,,,,,,,CHICAGO YOUTH CENTERS,ASHBURN,,,,,Carol Quinn,Yes,No,No,,,,,,,,,, +1616,chapin_dfss_providers_2011_070212.csv,CHICAGO YOUTH CENTERS PATHWAYS TO LEARNING CC1,3460 W 79TH ST ,60652,4369244,,,,,,,CHICAGO YOUTH CENTERS,ASHBURN,,,,,Carol Quinn,Yes,No,No,,,,,,,,,, +1617,chapin_dfss_providers_2011_070212.csv,CHICAGO YOUTH CENTERS RACHEL'S 1,3430 W ROOSEVELT RD ,60624,5331837,,,,,,,CHICAGO YOUTH CENTERS,NORTH LAWNDALE,,,,,Carol Quinn,Yes,No,No,,,,,,,,,, +1618,chapin_dfss_providers_2011_070212.csv,CHICAGO YOUTH CENTERS RACHEL'S 2,5242 W NORTH AVE ,60639,2371444,,,,,,,CHICAGO YOUTH CENTERS,AUSTIN,,,,,Carol Quinn,Yes,No,No,,,,,,,,,, +1619,chapin_dfss_providers_2011_070212.csv,CHICAGO YOUTH CENTERS REBECCA CROWN,7601 S PHILLIPS ,60649,7310444,,,,,,,CHICAGO YOUTH CENTERS,SOUTH SHORE,,,,,Annette Anthony,Yes,No,No,7088PS(HS Collaboration with Childcare & PreK),,,,,,,,, +1620,chapin_dfss_providers_2011_070212.csv,CHICAGO YOUTH CENTERS ROSELAND CHILD DEVELOPMENT,461 E 111TH ST ,60627,4684405,,,,,,,CHICAGO YOUTH CENTERS,ROSELAND,,,,,Leola Clay,Yes,No,No,7066PS(HS Collaboration with Childcare & PreK),,,,,,,,, +1621,chapin_dfss_providers_2011_070212.csv,CHICAGO YOUTH CENTERS SHINING STAR 1,3012 16 E 92ND ST ,60617,9787827,,,,,,,CHICAGO YOUTH CENTERS,SOUTH DEERING,,,,,Carol Quinn,Yes,No,No,,,,,,,,,, +1622,chapin_dfss_providers_2011_070212.csv,CHINESE AMERICAN SERVICE LEAGUE CHINESE AMERICAN SERVICE LEAGUE CHILD DEV CTR,2141 S TAN COURT ,60616,7910454,,,,,,,CHINESE AMERICAN SERVICE LEAGUE,ARMOUR SQUARE,,,,,Weilian Xin,Yes,No,Yes,"3248PS (HS Collaboration with Childcare & PreK), 2771PS (Chi",,,,,,,,, +1623,chapin_dfss_providers_2011_070212.csv,CHRISTOPHER HOUSE GREENVIEW,2507 N GREENVIEW ,60614,4721083,,,,,,,CHRISTOPHER HOUSE,LINCOLN PARK,,,,,Aimee Washington,Yes,No,No,"2681IT(Child Care IT Center), 3406PS(HS Collaboration with C",,,,,,,,, +1624,chapin_dfss_providers_2011_070212.csv,CHRISTOPHER HOUSE LOGAN SQUARE,3255 W ALTGELD ,60647,2354073,,,,,,,CHRISTOPHER HOUSE,LOGAN SQUARE,,,,,Carmen Velez,Yes,No,Yes,"4321IT(Child Care IT Center), 7087PS(HS Collaboration with C",,,,,,,,, +1625,chapin_dfss_providers_2011_070212.csv,CHRISTOPHER HOUSE ROGERS PARK,7059 N GREENVIEW ,60626,2745477,,,,,,,CHRISTOPHER HOUSE,ROGERS PARK,,,,,Joni Rudds,Yes,No,Yes,"7073PS(HS Collaboration with Childcare & PreK), 4147PS(Child",,,,,,,,, +1626,chapin_dfss_providers_2011_070212.csv,CHRISTOPHER HOUSE UPTOWN,4701 N WINTHROP ,60640,7694540,,,,,,,CHRISTOPHER HOUSE,UPTOWN,,,,,Karen Ross William,Yes,No,No,"2672IT(Child Care IT Center), 3405PS(HS Collaboration with C",,,,,,,,, +1627,chapin_dfss_providers_2011_070212.csv,CHURCH OF GOD TRUE BELIEVERS CHURCH OF GOD COMMUNITY DAY CARE,1738 W MARQUETTE ST ,60636,,,,,,,,CHURCH OF GOD TRUE BELIEVERS,WEST ENGLEWOOD,,,,,Rev. Sheila Sims,Yes,No,No,7130PS(HS Collaboration with Childcare),,,,,,,,, +1628,chapin_dfss_providers_2011_070212.csv,COMMUNITY LEARNING CENTER COMMUNITY LEARNING CENTER,10612 S WENTWORTH ,60628,9284104,,,,,,,COMMUNITY LEARNING CENTER,ROSELAND,,,,,Wanda Avery,Yes,No,No,,,,,,,,,, +1629,chapin_dfss_providers_2011_070212.csv,DOROTHY SUTTON BRANCH DOROTHY SUTTON BRANCH,8601 S STATE ,60619,7234445,,,,,,,DOROTHY SUTTON BRANCH,CHATHAM,,,,,Ms. Ola Kirksey,Yes,No,No,7123PS(HS Collaboration with Childcare),,,,,,,,, +1630,chapin_dfss_providers_2011_070212.csv,"DOUGLASS-TUBMAN YOUTH MINISTRIES,INC. DOUGLASS-TUBMAN CHILD DEV CTR",5010 W CHICAGO AVE ,60651,6266581,,,,,,,"DOUGLASS-TUBMAN YOUTH MINISTRIES,INC.",AUSTIN,,,,,Mrs. Andrea Young,No,No,No,"2101SA(School Age (SA)), 2100PS(Child Care PS Center)",,,,,,,,, +1631,chapin_dfss_providers_2011_070212.csv,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO ALLISON'S INFANT & TODDLER CENTER,234 E 114TH ST ,60628,8404502,,,,,,,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO,ROSELAND,,,,,Allison Caldwell,No,Yes,No,,,,,,,,,, +1632,chapin_dfss_providers_2011_070212.csv,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO CHANNINGS CHILD CARE,5701 W DIVISION ST ,60651,4572990,,,,,,,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO,AUSTIN,,,,,Ruth Kimble,Yes,No,No,,,,,,,,,, +1633,chapin_dfss_providers_2011_070212.csv,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO CHILDREN'S INTERNATIONAL ACADEMY,5850 W ROOSEVELT RD ,60644,2870808,,,,,,,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO,AUSTIN,,,,,Gaby Servin,Yes,No,No,,,,,,,,,, +1634,chapin_dfss_providers_2011_070212.csv,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO CHIPPER PRESCHOOL,8225 S KEDZIE ,60652,7785757,,,,,,,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO,ASHBURN,,,,,Ms. Nelson,Yes,No,No,,,,,,,,,, +1635,chapin_dfss_providers_2011_070212.csv,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO FIFTH CITY,3411 W JACKSON ,60624,8268686,,,,,,,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO,EAST GARFIELD PARK,,,,,Ms. Veal,Yes,No,No,,,,,,,,,, +1636,chapin_dfss_providers_2011_070212.csv,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO FIRST START CHILDREN'S ACADEMY,4753 W WASHINGTON BLVD ,60644,3794928,,,,,,,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO,AUSTIN,,,,,Ms. Cachet,Yes,Yes,No,,,,,,,,,, +1637,chapin_dfss_providers_2011_070212.csv,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO FIRST START CHILDREN'S ACADEMY SOUTH,5700 S ASHLAND AVE 1ST FL ,60636,2777090,,,,,,,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO,WEST ENGLEWOOD,,,,,Beverly Mims,No,No,No,,,,,,,,,, +1638,chapin_dfss_providers_2011_070212.csv,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO FRESH START DAY CARE CENTER,6924 W NORTH AVENUE ,60635,4792870,,,,,,,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO,AUSTIN,,,,,Claudia Aguayo,Yes,No,No,,,,,,,,,, +1639,chapin_dfss_providers_2011_070212.csv,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO GILCHRIST MARCHMAN,1001 W ROOSEVELT RD 606 ,81559,4927402,,,,,,,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO,NEAR WEST SIDE,,,,,Ms. Adrienne Hamilton,Yes,Yes,Yes,"4249IT(Child Care IT Center), 7012PS(HS Collaboration with C",,,,,,,,, +1640,chapin_dfss_providers_2011_070212.csv,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO IMANI'S CHILDREN,11443 S HALSTED ST ,60628,6609667,,,,,,,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO,ROSELAND,,,,,Marianne Powell-Dee,Yes,Yes,No,,,,,,,,,, +1641,chapin_dfss_providers_2011_070212.csv,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO LITTLE GIANTS,3863 W HARRISON ,60624,2656330,,,,,,,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO,WEST GARFIELD PARK,,,,,Ms. Granberry,Yes,No,No,,,,,,,,,, +1642,chapin_dfss_providers_2011_070212.csv,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO LIZ-NEY-LAND #1,4610 S PULASKI RD ,60632,2479779,,,,,,,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO,ARCHER HEIGHTS,,,,,Liz Medrano,Yes,No,No,,,,,,,,,, +1643,chapin_dfss_providers_2011_070212.csv,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO LIZ-NEY-LAND #2,6010 S PULASKI ,60632,5828355,,,,,,,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO,WEST LAWN,,,,,Liz Medrano,Yes,No,No,,,,,,,,,, +1644,chapin_dfss_providers_2011_070212.csv,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO LORDANCHILD DAYCARE,3344 W 79TH ST ,60652,4344918,,,,,,,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO,ASHBURN,,,,,Quentin Donald,Yes,No,No,,,,,,,,,, +1645,chapin_dfss_providers_2011_070212.csv,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO MOTHER'S TOUCH,2501 W 71ST ST ,60629,4363177,,,,,,,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO,CHICAGO LAWN,,,,,Ethel Daniels,Yes,No,No,,,,,,,,,, +1646,chapin_dfss_providers_2011_070212.csv,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO NEAR SOUTH SIDE CHILD DEVELOPMENT CENTER,2214 S FEDERAL ST ,60616,5483614,,,,,,,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO,ARMOUR SQUARE,,,,,Catherine Rokusek,No,Yes,No,"4388IP(EHS Collaboration Enhanced Center-IP), 4388EP(EHS Col",,,,,,,,, +1647,chapin_dfss_providers_2011_070212.csv,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO RACHEL'S LEARNING CENTER #1,3430 W ROOSEVELT RD ,60624,5330444,,,,,,,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO,NORTH LAWNDALE,,,,,Rochelle Ray,No,Yes,No,,,,,,,,,, +1648,chapin_dfss_providers_2011_070212.csv,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO RACHEL'S LEARNING CENTER #2,5242 W NORTH AVE ,60639,2371444,,,,,,,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO,AUSTIN,,,,,Rochelle Ray,No,Yes,No,,,,,,,,,, +1649,chapin_dfss_providers_2011_070212.csv,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO WHIZ KIDS NURSERY CENTER,518 W 103RD ST ,60628,2339445,,,,,,,EASTER SEALS SOCIETY OF METROPOLITAN CHICAGO,WASHINGTON HEIGHTS,,,,,Diana Ross,No,Yes,No,,,,,,,,,, +1650,chapin_dfss_providers_2011_070212.csv,EL HOGAR DEL NINO FCCH-BLANCA ALATORRE,5738 S KENNETH AVE ,60623,5812872,,,,,,,EL HOGAR DEL NINO,WEST ELSDON,,,,,,Yes,Yes,No,"5861PS(HS Collaboration with Childcare Homes), 5653IP(EHS Co",,,,,,,,, +1651,chapin_dfss_providers_2011_070212.csv,EL HOGAR DEL NINO FCCH-ISABEL GUITERREZ,3448 W 59TH ST ,60623,4987085,,,,,,,EL HOGAR DEL NINO,GAGE PARK,,,,,,Yes,Yes,No,"5863PS(HS Collaboration with Childcare Homes), 5656IP(EHS Co",,,,,,,,, +1652,chapin_dfss_providers_2011_070212.csv,EL HOGAR DEL NINO FCCH-LOURDES VELASCO,4718 S LECLAIRE AVE ,60638,5822250,,,,,,,EL HOGAR DEL NINO,GARFIELD RIDGE,,,,,,Yes,Yes,No,"5867PS(HS Collaboration with Childcare Homes), 5814IP(EHS Co",,,,,,,,, +1653,chapin_dfss_providers_2011_070212.csv,EL HOGAR DEL NINO FCCH-MARIA GUZMAN,5548 S TRIPP AVE ,60629,7354542,,,,,,,EL HOGAR DEL NINO,WEST ELSDON,,,,,,Yes,Yes,No,"5873PS(HS Collaboration with Childcare Homes), 5657IP(EHS Co",,,,,,,,, +1654,chapin_dfss_providers_2011_070212.csv,EL HOGAR DEL NINO FCCH-ROSA LOPEZ,4924 S KEELER ,60632,5818869,,,,,,,EL HOGAR DEL NINO,ARCHER HEIGHTS,,,,,,Yes,Yes,No,"5878PS(HS Collaboration with Childcare Homes), 5659IP(EHS Co",,,,,,,,, +1655,chapin_dfss_providers_2011_070212.csv,EL HOGAR DEL NINO LOOMIS EL HOGAR,1718 S LOOMIS ,60608,5630644,,,,,,,EL HOGAR DEL NINO,LOWER WEST SIDE,,,,,Aurea De Jesus,Yes,No,No,"4136IT(Child Care IT Center), 8027PS(HS Collaboration with C",,,,,,,,, +1656,chapin_dfss_providers_2011_070212.csv,EL VALOR AMAZING GRACE CHILD CARE CENTER,11123 S HALSTED ST ,60628,2643636,,,,,,,EL VALOR,ROSELAND,,,,,Rachel Adesola,Yes,No,No,,,,,,,,,, +1657,chapin_dfss_providers_2011_070212.csv,EL VALOR BRENDA'S KIDS CLUB,3552 E 118TH STREET ,60617,6460007,,,,,,,EL VALOR,HEGEWISCH,,,,,Brenda Lopez,Yes,No,No,,,,,,,,,, +1658,chapin_dfss_providers_2011_070212.csv,EL VALOR CARLOS CANTU,2434 S KILDARE ,60623,2422700,,,,,,,EL VALOR,SOUTH LAWNDALE,,,,,Irma Carmona,Yes,No,Yes,"4305IT(Child Care IT Center), 4305PS(Child Care PS Center),",,,,,,,,, +1659,chapin_dfss_providers_2011_070212.csv,EL VALOR CENTRO INFANTIL (PUERTO RICAN COMM),2739 W DIVISION ,60622,3428866,,,,,,,EL VALOR,WEST TOWN,,,,,Xochiti Ramirez,Yes,No,No,,,,,,,,,, +1660,chapin_dfss_providers_2011_070212.csv,EL VALOR CHICAGO PRE-SCHOOL ACADEMY,532 E 87TH ST ,60619,4884495,,,,,,,EL VALOR,CHATHAM,,,,,Deneen Grover,Yes,No,No,,,,,,,,,, +1661,chapin_dfss_providers_2011_070212.csv,EL VALOR FCCH-PATRICIA COBA,2719 S MILLARD ,60623,5222345,,,,,,,EL VALOR,SOUTH LAWNDALE,,,,,Nina Duena,No,No,No,"5991IT(Child Care Home IT), 5991PS(Child Care Home PS), 5991",,,,,,,,, +1662,chapin_dfss_providers_2011_070212.csv,EL VALOR GUADALUPE REYES CHILDREN & FAMILY CENTER,1951 W 19TH ST ,60608,9972021,,,,,,,EL VALOR,LOWER WEST SIDE,,,,,Lydia Marcos,Yes,No,Yes,"4141PS(Child Care PS Center), 7026PS(HS Collaboration with C",,,,,,,,, +1663,chapin_dfss_providers_2011_070212.csv,EL VALOR KIDDY KARE LEARNING CENTER,4444 S KEDZIE ,60632,2476642,,,,,,,EL VALOR,BRIGHTON PARK,,,,,Marina Lopez,Yes,No,No,,,,,,,,,, +1664,chapin_dfss_providers_2011_070212.csv,EL VALOR KIDZ COLONY,6287 SOUTH ARCHER AVE ,60638,7678522,,,,,,,EL VALOR,GARFIELD RIDGE,,,,,Joy Avila,Yes,No,No,,,,,,,,,, +1665,chapin_dfss_providers_2011_070212.csv,EL VALOR LITTLE BROWN BEAR PRE-SCHOOL,8046 S WESTERN AVE ,60620,4343508,,,,,,,EL VALOR,ASHBURN,,,,,Deborah Broyles,Yes,No,No,,,,,,,,,, +1666,chapin_dfss_providers_2011_070212.csv,EL VALOR LITTLE KIDS VILLAGE,2656 W 71ST ST ,60629,7764753,,,,,,,EL VALOR,CHICAGO LAWN,,,,,Sherri Thompson,Yes,No,No,,,,,,,,,, +1667,chapin_dfss_providers_2011_070212.csv,EL VALOR LITTLE LEARNERS,5923 W 63RD STREET ,60638,5815541,,,,,,,EL VALOR,CLEARING,,,,,Marilyn Gonzalez,Yes,No,No,,,,,,,,,, +1668,chapin_dfss_providers_2011_070212.csv,EL VALOR LITTLE TYKES I,1711 W 35TH STREET ,60609,2547710,,,,,,,EL VALOR,MCKINLEY PARK,,,,,Sara Matta,Yes,No,No,,,,,,,,,, +1669,chapin_dfss_providers_2011_070212.csv,EL VALOR LITTLE TYKES II,1723 W 35TH STREET ,60609,5791791,,,,,,,EL VALOR,MCKINLEY PARK,,,,,Laura Gonzalez,Yes,No,No,,,,,,,,,, +1670,chapin_dfss_providers_2011_070212.csv,EL VALOR MARI'S BUMBLE BEE ACADEMY,9725 S COMMERCIAL AVE ,60617,2217692,,,,,,,EL VALOR,SOUTH DEERING,,,,,Marisol Lopez,Yes,No,No,,,,,,,,,, +1671,chapin_dfss_providers_2011_070212.csv,EL VALOR NEW AGE PREPARATORY (8940 S COTTAGE GROVE AVE),8940 S COTTAGE GROVE AVE ,60619,7832431,,,,,,,EL VALOR,CHATHAM,,,,,Tanya Furlow,No,No,No,,,,,,,,,, +1672,chapin_dfss_providers_2011_070212.csv,EL VALOR NEW AGE PREPARATORY ACADEMY (10951 S MICHIGAN AVE),10951 S MICHIGAN AVE ,60628,7857737,,,,,,,EL VALOR,ROSELAND,,,,,Tanya Furlow,Yes,No,No,,,,,,,,,, +1673,chapin_dfss_providers_2011_070212.csv,EL VALOR REY GONZALEZ CHILDREN AND FAMILY CENTER,3050 E 92ND ST ,60617,7219311,,,,,,,EL VALOR,SOUTH CHICAGO,,,,,Monica Williams,Yes,No,Yes,"2170IT(Child Care IT Center), 2170PS(Child Care PS Center),",,,,,,,,, +1674,chapin_dfss_providers_2011_070212.csv,EL VALOR TEDDY BEAR 1 (51ST STREET),2649 W 51ST STREET ,60632,4760700,,,,,,,EL VALOR,GAGE PARK,,,,,Francy Torres,Yes,No,No,,,,,,,,,, +1675,chapin_dfss_providers_2011_070212.csv,EL VALOR TEDDY BEAR 2 (COLUMBUS DR),3473 W COLUMBUS ,60652,4342327,,,,,,,EL VALOR,ASHBURN,,,,,Connie Gayton,Yes,No,No,,,,,,,,,, +1676,chapin_dfss_providers_2011_070212.csv,EL VALOR TEDDY BEAR 3 (6401 S PULASKI RD),6401 S PULASKI ,60629,2842292,,,,,,,EL VALOR,WEST LAWN,,,,,Natasha Catchings,Yes,No,No,,,,,,,,,, +1677,chapin_dfss_providers_2011_070212.csv,EL VALOR TEDDY BEAR 5 (5160 S PULASKI),5160 S PULASKI RD ,60632,2847030,,,,,,,EL VALOR,WEST ELSDON,,,,,Mary Zirngibl,Yes,No,No,,,,,,,,,, +1678,chapin_dfss_providers_2011_070212.csv,EL VALOR YOUNG SCHOLARS DEV. INS.,3038 W 59TH STREET ,60629,9181944,,,,,,,EL VALOR,GAGE PARK,,,,,Elizabeth Campbell,Yes,No,No,,,,,,,,,, +1679,chapin_dfss_providers_2011_070212.csv,ERIE NEIGHBORHOOD HOUSE CHARTER SCHOOL,1405 N WASHTENAW AVE ,60622,,,,,,,,ERIE NEIGHBORHOOD HOUSE,WEST TOWN,,,,,,No,No,No,,,,,,,,,, +1680,chapin_dfss_providers_2011_070212.csv,ERIE NEIGHBORHOOD HOUSE ERIE COMMUNITY CENTER,1701 W SUPERIOR ,60622,5635800,,,,,,,ERIE NEIGHBORHOOD HOUSE,WEST TOWN,,,,,Celena Roldan,Yes,No,No,"2640IT(Child Care IT Center), 3256PS(HS Collaboration with C",,,,,,,,, +1681,chapin_dfss_providers_2011_070212.csv,ERIE NEIGHBORHOOD HOUSE ERIE HOUSE,1347 W ERIE ,60622,,,,,,,,ERIE NEIGHBORHOOD HOUSE,WEST TOWN,,,,,Mr. Dennis Puhr,No,No,No,2648SA(School Age (SA)),,,,,,,,, +1682,chapin_dfss_providers_2011_070212.csv,ERIE NEIGHBORHOOD HOUSE ERIE NEIGHBORHOOD HOUSE - CORTEZ SA,2510 W CORTEZ ,60622,4867161,,,,,,,ERIE NEIGHBORHOOD HOUSE,WEST TOWN,,,,,Amy Kinney,No,No,Yes,4148SA(School Age (SA)),,,,,,,,, +1683,chapin_dfss_providers_2011_070212.csv,ERIE NEIGHBORHOOD HOUSE FCCH-ANALIDA SANCHEZ SITE,1914 N SAYRE ,60707,4322213,,,,,,,ERIE NEIGHBORHOOD HOUSE,AUSTIN,,,,,Cynthia Suarez,No,No,No,"5697IP(EHS Collaboration Enhanced Home IP), 5700IT(Child Car",,,,,,,,, +1684,chapin_dfss_providers_2011_070212.csv,ERIE NEIGHBORHOOD HOUSE FCCH-CARMEN L. VEGA SITE,3528 W PIERCE ,60618,4322213,,,,,,,ERIE NEIGHBORHOOD HOUSE,HUMBOLDT PARK,,,,,Cynthia Suarez,No,No,No,"5702IT(Child Care Home IT), 5702PS(Child Care Home PS), 5702",,,,,,,,, +1685,chapin_dfss_providers_2011_070212.csv,ERIE NEIGHBORHOOD HOUSE FCCH-CARMEN MARTELL SITE,3509 W PIERCE ,60651,4322213,,,,,,,ERIE NEIGHBORHOOD HOUSE,HUMBOLDT PARK,,,,,Cynthia Saurez,No,No,No,"5692IT(Child Care Home IT), 5692PS(Child Care Home PS), 5692",,,,,,,,, +1686,chapin_dfss_providers_2011_070212.csv,ERIE NEIGHBORHOOD HOUSE FCCH-GLADYS LORENZO,2636 N WASHTENAW AVE ,60647,,,,,,,,ERIE NEIGHBORHOOD HOUSE,LOGAN SQUARE,,,,,,No,Yes,No,"5999PS(HS Collaboration with Childcare Homes), 5999IP(EHS Co",,,,,,,,, +1687,chapin_dfss_providers_2011_070212.csv,ERIE NEIGHBORHOOD HOUSE FCCH-IRAIDA GARRIGA SITE,2523 N PARKSIDE ,60639,4322213,,,,,,,ERIE NEIGHBORHOOD HOUSE,BELMONT CRAGIN,,,,,Cynthia Suarez,No,Yes,No,"6110IP(EHS Collaboration Enhanced Home IP), 5684IT(Child Car",,,,,,,,, +1688,chapin_dfss_providers_2011_070212.csv,ERIE NEIGHBORHOOD HOUSE FCCH-JESUS E. RAMIREZ SITE,4414 N CHRISTIANA ,60625,4322213,,,,,,,ERIE NEIGHBORHOOD HOUSE,ALBANY PARK,,,,,Cynthia Suarez,No,Yes,No,"5966IP(EHS Collaboration Enhanced Home IP), 5694IT(Child Car",,,,,,,,, +1689,chapin_dfss_providers_2011_070212.csv,ERIE NEIGHBORHOOD HOUSE FCCH-LUCIA RUBIO SITE,5522 W NEWPORT ST ,60641,4322213,,,,,,,ERIE NEIGHBORHOOD HOUSE,PORTAGE PARK,,,,,Cynthia Saurez,No,Yes,No,"6112IP(EHS Collaboration Enhanced Home IP), 5695IT(Child Car",,,,,,,,, +1690,chapin_dfss_providers_2011_070212.csv,ERIE NEIGHBORHOOD HOUSE FCCH-MARGARITA DEL VALLE SITE,1004 N KEDZIE AVE ,60651,4322213,,,,,,,ERIE NEIGHBORHOOD HOUSE,HUMBOLDT PARK,,,,,Cynthia Suarez,No,Yes,No,"5682IP(EHS Collaboration Enhanced Home IP), 5934IT(Child Car",,,,,,,,, +1691,chapin_dfss_providers_2011_070212.csv,ERIE NEIGHBORHOOD HOUSE FCCH-MARIA BAUTISTA SITE,1422 N CENTRAL AVE ,60651,4322213,,,,,,,ERIE NEIGHBORHOOD HOUSE,AUSTIN,,,,,Cynthia Suarez,No,Yes,No,"5678IP(EHS Collaboration Enhanced Home IP), 5813IT(Child Car",,,,,,,,, +1692,chapin_dfss_providers_2011_070212.csv,ERIE NEIGHBORHOOD HOUSE FCCH-MARIA GUERRERO SITE,2311 N KEATING ,60639,4322213,,,,,,,ERIE NEIGHBORHOOD HOUSE,BELMONT CRAGIN,,,,,Cythnia Suarez,No,No,No,,,,,,,,,, +1693,chapin_dfss_providers_2011_070212.csv,ERIE NEIGHBORHOOD HOUSE FCCH-MARIA MAHECHA SITE,4151 W LAWRENCE ,60630,4322213,,,,,,,ERIE NEIGHBORHOOD HOUSE,ALBANY PARK,,,,,Cynthia Suarez,No,Yes,No,"5688IP(EHS Collaboration Enhanced Home IP), 5691IT(Child Car",,,,,,,,, +1694,chapin_dfss_providers_2011_070212.csv,ERIE NEIGHBORHOOD HOUSE FCCH-MARIA YOLANDA GUERRO SITE,4848 N KEELER ST ,60630,4322213,,,,,,,ERIE NEIGHBORHOOD HOUSE,ALBANY PARK,,,,,Cynthia Suarez,No,Yes,No,"5686IP(EHS Collaboration Enhanced Home IP), 5689IT(Child Car",,,,,,,,, +1695,chapin_dfss_providers_2011_070212.csv,ERIE NEIGHBORHOOD HOUSE FCCH-MARISELA MARTINEZ SITE,5018 W DRUMMOND PL ,60639,4322213,,,,,,,ERIE NEIGHBORHOOD HOUSE,BELMONT CRAGIN,,,,,Cythnia Suarez,No,Yes,No,"6111IP(EHS Collaboration Enhanced Home IP), 5693IT(Child Car",,,,,,,,, +1696,chapin_dfss_providers_2011_070212.csv,ERIE NEIGHBORHOOD HOUSE FCCH-MIGDALIA SEPULVEDA SITE,1254 N MAPLEWOOD ,60622,4322213,,,,,,,ERIE NEIGHBORHOOD HOUSE,WEST TOWN,,,,,Cynthia Suarez,No,No,No,"5701IT(Child Care Home IT), 5701PS(Child Care Home PS), 5701",,,,,,,,, +1697,chapin_dfss_providers_2011_070212.csv,ERIE NEIGHBORHOOD HOUSE FCCH-NURY RODRIGUEZ,2420 W LEMOYNE AVE 1 ,60622,,,,,,,,ERIE NEIGHBORHOOD HOUSE,WEST TOWN,,,,,,No,Yes,No,"5919IP(EHS Collaboration Enhanced Home IP), 5922IT(Child Car",,,,,,,,, +1698,chapin_dfss_providers_2011_070212.csv,ERIE NEIGHBORHOOD HOUSE FCCH-PATRICIA CASTANDA SITE,4906 N LAWNDALE ,60625,4322213,,,,,,,ERIE NEIGHBORHOOD HOUSE,ALBANY PARK,,,,,Cythnia Suarez,No,Yes,No,"5679IP(EHS Collaboration Enhanced Home IP), 5680IT(Child Car",,,,,,,,, +1699,chapin_dfss_providers_2011_070212.csv,ERIE NEIGHBORHOOD HOUSE FCCH-SERVIA GALVA SITE,2008 W SUPERIOR ,60622,4322213,,,,,,,ERIE NEIGHBORHOOD HOUSE,WEST TOWN,,,,,Cynthia Suarez,No,No,No,"5683IT(Child Care Home IT), 5683PS(Child Care Home PS), 5683",,,,,,,,, +1700,chapin_dfss_providers_2011_070212.csv,ERIE NEIGHBORHOOD HOUSE FCCH-SILVERIA CRUZ SITE,1656 N SPRINGFIELD ,60647,4322213,,,,,,,ERIE NEIGHBORHOOD HOUSE,HUMBOLDT PARK,,,,,Cythnia Suarez,No,Yes,No,"6109IP(EHS Collaboration Enhanced Home IP), 5681IT(Child Car",,,,,,,,, +1701,chapin_dfss_providers_2011_070212.csv,ERIE NEIGHBORHOOD HOUSE FCCH-TANIA PEREZ,4502 N CHRISTIANA AVE ,60625,5041813,,,,,,,ERIE NEIGHBORHOOD HOUSE,ALBANY PARK,,,,,Nancy Vazquez,No,No,No,"6133IP(EHS Collaboration Enhanced Home IP), 6134IT(Child Car",,,,,,,,, +1702,chapin_dfss_providers_2011_070212.csv,FIRMAN COMMUNITY SERVICES FIRMAN COMMUNITY SERVICES EARLY BEGINNINGS,4705 S STATE ,60609,,,,,,,,FIRMAN COMMUNITY SERVICES,GRAND BOULEVARD,,,,,,No,No,No,,,,,,,,,, +1703,chapin_dfss_providers_2011_070212.csv,FIRMAN COMMUNITY SERVICES FIRMAN HOUSE EAST,4910 S KING ,60615,3733400,,,,,,,FIRMAN COMMUNITY SERVICES,GRAND BOULEVARD,,,,,Ms. Carmolita Curry,Yes,No,No,"7077PS(HS Collaboration with Childcare & PreK), 4144SA(Schoo",,,,,,,,, +1704,chapin_dfss_providers_2011_070212.csv,FIRMAN COMMUNITY SERVICES FIRMAN HOUSE SOUTH,5401 S WENTWORTH AVE ,60609,3733400,,,,,,,FIRMAN COMMUNITY SERVICES,FULLER PARK,,,,,Donna Skinner-Echols,No,No,No,"4394IT(Child Care IT Center), 4394PS(Child Care PS Center &",,,,,,,,, +1705,chapin_dfss_providers_2011_070212.csv,FIRMAN COMMUNITY SERVICES FIRMAN HOUSE WEST,37 W 47TH ST ,60609,3733400,,,,,,,FIRMAN COMMUNITY SERVICES,GRAND BOULEVARD,,,,,Ms. Donna Skinner-Echols,Yes,No,No,"7076PS(HS Collaboration with Childcare & PreK), 2759SA(Schoo",,,,,,,,, +1706,chapin_dfss_providers_2011_070212.csv,FIRMAN COMMUNITY SERVICES FIRMAN WEST II SA 4644 S. DEARBORN,4644 S DEARBORN ,60609,3733400,,,,,,,FIRMAN COMMUNITY SERVICES,GRAND BOULEVARD,,,,,LaTasha Gentry,No,No,Yes,2760SA(School Age (SA)),,,,,,,,, +1707,chapin_dfss_providers_2011_070212.csv,FIRST CHURCH OF LOVE AND FAITH FIRST CHURCH OF LOVE AND FAITH,2140 W 79TH ST ,60620,8739155,,,,,,,FIRST CHURCH OF LOVE AND FAITH,AUBURN GRESHAM,,,,,Connie Guyton,Yes,No,No,,,,,,,,,, +1708,chapin_dfss_providers_2011_070212.csv,FIRST CHURCH OF LOVE AND FAITH FIRST CHURCH OF LOVE AND FAITH#2,2141 WEST 79TH STREET ,60620,2246800,,,,,,,FIRST CHURCH OF LOVE AND FAITH,AUBURN GRESHAM,,,,,CONNIIE GUYTON,Yes,No,No,3258PS(HS Collaboration with Childcare),,,,,,,,, +1709,chapin_dfss_providers_2011_070212.csv,FSS BLUE NORTH,1615 W CHICAGO AVENUE ST ,60622,7432084,,,,,,,FSS,WEST TOWN,,,,,,No,No,No,CYSPS(Child Care IT Center),,,,,,,,, +1710,chapin_dfss_providers_2011_070212.csv,FSS RED SOUTH,1615 W CHICAGO ,60622,,,,,,,,FSS,WEST TOWN,,,,,Mr. Walters,No,No,No,CYSPS(Child Care IT Center),,,,,,,,, +1711,chapin_dfss_providers_2011_070212.csv,GADS HILL CENTER FCCH-AMELIA VALENCIA SITE,3021 W 53RD ST ,60632,2511196,,,,,,,GADS HILL CENTER,GAGE PARK,,,,,Celina Orozco,No,Yes,No,"5708IP(EHS Collaboration Enhanced Home IP), 5714IT(Child Car",,,,,,,,, +1712,chapin_dfss_providers_2011_070212.csv,GADS HILL CENTER FCCH-EDITH ORTEGA SITE,3737 W 51ST ,60632,2511196,,,,,,,GADS HILL CENTER,WEST ELSDON,,,,,Celina Orozco,No,Yes,No,"5705IP(EHS Collaboration Enhanced Home IP), 5711IT(Child Car",,,,,,,,, +1713,chapin_dfss_providers_2011_070212.csv,GADS HILL CENTER FCCH-LUZ OROZCO SITE,4546 W 67TH ST ,60632,2511196,,,,,,,GADS HILL CENTER,WEST LAWN,,,,,Celina Orozco,No,Yes,No,"5704IP(EHS Collaboration Enhanced Home IP), 5710IT(Child Car",,,,,,,,, +1714,chapin_dfss_providers_2011_070212.csv,GADS HILL CENTER FCCH-MAGDALENA ORTEGA SITE,2318 S HOYNE ,60608,2511196,,,,,,,GADS HILL CENTER,LOWER WEST SIDE,,,,,Celina Orozco,No,Yes,No,"5706IP(EHS Collaboration Enhanced Home IP), 5706IT(EHS Enhan",,,,,,,,, +1715,chapin_dfss_providers_2011_070212.csv,GADS HILL CENTER FCCH-MARIA GONZALEZ,5753 S MOZART AVE ,60629,4714975,,,,,,,GADS HILL CENTER,GAGE PARK,,,,,,No,Yes,No,"5979IP(EHS Collaboration Enhanced Home IP), 5979IT(EHS Enhan",,,,,,,,, +1716,chapin_dfss_providers_2011_070212.csv,GADS HILL CENTER FCCH-MARIA PADRON,3754 W 55TH ST ,60632,8388760,,,,,,,GADS HILL CENTER,WEST ELSDON,,,,,,No,Yes,No,"5980IP(EHS Collaboration Enhanced Home IP), 5980IT(EHS Enhan",,,,,,,,, +1717,chapin_dfss_providers_2011_070212.csv,GADS HILL CENTER FCCH-SARA ORTEGA SITE,6110 S MOZART ,60629,2511196,,,,,,,GADS HILL CENTER,CHICAGO LAWN,,,,,Celina Orozco,No,No,No,"5707IP(EHS Collaboration Enhanced Home IP), 5713IT(Child Car",,,,,,,,, +1718,chapin_dfss_providers_2011_070212.csv,GADS HILL CENTER GH CULLERTON LOCATION,1919 W CULLERTON ,60608,,,,,,,,GADS HILL CENTER,LOWER WEST SIDE,,,,,Mr. Montes de Oca,No,Yes,Yes,2651SA(School Age (SA)),,,,,,,,, +1719,chapin_dfss_providers_2011_070212.csv,GADS HILL CENTER GH SINAI COMMUNITY OGDEN,2653 W OGDEN ,60608,5211196,,,,,,,GADS HILL CENTER,NORTH LAWNDALE,,,,,Rick Baldwin,Yes,No,Yes,4289SA(School Age (SA)),,,,,,,,, +1720,chapin_dfss_providers_2011_070212.csv,GADS HILL CENTER HUNT'S EARLY CHILDHOOD EDUCATIONAL ACADEMY,2701 W 79TH ST ,60652,8638260,,,,,,,GADS HILL CENTER,ASHBURN,,,,,Sallie Hunt,Yes,No,No,,,,,,,,,, +1721,chapin_dfss_providers_2011_070212.csv,GADS HILL CENTER KOVE LEARNING ACADEMY,3137 W 71ST ST ,60629,4763083,,,,,,,GADS HILL CENTER,CHICAGO LAWN,,,,,Olivia Hargon,Yes,No,No,,,,,,,,,, +1722,chapin_dfss_providers_2011_070212.csv,GADS HILL CENTER M & E DAYCARE - 79TH STREET DAY CARE,3728 W 79TH ST ,60652,5857979,,,,,,,GADS HILL CENTER,ASHBURN,,,,,Lisa Pearson,Yes,No,No,,,,,,,,,, +1723,chapin_dfss_providers_2011_070212.csv,HAYMARKET CENTER HAYMARKET CENTER,120 N SANGAMON ,60607,2267984,,,,,,,HAYMARKET CENTER,NEAR WEST SIDE,,,,,Bakahia Madison,No,Yes,No,,,,,,,,,, +1724,chapin_dfss_providers_2011_070212.csv,HAYMARKET CENTER WHOLLY INNOCENCE DAY CARE CENTER,34 N SANGAMON ,60607,2267984,,,,,,,HAYMARKET CENTER,NEAR WEST SIDE,,,,,Bakahia Madison,No,No,No,"4343IT(Child Care IT Center), 4343PS(Child Care PS Center),",,,,,,,,, +1725,chapin_dfss_providers_2011_070212.csv,HEALING TEMPLE FCCH-EARNESTINE MOORE,4941 W CHICAGO AVE ,60651,2876964,,,,,,,HEALING TEMPLE,AUSTIN,,,,,,No,Yes,No,"5981IP(EHS Collaboration Enhanced Home IP), 5982IT(Child Car",,,,,,,,, +1726,chapin_dfss_providers_2011_070212.csv,HEALING TEMPLE FCCH-GLENNER MITCHELL,5412 W POTOMAC AVE ,60651,3784974,,,,,,,HEALING TEMPLE,AUSTIN,,,,,,No,Yes,No,"5608IP(EHS Collaboration Enhanced Home IP), 5608IT(EHS Enhan",,,,,,,,, +1727,chapin_dfss_providers_2011_070212.csv,HEALING TEMPLE FCCH-MARY MURPHY,5418 W JACKSON ,60644,2876994,,,,,,,HEALING TEMPLE,AUSTIN,,,,,Lucille Brown,No,Yes,No,"5717IP(EHS Collaboration Enhanced Home IP), 5717IT(EHS Enhan",,,,,,,,, +1728,chapin_dfss_providers_2011_070212.csv,HEALING TEMPLE FCCH-ROSIE CRAWFORD,1114 N LARAMIE ,60651,2876964,,,,,,,HEALING TEMPLE,AUSTIN,,,,,Lucille Brown,No,Yes,No,"5715IP(EHS Collaboration Enhanced Home IP), 5715IT(EHS Enhan",,,,,,,,, +1729,chapin_dfss_providers_2011_070212.csv,HEALING TEMPLE HEALING TEMPLE,4941 W CHICAGO ,60651,2876964,,,,,,,HEALING TEMPLE,AUSTIN,,,,,Carole Smoot,Yes,No,No,,,,,,,,,, +1730,chapin_dfss_providers_2011_070212.csv,HEKTOEN INSTITUTE EARLY HEAD START PROGRAM AT STROGER HOSPITAL,1900 W POLK ,60612,8646560,,,,,,,HEKTOEN INSTITUTE,NEAR WEST SIDE,,,,,Grace Ortiz,No,Yes,No,,,,,,,,,, +1731,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE ALL ABOUT KIDS LEARNING ACADEMY,514 E 75TH ST ,60619,8922800,,,,,,,HENRY BOOTH HOUSE,GREATER GRAND CROSSING,,,,,Tess McKenzie,Yes,No,No,,,,,,,,,, +1732,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE ALLISON'S,34 E 115TH STREET ,60628,8404502,,,,,,,HENRY BOOTH HOUSE,ROSELAND,,,,,Allison Perkins,Yes,No,No,,,,,,,,,, +1733,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE ALLISON'S INFANT TODDLER,5522 S RACINE ,60636,4363193,,,,,,,HENRY BOOTH HOUSE,WEST ENGLEWOOD,,,,,LaParish Woody,Yes,No,No,,,,,,,,,, +1734,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE ANGEL WINGS,5365 W NORTH ,60639,7450262,,,,,,,HENRY BOOTH HOUSE,AUSTIN,,,,,Lisa Collins,Yes,No,No,,,,,,,,,, +1735,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE BRITE NEW MINDS,112 E 51ST STREET ,60615,,,,,,,,HENRY BOOTH HOUSE,GRAND BOULEVARD,,,,,,Yes,No,No,,,,,,,,,, +1736,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE BUNNYLAND LAND DAY CARE,545 W 119TH STREET ,60628,5685200,,,,,,,HENRY BOOTH HOUSE,WEST PULLMAN,,,,,Ms. Boykin,Yes,No,No,,,,,,,,,, +1737,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE COLOR FOR TOTS,2550 E 73RD ST ,60649,3638687,,,,,,,HENRY BOOTH HOUSE,SOUTH SHORE,,,,,Cassandra Williams,Yes,No,No,,,,,,,,,, +1738,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE GINA'S UNBELIEVABLE,7239 S DOBSON ,60619,3242010,,,,,,,HENRY BOOTH HOUSE,GREATER GRAND CROSSING,,,,,Gina Thomas,Yes,No,No,,,,,,,,,, +1739,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE GRANNY'S DAY CARE CENTER,645 W 127TH STREET ,60628,2644800,,,,,,,HENRY BOOTH HOUSE,WEST PULLMAN,,,,,Ms. Priscilla Bolling,Yes,No,No,,,,,,,,,, +1740,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE HEGEWISCH,2725 E 130TH STREET ,60633,,,,,,,,HENRY BOOTH HOUSE,HEGEWISCH,,,,,,Yes,No,Yes,"4358IT(Child Care IT Center), 4358PS(Child Care PS Center),",,,,,,,,, +1741,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE HIPPITY HOP TINY TOTS,11223 S HALSTED ST ,60628,7853340,,,,,,,HENRY BOOTH HOUSE,ROSELAND,,,,,Ms. Tuggle,Yes,No,No,,,,,,,,,, +1742,chapin_dfss_providers_2011_070212.csv,"HENRY BOOTH HOUSE ITSY BITSY PEOPLE PALACE, INC",7419 S COTTAGE GROVE AVE ,60619,8467396,,,,,,,HENRY BOOTH HOUSE,GREATER GRAND CROSSING,,,,,Ms. Whiting,Yes,No,No,,,,,,,,,, +1743,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE JELLY BEAN LEARINING CENTER-8501 S ASHLAND,8501 S ASHLAND ,60620,2395437,,,,,,,HENRY BOOTH HOUSE,AUBURN GRESHAM,,,,,Ms. Donna Taylor,Yes,No,No,,,,,,,,,, +1744,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE JELLY BEAN-358-370 E 71ST,358 370 E 71ST ,60636,8738888,,,,,,,HENRY BOOTH HOUSE,GREATER GRAND CROSSING,,,,,Donna Taylor,Yes,No,No,,,,,,,,,, +1745,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE JONES ACADEMY,4344 S WENTWORTH AVE ,60609,5363757,,,,,,,HENRY BOOTH HOUSE,FULLER PARK,,,,,Felicia Jones,Yes,No,No,,,,,,,,,, +1746,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE KIDS PLACE II,1318 W 95TH STREET ,60643,4456500,,,,,,,HENRY BOOTH HOUSE,WASHINGTON HEIGHTS,,,,,Ms. Porter,Yes,No,No,,,,,,,,,, +1747,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE KIDS R FIRST 1155 W 81ST,1155 W 81ST STREET ,60620,7838080,,,,,,,HENRY BOOTH HOUSE,AUBURN GRESHAM,,,,,Wilborn,Yes,No,No,,,,,,,,,, +1748,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE KIDS R FIRST 7838 S HALSTED,7838 S HALSTED ,60620,4889443,,,,,,,HENRY BOOTH HOUSE,AUBURN GRESHAM,,,,,Ms. Jones,Yes,No,No,,,,,,,,,, +1749,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE LAKEVIEW DEVELOPMENT CENTER,1531 W LAWRENCE ,60640,,,,,,,,HENRY BOOTH HOUSE,UPTOWN,,,,,,Yes,No,No,,,,,,,,,, +1750,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE LEARNING TREE,8128 S KEDZIE ,60652,7788802,,,,,,,HENRY BOOTH HOUSE,ASHBURN,,,,,Ms. Vaughn,No,No,No,,,,,,,,,, +1751,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE LITTLE ANGELS FAMILY DAYCARE,6701 S EMERALD AVE ,60621,4888777,,,,,,,HENRY BOOTH HOUSE,ENGLEWOOD,,,,,NaShone Greer,Yes,No,No,,,,,,,,,, +1752,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE LITTLE FOLKS DAY CARE,2527 E 73RD STREET ,60649,,,,,,,,HENRY BOOTH HOUSE,SOUTH SHORE,,,,,,Yes,No,No,,,,,,,,,, +1753,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE LITTLE HANDS & FEET,7801 S WOLCOTT ,60620,9948561,,,,,,,HENRY BOOTH HOUSE,AUBURN GRESHAM,,,,,Ms. Doyle,Yes,No,No,,,,,,,,,, +1754,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE LITTLE HANDS AND FEET II (87TH),1414 W 87TH STREET ,60620,2392322,,,,,,,HENRY BOOTH HOUSE,AUBURN GRESHAM,,,,,Ms. Jackson,Yes,No,No,,,,,,,,,, +1755,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE LITTLE LEADERS OF TOMORROW I - MAYFIELD,301 N MAYFIELD AVE ,60644,3788302,,,,,,,HENRY BOOTH HOUSE,AUSTIN,,,,,Ms. Navy,Yes,No,No,,,,,,,,,, +1756,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE LIVING WITNESS,4259 N LARAMIE ,60641,,,,,,,,HENRY BOOTH HOUSE,PORTAGE PARK,,,,,,Yes,No,No,,,,,,,,,, +1757,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE LOOP,2001 S MICHIGAN ,60616,2258828,,,,,,,HENRY BOOTH HOUSE,NEAR SOUTH SIDE,,,,,Ms. Gregg,Yes,No,No,,,,,,,,,, +1758,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE LOVE N LEARN ACADEMY,723 725 E 75TH STREET ,60619,7230338,,,,,,,HENRY BOOTH HOUSE,GREATER GRAND CROSSING,,,,,Ms. Blanton & Ms. Johnson,Yes,No,No,,,,,,,,,, +1759,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE NEAR SOUTH,2929 S WABASH ,60616,7910424,,,,,,,HENRY BOOTH HOUSE,DOUGLAS,,,,,Ms. Newsome,Yes,No,No,7013PS(HS Collaboration with Childcare),,,,,,,,, +1760,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE NEW PISGAH,8130 S RACINE ,60620,8735392,,,,,,,HENRY BOOTH HOUSE,AUBURN GRESHAM,,,,,Mr. S. Smith,Yes,No,No,,,,,,,,,, +1761,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE NICO'S,1855 W 95TH STREET ,60643,2380117,,,,,,,HENRY BOOTH HOUSE,BEVERLY,,,,,Ms. Watts,No,No,No,,,,,,,,,, +1762,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE NORTH KENWOOD DAY CARE CENTER,857 E PERSHING ,60653,,,,,,,,HENRY BOOTH HOUSE,OAKLAND,,,,,,Yes,No,No,,,,,,,,,, +1763,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE PATTI CAKE,939 W 87TH STREET ,60620,8749460,,,,,,,HENRY BOOTH HOUSE,AUBURN GRESHAM,,,,,Ms. Harris,Yes,No,No,,,,,,,,,, +1764,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE PINK'S CHILD CARE ACADEMY,8236 S KEDZIE ,60652,8637465,,,,,,,HENRY BOOTH HOUSE,ASHBURN,,,,,Ms. Jones,Yes,No,No,,,,,,,,,, +1765,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE PRECIOUS LITTLE ONES,5327 S MICHIGAN AVE ,60615,,,,,,,,HENRY BOOTH HOUSE,WASHINGTON PARK,,,,,,Yes,No,No,,,,,,,,,, +1766,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE PRODIGY CHILD LEARNING CENTER,1921 E 79TH STREET ,60649,2213100,,,,,,,HENRY BOOTH HOUSE,SOUTH CHICAGO,,,,,Shonzette Cheeks,Yes,No,No,,,,,,,,,, +1767,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE THE WORLD IS YOURS,8026 S COTTAGE GROVE AVE ,60619,,,,,,,,HENRY BOOTH HOUSE,CHATHAM,,,,,,Yes,No,No,,,,,,,,,, +1768,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE WEE CARE NURSERY,1845 E 79TH STREET ,60649,2214442,,,,,,,HENRY BOOTH HOUSE,SOUTH CHICAGO,,,,,Ms. Williams-Morgan,Yes,No,No,,,,,,,,,, +1769,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE WEE WEE CENTER FOR CREATIVE,2434 W 71ST STREET ,60629,4710869,,,,,,,HENRY BOOTH HOUSE,CHICAGO LAWN,,,,,Ms. Duckery,Yes,No,No,,,,,,,,,, +1770,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE WEST AUSTIN,4920 W MADISON ,60644,,,,,,,,HENRY BOOTH HOUSE,AUSTIN,,,,,,Yes,No,No,,,,,,,,,, +1771,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE WHIZ KIDS NURSERY 518 W 103 RD ST,518 W 103RD STREET ,60628,2339445,,,,,,,HENRY BOOTH HOUSE,WASHINGTON HEIGHTS,,,,,Ms. Craft,Yes,No,No,,,,,,,,,, +1772,chapin_dfss_providers_2011_070212.csv,HENRY BOOTH HOUSE YOUNG ACHIEVERS ACADEMY,520 E 79TH STREET ,60619,,,,,,,,HENRY BOOTH HOUSE,GREATER GRAND CROSSING,,,,,,Yes,No,No,,,,,,,,,, +1773,chapin_dfss_providers_2011_070212.csv,HOME OF LIFE COMMUNITY DEV. CORP. HLCDC DEV. II,4650 W MADISON ,60644,6268655,,,,,,,HOME OF LIFE COMMUNITY DEV. CORP.,AUSTIN,,,,,Dorietta Sceanior,Yes,No,Yes,"2114IT(Child Care IT Center), 7199PS(HS Collaboration with C",,,,,,,,, +1774,chapin_dfss_providers_2011_070212.csv,HOME OF LIFE COMMUNITY DEV. CORP. HOME OF LIFE JUST FOR YOU,4647 W WASHINGTON ,60644,6268655,,,,,,,HOME OF LIFE COMMUNITY DEV. CORP.,AUSTIN,,,,,Nena Porter Cooper,Yes,No,No,"2114PS(Child Care PS Center), 7199PS(HS Collaboration with C",,,,,,,,, +1775,chapin_dfss_providers_2011_070212.csv,HOWARD AREA COMMUNITY CENTER HOWARD AREA,7510 N ASHLAND ,60626,2626622,,,,,,,HOWARD AREA COMMUNITY CENTER,ROGERS PARK,,,,,Stephania Koliarakis,Yes,No,Yes,"7071PS(HS Collaboration with Childcare & PreK), 2765PS(Child",,,,,,,,, +1776,chapin_dfss_providers_2011_070212.csv,HULL HOUSE ASSOCIATION BOTTLES TO BOOKS LEARNING CENTER,6014 S RACINE ,60621,4345772,,,,,,,HULL HOUSE ASSOCIATION,WEST ENGLEWOOD,,,,,Tamika Daniels,Yes,No,No,,,,,,,,,, +1777,chapin_dfss_providers_2011_070212.csv,HULL HOUSE ASSOCIATION FCCH-BARBARA DAVIS,1656 N LOTUS ST ,60639,2355342,,,,,,,HULL HOUSE ASSOCIATION,AUSTIN,,,,,Etisha Wofford,No,No,No,"5734IP(EHS Collaboration Enhanced Home IP), 5735IT(Child Car",,,,,,,,, +1778,chapin_dfss_providers_2011_070212.csv,HULL HOUSE ASSOCIATION FCCH-DIANIRA ULIN,1912 N PULASKI AVE ,60639,2355342,,,,,,,HULL HOUSE ASSOCIATION,HERMOSA,,,,,Etisha Wofford,No,Yes,No,"5937IP(EHS Collaboration Enhanced Home IP), 5746IT(Child Car",,,,,,,,, +1779,chapin_dfss_providers_2011_070212.csv,HULL HOUSE ASSOCIATION FCCH-EARLINE HAGGARD,3347 W CARROLL AVE ,60624,8267766,,,,,,,HULL HOUSE ASSOCIATION,EAST GARFIELD PARK,,,,,,No,Yes,No,"6128IP(EHS Collaboration Enhanced Home IP), 6129IT(Child Car",,,,,,,,, +1780,chapin_dfss_providers_2011_070212.csv,HULL HOUSE ASSOCIATION FCCH-EDITH COLLINS,5538 W CORTLAND AVE ,60639,2355342,,,,,,,HULL HOUSE ASSOCIATION,AUSTIN,,,,,Etisha Wofford,No,No,No,"5731IP(EHS Collaboration Enhanced Home IP), 5732IT(Child Car",,,,,,,,, +1781,chapin_dfss_providers_2011_070212.csv,HULL HOUSE ASSOCIATION FCCH-EMILY JENKINS,1743 N LATROBE ST ,60639,2355342,,,,,,,HULL HOUSE ASSOCIATION,AUSTIN,,,,,Etisha Wofford,No,Yes,No,"5739IP(EHS Collaboration Enhanced Home IP), 5741IT(Child Car",,,,,,,,, +1782,chapin_dfss_providers_2011_070212.csv,HULL HOUSE ASSOCIATION FCCH-MONICA PIERCE,1644 S AVERS ST ,60623,2355342,,,,,,,HULL HOUSE ASSOCIATION,NORTH LAWNDALE,,,,,Etisha Wofford,No,Yes,No,"5743IP(EHS Collaboration Enhanced Home IP), 5942IT(Child Car",,,,,,,,, +1783,chapin_dfss_providers_2011_070212.csv,HULL HOUSE ASSOCIATION FCCH-ROBIN JAMES,4537 S LECLAIRE ,60639,2355342,,,,,,,HULL HOUSE ASSOCIATION,GARFIELD RIDGE,,,,,Etisha Wofford,No,No,No,,,,,,,,,, +1784,chapin_dfss_providers_2011_070212.csv,HULL HOUSE ASSOCIATION FCCH-SHANETTA HOWARD,5255 W JACKSON ,60644,3785120,,,,,,,HULL HOUSE ASSOCIATION,AUSTIN,,,,,,No,No,No,"5912IP(EHS Collaboration Enhanced Home IP), 5913IT(Child Car",,,,,,,,, +1785,chapin_dfss_providers_2011_070212.csv,HULL HOUSE ASSOCIATION FCCH-SHARON TRULL-YUSSESS,4222 W WILCOX ST ,60624,7228308,,,,,,,HULL HOUSE ASSOCIATION,WEST GARFIELD PARK,,,,,,No,Yes,No,"5879IP(EHS Collaboration Enhanced Home IP), 5880IT(Child Car",,,,,,,,, +1786,chapin_dfss_providers_2011_070212.csv,HULL HOUSE ASSOCIATION FCCH-SHAUNTA COLLINS,1626 N MASON ST ,60623,2355342,,,,,,,HULL HOUSE ASSOCIATION,AUSTIN,,,,,Etisha Wofford,No,No,No,,,,,,,,,, +1787,chapin_dfss_providers_2011_070212.csv,HULL HOUSE ASSOCIATION FCCH-SHELIA LANGHAM,11312 S NORMAL ST ,60628,2355342,,,,,,,HULL HOUSE ASSOCIATION,ROSELAND,,,,,Etisha Wofford,No,Yes,No,"5740IP(EHS Collaboration Enhanced Home IP), 5742IT(Child Car",,,,,,,,, +1788,chapin_dfss_providers_2011_070212.csv,HULL HOUSE ASSOCIATION FCCH-SHERISSE HOLMES,4119 W 16TH ST ,60623,2355342,,,,,,,HULL HOUSE ASSOCIATION,NORTH LAWNDALE,,,,,Etisha Wofford,No,Yes,No,"5737IP(EHS Collaboration Enhanced Home IP), 5945IT(Child Car",,,,,,,,, +1789,chapin_dfss_providers_2011_070212.csv,HULL HOUSE ASSOCIATION FCCH-TAKELYA ELLINGTON,3421 W 12TH ,60623,5424196,,,,,,,HULL HOUSE ASSOCIATION,NORTH LAWNDALE,,,,,,No,Yes,No,"5882IP(EHS Collaboration Enhanced Home IP), 5883IT(Child Car",,,,,,,,, +1790,chapin_dfss_providers_2011_070212.csv,HULL HOUSE ASSOCIATION FCCH-TAYNA AYENA,10836 S NORMAL AVE ,60628,8218491,,,,,,,HULL HOUSE ASSOCIATION,ROSELAND,,,,,,No,Yes,No,"6130IP(EHS Collaboration Enhanced Home IP), 6131IT(Child Car",,,,,,,,, +1791,chapin_dfss_providers_2011_070212.csv,HULL HOUSE ASSOCIATION FCCH-VERNELL KENNEDY,11515 S THROOP ST ,60643,6609953,,,,,,,HULL HOUSE ASSOCIATION,WEST PULLMAN,,,,,,No,No,Yes,"6132IT(Child Care Home IT), 6132PS(Child Care Home PS), 6132",,,,,,,,, +1792,chapin_dfss_providers_2011_070212.csv,HULL HOUSE ASSOCIATION FCCH-WANDA FIELDER,21 E 101ST PLACE ,60628,5686610,,,,,,,HULL HOUSE ASSOCIATION,ROSELAND,,,,,,No,No,No,"5961PS(HS Collaboration with Childcare Homes), 5961IP(EHS Co",,,,,,,,, +1793,chapin_dfss_providers_2011_070212.csv,HULL HOUSE ASSOCIATION KINGS KIDDIE KINGDOM,815 W 74TH ST ,60621,,,,,,,,HULL HOUSE ASSOCIATION,ENGLEWOOD,,,,,Camille King,Yes,No,No,,,,,,,,,, +1794,chapin_dfss_providers_2011_070212.csv,HULL HOUSE ASSOCIATION LECLAIRE-RYDER,4410 S LAPORTE ,60638,7675170,,,,,,,HULL HOUSE ASSOCIATION,GARFIELD RIDGE,,,,,Shirley Mullin,Yes,No,No,7072PS(HS Collaboration with Childcare),,,,,,,,, +1795,chapin_dfss_providers_2011_070212.csv,HULL HOUSE ASSOCIATION LINCOLN SQUARE,4754 N LEAVITT ,60625,8789651,,,,,,,HULL HOUSE ASSOCIATION,LINCOLN SQUARE,,,,,Raina Sajous,Yes,No,No,"7129PS(HS Collaboration with Childcare & PreK), 2709SA(Schoo",,,,,,,,, +1796,chapin_dfss_providers_2011_070212.csv,HULL HOUSE ASSOCIATION ORR INFANT TODDLER PROGRAM,730 N PULASKI RD ,60624,8261090,,,,,,,HULL HOUSE ASSOCIATION,HUMBOLDT PARK,,,,,,No,Yes,No,,,,,,,,,, +1797,chapin_dfss_providers_2011_070212.csv,HULL HOUSE ASSOCIATION PARKWAY COMMUNITY CENTER,500 E 67TH STREET ,60637,4931306,,,,,,,HULL HOUSE ASSOCIATION,WOODLAWN,,,,,Carmen Knight,Yes,No,No,"3263PS(HS Collaboration with Childcare & PreK), 2637SA(Schoo",,,,,,,,, +1798,chapin_dfss_providers_2011_070212.csv,HULL HOUSE ASSOCIATION UPTOWN - EAST,1020 W BRYN MAWR ,60660,7695753,,,,,,,HULL HOUSE ASSOCIATION,EDGEWATER,,,,,Martha Abarca,Yes,No,No,7027PS(HS Collaboration with Childcare & PreK),,,,,,,,, +1799,chapin_dfss_providers_2011_070212.csv,HULL HOUSE ASSOCIATION UPTOWN COMMUNITY CENTER WEST,4520 N BEACON ,60640,5613500,,,,,,,HULL HOUSE ASSOCIATION,UPTOWN,,,,,Patricia Showers,Yes,No,No,"3409PS(HS Collaboration with Childcare & PreK), 2518SA(Schoo",,,,,,,,, +1800,chapin_dfss_providers_2011_070212.csv,KOREAN AMERICAN COMMUNITY SERVICES KOREAN AMERICAN COMMUNITY SERVICES,4300 N CALIFORNIA ,60618,5838281,,,,,,,KOREAN AMERICAN COMMUNITY SERVICES,IRVING PARK,,,,,Hye K. Choi,Yes,No,Yes,"7131PS(HS Collaboration with Childcare & PreK), 2808SA(Schoo",,,,,,,,, +1801,chapin_dfss_providers_2011_070212.csv,LUTHERAN SOCIAL SERVICES OF ILLINOIS ARRA HOME BASED INITIATIVE - ROSELAND CHRISTIAN MINISTRIES,10 W 35TH ST 15TH FLOOR ,60616,9494789,,,,,,,LUTHERAN SOCIAL SERVICES OF ILLINOIS,DOUGLAS,,,,,Sophia Coleman,Yes,No,No,,,,,,,,,, +1802,chapin_dfss_providers_2011_070212.csv,LUTHERAN SOCIAL SERVICES OF ILLINOIS ENGLEWOOD MESSIAH,1910 W 64TH STREET ,60636,4365110,,,,,,,LUTHERAN SOCIAL SERVICES OF ILLINOIS,WEST ENGLEWOOD,,,,,Delphine Whittlesey,Yes,No,No,,,,,,,,,, +1803,chapin_dfss_providers_2011_070212.csv,LUTHERAN SOCIAL SERVICES OF ILLINOIS NORTH AUSTIN HEAD START,1500 N MASON ,60651,2371930,,,,,,,LUTHERAN SOCIAL SERVICES OF ILLINOIS,AUSTIN,,,,,Doris Holden,Yes,No,No,"4115IT(Child Care IT Center), 7015PS(HS Collaboration with C",,,,,,,,, +1804,chapin_dfss_providers_2011_070212.csv,LUTHERAN SOCIAL SERVICES OF ILLINOIS ROGERS PARK,1754 W DEVON ,60660,6354600,,,,,,,LUTHERAN SOCIAL SERVICES OF ILLINOIS,ROGERS PARK,,,,,Deloris McDowell,Yes,No,No,7134PS(HS Collaboration with Childcare & PreK),,,,,,,,, +1805,chapin_dfss_providers_2011_070212.csv,LUTHERAN SOCIAL SERVICES OF ILLINOIS TRINIDAD LUTHERAN,2921 W DIVISION ,60622,6354600,,,,,,,LUTHERAN SOCIAL SERVICES OF ILLINOIS,WEST TOWN,,,,,Emilia Espinal,Yes,No,No,,,,,,,,,, +1806,chapin_dfss_providers_2011_070212.csv,LUTHERAN SOCIAL SERVICES OF ILLINOIS WINTHROP CHILDREN'S CENTER,4848 N WINTHROP ,60640,8783210,,,,,,,LUTHERAN SOCIAL SERVICES OF ILLINOIS,UPTOWN,,,,,,Yes,No,No,"2664IT(Child Care IT Center), 7133PS(HS Collaboration with C",,,,,,,,, +1807,chapin_dfss_providers_2011_070212.csv,MARCY NEWBERRY ASSOCIATION AUSTIN TOWN HALL,5610 W LAKE ,60644,2611505,,,,,,,MARCY NEWBERRY ASSOCIATION,AUSTIN,,,,,Marsha Ballenger,Yes,No,No,"7028PS(HS Collaboration with Childcare & PreK), 4155PS(Child",,,,,,,,, +1808,chapin_dfss_providers_2011_070212.csv,MARCY NEWBERRY ASSOCIATION FCCH-ALICE TWITTY,1054 N KARLOV ST ,60651,2520732,,,,,,,MARCY NEWBERRY ASSOCIATION,HUMBOLDT PARK,,,,,Alice Twitty,No,Yes,No,"5754IP(EHS Collaboration Enhanced Home IP), 5754IT(EHS Enhan",,,,,,,,, +1809,chapin_dfss_providers_2011_070212.csv,MARCY NEWBERRY ASSOCIATION FCCH-DEBRA BAKER,1728 N AUSTIN AVE ,60639,2376009,,,,,,,MARCY NEWBERRY ASSOCIATION,AUSTIN,,,,,Celia Wills,No,Yes,No,"6117IP(EHS Collaboration Enhanced Home IP), 6120IT(Child Car",,,,,,,,, +1810,chapin_dfss_providers_2011_070212.csv,MARCY NEWBERRY ASSOCIATION FCCH-IDERIA HOWARD,1013 N MONITOR AVE ,60644,2612115,,,,,,,MARCY NEWBERRY ASSOCIATION,AUSTIN,,,,,Celia Wills,No,Yes,No,"6119IP(EHS Collaboration Enhanced Home IP), 6122IT(Child Car",,,,,,,,, +1811,chapin_dfss_providers_2011_070212.csv,MARCY NEWBERRY ASSOCIATION FCCH-JANET THOMAS,1034 N KARLOV ST ,60651,2529401,,,,,,,MARCY NEWBERRY ASSOCIATION,HUMBOLDT PARK,,,,,Janet L. Thomas,No,No,No,"5753IP(EHS Collaboration Enhanced Home IP), 5753IT(EHS Enhan",,,,,,,,, +1812,chapin_dfss_providers_2011_070212.csv,MARCY NEWBERRY ASSOCIATION FCCH-LASHANDA BAYLOR,1051 N MASSASOIT AVE ,60651,8297555,,,,,,,MARCY NEWBERRY ASSOCIATION,AUSTIN,,,,,Celia Wills,No,Yes,No,"6118IP(EHS Collaboration Enhanced Home IP), 6121IT(Child Car",,,,,,,,, +1813,chapin_dfss_providers_2011_070212.csv,MARCY NEWBERRY ASSOCIATION FCCH-MELVIN TURNER,1508 W MONITOR ,60651,,,,,,,,MARCY NEWBERRY ASSOCIATION,AUSTIN,,,,,,No,Yes,No,"5969IP(EHS Collaboration Enhanced Home IP), 5970IT(Child Car",,,,,,,,, +1814,chapin_dfss_providers_2011_070212.csv,MARCY NEWBERRY ASSOCIATION FCCH-NORMA JACKSON,935 N MENARD ,60651,,,,,,,,MARCY NEWBERRY ASSOCIATION,AUSTIN,,,,,Celia Wills,No,Yes,No,"6104IP(EHS Collaboration Enhanced Home IP), 6105IT(Child Car",,,,,,,,, +1815,chapin_dfss_providers_2011_070212.csv,MARCY NEWBERRY ASSOCIATION FCCH-SHARON JAMES,311 N WALLER ,60644,2879737,,,,,,,MARCY NEWBERRY ASSOCIATION,AUSTIN,,,,,Sharon James,No,No,No,"5750IP(EHS Collaboration Enhanced Home IP), 5750IT(EHS Enhan",,,,,,,,, +1816,chapin_dfss_providers_2011_070212.csv,MARCY NEWBERRY ASSOCIATION FOSCO,1312 S RACINE ,60608,7466024,,,,,,,MARCY NEWBERRY ASSOCIATION,NEAR WEST SIDE,,,,,Kimberly Johnson,Yes,Yes,No,"4195IT(Child Care IT Center), 7086PS (HS Collaboration with",,,,,,,,, +1817,chapin_dfss_providers_2011_070212.csv,MARCY NEWBERRY ASSOCIATION KENYATTA'S DAY CARE,2334 E 75TH ST ,60649,,,,,,,,MARCY NEWBERRY ASSOCIATION,SOUTH SHORE,,,,,Brenda Owens,No,No,No,,,,,,,,,, +1818,chapin_dfss_providers_2011_070212.csv,MARCY NEWBERRY ASSOCIATION LEARNING TREE 1,8128 S KEDZIE ,60652,7788802,,,,,,,MARCY NEWBERRY ASSOCIATION,ASHBURN,,,,,Joanne Williams,Yes,No,No,,,,,,,,,, +1819,chapin_dfss_providers_2011_070212.csv,MARCY NEWBERRY ASSOCIATION LEARNING TREE 2,8322 S PULASKI RD ,60652,8843345,,,,,,,MARCY NEWBERRY ASSOCIATION,ASHBURN,,,,,Joanne Williams,Yes,No,No,,,,,,,,,, +1820,chapin_dfss_providers_2011_070212.csv,MARCY NEWBERRY ASSOCIATION MARCY CENTER,1539 S SPRINGFIELD ,60623,7622300,,,,,,,MARCY NEWBERRY ASSOCIATION,NORTH LAWNDALE,,,,,Barbara Tucker,Yes,No,Yes,"2751IT(Child Care IT Center), 7135PS(HS Collaboration with C",,,,,,,,, +1821,chapin_dfss_providers_2011_070212.csv,MARCY NEWBERRY ASSOCIATION NEWBERRY CENTER,1073 W MAXWELL ,60608,8297555,,,,,,,MARCY NEWBERRY ASSOCIATION,NEAR WEST SIDE,,,,,Vernon Lyle,No,No,Yes,2753SA(School Age (SA)),,,,,,,,, +1822,chapin_dfss_providers_2011_070212.csv,MARCY NEWBERRY ASSOCIATION SOUTH HARPER MONTESSORI,8358 S STONY ISLAND AVE ,60617,7340375,,,,,,,MARCY NEWBERRY ASSOCIATION,AVALON PARK,,,,,Georgianna Coachman,No,No,No,,,,,,,,,, +1823,chapin_dfss_providers_2011_070212.csv,MARCY NEWBERRY ASSOCIATION ST. JOHN,5701 W MIDWAY PARK ,60644,3795533,,,,,,,MARCY NEWBERRY ASSOCIATION,AUSTIN,,,,,Willie Mae Cole,Yes,No,No,3149PS(HS Collaboration with Childcare),,,,,,,,, +1824,chapin_dfss_providers_2011_070212.csv,MARY CRANE LEAGUE CHILDREN'S LEARN AND PLAY,6512 S HALSTED ST ,60621,,,,,,,,MARY CRANE LEAGUE,ENGLEWOOD,,,,,,Yes,No,No,,,,,,,,,, +1825,chapin_dfss_providers_2011_070212.csv,MARY CRANE LEAGUE MARY CRANE CENTER (EAST),2974 N CLYBOURN AVE ,60618,3485528,,,,,,,MARY CRANE LEAGUE,NORTH CENTER,,,,,Jennifer Jones,Yes,No,Yes,"4145IT(Child Care IT Center), 4236PS(HS Collaboration with C",,,,,,,,, +1826,chapin_dfss_providers_2011_070212.csv,MARY CRANE LEAGUE MARY CRANE CENTER (LAKE & PULASKI),316 N PULASKI SITE ,60624,2653830,,,,,,,MARY CRANE LEAGUE,WEST GARFIELD PARK,,,,,,Yes,Yes,Yes,"4374IT(Child Care IT Center), 4374PS(Child Care PS Center),",,,,,,,,, +1827,chapin_dfss_providers_2011_070212.csv,MARY CRANE LEAGUE MARY CRANE CENTER (MOLADE CHILD DEV.),1120 N LAMON ,60651,6267760,,,,,,,MARY CRANE LEAGUE,AUSTIN,,,,,,Yes,Yes,Yes,"4372IT(Child Care IT Center), 4372PS(Child Care PS Center),",,,,,,,,, +1828,chapin_dfss_providers_2011_070212.csv,MARY CRANE LEAGUE MARY CRANE CENTER (MORSE),1545 W MORSE ,60626,2621390,,,,,,,MARY CRANE LEAGUE,ROGERS PARK,,,,,Guadalupe Herrera,Yes,No,No,4270PS(HS Collaboration with Childcare & PreK),,,,,,,,, +1829,chapin_dfss_providers_2011_070212.csv,MARY CRANE LEAGUE MARY CRANE CENTER (NORTH),2905 N LEAVITT ,60618,3485528,,,,,,,MARY CRANE LEAGUE,NORTH CENTER,,,,,Lavetter Terry,No,Yes,No,,,,,,,,,, +1830,chapin_dfss_providers_2011_070212.csv,MARY CRANE LEAGUE MARY CRANE CENTER (WEST),2820 N LEAVITT ,60618,3485528,,,,,,,MARY CRANE LEAGUE,NORTH CENTER,,,,,Emily Hamlin,Yes,Yes,No,4237PS(HS Collaboration with Childcare & PreK),,,,,,,,, +1831,chapin_dfss_providers_2011_070212.csv,METROPOLITAN FAMILY SERVICES MIDWAY CHILDREN'S CENTER,3215 W 63RD ST ,60629,8842350,,,,,,,METROPOLITAN FAMILY SERVICES,CHICAGO LAWN,,,,,Guadalupe Valdine,Yes,No,Yes,"4331IT(Child Care IT Center), 3783PS(HS Collaboration with C",,,,,,,,, +1832,chapin_dfss_providers_2011_070212.csv,METROPOLITAN FAMILY SERVICES MIDWAY HEAD START,6422 S KEDZIE ,60629,7374790,,,,,,,METROPOLITAN FAMILY SERVICES,CHICAGO LAWN,,,,,Rhonda Freeman,Yes,No,No,,,,,,,,,, +1833,chapin_dfss_providers_2011_070212.csv,METROPOLITAN FAMILY SERVICES NORTH CHILDREN'S CENTER,3249 N CENTRAL AVE ,60634,,,,,,,,METROPOLITAN FAMILY SERVICES,PORTAGE PARK,,,,,Dawn Delgado,Yes,No,Yes,"4329IT(Child Care IT Center), 4330PS(HS Collaboration with C",,,,,,,,, +1834,chapin_dfss_providers_2011_070212.csv,NORTH AVENUE DAY NURSERY FCCH-AIDA CARDONA,2117 N KEDVALE ,60639,,,,,,,,NORTH AVENUE DAY NURSERY,HERMOSA,,,,,,No,Yes,Yes,"5829IP(EHS Collaboration Enhanced Home IP), 5830IT(Child Car",,,,,,,,, +1835,chapin_dfss_providers_2011_070212.csv,NORTH AVENUE DAY NURSERY FCCH-AMANDA LOPEZ,4433 N HARDING ,60625,,,,,,,,NORTH AVENUE DAY NURSERY,ALBANY PARK,,,,,Sonja Anthony,No,Yes,No,"5932IP(EHS Collaboration Enhanced Home IP), 5933IT(Child Car",,,,,,,,, +1836,chapin_dfss_providers_2011_070212.csv,NORTH AVENUE DAY NURSERY FCCH-BETTY WILLIAMS,1543 N KOLIN ,60651,,,,,,,,NORTH AVENUE DAY NURSERY,HUMBOLDT PARK,,,,,,No,No,No,,,,,,,,,, +1837,chapin_dfss_providers_2011_070212.csv,NORTH AVENUE DAY NURSERY FCCH-CAROLYN PRICE,2020 W JACKSON ,60612,,,,,,,,NORTH AVENUE DAY NURSERY,NEAR WEST SIDE,,,,,,No,No,No,"5833IP(EHS Collaboration Enhanced Home IP), 5834IT(Child Car",,,,,,,,, +1838,chapin_dfss_providers_2011_070212.csv,NORTH AVENUE DAY NURSERY FCCH-CHERYL COOK,5929 W WALTON ,60651,,,,,,,,NORTH AVENUE DAY NURSERY,AUSTIN,,,,,,No,No,No,"5835IT(Child Care Home IT), 5835PS(Child Care Home PS), 5835",,,,,,,,, +1839,chapin_dfss_providers_2011_070212.csv,NORTH AVENUE DAY NURSERY FCCH-DORA LOPEZ,2256 W FOSTER ,60625,7845132,,,,,,,NORTH AVENUE DAY NURSERY,LINCOLN SQUARE,,,,,Sonja Anthony,No,Yes,No,"6127IP(EHS Collaboration Enhanced Home IP), 6136IT(Child Car",,,,,,,,, +1840,chapin_dfss_providers_2011_070212.csv,NORTH AVENUE DAY NURSERY FCCH-EMMA TURNER,1815 W MONROE ,60612,,,,,,,,NORTH AVENUE DAY NURSERY,NEAR WEST SIDE,,,,,,No,Yes,Yes,"5803IP(EHS Collaboration Enhanced Home IP), 5805IT(Child Car",,,,,,,,, +1841,chapin_dfss_providers_2011_070212.csv,NORTH AVENUE DAY NURSERY FCCH-GLADYS LORENZO,2642 N FAIRFIELD ,60647,,,,,,,,NORTH AVENUE DAY NURSERY,LOGAN SQUARE,,,,,,No,No,No,,,,,,,,,, +1842,chapin_dfss_providers_2011_070212.csv,NORTH AVENUE DAY NURSERY FCCH-HILDA PEREZ,4339 W MCLEAN ,60639,,,,,,,,NORTH AVENUE DAY NURSERY,HERMOSA,,,,,,No,No,No,,,,,,,,,, +1843,chapin_dfss_providers_2011_070212.csv,NORTH AVENUE DAY NURSERY FCCH-JOHNNIE VAUGHN,1701 N MAJOR ,60639,8040261,,,,,,,NORTH AVENUE DAY NURSERY,AUSTIN,,,,,,No,No,No,"5916IP(EHS Collaboration Enhanced Home IP), 5916IT(EHS Enhan",,,,,,,,, +1844,chapin_dfss_providers_2011_070212.csv,NORTH AVENUE DAY NURSERY FCCH-LUZ GONZALEZ,1743 N FRANCISCO ,60647,,,,,,,,NORTH AVENUE DAY NURSERY,WEST TOWN,,,,,,No,No,No,"5836IT(Child Care Home IT), 5836PS(Child Care Home PS), 5836",,,,,,,,, +1845,chapin_dfss_providers_2011_070212.csv,NORTH AVENUE DAY NURSERY FCCH-MARIA BERRERA,2443 W FOSTER ,60625,6000846,,,,,,,NORTH AVENUE DAY NURSERY,LINCOLN SQUARE,,,,,Sonja Anthony,No,Yes,No,"6126IP(EHS Collaboration Enhanced Home IP), 6135IT(Child Car",,,,,,,,, +1846,chapin_dfss_providers_2011_070212.csv,NORTH AVENUE DAY NURSERY FCCH-NELLIE AGRON,922 N RIDGEWAY ,60651,7828281,,,,,,,NORTH AVENUE DAY NURSERY,HUMBOLDT PARK,,,,,,No,No,No,"5918IT(Child Care Home IT), 5918PS(Child Care Home PS), 5918",,,,,,,,, +1847,chapin_dfss_providers_2011_070212.csv,NORTH AVENUE DAY NURSERY FCCH-ROBBIE ANTHONY,5916 WEST SUPERIOR ,60644,2974124,,,,,,,NORTH AVENUE DAY NURSERY,AUSTIN,,,,,Sonja Anthony,No,Yes,No,"6124IP(EHS Collaboration Enhanced Home IP), 6125IT(Child Car",,,,,,,,, +1848,chapin_dfss_providers_2011_070212.csv,NORTH AVENUE DAY NURSERY FCCH-SHELONDA HASSELL,5924 W OHIO AVE ,60644,,,,,,,,NORTH AVENUE DAY NURSERY,AUSTIN,,,,,,No,No,No,"5985IP(EHS Collaboration Enhanced Home IP), 5986IT(Child Car",,,,,,,,, +1849,chapin_dfss_providers_2011_070212.csv,NORTH AVENUE DAY NURSERY FCCH-SONYA HARRIS,329 N LONG AVE ,60644,6269894,,,,,,,NORTH AVENUE DAY NURSERY,AUSTIN,,,,,,No,No,No,"5917IP(EHS Collaboration Enhanced Home IP), 5921IT(Child Car",,,,,,,,, +1850,chapin_dfss_providers_2011_070212.csv,NORTH AVENUE DAY NURSERY FCCH-TIFFANY TAYLOR,1135 S SACRAMENTO 1 ,60612,9815376,,,,,,,NORTH AVENUE DAY NURSERY,NORTH LAWNDALE,,,,,Sonja Anthony,No,No,No,,,,,,,,,, +1851,chapin_dfss_providers_2011_070212.csv,NORTH AVENUE DAY NURSERY FCCH-VALERIE MARTIN,2043 W PIERCE ,60622,,,,,,,,NORTH AVENUE DAY NURSERY,WEST TOWN,,,,,,No,Yes,Yes,"5757IP(EHS Collaboration Enhanced Home IP), 5837IT(Child Car",,,,,,,,, +1852,chapin_dfss_providers_2011_070212.csv,NORTH AVENUE DAY NURSERY FCCH-VIOLET JACKSON,208 N MENARD ,60644,8246764,,,,,,,NORTH AVENUE DAY NURSERY,AUSTIN,,,,,,No,No,No,,,,,,,,,, +1853,chapin_dfss_providers_2011_070212.csv,NORTH AVENUE DAY NURSERY FCCH-YONNA BANKS,3907 W FILLMORE ,60624,4919316,,,,,,,NORTH AVENUE DAY NURSERY,NORTH LAWNDALE,,,,,Sonja Anthony,No,No,No,,,,,,,,,, +1854,chapin_dfss_providers_2011_070212.csv,NORTH AVENUE DAY NURSERY NORTH AVENUE DAY NURSERY,2001 W PIERCE ,60622,3424499,,,,,,,NORTH AVENUE DAY NURSERY,WEST TOWN,,,,,Steve Koll,Yes,No,Yes,"3270PS(HS Collaboration with Childcare & PreK), 2742PS(Child",,,,,,,,, +1855,chapin_dfss_providers_2011_070212.csv,NORTHWESTERN UNIVERSITY SETTLEMENT HOUSE NORTHWESTERN UNIVERSITY SETTLEMENT HOUSE,1400 W AUGUSTA ,60622,2787471,,,,,,,NORTHWESTERN UNIVERSITY SETTLEMENT HOUSE,WEST TOWN,,,,,Linda McLaren,Yes,No,No,,,,,,,,,, +1856,chapin_dfss_providers_2011_070212.csv,ONWARD NEIGHBORHOOD HOUSE ABC PRESCHOOL,3800 N AUSTIN AVENUE ,60634,6859033,,,,,,,ONWARD NEIGHBORHOOD HOUSE,DUNNING,,,,,Patricia Bentz,Yes,No,No,,,,,,,,,, +1857,chapin_dfss_providers_2011_070212.csv,ONWARD NEIGHBORHOOD HOUSE LEE'S CUDDLES N CARE,6100 W NORTH AVENUE ,60639,7458054,,,,,,,ONWARD NEIGHBORHOOD HOUSE,AUSTIN,,,,,Anndrella Lee,Yes,No,No,,,,,,,,,, +1858,chapin_dfss_providers_2011_070212.csv,ONWARD NEIGHBORHOOD HOUSE MCKINNEY EARLY LEARNING ACADEMY,5745 W DIVISION ST ,60651,,,,,,,,ONWARD NEIGHBORHOOD HOUSE,AUSTIN,,,,,,Yes,No,No,,,,,,,,,, +1859,chapin_dfss_providers_2011_070212.csv,ONWARD NEIGHBORHOOD HOUSE NEW BEGINNINGS,5445 W NORTH AVENUE ,60639,3855365,,,,,,,ONWARD NEIGHBORHOOD HOUSE,AUSTIN,,,,,Verlene Vanderbilt,Yes,No,No,,,,,,,,,, +1860,chapin_dfss_providers_2011_070212.csv,ONWARD NEIGHBORHOOD HOUSE ONWARD NEIGHBORHOOD HOUSE - BELMONT/CRAGIN,5423 W DIVERSEY AVE ,60639,6223215,,,,,,,ONWARD NEIGHBORHOOD HOUSE,BELMONT CRAGIN,,,,,Santa Rivera,Yes,Yes,Yes,"3153IT(Child Care IT Center), 3153PS(Child Care PS Center &",,,,,,,,, +1861,chapin_dfss_providers_2011_070212.csv,ONWARD NEIGHBORHOOD HOUSE ONWARD NEIGHBORHOOD HOUSE - WEST TOWN,600 N LEAVITT STREET ,60612,6666726,,,,,,,ONWARD NEIGHBORHOOD HOUSE,WEST TOWN,,,,,Darica Charles,Yes,No,No,"2744IT(Child Care IT Center), 3272PS(HS Collaboration with C",,,,,,,,, +1862,chapin_dfss_providers_2011_070212.csv,ONWARD NEIGHBORHOOD HOUSE TINY TOWN FOR TOTS,5654 W DIVISION ST ,60651,6260048,,,,,,,ONWARD NEIGHBORHOOD HOUSE,AUSTIN,,,,,Ricky Spain,Yes,No,No,,,,,,,,,, +1863,chapin_dfss_providers_2011_070212.csv,SALVATION ARMY ALL THINGS ARE POSIBLE,4014 W CHICAGO AVE ,60651,4892464,,,,,,,SALVATION ARMY,HUMBOLDT PARK,,,,,Shelandria Galsper,Yes,No,No,,,,,,,,,, +1864,chapin_dfss_providers_2011_070212.csv,SALVATION ARMY BUILDING BLOCKS,1120 W 69TH ST ,60621,4882222,,,,,,,SALVATION ARMY,ENGLEWOOD,,,,,Mitchelle Redd,Yes,No,No,,,,,,,,,, +1865,chapin_dfss_providers_2011_070212.csv,SALVATION ARMY COLUMBUS PARK,500 S CENTRAL ,60644,9214162,,,,,,,SALVATION ARMY,AUSTIN,,,,,Felice Lewis,Yes,No,No,7017PS(HS Collaboration with Childcare & PreK),,,,,,,,, +1866,chapin_dfss_providers_2011_070212.csv,SALVATION ARMY CREATIVE LITTLE ONES,2809 W 59TH ST ,60629,4762562,,,,,,,SALVATION ARMY,CHICAGO LAWN,,,,,Audy Sejour,Yes,No,No,,,,,,,,,, +1867,chapin_dfss_providers_2011_070212.csv,SALVATION ARMY EDSEL ALBERT AMMONS NURSERY,549 E 76TH ST ,60619,4837040,,,,,,,SALVATION ARMY,GREATER GRAND CROSSING,,,,,Debbie Reynolds,Yes,No,No,,,,,,,,,, +1868,chapin_dfss_providers_2011_070212.csv,SALVATION ARMY FAMILY OUTREACH INITIATIVE (SAL ARMY,845 W 69TH STREET ,60621,8324716,,,,,,,SALVATION ARMY,ENGLEWOOD,,,,,Rosie Mohammad,Yes,No,No,4121IT(EHS),,,,,,,,, +1869,chapin_dfss_providers_2011_070212.csv,SALVATION ARMY FCCH-ALLIE WINFIELD,1312 W 95TH ST ,60643,2382079,,,,,,,SALVATION ARMY,WASHINGTON HEIGHTS,,,,,Kelli Kemp,No,No,No,"6108IP(EHS Collaboration Enhanced Home IP), 6108IT(EHS Enhan",,,,,,,,, +1870,chapin_dfss_providers_2011_070212.csv,SALVATION ARMY FCCH-GERALDINE SIVERAND,1504 N LECLAIRE ,60620,8040406,,,,,,,SALVATION ARMY,AUSTIN,,,,,Kelli Kemp,No,No,No,"5759IP(EHS Collaboration Enhanced Home IP), 5759IT(EHS Enhan",,,,,,,,, +1871,chapin_dfss_providers_2011_070212.csv,SALVATION ARMY FCCH-JESSICA HINTON,222 E 87TH ST ,60619,7982000,,,,,,,SALVATION ARMY,CHATHAM,,,,,Kelli Kemp,No,Yes,No,"6106IP(EHS Collaboration Enhanced Home IP), 6106IT(EHS Enhan",,,,,,,,, +1872,chapin_dfss_providers_2011_070212.csv,SALVATION ARMY FCCH-MILDRED SPEARS,6749 S WINCHESTER ,60636,9301832,,,,,,,SALVATION ARMY,WEST ENGLEWOOD,,,,,Kelli Kemp,No,No,No,"6107IP(EHS Collaboration Enhanced Home IP), 6107IT(EHS Enhan",,,,,,,,, +1873,chapin_dfss_providers_2011_070212.csv,SALVATION ARMY FCCH-SHIRLEY OLIVER,6020 S PAULINA ,60636,9126264,,,,,,,SALVATION ARMY,WEST ENGLEWOOD,,,,,Kelli Kemp,No,Yes,No,"5989IP(EHS Collaboration Enhanced Home IP), 5989IT(EHS Enhan",,,,,,,,, +1874,chapin_dfss_providers_2011_070212.csv,SALVATION ARMY INCARNATION,1345 N KARLOV ,60651,2764118,,,,,,,SALVATION ARMY,HUMBOLDT PARK,,,,,Zoraida Fernandini,Yes,No,No,,,,,,,,,, +1875,chapin_dfss_providers_2011_070212.csv,SALVATION ARMY NEW HOPE,4255 W DIVISION ,60651,7724908,,,,,,,SALVATION ARMY,HUMBOLDT PARK,,,,,Catherine Eason,Yes,No,No,3278PS(HS Collaboration with Childcare & PreK),,,,,,,,, +1876,chapin_dfss_providers_2011_070212.csv,SALVATION ARMY RED SHIELD,945 W 69TH STREET ,60621,3583224,,,,,,,SALVATION ARMY,ENGLEWOOD,,,,,Lillie Denton,Yes,No,No,,,,,,,,,, +1877,chapin_dfss_providers_2011_070212.csv,SALVATION ARMY SOUTH SHORE BIBLE/MARANATHA HEAD START,1631 E 71ST ST ,60649,4937500,,,,,,,SALVATION ARMY,SOUTH SHORE,,,,,Jaqueline Carter,Yes,No,No,4380PS(HS Collaboration with Childcare),,,,,,,,, +1878,chapin_dfss_providers_2011_070212.csv,SALVATION ARMY TEEN PARENTING PROGRAM,1548 W ADAMS ,60607,4210327,,,,,,,SALVATION ARMY,NEAR WEST SIDE,,,,,Jasmin Marshall,No,Yes,No,,,,,,,,,, +1879,chapin_dfss_providers_2011_070212.csv,SALVATION ARMY TEMPLE,1 N OGDEN ,60640,2262649,,,,,,,SALVATION ARMY,NEAR WEST SIDE,,,,,Barbara Martin,No,No,No,,,,,,,,,, +1880,chapin_dfss_providers_2011_070212.csv,SOUTH CENTRAL COMMUNITY SERVICES SOUTH CENTRAL COMMUNITY SERVICE,8316 S ELLIS AVE ,60619,4830900,,,,,,,SOUTH CENTRAL COMMUNITY SERVICES,CHATHAM,,,,,Marsha Hightower,Yes,No,No,,,,,,,,,, +1881,chapin_dfss_providers_2011_070212.csv,SOUTH EAST ASIA CENTER SOUTH EAST ASIA CENTER (AINSLIE),1134 W AINSLIE ,60640,9897433,,,,,,,SOUTH EAST ASIA CENTER,UPTOWN,,,,,Fe Mendoza,No,No,Yes,"7139IT(Child Care IT Center), 7139PS (Child Care PS Center &",,,,,,,,, +1882,chapin_dfss_providers_2011_070212.csv,SOUTH EAST ASIA CENTER SOUTH EAST ASIA CENTER (BROADWAY),5120 N BROADWAY AVE ,60640,9897433,,,,,,,SOUTH EAST ASIA CENTER,UPTOWN,,,,,Loipin Chin,No,No,Yes,"2779PS(Child Care PS Center & State Pre-K), 2779SA(School Ag",,,,,,,,, +1883,chapin_dfss_providers_2011_070212.csv,SOUTH EAST ASIA CENTER SOUTH EAST ASIA CENTER (FOSTER),1112 W FOSTER ,60640,9897433,,,,,,,SOUTH EAST ASIA CENTER,EDGEWATER,,,,,Tsering Ngalutsang,No,No,Yes,4127SA(School Age (SA)),,,,,,,,, +1884,chapin_dfss_providers_2011_070212.csv,SOUTH SHORE UNITED METHODIST SOUTH SHORE UNITED METHODIST,7350 S JEFFERY ,60649,3424430,,,,,,,SOUTH SHORE UNITED METHODIST,SOUTH SHORE,,,,,Bettye Turner,Yes,No,No,7141PS(HS Collaboration with Childcare),,,,,,,,, +1885,chapin_dfss_providers_2011_070212.csv,THRESHOLDS THRESHOLDS MOTHERS' PROJECT,1110 W BELMONT ,60657,5373290,,,,,,,THRESHOLDS,LAKE VIEW,,,,,Marshelia Harris,No,No,No,"2535IT(Child Care IT Center), 2535PS(Child Care PS Center),",,,,,,,,, +1886,chapin_dfss_providers_2011_070212.csv,"TRINITY RESOURCES UNLIMITED, INC. HIGH MOUNTAIN",919 N LAVERGNE ,60651,6263997,,,,,,,"TRINITY RESOURCES UNLIMITED, INC.",AUSTIN,,,,,Marion Hayes,Yes,No,No,,,,,,,,,, +1887,chapin_dfss_providers_2011_070212.csv,"TRINITY RESOURCES UNLIMITED, INC. HOPE FOR YOUTH",5900 W IOWA ,60651,6260322,,,,,,,"TRINITY RESOURCES UNLIMITED, INC.",AUSTIN,,,,,Bernice Porter,Yes,No,No,7019PS(HS Collaboration with Childcare),,,,,,,,, +1888,chapin_dfss_providers_2011_070212.csv,TRINITY UNITED CHURCH OF CHRIST DR. DETON J. BROOKS HEAD START,6921 S STONY ISLAND ,60649,9552818,,,,,,,TRINITY UNITED CHURCH OF CHRIST,SOUTH SHORE,,,,,Cherie Brown,Yes,No,Yes,"7079PS(HS Collaboration with Childcare & PreK), 4118PS(Child",,,,,,,,, +1889,chapin_dfss_providers_2011_070212.csv,TRINITY UNITED CHURCH OF CHRIST TRINITY UCC,532 W 95TH ST ,60628,,,,,,,,TRINITY UNITED CHURCH OF CHRIST,WASHINGTON HEIGHTS,,,,,Ekoi Florence,Yes,No,Yes,"2527IT(Child Care IT Center), 4311PS(HS Collaboration with C",,,,,,,,, +1890,chapin_dfss_providers_2011_070212.csv,WESTSIDE HOLISTIC FAMILY SERVICES WESTSIDE HOLISTIC FAMILY SERVICES,4909 W DIVISION ,60651,9218777,,,,,,,WESTSIDE HOLISTIC FAMILY SERVICES,AUSTIN,,,,,Florence Merritt,Yes,No,No,,,,,,,,,, +1891,chapin_dfss_providers_2011_070212.csv,WOODLAWN A.M.E. CHURCH WOODLAWN AME CHURCH,6456 S EVANS ,60637,6671402,,,,,,,WOODLAWN A.M.E. CHURCH,WOODLAWN,,,,,Samara Akins,No,No,No,"7148IT(Child Care IT Center), 2686SA(School Age (SA)), 7148P",,,,,,,,, +1892,chapin_dfss_providers_2011_070212.csv,YMCA OF METROPOLITAN CHICAGO DR. EFFIE O ELLIS,10 S KEDZIE ,60612,5339011,,,,,,,YMCA OF METROPOLITAN CHICAGO,EAST GARFIELD PARK,,,,,Anelyn Jablo,Yes,No,No,4364PS(HS Collaboration with Childcare & PreK),,,,,,,,, +1893,chapin_dfss_providers_2011_070212.csv,YMCA OF METROPOLITAN CHICAGO GARFIELD,7 N HOMAN ,60624,2653900,,,,,,,YMCA OF METROPOLITAN CHICAGO,EAST GARFIELD PARK,,,,,Paulette Hernandez,Yes,Yes,No,"7081PS(HS Collaboration with Childcare & PreK), 6039IP(EHS C",,,,,,,,, +1894,chapin_dfss_providers_2011_070212.csv,YMCA OF METROPOLITAN CHICAGO HIGH RIDGE,2424 W TOUHY ,60645,2628300,,,,,,,YMCA OF METROPOLITAN CHICAGO,WEST RIDGE,,,,,Linda Acevedo,Yes,No,Yes,"2132IT(Child Care IT Center), 7094PS(HS Collaboration with C",,,,,,,,, +1895,chapin_dfss_providers_2011_070212.csv,YMCA OF METROPOLITAN CHICAGO JEANNE KENNEY DAY CARE CENTER,7600 S PARNELL ,60620,8861216,,,,,,,YMCA OF METROPOLITAN CHICAGO,WASHINGTON HEIGHTS,,,,,Arlene Lewis,Yes,Yes,No,"4393IT(Child Care IT Center), 4393PS(Child Care PS Center),",,,,,,,,, +1896,chapin_dfss_providers_2011_070212.csv,YMCA OF METROPOLITAN CHICAGO LOGAN SQUARE - FIRST LUTHERAN,3500 W FULLERTON ,60647,8625960,,,,,,,YMCA OF METROPOLITAN CHICAGO,LOGAN SQUARE,,,,,Nilsa Ramirez,Yes,No,No,,,,,,,,,, +1897,chapin_dfss_providers_2011_070212.csv,YMCA OF METROPOLITAN CHICAGO MARSHALL,3250 W ADAMS ,60624,2650145,,,,,,,YMCA OF METROPOLITAN CHICAGO,EAST GARFIELD PARK,,,,,Beverly Ross,No,Yes,No,"6040IP(EHS Collaboration Enhanced Center-IP), 6040EP(EHS Col",,,,,,,,, +1898,chapin_dfss_providers_2011_070212.csv,YMCA OF METROPOLITAN CHICAGO MCCORMICK TRIBUNE,1834 N LAWNDALE ,60647,2352525,,,,,,,YMCA OF METROPOLITAN CHICAGO,LOGAN SQUARE,,,,,Maria Franco,Yes,Yes,Yes,"2697IT(Child Care IT Center), 7096PS(HS Collaboration with C",,,,,,,,, +1899,chapin_dfss_providers_2011_070212.csv,YMCA OF METROPOLITAN CHICAGO NORTH LAWNDALE,3449 W ARTHINGTON ,60624,6380773,,,,,,,YMCA OF METROPOLITAN CHICAGO,NORTH LAWNDALE,,,,,Leslie Hampton,Yes,Yes,Yes,"8023IT(Child Care IT Center), 8022PS(HS Collaboration with C",,,,,,,,, +1900,chapin_dfss_providers_2011_070212.csv,YMCA OF METROPOLITAN CHICAGO RAUNER,2700 S WESTERN AVE ,60608,8473115,,,,,,,YMCA OF METROPOLITAN CHICAGO,LOWER WEST SIDE,,,,,Sonya Sifuentes,Yes,Yes,Yes,"4167IT(Child Care IT Center), 4170PS(HS Collaboration with C",,,,,,,,, +1901,chapin_dfss_providers_2011_070212.csv,YMCA OF METROPOLITAN CHICAGO SOUTH CHICAGO,3039 E 91ST STREET ,60617,7219100,,,,,,,YMCA OF METROPOLITAN CHICAGO,SOUTH CHICAGO,,,,,Sherry Ceroomes,Yes,No,Yes,"2694IT(Child Care IT Center), 7095PS(HS Collaboration with C",,,,,,,,, +1902,chapin_dfss_providers_2011_070212.csv,YMCA OF METROPOLITAN CHICAGO SOUTH SIDE,6330 S STONY ISLAND ,60637,7739470,,,,,,,YMCA OF METROPOLITAN CHICAGO,WOODLAWN,,,,,Bobbie Dickens,Yes,Yes,Yes,"2695IT(Child Care IT Center), 7144PS(HS Collaboration with C",,,,,,,,, +1903,chapin_dfss_providers_2011_070212.csv,YMCA OF METROPOLITAN CHICAGO WABASH,3763 S WABASH AVE ,60653,2850020,,,,,,,YMCA OF METROPOLITAN CHICAGO,DOUGLAS,,,,,LaVonna Loving,No,No,Yes,2133SA(School Age (SA)),,,,,,,,, +1904,DFSS_AgencySiteLies_2012.csv,Abraham Lincoln Center Abraham-Lincoln,3858 S. Cottage Grove ,60654,2851390,,,,,,,Abraham Lincoln Center,,,,,,,,,,,www.abelink.org,Zirl Smith,Rosalyn Lee,,,,,, +1905,DFSS_AgencySiteLies_2012.csv,Abraham Lincoln Center Lincoln Roseland,7 E. 119th St. ,60628,2647633,,,,,,,Abraham Lincoln Center,,,,,,,,,,,www.abelink.org,Zirl Smith,Barbara Woods,,,,,, +1906,DFSS_AgencySiteLies_2012.csv,Abraham Lincoln Center Lincoln/King,4314 S. Cottage Grove ,60653,7472310,,,,,,,Abraham Lincoln Center,,,,,,,,,,,www.abelink.org,Zirl Smith,Keita King,,,,,, +1907,DFSS_AgencySiteLies_2012.csv,"Ada S. McKinley +Community Services Albany Location",5954 S Albany ,60629,7377810,,,,,,,"Ada S. McKinley +Community Services",,,,,,,,,,,www.adasmckinley.org,"George Jones, Jr.",Mildred Burnside,,,,,, +1908,DFSS_AgencySiteLies_2012.csv,"Ada S. McKinley +Community Services Children's Center (Halsted)",12803 S Halsted ,60628,2645171,,,,,,,"Ada S. McKinley +Community Services",,,,,,,,,,,www.adasmckinley.org,"George Jones, Jr.",Rosalyn Patton,,,,,, +1909,DFSS_AgencySiteLies_2012.csv,"Ada S. McKinley +Community Services Little Genius",11439 S Michigan Ave. ,60628,6298091,,,,,,,"Ada S. McKinley +Community Services",,,,,,,,,,,www.adasmckinley.org,"George Jones, Jr.",Vera Webbs,,,,,, +1910,DFSS_AgencySiteLies_2012.csv,"Ada S. McKinley +Community Services Little Hands",7146 S Ashland Ave. ,60636,4710662,,,,,,,"Ada S. McKinley +Community Services",,,,,,,,,,,www.adasmckinley.org,"George Jones, Jr.",Lafredia Hobson,,,,,, +1911,DFSS_AgencySiteLies_2012.csv,"Ada S. McKinley +Community Services McKinley-Ersula Howard",7222 S. Exchange ,60649,2219711,,,,,,,"Ada S. McKinley +Community Services",,,,,,,,,,,www.adasmckinley.org,"George Jones, Jr.",Joni Rudds,,,,,, +1912,DFSS_AgencySiteLies_2012.csv,"Ada S. McKinley +Community Services McKinley-Maggie Drummond",4301 S. Wabash ,60653,3738200,,,,,,,"Ada S. McKinley +Community Services",,,,,,,,,,,www.adasmckinley.org,"George Jones, Jr.",Lyris Clark,,,,,, +1913,DFSS_AgencySiteLies_2012.csv,"Ada S. McKinley +Community Services McKinley-Roseland",11410 S. Edbrooke ,60628,4681918,,,,,,,"Ada S. McKinley +Community Services",,,,,,,,,,,www.adasmckinley.org,"George Jones, Jr.",Anna Luna,,,,,, +1914,DFSS_AgencySiteLies_2012.csv,"Ada S. McKinley +Community Services McKinley-Trumbull Park",10530 S. Oglesby ,60617,9785341,,,,,,,"Ada S. McKinley +Community Services",,,,,,,,,,,www.adasmckinley.org,"George Jones, Jr.",Damita Collins,,,,,, +1915,DFSS_AgencySiteLies_2012.csv,"Ada S. McKinley +Community Services McKinley-Wright Renaissance",7939 S. Western ,60620,4768805,,,,,,,"Ada S. McKinley +Community Services",,,,,,,,,,,www.adasmckinley.org,"George Jones, Jr.",Corllis Wright,,,,,, +1916,DFSS_AgencySiteLies_2012.csv,"Ada S. McKinley +Community Services Montessori Academy",11025 S Halsted Ave. ,60628,2810069,,,,,,,"Ada S. McKinley +Community Services",,,,,,,,,,,www.adasmckinley.org,"George Jones, Jr.",Gloria Walker,,,,,, +1917,DFSS_AgencySiteLies_2012.csv,"Ada S. McKinley +Community Services Stepping Stones CCC",1300 E 75th St. ,60619,4930000,,,,,,,"Ada S. McKinley +Community Services",,,,,,,,,,,www.adasmckinley.org,"George Jones, Jr.",Dr. Nelda Jones,,,,,, +1918,DFSS_AgencySiteLies_2012.csv,"Albany Park Community +Center Ainslie",3401 W. Ainslie ,60625,5395907,,,,,,,"Albany Park Community +Center",,,,,,,,,,,www.apcc-chgo.org,Harold Rice,John DeJulio,,,,,, +1919,DFSS_AgencySiteLies_2012.csv,"Albany Park Community +Center Kimball",5121 N. Kimball ,60625,5095657,,,,,,,"Albany Park Community +Center",,,,,,,,,,,www.apcc-chgo.org,Harold Rice,Eve Volin,,,,,, +1920,DFSS_AgencySiteLies_2012.csv,"Appeal for Charities and +Goodwill Appeals for Charities",50 W. 71st St ,60621,6515400,,,,,,,"Appeal for Charities and +Goodwill",,,,,,,,,,,,P.A. Onsei-Bonsu,Charlotte Osei-Bonsu,,,,,, +1921,DFSS_AgencySiteLies_2012.csv,BBF Family Services BBF Family Service,1512 S. Pulaski ,60623,2779582,,,,,,,BBF Family Services,,,,,,,,,,,www.betterboys.org,,,,,,,, +1922,DFSS_AgencySiteLies_2012.csv,Beacon Therapeutic Beacon Therapeutic,1912 W 103rd St ,60643,2981243,,,,,,,Beacon Therapeutic,,,,,,,,,,,www.beacon-therapeutic.org,Susan Reyna-Guerrero,Susan Reyna-Guerrero,,,,,, +1923,DFSS_AgencySiteLies_2012.csv,"Board Trustees-City +Colleges of Chicago Daley College",7500 S Pulaski Rd. ,60652,8387562,,,,,,,"Board Trustees-City +Colleges of Chicago",,,,,,,,,,,www.ccc.edu,Phyllis Daniels-Ward,Marcey Reyes,,,,,, +1924,DFSS_AgencySiteLies_2012.csv,"Board Trustees-City +Colleges of Chicago Kennedy-King College",710 W 65th Building Z ,60621,6025481,,,,,,,"Board Trustees-City +Colleges of Chicago",,,,,,,,,,,www.ccc.edu,Phyllis Daniels-Ward,Guadalupe Pacias,,,,,, +1925,DFSS_AgencySiteLies_2012.csv,"Board Trustees-City +Colleges of Chicago Malcolm X College",1900 W. Van Buren ,60612,8507176,,,,,,,"Board Trustees-City +Colleges of Chicago",,,,,,,,,,,www.ccc.edu,Phyllis Daniels-Ward,Aisha Ruther,,,,,, +1926,DFSS_AgencySiteLies_2012.csv,"Board Trustees-City +Colleges of Chicago Olive-Harvey College",10001 S. Woodlawn ,60628,2916317,,,,,,,"Board Trustees-City +Colleges of Chicago",,,,,,,,,,,www.ccc.edu,Phyllis Daniels-Ward,Tiffany Carter,,,,,, +1927,DFSS_AgencySiteLies_2012.csv,"Board Trustees-City +Colleges of Chicago Truman College",1145 W. Wilson Ave ,60640,8784740,,,,,,,"Board Trustees-City +Colleges of Chicago",,,,,,,,,,,www.ccc.edu,Phyllis Daniels-Ward,Dexter Smith,,,,,, +1928,DFSS_AgencySiteLies_2012.csv,"Carole Robertson Center +For Learning Carole Robertson Center-2929",2929 W. 19th St. ,60623,5211600,,,,,,,"Carole Robertson Center +For Learning",,,,,,,,,,,www.crcl.net,Gail Nelson,Ruby Walker,,,,,, +1929,DFSS_AgencySiteLies_2012.csv,"Carole Robertson Center +For Learning Carole Robertson Center - +3701(OGDEN)",3701 W. Ogden ,60623,5228400,,,,,,,"Carole Robertson Center +For Learning",,,,,,,,,,,www.crcl.net,Gail Nelson,Tracey Young,,,,,, +1930,DFSS_AgencySiteLies_2012.csv,"Carole Robertson Center +For Learning Carole Robertson Center-2020",2020 W. Roosevlet Rd ,60608,2437300,,,,,,,"Carole Robertson Center +For Learning",,,,,,,,,,,www.crcl.net,Gail Nelson,Betty Lee,,,,,, +1931,DFSS_AgencySiteLies_2012.csv,"Catholic Charities of the +Archdiocese of Chicago Chicago Lawn",3001 W. 59th St. ,60629,9251085,,,,,,,"Catholic Charities of the +Archdiocese of Chicago",,,,,,,,,,,www.catholiccharities.net,Laura Rios,Virginia Carrillo,,,,,, +1932,DFSS_AgencySiteLies_2012.csv,"Catholic Charities of the +Archdiocese of Chicago Grace Mission",5332 S. Western ,60609,4761990,,,,,,,"Catholic Charities of the +Archdiocese of Chicago",,,,,,,,,,,www.catholiccharities.net,Laura Rios,Francine Johnson,,,,,, +1933,DFSS_AgencySiteLies_2012.csv,"Catholic Charities of the +Archdiocese of Chicago Our Lady of Lourdes",1449 S. Keeler ,60623,5213126,,,,,,,"Catholic Charities of the +Archdiocese of Chicago",,,,,,,,,,,www.catholiccharities.net,Laura Rios,Deborah O'Brien,,,,,, +1934,DFSS_AgencySiteLies_2012.csv,"Catholic Charities of the +Archdiocese of Chicago Our Lady of Tepeyac",2414 S. Albany ,60623,2775888,,,,,,,"Catholic Charities of the +Archdiocese of Chicago",,,,,,,,,,,www.catholiccharities.net,Laura Rios,Petra Gutierrez,,,,,, +1935,DFSS_AgencySiteLies_2012.csv,"Catholic Charities of the +Archdiocese of Chicago St. Joseph",4800 S. Paulina ,60609,9272524,,,,,,,"Catholic Charities of the +Archdiocese of Chicago",,,,,,,,,,,www.catholiccharities.net,Laura Rios,Janice Williams,,,,,, +1936,DFSS_AgencySiteLies_2012.csv,Centers For New Horizons Altgeld I,941 E. 132nd St. ,60627,4683055,,,,,,,Centers For New Horizons,,,,,,,,,,,www.cnh.org,"Sokoni Karanja, Pres.",Gloria Lawson,,,,,, +1937,DFSS_AgencySiteLies_2012.csv,Centers For New Horizons Effie Ellis,4301 S Cottage Grove ,60653,5489839,,,,,,,Centers For New Horizons,,,,,,,,,,,www.cnh.org,"Sokoni Karanja, Pres.",Valerie Jones,,,,,, +1938,DFSS_AgencySiteLies_2012.csv,Centers For New Horizons Ida B. Wells at Dawson,3901 S. State ,60609,5367864,,,,,,,Centers For New Horizons,,,,,,,,,,,www.cnh.org,"Sokoni Karanja, Pres.",Carolyn Terry,,,,,, +1939,DFSS_AgencySiteLies_2012.csv,Chicago Child Care Society Chicago Child Care Society,5467 S University Ave ,60615,6430452,,,,,,,Chicago Child Care Society,,,,,,,,,,,www.cccsociety.org,Pamela Flowers-Thomas,Elizabeth Rogers,,,,,, +1940,DFSS_AgencySiteLies_2012.csv,"Chicago Commons +Association A-Z Mall World",2629 S Lawndale ,60623,77352211561150,,,,,,,"Chicago Commons +Association",,,,,,,,,,,www.chicagocommons.org,Dan Valliere,,,,,,, +1941,DFSS_AgencySiteLies_2012.csv,"Chicago Commons +Association Betty's Daycare Academy",5725 W Chicago Ave ,60651,2611433,,,,,,,"Chicago Commons +Association",,,,,,,,,,,www.chicagocommons.org,Dan Valliere,Betty Hughes,,,,,, +1942,DFSS_AgencySiteLies_2012.csv,"Chicago Commons +Association Chicago Urban Daycare",1248 W 69th St ,60636,4833555,,,,,,,"Chicago Commons +Association",,,,,,,,,,,www.chicagocommons.org,Dan Valliere,Rene Jordan,,,,,, +1943,DFSS_AgencySiteLies_2012.csv,"Chicago Commons +Association Children's World",3356 S. Ashland ,60609,5230100,,,,,,,"Chicago Commons +Association",,,,,,,,,,,www.chicagocommons.org,Dan Valliere,Paula Montilla,,,,,, +1944,DFSS_AgencySiteLies_2012.csv,"Chicago Commons +Association Computer Preschool Academy",1400 W Garfield Blvd ,60609,6275000,,,,,,,"Chicago Commons +Association",,,,,,,,,,,www.chicagocommons.org,Dan Valliere,Paris Woody,,,,,, +1945,DFSS_AgencySiteLies_2012.csv,"Chicago Commons +Association Diversey Day Care","3007 W Diversey, Chicago ",60647,3427777,,,,,"Chicago Commons +Association",,,,,,,,,,,www.chicagocommons.org,Dan Valliere,Sharon Holiday,,,,,,,, +1946,DFSS_AgencySiteLies_2012.csv,"Chicago Commons +Association Eyes on the Future",6969 N. Ravenswood ,60626,9730771,,,,,,,"Chicago Commons +Association",,,,,,,,,,,www.chicagocommons.org,Dan Valliere,Azieb Gebrehiiwet,,,,,, +1947,DFSS_AgencySiteLies_2012.csv,"Chicago Commons +Association Guadalupano Family Center",1814 S. Paulina ,60639,6663883,,,,,,,"Chicago Commons +Association",,,,,,,,,,,www.chicagocommons.org,Dan Valliere,Esmeralda Arroyo,,,,,, +1948,DFSS_AgencySiteLies_2012.csv,"Chicago Commons +Association Joyful Noise Day Care",4843 W North Ave ,60639,2525990,,,,,,,"Chicago Commons +Association",,,,,,,,,,,www.chicagocommons.org,Dan Valliere,Maria Gonzalez,,,,,, +1949,DFSS_AgencySiteLies_2012.csv,"Chicago Commons +Association Kiddie Garden Little Angels",4235 S Kedzie Ave ,60632,3928199,,,,,,,"Chicago Commons +Association",,,,,,,,,,,www.chicagocommons.org,Dan Valliere,Sandra McPherson,,,,,, +1950,DFSS_AgencySiteLies_2012.csv,"Chicago Commons +Association Kimball Day Care",1636 N Kimball Ave ,60647,2357200,,,,,,,"Chicago Commons +Association",,,,,,,,,,,www.chicagocommons.org,Dan Valliere,Alberta Varda,,,,,, +1951,DFSS_AgencySiteLies_2012.csv,"Chicago Commons +Association Little People's Day Care",7428 N Rogers Ave ,60626,7612305,,,,,,,"Chicago Commons +Association",,,,,,,,,,,www.chicagocommons.org,Dan Valliere,Reyna Nava,,,,,, +1952,DFSS_AgencySiteLies_2012.csv,"Chicago Commons +Association Los Pequenos Angelitos",3711 W 55th St ,60632,7355827,,,,,,,"Chicago Commons +Association",,,,,,,,,,,www.chicagocommons.org,Dan Valliere,Angeles Nunez,,,,,, +1953,DFSS_AgencySiteLies_2012.csv,"Chicago Commons +Association My Precious Little Angels",7012 W North Ave ,60707,6371708,,,,,,,"Chicago Commons +Association",,,,,,,,,,,www.chicagocommons.org,Dan Valliere,Doris Gadberry,,,,,, +1954,DFSS_AgencySiteLies_2012.csv,"Chicago Commons +Association Nia Family Center",744 N. Monticello ,60612,7220115,,,,,,,"Chicago Commons +Association",,,,,,,,,,,www.chicagocommons.org,Dan Valliere,Erica Barbara,,,,,, +1955,DFSS_AgencySiteLies_2012.csv,"Chicago Commons +Association Panda Montessori",6921 N. Ridge ,60645,3386755,,,,,,,"Chicago Commons +Association",,,,,,,,,,,www.chicagocommons.org,Dan Valliere,Angela Perry,,,,,, +1956,DFSS_AgencySiteLies_2012.csv,"Chicago Commons +Association Paulo Freire",1653 W. 43rd St ,60609,8266260,,,,,,,"Chicago Commons +Association",,,,,,,,,,,www.chicagocommons.org,Dan Valliere,Nilda Vargas,,,,,, +1957,DFSS_AgencySiteLies_2012.csv,"Chicago Commons +Association Rainbow Daycare",3250 W Irving Park Rd ,60618,4788182,,,,,,,"Chicago Commons +Association",,,,,,,,,,,www.chicagocommons.org,Dan Valliere,James Limson,,,,,, +1958,DFSS_AgencySiteLies_2012.csv,"Chicago Commons +Association St Catherine's - St. Lucy School",27 Washington Oak Park IL 60302,,3865286,,,,,"Chicago Commons +Association",,,,,,,,,,,www.chicagocommons.org,Dan Valliere,Sister Marion Cypser,,,,,,,, +1959,DFSS_AgencySiteLies_2012.csv,"Chicago Commons +Association Taylor Center for New +Experiences",1633 N. Hamlin ,60647,2278551,,,,,,,"Chicago Commons +Association",,,,,,,,,,,www.chicagocommons.org,Dan Valliere,Vanessa Powell,,,,,, +1960,DFSS_AgencySiteLies_2012.csv,"Chicago Commons +Association Tots Express Learning Center",1705 E 87th St ,60617,7218687,,,,,,,"Chicago Commons +Association",,,,,,,,,,,www.chicagocommons.org,Dan Valliere,Clara Cureton,,,,,, +1961,DFSS_AgencySiteLies_2012.csv,"Chicago Commons +Association V & J Day Care Center",1 E 113th St ,60628,7853940,,,,,,,"Chicago Commons +Association",,,,,,,,,,,www.chicagocommons.org,Dan Valliere,Reaver Barlow-Bell,,,,,, +1962,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Aldridge, Ira F.",630 E. 131st St. ,60827,5355614,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mr. Vincent Payne,,,,,, +1963,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Altgeld, John P.",7007 S. Loomis ,60636,5353250,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Gloria Davis,,,,,, +1964,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Azuela, Mariano",4707 W. Marquette ,60629,5357395,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Carmen Navarro,,,,,, +1965,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Barton, Clara",7650 S. Wolcott Ave ,60620,5353260,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mr. Frank Gettridge,,,,,, +1966,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Beethoven, Ludwig V.",25 W. 47th St. ,60609,5351480,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Dyrice Garner,,,,,, +1967,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Beidler, Jacob",3151 W. Walnut ,60612,5346811,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mr Charles Anderson,,,,,, +1968,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Bethune, Mary McLeod",3033 W. Arthington ,60612,5346890,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Zipporah Hightower,,,,,, +1969,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Bond, Carrie Jacobs","7050 S. May, Chicago ",60621,5353480,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Valesta Cobbs,,,,,,,, +1970,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Bradwell, Myra",7736 S. Burnham ,60649,5356600,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Bennette/Kimberly Henderson,,,,,, +1971,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Brown, Ronald",12607 S Union ,60628,5355385,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Gale Baker,,,,,, +1972,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Brunson Math & Science, Milton",932 N. Central ,60651,5346025,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Carol Wilson,,,,,, +1973,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Burke, Edmond",5356 S. King Dr ,60615,5351325,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Nicholas Gaines,,,,,, +1974,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Cameron, Daniel R.",1234 N. Monticello ,60651,5344290,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mr. Stephen D Harden,,,,,, +1975,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Cardenas, Lazaro",2345 S. Millard ,60623,5341475,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Dr. Jeremy Feiwell,,,,,, +1976,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Carson, Rachel",5516 S. Mapplewood Ave ,60629,5359222,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Javier Arriola-Lopez,,,,,, +1977,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Cather, Willa",2908 W. Washington Blvd. ,60612,5346780,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Hattie B. King,,,,,, +1978,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Chalmers, Thomas",2745 W. Roosevelt ,60608,5341720,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mr. Kent Nolen,,,,,, +1979,DFSS_AgencySiteLies_2012.csv,Chicago Public Schools Chase Elementary,2021 N. Point St ,60647,5344185,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Raquel Saucedo,,,,,, +1980,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Chopin, Frederic",2450 W. Rice ,60622,5344080,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Antuanette Mester,,,,,, +1981,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Claremont Math and Science +Academy",2300 W. 64th St. ,60636,5358110,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mrs. Rebecca L. Stinson,,,,,, +1982,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Cockrell, Oneida",30 East 61st Street ,60637,5350650,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Rashid Shabazz,,,,,, +1983,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Cooper Dual Language +Academy, Peter",1624 W. 19th Street ,60608,5347205,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Martha Monrroy,,,,,, +1984,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Corkery, Daniel",2510 S Kildare Ave ,60623,5341650,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Bertha Arredondo,,,,,, +1985,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Curtis, George W.",32 East 115th Street ,60628,5355050,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Evelyn Robbins,,,,,, +1986,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Daley, Richard J.",5024 S Wolcott Ave ,60609,5359091,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Rhonda Hoskins,,,,,, +1987,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Davis, Nathan",3014 W. 39th Place ,60632,5354540,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mr. Santos Gomez,,,,,, +1988,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Deneen, Charles S.",7257 S. State ,60619,5353035,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Annise Lewis,,,,,, +1989,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools DePriest, Oscar",139 S Parkside Ave ,60639,5346800,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Minnie Watson,,,,,, +1990,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Dett, R. Nathaniel",2306 West Maypole ,60612,5347160,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Deborah J. Bonner,,,,,, +1991,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Dodge Renaissance Academy, Mary Mapes",2651 West Washington ,60612,5346640,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Edward Morris/Debra Moriarty,,,,,, +1992,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Doolittle, James R.",535 East 35th Street ,60653,5351040,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Lauren Norwood,,,,,, +1993,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Dulles, John Foster",6311 South Calumet ,60637,5350690,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Pamela Creed,,,,,, +1994,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Dvorak Math & Science Tech +Academy, Anton",3615 West 16th ,60623,5341690,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Alma Thompson,,,,,, +1995,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Eberhart, John F.",3400 W 65th Pl. ,60629,5359190,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Nneka Gunn,,,,,, +1996,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Edwards, Richard",4950 S. LaPorte ,60632,5352000,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mrs. Judith Sauri,,,,,, +1997,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Ellington, Edward ""Duke"" K.",243 North Parkside ,60644,5346361,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Shirley M. Scott,,,,,, +1998,DFSS_AgencySiteLies_2012.csv,Chicago Public Schools Esmond Elementary,1865 West Montvale ,60643,5352650,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Dr. Angela Tucker,,,,,, +1999,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Finkl, William F.",2332 S Western Ave. ,60608,5355850,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mr. Abelino Quintero,,,,,, +2000,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Fiske, John",6145 South Ingleside ,60637,5350990,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Cynthia Miller,,,,,, +2001,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Fuller, Melville W.",4214 S. St. Lawrence ,60653,5351687,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms Camilla Young,,,,,, +2002,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Fulton, Robert",5300 S. Hermitage ,60609,5359000,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Cherie Novak,,,,,, +2003,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Funston, Frederick",2010 N Central Park ,60647,5344125,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Nilma Osiecki,,,,,, +2004,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Gale Comm. Acad., Stephen F.",1631 W. Jonquil Terrace ,60626,5342100,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Cassandra Washington,,,,,, +2005,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Gary, Joseph E.",3740 W. 31st St. ,60623,5341455,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mr. Alberto Juarez,,,,,, +2006,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Goldblatt, Nathan R.",4257 W. Adams ,60624,5346860,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Yvette R. Currington,,,,,, +2007,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Goudy, William C.",5120 N. Winthrop ,60640,5342480,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Pamela S. Brandt,,,,,, +2008,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Graham, Alexander",4436 S. Union ,60609,5351308,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mr. John Nichols,,,,,, +2009,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Gresham, Walter Q.",8524 S. Green ,60620,5353350,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Diedrus U. Brown,,,,,, +2010,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Guggenheim, Simon",7141 S. Morgan St. ,60621,5353587,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Vikki Stokes,,,,,, +2011,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Haley, Alex",11411 S. Eggleston ,60628,5355345,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Vaida Williams,,,,,, +2012,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Hamline, John H",4652 S. Bishop ,60609,5354520,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Valerie Brown,,,,,, +2013,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Hay Comm. Academy, John",1018 N. Laramie ,60651,5346000,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mr. Wayne Williams,,,,,, +2014,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Henson, Matthew A.",1326 S. Avers ,60623,5341804,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mr. Demetrius D. Hobson,,,,,, +2015,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Herbert, Victor",2131 W. Monroe ,60612,5347809,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Denise J. Gillespie,,,,,, +2016,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Higgins C.A., Thomas J.",11710 S. Morgan ,60643,5355625,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Dr. Mabel Alfred,,,,,, +2017,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Hinton, William Augustus",644 W. 71st Street ,60621,5353875,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Pamela Brunson-Allen,,,,,, +2018,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Holmes, Oliver Wendell",955 W. Garfield ,60621,5359025,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Angela L. Thomas,,,,,, +2019,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Hughes, Langston",240 W. 104th St. ,60628,5355075,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Anita Muse,,,,,, +2020,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Hurley, Edward N.",3849 W. 69th Place ,60629,5352068,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mrs. Dolores Cupp,,,,,, +2021,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Jenner Academy of the Arts, Edward",1119 N. Cleveland ,60610,5348440,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Berlinder Fry,,,,,, +2022,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Johnson, James Weldon",1420 S. Albany ,60623,5341829,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Alice F. Henry,,,,,, +2023,DFSS_AgencySiteLies_2012.csv,Chicago Public Schools Jordan Comm.,7414 North Wolcott ,60626,5342220,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Willie White,,,,,, +2024,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Jungman, Joseph",1746 S. Miller ,60608,5347375,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mrs. Zaida Hernandez,,,,,, +2025,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Kershaw, Joshua D.",6450 S. Lowe ,60621,5353050,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Veronica Nash,,,,,, +2026,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Kohn, Alfred David",10414 S. State ,60628,5355489,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Kimberly Moore,,,,,, +2027,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Lafayette, Jean De",2714 W. Augusta Blvd. ,60622,5344326,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mrs. Trisha Shrode,,,,,, +2028,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Lavizzo, Mildred I.",138 W. 109th St ,60628,5355300,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mrs.Tracey Stelly,,,,,, +2029,DFSS_AgencySiteLies_2012.csv,Chicago Public Schools Lawndale Comm. Academy,3500 W. Douglas Blvd ,60623,5341635,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mr. Wilard Willette,,,,,, +2030,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Linne, Carl Von",3221 N. Sacramento ,60618,5345262,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Renee P. Mackin,,,,,, +2031,DFSS_AgencySiteLies_2012.csv,Chicago Public Schools Little Village,2620 S Lawndale Ave ,60623,5341880,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Elsa Carmona,,,,,, +2032,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Lloyd, Henry D.",2103 N. Lamon Av ,60639,5343070,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mr. Kiltae Kim,,,,,, +2033,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Madison, James",7433 S. Dorchester ,60619,5350551,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Dr. Beverly J. Greene,,,,,, +2034,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Mason, Roswell B.",4216 W. 19th St ,60623,5341530,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Tonya Tolbert,,,,,, +2035,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools May Community Academy, Horatio",512 S. Lavergne ,60644,5346140,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Roger Lewis,,,,,, +2036,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Mayo, William J. & Charles H.",249 E. 37th St ,60653,5351260,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Stephen Bournes,,,,,, +2037,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools McClellan, George B.",3527 S. Wallace ,60609,5351732,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Joseph Shoffner,,,,,, +2038,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools McCormick, Cyrus H.",2712 S Sawyer Ave. ,60623,5357252,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Cristina Romo,,,,,, +2039,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools McCutcheon Main, John T.",4846 N. Sheridan ,60640,5342680,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Dr. Carol Ann Lang,,,,,, +2040,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools McDowell, Mary E.",1419 E. 89th St. ,60619,5356404,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Dr. Jo La Tanya Easterling-Hood,,,,,, +2041,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools McKay, Francis M.",7060 S. Washtenaw ,60629,5359340,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mrs. Dawn Prather-Hawk,,,,,, +2042,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools McNair Academy Center, Ronald +E.",4820 W. Walton ,60651,5348980,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Dr. Shirley Dillard,,,,,, +2043,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools McPherson, James B.",4728 N. Wolcott Av ,60640,5342625,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Carmen A. Mendoza,,,,,, +2044,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Monroe, James",3651 W. Schubert Ave ,60647,5344155,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mr. Edwin Rivera,,,,,, +2045,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Morgan, Garrett A.",8407 S. Kerfoot ,60620,5353366,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Jerrold Washington,,,,,, +2046,DFSS_AgencySiteLies_2012.csv,Chicago Public Schools Morton Career Academy,431 N.Troy ,60612,5346791,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Angel L. Turner,,,,,, +2047,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools N.T.A. (National Teachers +Academy)",55 W. Cermak ,60616,5349970,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Amy G. Rome,,,,,, +2048,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Nash, Henry H.",4837 W. Erie St. ,60644,5346125,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Tresa D. Dunbar,,,,,, +2049,DFSS_AgencySiteLies_2012.csv,Chicago Public Schools New Field Primary School,1707 W. Morse ,60626,5342760,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Susan M. Kilbane,,,,,, +2050,DFSS_AgencySiteLies_2012.csv,Chicago Public Schools Nicholson Math and Science,6006 S Peoria St ,60621,5353285,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mr. Rodney L. Hull,,,,,, +2051,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Nixon, William P.",2121 N Keeler Ave. ,60639,5344375,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Herman Escobar,,,,,, +2052,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools O'Keeffe, Isabell C.",6940 S. Merrill ,60649,5350600,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Stephen Parker,,,,,, +2053,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools O'Toole, Luke",6550 S. Seeley ,60636,5359040,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mr. King Hall,,,,,, +2054,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Peabody, Elizabeth",1444 W. Augusta Blvd. ,60622,5344170,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mr. Federico Flores,,,,,, +2055,DFSS_AgencySiteLies_2012.csv,Chicago Public Schools Peck School,4026 W. 59th Street ,60629,5352450,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Okab Hassan,,,,,, +2056,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Penn, William",1616 S. Avers ,60623,5341665,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mrs. Sherryl Moore-Ollie,,,,,, +2057,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Perez, Manuel",1241 W. 19th Street ,60608,5347650,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Vicky Kleros,,,,,, +2058,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Piccolo Specialty School, Brian",1040 N. Keeler Avenue ,60651,5344425,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Tiffany S. Allison,,,,,, +2059,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Pickard, Josiah L.",2301 W. 21st Street ,60608,5357280,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Rigo Hernandez,,,,,, +2060,DFSS_AgencySiteLies_2012.csv,Chicago Public Schools Pilsen Comm. Academy,1420 W. 17th Street ,60608,5347675,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Dr. Adel M. Ali,,,,,, +2061,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Reavis, William Claude",834 E. 50th Street ,60615,5351060,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mr. Michael T. Johnson,,,,,, +2062,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Revere, Paul",1010 E. 72nd Street ,60619,5350618,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mrs. Veronica J. Thompson,,,,,, +2063,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Robinson, Jackie R.",4225 S. Lake Park Ave. ,60653,5351777,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Sonja Spiller,,,,,, +2064,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Ruggles, Martha M.",7831 S. Prairie Ave. ,60619,5353085,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ida Patterson,,,,,, +2065,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Ryder, William H.",8716 S. Wallace Street ,60620,5353843,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mrs. Janice Preston,,,,,, +2066,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Ryerson, Martin A.",646 N Lawndale ,60624,5346700,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mr. Lorenzo Russell,,,,,, +2067,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Sandoval, Socorro",5534 S Saint Louis Ave ,60629,5350457,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Dr. Ana Expinoza,,,,,, +2068,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Saucedo Scholastic Academy, Maria",2850 W. 24 th Blvd ,60623,5341770,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Isamar Vargas Colon,,,,,, +2069,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Seward, William H.",4600 S Hermitage Ave. ,60609,5354890,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Nora Cardenas,,,,,, +2070,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Sexton, Austin O.",6020 S. Langley ,60637,5350640,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mrs. Ginger V. Bryant,,,,,, +2071,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Sherwood, Jessie",245 W 57th St ,60621,5350829,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Alice Buzanis,,,,,, +2072,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Shields, James",4250 S Rockwell St. ,60632,5357285,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Philip Salemi,,,,,, +2073,DFSS_AgencySiteLies_2012.csv,Chicago Public Schools Songhai Learning Institute,11725 S. Perry Ave ,60628,5355547,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Kathy Farr,,,,,, +2074,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Spencer Math and Science +Academy",214 N. Lavergne ,60644,5346150,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mr. Shawn L. Jackson,,,,,, +2075,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Stagg, Amos A.",7424 S. Morgan St. ,60621,5353565,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Ruth A. Miller,,,,,, +2076,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Stewart, Graeme",4525 N. Kenmore ,60640,5342640,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Juliet Rempa,,,,,, +2077,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Stockton, Joseph",4423 N. Magnolia ,60640,5342510,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Jill Besenjak,,,,,, +2078,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Stowe, Harriet Beecher",3444 W. Wabansia ,60647,5344175,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Dr. Charles L. Kyle,,,,,, +2079,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Tanner, Henry O.",7350 S. Evans ,60619,5353870,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Kenndell Smith ,,,,,, +2080,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Thomas Center, Velma",3625 S Hoyne ,60609,5354088,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Elizabeth Najera ,,,,,, +2081,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Thorp, James N.",8914 S Buffalo Ave. ,60617,5356250,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Tony Fisher,,,,,, +2082,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Ward, Laura S.",410 N. Monticello ,60624,5346440,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Relanda Hobbs ,,,,,, +2083,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Whittier, John Greenleaf",1900 W. 23rd St ,60608,5354590,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Zoila Garcia ,,,,,, +2084,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Williams, Daniel H.",2710 S. Dearborn ,60616,5349226,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Lashonn Graham,,,,,, +2085,DFSS_AgencySiteLies_2012.csv,Chicago Public Schools Woodlawn Community School,6657 S Kimbark Ave ,60637,5350801,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Frank Embil,,,,,, +2086,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Woodson South, Carter G.",44511 S. Evans ,60653,5351822,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Tamara Littlejohn ,,,,,, +2087,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Yates, Richard",1839 N. Richmond ,60647,5344550,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Mr. Harry Randell ,,,,,, +2088,DFSS_AgencySiteLies_2012.csv,"Chicago Public Schools Young, Ella Flagg",1434 N. Parkside ,60651,5346200,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Crystal Bell ,,,,,, +2089,DFSS_AgencySiteLies_2012.csv,Chicago Public Schools Zapata Academy,2728 S. Kostner Ave. ,60623,5341390,,,,,,,Chicago Public Schools,,,,,,,,,,,www.cps.edu,Paula Cottone,Ms. Ruth F. Garcia,,,,,, +2090,DFSS_AgencySiteLies_2012.csv,Chicago State University Grant Creative Learning Center,4025 S Drexel Blvd. ,60653,2858440,,,,,,,Chicago State University,,,,,,,,,,,www.gamechicago.org,Grace Ratliff,Grace Ratliff,,,,,, +2091,DFSS_AgencySiteLies_2012.csv,Chicago State University Raise Up a Child,124 E. 113 St. ,60628,7851172,,,,,,,Chicago State University,,,,,,,,,,,www.gamechicago.org,Grace Ratliff,Sherrie Smith,,,,,, +2092,DFSS_AgencySiteLies_2012.csv,Chicago State University Shining Star Early Learning Academy - II,854 E 79th St ,60619,4191994,,,,,,,Chicago State University,,,,,,,,,,,www.gamechicago.org,Grace Ratliff,Shanida Wray,,,,,, +2093,DFSS_AgencySiteLies_2012.csv,Chicago State University Shining Star Early Learning Academy - III,338 E 103rd St ,60628,9957827,,,,,,,Chicago State University,,,,,,,,,,,www.gamechicago.org,Grace Ratliff,Erica Shirley ,,,,,, +2094,DFSS_AgencySiteLies_2012.csv,Chicago State University The Love Learning Center,228 E 61st St ,60637,7520243,,,,,,,Chicago State University,,,,,,,,,,,www.gamechicago.org,Grace Ratliff,Burchell Love ,,,,,, +2095,DFSS_AgencySiteLies_2012.csv,Chicago State University Tiny Tots Villa,8128 S. King Dr. ,60641,4836251,,,,,,,Chicago State University,,,,,,,,,,,www.gamechicago.org,Grace Ratliff,Judith Tyson,,,,,, +2096,DFSS_AgencySiteLies_2012.csv,Chicago Youth Centers ABC,3415 W. 13th Pl. ,60623,7625655,,,,,,,Chicago Youth Centers,,,,,,,,,,,www.chicagoyouthcenters.org,Harry Wells,Tamarra White ,,,,,, +2097,DFSS_AgencySiteLies_2012.csv,Chicago Youth Centers Centro Nuestro,3222 W. Division ,60651,4893157,,,,,,,Chicago Youth Centers,,,,,,,,,,,www.chicagoyouthcenters.org,Harry Wells,Beth Mrofcza ,,,,,, +2098,DFSS_AgencySiteLies_2012.csv,Chicago Youth Centers Cuddle Care Academy,4800 S Lake Park Ave ,60615,2851114,,,,,,,Chicago Youth Centers,,,,,,,,,,,www.chicagoyouthcenters.org,Harry Wells,Robbin Cole ,,,,,, +2099,DFSS_AgencySiteLies_2012.csv,Chicago Youth Centers Dorothy Gautreaux,975 E. 132nd St. ,60627,2911000,,,,,,,Chicago Youth Centers,,,,,,,,,,,www.chicagoyouthcenters.org,Harry Wells,Glenda Williams ,,,,,, +2100,DFSS_AgencySiteLies_2012.csv,Chicago Youth Centers Ezzard Charles School,7946 S Ashland Ave ,60620,4870227,,,,,,,Chicago Youth Centers,,,,,,,,,,,www.chicagoyouthcenters.org,Harry Wells,Eldora Davis ,,,,,, +2101,DFSS_AgencySiteLies_2012.csv,Chicago Youth Centers Fellowship House,844 W. 32nd St. ,60608,3262282,,,,,,,Chicago Youth Centers,,,,,,,,,,,www.chicagoyouthcenters.org,Harry Wells,Levory Wilder ,,,,,, +2102,DFSS_AgencySiteLies_2012.csv,Chicago Youth Centers Kids R Us,7453 S. Vincennes ,60621,8465437,,,,,,,Chicago Youth Centers,,,,,,,,,,,www.chicagoyouthcenters.org,Harry Wells,Tammy Oliver ,,,,,, +2103,DFSS_AgencySiteLies_2012.csv,Chicago Youth Centers Lotts of Love,1139 W. 79th St. ,60620,8744954,,,,,,,Chicago Youth Centers,,,,,,,,,,,www.chicagoyouthcenters.org,Harry Wells,Carol Quinn,,,,,, +2104,DFSS_AgencySiteLies_2012.csv,Chicago Youth Centers Mt. Moriah-Taylor,1501 N. Harding ,60651,2785837,,,,,,,Chicago Youth Centers,,,,,,,,,,,www.chicagoyouthcenters.org,Harry Wells,Elizabeth Heilbronn ,,,,,, +2105,DFSS_AgencySiteLies_2012.csv,Chicago Youth Centers Pathway,6535 S. Kedzie ,60629,7780017,,,,,,,Chicago Youth Centers,,,,,,,,,,,www.chicagoyouthcenters.org,Harry Wells,Tracy Baker ,,,,,, +2106,DFSS_AgencySiteLies_2012.csv,Chicago Youth Centers Pathways to Learning CC,3418 W 79th St ,60652,7765439,,,,,,,Chicago Youth Centers,,,,,,,,,,,www.chicagoyouthcenters.org,Harry Wells,Carol Quinn ,,,,,, +2107,DFSS_AgencySiteLies_2012.csv,Chicago Youth Centers Pathways to Learning CC1,3460 W. 79th St. ,60652,4369244,,,,,,,Chicago Youth Centers,,,,,,,,,,,www.chicagoyouthcenters.org,Harry Wells,Carol Quinn ,,,,,, +2108,DFSS_AgencySiteLies_2012.csv,Chicago Youth Centers Rachel's 1,3430 W. Roosevelt Rd ,60624,5330444,,,,,,,Chicago Youth Centers,,,,,,,,,,,www.chicagoyouthcenters.org,Harry Wells,Carol Quinn ,,,,,, +2109,DFSS_AgencySiteLies_2012.csv,Chicago Youth Centers Rachel's 2,5242 W. North Ave ,60639,2371444,,,,,,,Chicago Youth Centers,,,,,,,,,,,www.chicagoyouthcenters.org,Harry Wells,Carol Quinn ,,,,,, +2110,DFSS_AgencySiteLies_2012.csv,Chicago Youth Centers Rebecca Crown,7601 S. Phillips ,60649,7310444,,,,,,,Chicago Youth Centers,,,,,,,,,,,www.chicagoyouthcenters.org,Harry Wells,Eddie Wilson ,,,,,, +2111,DFSS_AgencySiteLies_2012.csv,Chicago Youth Centers Roseland Child Development,461 E. 111th St. ,60627,4684405,,,,,,,Chicago Youth Centers,,,,,,,,,,,www.chicagoyouthcenters.org,Harry Wells,Leola Clay,,,,,, +2112,DFSS_AgencySiteLies_2012.csv,Chicago Youth Centers Shining Star 1,3012-16 E. 92nd St. ,60617,9787827,,,,,,,Chicago Youth Centers,,,,,,,,,,,www.chicagoyouthcenters.org,Harry Wells,Carol Quinn,,,,,, +2113,DFSS_AgencySiteLies_2012.csv,Chinese American Service League Chinese American Service League Child Dev Ctr,2141 S. Tan Court ,60616,7910454,,,,,,,Chinese American Service League,,,,,,,,,,,www.caslservice.org,Esther Wong,Brenda Arksey,,,,,, +2114,DFSS_AgencySiteLies_2012.csv,Christopher House Greenview,2507 N. Greenview ,60614,4721083,,,,,,,Christopher House,,,,,,,,,,,www.christopherhouse.org,Lori Baas,Aimee Washington,,,,,, +2115,DFSS_AgencySiteLies_2012.csv,Christopher House Logan Square,3255 W. Altgeld ,60647,2354073,,,,,,,Christopher House,,,,,,,,,,,www.christopherhouse.org,Lori Baas,Carmen Velez,,,,,, +2116,DFSS_AgencySiteLies_2012.csv,Christopher House Rogers Park,7059 N. Greenview ,60626,2745477,,,,,,,Christopher House,,,,,,,,,,,www.christopherhouse.org,Lori Baas,Atena Danner-McPhaden,,,,,, +2117,DFSS_AgencySiteLies_2012.csv,Christopher House Uptown,4701 N. Winthrop ,60640,7694540,,,,,,,Christopher House,,,,,,,,,,,www.christopherhouse.org,Lori Baas,Karen Ross William,,,,,, +2118,DFSS_AgencySiteLies_2012.csv,Church of God True Believers CHURCH OF GOD COMMUNITY DAY CARE,1738 W. Marquette St. ,60636,4769562,,,,,,,Church of God True Believers,,,,,,,,,,,,Rev. Sheila Sims,Rev. Sheila Sims,,,,,, +2119,DFSS_AgencySiteLies_2012.csv,Community Learning Center Community Learning Center,10612 S. Wentworth ,60628,9284104,,,,,,,Community Learning Center,,,,,,,,,,,,Wanda Avery,Wanda Avery,,,,,, +2120,DFSS_AgencySiteLies_2012.csv,Dorothy Sutton Branch Dorothy Sutton Branch,8601 S. State St ,60619,7234445,,,,,,,Dorothy Sutton Branch,,,,,,,,,,,,Ola Kirksey,Ms. Ola Kirksey,,,,,, +2121,DFSS_AgencySiteLies_2012.csv,Easter Seals Society of Metropolitan Chicago Allison's Infant & Toddler Center,234 E 114th St ,60628,8404502,,,,,,,Easter Seals Society of Metropolitan Chicago,,,,,,,,,,,www.easterseaslchicago.org,Barbara Zawacki,Allison Caldwell,,,,,, +2122,DFSS_AgencySiteLies_2012.csv,Easter Seals Society of Metropolitan Chicago Channings Child Care,5701 W Division St ,60651,4572990,,,,,,,Easter Seals Society of Metropolitan Chicago,,,,,,,,,,,www.easterseaslchicago.org,Barbara Zawacki,Ruth Kimble,,,,,, +2123,DFSS_AgencySiteLies_2012.csv,Easter Seals Society of Metropolitan Chicago Children's International Academy,5850 W. Roosevelt Rd. ,60644,2870808,,,,,,,Easter Seals Society of Metropolitan Chicago,,,,,,,,,,,www.easterseaslchicago.org,Barbara Zawacki,Gaby Servin,,,,,, +2124,DFSS_AgencySiteLies_2012.csv,Easter Seals Society of Metropolitan Chicago Chipper Preschool,8225 S Kedzie ,60652,7785757,,,,,,,Easter Seals Society of Metropolitan Chicago,,,,,,,,,,,www.easterseaslchicago.org,Barbara Zawacki,Ms.Amaryllis Nelson,,,,,, +2125,DFSS_AgencySiteLies_2012.csv,Easter Seals Society of Metropolitan Chicago FIFTH CITY,3411 W Jackson ,60624,8268686,,,,,,,Easter Seals Society of Metropolitan Chicago,,,,,,,,,,,www.easterseaslchicago.org,Barbara Zawacki,Ms.Bettie Veal,,,,,, +2126,DFSS_AgencySiteLies_2012.csv,Easter Seals Society of Metropolitan Chicago First Start Children's Academy,4753 W. Washington Blvd ,60644,3794928,,,,,,,Easter Seals Society of Metropolitan Chicago,,,,,,,,,,,www.easterseaslchicago.org,Barbara Zawacki,P. Cachet Cook,,,,,, +2127,DFSS_AgencySiteLies_2012.csv,Easter Seals Society of Metropolitan Chicago First Start Children's Academy South,5700 S Ashland Ave 1st Fl ,60636,77327770904244111,,,,,,,Easter Seals Society of Metropolitan Chicago,,,,,,,,,,,www.easterseaslchicago.org,Barbara Zawacki,Beverly Mims ,,,,,, +2128,DFSS_AgencySiteLies_2012.csv,Easter Seals Society of Metropolitan Chicago Fresh Start Day Care Center,6924 W. North Avenue ,60635,4792870,,,,,,,Easter Seals Society of Metropolitan Chicago,,,,,,,,,,,www.easterseaslchicago.org,Barbara Zawacki,Claudia Aguayo ,,,,,, +2129,DFSS_AgencySiteLies_2012.csv,Easter Seals Society of Metropolitan Chicago Gilchrist Marchman,1001 W Roosevelt Rd ,60608,4927402,,,,,,,Easter Seals Society of Metropolitan Chicago,,,,,,,,,,,www.easterseaslchicago.org,Barbara Zawacki,Morayma Cancel ,,,,,, +2130,DFSS_AgencySiteLies_2012.csv,Easter Seals Society of Metropolitan Chicago Imani's Children,11443 S Halsted St ,60628,6609667,,,,,,,Easter Seals Society of Metropolitan Chicago,,,,,,,,,,,www.easterseaslchicago.org,Barbara Zawacki,Marianne Powell ,,,,,, +2131,DFSS_AgencySiteLies_2012.csv,Easter Seals Society of Metropolitan Chicago Little Giants,3863 W. Harrison ,60624,2656330,,,,,,,Easter Seals Society of Metropolitan Chicago,,,,,,,,,,,www.easterseaslchicago.org,Barbara Zawacki,Ms.Gloria Granberry ,,,,,, +2132,DFSS_AgencySiteLies_2012.csv,Easter Seals Society of Metropolitan Chicago Liz-Ney-Land #1,4610 S Pulaski Rd ,60632,2479779,,,,,,,Easter Seals Society of Metropolitan Chicago,,,,,,,,,,,www.easterseaslchicago.org,Barbara Zawacki,Liz Medrano,,,,,, +2133,DFSS_AgencySiteLies_2012.csv,Easter Seals Society of Metropolitan Chicago Liz-Ney-Land #2,6010 S. Pulaski ,60632,5828355,,,,,,,Easter Seals Society of Metropolitan Chicago,,,,,,,,,,,www.easterseaslchicago.org,Barbara Zawacki,Liz Medrano ,,,,,, +2134,DFSS_AgencySiteLies_2012.csv,Easter Seals Society of Metropolitan Chicago Lordanchild Daycare,3344 W 79th St ,60652,4344918,,,,,,,Easter Seals Society of Metropolitan Chicago,,,,,,,,,,,www.easterseaslchicago.org,Barbara Zawacki,Quentin Donald ,,,,,, +2135,DFSS_AgencySiteLies_2012.csv,Easter Seals Society of Metropolitan Chicago Mother's Touch,2501 W 71st St ,60629,4363177,,,,,,,Easter Seals Society of Metropolitan Chicago,,,,,,,,,,,www.easterseaslchicago.org,Barbara Zawacki,Ethel Daniels ,,,,,, +2136,DFSS_AgencySiteLies_2012.csv,Easter Seals Society of Metropolitan Chicago Near South Side Child Development Center,2214 S Federal St ,60616,5483614,,,,,,,Easter Seals Society of Metropolitan Chicago,,,,,,,,,,,www.easterseaslchicago.org,Barbara Zawacki,Catherine Rokusek ,,,,,, +2137,DFSS_AgencySiteLies_2012.csv,Easter Seals Society of Metropolitan Chicago Rachel's Learning Center #1,3430 W Roosevelt Rd ,60624,5330444,,,,,,,Easter Seals Society of Metropolitan Chicago,,,,,,,,,,,www.easterseaslchicago.org,Barbara Zawacki,Rochelle Ray ,,,,,, +2138,DFSS_AgencySiteLies_2012.csv,Easter Seals Society of Metropolitan Chicago Rachel's Learning Center #2,5242 W North Ave ,60639,2371444,,,,,,,Easter Seals Society of Metropolitan Chicago,,,,,,,,,,,www.easterseaslchicago.org,Barbara Zawacki,Rochelle Ray,,,,,, +2139,DFSS_AgencySiteLies_2012.csv,Easter Seals Society of Metropolitan Chicago Whiz Kids Nursery Center,518 W 103rd St. ,60628,2339445,,,,,,,Easter Seals Society of Metropolitan Chicago,,,,,,,,,,,www.easterseaslchicago.org,Barbara Zawacki,Diana Ross,,,,,, +2140,DFSS_AgencySiteLies_2012.csv,El Hogar Del Nino Loomis El Hogar,1718 S Loomis ,60608,5630644,,,,,,,El Hogar Del Nino,,,,,,,,,,,www.elhogardelnino.org,Rebecca Estrada,Kimberly Johnson,,,,,, +2141,DFSS_AgencySiteLies_2012.csv,El Valor Amazing Grace Child Care Center,11123 S Halsted St ,60628,2643636,,,,,,,El Valor,,,,,,,,,,,www.elvalor.org,Vincent Allocco,Rachel Adesola ,,,,,, +2142,DFSS_AgencySiteLies_2012.csv,El Valor Brenda's Kids Club,3552 E 118th St. ,60617,6460007,,,,,,,El Valor,,,,,,,,,,,www.elvalor.org,Vincent Allocco,Brenda Lopez ,,,,,, +2143,DFSS_AgencySiteLies_2012.csv,El Valor Carlos Cantu,2434 S. Kildare ,60623,2422700,,,,,,,El Valor,,,,,,,,,,,www.elvalor.org,Vincent Allocco,Irma Carmona ,,,,,, +2144,DFSS_AgencySiteLies_2012.csv,El Valor Centro Infantil (Puerto Rican Comm),2739 W Division ,60622,3428866,,,,,,,El Valor,,,,,,,,,,,www.elvalor.org,Vincent Allocco,Xochiti Ramirez,,,,,, +2145,DFSS_AgencySiteLies_2012.csv,El Valor Chicago Pre-School Academy,532 E 87th St ,60619,4884495,,,,,,,El Valor,,,,,,,,,,,www.elvalor.org,Vincent Allocco,Deneen Grover,,,,,, +2146,DFSS_AgencySiteLies_2012.csv,El Valor Guadalupe Reyes Children & Family Center,1951 W. 19th St. ,60608,9972021,,,,,,,El Valor,,,,,,,,,,,www.elvalor.org,Vincent Allocco,Rosa Moreno ,,,,,, +2147,DFSS_AgencySiteLies_2012.csv,El Valor Kiddy Kare Learning Center,4444 S. Kedzie ,60632,2476642,,,,,,,El Valor,,,,,,,,,,,www.elvalor.org,Vincent Allocco,Marina Lopez ,,,,,, +2148,DFSS_AgencySiteLies_2012.csv,El Valor Kidz Colony,6287 South Archer Ave ,60638,7678522,,,,,,,El Valor,,,,,,,,,,,www.elvalor.org,Vincent Allocco,Joy Avila,,,,,, +2149,DFSS_AgencySiteLies_2012.csv,El Valor Little Brown Bear Pre-School,8046 S Western Ave ,60620,4343500,,,,,,,El Valor,,,,,,,,,,,www.elvalor.org,Vincent Allocco,Deborah Broyles ,,,,,, +2150,DFSS_AgencySiteLies_2012.csv,El Valor Little Kids Village,2656 W. 71st St. ,60629,7764753,,,,,,,El Valor,,,,,,,,,,,www.elvalor.org,Vincent Allocco,Sherri Thompson ,,,,,, +2151,DFSS_AgencySiteLies_2012.csv,El Valor Little Learners,5923 W. 63rd Street ,60638,5815541,,,,,,,El Valor,,,,,,,,,,,www.elvalor.org,Vincent Allocco,Paula Parrilli,,,,,, +2152,DFSS_AgencySiteLies_2012.csv,El Valor Little Tykes I,1711 W. 35th Street ,60609,2547710,,,,,,,El Valor,,,,,,,,,,,www.elvalor.org,Vincent Allocco,Sara Matta,,,,,, +2153,DFSS_AgencySiteLies_2012.csv,El Valor Little Tykes II,1723 W. 35th Street ,60609,5791791,,,,,,,El Valor,,,,,,,,,,,www.elvalor.org,Vincent Allocco,Laura Gonzalez ,,,,,, +2154,DFSS_AgencySiteLies_2012.csv,El Valor Mari's Bumble Bee Academy,9725 S Commercial Ave ,60617,2217692,,,,,,,El Valor,,,,,,,,,,,www.elvalor.org,Vincent Allocco,Marisol Lopez ,,,,,, +2155,DFSS_AgencySiteLies_2012.csv,El Valor New Age Preparatory,8940 S Cottage Grove Ave ,60619,7832431,,,,,,,El Valor,,,,,,,,,,,www.elvalor.org,Vincent Allocco,Tanya Furlow,,,,,, +2156,DFSS_AgencySiteLies_2012.csv,El Valor New Age Preparatory Academy,10951 S Michigan Ave ,60628,7857737,,,,,,,El Valor,,,,,,,,,,,www.elvalor.org,Vincent Allocco,Tanya Furlow,,,,,, +2157,DFSS_AgencySiteLies_2012.csv,El Valor Rey Gonzalez Children and Family Center,3050 E. 92nd St. ,60617,7219311,,,,,,,El Valor,,,,,,,,,,,www.elvalor.org,Vincent Allocco,Carmen Flores,,,,,, +2158,DFSS_AgencySiteLies_2012.csv,El Valor Teddy Bear 1,2649 W 51st St. ,60632,4760700,,,,,,,El Valor,,,,,,,,,,,www.elvalor.org,Vincent Allocco,Francy Torres ,,,,,, +2159,DFSS_AgencySiteLies_2012.csv,El Valor Teddy Bear 2,3473 W Columbus ,60652,4342327,,,,,,,El Valor,,,,,,,,,,,www.elvalor.org,Vincent Allocco,Connie Guyton ,,,,,, +2160,DFSS_AgencySiteLies_2012.csv,El Valor Teddy Bear 3,6401 S Pulaski Rd. ,60629,2842292,,,,,,,El Valor,,,,,,,,,,,www.elvalor.org,Vincent Allocco,Natasha Catchings ,,,,,, +2161,DFSS_AgencySiteLies_2012.csv,El Valor Teddy Bear 5,5160 S Pulaski Rd. ,60632,2847030,,,,,,,El Valor,,,,,,,,,,,www.elvalor.org,Vincent Allocco,Mary Zirngibl,,,,,, +2162,DFSS_AgencySiteLies_2012.csv,El Valor Young Scholars Dev. Ins.,3038 W. 59th St. ,60629,9181944,,,,,,,El Valor,,,,,,,,,,,www.elvalor.org,Vincent Allocco,Elizabeth Campbell,,,,,, +2163,DFSS_AgencySiteLies_2012.csv,Erie Neighborhood House Charter School,1405 N Washtenaw Ave ,60622,4867234,,,,,,,Erie Neighborhood House,,,,,,,,,,,www.eriehouse.org,Celena Roldan,,,,,,, +2164,DFSS_AgencySiteLies_2012.csv,Erie Neighborhood House Erie Community Center,1701 W. Superior ,60622,5635800,,,,,,,Erie Neighborhood House,,,,,,,,,,,www.eriehouse.org,Celena Roldan,Celena Roldan,,,,,, +2165,DFSS_AgencySiteLies_2012.csv,Erie Neighborhood House Erie House,1347 W. Erie ,60622,6663430,,,,,,,Erie Neighborhood House,,,,,,,,,,,www.eriehouse.org,Celena Roldan,Valery Sheppard,,,,,, +2166,DFSS_AgencySiteLies_2012.csv,Firman Community Services Firman House East,4910 S. King ,60615,3732083,,,,,,,Firman Community Services,,,,,,,,,,, www.firmancs.org,Marguerite Young,Ms. Earline Moore ,,,,,, +2167,DFSS_AgencySiteLies_2012.csv,Firman Community Services Firman House West,37 W. 47th St. ,60609,3733400,,,,,,,Firman Community Services,,,,,,,,,,, www.firmancs.org,Marguerite Young,Dontrease Thomas ,,,,,, +2168,DFSS_AgencySiteLies_2012.csv,Firman Community Services Firman West II SA 4644 S. Dearborn,4644 S. Dearborn ,60609,3733400,,,,,,,Firman Community Services,,,,,,,,,,, www.firmancs.org,Marguerite Young,Dontrease Thomas,,,,,, +2169,DFSS_AgencySiteLies_2012.csv,First Church of Love And Faith FIRST CHURCH OF LOVE AND FAITH#1,2140 W. 79th St. ,60620,2246800,,,,,,,First Church of Love And Faith,,,,,,,,,,,,Archbishop Lucius Hall,Barbara Mosley,,,,,, +2170,DFSS_AgencySiteLies_2012.csv,First Church of Love And Faith FIRST CHURCH OF LOVE AND FAITH#2,2141 W. 79th St. ,60200,8739155,,,,,,,First Church of Love And Faith,,,,,,,,,,,,Archbishop Lucius Hall,Barbara Mosley,,,,,, +2171,DFSS_AgencySiteLies_2012.csv,Gads Hill Center GH Cullerton Location,1919 W. Cullerton ,60608,2260963,,,,,,,Gads Hill Center,,,,,,,,,,,www.gadshillcenter.org,Barbara Castellan,Mr. Montes de Oca,,,,,, +2172,DFSS_AgencySiteLies_2012.csv,Gads Hill Center GH Sinai Community Ogden,2653 W. Ogden ,60608,5211196,,,,,,,Gads Hill Center,,,,,,,,,,,www.gadshillcenter.org,Barbara Castellan,Rick Baldwin,,,,,, +2173,DFSS_AgencySiteLies_2012.csv,Gads Hill Center Hunt's Early Childhood Educational Academy,2701 W 79th St. ,60652,8638260,,,,,,,Gads Hill Center,,,,,,,,,,,www.gadshillcenter.org,Barbara Castellan,Sallie Hunt ,,,,,, +2174,DFSS_AgencySiteLies_2012.csv,Gads Hill Center Kove Learning Academy,3137 W 71st St. ,60629,4763083,,,,,,,Gads Hill Center,,,,,,,,,,,www.gadshillcenter.org,Barbara Castellan,Olivia Hargon ,,,,,, +2175,DFSS_AgencySiteLies_2012.csv,Gads Hill Center M & E Daycare - 79th Street Day Care,3728 W 79th St. ,60652,5857979,,,,,,,Gads Hill Center,,,,,,,,,,,www.gadshillcenter.org,Barbara Castellan,Lisa Pearson,,,,,, +2176,DFSS_AgencySiteLies_2012.csv,Haymarket Center Haymarket Center,120 N Sangamon ,60607,2267984,,,,,,,Haymarket Center,,,,,,,,,,,www.hcenter.org,Bakahia Madison,Bakahia Madison,,,,,, +2177,DFSS_AgencySiteLies_2012.csv,Haymarket Center Wholly Innocence Day Care Center,34 N. Sangamon ,60607,2267984,,,,,,,Haymarket Center,,,,,,,,,,,www.hcenter.org,Bakahia Madison,Bakahia Madison,,,,,, +2178,DFSS_AgencySiteLies_2012.csv,Healing Temple Healing Temple,4941 W. Chicago ,60651,2876964,,,,,,,Healing Temple,,,,,,,,,,,,Elizabeth Lockhart,Carole Smoot,,,,,, +2179,DFSS_AgencySiteLies_2012.csv,Hektoen Institute Early Head Start Program at Stroger Hospital,1900 W Polk ,60612,8646560,,,,,,,Hektoen Institute,,,,,,,,,,,,Grace Ortiz,Grace Ortiz,,,,,, +2180,DFSS_AgencySiteLies_2012.csv,Henry Booth House All About Kids Learning Academy,514 E. 75th St. ,60619,8922800,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,Tess McKenzie ,,,,,, +2181,DFSS_AgencySiteLies_2012.csv,Henry Booth House Allison's,34 E. 115th St. ,60628,8404502,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,Allison Perkins ,,,,,, +2182,DFSS_AgencySiteLies_2012.csv,Henry Booth House Allison's Infant Toddler,5522 S Racine ,60636,4363193,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,LaParish Woody ,,,,,, +2183,DFSS_AgencySiteLies_2012.csv,Henry Booth House Angel Wings,5365 W Noth ,60639,7450262,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,Lisa Collins,,,,,, +2184,DFSS_AgencySiteLies_2012.csv,Henry Booth House Brite New Minds,112 E 51ST St. ,60615,,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,,,,,,, +2185,DFSS_AgencySiteLies_2012.csv,Henry Booth House Bunnyland Land Day Care,545 W 119TH St. ,60628,5685200,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,Ms. Boykin,,,,,, +2186,DFSS_AgencySiteLies_2012.csv,Henry Booth House Color For Tots,2550 E. 73rd St. ,60649,3638687,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,Cassandra Williams ,,,,,, +2187,DFSS_AgencySiteLies_2012.csv,Henry Booth House Gina's Unbelievable,7239 S. Dobson ,60619,3242010,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,Gina Thomas ,,,,,, +2188,DFSS_AgencySiteLies_2012.csv,Henry Booth House Granny's Day Care Center,645 W 127TH St. ,60628,2644800,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,Ms. Priscilla Bolling ,,,,,, +2189,DFSS_AgencySiteLies_2012.csv,Henry Booth House Hegewisch,2725 E 130th St. ,60633,,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,,,,,,, +2190,DFSS_AgencySiteLies_2012.csv,Henry Booth House Hippity Hop Tiny Tots,11223 S. Halsted St. ,60628,7853340,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,Ms. Tuggle ,,,,,, +2191,DFSS_AgencySiteLies_2012.csv,Henry Booth House Itsy Bitsy People Palace. Inc,7419 S. Cottage Grove Ave. ,60619,8467396,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,Ms. Whiting ,,,,,, +2192,DFSS_AgencySiteLies_2012.csv,Henry Booth House Jelly Bean Learining Center-8501 S ASHLAND,8501 S Ashland ,60620,2395437,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,Ms. Donna Taylor ,,,,,, +2193,DFSS_AgencySiteLies_2012.csv,Henry Booth House Jelly Bean-358-370 E 71st,358-370 E 71st. ,60636,8738888,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,Donna Taylor ,,,,,, +2194,DFSS_AgencySiteLies_2012.csv,Henry Booth House Jones Academy,4344 S. Wentworth Ave. ,60609,5363757,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,Felicia Jones,,,,,, +2195,DFSS_AgencySiteLies_2012.csv,Henry Booth House Kids Place II,1318 W 95TH St. ,60643,4456500,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,Ms. Porter ,,,,,, +2196,DFSS_AgencySiteLies_2012.csv,Henry Booth House Kids R First 1155 W 81st,1155 W. 81st St. ,60620,7838080,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,Wilborn ,,,,,, +2197,DFSS_AgencySiteLies_2012.csv,Henry Booth House Kids R First 7838 S Halsted,7838 S Halsted ,60620,4889443,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,Ms. Jones ,,,,,, +2198,DFSS_AgencySiteLies_2012.csv,Henry Booth House Lakeview Development Center,1531 W Lawrence ,60640,,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,,,,,,, +2199,DFSS_AgencySiteLies_2012.csv,Henry Booth House Little Angels Family DayCare,6701 S. Emerald Ave. ,60621,4888777,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,NaShone Greer,,,,,, +2200,DFSS_AgencySiteLies_2012.csv,Henry Booth House Little Folks Day Care,2527 E 73RD St. ,60649,,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,,,,,,, +2201,DFSS_AgencySiteLies_2012.csv,Henry Booth House Little Hands & Feet,7801 S Wolcott ,60620,9948561,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,Ms. Doyle ,,,,,, +2202,DFSS_AgencySiteLies_2012.csv,Henry Booth House Little Hands and Feet II (87th),1414 W 87TH St. ,60620,2392322,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,Ms. Jackson ,,,,,, +2203,DFSS_AgencySiteLies_2012.csv,Henry Booth House Little Leaders of Tomorrow I - Mayfield,301 N. Mayfield Ave. ,60644,3788302,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,Ms. Navy,,,,,, +2204,DFSS_AgencySiteLies_2012.csv,Henry Booth House Living Witness,4259 N Laramie ,60641,,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,,,,,,, +2205,DFSS_AgencySiteLies_2012.csv,Henry Booth House Loop,2001 S Michigan ,60616,2258828,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,Ms. Gregg,,,,,, +2206,DFSS_AgencySiteLies_2012.csv,Henry Booth House Love N Learn Academy,723-725 E 75TH St. ,60619,7230338,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,Ms. Blanton & Ms. Johnson,,,,,, +2207,DFSS_AgencySiteLies_2012.csv,Henry Booth House Near South,2929 S. Wabash ,60616,7910424,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,Ms. Newsome,,,,,, +2208,DFSS_AgencySiteLies_2012.csv,Henry Booth House New Pisgah,8130 S Racine ,60620,8735392,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,Mr. S. Smith,,,,,, +2209,DFSS_AgencySiteLies_2012.csv,Henry Booth House Home of Life Community North Kenwood Day Care Center,857 E Pershing ,60653,,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,,,,,,, +2210,DFSS_AgencySiteLies_2012.csv,Henry Booth House Patti Cake,939 W 87TH St. ,60620,8749460,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,Ms. Harris ,,,,,, +2211,DFSS_AgencySiteLies_2012.csv,Henry Booth House Pink's Child Care Academy,8236 S Kedzie ,60652,8637465,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,Ms. Jones ,,,,,, +2212,DFSS_AgencySiteLies_2012.csv,Henry Booth House Precious Little Ones,5327 S Michigan Ave. ,60615,,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,,,,,,, +2213,DFSS_AgencySiteLies_2012.csv,Henry Booth House Prodigy Child Learning Center,1921 E. 79th St. ,60649,2213100,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,Shonzette Cheeks,,,,,, +2214,DFSS_AgencySiteLies_2012.csv,Henry Booth House The World Is Yours,8026 S Cottage Grove Ave. ,60619,,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,,,,,,, +2215,DFSS_AgencySiteLies_2012.csv,Henry Booth House Wee Care Nursery,1845 E 79TH St. ,60649,2214442,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,Ms. Williams-Morgan,,,,,, +2216,DFSS_AgencySiteLies_2012.csv,Henry Booth House Wee Wee Center for Creative,2434 W 71ST St. ,60629,4710869,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,Ms. Duckery,,,,,, +2217,DFSS_AgencySiteLies_2012.csv,Henry Booth House West Austin,4920 W Madison ,60644,,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,,,,,,, +2218,DFSS_AgencySiteLies_2012.csv,Henry Booth House Whiz Kids Nursery 518 W 103 Rd ST,518 W 103rd St. ,60628,2339445,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,Ms. Craft,,,,,, +2219,DFSS_AgencySiteLies_2012.csv,Henry Booth House Young Achievers Academy,520 E 79TH St. ,60619,,,,,,,,Henry Booth House,,,,,,,,,,,www.henryboothhouse.org,Scott Perkins,,,,,,, +2220,DFSS_AgencySiteLies_2012.csv,Home of Life Community Dev. Corp. HLCDC Dev. II,4650 W. Madison ,60644,6268655,,,,,,,Home of Life Community Dev. Corp.,,,,,,,,,,,www.homeoflife.org,Delores Sheppard,Diane Congress,,,,,, +2221,DFSS_AgencySiteLies_2012.csv,Home of Life Community Dev. Corp. HOME OF LIFE JUST FOR YOU (773)-626-8655,4647 W. Washington ,60644,,,,,,,,Home of Life Community Dev. Corp.,,,,,,,,,,,www.homeoflife.org,Delores Sheppard,Diane Congress,,,,,, +2222,DFSS_AgencySiteLies_2012.csv,Howard Area Community Center HOWARD AREA,7510 N. Ashland ,60626,2626622,,,,,,,Howard Area Community Center,,,,,,,,,,,www.howardarea.org,Bruce Rasey,Stephania Koliarakis,,,,,, +2223,DFSS_AgencySiteLies_2012.csv,Korean American Community Services Korean American Community Services,4300 N. California ,60618,5838281,,,,,,,Korean American Community Services,,,,,,,,,,,www.kacschicago.org,In chul Choi,Hye K. Choi,,,,,, +2224,DFSS_AgencySiteLies_2012.csv,Lutheran Social Services of Illinois ARRA Home Based Initiative - Roseland Christian Ministries,10 W 35th St 15th Floor ,60616,9494789,,,,,,,Lutheran Social Services of Illinois,,,,,,,,,,,www.lssi.org,John Schnier,,,,,,, +2225,DFSS_AgencySiteLies_2012.csv,Lutheran Social Services of Illinois ENGLEWOOD MESSIAH,1910 W. 64th Street ,60636,4365110,,,,,,,Lutheran Social Services of Illinois,,,,,,,,,,,www.lssi.org,John Schnier,Delphine Whittlesey,,,,,, +2226,DFSS_AgencySiteLies_2012.csv,Lutheran Social Services of Illinois NORTH AUSTIN HEAD START,1500 N. Mason ,60651,2371930,,,,,,,Lutheran Social Services of Illinois,,,,,,,,,,,www.lssi.org,John Schnier,Doris Holden,,,,,, +2227,DFSS_AgencySiteLies_2012.csv,Lutheran Social Services of Illinois ROGERS PARK,1754 W. Devon ,60660,6354600,,,,,,,Lutheran Social Services of Illinois,,,,,,,,,,,www.lssi.org,John Schnier,Deloris McDowell ,,,,,, +2228,DFSS_AgencySiteLies_2012.csv,Lutheran Social Services of Illinois TRINIDAD LUTHERAN,2921 W. Division ,60622,6354600,,,,,,,Lutheran Social Services of Illinois,,,,,,,,,,,www.lssi.org,John Schnier,Emilia Espinal ,,,,,, +2229,DFSS_AgencySiteLies_2012.csv,Lutheran Social Services of Illinois WINTHROP CHILDREN'S CENTER,4848 N. Winthrop ,60640,8783210,,,,,,,Lutheran Social Services of Illinois,,,,,,,,,,,www.lssi.org,John Schnier,,,,,,, +2230,DFSS_AgencySiteLies_2012.csv,Marcy Newberry Association Austin Town Hall,5610 W. Lake ,60644,2611505,,,,,,,Marcy Newberry Association,,,,,,,,,,,www.marcy-newberry.org,Gertrude Ricks,Marsha Ballenger,,,,,, +2231,DFSS_AgencySiteLies_2012.csv,Marcy Newberry Association FOSCO,1312 S. Racine ,60608,7466024,,,,,,,Marcy Newberry Association,,,,,,,,,,,www.marcy-newberry.org,Gertrude Ricks,Kimberly Johnson ,,,,,, +2232,DFSS_AgencySiteLies_2012.csv,Marcy Newberry Association Learning Tree 1,8128 S Kedzie ,60652,7788802,,,,,,,Marcy Newberry Association,,,,,,,,,,,www.marcy-newberry.org,Gertrude Ricks,Joanne Williams ,,,,,, +2233,DFSS_AgencySiteLies_2012.csv,Marcy Newberry Association Learning Tree 2,8322 S Pulaski Rd. ,60652,8843345,,,,,,,Marcy Newberry Association,,,,,,,,,,,www.marcy-newberry.org,Gertrude Ricks,Joanne Williams ,,,,,, +2234,DFSS_AgencySiteLies_2012.csv,Marcy Newberry Association Marcy Center,1539 S. Springfield ,60623,7622300,,,,,,,Marcy Newberry Association,,,,,,,,,,,www.marcy-newberry.org,Gertrude Ricks,Barbara Tucker ,,,,,, +2235,DFSS_AgencySiteLies_2012.csv,Marcy Newberry Association Newberry Center,1073 W. Maxwell ,60608,8297555,,,,,,,Marcy Newberry Association,,,,,,,,,,,www.marcy-newberry.org,Gertrude Ricks,Vernon Lyle,,,,,, +2236,DFSS_AgencySiteLies_2012.csv,Marcy Newberry Association St. John, 5701 W. Midway Park ,60644,3795533,,,,,,,Marcy Newberry Association,,,,,,,,,,,www.marcy-newberry.org,Gertrude Ricks,Willie Mae Cole,,,,,, +2237,DFSS_AgencySiteLies_2012.csv,Mary Crane League Children's Learn and Play,6512 S. Halsted ,60621,9667162,,,,,,,Mary Crane League,,,,,,,,,,,www.marycrane.org,Lavetter Terry,Mashanda Scott ,,,,,, +2238,DFSS_AgencySiteLies_2012.csv,Mary Crane League Mary Crane Center (East),2974 N. Clybourn ,60618,9388130,,,,,,,Mary Crane League,,,,,,,,,,,www.marycrane.org,Lavetter Terry,Martuice Williams ,,,,,, +2239,DFSS_AgencySiteLies_2012.csv,Mary Crane League Mary Crane Center (Lake & Pulaski),316 N. Pulaski ,60624,2655954,,,,,,,Mary Crane League,,,,,,,,,,,www.marycrane.org,Lavetter Terry,Marcia Newsome ,,,,,, +2240,DFSS_AgencySiteLies_2012.csv,Mary Crane League Mary Crane Center (Molade),1120 N. Lamon ,60651,2877365,,,,,,,Mary Crane League,,,,,,,,,,,www.marycrane.org,Lavetter Terry,Kathleen Pesek ,,,,,, +2241,DFSS_AgencySiteLies_2012.csv,Mary Crane League Mary Crane Center (Morse),1545 W. Morse ,60626,2621390,,,,,,,Mary Crane League,,,,,,,,,,,www.marycrane.org,Lavetter Terry,Traci Medina,,,,,, +2242,DFSS_AgencySiteLies_2012.csv,Mary Crane League Mary Crane Center (North),2905 N. Leavitt ,60618,9388130,,,,,,,Mary Crane League,,,,,,,,,,,www.marycrane.org,Lavetter Terry,Martuice Williams ,,,,,, +2243,DFSS_AgencySiteLies_2012.csv,Mary Crane League Mary Crane Center (West),2820 N. Leavitt ,60618,9388130,,,,,,,Mary Crane League,,,,,,,,,,,www.marycrane.org,Lavetter Terry,Martuice Williams ,,,,,, +2244,DFSS_AgencySiteLies_2012.csv,Mary Crane League Mary Crane Center (St. Martin De Porres),6423 S. Woodlawn ,60637,9388130,,,,,,,Mary Crane League,,,,,,,,,,,www.marycrane.org,Lavetter Terry,Victoria Harbin,,,,,, +2245,DFSS_AgencySiteLies_2012.csv,Metropolitan Family Services Midway Children's Center,3215 W. 63rd St. ,60629,8842350,,,,,,,Metropolitan Family Services,,,,,,,,,,,www.metrofamily.org,Laurie Sedio,Guadalupe Valdine,,,,,, +2246,DFSS_AgencySiteLies_2012.csv,Metropolitan Family Services Midway Head Start,6422 S. Kedzie ,60629,7374790,,,,,,,Metropolitan Family Services,,,,,,,,,,,www.metrofamily.org,Laurie Sedio,Rhonda Freeman,,,,,, +2247,DFSS_AgencySiteLies_2012.csv,Metropolitan Family Services North Children's Center,3249 N Central Ave. ,60634,3713770,,,,,,,Metropolitan Family Services,,,,,,,,,,,www.metrofamily.org,Fernando Freire,Dawn Delgado,,,,,, +2248,DFSS_AgencySiteLies_2012.csv,North Avenue Day Nursery North Avenue Day Nursery,2001 W. Pierce ,60622,3424499,,,,,,,North Avenue Day Nursery,,,,,,,,,,,www.nadnkids.org,Steve Koll,Steve Koll,,,,,, +2249,DFSS_AgencySiteLies_2012.csv,Northwestern University Settlement House NORTHWESTERN UNIVERSITY SETTLEMENT HOUSE,1400 W. Augusta ,60622,2787471,,,,,,,Northwestern University Settlement House,,,,,,,,,,,www.nush.org,Jose Alatorre, Linda McLaren,,,,,, +2250,DFSS_AgencySiteLies_2012.csv,Onward Neighborhood House ABC Preschool,3800 N. Austin Avenue ,60634,6859033,,,,,,,Onward Neighborhood House,,,,,,,,,,,www.onwardhouse.org,Mario Garcia,Patricia Bentz ,,,,,, +2251,DFSS_AgencySiteLies_2012.csv,Onward Neighborhood House Lee's Cuddles N Care,6100 W. North Avenue ,60639,7458054,,,,,,,Onward Neighborhood House,,,,,,,,,,,www.onwardhouse.org,Mario Garcia,Anndrella Lee ,,,,,, +2252,DFSS_AgencySiteLies_2012.csv,Onward Neighborhood House McKinney Early Learning Academy,5745 W Division St. ,60651,,,,,,,,Onward Neighborhood House,,,,,,,,,,,www.onwardhouse.org,Mario Garcia,,,,,,, +2253,DFSS_AgencySiteLies_2012.csv,Onward Neighborhood House New Beginnings,5445 W. North Ave. ,60639,3855365,,,,,,,Onward Neighborhood House,,,,,,,,,,,www.onwardhouse.org,Mario Garcia,Verlene Vanderbilt,,,,,, +2254,DFSS_AgencySiteLies_2012.csv,Onward Neighborhood House Onward Neighborhood House - Belmont/Cragin,5423 W Diversey Ave. ,60639,6223215,,,,,,,Onward Neighborhood House,,,,,,,,,,,www.onwardhouse.org,Mario Garcia,Santa Rivera,,,,,, +2255,DFSS_AgencySiteLies_2012.csv,Onward Neighborhood House Onward Neighborhood House - West Town,600 N. Leavitt St. ,60612,6666726,,,,,,,Onward Neighborhood House,,,,,,,,,,,www.onwardhouse.org,Mario Garcia,Darica Charles,,,,,, +2256,DFSS_AgencySiteLies_2012.csv,Onward Neighborhood House Tiny Town for Tots,5654 W. Division St. ,60651,6260048,,,,,,,Onward Neighborhood House,,,,,,,,,,,www.onwardhouse.org,Mario Garcia,Ricky Spain,,,,,, +2257,DFSS_AgencySiteLies_2012.csv,Salvation Army All Things Are Posible,4014 W. Chicago Ave. ,60651,4892464,,,,,,,Salvation Army,,,,,,,,,,,www.usc.salvationarmy.com,Claudia Rowland, Shelandria Galsper ,,,,,, +2258,DFSS_AgencySiteLies_2012.csv,Salvation Army Building Blocks,1120 W 69th St. ,60621,4882222,,,,,,,Salvation Army,,,,,,,,,,,www.usc.salvationarmy.com,Claudia Rowland,Mitchelle Redd ,,,,,, +2259,DFSS_AgencySiteLies_2012.csv,Salvation Army Columbus Park,500 S. CENTRAL ,60644,9214162,,,,,,,Salvation Army,,,,,,,,,,,www.usc.salvationarmy.com,Claudia Rowland,Felice Lewis ,,,,,, +2260,DFSS_AgencySiteLies_2012.csv,Salvation Army Creative Little Ones,2809 W 59th St. ,60629,4762562,,,,,,,Salvation Army,,,,,,,,,,,www.usc.salvationarmy.com,Claudia Rowland,Audy Sejour,,,,,, +2261,DFSS_AgencySiteLies_2012.csv,Salvation Army Edsel Albert Ammons Nursery,549 E 76th St. ,60619,4837040,,,,,,,Salvation Army,,,,,,,,,,,www.usc.salvationarmy.com,Claudia Rowland,Debbie Reynolds,,,,,, +2262,DFSS_AgencySiteLies_2012.csv,Salvation Army FAMILY OUTREACH INITIATIVE (SAL ARMY,845 W. 69th St. ,60621,8324716,,,,,,,Salvation Army,,,,,,,,,,,www.usc.salvationarmy.com,Claudia Rowland,Rosie Mohammad ,,,,,, +2263,DFSS_AgencySiteLies_2012.csv,Salvation Army Incarnation,1345 N. KARLOV ,60651,2764118,,,,,,,Salvation Army,,,,,,,,,,,www.usc.salvationarmy.com,Claudia Rowland,Zoraida Fernandini ,,,,,, +2264,DFSS_AgencySiteLies_2012.csv,Salvation Army New Hope,4255 W. Division ,60651,7724908,,,,,,,Salvation Army,,,,,,,,,,,www.usc.salvationarmy.com,Claudia Rowland,Catherine Eason ,,,,,, +2265,DFSS_AgencySiteLies_2012.csv,Salvation Army Red Shield,945 W. 69th St. ,60621,3583224,,,,,,,Salvation Army,,,,,,,,,,,www.usc.salvationarmy.com,Claudia Rowland,Lillie Denton,,,,,, +2266,DFSS_AgencySiteLies_2012.csv,Salvation Army South Shore Bible/Maranatha Head Start,1631 E. 71st St. ,60649,4937500,,,,,,,Salvation Army,,,,,,,,,,,www.usc.salvationarmy.com,Claudia Rowland,Jaqueline Carter,,,,,, +2267,DFSS_AgencySiteLies_2012.csv,Salvation Army Teen Parenting Program,1548 W Adams ,60607,4210327,,,,,,,Salvation Army,,,,,,,,,,,www.usc.salvationarmy.com,Claudia Rowland,Jasmin Marshall,,,,,, +2268,DFSS_AgencySiteLies_2012.csv,South Central Community Services South Central Community Service,8316 S. Ellis Ave. ,60618,4830900,,,,,,,South Central Community Services,,,,,,,,,,,www.sccsinc.org,Felicia Blasingame,Marsha Hightower,,,,,, +2269,DFSS_AgencySiteLies_2012.csv,South East Asia Center South East Asia Center (Ainslie),1134 W. Ainslie ,60640,9897433,,,,,,,South East Asia Center,,,,,,,,,,,www.se-asiacenter.org,Peter Porr,Fe Mendoza,,,,,, +2270,DFSS_AgencySiteLies_2012.csv,South East Asia Center South East Asia Center (Broadway),5120 N. Broadway Ave. ,60640,9897433,,,,,,,South East Asia Center,,,,,,,,,,,www.se-asiacenter.org,Peter Porr,Loipin Chin,,,,,, +2271,DFSS_AgencySiteLies_2012.csv,South East Asia Center South Shore United South East Asia Center (Foster),1112 W. Foster ,60640,9897433,,,,,,,South East Asia Center,,,,,,,,,,,www.se-asiacenter.org,Peter Porr,Tsering Ngalutsang,,,,,, +2272,DFSS_AgencySiteLies_2012.csv,South Shore United Methodist South Shore United Child Care Center,7350 S. Jeffery ,60649,3244430,,,,,,,South Shore United Methodist,,,,,,,,,,,,Marcell Hooks,Marcell Hooks,,,,,, +2273,DFSS_AgencySiteLies_2012.csv,Thresholds Thresholds Mothers' Project,1110 W. Belmont ,60613,5373290,,,,,,,Thresholds,,,,,,,,,,,www.thresholds.org,Ayana Kiklas,Ayana Kiklas,,,,,, +2274,DFSS_AgencySiteLies_2012.csv,Trinity Resources Unlimited Inc High Mountain,919 N. Lavergne ,60651,6263997,,,,,,,Trinity Resources Unlimited Inc,,,,,,,,,,,,Marion Hayes,Marion Hayes,,,,,, +2275,DFSS_AgencySiteLies_2012.csv,Trinity Resources Unlimited Inc Hope for Youth,5900 W. Iowa ,60651,6260322,,,,,,,Trinity Resources Unlimited Inc,,,,,,,,,,,,Marion Hayes,Yolonda Johnson,,,,,, +2276,DFSS_AgencySiteLies_2012.csv,Trinity United Church of Christ Dr. Deton J. Brooks Head Start,6921 S. Stony Island ,60649,9661603,,,,,,,Trinity United Church of Christ,,,,,,,,,,,www.tucc.org,Janet Moore,Cherie Brown,,,,,, +2277,DFSS_AgencySiteLies_2012.csv,Trinity United Church of Christ Dr. Jeremiah Wright Jr. Early Care and Learning Center,532 W 95th St. ,60628,9661503,,,,,,,Trinity United Church of Christ,,,,,,,,,,,www.tucc.org,Janet Moore,Ekoi Florence,,,,,, +2278,DFSS_AgencySiteLies_2012.csv,Westside Holistic Family Services WESTSIDE HOLISTIC FAMILY SERVICES,4909 W. Division ,60651,9218777,,,,,,,Westside Holistic Family Services,,,,,,,,,,,,Jo Anne Anderson,Florence Merritt,,,,,, +2279,DFSS_AgencySiteLies_2012.csv,Woodlawn A.M.E. Church WOODLAWN AME CHURCH,6456 S. Evans ,60637,6671402,,,,,,,Woodlawn A.M.E. Church,,,,,,,,,,,www.woodlawnamechurch.org,Samara Akins,Samara Akins,,,,,, +2280,DFSS_AgencySiteLies_2012.csv,YMCA of Metropolitan Chicago Dr. Effie O Ellis,10 S. Kedzie ,60612,5339011,,,,,,,YMCA of Metropolitan Chicago,,,,,,,,,,,www.ymcachicago.org,Dorothy Cole-Gary,Anelyn Jablo ,,,,,, +2281,DFSS_AgencySiteLies_2012.csv,YMCA of Metropolitan Chicago Garfield,7 N. Homan ,60624,2653900,,,,,,,YMCA of Metropolitan Chicago,,,,,,,,,,,www.ymcachicago.org,Dorothy Cole-Gary,Paulette Hernandez ,,,,,, +2282,DFSS_AgencySiteLies_2012.csv,YMCA of Metropolitan Chicago High Ridge,2424 W. Touhy ,60645,2628300,,,,,,,YMCA of Metropolitan Chicago,,,,,,,,,,,www.ymcachicago.org,Dorothy Cole-Gary,Linda Acevedo,,,,,, +2283,DFSS_AgencySiteLies_2012.csv,YMCA of Metropolitan Chicago Jeanne Kenney Day Care Center,7600 S. Parnell ,60620,8861216,,,,,,,YMCA of Metropolitan Chicago,,,,,,,,,,,www.ymcachicago.org,Dorothy Cole-Gary,Arlene Lewis,,,,,, +2284,DFSS_AgencySiteLies_2012.csv,YMCA of Metropolitan Chicago Logan Square - First Lutheran,3500 W. Fullerton ,60647,8625960,,,,,,,YMCA of Metropolitan Chicago,,,,,,,,,,,www.ymcachicago.org,Dorothy Cole-Gary,Nilsa Ramirez ,,,,,, +2285,DFSS_AgencySiteLies_2012.csv,YMCA of Metropolitan Chicago Marshall,3250 W. Adams ,60624,2650145,,,,,,,YMCA of Metropolitan Chicago,,,,,,,,,,,www.ymcachicago.org,Dorothy Cole-Gary,Beverly Ross ,,,,,, +2286,DFSS_AgencySiteLies_2012.csv,YMCA of Metropolitan Chicago McCormick Tribune,1834 N. Lawndale ,60647,2352525,,,,,,,YMCA of Metropolitan Chicago,,,,,,,,,,,www.ymcachicago.org,Dorothy Cole-Gary,Maria Franco ,,,,,, +2287,DFSS_AgencySiteLies_2012.csv,YMCA of Metropolitan Chicago North Lawndale,3449 W. Arthington ,60624,6380773,,,,,,,YMCA of Metropolitan Chicago,,,,,,,,,,,www.ymcachicago.org,Dorothy Cole-Gary,Leslie Hampton ,,,,,, +2288,DFSS_AgencySiteLies_2012.csv,YMCA of Metropolitan Chicago Rauner,2700 S. Western Ave. ,60608,8473115,,,,,,,YMCA of Metropolitan Chicago,,,,,,,,,,,www.ymcachicago.org,Dorothy Cole-Gary,Sonya Sifuentes ,,,,,, +2289,DFSS_AgencySiteLies_2012.csv,YMCA of Metropolitan Chicago South Chicago,3039 E. 91st St. ,60617,7219100,,,,,,,YMCA of Metropolitan Chicago,,,,,,,,,,,www.ymcachicago.org,Dorothy Cole-Gary,Sherry Ceroomes ,,,,,, +2290,DFSS_AgencySiteLies_2012.csv,YMCA of Metropolitan Chicago South Side,6330 S. Stony Island ,60637,7739470,,,,,,,YMCA of Metropolitan Chicago,,,,,,,,,,,www.ymcachicago.org,Dorothy Cole-Gary,Bobbie Dickens ,,,,,, +2291,DFSS_AgencySiteLies_2012.csv,YMCA of Metropolitan Chicago Wabash,3763 S. Wabash Ave. ,60653,2850020,,,,,,,YMCA of Metropolitan Chicago,,,,,,,,,,,www.ymcachicago.org,Dorothy Cole-Gary,LaVonna Loving,,,,,, +2292,ECE Chicago Find a School scrape.csv, A-Karrasel Nursery Sch,3030 N. Kedzie ,60618,4636151,,,,,,Avondale,,,,,,,,,,,,,CP,,,,,,, +2293,ECE Chicago Find a School scrape.csv, Addams,10810 Ave. H ,60617,5356210,,,,,,East Side,,,,,,,,,,,,,PFA-REG,,,,,,, +2294,ECE Chicago Find a School scrape.csv, Agassiz(Blended),2851 N. Seminary ,60657,5345725,,,,,,Lake View,,,,,,,,,,,,,PFA-REG,,,,,,, +2295,ECE Chicago Find a School scrape.csv, Agassiz(Blended),2851 N. Seminary ,60657,5345725,,,,,,Lake View,,,,,,,,,,,,,TB,,,,,,, +2296,ECE Chicago Find a School scrape.csv, Albany Park Comm Ctr,3401 W. Ainslie ,60625,5095657,,,,,,Albany Park,,,,,,,,,,,,,CP,,,,,,, +2297,ECE Chicago Find a School scrape.csv, Albany Park Comm Ctr. East,5101 N. Kimball ,60625,5835111,,,,,,North Park,,,,,,,,,,,,,CP,,,,,,, +2298,ECE Chicago Find a School scrape.csv, Alcott,2625 N. Orchard ,60614,5345460,,,,,,Lincoln Park,,,,,,,,,,,,,TB,,,,,,, +2299,ECE Chicago Find a School scrape.csv, Aldridge,630 E. 131St St. ,60627,5355614,,,,,,Riverdale,,,,,,,,,,,,,HS-FD,,,,,,, +2300,ECE Chicago Find a School scrape.csv, Altgeld,7007 S. Loomis ,60636,5353250,,,,,,West Englewood,,,,,,,,,,,,,HS-HD,,,,,,, +2301,ECE Chicago Find a School scrape.csv, Ariel Comm,1119 E. 46th St. ,60653,5351996,,,,,,Kenwood,,,,,,,,,,,,,PFA-REG,,,,,,, +2302,ECE Chicago Find a School scrape.csv, Armour,950 W. 33rd Place ,60608,5354530,,,,,,Bridgeport,,,,,,,,,,,,,PFA-REG,,,,,,, +2303,ECE Chicago Find a School scrape.csv, Armstrong,2110 W. Greenleaf ,60645,5342150,,,,,,West Ridge,,,,,,,,,,,,,PFA-REG,,,,,,, +2304,ECE Chicago Find a School scrape.csv, Ashburn School,8300 S. St. Louis ,60652,5357860,,,,,,Ashburn,,,,,,,,,,,,,PFA-REG,,,,,,, +2305,ECE Chicago Find a School scrape.csv, Attucks,5055 S. State St. ,60609,5351270,,,,,,Douglas,,,,,,,,,,,,,PFA-REG,,,,,,, +2306,ECE Chicago Find a School scrape.csv, Audubon,3500 N. Hoyne ,60618,5345470,,,,,,North Center,,,,,,,,,,,,,PFA-REG TS,,,,,,, +2307,ECE Chicago Find a School scrape.csv, Audubon,3500 N. Hoyne ,60618,5345470,,,,,,North Center,,,,,,,,,,,,,TB,,,,,,, +2308,ECE Chicago Find a School scrape.csv, Avalon Park,8045 S. Kenwood ,60619,5356615,,,,,,Avalon Park,,,,,,,,,,,,,PFA-REG,,,,,,, +2309,ECE Chicago Find a School scrape.csv, Avondale,2945 N. Sawyer ,60618,5345244,,,,,,Avondale,,,,,,,,,,,,,PFA-REG TS,,,,,,, +2310,ECE Chicago Find a School scrape.csv, B & G Club General R.E. Wood,2950 W. 25th St ,60623,7627383,,,,,,South Lawndale,,,,,,,,,,,,,CP,,,,,,, +2311,ECE Chicago Find a School scrape.csv, B & G Ida Mae Fletcher,3140 W Ogden ,60623,8475172,,,,,,North Lawndale,,,,,,,,,,,,,CP,,,,,,, +2312,ECE Chicago Find a School scrape.csv, B & G James Jordan,2102 W. Monroe ,60612,4324294,,,,,,Near West Side,,,,,,,,,,,,,CP,,,,,,, +2313,ECE Chicago Find a School scrape.csv, B & G John Yancey,6245 S. Wabash ,60637,3634733,,,,,,Washington Park,,,,,,,,,,,,,CP,,,,,,, +2314,ECE Chicago Find a School scrape.csv, Banneker,6656 S. Normal ,60621,5353020,,,,,,Englewood,,,,,,,,,,,,,PFA-REG,,,,,,, +2315,ECE Chicago Find a School scrape.csv, Barnard,10354 S. Charles St. ,60643,5352625,,,,,,Beverly,,,,,,,,,,,,,PFA-REG,,,,,,, +2316,ECE Chicago Find a School scrape.csv, Barry,4634 W. Diversey ,60641,5343455,,,,,,Hermosa,,,,,,,,,,,,,PFA-REG TS,,,,,,, +2317,ECE Chicago Find a School scrape.csv, Barton,7650 S. Wolcott Ave. ,60620,5353260,,,,,,Auburn Gresham,,,,,,,,,,,,,HS-FD,,,,,,, +2318,ECE Chicago Find a School scrape.csv, Bass,1140 W. 66th St. ,60621,5353275,,,,,,Englewood,,,,,,,,,,,,,PFA-REG,,,,,,, +2319,ECE Chicago Find a School scrape.csv, Bateman,4220 N. Richmond ,60618,5345055,,,,,,Irving Park,,,,,,,,,,,,,PFA-REG,,,,,,, +2320,ECE Chicago Find a School scrape.csv, Beard,6445 W. Strong ,60656,5341228,,,,,,Norwood Park,,,,,,,,,,,,,PFA-REG,,,,,,, +2321,ECE Chicago Find a School scrape.csv, Beasley,5255 S. State St ,60609,5351230,,,,,,Washington Park,,,,,,,,,,,,,CPC-FD,,,,,,, +2322,ECE Chicago Find a School scrape.csv, Beaubien,5025 N. Laramie ,60630,5343500,,,,,,Jefferson Park,,,,,,,,,,,,,PFA-REG TS,,,,,,, +2323,ECE Chicago Find a School scrape.csv, Beethoven,4421 S. State St. ,60609,5351480,,,,,,Fuller Park,,,,,,,,,,,,,HS-FD,,,,,,, +2324,ECE Chicago Find a School scrape.csv, Beidler,3151 W. Walnut ,60612,5346811,,,,,,East Garfield Park,,,,,,,,,,,,,HS-HD,,,,,,, +2325,ECE Chicago Find a School scrape.csv, Belding,4207 W. Irving Park ,60641,5343590,,,,,,Irving Park,,,,,,,,,,,,,PFA-REG,,,,,,, +2326,ECE Chicago Find a School scrape.csv, Belding,4257 N. Tripp ,60641,5343590,,,,,,Irving Park,,,,,,,,,,,,,PFA-REG,,,,,,, +2327,ECE Chicago Find a School scrape.csv, Belmont-Cragin,6041 W. Diversey ,60639,5343318,,,,,,Belmont Cragin,,,,,,,,,,,,,PFA-REG TS,,,,,,, +2328,ECE Chicago Find a School scrape.csv, Bennett,10115 S. Prairie ,60628,5355460,,,,,,Roseland,,,,,,,,,,,,,PFA-REG,,,,,,, +2329,ECE Chicago Find a School scrape.csv, Bethel New Life,1120 N. Lamon ,60651,6267760,,,,,,Austin,,,,,,,,,,,,,CP,,,,,,, +2330,ECE Chicago Find a School scrape.csv, Bethune,3030 W. Arthington ,60612,5346890,,,,,,East Garfield Park,,,,,,,,,,,,,HS-HD,,,,,,, +2331,ECE Chicago Find a School scrape.csv, Blaine,1420 W. Grace ,60613,5345750,,,,,,Lake View,,,,,,,,,,,,,TB,,,,,,, +2332,ECE Chicago Find a School scrape.csv, Blaine,1420 W. Grace ,60613,5345750,,,,,,Lake View,,,,,,,,,,,,,PFA-REG,,,,,,, +2333,ECE Chicago Find a School scrape.csv, Bond,7050 S. May ,60621,5353480,,,,,,Englewood,,,,,,,,,,,,,HS-HD,,,,,,, +2334,ECE Chicago Find a School scrape.csv, Bontemps,1241 W. 58th St ,60636,5359175,,,,,,West Englewood,,,,,,,,,,,,,PFA-REG,,,,,,, +2335,ECE Chicago Find a School scrape.csv, Boone,6710 N. Washtenaw ,60645,5342160,,,,,,West Ridge,,,,,,,,,,,,,PFA-REG TS,,,,,,, +2336,ECE Chicago Find a School scrape.csv, Bouchet,7355 S. Jefferey Blvd. ,60649,5350501,,,,,,South Shore,,,,,,,,,,,,,PFA-REG,,,,,,, +2337,ECE Chicago Find a School scrape.csv, Bradwell,7736 S. Burnhan ,60649,5356600,,,,,,South Shore,,,,,,,,,,,,,HS-HD,,,,,,, +2338,ECE Chicago Find a School scrape.csv, Brennemann,4251 N. Clarendon ,60613,5345766,,,,,,Uptown,,,,,,,,,,,,,PFA-REG,,,,,,, +2339,ECE Chicago Find a School scrape.csv, Brentano,2723 N. Fairfield ,60647,5344100,,,,,,Logan Square,,,,,,,,,,,,,PFA-REG,,,,,,, +2340,ECE Chicago Find a School scrape.csv, Bridge,3800 N. New England ,60634,5343718,,,,,,Dunning,,,,,,,,,,,,,PFA-REG,,,,,,, +2341,ECE Chicago Find a School scrape.csv, Bright,10740 S. Calhoun ,60617,5356215,,,,,,South Deering,,,,,,,,,,,,,PFA-REG,,,,,,, +2342,ECE Chicago Find a School scrape.csv, Brighton Park,3825 S. Washtenaw Ave. ,60632,5357235,,,,,,Brighton Park,,,,,,,,,,,,,PFA-REG,,,,,,, +2343,ECE Chicago Find a School scrape.csv, Brown,54 N. Hermitage ,60612,5347250,,,,,,Near West Side,,,,,,,,,,,,,PFA-REG,,,,,,, +2344,ECE Chicago Find a School scrape.csv, Brown Academy,12607 S. Union ,60628,5355385,,,,,,West Pullman,,,,,,,,,,,,,HS-HD,,,,,,, +2345,ECE Chicago Find a School scrape.csv, Brownell,6741 S. Michigan ,60637,5353030,,,,,,Greater Grand Crossing,,,,,,,,,,,,,PFA-REG,,,,,,, +2346,ECE Chicago Find a School scrape.csv, Brunson,932 N. Central Av ,60651,5346025,,,,,,Austin,,,,,,,,,,,,,HS-HD,,,,,,, +2347,ECE Chicago Find a School scrape.csv, Budlong,2701 W. Foster ,60625,5342591,,,,,,Lincoln Square,,,,,,,,,,,,,PFA-REG,,,,,,, +2348,ECE Chicago Find a School scrape.csv, Burbank,2035 N. Mobile ,60639,5343000,,,,,,Belmont Cragin,,,,,,,,,,,,,PFA-REG,,,,,,, +2349,ECE Chicago Find a School scrape.csv, Burke,5356 S. King Dr. ,60615,5351325,,,,,,Washington Park,,,,,,,,,,,,,HS-HD,,,,,,, +2350,ECE Chicago Find a School scrape.csv, Burley,1630 W. Barry ,60657,5345475,,,,,,Lake View,,,,,,,,,,,,,PFA-REG,,,,,,, +2351,ECE Chicago Find a School scrape.csv, Burley,1630 W. Barry ,60657,5345475,,,,,,Lake View,,,,,,,,,,,,,TB,,,,,,, +2352,ECE Chicago Find a School scrape.csv, Burnside,650 E. 91st Pl. ,60619,5353300,,,,,,Chatham,,,,,,,,,,,,,PFA-REG,,,,,,, +2353,ECE Chicago Find a School scrape.csv, Burr,1621 W. Wabansia ,60622,5344090,,,,,,West Town,,,,,,,,,,,,,TB,,,,,,, +2354,ECE Chicago Find a School scrape.csv, Burr,1621 W. Wabansia ,60622,5344090,,,,,,West Town,,,,,,,,,,,,,PFA-REG,,,,,,, +2355,ECE Chicago Find a School scrape.csv, Burroughs,3542 S. Washtenaw Ave. ,60632,5357226,,,,,,Brighton Park,,,,,,,,,,,,,PFA-REG TS,,,,,,, +2356,ECE Chicago Find a School scrape.csv, Caldwell (Blended),8546 S. Cregier ,60617,5356300,,,,,,Avalon Park,,,,,,,,,,,,,PFA-REG,,,,,,, +2357,ECE Chicago Find a School scrape.csv, Calhoun,2833 W. Adams Street ,60612,5346940,,,,,,East Garfield Park,,,,,,,,,,,,,PFA-REG,,,,,,, +2358,ECE Chicago Find a School scrape.csv, Cameron,1234 N. Monticello ,60651,5344290,,,,,,Humboldt Park,,,,,,,,,,,,,HS-HD,,,,,,, +2359,ECE Chicago Find a School scrape.csv, Cardenas Modular,2406 S. Central Park Ave ,60623,5341475,,,,,,South Lawndale,,,,,,,,,,,,,HS-HD,,,,,,, +2360,ECE Chicago Find a School scrape.csv, Carnegie,1414 E. 61st Pl. ,60637,5350530,,,,,,Woodlawn,,,,,,,,,,,,,PFA-REG,,,,,,, +2361,ECE Chicago Find a School scrape.csv, Carole Robertson,2929 W. 19th St. ,60623,5211600,,,,,,South Lawndale,,,,,,,,,,,,,CP,,,,,,, +2362,ECE Chicago Find a School scrape.csv, Carole Robertson I/T,2929 W. 19th St. ,60623,5211600,,,,,,South Lawndale,,,,,,,,,,,,,CP,,,,,,, +2363,ECE Chicago Find a School scrape.csv, Carole Robertson Jubilee,3701 W. Ogden ,60623,5211680,,,,,,North Lawndale,,,,,,,,,,,,,CP,,,,,,, +2364,ECE Chicago Find a School scrape.csv, Carole Robertson Jubilee I/T,3701 W. Ogden ,60623,5211680,,,,,,North Lawndale,,,,,,,,,,,,,CP,,,,,,, +2365,ECE Chicago Find a School scrape.csv, Carroll/ Rosenwald Br,2541 W. 80th St ,60652,5359355,,,,,,Ashburn,,,,,,,,,,,,,PFA-REG,,,,,,, +2366,ECE Chicago Find a School scrape.csv, Carson (Dual Lang.),5516 S. Maplewood ,60629,5359222,,,,,,Gage Park,,,,,,,,,,,,,HS-HD,,,,,,, +2367,ECE Chicago Find a School scrape.csv, Carter,5740 S. Michgan Ave. ,60637,5350860,,,,,,Washington Park,,,,,,,,,,,,,PFA-REG,,,,,,, +2368,ECE Chicago Find a School scrape.csv, Casals,3501 W. Potomac ,60651,5344444,,,,,,Humboldt Park,,,,,,,,,,,,,PFA-REG,,,,,,, +2369,ECE Chicago Find a School scrape.csv, Cather,2908 W. Washington ,60612,5346780,,,,,,East Garfield Park,,,,,,,,,,,,,HS-HD,,,,,,, +2370,ECE Chicago Find a School scrape.csv, Catholic Charities-Cordi-Marian,1100 S. May St. ,60607,6663787,,,,,,Near West Side,,,,,,,,,,,,,CP,,,,,,, +2371,ECE Chicago Find a School scrape.csv, Catholic Charities-Cordi-Marian I/T,1100 S. May St. ,60607,6663787,,,,,,Near West Side,,,,,,,,,,,,,CP,,,,,,, +2372,ECE Chicago Find a School scrape.csv, Catholic Charities-Grace Mission,5332 S. Western ,60609,4761900,,,,,,Gage Park,,,,,,,,,,,,,CP,,,,,,, +2373,ECE Chicago Find a School scrape.csv, Catholic Charities-Our Lady of Lourdes,1449 S. Keeler ,60623,5213126,,,,,,North Lawndale,,,,,,,,,,,,,CP,,,,,,, +2374,ECE Chicago Find a School scrape.csv, Catholic Charities-Our Lady of Lourdes I/T,1449 S. Keeler ,60623,5213126,,,,,,North Lawndale,,,,,,,,,,,,,CP,,,,,,, +2375,ECE Chicago Find a School scrape.csv, Catholic Charities-St Mark,1041 N. Campbell ,60622,7726606,,,,,,West Town,,,,,,,,,,,,,CP,,,,,,, +2376,ECE Chicago Find a School scrape.csv, Catholic Charities-St Mel Holy Ghost,4215 W. West End ,60624,5331556,,,,,,West Garfield Park,,,,,,,,,,,,,CP,,,,,,, +2377,ECE Chicago Find a School scrape.csv, Centers For New Horizons Altgeld,941 E. 132nd St ,60627,4683055,,,,,,Riverdale,,,,,,,,,,,,,CP,,,,,,, +2378,ECE Chicago Find a School scrape.csv, Centers For New Horizons Altgeld II,941 E. 132nd St ,60627,4683055,,,,,,Riverdale,,,,,,,,,,,,,CP,,,,,,, +2379,ECE Chicago Find a School scrape.csv, Centers For New Horizons E.L. Hoard ELC,3948 S. State ,60609,5362187,,,,,,Grand Boulevard,,,,,,,,,,,,,CP,,,,,,, +2380,ECE Chicago Find a School scrape.csv, Centers For New Horizons Ida B. Wells ELC,3641 S. Rhodes ,60653,3733640,,,,,,Douglas,,,,,,,,,,,,,CP,,,,,,, +2381,ECE Chicago Find a School scrape.csv, Centers For New Horizons James Pitts ELC,226 E. 43rd St ,60653,6240061,,,,,,Grand Boulevard,,,,,,,,,,,,,CP,,,,,,, +2382,ECE Chicago Find a School scrape.csv, Centers For New Horizons Robert Taylor,5140 S. Federal ,60609,5360510,,,,,,Washington Park,,,,,,,,,,,,,CP,,,,,,, +2383,ECE Chicago Find a School scrape.csv, Centers For New Horizons Stateway,3663 S. Wabash ,60609,3735673,,,,,,Douglas,,,,,,,,,,,,,CP,,,,,,, +2384,ECE Chicago Find a School scrape.csv, Centers For New Horizons Washington Pk,6225 S. Wabash ,60637,6672065,,,,,,Washington Park,,,,,,,,,,,,,CP,,,,,,, +2385,ECE Chicago Find a School scrape.csv, Central Batist Bridgeport,3053 S. Normal ,60616,8425566,,,,,,Bridgeport,,,,,,,,,,,,,CP,,,,,,, +2386,ECE Chicago Find a School scrape.csv, Central Batist Bridgeport I/T,3053 S. Normal ,60616,8425566,,,,,,Bridgeport,,,,,,,,,,,,,CP,,,,,,, +2387,ECE Chicago Find a School scrape.csv, Chalmers,2745 W. Roosevelt Rd. ,60608,5341720,,,,,,North Lawndale,,,,,,,,,,,,,HS-HD,,,,,,, +2388,ECE Chicago Find a School scrape.csv, Chappell,2135 W. Foster ,60625,5342390,,,,,,Lincoln Square,,,,,,,,,,,,,PFA-REG,,,,,,, +2389,ECE Chicago Find a School scrape.csv, Chase,2021 N. Point St. ,60647,5344185,,,,,,Logan Square,,,,,,,,,,,,,HS-HD,,,,,,, +2390,ECE Chicago Find a School scrape.csv, Chavez (Yr Round),4747 S. Marshfield ,60609,5354600,,,,,,New City,,,,,,,,,,,,,PFA-REG,,,,,,, +2391,ECE Chicago Find a School scrape.csv, Chesterfield Tom Thumb,9214 S. Cottage Grove ,60619,8473985,,,,,,Chatham,,,,,,,,,,,,,CP,,,,,,, +2392,ECE Chicago Find a School scrape.csv, Chicago Academy,3400 N. Austin ,60634,5343885,,,,,,Dunning,,,,,,,,,,,,,PFA-REG,,,,,,, +2393,ECE Chicago Find a School scrape.csv, Chicago Child Care Society,5467 S. University ,60615,2562450,,,,,,Hyde Park,,,,,,,,,,,,,CP,,,,,,, +2394,ECE Chicago Find a School scrape.csv, Chicago Commons Guadalupano,1814 S. Paulina ,60608,6663883,,,,,,Lower West Side,,,,,,,,,,,,,CP,,,,,,, +2395,ECE Chicago Find a School scrape.csv, Chicago Commons NEW CITY,4600 S. McDowell ,60609,3761657,,,,,,New City,,,,,,,,,,,,,CP,,,,,,, +2396,ECE Chicago Find a School scrape.csv, Chicago Commons NIA,744 N. Monticelo ,60624,8263770,,,,,,Humboldt Park,,,,,,,,,,,,,CP,,,,,,, +2397,ECE Chicago Find a School scrape.csv, Chicago Commons PauloFreire,1653 W. 43rd St ,60609,8266260,,,,,,New City,,,,,,,,,,,,,CP,,,,,,, +2398,ECE Chicago Find a School scrape.csv, Chicago Commons Taylor Center,1633 N. Hamlin ,60647,2278551,,,,,,Humboldt Park,,,,,,,,,,,,,CP,,,,,,, +2399,ECE Chicago Find a School scrape.csv, Chicago International Charter-Basil Campus,1824 W. Garfield Blvd. ,60609,8630652,,,,,,New City,,,,,,,,,,,,,CP,,,,,,, +2400,ECE Chicago Find a School scrape.csv, Chicago State University,9501 S. King Dr. ,60628,9952556,,,,,,Roseland,,,,,,,,,,,,,CP,,,,,,, +2401,ECE Chicago Find a School scrape.csv, Chicago Urban Day School,1248 W. 69th St. ,60636,4833555,,,,,,West Englewood,,,,,,,,,,,,,CP,,,,,,, +2402,ECE Chicago Find a School scrape.csv, Chicago Youth Centers Centro Nuestro,1501 N. Harding ,60651,2785837,,,,,,Humboldt Park,,,,,,,,,,,,,CP,,,,,,, +2403,ECE Chicago Find a School scrape.csv, Children's Dev Inst Morgan Pk,10928 S. Halsted ,60628,9950600,,,,,,Morgan Park,,,,,,,,,,,,,CP,,,,,,, +2404,ECE Chicago Find a School scrape.csv, Children's Dev Inst Morgan Pk I/T,10928 S. Halsted ,60628,9950600,,,,,,Morgan Park,,,,,,,,,,,,,CP,,,,,,, +2405,ECE Chicago Find a School scrape.csv, Children's Dev Inst So Shore,7037 S. Stony Island ,60649,3633200,,,,,,South Shore,,,,,,,,,,,,,CP,,,,,,, +2406,ECE Chicago Find a School scrape.csv, Children's Dev Inst So Shore I/T,7037 S. Stony Island ,60649,3633200,,,,,,South Shore,,,,,,,,,,,,,CP,,,,,,, +2407,ECE Chicago Find a School scrape.csv, Children's Home Englewood Family Center,5958 S. Marshfield ,60636,4766998,,,,,,West Englewood,,,,,,,,,,,,,CP,,,,,,, +2408,ECE Chicago Find a School scrape.csv, Children's Home Viva Family Center,2516 W. Division ,60602,2526313,,,,,,West Town,,,,,,,,,,,,,CP,,,,,,, +2409,ECE Chicago Find a School scrape.csv, Children's Place Family Center,1800 N. Humboldt ,60622,3959193,,,,,,Logan Square,,,,,,,,,,,,,CP,,,,,,, +2410,ECE Chicago Find a School scrape.csv, ChildServ Humboldt,4909 W. Division ,60651,8677350,,,,,,Austin,,,,,,,,,,,,,CP,,,,,,, +2411,ECE Chicago Find a School scrape.csv, ChildServ Lawndale,4909 W. Division ,60651,8677350,,,,,,North Lawndale,,,,,,,,,,,,,CP,,,,,,, +2412,ECE Chicago Find a School scrape.csv, ChildServ St. Matthew,1000 N. Orleans ,60610,9443403,,,,,,Near North Side,,,,,,,,,,,,,CP,,,,,,, +2413,ECE Chicago Find a School scrape.csv, ChildServ West Englewood,1711 W. Garfield Blvd. ,60636,8677350,,,,,,West Englewood,,,,,,,,,,,,,CP,,,,,,, +2414,ECE Chicago Find a School scrape.csv, Chinese Amer Svc Lea 3,310 W. 24th Place ,60616,7910509,,,,,,Armour Square,,,,,,,,,,,,,CP,,,,,,, +2415,ECE Chicago Find a School scrape.csv, Chipper Preschool,8225 S. Kedzie ,60652,7785757,,,,,,Ashburn,,,,,,,,,,,,,CP,,,,,,, +2416,ECE Chicago Find a School scrape.csv, Chopin,2450 W. Rice ,60622,5344080,,,,,,West Town,,,,,,,,,,,,,HS-HD,,,,,,, +2417,ECE Chicago Find a School scrape.csv, Christopher House Buena Park,4303 N. Kenmore ,60613,8830788,,,,,,Uptown,,,,,,,,,,,,,CP,,,,,,, +2418,ECE Chicago Find a School scrape.csv, Christopher House Eastwood,850 W. Eastwood ,60640,2719403,,,,,,Uptown,,,,,,,,,,,,,CP,,,,,,, +2419,ECE Chicago Find a School scrape.csv, Christopher House Greenview,2507 N. Greenview ,60614,4721083,,,,,,Lincoln Park,,,,,,,,,,,,,CP,,,,,,, +2420,ECE Chicago Find a School scrape.csv, Christopher House Lakeshore,850 W. Eastwood ,60640,2719403,,,,,,Uptown,,,,,,,,,,,,,CP,,,,,,, +2421,ECE Chicago Find a School scrape.csv, Christopher House Logan Sq,2610 N. Francisco ,60647,2354073,,,,,,Logan Square,,,,,,,,,,,,,CP,,,,,,, +2422,ECE Chicago Find a School scrape.csv, Christopher House Palmer Sq,2140 N. Richmond ,60647,7728693,,,,,,Logan Square,,,,,,,,,,,,,CP,,,,,,, +2423,ECE Chicago Find a School scrape.csv, Christopher House Uptown,4701 N. Winthorp ,60640,7694540,,,,,,Uptown,,,,,,,,,,,,,CP,,,,,,, +2424,ECE Chicago Find a School scrape.csv, Christopher House Uptown I/T,4701 N. Winthorp ,60640,7694540,,,,,,Uptown,,,,,,,,,,,,,CP,,,,,,, +2425,ECE Chicago Find a School scrape.csv, City Colleges Daley,7500 S. Pulaski ,60652,8387562,,,,,,West Lawn,,,,,,,,,,,,,CP,,,,,,, +2426,ECE Chicago Find a School scrape.csv, City Colleges Daley Semester Program,7500 S. Pulaski ,60652,8387562,,,,,,West Lawn,,,,,,,,,,,,,CP,,,,,,, +2427,ECE Chicago Find a School scrape.csv, City Colleges Kennedy King,6800 S. Wentworth ,60621,6025481,,,,,,Greater Grand Crossing,,,,,,,,,,,,,CP,,,,,,, +2428,ECE Chicago Find a School scrape.csv, City Colleges Malcolm X,1900 W. VanBuren ,60612,8507176,,,,,,Near West Side,,,,,,,,,,,,,CP,,,,,,, +2429,ECE Chicago Find a School scrape.csv, City Colleges Olive Harvey,10001 S. Woodlawn ,60628,2916315,,,,,,Pullman,,,,,,,,,,,,,CP,,,,,,, +2430,ECE Chicago Find a School scrape.csv, City Colleges Truman,1145 W. Wilson ,60640,9074741,,,,,,Uptown,,,,,,,,,,,,,CP,,,,,,, +2431,ECE Chicago Find a School scrape.csv, Claremont,2300 W. 64th St ,60636,5358110,,,,,,Chicago Lawn,,,,,,,,,,,,,HS-HD,,,,,,, +2432,ECE Chicago Find a School scrape.csv, Clark,1045 S. Monitor Ave ,60644,5346225,,,,,,Austin,,,,,,,,,,,,,PFA-REG,,,,,,, +2433,ECE Chicago Find a School scrape.csv, Clay,13231 S.Burley ,60633,5355600,,,,,,Hegewisch,,,,,,,,,,,,,PFA-REG,,,,,,, +2434,ECE Chicago Find a School scrape.csv, Cleveland,3121 W. Byron ,60618,5345130,,,,,,Irving Park,,,,,,,,,,,,,PFA-REG,,,,,,, +2435,ECE Chicago Find a School scrape.csv, Clinton,6110 N. Fairfield ,60659,5342025,,,,,,West Ridge,,,,,,,,,,,,,PFA-REG,,,,,,, +2436,ECE Chicago Find a School scrape.csv, Cockrell,30 E. 61St ,60637,5350650,,,,,,Washington Park,,,,,,,,,,,,,HS-HD,,,,,,, +2437,ECE Chicago Find a School scrape.csv," Colemon, Johnnie",1441 W. 119th St. ,60643,5353975,,,,,,West Pullman,,,,,,,,,,,,,PFA-REG,,,,,,, +2438,ECE Chicago Find a School scrape.csv, Coles,8441 S. Yates ,60617,5356550,,,,,,South Chicago,,,,,,,,,,,,,PFA-REG,,,,,,, +2439,ECE Chicago Find a School scrape.csv, Columbia Explorers,4520 S. Kedzie ,60632,5354050,,,,,,Brighton Park,,,,,,,,,,,,,HS-HD,,,,,,, +2440,ECE Chicago Find a School scrape.csv, Columbus,1003 N. Leavitt ,60622,5344350,,,,,,West Town,,,,,,,,,,,,,PFA-REG,,,,,,, +2441,ECE Chicago Find a School scrape.csv, Cook,8150 S. Bishop ,60620,5353315,,,,,,Auburn Gresham,,,,,,,,,,,,,PFA-REG,,,,,,, +2442,ECE Chicago Find a School scrape.csv, Coonley,4046 N. Leavitt ,60618,5345140,,,,,,North Center,,,,,,,,,,,,,PFA-REG,,,,,,, +2443,ECE Chicago Find a School scrape.csv, Cooper,1624 W. 19Th St. ,60608,5347205,,,,,,Lower West Side,,,,,,,,,,,,,HS-HD,,,,,,, +2444,ECE Chicago Find a School scrape.csv, Corkery,2510 S. Kildare ,60623,5341650,,,,,,South Lawndale,,,,,,,,,,,,,HS-HD,,,,,,, +2445,ECE Chicago Find a School scrape.csv, Courtenay,1726 W. Berteau ,60613,5345790,,,,,,Lake View,,,,,,,,,,,,,PFA-REG,,,,,,, +2446,ECE Chicago Find a School scrape.csv, Creative Mansion,4745 S. Ellis ,60615,2686066,,,,,,Kenwood,,,,,,,,,,,,,CP,,,,,,, +2447,ECE Chicago Find a School scrape.csv, Crown,2128 S. St. Louis Ave ,60623,5341680,,,,,,North Lawndale,,,,,,,,,,,,,PFA-REG,,,,,,, +2448,ECE Chicago Find a School scrape.csv, Cuffe,8324 S. Racine ,60620,5358250,,,,,,Auburn Gresham,,,,,,,,,,,,,PFA-REG,,,,,,, +2449,ECE Chicago Find a School scrape.csv, Curtis,32 E. 115Th St. ,60628,5355050,,,,,,Roseland,,,,,,,,,,,,,HS-HD,,,,,,, +2450,ECE Chicago Find a School scrape.csv, Daley,5024 S. Wolcott ,60609,5359091,,,,,,New City,,,,,,,,,,,,,HS-HD,,,,,,, +2451,ECE Chicago Find a School scrape.csv, Darwin,3116 W. Belden ,60647,5344110,,,,,,Logan Square,,,,,,,,,,,,,PFA-REG,,,,,,, +2452,ECE Chicago Find a School scrape.csv, Davis,3014 W. 39th Pl ,60632,5354540,,,,,,Brighton Park,,,,,,,,,,,,,HS-HD,,,,,,, +2453,ECE Chicago Find a School scrape.csv, Dawes,3810 W. 81st Pl. ,60652,5352350,,,,,,Ashburn,,,,,,,,,,,,,PFA-REG,,,,,,, +2454,ECE Chicago Find a School scrape.csv, De Diego,1313 N. Claremont ,60622,5344451,,,,,,West Town,,,,,,,,,,,,,PFA-REG,,,,,,, +2455,ECE Chicago Find a School scrape.csv, Delano,3905 W. Wilcox ,60624,5346450,,,,,,West Garfield Park,,,,,,,,,,,,,CPC-FD,,,,,,, +2456,ECE Chicago Find a School scrape.csv, Deneen,7257 S. State ,60619,5353035,,,,,,Greater Grand Crossing,,,,,,,,,,,,,HS-HD,,,,,,, +2457,ECE Chicago Find a School scrape.csv, Dett,2306 W. Maypole ,60612,5347160,,,,,,Near West Side,,,,,,,,,,,,,HS-FD,,,,,,, +2458,ECE Chicago Find a School scrape.csv, Dever,3436 N. Osceola ,60634,5343090,,,,,,Dunning,,,,,,,,,,,,,PFA-REG,,,,,,, +2459,ECE Chicago Find a School scrape.csv, Dewey CPC,638 W. 54Th Pl. ,60609,5351671,,,,,,New City,,,,,,,,,,,,,CPC-HD,,,,,,, +2460,ECE Chicago Find a School scrape.csv, Dewey CPC,638 W. 54Th Pl. ,60609,5351671,,,,,,New City,,,,,,,,,,,,,CPC-FD,,,,,,, +2461,ECE Chicago Find a School scrape.csv, Dirksen,8601 W. Foster ,60656,5341090,,,,,,O'Hare,,,,,,,,,,,,,PFA-REG TS,,,,,,, +2462,ECE Chicago Find a School scrape.csv, Disney Magnet,4140 N. Marine Dr. ,60613,5345840,,,,,,Uptown,,,,,,,,,,,,,PFA-REG,,,,,,, +2463,ECE Chicago Find a School scrape.csv, Disney Magnet,3815 N. Kedvale Ave. ,60613,5345840,,,,,,Uptown,,,,,,,,,,,,,PFA-REG,,,,,,, +2464,ECE Chicago Find a School scrape.csv, Disney Magnet,4140 N. Marine Dr. ,60613,5345840,,,,,,Uptown,,,,,,,,,,,,,TB,,,,,,, +2465,ECE Chicago Find a School scrape.csv, Disney Magnet,3815 N. Kedvale Ave. ,60613,5345840,,,,,,Uptown,,,,,,,,,,,,,TB,,,,,,, +2466,ECE Chicago Find a School scrape.csv, Dixon,8306 S. St. Lawrence ,60619,5353834,,,,,,Chatham,,,,,,,,,,,,,PFA-REG,,,,,,, +2467,ECE Chicago Find a School scrape.csv, Dodge,2651 W. Washington ,60612,5346640,,,,,,East Garfield Park,,,,,,,,,,,,,HS-FD,,,,,,, +2468,ECE Chicago Find a School scrape.csv, Dominguez,3000 S. Lawndale Ave ,60623,5341600,,,,,,South Lawndale,,,,,,,,,,,,,PFA-REG,,,,,,, +2469,ECE Chicago Find a School scrape.csv, Doolittle East EC,535 E. 35th St ,60616,5351040,,,,,,Douglas,,,,,,,,,,,,,HS-HD,,,,,,, +2470,ECE Chicago Find a School scrape.csv, Dore,6108 S. Natoma ,60638,5352080,,,,,,Clearing,,,,,,,,,,,,,PFA-REG,,,,,,, +2471,ECE Chicago Find a School scrape.csv, Dorsey Developmental Institute,2050 E 93th St. ,60617,3754300,,,,,,Calumet Heights,,,,,,,,,,,,,CP,,,,,,, +2472,ECE Chicago Find a School scrape.csv, Dorsey Developmental Institute III,2938 E. 91st St. ,60617,9330053,,,,,,South Chicago,,,,,,,,,,,,,CP,,,,,,, +2473,ECE Chicago Find a School scrape.csv, Dubois,330 E. 133Rd St. ,60627,5355582,,,,,,Riverdale,,,,,,,,,,,,,HS-HD,,,,,,, +2474,ECE Chicago Find a School scrape.csv, Dulles,6311 S. Calumet ,60637,5350690,,,,,,Greater Grand Crossing,,,,,,,,,,,,,HS-HD,,,,,,, +2475,ECE Chicago Find a School scrape.csv, Dumas,6650 S. Ellis ,60637,5350750,,,,,,Woodlawn,,,,,,,,,,,,,PFA-REG,,,,,,, +2476,ECE Chicago Find a School scrape.csv, Dunne,10845 S. Union ,60628,5355517,,,,,,Roseland,,,,,,,,,,,,,PFA-REG,,,,,,, +2477,ECE Chicago Find a School scrape.csv, Durkin Park School,8445 S. Kolin ,60652,5352322,,,,,,Ashburn,,,,,,,,,,,,,PFA-REG,,,,,,, +2478,ECE Chicago Find a School scrape.csv, Dvorak,3615 W. 16Th St. ,60623,5341690,,,,,,North Lawndale,,,,,,,,,,,,,HS-HD,,,,,,, +2479,ECE Chicago Find a School scrape.csv, Earle,6121 S. Hermitage ,60636,5359130,,,,,,West Englewood,,,,,,,,,,,,,PFA-REG,,,,,,, +2480,ECE Chicago Find a School scrape.csv, Easter Seals Gilchrist Marchman,2345 W. North Ave ,60647,2764000,,,,,,West Town,,,,,,,,,,,,,CP,,,,,,, +2481,ECE Chicago Find a School scrape.csv, Easter Seals Windy City Kids,600 W. Madison ,60648,5756550,,,,,,Near West Side,,,,,,,,,,,,,CP,,,,,,, +2482,ECE Chicago Find a School scrape.csv, Eberhart,3400 W. 65th Pl ,60629,5359190,,,,,,Chicago Lawn,,,,,,,,,,,,,HS-HD,,,,,,, +2483,ECE Chicago Find a School scrape.csv, Ebinger,7350 W Pratt ,60631,5341070,,,,,,Edison Park,,,,,,,,,,,,,PFA-REG,,,,,,, +2484,ECE Chicago Find a School scrape.csv, Edison,6220 N. Olcott ,60631,5340960,,,,,,Norwood Park,,,,,,,,,,,,,PFA-REG,,,,,,, +2485,ECE Chicago Find a School scrape.csv, Edwards,4950 S. LaPorte ,60632,5352011,,,,,,Archer Heights,,,,,,,,,,,,,HS-HD,,,,,,, +2486,ECE Chicago Find a School scrape.csv, El Hogar California,2325 S. California ,60608,5231629,,,,,,South Lawndale,,,,,,,,,,,,,CP,,,,,,, +2487,ECE Chicago Find a School scrape.csv, El Hogar Loomis,1718 S. Loomis ,60608,5630662,,,,,,Lower West Side,,,,,,,,,,,,,CP,,,,,,, +2488,ECE Chicago Find a School scrape.csv, El Hogar New Loomis,1718 S. Loomis ,60608,5630662,,,,,,Lower West Side,,,,,,,,,,,,,CP,,,,,,, +2489,ECE Chicago Find a School scrape.csv, El Hogar New Loomis I/T,1718 S. Loomis ,60608,5630662,,,,,,Lower West Side,,,,,,,,,,,,,CP,,,,,,, +2490,ECE Chicago Find a School scrape.csv, El Hogar Racine,1854 S. Racine ,60608,2430011,,,,,,Lower West Side,,,,,,,,,,,,,CP,,,,,,, +2491,ECE Chicago Find a School scrape.csv, El Hogar Racine I/T,1854 S. Racine ,60608,2430011,,,,,,Lower West Side,,,,,,,,,,,,,CP,,,,,,, +2492,ECE Chicago Find a School scrape.csv, Ellington,243 N. Parkside ,60644,5346361,,,,,,Austin,,,,,,,,,,,,,HS-HD,,,,,,, +2493,ECE Chicago Find a School scrape.csv, Emmet,5500 W. Madison ,60644,5346050,,,,,,Austin,,,,,,,,,,,,,PFA-REG,,,,,,, +2494,ECE Chicago Find a School scrape.csv, Ericson,3600 West 5th Ave ,60624,5346660,,,,,,East Garfield Park,,,,,,,,,,,,,PFA-REG,,,,,,, +2495,ECE Chicago Find a School scrape.csv, Erie House,1701 W. Superior ,60622,5635800,,,,,,West Town,,,,,,,,,,,,,CP,,,,,,, +2496,ECE Chicago Find a School scrape.csv, Erie House I/T,1701 W. Superior ,60622,5635800,,,,,,West Town,,,,,,,,,,,,,CP,,,,,,, +2497,ECE Chicago Find a School scrape.csv, Esmond (Blended),1865 W. Montvale ,60643,5352650,,,,,,Morgan Park,,,,,,,,,,,,,HS-HD,,,,,,, +2498,ECE Chicago Find a School scrape.csv, Everett,3419 S. Bell Av. ,60608,5354550,,,,,,McKinley Park,,,,,,,,,,,,,PFA-REG,,,,,,, +2499,ECE Chicago Find a School scrape.csv, Eyes on the Future,1329 W. Loyola ,60626,9730771,,,,,,Rogers Park,,,,,,,,,,,,,CP,,,,,,, +2500,ECE Chicago Find a School scrape.csv, Eyes on the Future II,1773 W. Lunt ,60626,7628045,,,,,,Rogers Park,,,,,,,,,,,,,CP,,,,,,, +2501,ECE Chicago Find a School scrape.csv, Ezzard Charles,7946 S Ashland ,60620,4870227,,,,,,Auburn Gresham,,,,,,,,,,,,,CP,,,,,,, +2502,ECE Chicago Find a School scrape.csv, Falconer,3020 N. Lamon ,60641,5343560,,,,,,Belmont Cragin,,,,,,,,,,,,,PFA-REG TS,,,,,,, +2503,ECE Chicago Find a School scrape.csv, Farnsworth,5414 N. Linder ,60630,5343535,,,,,,Jefferson Park,,,,,,,,,,,,,PFA-REG,,,,,,, +2504,ECE Chicago Find a School scrape.csv, Farragut,2345 S. Christiana ,60623,5341300,,,,,,South Lawndale,,,,,,,,,,,,,PFA-REG,,,,,,, +2505,ECE Chicago Find a School scrape.csv, Ferguson CPC,1420 N. Hudson ,60610,5348580,,,,,,Near North Side,,,,,,,,,,,,,CPC-FD,,,,,,, +2506,ECE Chicago Find a School scrape.csv, Finkl,2332 S. Western ,60608,5355850,,,,,,Lower West Side,,,,,,,,,,,,,HS-HD,,,,,,, +2507,ECE Chicago Find a School scrape.csv, Firman Community Svcs East,4910 S. King Drive ,60615,3733400,,,,,,Grand Boulevard,,,,,,,,,,,,,CP,,,,,,, +2508,ECE Chicago Find a School scrape.csv, Firman Community Svcs West,37 W. 47Th St ,60609,3733400,,,,,,Grand Boulevard,,,,,,,,,,,,,CP,,,,,,, +2509,ECE Chicago Find a School scrape.csv, First Congregational Church DC,1305 N. Hamlin ,60651,3848118,,,,,,Humboldt Park,,,,,,,,,,,,,CP,,,,,,, +2510,ECE Chicago Find a School scrape.csv, First Congregational Church DC I/T,1305 N. Hamlin ,60651,3848118,,,,,,Humboldt Park,,,,,,,,,,,,,CP,,,,,,, +2511,ECE Chicago Find a School scrape.csv, Fiske,6145 S. Ingleside ,60637,5350990,,,,,,Woodlawn,,,,,,,,,,,,,HS-HD,,,,,,, +2512,ECE Chicago Find a School scrape.csv, Fleming/ Grimes Br.,4918 W. 64Th St. ,60638,5352405,,,,,,Clearing,,,,,,,,,,,,,PFA-REG,,,,,,, +2513,ECE Chicago Find a School scrape.csv, Foster Park,8530 S. Wood St. ,60620,5352725,,,,,,Auburn Gresham,,,,,,,,,,,,,PFA-REG,,,,,,, +2514,ECE Chicago Find a School scrape.csv, Fuller,4214 S. St Lawrence ,60653,5351687,,,,,,Grand Boulevard,,,,,,,,,,,,,HS-HD,,,,,,, +2515,ECE Chicago Find a School scrape.csv, Fulton,5300 S. Hermitage ,60609,5359000,,,,,,New City,,,,,,,,,,,,,HS-HD,,,,,,, +2516,ECE Chicago Find a School scrape.csv, Funston,2010 N. Central Park ,60647,5344125,,,,,,Logan Square,,,,,,,,,,,,,HS-HD,,,,,,, +2517,ECE Chicago Find a School scrape.csv, Gads Hill Child Care,2653 W. Ogden ,60608,5211196,,,,,,North Lawndale,,,,,,,,,,,,,CP,,,,,,, +2518,ECE Chicago Find a School scrape.csv, Gads Hill Child Care I/T,2653 W. Ogden ,60608,5211196,,,,,,North Lawndale,,,,,,,,,,,,,CP,,,,,,, +2519,ECE Chicago Find a School scrape.csv, Gale,1631 W. Jonquil Tr. ,60626,5342100,,,,,,Rogers Park,,,,,,,,,,,,,HS-HD,,,,,,, +2520,ECE Chicago Find a School scrape.csv, Galileo Scholastic,820 S. Carpenter ,60607,5347070,,,,,,Near West Side,,,,,,,,,,,,,PFA-REG,,,,,,, +2521,ECE Chicago Find a School scrape.csv, Gallistel,10347 S. Ewing Ave. ,60617,5356540,,,,,,East Side,,,,,,,,,,,,,PFA-REG TS,,,,,,, +2522,ECE Chicago Find a School scrape.csv, Gary,3740 W. 31St St. ,60623,5341455,,,,,,South Lawndale,,,,,,,,,,,,,HS-HD,,,,,,, +2523,ECE Chicago Find a School scrape.csv, Gillespie,9301 S. State St. ,60619,5355065,,,,,,Roseland,,,,,,,,,,,,,PFA-REG,,,,,,, +2524,ECE Chicago Find a School scrape.csv, Goethe,2236 N. Rockwell ,60647,5344135,,,,,,Logan Square,,,,,,,,,,,,,PFA-REG,,,,,,, +2525,ECE Chicago Find a School scrape.csv, Goldblatt,4257 W. Adams ,60624,5346860,,,,,,West Garfield Park,,,,,,,,,,,,,HS-HD,,,,,,, +2526,ECE Chicago Find a School scrape.csv, Goodlow,2040 W. 62nd St. ,60636,5359365,,,,,,West Englewood,,,,,,,,,,,,,PFA-REG,,,,,,, +2527,ECE Chicago Find a School scrape.csv, Goudy,5120 N. Winthrop ,60640,5342480,,,,,,Uptown,,,,,,,,,,,,,HS-HD,,,,,,, +2528,ECE Chicago Find a School scrape.csv, Graham,745 W. 45th St. ,60609,5351308,,,,,,New City,,,,,,,,,,,,,HS-HD,,,,,,, +2529,ECE Chicago Find a School scrape.csv, Gray,3730 N. Laramie ,60641,5343520,,,,,,Portage Park,,,,,,,,,,,,,PFA-REG TS,,,,,,, +2530,ECE Chicago Find a School scrape.csv, Greeley,832 W. Sheridan ,60613,5345800,,,,,,Lake View,,,,,,,,,,,,,PFA-REG,,,,,,, +2531,ECE Chicago Find a School scrape.csv, Gregory,3715 W. Polk Street ,60624,5346820,,,,,,East Garfield Park,,,,,,,,,,,,,PFA-REG,,,,,,, +2532,ECE Chicago Find a School scrape.csv, Gresham,8524 S. Green ,60620,5353350,,,,,,Auburn Gresham,,,,,,,,,,,,,HS-HD,,,,,,, +2533,ECE Chicago Find a School scrape.csv, Grissom,12810 S. Escanaba ,60633,5355380,,,,,,Hegewisch,,,,,,,,,,,,,PFA-REG,,,,,,, +2534,ECE Chicago Find a School scrape.csv, Guggenheim,7141 S. Morgan ,60621,5353587,,,,,,Englewood,,,,,,,,,,,,,HS-HD,,,,,,, +2535,ECE Chicago Find a School scrape.csv, Gunsaulus Acad,4420 S. Sacramento ,60632,5357215,,,,,,Brighton Park,,,,,,,,,,,,,PFA-REG,,,,,,, +2536,ECE Chicago Find a School scrape.csv, Haines,247 W. 23rd Pl. ,60616,5349200,,,,,,Armour Square,,,,,,,,,,,,,PFA-REG,,,,,,, +2537,ECE Chicago Find a School scrape.csv, Hale,6140 S. Melvina ,60638,5352265,,,,,,Clearing,,,,,,,,,,,,,PFA-REG,,,,,,, +2538,ECE Chicago Find a School scrape.csv," Haley, Alex",11411 S. Eggleston ,60628,5355345,,,,,,Roseland,,,,,,,,,,,,,HS-HD,,,,,,, +2539,ECE Chicago Find a School scrape.csv, Hamilton,1650 W. Cornelia ,60657,5345484,,,,,,Lake View,,,,,,,,,,,,,TB,,,,,,, +2540,ECE Chicago Find a School scrape.csv, Hamline (Yr Round),4652 S. Bishop ,60609,5354520,,,,,,New City,,,,,,,,,,,,,HS-HD,,,,,,, +2541,ECE Chicago Find a School scrape.csv, Hammond,2819 W. 21st Pl ,60623,5354580,,,,,,South Lawndale,,,,,,,,,,,,,PFA-REG,,,,,,, +2542,ECE Chicago Find a School scrape.csv," Hampton, Lionel",3434 W. 77th ,60652,5354030,,,,,,Ashburn,,,,,,,,,,,,,PFA-REG,,,,,,, +2543,ECE Chicago Find a School scrape.csv, Hansberry CPC,4055 W Arthington ,60624,5346931,,,,,,North Lawndale,,,,,,,,,,,,,CPC-FD,,,,,,, +2544,ECE Chicago Find a School scrape.csv, Hanson Park,2318 N. Lorel ,60639,5342926,,,,,,Belmont Cragin,,,,,,,,,,,,,PFA-REG,,,,,,, +2545,ECE Chicago Find a School scrape.csv, Hanson Park,5411 W. Fullerton ,60639,5343100,,,,,,Belmont Cragin,,,,,,,,,,,,,PFA-REG,,,,,,, +2546,ECE Chicago Find a School scrape.csv, Happy Holiday Nursery,401 E. 111th St ,60628,8217009,,,,,,Roseland,,,,,,,,,,,,,CP,,,,,,, +2547,ECE Chicago Find a School scrape.csv, Harte,1556 E. 56th St. ,60637,5350870,,,,,,Hyde Park,,,,,,,,,,,,,PFA-REG,,,,,,, +2548,ECE Chicago Find a School scrape.csv, Harvard,7525 S. Harvard ,60620,5353045,,,,,,Greater Grand Crossing,,,,,,,,,,,,,PFA-REG,,,,,,, +2549,ECE Chicago Find a School scrape.csv, Haugan,4540 N. Hamlin ,60625,5345040,,,,,,Albany Park,,,,,,,,,,,,,PFA-REG,,,,,,, +2550,ECE Chicago Find a School scrape.csv, Hay,1018 N. Laramie ,60651,5346000,,,,,,Austin,,,,,,,,,,,,,HS-HD,,,,,,, +2551,ECE Chicago Find a School scrape.csv, Hayt,1518 W. Granville ,60660,5342040,,,,,,Edgewater,,,,,,,,,,,,,PFA-REG,,,,,,, +2552,ECE Chicago Find a School scrape.csv, Healy,3040 S. Parnell ,60616,5349170,,,,,,Bridgeport,,,,,,,,,,,,,PFA-REG,,,,,,, +2553,ECE Chicago Find a School scrape.csv, Hearst,4640 S. Lamon ,60638,5352376,,,,,,Garfield Ridge,,,,,,,,,,,,,PFA-REG,,,,,,, +2554,ECE Chicago Find a School scrape.csv, Hedges,4747 S. Winchester ,60609,5357360,,,,,,New City,,,,,,,,,,,,,PFA-REG TS,,,,,,, +2555,ECE Chicago Find a School scrape.csv, Hefferan,4409 W. Wilcox St ,60624,5346192,,,,,,West Garfield Park,,,,,,,,,,,,,PFA-REG,,,,,,, +2556,ECE Chicago Find a School scrape.csv, Henderson,5650 S. Wolcott ,60636,5359080,,,,,,West Englewood,,,,,,,,,,,,,PFA-REG,,,,,,, +2557,ECE Chicago Find a School scrape.csv, Hendricks,4316 S. Princeton ,60609,5351696,,,,,,Fuller Park,,,,,,,,,,,,,PFA-REG,,,,,,, +2558,ECE Chicago Find a School scrape.csv, Henry,4250 N. St. Louis ,60618,5345060,,,,,,Irving Park,,,,,,,,,,,,,PFA-REG,,,,,,, +2559,ECE Chicago Find a School scrape.csv, Henry Booth House Gentry,2326 S.Dearborn ,60616,7910051,,,,,,Near South Side,,,,,,,,,,,,,CP,,,,,,, +2560,ECE Chicago Find a School scrape.csv, Henry Booth Near South,2929 S. Wabash ,60616,7910424,,,,,,Douglas,,,,,,,,,,,,,CP,,,,,,, +2561,ECE Chicago Find a School scrape.csv, Henson (Olive),1326 S. Avers Ave ,60623,5341804,,,,,,North Lawndale,,,,,,,,,,,,,HS-HD,,,,,,, +2562,ECE Chicago Find a School scrape.csv, Herbert,2131 W. Monroe ,60612,5347806,,,,,,Near West Side,,,,,,,,,,,,,HS-HD,,,,,,, +2563,ECE Chicago Find a School scrape.csv, Herzl (CPC),1401 S. Hamlin ,60623,5341751,,,,,,North Lawndale,,,,,,,,,,,,,CPC-FD,,,,,,, +2564,ECE Chicago Find a School scrape.csv, Hibbard,3244 W. Ainslie ,60625,5345191,,,,,,Albany Park,,,,,,,,,,,,,PFA-REG,,,,,,, +2565,ECE Chicago Find a School scrape.csv, Higgins,11710 S. Morgan ,60643,5355625,,,,,,West Pullman,,,,,,,,,,,,,HS-HD,,,,,,, +2566,ECE Chicago Find a School scrape.csv, Hinton,644 W. 71st Street ,60621,5353875,,,,,,Englewood,,,,,,,,,,,,,HS-FD,,,,,,, +2567,ECE Chicago Find a School scrape.csv, Hitch,5625 N. Mcvicker ,60646,5341189,,,,,,Norwood Park,,,,,,,,,,,,,PFA-REG,,,,,,, +2568,ECE Chicago Find a School scrape.csv, Holden,1104 W. 31st Street ,60608,5357200,,,,,,Bridgeport,,,,,,,,,,,,,PFA-REG,,,,,,, +2569,ECE Chicago Find a School scrape.csv, Holmes,955 W. Garfield ,60621,5359025,,,,,,Englewood,,,,,,,,,,,,,HS-HD,,,,,,, +2570,ECE Chicago Find a School scrape.csv, Home of Life II,4650 W. Madison ,60644,6268655,,,,,,Austin,,,,,,,,,,,,,CP,,,,,,, +2571,ECE Chicago Find a School scrape.csv, Home of Life II I/T,4650 W. Madison ,60644,6268655,,,,,,Austin,,,,,,,,,,,,,CP,,,,,,, +2572,ECE Chicago Find a School scrape.csv, Home of Life Just For You,4650 W. Madison ,60644,6268655,,,,,,Austin,,,,,,,,,,,,,CP,,,,,,, +2573,ECE Chicago Find a School scrape.csv, Howard Area EC Center,7638 N. Paulina ,60626,2624309,,,,,,Rogers Park,,,,,,,,,,,,,CP,,,,,,, +2574,ECE Chicago Find a School scrape.csv, Howe,720 N. Lorel ,60644,5346060,,,,,,Austin,,,,,,,,,,,,,PFA-REG,,,,,,, +2575,ECE Chicago Find a School scrape.csv," Hughes, C.",4247 W. 15Th St. ,60623,5341762,,,,,,North Lawndale,,,,,,,,,,,,,PFA-REG,,,,,,, +2576,ECE Chicago Find a School scrape.csv," Hughes, L.",240 W. 104th St. ,60628,5355075,,,,,,Roseland,,,,,,,,,,,,,HS-HD,,,,,,, +2577,ECE Chicago Find a School scrape.csv, Hull House - Parkway,500 E. 67th St. ,60619,4931306,,,,,,Woodlawn,,,,,,,,,,,,,CP,,,,,,, +2578,ECE Chicago Find a School scrape.csv, Hull House - Uptown,4520 N. Beacon ,60640,5613500,,,,,,Uptown,,,,,,,,,,,,,CP,,,,,,, +2579,ECE Chicago Find a School scrape.csv, Hurley,3849 W. 69Th St ,60629,5352068,,,,,,West Lawn,,,,,,,,,,,,,HS-HD,,,,,,, +2580,ECE Chicago Find a School scrape.csv, Inter-American,851 W. Waveland ,60657,5345490,,,,,,Lake View,,,,,,,,,,,,,PFA-REG,,,,,,, +2581,ECE Chicago Find a School scrape.csv, Irving,749 S. Oakley Blvd ,60612,5347295,,,,,,Near West Side,,,,,,,,,,,,,PFA-REG,,,,,,, +2582,ECE Chicago Find a School scrape.csv, Irving Park Early Learning Ctr,3023 W. Montrose ,60618,5397422,,,,,,Irving Park,,,,,,,,,,,,,CP,,,,,,, +2583,ECE Chicago Find a School scrape.csv," Jackson,M",917 W. 88Th St. ,60620,5353341,,,,,,Auburn Gresham,,,,,,,,,,,,,PFA-REG,,,,,,, +2584,ECE Chicago Find a School scrape.csv, Jahn,3149 N. Wolcott ,60657,5345500,,,,,,Lake View,,,,,,,,,,,,,PFA-REG,,,,,,, +2585,ECE Chicago Find a School scrape.csv, Jenner,1119 N. Cleveland ,60610,5348440,,,,,,Near North Side,,,,,,,,,,,,,HS-HD,,,,,,, +2586,ECE Chicago Find a School scrape.csv, Jensen Schol Acad,3030 W. Harrison ,60612,5346840,,,,,,East Garfield Park,,,,,,,,,,,,,PFA-REG,,,,,,, +2587,ECE Chicago Find a School scrape.csv, Johnson,1420 S. Albany ,60623,5341829,,,,,,North Lawndale,,,,,,,,,,,,,HS-HD,,,,,,, +2588,ECE Chicago Find a School scrape.csv, Joplin,7931 S. Honore St. ,60620,5353425,,,,,,Auburn Gresham,,,,,,,,,,,,,PFA-REG,,,,,,, +2589,ECE Chicago Find a School scrape.csv, Jordan,7414 N. Wolcott ,60626,5342220,,,,,,Rogers Park,,,,,,,,,,,,,HS-HD,,,,,,, +2590,ECE Chicago Find a School scrape.csv, Jungman,1746 S. Miller ,60608,5347375,,,,,,Lower West Side,,,,,,,,,,,,,HS-HD,,,,,,, +2591,ECE Chicago Find a School scrape.csv, Kanoon,2233 S. Kedzie ,60623,5341736,,,,,,South Lawndale,,,,,,,,,,,,,PFA-REG,,,,,,, +2592,ECE Chicago Find a School scrape.csv, Keller,3020 W. 108th St. ,60655,5352636,,,,,,Mount Greenwood,,,,,,,,,,,,,CP,,,,,,, +2593,ECE Chicago Find a School scrape.csv, Kellman Corp Comm,751 S. Sacramento Blvd ,60612,5346602,,,,,,East Garfield Park,,,,,,,,,,,,,PFA-REG,,,,,,, +2594,ECE Chicago Find a School scrape.csv, Kenyatta's Day Care Center,2334 E. 75th St. ,60649,2213777,,,,,,South Shore,,,,,,,,,,,,,CP,,,,,,, +2595,ECE Chicago Find a School scrape.csv, Kershaw,6450 S. Lowe ,60621,5353050,,,,,,Englewood,,,,,,,,,,,,,HS-HD,,,,,,, +2596,ECE Chicago Find a School scrape.csv, Kiddie Korner,645 W. 127th St. ,60628,8215437,,,,,,West Pullman,,,,,,,,,,,,,CP,,,,,,, +2597,ECE Chicago Find a School scrape.csv," Kidwatch Plus, Inc.",3901 N. Ridgeway ,60618,5395431,,,,,,Irving Park,,,,,,,,,,,,,CP,,,,,,, +2598,ECE Chicago Find a School scrape.csv, Kilmer,6700 N. Greenview ,60626,5342115,,,,,,Rogers Park,,,,,,,,,,,,,PFA-REG,,,,,,, +2599,ECE Chicago Find a School scrape.csv, King,740 S. Campbell Ave ,60612,5347898,,,,,,Near West Side,,,,,,,,,,,,,PFA-REG,,,,,,, +2600,ECE Chicago Find a School scrape.csv, Kinzie,5625 S. Mobile ,60638,5352425,,,,,,Garfield Ridge,,,,,,,,,,,,,PFA-REG,,,,,,, +2601,ECE Chicago Find a School scrape.csv, KKP - Kiddy Kare I,4444 S. Kedzie ,60632,2476642,,,,,,Brighton Park,,,,,,,,,,,,,CP,,,,,,, +2602,ECE Chicago Find a School scrape.csv, KKP - Kidz Colony,6287 S. Archer ,60638,7670844,,,,,,Garfield Ridge,,,,,,,,,,,,,CP,,,,,,, +2603,ECE Chicago Find a School scrape.csv, KKP - Little Learners Daycare,5923 W. 63rd St. ,60609,5815541,,,,,,Clearing,,,,,,,,,,,,,CP,,,,,,, +2604,ECE Chicago Find a School scrape.csv, KKP - Little Tykes I,1711 W. 35th St. ,60609,2548396,,,,,,McKinley Park,,,,,,,,,,,,,CP,,,,,,, +2605,ECE Chicago Find a School scrape.csv, KKP - Little Tykes II,1723 W. 35th St. ,60609,5791793,,,,,,McKinley Park,,,,,,,,,,,,,CP,,,,,,, +2606,ECE Chicago Find a School scrape.csv, Kohn,10414 S. State ,60628,5355489,,,,,,Roseland,,,,,,,,,,,,,HS-HD,,,,,,, +2607,ECE Chicago Find a School scrape.csv, Kozminski Com Acad,936 E. 54th St. ,60615,5350980,,,,,,Hyde Park,,,,,,,,,,,,,PFA-REG,,,,,,, +2608,ECE Chicago Find a School scrape.csv, Lafayette,2714 W. Augusta Bl. ,60622,5344326,,,,,,West Town,,,,,,,,,,,,,HS-HD,,,,,,, +2609,ECE Chicago Find a School scrape.csv, Lara,4619 S. Wolcott ,60609,5354389,,,,,,New City,,,,,,,,,,,,,PFA-REG,,,,,,, +2610,ECE Chicago Find a School scrape.csv, Lasalle Lang Acad,1148 N. Honore ,60614,5344284,,,,,,Lincoln Park,,,,,,,,,,,,,PFA-REG,,,,,,, +2611,ECE Chicago Find a School scrape.csv, Laurance Amour,630 S. Ashland ,60607,9426501,,,,,,Near West Side,,,,,,,,,,,,,CP,,,,,,, +2612,ECE Chicago Find a School scrape.csv, Lavizzo,138 W. 109Th St ,60628,5355300,,,,,,Roseland,,,,,,,,,,,,,HS-HD,,,,,,, +2613,ECE Chicago Find a School scrape.csv, Lawndale,3500 W. Douglas ,60623,5341635,,,,,,North Lawndale,,,,,,,,,,,,,HS-HD,,,,,,, +2614,ECE Chicago Find a School scrape.csv, Lawrence,9928 S. Crandon ,60617,5356320,,,,,,South Deering,,,,,,,,,,,,,PFA-REG,,,,,,, +2615,ECE Chicago Find a School scrape.csv, Lee,6448 S. Tripp ,60629,5352255,,,,,,West Lawn,,,,,,,,,,,,,PFA-REG,,,,,,, +2616,ECE Chicago Find a School scrape.csv, Leland,5221 W. Congress ,60644,5346340,,,,,,Austin,,,,,,,,,,,,,PFA-REG,,,,,,, +2617,ECE Chicago Find a School scrape.csv, Lenart,8101 S. LaSalle ,60620,5350040,,,,,,Chatham,,,,,,,,,,,,,PFA-REG,,,,,,, +2618,ECE Chicago Find a School scrape.csv, Lewis,1431 N. Leamington ,60651,5343060,,,,,,Austin,,,,,,,,,,,,,PFA-REG,,,,,,, +2619,ECE Chicago Find a School scrape.csv, Libby,5338 S. Loomis ,60609,5359350,,,,,,New City,,,,,,,,,,,,,PFA-REG,,,,,,, +2620,ECE Chicago Find a School scrape.csv, Linne,3221 N. Sacramento ,60618,5345262,,,,,,Avondale,,,,,,,,,,,,,HS-HD,,,,,,, +2621,ECE Chicago Find a School scrape.csv, Little Village,2620 S. Lawndale ,60623,5341880,,,,,,South Lawndale,,,,,,,,,,,,,HS-HD,,,,,,, +2622,ECE Chicago Find a School scrape.csv, Lloyd,2103 N. Lamon ,60639,5343070,,,,,,Belmont Cragin,,,,,,,,,,,,,HS-HD,,,,,,, +2623,ECE Chicago Find a School scrape.csv, Love Learning Center,362 E. 61st St ,60637,7520243,,,,,,Washington Park,,,,,,,,,,,,,CP,,,,,,, +2624,ECE Chicago Find a School scrape.csv, Lovett,6333 W. Bloomingdale ,60639,5343130,,,,,,Austin,,,,,,,,,,,,,PFA-REG,,,,,,, +2625,ECE Chicago Find a School scrape.csv, Lozano,1424 N. Cleaver ,60622,5344150,,,,,,West Town,,,,,,,,,,,,,PFA-REG,,,,,,, +2626,ECE Chicago Find a School scrape.csv, Lutheran Day Nursery,1802 N. Fairfield ,60647,4864222,,,,,,Logan Square,,,,,,,,,,,,,CP,,,,,,, +2627,ECE Chicago Find a School scrape.csv, Lutheran Family Mission Day Care III,5251 W. North Ave. ,60637,6372344,,,,,,Austin,,,,,,,,,,,,,CP,,,,,,, +2628,ECE Chicago Find a School scrape.csv, Lutheran Family Mission Fam Cnt,4920 W Madison ,60644,9214960,,,,,,Austin,,,,,,,,,,,,,CP,,,,,,, +2629,ECE Chicago Find a School scrape.csv, Lutheran Social Services-North Austin,1500 N. Mason ,60651,2371930,,,,,,Austin,,,,,,,,,,,,,CP,,,,,,, +2630,ECE Chicago Find a School scrape.csv, Lutheran Social Services-Roger Park,1754 W. Devon ,60660,2623366,,,,,,Rogers Park,,,,,,,,,,,,,CP,,,,,,, +2631,ECE Chicago Find a School scrape.csv, Lutheran Social Services-Winthrop,4848 N. Winthrop ,60640,8783210,,,,,,Uptown,,,,,,,,,,,,,CP,,,,,,, +2632,ECE Chicago Find a School scrape.csv, Madison,7433 S. Dorchester ,60619,5350551,,,,,,South Shore,,,,,,,,,,,,,HS-HD,,,,,,, +2633,ECE Chicago Find a School scrape.csv, Marconi,230 N. Kolmar ,60624,5346210,,,,,,West Garfield Park,,,,,,,,,,,,,PFA-REG,,,,,,, +2634,ECE Chicago Find a School scrape.csv, Marcy Newberry Austin Town,5610 W. Lake St. ,60644,2611505,,,,,,Austin,,,,,,,,,,,,,CP,,,,,,, +2635,ECE Chicago Find a School scrape.csv, Marcy Newberry Marcy Center,1539 S. Springfield ,60623,7622300,,,,,,North Lawndale,,,,,,,,,,,,,CP,,,,,,, +2636,ECE Chicago Find a School scrape.csv, Marillac Social Center,212 S. Francisco Ave ,60612,7227440,,,,,,East Garfield Park,,,,,,,,,,,,,CP,,,,,,, +2637,ECE Chicago Find a School scrape.csv, Marin/ Lowell,3320 W. Evergreen ,60651,5344300,,,,,,Humboldt Park,,,,,,,,,,,,,PFA-REG,,,,,,, +2638,ECE Chicago Find a School scrape.csv, Marquette,6550 S. Richmond ,60629,5359260,,,,,,Chicago Lawn,,,,,,,,,,,,,PFA-REG,,,,,,, +2639,ECE Chicago Find a School scrape.csv, Marsh,9810 S. Exchange ,60617,5356430,,,,,,South Deering,,,,,,,,,,,,,PFA-REG,,,,,,, +2640,ECE Chicago Find a School scrape.csv, Mary Crane,2905 N. Leavitt ,60618,3485528,,,,,,North Center,,,,,,,,,,,,,CP,,,,,,, +2641,ECE Chicago Find a School scrape.csv, Mary Crane East 0-3,2974 N. Clybourn ,60618,3485528,,,,,,North Center,,,,,,,,,,,,,CP,,,,,,, +2642,ECE Chicago Find a School scrape.csv, Mary Crane North,2905 N. Leavitt ,60618,3485528,,,,,,North Center,,,,,,,,,,,,,CP,,,,,,, +2643,ECE Chicago Find a School scrape.csv, Mary Crane North 0-3,2905 N. Leavitt ,60618,3485528,,,,,,North Center,,,,,,,,,,,,,CP,,,,,,, +2644,ECE Chicago Find a School scrape.csv, Mason,4216 W. 19th St. ,60623,5341530,,,,,,North Lawndale,,,,,,,,,,,,,HS-FD,,,,,,, +2645,ECE Chicago Find a School scrape.csv, May,512 S. Lavergne ,60644,5346140,,,,,,Austin,,,,,,,,,,,,,HS-HD,,,,,,, +2646,ECE Chicago Find a School scrape.csv, Mayo,249 E. 37th St. ,60653,5351260,,,,,,Douglas,,,,,,,,,,,,,HS-HD,,,,,,, +2647,ECE Chicago Find a School scrape.csv, McAuliffe,1841 N. Springfield ,60647,5344400,,,,,,Hermosa,,,,,,,,,,,,,PFA-REG,,,,,,, +2648,ECE Chicago Find a School scrape.csv, McCann's Daycare Center,8612 S. Stony Island ,60617,3757932,,,,,,Avalon Park,,,,,,,,,,,,,CP,,,,,,, +2649,ECE Chicago Find a School scrape.csv, McClellan,3527 S. Wallace ,60609,5351732,,,,,,Bridgeport,,,,,,,,,,,,,HS-HD,,,,,,, +2650,ECE Chicago Find a School scrape.csv, McCormick,2712 S. Sawyer ,60623,5357252,,,,,,South Lawndale,,,,,,,,,,,,,HS-HD,,,,,,, +2651,ECE Chicago Find a School scrape.csv, McCutcheon,4846 N. Sheridan Rd ,60640,5342680,,,,,,Uptown,,,,,,,,,,,,,HS-HD,,,,,,, +2652,ECE Chicago Find a School scrape.csv, McDowell,1419 E. 89th St. ,60619,5356404,,,,,,Calumet Heights,,,,,,,,,,,,,HS-FD,,,,,,, +2653,ECE Chicago Find a School scrape.csv, McKay,7059 S. Washtenaw ,60629,5359340,,,,,,Chicago Lawn,,,,,,,,,,,,,HS-HD,,,,,,, +2654,ECE Chicago Find a School scrape.csv, McNair Acad Ctr,4820 W. Walton ,60651,5348980,,,,,,Austin,,,,,,,,,,,,,HS-HD,,,,,,, +2655,ECE Chicago Find a School scrape.csv, McPherson,4728 N. Wolcott Ave ,60640,5342625,,,,,,Lincoln Square,,,,,,,,,,,,,HS-HD,,,,,,, +2656,ECE Chicago Find a School scrape.csv, Melody,412 S. Keeler ,60624,5346850,,,,,,West Garfield Park,,,,,,,,,,,,,PFA-REG,,,,,,, +2657,ECE Chicago Find a School scrape.csv, Metcalfe,12339 S. Normal ,60628,5355590,,,,,,West Pullman,,,,,,,,,,,,,PFA-REG,,,,,,, +2658,ECE Chicago Find a School scrape.csv, Metropolitan Family Services,3215 W. 63rd St ,60629,7374790,,,,,,Chicago Lawn,,,,,,,,,,,,,CP,,,,,,, +2659,ECE Chicago Find a School scrape.csv, Metropolitan Family Services 0-3,3215 W. 63rd St ,60629,7374790,,,,,,Chicago Lawn,,,,,,,,,,,,,CP,,,,,,, +2660,ECE Chicago Find a School scrape.csv, Mireles,9000 S. Exchange ,60617,5356360,,,,,,South Chicago,,,,,,,,,,,,,PFA-REG,,,,,,, +2661,ECE Chicago Find a School scrape.csv, Mitchell,2233 W. Ohio ,60612,5347655,,,,,,West Town,,,,,,,,,,,,,PFA-REG,,,,,,, +2662,ECE Chicago Find a School scrape.csv, Monroe,3651 W. Schubert ,60647,5344155,,,,,,Logan Square,,,,,,,,,,,,,HS-HD,,,,,,, +2663,ECE Chicago Find a School scrape.csv, Monroe,3651 W. Shubert ,60647,5344155,,,,,,Logan Square,,,,,,,,,,,,,PFA-REG,,,,,,, +2664,ECE Chicago Find a School scrape.csv, Moos,1711 N. California ,60647,5344340,,,,,,West Town,,,,,,,,,,,,,PFA-REG,,,,,,, +2665,ECE Chicago Find a School scrape.csv, Morgan,8407 S. Kerfoot ,60620,5353366,,,,,,Auburn Gresham,,,,,,,,,,,,,HS-HD,,,,,,, +2666,ECE Chicago Find a School scrape.csv, Morrill,6011 S. Rockwell ,60629,5359288,,,,,,Chicago Lawn,,,,,,,,,,,,,PFA-REG,,,,,,, +2667,ECE Chicago Find a School scrape.csv, Morton,431 N. Troy ,60612,5346791,,,,,,Humboldt Park,,,,,,,,,,,,,HS-HD,,,,,,, +2668,ECE Chicago Find a School scrape.csv, Mosaic (Portage Park),5332 W. Addison ,60641,7777411,,,,,,Portage Park,,,,,,,,,,,,,CP,,,,,,, +2669,ECE Chicago Find a School scrape.csv, Mother's Touch I,2501 W. 71St ,60629,4363177,,,,,,Chicago Lawn,,,,,,,,,,,,,CP,,,,,,, +2670,ECE Chicago Find a School scrape.csv, Mother's Touch II,2547 W. 69th Street ,60629,4712532,,,,,,Chicago Lawn,,,,,,,,,,,,,CP,,,,,,, +2671,ECE Chicago Find a School scrape.csv, Mozart,2200 N. Hamlin ,60647,5344160,,,,,,Logan Square,,,,,,,,,,,,,PFA-REG TS,,,,,,, +2672,ECE Chicago Find a School scrape.csv, Mt Greenwood,10841 S. Homan ,60655,5352786,,,,,,Mount Greenwood,,,,,,,,,,,,,PFA-REG,,,,,,, +2673,ECE Chicago Find a School scrape.csv, Murphy,3539 W. Grace ,60618,5345223,,,,,,Irving Park,,,,,,,,,,,,,PFA-REG,,,,,,, +2674,ECE Chicago Find a School scrape.csv, Murray Lang Acad,5335 S. Kenwood ,60615,5350585,,,,,,Hyde Park,,,,,,,,,,,,,PFA-REG,,,,,,, +2675,ECE Chicago Find a School scrape.csv, Nash,4837 W. Erie ,60644,5346125,,,,,,Austin,,,,,,,,,,,,,HS-HD,,,,,,, +2676,ECE Chicago Find a School scrape.csv, National Teachers Acad,55 West Cermak ,60616,5349970,,,,,,Near South Side,,,,,,,,,,,,,HS-FD,,,,,,, +2677,ECE Chicago Find a School scrape.csv, NE Ill Univ Child Care Center,5500 N. St Louis ,60625,5390570,,,,,,North Park,,,,,,,,,,,,,CP,,,,,,, +2678,ECE Chicago Find a School scrape.csv, Near North Sp. Ed Ctr.,739 N. Ada St. ,60622,5347846,,,,,,West Town,,,,,,,,,,,,,CP,,,,,,, +2679,ECE Chicago Find a School scrape.csv, Nettelhorst,3252 N. Broadway ,60657,5345810,,,,,,Lake View,,,,,,,,,,,,,PFA-REG,,,,,,, +2680,ECE Chicago Find a School scrape.csv, Nettelhorst,3252 N. Broadway ,60657,5345810,,,,,,Lake View,,,,,,,,,,,,,TB,,,,,,, +2681,ECE Chicago Find a School scrape.csv, New Field,1707 W. Morse ,60626,5342760,,,,,,Rogers Park,,,,,,,,,,,,,HS-HD,,,,,,, +2682,ECE Chicago Find a School scrape.csv, New Hope Lutheran School,6416 S. Washtenaw ,60629,7769849,,,,,,Chicago Lawn,,,,,,,,,,,,,CP,,,,,,, +2683,ECE Chicago Find a School scrape.csv, Newberry Magnet,700 W. Willow ,60614,5348000,,,,,,Lincoln Park,,,,,,,,,,,,,TB,,,,,,, +2684,ECE Chicago Find a School scrape.csv, Nicholson,6006 S. Peoria ,60621,5353285,,,,,,Englewood,,,,,,,,,,,,,HS-FD,,,,,,, +2685,ECE Chicago Find a School scrape.csv, Nightingale,5250 S. Rockwell ,60632,5359270,,,,,,Gage Park,,,,,,,,,,,,,PFA-REG,,,,,,, +2686,ECE Chicago Find a School scrape.csv, Nixon,2121 N. Keeler ,60639,5344375,,,,,,Hermosa,,,,,,,,,,,,,HS-HD,,,,,,, +2687,ECE Chicago Find a School scrape.csv, NLU - Effie O. Ellis HS,10 S. Kedzie ,60612,5339011,,,,,,East Garfield Park,,,,,,,,,,,,,CP,,,,,,, +2688,ECE Chicago Find a School scrape.csv, Nobel,4127 W. Hirsch ,60651,5344365,,,,,,Humboldt Park,,,,,,,,,,,,,PFA-REG,,,,,,, +2689,ECE Chicago Find a School scrape.csv, North Avenue,2001 W. Pierce St. ,60622,3424499,,,,,,West Town,,,,,,,,,,,,,CP,,,,,,, +2690,ECE Chicago Find a School scrape.csv, North Avenue I/T,2001 W. Pierce St. ,60622,3424499,,,,,,West Town,,,,,,,,,,,,,CP,,,,,,, +2691,ECE Chicago Find a School scrape.csv, North Kenwood Day Care Ctr.,857 E. Pershing Rd. ,60653,2682223,,,,,,Oakland,,,,,,,,,,,,,CP,,,,,,, +2692,ECE Chicago Find a School scrape.csv, North River,4416 N. Troy ,60625,5340590,,,,,,Albany Park,,,,,,,,,,,,,PFA-REG,,,,,,, +2693,ECE Chicago Find a School scrape.csv, Northwest Institute,4040 W. Division ,60651,2788261,,,,,,Humboldt Park,,,,,,,,,,,,,CP,,,,,,, +2694,ECE Chicago Find a School scrape.csv, Northwestern Univ Settlement Hse.,1400 W. Augusta Blvd. ,60622,2787471,,,,,,West Town,,,,,,,,,,,,,CP,,,,,,, +2695,ECE Chicago Find a School scrape.csv, Norwood Park,5900 N. Nina ,60631,5341198,,,,,,Norwood Park,,,,,,,,,,,,,PFA-REG,,,,,,, +2696,ECE Chicago Find a School scrape.csv, O'Keeffe,6941 S. Merrill ,60649,5350600,,,,,,South Shore,,,,,,,,,,,,,HS-HD,,,,,,, +2697,ECE Chicago Find a School scrape.csv, O'Toole,6550 S. Seeley ,60636,5359040,,,,,,West Englewood,,,,,,,,,,,,,HS-HD,,,,,,, +2698,ECE Chicago Find a School scrape.csv, Ogden,1443 N. Ogden ,60610,5348110,,,,,,Near North Side,,,,,,,,,,,,,TB,,,,,,, +2699,ECE Chicago Find a School scrape.csv, Oglesby,7646 S. Green ,60620,5353060,,,,,,Auburn Gresham,,,,,,,,,,,,,PFA-REG,,,,,,, +2700,ECE Chicago Find a School scrape.csv, Onahan,6634 W. Raven St. ,60631,5341180,,,,,,Norwood Park,,,,,,,,,,,,,PFA-REG,,,,,,, +2701,ECE Chicago Find a School scrape.csv, Onward House,600 N. Leavitt ,60612,6666729,,,,,,West Town,,,,,,,,,,,,,CP,,,,,,, +2702,ECE Chicago Find a School scrape.csv, Oriole Park,5424 N. Oketo ,60656,5341201,,,,,,Norwood Park,,,,,,,,,,,,,PFA-REG,,,,,,, +2703,ECE Chicago Find a School scrape.csv, Otis,525 N. Armour ,60622,5347665,,,,,,West Town,,,,,,,,,,,,,PFA-REG,,,,,,, +2704,ECE Chicago Find a School scrape.csv, Ounce -Garfield Head Start,30 W. Garfield ,60609,3730234,,,,,,Washington Park,,,,,,,,,,,,,CP,,,,,,, +2705,ECE Chicago Find a School scrape.csv, Ounce of Prev EC Center,5044 S Wabash ,60615,9242334,,,,,,Grand Boulevard,,,,,,,,,,,,,CP,,,,,,, +2706,ECE Chicago Find a School scrape.csv, Ounce of Prev EC Center I/T,5044 S Wabash ,60615,9242334,,,,,,Grand Boulevard,,,,,,,,,,,,,CP,,,,,,, +2707,ECE Chicago Find a School scrape.csv, Overton CPC,4935 S. Indiana ,60615,5351811,,,,,,Grand Boulevard,,,,,,,,,,,,,CPC-FD,,,,,,, +2708,ECE Chicago Find a School scrape.csv, Owens,12450 S. State St. ,60628,5355661,,,,,,West Pullman,,,,,,,,,,,,,PFA-REG,,,,,,, +2709,ECE Chicago Find a School scrape.csv, Palmer,5051 N. Kenneth ,60630,5343704,,,,,,Albany Park,,,,,,,,,,,,,PFA-REG,,,,,,, +2710,ECE Chicago Find a School scrape.csv, Panda Montessori Academy,6921 N. Ridge ,60645,3386755,,,,,,Rogers Park,,,,,,,,,,,,,CP,,,,,,, +2711,ECE Chicago Find a School scrape.csv, Park Manor,7037 S. Rhodes ,60637,5353070,,,,,,Greater Grand Crossing,,,,,,,,,,,,,PFA-REG,,,,,,, +2712,ECE Chicago Find a School scrape.csv, Parker CPC,328 W. 69Th ,60621,5353853,,,,,,Englewood,,,,,,,,,,,,,CPC-FD,,,,,,, +2713,ECE Chicago Find a School scrape.csv, Parkman,245 W. 51St. St. ,60609,5351739,,,,,,Fuller Park,,,,,,,,,,,,,PFA-REG,,,,,,, +2714,ECE Chicago Find a School scrape.csv, Parkside,6938 S. East End Av. ,60649,5350940,,,,,,South Shore,,,,,,,,,,,,,PFA-REG,,,,,,, +2715,ECE Chicago Find a School scrape.csv, Pathways to Learning,3416 W. 79th St. ,60652,4369244,,,,,,Ashburn,,,,,,,,,,,,,CP,,,,,,, +2716,ECE Chicago Find a School scrape.csv, Peabody,1444 W. Augusta ,60622,5344170,,,,,,West Town,,,,,,,,,,,,,HS-HD,,,,,,, +2717,ECE Chicago Find a School scrape.csv, Peck,4026 W. 59th Street ,60629,5352450,,,,,,West Elsdon,,,,,,,,,,,,,TS HS-HD,,,,,,, +2718,ECE Chicago Find a School scrape.csv, Peirce,1423 W. Bryn Mawr ,60660,5342440,,,,,,Edgewater,,,,,,,,,,,,,PFA-REG,,,,,,, +2719,ECE Chicago Find a School scrape.csv, Penn (Blended),1616 S. Avers ,60623,5341665,,,,,,North Lawndale,,,,,,,,,,,,,HS-HD,,,,,,, +2720,ECE Chicago Find a School scrape.csv, Perez,1241 W. 19Th St. ,60608,5347650,,,,,,Lower West Side,,,,,,,,,,,,,HS-HD,,,,,,, +2721,ECE Chicago Find a School scrape.csv, Pershing,3113 S. Rhodes ,60616,5349272,,,,,,Douglas,,,,,,,,,,,,,PFA-REG CP,,,,,,, +2722,ECE Chicago Find a School scrape.csv, Peterson,5510 N. Christiana ,60625,5345070,,,,,,North Park,,,,,,,,,,,,,PFA-REG TS,,,,,,, +2723,ECE Chicago Find a School scrape.csv, Piccolo,1040 N. Keeler ,60651,5344425,,,,,,Humboldt Park,,,,,,,,,,,,,HS-HD,,,,,,, +2724,ECE Chicago Find a School scrape.csv, Pickard,2301 W. 21st Pl. ,60608,5357280,,,,,,Lower West Side,,,,,,,,,,,,,HS-HD,,,,,,, +2725,ECE Chicago Find a School scrape.csv, Pilsen,1420 W. 17Th St. ,60608,5347675,,,,,,Lower West Side,,,,,,,,,,,,,HS-HD,,,,,,, +2726,ECE Chicago Find a School scrape.csv, Pirie,650 E. 85Th St ,60619,5353435,,,,,,Chatham,,,,,,,,,,,,,PFA-REG,,,,,,, +2727,ECE Chicago Find a School scrape.csv, Portage Park,5330 .W Berteau ,60641,5343576,,,,,,Portage Park,,,,,,,,,,,,,PFA-REG,,,,,,, +2728,ECE Chicago Find a School scrape.csv, Prescott,1632 W. Wrightwood ,60614,5345505,,,,,,Lincoln Park,,,,,,,,,,,,,PFA-REG,,,,,,, +2729,ECE Chicago Find a School scrape.csv, Pritzker,2009 W. Schiller St ,60622,5344415,,,,,,West Town,,,,,,,,,,,,,PFA-REG,,,,,,, +2730,ECE Chicago Find a School scrape.csv, Progressive Com DC Ctr,56 E. 48th St. ,60615,9246561,,,,,,Grand Boulevard,,,,,,,,,,,,,CP,,,,,,, +2731,ECE Chicago Find a School scrape.csv, Prussing,4650 N. Menard ,60630,5343460,,,,,,Portage Park,,,,,,,,,,,,,PFA-REG,,,,,,, +2732,ECE Chicago Find a School scrape.csv, Pulaski,2230 W. Mclean ,60647,5344391,,,,,,Logan Square,,,,,,,,,,,,,PFA-REG,,,,,,, +2733,ECE Chicago Find a School scrape.csv, Pullman,11311 S. Forrestville ,60628,5355395,,,,,,Pullman,,,,,,,,,,,,,PFA-REG,,,,,,, +2734,ECE Chicago Find a School scrape.csv, Randolph,7316 S. Hoyne ,60636,5359015,,,,,,West Englewood,,,,,,,,,,,,,PFA-REG,,,,,,, +2735,ECE Chicago Find a School scrape.csv, Ravenswood,4332 N. Paulina St. ,60613,5345525,,,,,,Lake View,,,,,,,,,,,,,PFA-REG,,,,,,, +2736,ECE Chicago Find a School scrape.csv, Ravenswood,4332 N. Paulina St. ,60613,5345525,,,,,,Lake View,,,,,,,,,,,,,PFA-REG,,,,,,, +2737,ECE Chicago Find a School scrape.csv, Ravenswood Community CCC,4908 N. Damen ,60625,2714495,,,,,,Lincoln Square,,,,,,,,,,,,,CP,,,,,,, +2738,ECE Chicago Find a School scrape.csv, Ray,5631 S Kimbark ,60637,5350970,,,,,,Hyde Park,,,,,,,,,,,,,TB,,,,,,, +2739,ECE Chicago Find a School scrape.csv, Ray,5631 S Kimbark ,60637,5350970,,,,,,Hyde Park,,,,,,,,,,,,,PFA-REG,,,,,,, +2740,ECE Chicago Find a School scrape.csv, Reavis (Blended),834 E. 50Th St. ,60615,5351060,,,,,,Kenwood,,,,,,,,,,,,,HS-HD,,,,,,, +2741,ECE Chicago Find a School scrape.csv, Reilly,3650 W. School ,60618,5345250,,,,,,Avondale,,,,,,,,,,,,,PFA-REG TB,,,,,,, +2742,ECE Chicago Find a School scrape.csv, Reinberg,3425 N. Major ,60634,5343465,,,,,,Portage Park,,,,,,,,,,,,,PFA-REG,,,,,,, +2743,ECE Chicago Find a School scrape.csv, Revere,1010 E. 72nd St. ,60619,5350618,,,,,,Greater Grand Crossing,,,,,,,,,,,,,HS-HD,,,,,,, +2744,ECE Chicago Find a School scrape.csv, Robinson,4225 S. Lake Park ,60653,5351777,,,,,,Oakland,,,,,,,,,,,,,HS-HD,,,,,,, +2745,ECE Chicago Find a School scrape.csv, Rogers,7345 N. Washtenaw ,60645,5342125,,,,,,West Ridge,,,,,,,,,,,,,PFA-REG TS,,,,,,, +2746,ECE Chicago Find a School scrape.csv, Rudolph,110 N Paulina ,60612,5347460,,,,,,Near West Side,,,,,,,,,,,,,PFA-FD,,,,,,, +2747,ECE Chicago Find a School scrape.csv, Ruggles,7831 S. Prairie ,60619,5353085,,,,,,Greater Grand Crossing,,,,,,,,,,,,,HS-HD,,,,,,, +2748,ECE Chicago Find a School scrape.csv, Ruiz,2410 S. Leavitt ,60608,5354825,,,,,,Lower West Side,,,,,,,,,,,,,PFA-REG,,,,,,, +2749,ECE Chicago Find a School scrape.csv, Ryder,8716 S. Wallace ,60620,5353843,,,,,,Auburn Gresham,,,,,,,,,,,,,HS-HD,,,,,,, +2750,ECE Chicago Find a School scrape.csv, Ryerson,646 N. Lawndale ,60624,5346700,,,,,,Humboldt Park,,,,,,,,,,,,,HS-HD,,,,,,, +2751,ECE Chicago Find a School scrape.csv, Salazar,160 W. Wendell ,60610,5348310,,,,,,Near North Side,,,,,,,,,,,,,PFA-FD,,,,,,, +2752,ECE Chicago Find a School scrape.csv, Salvation Army Columbus Park,500 S. Central ,60644,9214162,,,,,,Austin,,,,,,,,,,,,,CP,,,,,,, +2753,ECE Chicago Find a School scrape.csv, Salvation Army La Villita,3621 W. 24th St. ,60623,7332355,,,,,,South Lawndale,,,,,,,,,,,,,CP,,,,,,, +2754,ECE Chicago Find a School scrape.csv, Salvation Army Lawn,5900 S. Spaulding ,60629,7332533,,,,,,Chicago Lawn,,,,,,,,,,,,,CP,,,,,,, +2755,ECE Chicago Find a School scrape.csv, Salvation Army New Hope,4255 W. Division ,60651,7724908,,,,,,Humboldt Park,,,,,,,,,,,,,CP,,,,,,, +2756,ECE Chicago Find a School scrape.csv, Salvation Army Red Shield,69th and Sangamon ,60621,7332533,,,,,,West Englewood,,,,,,,,,,,,,CP,,,,,,, +2757,ECE Chicago Find a School scrape.csv, Salvation Army Shiloah,9211 S. Justine ,60620,8814142,,,,,,Washington Heights,,,,,,,,,,,,,CP,,,,,,, +2758,ECE Chicago Find a School scrape.csv, Salvation Army Temple,1 N. Ogden ,60607,2262649,,,,,,Near West Side,,,,,,,,,,,,,CP,,,,,,, +2759,ECE Chicago Find a School scrape.csv, Sandoval,5534 S. St Louis ,60629,5350457,,,,,,Gage Park,,,,,,,,,,,,,HS-HD,,,,,,, +2760,ECE Chicago Find a School scrape.csv, Saucedo,2850 W. 24Th Blvd ,60623,5341770,,,,,,South Lawndale,,,,,,,,,,,,,HS-HD,,,,,,, +2761,ECE Chicago Find a School scrape.csv, Sayre Lang Acad,1850 N. Newland ,60635,5343351,,,,,,Austin,,,,,,,,,,,,,PFA-REG,,,,,,, +2762,ECE Chicago Find a School scrape.csv, Scammon,4201 W. Henderson ,60641,5343475,,,,,,Irving Park,,,,,,,,,,,,,PFA-REG,,,,,,, +2763,ECE Chicago Find a School scrape.csv, Schmid,9755 S. Greenwood ,60628,5356235,,,,,,Pullman,,,,,,,,,,,,,PFA-REG,,,,,,, +2764,ECE Chicago Find a School scrape.csv, Schubert,2727 N. Long ,60639,5343080,,,,,,Belmont Cragin,,,,,,,,,,,,,PFA-REG TS,,,,,,, +2765,ECE Chicago Find a School scrape.csv, Seward,4600 S. Hermitage ,60609,5354890,,,,,,New City,,,,,,,,,,,,,HS-HD,,,,,,, +2766,ECE Chicago Find a School scrape.csv," Sexton, A .O.",6020 S. Langley ,60637,5350640,,,,,,Woodlawn,,,,,,,,,,,,,HS-HD,,,,,,, +2767,ECE Chicago Find a School scrape.csv, Sherman,1000 W. 52nd St. ,60609,5351757,,,,,,New City,,,,,,,,,,,,,PFA-REG,,,,,,, +2768,ECE Chicago Find a School scrape.csv, Sherwood (Blended),245 W. 57Th St. ,60621,5350829,,,,,,Englewood,,,,,,,,,,,,,HS-HD,,,,,,, +2769,ECE Chicago Find a School scrape.csv, Shields,4250 S. Rockwell ,60632,5357285,,,,,,Brighton Park,,,,,,,,,,,,,HS-HD,,,,,,, +2770,ECE Chicago Find a School scrape.csv, Shoop,1460 W. 112Th St. ,60643,5352715,,,,,,Morgan Park,,,,,,,,,,,,,PFA-REG,,,,,,, +2771,ECE Chicago Find a School scrape.csv, Skinner,111 S. Throop ,60607,5347790,,,,,,Near West Side,,,,,,,,,,,,,TB,,,,,,, +2772,ECE Chicago Find a School scrape.csv, Small Stride Academy,10317 S. Western ,60643,2390040,,,,,,Beverly,,,,,,,,,,,,,CP,,,,,,, +2773,ECE Chicago Find a School scrape.csv, Smith,744 E. 103rd St. ,60628,5355689,,,,,,Pullman,,,,,,,,,,,,,PFA-REG,,,,,,, +2774,ECE Chicago Find a School scrape.csv, Smyser,4310 N. Melvina ,60634,5343711,,,,,,Portage Park,,,,,,,,,,,,,PFA-REG TS,,,,,,, +2775,ECE Chicago Find a School scrape.csv, Solomon,6206 N. Hamlin ,60659,5345226,,,,,,North Park,,,,,,,,,,,,,PFA-REG,,,,,,, +2776,ECE Chicago Find a School scrape.csv, Songhai,11725 S. Perry ,60628,5355547,,,,,,West Pullman,,,,,,,,,,,,,HS-HD,,,,,,, +2777,ECE Chicago Find a School scrape.csv, South Central Holistic Pre-K,8316 S. Ellis ,60619,4830900,,,,,,Chatham,,,,,,,,,,,,,CP,,,,,,, +2778,ECE Chicago Find a School scrape.csv, South East Asia Ainslie,1134 W. Ainslie St ,60640,9896927,,,,,,Uptown,,,,,,,,,,,,,CP,,,,,,, +2779,ECE Chicago Find a School scrape.csv, South East Asia Com Broadway,5120 N. Broadway ,60640,9890960,,,,,,Uptown,,,,,,,,,,,,,CP,,,,,,, +2780,ECE Chicago Find a School scrape.csv, South Harper 0-3,8358 S. Stony Island ,60617,7340303,,,,,,Avalon Park,,,,,,,,,,,,,CP,,,,,,, +2781,ECE Chicago Find a School scrape.csv, South Harper Montessori Sch,8358 S. Stony Island ,60617,7340303,,,,,,Avalon Park,,,,,,,,,,,,,CP,,,,,,, +2782,ECE Chicago Find a School scrape.csv, South Loop,1915 S. Federal ,60605,5349066,,,,,,Near South Side,,,,,,,,,,,,,TB,,,,,,, +2783,ECE Chicago Find a School scrape.csv, South Shore Academy,1415 E. 70Th St. ,60637,5348690,,,,,,South Shore,,,,,,,,,,,,,PFA-REG,,,,,,, +2784,ECE Chicago Find a School scrape.csv, Spencer,214 N. Lavergne ,60644,5346150,,,,,,Austin,,,,,,,,,,,,,HS-HD,,,,,,, +2785,ECE Chicago Find a School scrape.csv, Spry,2400 S. Marshall Bl ,60623,5341700,,,,,,South Lawndale,,,,,,,,,,,,,PFA-REG,,,,,,, +2786,ECE Chicago Find a School scrape.csv, St Augustine - Flamboyan,3401 W. McLean Ave. ,60647,2763423,,,,,,Logan Square,,,,,,,,,,,,,CP,,,,,,, +2787,ECE Chicago Find a School scrape.csv, St Augustine - Nayarit HS,2610 W. 25th Pl. ,60608,8783653,,,,,,South Lawndale,,,,,,,,,,,,,CP,,,,,,, +2788,ECE Chicago Find a School scrape.csv, St Augustine College - Canillatas,1333-45 W. Argyle ,60640,8783231,,,,,,Uptown,,,,,,,,,,,,,CP,,,,,,, +2789,ECE Chicago Find a School scrape.csv, St Vincent Depaul,2145 N. Halsted ,60614,9436776,,,,,,Lincoln Park,,,,,,,,,,,,,CP,,,,,,, +2790,ECE Chicago Find a School scrape.csv, St Vincent Depaul I/T,2145 N. Halsted ,60614,9436776,,,,,,Lincoln Park,,,,,,,,,,,,,CP,,,,,,, +2791,ECE Chicago Find a School scrape.csv, St. Paul-Chaney Ford Child Care,4526 S. Wabash ,60653,2858721,,,,,,Grand Boulevard,,,,,,,,,,,,,CP,,,,,,, +2792,ECE Chicago Find a School scrape.csv, Stagg,7424 S. Morgan ,60621,5353565,,,,,,Englewood,,,,,,,,,,,,,HS-HD,,,,,,, +2793,ECE Chicago Find a School scrape.csv, Stevenson,8010 S. Kostner ,60652,5352280,,,,,,Ashburn,,,,,,,,,,,,,PFA-REG,,,,,,, +2794,ECE Chicago Find a School scrape.csv, Stewart,4525 N. Kenmore ,60640,5342640,,,,,,Uptown,,,,,,,,,,,,,HS-HD,,,,,,, +2795,ECE Chicago Find a School scrape.csv, Stock,7507 W. Birchwood ,60631,5341215,,,,,,Edison Park,,,,,,,,,,,,,PFA-REG TS,,,,,,, +2796,ECE Chicago Find a School scrape.csv, Stockton CPC Br.,4425 N. Magnolia Ave ,60640,5342510,,,,,,Uptown,,,,,,,,,,,,,HS-HD,,,,,,, +2797,ECE Chicago Find a School scrape.csv, Stowe (Blended),3444 W. Wabansia ,60647,5344175,,,,,,Humboldt Park,,,,,,,,,,,,,HS-HD,,,,,,, +2798,ECE Chicago Find a School scrape.csv, Sullivan,8255 S. Houston ,60617,5356585,,,,,,South Chicago,,,,,,,,,,,,,PFA-REG,,,,,,, +2799,ECE Chicago Find a School scrape.csv, Sumner,4320 W. Fifth Ave ,60624,5346730,,,,,,West Garfield Park,,,,,,,,,,,,,PFA-REG,,,,,,, +2800,ECE Chicago Find a School scrape.csv, Swift,5900 N. Winthrop ,60660,5342695,,,,,,Edgewater,,,,,,,,,,,,,PFA-REG,,,,,,, +2801,ECE Chicago Find a School scrape.csv, Talcott,1840 W. Ohio ,60622,5347130,,,,,,West Town,,,,,,,,,,,,,PFA-REG,,,,,,, +2802,ECE Chicago Find a School scrape.csv, Talman,5450 S. Talman ,60632,5357850,,,,,,Gage Park,,,,,,,,,,,,,PFA-REG,,,,,,, +2803,ECE Chicago Find a School scrape.csv, Tanner (Blended),7350 S. Evans ,60619,5353870,,,,,,Greater Grand Crossing,,,,,,,,,,,,,HS-HD,,,,,,, +2804,ECE Chicago Find a School scrape.csv, Taylor,9912 S. Avenue H ,60617,5356240,,,,,,East Side,,,,,,,,,,,,,PFA-REG,,,,,,, +2805,ECE Chicago Find a School scrape.csv, Teddy Bear 1,2649 W. 51st St ,60632,4760700,,,,,,Gage Park,,,,,,,,,,,,,CP,,,,,,, +2806,ECE Chicago Find a School scrape.csv, Teddy Bear 2,3800 W. 84th Street ,60652,2842141,,,,,,Ashburn,,,,,,,,,,,,,CP,,,,,,, +2807,ECE Chicago Find a School scrape.csv, Teddy Bear 3,6401 S. Pulaski ,60629,2842292,,,,,,West Lawn,,,,,,,,,,,,,CP,,,,,,, +2808,ECE Chicago Find a School scrape.csv, Teddy Bear 5,5160 S. Pulaski ,60632,2847030,,,,,,West Elsdon,,,,,,,,,,,,,CP,,,,,,, +2809,ECE Chicago Find a School scrape.csv, Teddy Bear VI,150 S. Wacker ,60606,6412327,,,,,,Loop,,,,,,,,,,,,,CP,,,,,,, +2810,ECE Chicago Find a School scrape.csv, Terry Town Nursery School,817 N. Hamlin ,60651,4894271,,,,,,Humboldt Park,,,,,,,,,,,,,CP,,,,,,, +2811,ECE Chicago Find a School scrape.csv," Thorp, J.N.",8914 S. Buffalo ,60617,5356250,,,,,,South Chicago,,,,,,,,,,,,,HS-HD,,,,,,, +2812,ECE Chicago Find a School scrape.csv, Thresholds Mothers' Project,1110 W. Belmont ,60657,4720328,,,,,,Lake View,,,,,,,,,,,,,CP,,,,,,, +2813,ECE Chicago Find a School scrape.csv, Thresholds Mothers' Project I/T,1110 W. Belmont ,60657,4720328,,,,,,Lake View,,,,,,,,,,,,,CP,,,,,,, +2814,ECE Chicago Find a School scrape.csv, Tilton,223 N. Keeler Av. ,60624,5346746,,,,,,West Garfield Park,,,,,,,,,,,,,PFA-REG,,,,,,, +2815,ECE Chicago Find a School scrape.csv, Tiny Tot Villa,8121 S. King Drive ,60619,4836521,,,,,,Chatham,,,,,,,,,,,,,CP,,,,,,, +2816,ECE Chicago Find a School scrape.csv, Trinity UCC - Denton Brooks,6921 S. Stony Island ,60649,9552818,,,,,,South Shore,,,,,,,,,,,,,CP,,,,,,, +2817,ECE Chicago Find a School scrape.csv, Trumbull,5200 N. Ashland ,60640,5342430,,,,,,Edgewater,,,,,,,,,,,,,PFA-REG,,,,,,, +2818,ECE Chicago Find a School scrape.csv, Twain,5134 S. Lotus Ave ,60638,5352290,,,,,,Garfield Ridge,,,,,,,,,,,,,PFA-REG,,,,,,, +2819,ECE Chicago Find a School scrape.csv, UIC Children's Cent I East,728 W. Roosevelt Rd ,60607,4135331,,,,,,Near West Side,,,,,,,,,,,,,CP,,,,,,, +2820,ECE Chicago Find a School scrape.csv, UIC Children's Cent II West,1919 W. Taylor ,60612,4135326,,,,,,Near West Side,,,,,,,,,,,,,CP,,,,,,, +2821,ECE Chicago Find a School scrape.csv," Vick, Barbara Ctr.",2554 W. 113Th St ,60655,5352671,,,,,,Morgan Park,,,,,,,,,,,,,PFA-REG TS,,,,,,, +2822,ECE Chicago Find a School scrape.csv, Volta,4950 N. Avers ,60625,5345080,,,,,,Albany Park,,,,,,,,,,,,,PFA-REG,,,,,,, +2823,ECE Chicago Find a School scrape.csv, Von Humboldt CPC,1345 N. Rockwell ,60622,5344668,,,,,,West Town,,,,,,,,,,,,,CPC-FD,,,,,,, +2824,ECE Chicago Find a School scrape.csv, Wadsworth,6420 S. University ,60637,5350730,,,,,,Woodlawn,,,,,,,,,,,,,PFA-REG PFA-FD,,,,,,, +2825,ECE Chicago Find a School scrape.csv, Walsh,2015 S. Peoria ,60608,5347950,,,,,,Lower West Side,,,,,,,,,,,,,PFA-REG,,,,,,, +2826,ECE Chicago Find a School scrape.csv, Ward,2701 S. Shields ,60616,5349050,,,,,,Armour Square,,,,,,,,,,,,,PFA-REG,,,,,,, +2827,ECE Chicago Find a School scrape.csv," Ward, Laura",410 N. Monticello ,60624,5346440,,,,,,Humboldt Park,,,,,,,,,,,,,HS-HD,,,,,,, +2828,ECE Chicago Find a School scrape.csv, Warren,9239 S. Jeffery ,60617,5356625,,,,,,Calumet Heights,,,,,,,,,,,,,PFA-REG,,,,,,, +2829,ECE Chicago Find a School scrape.csv, Washington G.,3611 E. 114Th St. ,60617,5355010,,,,,,East Side,,,,,,,,,,,,,PFA-REG,,,,,,, +2830,ECE Chicago Find a School scrape.csv," Washington, H.",9130 S. University ,60617,5356225,,,,,,Burnside,,,,,,,,,,,,,PFA-REG,,,,,,, +2831,ECE Chicago Find a School scrape.csv, Waters,4540 N. Campbell ,60625,5345090,,,,,,Lincoln Square,,,,,,,,,,,,,PFA-REG,,,,,,, +2832,ECE Chicago Find a School scrape.csv, Waters,4540 N. Campbell ,60625,5345090,,,,,,Lincoln Square,,,,,,,,,,,,,TB,,,,,,, +2833,ECE Chicago Find a School scrape.csv, Wentworth,6950 S. Sangamon ,60621,5353394,,,,,,Englewood,,,,,,,,,,,,,PFA-REG,,,,,,, +2834,ECE Chicago Find a School scrape.csv, West Park Acad,1425 N. Tripp ,60651,5344940,,,,,,Humboldt Park,,,,,,,,,,,,,PFA-REG,,,,,,, +2835,ECE Chicago Find a School scrape.csv, West Pullman,11941 S. Parnell Ave ,60628,5355500,,,,,,West Pullman,,,,,,,,,,,,,PFA-REG,,,,,,, +2836,ECE Chicago Find a School scrape.csv, Westcott,409 W. 80Th St. ,60620,5353394,,,,,,Chatham,,,,,,,,,,,,,PFA-REG,,,,,,, +2837,ECE Chicago Find a School scrape.csv, Wheatley CPC,902 E. 133rd Pl ,60627,5355718,,,,,,Riverdale,,,,,,,,,,,,,CPC-FD,,,,,,, +2838,ECE Chicago Find a School scrape.csv, Whistler,11533 S. Ada ,60643,5355560,,,,,,West Pullman,,,,,,,,,,,,,PFA-REG,,,,,,, +2839,ECE Chicago Find a School scrape.csv, Whitney,2815 S. Komensky ,60623,5341560,,,,,,South Lawndale,,,,,,,,,,,,,PFA-REG,,,,,,, +2840,ECE Chicago Find a School scrape.csv, Whittier,1900 W. 23rd St. ,60608,5354590,,,,,,Lower West Side,,,,,,,,,,,,,HS-HD,,,,,,, +2841,ECE Chicago Find a School scrape.csv, Williams,2710 S.Dearborn ,60616,5349226,,,,,,Douglas,,,,,,,,,,,,,HS-HD,,,,,,, +2842,ECE Chicago Find a School scrape.csv, Woodlawn EC Development Ctr,950 E 61st St ,60637,6673300,,,,,,Woodlawn,,,,,,,,,,,,,CP,,,,,,, +2843,ECE Chicago Find a School scrape.csv, Woodlawn EC Development Ctr I/T,950 E 61st St ,60637,6673300,,,,,,Woodlawn,,,,,,,,,,,,,CP,,,,,,, +2844,ECE Chicago Find a School scrape.csv, Woodlawn T.W.O. Infant Toddler,1445 E. 65th St. ,60637,4931311,,,,,,Woodlawn,,,,,,,,,,,,,CP,,,,,,, +2845,ECE Chicago Find a School scrape.csv, Woods,6206 S. Racine ,60636,5359250,,,,,,West Englewood,,,,,,,,,,,,,PFA-REG,,,,,,, +2846,ECE Chicago Find a School scrape.csv, Woodson South,4511 S. Evans Ave ,60653,5351280,,,,,,Grand Boulevard,,,,,,,,,,,,,HS-FD,,,,,,, +2847,ECE Chicago Find a School scrape.csv, Yates,1839 N. Richmond ,60647,5344550,,,,,,Logan Square,,,,,,,,,,,,,HS-HD,,,,,,, +2848,ECE Chicago Find a School scrape.csv, YMCA Austin,501 N. Central ,60644,2879120,,,,,,Austin,,,,,,,,,,,,,CP,,,,,,, +2849,ECE Chicago Find a School scrape.csv, YMCA Duncan,1001 W. Roosevelt Rd ,60608,7385443,,,,,,Near West Side,,,,,,,,,,,,,CP,,,,,,, +2850,ECE Chicago Find a School scrape.csv, YMCA Garfield,7 N. Homan Av. ,60624,2653900,,,,,,East Garfield Park,,,,,,,,,,,,,CP,,,,,,, +2851,ECE Chicago Find a School scrape.csv, YMCA Garfield I/T,7 N. Homan Av. ,60624,2653900,,,,,,East Garfield Park,,,,,,,,,,,,,CP,,,,,,, +2852,ECE Chicago Find a School scrape.csv, YMCA High Ridge,2424 W Touhy ,60645,2716120,,,,,,West Ridge,,,,,,,,,,,,,CP,,,,,,, +2853,ECE Chicago Find a School scrape.csv, YMCA Marshall HS Infant/Toddler,3520 W. Adams ,60647,2650145,,,,,,East Garfield Park,,,,,,,,,,,,,CP,,,,,,, +2854,ECE Chicago Find a School scrape.csv, YMCA McCormick Tribune,1834 N. Lawndale ,60647,2352525,,,,,,West Town,,,,,,,,,,,,,CP,,,,,,, +2855,ECE Chicago Find a School scrape.csv, YMCA New City,1515 N. Halsted ,60622,4407272,,,,,,Near North,,,,,,,,,,,,,CP,,,,,,, +2856,ECE Chicago Find a School scrape.csv, YMCA North Lawndale,3449 W. Arthington ,60624,6380773,,,,,,North Lawndale,,,,,,,,,,,,,CP,,,,,,, +2857,ECE Chicago Find a School scrape.csv, YMCA North Lawndale 0-3,3449 W. Arthington ,60624,6380773,,,,,,North Lawndale,,,,,,,,,,,,,CP,,,,,,, +2858,ECE Chicago Find a School scrape.csv, YMCA South Chicago,3039 E. 91st St. ,60617,7219100,,,,,,South Chicago,,,,,,,,,,,,,CP,,,,,,, +2859,ECE Chicago Find a School scrape.csv, YMCA South Side,6330 S Stony Island ,60637,9470700,,,,,,Woodlawn,,,,,,,,,,,,,CP,,,,,,, +2860,ECE Chicago Find a School scrape.csv, Young,1434 N. Parkside ,60651,5346200,,,,,,Austin,,,,,,,,,,,,,HS-HD,,,,,,, +2861,ECE Chicago Find a School scrape.csv, Young Scholars Develop Inst,3038 W. 59th St. ,60629,9181944,,,,,,Gage Park,,,,,,,,,,,,,CP,,,,,,, +2862,ECE Chicago Find a School scrape.csv, YWCA Coretta Scott King,436 E. 39th Street ,60653,5380212,,,,,,Douglas,,,,,,,,,,,,,CP,,,,,,, +2863,ECE Chicago Find a School scrape.csv, YWCA Harris,6200 S. Drexel ,60637,6670014,,,,,,Woodlawn,,,,,,,,,,,,,CP,,,,,,, +2864,ECE Chicago Find a School scrape.csv, YWCA Northside,5244 N. Lakewood ,60640,2716120,,,,,,Edgewater,,,,,,,,,,,,,CP,,,,,,, +2865,ECE Chicago Find a School scrape.csv, Zapata,2728 S. Kostner ,60623,5341390,,,,,,South Lawndale,,,,,,,,,,,,,HS-HD,,,,,,, +2866,NAEYC_accreditation.csv, ABC & Me DayCare Center,1100 West Lawrence Ave ,60640,5614488,,,,,,,,,,,,,,,,,,,,,,12/31/13,461353,abcandmedaycare@sbcglobal.net,, +2867,NAEYC_accreditation.csv," Academy of Saint Benedict the African, Laflin Campus",6020 South Laflin ,60636,7763316,,,,,,,,,,,,,,,,,,http://www.academystbenedict.org,,,,08/01/16,307193,pmurphy@archchicago.org,, +2868,NAEYC_accreditation.csv, Albany Park Community Center,3401 West Ainslie ,60625,5395907,,,,,,,,,,,,,,,,,,http://www.apcc-chgo.org,,,,09/30/12,415663,wthompson@apcc-chgo.org,, +2869,NAEYC_accreditation.csv, Albany Park Community Center - Lincoln Square,4754 N. Leavitt Street ,60625,2713851,,,,,,,,,,,,,,,,,,http://www.apcc-chgo.org,,,,01/31/13,486800,rsajous@apcc-chgo.org,, +2870,NAEYC_accreditation.csv, Albany Park Community Center - Uptown,1020 West Bryn Mawr 211 ,60660,7693197,,,,,,,,,,,,,,,,,,http://www.apcc.org,,,,01/31/13,486804,mabarca@apcc-chgo.org,, +2871,NAEYC_accreditation.csv, Albany Park Head Start,5101 N. Kimball ,60625,5095657,,,,,,,,,,,,,,,,,,http://www.apcc-chgo.org,,,,12/31/12,486881,,, +2872,NAEYC_accreditation.csv," All Aboard... Learning Express, Inc.",4008 W. Rosemont ,60646,2020554,,,,,,,,,,,,,,,,,,,,,,07/01/15,595216,allaboardlearningexpress@yahoo.com,, +2873,NAEYC_accreditation.csv, Alphonsus Academy & Center for the Arts,1439 West Wellington ,60657,3484629,,,,,,,,,,,,,,,,,,http://www.alphonsusacademy.org,,,,01/31/13,338338,mstanton@alphonsusacademy.org,, +2874,NAEYC_accreditation.csv, Belmont Cragin Early Childhood Center,6041 W. Diversey Avenue ,60639,5343318,,,,,,,,,,,,,,,,,,,,,,08/01/16,723729,mmoya-leanga@cps.edu,, +2875,NAEYC_accreditation.csv, Bridgeport Child Development Center,3053 South Normal Avenue ,60616,8425566,,,,,,,,,,,,,,,,,,http://www.onehopeunited.org,,,,09/01/15,191594,twarner@onehopeunited.org,, +2876,NAEYC_accreditation.csv, Bridgeport Child Development Center II,514 W. 31st Street ,60616,9494015,,,,,,,,,,,,,,,,,,http://www.onehopeunited.org,,,,10/01/15,725011,bdavis@onehopeunited.org,, +2877,NAEYC_accreditation.csv, Bright Horizons at River East,325 East Grand Avenue ,60611,9265437,,,,,,,,,,,,,,,,,,http://centers.brighthorizons.com/northwestern,,,,08/31/13,339670,kshackel@nmh.org,, +2878,NAEYC_accreditation.csv, Brite New Mind Daycare Center Inc,112 East 51 Street ,60615,9243090,,,,,,,,,,,,,,,,,,,,,,11/01/15,725776,corrsholdings77@yahoo.com,, +2879,NAEYC_accreditation.csv, Bunnyland Developmental Day Care Center,545 West 119th Street ,60628,5685200,,,,,,,,,,,,,,,,,,,,,,09/01/15,723622,bunnylanddevelopmentme@sbcglobal.net,, +2880,NAEYC_accreditation.csv, C.Y.C. Roseland Head Start,461 East 111th Street ,60628,4684405,,,,,,,,,,,,,,,,,,http://chicagoyouthcenters.org,,,,11/01/16,274894,leola.clay@chicagoyouthcenters.org,, +2881,NAEYC_accreditation.csv, Carole Robertson Center For Learning,2929 West 19th Street ,60623,5211600,,,,,,,,,,,,,,,,,,http://www.crcl.net,,,,09/01/15,486936,walkerr@crcl.net,, +2882,NAEYC_accreditation.csv, Carole Robertson Center for Learning,3701 W. Ogden Ave ,60623,5228400,,,,,,,,,,,,,,,,,,http://www.crcl.net,,,,05/31/14,723127,youngt@crcl.net,, +2883,NAEYC_accreditation.csv, Carole Robertson Center for Learning,2020 W. Roosevelt ,60608,5228400,,,,,,,,,,,,,,,,,,http://www.crcl.net,,,,05/31/14,723127,youngt@crcl.net,, +2884,NAEYC_accreditation.csv, Centers for New Horizons / Ida B. Wells @ Dawson,3901 South State Steet 1st Floor ,60609,5362187,,,,,,,,,,,,,,,,,,http://www.cnh.org,,,,01/31/15,564193,ibwelc@cnh.org,, +2885,NAEYC_accreditation.csv, Chesterfield Tom Thumb Day Care Center & Kindergarten,9208-9214 South Cottage Grove ,60619,8743985,,,,,,,,,,,,,,,,,,,,,,09/30/13,564164,brittsavage@sbcglobal.net,, +2886,NAEYC_accreditation.csv, Chicago Child Care Society-child and Family Dev Center,5467 South University ,60615,6430452,,,,,,,,,,,,,,,,,,http://www.cccsociety.org,,,,02/01/16,280649,pflowers@cccsociety.org,, +2887,NAEYC_accreditation.csv, Chicago Commons Guadalupano Family Center,1814 South Paulina ,60608,6663884,,,,,,,,,,,,,,,,,,http://www.chicagocommons.org,,,,09/30/14,405263,arroyoe@chicagocommons.org,, +2888,NAEYC_accreditation.csv, Chicago Commons Nia Family Center,744 North Monticello Ave. 1st Floor ,60624,7220115,,,,,,,,,,,,,,,,,,http://www.chicagocommons.org,,,,09/30/14,407656,barbere@chicagocommons.org,, +2889,NAEYC_accreditation.csv, Chicago Commons Taylor Center for New Experiences,1633 North Hamlin Avenue ,60647,2278551,,,,,,,,,,,,,,,,,,http://chicagocommons.org,,,,08/31/14,283654,powellv@chicagocommons.org,, +2890,NAEYC_accreditation.csv, Chicago Lawn,3001 West 59th Street 1st Floor ,60629,9251085,,,,,,,,,,,,,,,,,,,,,,01/31/13,486645,vcarrill@catholiccharities.net,, +2891,NAEYC_accreditation.csv, Chicago Youth Centers / Rebecca K. Crown,7601 S. Phillips Avenue ,60649,7310444,,,,,,,,,,,,,,,,,,http://www.chicagoyouthcenters.org,,,,11/01/16,508236,annette.anthony@chicagoyouthcenters.org,, +2892,NAEYC_accreditation.csv," Children First, Inc. Chicago East Loop",225 North Michigan Avenue Suite E08-100 ,60601,6166690,,,,,,,,,,,,,,,,,,http://backupcenters.brighthorizons.com/eastloop/,,,,08/31/12,470195,chicagoeastloop@brighthorizons.com,, +2893,NAEYC_accreditation.csv, Children's Home & Aid-Englewood Child & Family Center,1701 West 63rd Street ,60636,4766998,,,,,,,,,,,,,,,,,,http://www.childrenshomeandaid.org,,,,08/31/13,293097,nmoore@childrenshomeandaid.org,, +2894,NAEYC_accreditation.csv, Chinese American Service League ,2141 South Tan Court 1st Floor ,60616,7910454,,,,,,,,,,,,,,,,,,,,,,08/31/14,209110,brenda_arksey@caslservice.org,, +2895,NAEYC_accreditation.csv, Christopher House Greenview,2507 North Greenview ,60614,4721083,,,,,,,,,,,,,,,,,,http://www.christopherhouse.org,,,,04/30/14,129456,awashington@christopherhouse.org,, +2896,NAEYC_accreditation.csv, Christopher House Logan Square ,3255 W. Altgeld Street ,60647,2354073,,,,,,,,,,,,,,,,,,http://www.christopherhouse.org,,,,05/31/15,289774,cvelez@christopherhouse.org,, +2897,NAEYC_accreditation.csv, Christopher House Uptown,4701 North Winthrop Avenue ,60640,7694540,,,,,,,,,,,,,,,,,,http://www.christopherhouse.org,,,,08/31/12,293293,kross@christopherhouse.org,, +2898,NAEYC_accreditation.csv, Christopher House-Rogers Park,7059 North Greenview Avenue ,60626,2745477,,,,,,,,,,,,,,,,,,http://www.christopherhouse.org,,,,08/31/13,437986,adanner@christopherhouse.org,, +2899,NAEYC_accreditation.csv," Community Learning Center, Inc.",10612-20 South Wentworth ,60628,9284104,,,,,,,,,,,,,,,,,,,,,,04/01/16,587966,wereason@aol.com,, +2900,NAEYC_accreditation.csv, Concordia Place,3855 North Seeley Avenue ,60618,9353739,,,,,,,,,,,,,,,,,,http://www.concordiaplace.org,,,,04/30/14,292544,aroberts@concordiaplace.org,, +2901,NAEYC_accreditation.csv, Concordia Place,3300 N. Whipple Street ,60618,4631600,,,,,,,,,,,,,,,,,,http://www.concordiaplace.com,,,,11/30/14,724782,avondale@concordiaplace.org,, +2902,NAEYC_accreditation.csv, Cordi Marian Center,1100 South May ,60607,6663787,,,,,,,,,,,,,,,,,,,,,,02/01/16,486708,mahayden@catholiccharities.net,, +2903,NAEYC_accreditation.csv, Corporate Childcare Consultants ,219 South Dearborn Second Floor ,60604,3533796,,,,,,,,,,,,,,,,,,,,,,01/31/13,291362,ccclearningcenter78@comcast.net,, +2904,NAEYC_accreditation.csv, Corporate Childcare Consultants,78 West Van Buren Floor 1 ,60605,8860834,,,,,,,,,,,,,,,,,,,,,,07/01/17,291368,ccclearningcenter78@comcast.net,, +2905,NAEYC_accreditation.csv," Corporate Childcare Consultants, Inc",610 South Canal Street 170C ,60607,3538686,,,,,,,,,,,,,,,,,,,,,,12/01/15,275978,ccclearning@sbcglobal.net,, +2906,NAEYC_accreditation.csv, Dorothy Sutton Branch Head Start & Day Care,8601 South State Street ,60619,7234445,,,,,,,,,,,,,,,,,,,,,,04/30/14,557917,dorthysbr@aol.com,, +2907,NAEYC_accreditation.csv, Early Childhood Services at Bernard Horwich JCC,3003 West Touhy Avenue ,60645,5165881,,,,,,,,,,,,,,,,,,http://www.gojcc.org,,,,05/31/15,595153,maberman@gojcc.org,, +2908,NAEYC_accreditation.csv, Easter Seals Gilchrist Marchman ,1001 West Roosevelt Rd. ,60608,4927402,,,,,,,,,,,,,,,,,,http://www.eastersealschicago.org,,,,01/31/13,508147,mcancel@eastersealschicago.org,, +2909,NAEYC_accreditation.csv, Easter Seals Metropolitan Chicago Windy City Kids,600 West Madison Street ,60661,5756550,,,,,,,,,,,,,,,,,,http://www.eastersealschicago.org,,,,04/30/13,546222,rarmstrong@eastersealschicago.org,, +2910,NAEYC_accreditation.csv, Easter Seals Near South Side Child Development Center,2214 South Federal Street ,60616,5483614,,,,,,,,,,,,,,,,,,http://www.eastersealschicago.org,,,,10/01/16,723005,crokusek@eastersealschicago.org,, +2911,NAEYC_accreditation.csv, El Hogar del Nino,1710 South Loomis Street ,60608,7335584,,,,,,,,,,,,,,,,,,http://www.elhogardelnino.org,,,,05/01/16,274925,elhogardelnino@gmail.com,, +2912,NAEYC_accreditation.csv, Erie Neighborhood House,1701 West Superior ,60622,5635800,,,,,,,,,,,,,,,,,,http://www.eriehouse.org,,,,05/31/13,293383,lfalk@eriehouse.org,, +2913,NAEYC_accreditation.csv, Eyes on the Future ,6969 N. Ravenswood Avenue Suite A ,60626,9730771,,,,,,,,,,,,,,,,,,http://www.eyesonthefuture.net,,,,01/31/13,486830,eotfuture@gmail.com,, +2914,NAEYC_accreditation.csv, Ezzard Charles School,7946 South Ashland Avenue ,60620,4870227,,,,,,,,,,,,,,,,,,,,,,08/31/13,486942,ezzardezzi@aol.com,, +2915,NAEYC_accreditation.csv, Ezzard Charles School,7949 South Ashland Avenue ,60620,4870227,,,,,,,,,,,,,,,,,,,,,,08/31/13,486942,ezzardezzi@aol.com,, +2916,NAEYC_accreditation.csv, Firman Community Services,37 West 47th Street ,60609,3733400,,,,,,,,,,,,,,,,,,http://www.firmancs.org,,,,04/30/15,399224,firmancs@compuserve.com,, +2917,NAEYC_accreditation.csv, Florence G. Heller Jewish Community Center (JCC),524 West Melrose ,60657,8716780,,,,,,,,,,,,,,,,,,http://www.gojcc.org,,,,09/30/13,281351,,, +2918,NAEYC_accreditation.csv, Frances Xavier Warde School ,120 South DesPlaines ,60661,4660700,,,,,,,,,,,,,,,,,,http://www.fxw.org,,,,02/01/16,276806,reilingm@fxw.org,, +2919,NAEYC_accreditation.csv, Gads Hill Center,2653 West Ogden Avenue ,60608,5211196,,,,,,,,,,,,,,,,,,http://www.gadshillcenter.org,,,,11/01/16,723718,bstokes@gadshillcenter.org,, +2920,NAEYC_accreditation.csv, Gan Shalom Early Childhood Center,3480 North Lake Shore Drive 3rd Floor ,60657,5254867,,,,,,,,,,,,,,,,,,http://www.sholomchicago.org,,,,07/01/15,446548,rimma@sholomchicago.org,, +2921,NAEYC_accreditation.csv, Garfield YMCA,7 North Homan Avenue ,60624,2653900,,,,,,,,,,,,,,,,,,,,,,10/01/15,508110,phernandez@ymcachicago.org,, +2922,NAEYC_accreditation.csv, Gina's Unbelievable Learning Center,7239 S. Dobson Avenue ,60619,3242010,,,,,,,,,,,,,,,,,,,,,,08/01/16,726339,thomag836@ameritech.net,, +2923,NAEYC_accreditation.csv, Grace Mission Daycare,5332 South Western Ave. ,60609,4761990,,,,,,,,,,,,,,,,,,,,,,09/30/12,486644,fjohnson@catholiccharities.net,, +2924,NAEYC_accreditation.csv, Happy Holiday Nursery & Kindergarten,401 East 111th Street ,60628,8217009,,,,,,,,,,,,,,,,,,,,,,01/31/14,508127,haphol401@aol.com,, +2925,NAEYC_accreditation.csv, Howard Area Family Center,7510 N. Ashland Avenue ,60626,7647610,,,,,,,,,,,,,,,,,,http://www.howardarea.org,,,,09/30/14,372557,skoliarakis@howardarea.org,, +2926,NAEYC_accreditation.csv, Immaculate Conception,1431 N. North Park Avenue ,60610,9440304,,,,,,,,,,,,,,,,,,,,,,05/31/15,601502,ksullivan@icsnorthpark.com,, +2927,NAEYC_accreditation.csv, Immaculate Conception,363 W. Hill ,60610,9440304,,,,,,,,,,,,,,,,,,,,,,05/31/15,601502,,, +2928,NAEYC_accreditation.csv, Immaculate Conception Early Childhood Program,7263 West Talcott Avenue ,60631,7750545,,,,,,,,,,,,,,,,,,http://www.iccowboys.net,,,,12/01/15,595619,felicione@iccowboys.net,, +2929,NAEYC_accreditation.csv," Itsy Bitsy People Palace ,Inc.",7419 South Cottage Grove Avenue ,60619,8467396,,,,,,,,,,,,,,,,,,http://info@itsybitsypeoplepalace.com,,,,04/30/13,486831,info@itsybitsypeoplepalace.com,, +2930,NAEYC_accreditation.csv," Itsy Bitsy People Palace ,Inc.",7411 South Cottage Grove Ave. Ground Floor ,60619,8467396,,,,,,,,,,,,,,,,,,,,,,04/30/13,486831,info@itsybitsypeoplepalace.com,, +2931,NAEYC_accreditation.csv, Jane Addams Hull House Association LeClaire Ryder Head Start,5120 West 44th Street ,60638,4048229,,,,,,,,,,,,,,,,,,,,,,07/31/13,486668,tturner@hullhouse.org,, +2932,NAEYC_accreditation.csv, Kennedy-King College Child Development Lab Center,710 W. 65th Street Building Z ,60621,6025481,,,,,,,,,,,,,,,,,,http//kennedyking.ccc.edu,,,,09/30/12,27012,gpasillas@ccc.edu,, +2933,NAEYC_accreditation.csv, Kidwatch Plus ,3901 North Ridgeway ,60618,5395431,,,,,,,,,,,,,,,,,,http://www.kidwatchplus.com,,,,09/30/12,486945,info@kidwatchplus.com,, +2934,NAEYC_accreditation.csv, Korean American Community Services ,4300 North California Ave. ,60618,5838281,,,,,,,,,,,,,,,,,,http://www.kacschicago.org,,,,04/30/14,585396,hchoi@kacschicago.org,, +2935,NAEYC_accreditation.csv, Lake Shore Schools,5611 N. Clark Street ,60660,5616707,,,,,,,,,,,,,,,,,,http://www.lakeshoreschoolschicago.com,,,,01/31/13,724391,info@lakeshoreschoolschicago.com,, +2936,NAEYC_accreditation.csv, Lincoln Park Cooperative Nursery School,1753 North Fern Court ,60614,9445469,,,,,,,,,,,,,,,,,,http://www.lincolnparkcoop.org,,,,07/31/14,299156,admin@lincolnparkcoop.org,, +2937,NAEYC_accreditation.csv, Lincoln Park Preparatory,108 West Germania Place ,60610,4829009,,,,,,,,,,,,,,,,,,http://lincolnparkprep.com,,,,11/01/15,726036,lppg@sbcglobal.net,, +2938,NAEYC_accreditation.csv, Lincoln Park Preschool,312 West Belden Avenue ,60614,6650110,,,,,,,,,,,,,,,,,,http://lincolnparkpreschool.com,,,,10/01/15,449174,lppoffice@sbcglobal.net,, +2939,NAEYC_accreditation.csv," Little Learners Preschool, Inc.",6255 South Mayfield ,60638,5815541,,,,,,,,,,,,,,,,,,,,,,09/01/16,725678,,, +2940,NAEYC_accreditation.csv, Logan Square YMCA First Lutheran Head Start,3500 West Fullerton ,60647,8625960,,,,,,,,,,,,,,,,,,http://www.ymcachicago.org,,,,04/30/15,546223,niramirez@ymcachicago.org,, +2941,NAEYC_accreditation.csv, Loop Learning Center,2001 South Michigan Avenue ,60616,2258828,,,,,,,,,,,,,,,,,,,,,,02/01/17,722736,,, +2942,NAEYC_accreditation.csv, Lutheran Day Nursery,1802 North Fairfield ,60647,4864222,,,,,,,,,,,,,,,,,,http://www.lutherandaynursery.org,,,,08/01/16,602295,Ldn1802@sbcglobal.net,, +2943,NAEYC_accreditation.csv, Lutheran Social Services Englewood Messiah Head Start,1910 West 64th Street ,60636,4365110,,,,,,,,,,,,,,,,,,,,,,12/31/13,557873,delphine.whittlesey@lssi.org,, +2944,NAEYC_accreditation.csv, Malcolm X College Child Development Lab Center,1900 West Van Buren Street 1608 ,60612,8507490,,,,,,,,,,,,,,,,,,http://www.ccc.edu/menu/pages/child-development-La,,,,09/30/12,277294,aruther@ccc.edu,, +2945,NAEYC_accreditation.csv, Marillac Social Center,212 South Francisco ,60612,7227440,,,,,,,,,,,,,,,,,,http://www.marillachouse.org,,,,04/30/14,466434,,, +2946,NAEYC_accreditation.csv, Mary Crane Center,2974 North Clybourn Avenue ,60618,9388131,,,,,,,,,,,,,,,,,,http://www.marycrane.org,,,,08/01/16,722999,info@marycrane.org,, +2947,NAEYC_accreditation.csv, Mary Meyer School,2817 North Pine Grove Avenue ,60657,5490870,,,,,,,,,,,,,,,,,,http://www.marymeyer.org,,,,06/30/13,383113,kevin@marymeyer.org,, +2948,NAEYC_accreditation.csv, McCormick Tribune YMCA Head Start Program,1834 N. Lawndale ,60647,2352525,,,,,,,,,,,,,,,,,,http://ymcachicago.org/mccormicktribune,,,,11/01/16,726298,mfranco@ymcachicago.org,, +2949,NAEYC_accreditation.csv, Metropolitan Family Services ,6422 South Kedzie ,60629,8842400,,,,,,,,,,,,,,,,,,http://www.metrofamily.org,,,,01/31/13,426821,freeman@metrofamily.org,, +2950,NAEYC_accreditation.csv, Metropolitan Family Services - North Children's Center,3255 North Central ,60634,3713770,,,,,,,,,,,,,,,,,,http://www.metrofamily.org,,,,05/01/16,725944,delgadod@metrofamily.org,, +2951,NAEYC_accreditation.csv, Metropolitan Family Services Midway Children's Center,3215 West 63rd Street ,60629,8842350,,,,,,,,,,,,,,,,,,http://www.metrofamily.org,,,,08/01/16,722978,valdiviG@metrofamily.org,, +2952,NAEYC_accreditation.csv, New Concept School,7825 South Ellis Avenue ,60619,6519599,,,,,,,,,,,,,,,,,,http//www.ipe.clc.org,,,,01/31/15,437984,dcgbon21@yahoo.com,, +2953,NAEYC_accreditation.csv, North Austin Head Start,1500 North Mason ,60651,2371930,,,,,,,,,,,,,,,,,,,,,,05/31/13,343090,,, +2954,NAEYC_accreditation.csv, North Avenue Day Nursery,2001 West Pierce ,60622,3424499,,,,,,,,,,,,,,,,,,http://nadsnkids.org,,,,04/30/15,274678,steven@nadnkids.org,, +2955,NAEYC_accreditation.csv, North Lawndale YMCA,3449 W. Arthington ,60624,6380773,,,,,,,,,,,,,,,,,,,,,,02/01/16,508141,tjthompson@ymcachicago.org,, +2956,NAEYC_accreditation.csv, Northeastern Illinois University Child Care Center,5500 North Saint Louis Avenue ,60625,4424540,,,,,,,,,,,,,,,,,,http://www.neiu.edu/neiuccc,,,,01/31/13,125305,E-Weber1@neiu.edu,, +2957,NAEYC_accreditation.csv, Northern Trust Child Development Center,801 South Canal Street C1S ,60607,5572540,,,,,,,,,,,,,,,,,,http://www.brighthorizons.com,,,,08/31/13,113649,JM123@ntrs.com,, +2958,NAEYC_accreditation.csv, Northwestern University Settlement Association,1400 West Augusta Blvd ,60642,2787471,,,,,,,,,,,,,,,,,,http://www.nush.org,,,,04/30/14,587968,,, +2959,NAEYC_accreditation.csv, Norwood Park Preschool for All,5900 North Nina Avenue ,60631,5341162,,,,,,,,,,,,,,,,,,http://www.norwoodparkschool.com,,,,07/01/16,489732,nmtokarz@cps.edu,, +2960,NAEYC_accreditation.csv, Olive-Harvey Child Development Laboratory Center,10001 South Woodlawn Avenue First Floor ,60628,2916317,,,,,,,,,,,,,,,,,,http://www.oliveharvey.ccc.edu,,,,11/30/14,278168,tcarter63@ccc.edu,, +2961,NAEYC_accreditation.csv, Onward Neighborhood House,5423 W. Diversey Ave. ,60639,6223215,,,,,,,,,,,,,,,,,,,,,,01/31/13,511442,mlarson@onwardhouse.org,, +2962,NAEYC_accreditation.csv, Onward Neighborhood House,600 North Leavitt Street ,60612,6666726,,,,,,,,,,,,,,,,,,http://www.onwardhouse.org,,,,01/31/13,511442,mlarson@onwardhouse.org,, +2963,NAEYC_accreditation.csv, Orr Infant and Family Development Center,730 North Pulaski Road ,60624,8261090,,,,,,,,,,,,,,,,,,http://www.hullhouse.org,,,,07/31/14,399578,reneeboyd@hullhouse.org,, +2964,NAEYC_accreditation.csv, Our Lady of Tepeyac ,2414 South Albany Avenue ,60623,2775888,,,,,,,,,,,,,,,,,,,,,,01/31/13,486949,pgutierr@catholiccharities.net,, +2965,NAEYC_accreditation.csv," Parent Cooperative for Early Learning, Inc.",5300 South Shore Drive STO ,60615,6846363,,,,,,,,,,,,,,,,,,http://www.parentcoop.org,,,,12/31/14,293469,PCEL_director@yahoo.com,, +2966,NAEYC_accreditation.csv, Parkway Community House Child Care,500 East 67th Street ,60637,4931306,,,,,,,,,,,,,,,,,,http://hullhouse.org,,,,04/30/13,486671,cknighten@hullhouse.org,, +2967,NAEYC_accreditation.csv, Pathways to Learning Child Care Center,3450-54 West 79th Street ,60652,4369244,,,,,,,,,,,,,,,,,,,,,,09/30/14,725281,lmpedwards@yahoo.com,, +2968,NAEYC_accreditation.csv, Paulo Freire Center,1653 West 43rd Street Building ,60609,8266260,,,,,,,,,,,,,,,,,,http://www.chicagocommons.org,,,,02/01/16,278793,vargasn@chicagocommons.org,, +2969,NAEYC_accreditation.csv, Rauner Family YMCA,2700 S. Western Avenue ,60608,5060130,,,,,,,,,,,,,,,,,,http://ymcachgo.org,,,,11/01/15,726196,ssifuentes@ymcachicago.org,, +2970,NAEYC_accreditation.csv, Ravenswood Community Child Care Center,4908 North Damen Avenue ,60625,2714495,,,,,,,,,,,,,,,,,,http://rc4cares.com,,,,09/30/12,600291,directorrc4cares@gmail.com,, +2971,NAEYC_accreditation.csv, Rogers Park Children's Center,1754 West Devon Avenue ,60660,2623366,,,,,,,,,,,,,,,,,,,,,,01/31/13,557795,,, +2972,NAEYC_accreditation.csv, Saint Augustine College-Nayarit Head Start,2610 West 25th Place Lower level ,60608,8783653,,,,,,,,,,,,,,,,,,,,,,01/31/13,511416,ecorona@staugustine.edu,, +2973,NAEYC_accreditation.csv, Salvation Army Incarnation Head Start,1345 North Karlov ,60651,2764118,,,,,,,,,,,,,,,,,,,,,,03/31/15,344640,elsa_galan@usc.salvationarmy.org,, +2974,NAEYC_accreditation.csv, Sinai Preschool,15 West Delaware Place ,60610,8677010,,,,,,,,,,,,,,,,,,http://www.chicagosinai.org,,,,08/01/17,495909,fkatz@chicagosinai.org,, +2975,NAEYC_accreditation.csv, South Central Community Services Head Start Program,8316 South Ellis Avenue Building ,60619,4830900,,,,,,,,,,,,,,,,,,http://www.sccsinc.org,,,,05/31/14,508122,blasingame@sccsinc.org,, +2976,NAEYC_accreditation.csv, South Shore United Methodist Child Care Center,7350 South Jeffery Boulevard ,60649,3244430,,,,,,,,,,,,,,,,,,,,,,03/31/13,564213,ssumccc1@ameritech.net,, +2977,NAEYC_accreditation.csv, South Side YMCA Day Care,6330 S. Stony Island ,60637,3262570,,,,,,,,,,,,,,,,,,http://www.ymcachicago.org,,,,11/30/14,282881,BDickens@ymcachicago.org,, +2978,NAEYC_accreditation.csv, St. Augustine College/Flamboyan Head Start ,3401 W. McLean Avenue ,60647,2763423,,,,,,,,,,,,,,,,,,,,,,01/31/13,511412,egalan@staugustine.edu,, +2979,NAEYC_accreditation.csv, St. John Of God,5114 South Elizabeth 1st Floor ,60609,9242232,,,,,,,,,,,,,,,,,,,,,,11/01/15,725529,snewsome@catholiccharities.net,, +2980,NAEYC_accreditation.csv, St. Joseph Child Care Center,4800 South Paulina ,60609,9272524,,,,,,,,,,,,,,,,,,,,,,02/01/17,502184,jwilliam@catholiccharities.net,, +2981,NAEYC_accreditation.csv, St. Vincent de Paul Center,2145 North Halsted Street ,60614,9436776,,,,,,,,,,,,,,,,,,http://www.svdpc.org,,,,12/01/15,597629,dhamilto@svdpc.org,, +2982,NAEYC_accreditation.csv, St. William School,2559 North Sayre Avenue ,60707,6375130,,,,,,,,,,,,,,,,,,http://www.stwilliamschool.org,,,,06/01/16,722491,mbauer@stwilliamschool.org,, +2983,NAEYC_accreditation.csv, State of Illinois Child Development Center,160 North LaSalle N201 ,60601,8144782,,,,,,,,,,,,,,,,,,http://www.earlychildcareservices.org,,,,08/31/13,214825,solsz@yahoo.com,, +2984,NAEYC_accreditation.csv, The Children's Center for Creative Learning Inc.,7956 South Western Ave. ,60620,4714927,,,,,,,,,,,,,,,,,,,,,,05/31/13,722947,childrencenterwestern@yahoo.com,, +2985,NAEYC_accreditation.csv, The Salvation Army Columbus Park Head Start,500 South Central ,60644,9214162,,,,,,,,,,,,,,,,,,,,,,09/30/14,395893,felice_lewis@usc.salvationarmy.org,, +2986,NAEYC_accreditation.csv, Trinidad Lutheran Head Start,2921 West Division Avenue ,60622,2789332,,,,,,,,,,,,,,,,,,,,,,08/31/13,557882,emilia.espinal@lssi.org,, +2987,NAEYC_accreditation.csv, Trinty Resources Unlimited High Mountain Head Start,919 North Lavergne Avenue ,60651,6263997,,,,,,,,,,,,,,,,,,,,,,01/31/13,546219,tru_highmountain@yahoo.com,, +2988,NAEYC_accreditation.csv, UIC Children's Center,728 W. Roosevelt Road (East Side) 2nd floor ,60607,,,,,,,,,,,,,,,,,,,http://www.uic.edu/depts/children,,,,12/31/12,291616,kkull@uic.edu,, +2989,NAEYC_accreditation.csv, UIC Children's Center,1919 West Taylor Street (mc 525) Room 128 ,60612,4135328,,,,,,,,,,,,,,,,,,http://www.uic.edu/depts/children,,,,12/31/12,291616,kkull@uic.edu,, +2990,NAEYC_accreditation.csv, University Children's Center,446 East Ontario Suite 150 ,60611,8677056,,,,,,,,,,,,,,,,,,http://www.cclc.com/Northwestern,,,,02/01/16,725256,lhafeman@cclc.com,, +2991,NAEYC_accreditation.csv, Uptown Family Care Center,4520 North Beacon Street ,60640,5613500,,,,,,,,,,,,,,,,,,http://www.hullhouse.org,,,,10/01/16,399517,pshowers@hullhouse.org,, +2992,NAEYC_accreditation.csv, Vireva Nursery School,1935 West 51st Street ,60609,9258417,,,,,,,,,,,,,,,,,,,,,,05/31/14,724937,vireva@comcast.net,, +2993,NAEYC_accreditation.csv, Wee Care Nursery School and Kindergarten,1845 East 79th Street ,60649,2214442,,,,,,,,,,,,,,,,,,,,,,07/31/14,592567,weecarekids@sbcglobal.net,, +2994,NAEYC_accreditation.csv," Wee Wee Center for Creative Learning, Inc.",2434 W. 71st Street ,60629,4710869,,,,,,,,,,,,,,,,,,http://weeweecenter.com,,,,05/31/15,723603,weeweecenter@sbcglobal.net,, +2995,NAEYC_accreditation.csv, Westside Holistic Family Services ,4909 West Division Street 1st Floor ,60651,9218887,,,,,,,,,,,,,,,,,,http://www.westsideholistic.org,,,,02/01/17,531882,,, +2996,NAEYC_accreditation.csv, Winthrop Children's Center,4848 North Winthrop ,60640,8783210,,,,,,,,,,,,,,,,,,,,,,09/30/12,395889,,, +2997,NAEYC_accreditation.csv, YMCA High Ridge,2424 West Touhy Avenue ,60645,2628300,,,,,,,,,,,,,,,,,,http://www.ymcachicago.org,,,,11/30/14,725321,,, +2998,NAEYC_accreditation.csv, YMCA Marshall Child Development Center,3201 West Monroe ,60624,2650145,,,,,,,,,,,,,,,,,,http://ymcachgo.org,,,,11/01/15,726003,bross@ymcachicago.org,, +2999,NAEYC_accreditation.csv, Young Scholars Developmental Institute,3038 West 59th Street 1st ,60629,9181944,,,,,,,,,,,,,,,,,,,,,,01/31/14,546228,youngscholars@sbcglobal.net,, +3000,Ounce of Prevention - Site Locations.csv, Ounce of Prevention Fund - Educare of Chicago,5044 S. Wabash Ave ,60615,9242334,,,,,,,,,,,,,,,,,,,,,,,Grand Boulevard Community; Serves children ages 0-5,,, +3001,Ounce of Prevention - Site Locations.csv, Ounce of Prevention Fund - Doula Home Visiting,"Hayes Center +4859 S. Wabash +",60615,3738670,,,,,,,,,,,,,,,,,,,,,,,Grand Boulevard Community; Serves children ages 0-5,,, +3002,Ounce of Prevention - Site Locations.csv, Aunt Martha's - Riverdale Site,"14424 Wentworth Avenue +Riverdale, IL 60827",,8496019,,,,,,,,,,,,,,,,,,,,,,,Park Forest and Riverdale Communities; Serves children ages 3-5,,, +3003,Ounce of Prevention - Site Locations.csv, Aunt Martha's - Park Forest Site,"23485 Western Avenue +Park Forest, IL 60466",,7472780,,,,,,,,,,,,,,,,,,,,,,,Park Forest and Riverdale Communities; Serves children ages 3-5,,, +3004,Ounce of Prevention - Site Locations.csv, Casa Central - ABC Home-Based Head Start,"1349 N. California +",60622,6452404,,,,,,,,,,,,,,,,,,,,,,,Humboldt Park Community; Serves children ages 3-5,,, +3005,Ounce of Prevention - Site Locations.csv, Casa Central - APP Home Based Head Start,"2222 N. Kedzie Ave. +",60647,7828819,,,,,,,,,,,,,,,,,,,,,,,Humboldt Park Community; Serves children ages 3-5,,, +3006,Ounce of Prevention - Site Locations.csv, Casa Central - Casa Infantil,"2222 N. Kedzie Ave. +",60647,7721170,,,,,,,,,,,,,,,,,,,,,,,Humboldt Park Community; Serves children ages 3-5,,, +3007,Ounce of Prevention - Site Locations.csv, Casa Central - Community Service Center,"1343 N. California Ave. +",60622,6452300,,,,,,,,,,,,,,,,,,,,,,,Humboldt Park Community; Serves children ages 3-5,,, +3008,Ounce of Prevention - Site Locations.csv, Casa Central - Munoz Marin-Lowell Early Childhood Center,"3320 W. Evergreen Ave. +",60651,5344315,,,,,,,,,,,,,,,,,,,,,,,Humboldt Park Community; Serves children ages 3-5,,, +3009,Ounce of Prevention - Site Locations.csv, Centers for New Horizons - Effie Ellis II Center,"4301 S. Cottage Grove Ave +",60653,5489839,,,,,,,,,,,,,,,,,,,,,,,Grand Boulevard Community; Serves children 0-3,,, +3010,Ounce of Prevention - Site Locations.csv, Children's Home and Aid Society - Mitzi Freidheim Englewood Child + Family Center,"1701 W. 63rd St. +",60636,4766998,,,,,,,,,,,,,,,,,,,,,,,Humboldt Park and Englewood Communities; Serves children ages 3-5,,, +3011,Ounce of Prevention - Site Locations.csv, Children's Home and Aid Society - Viva Home Based,"2516 W. Division +",60622,2529100,,,,,,,,,,,,,,,,,,,,,,,Humboldt Park and Englewood Communities; Serves children ages 3-5,,, +3012,Ounce of Prevention - Site Locations.csv, Children's Place Association - Family Center,"1800 N. Humboldt Blvd. +",60647,3959193,,,,,,,,,,,,,,,,,,,,,,,Humboldt Park and City of Chicago Communities; Serves children ages 0-5,,, +3013,Ounce of Prevention - Site Locations.csv, One Hope United - Bridgeport Child Development Center,"3053 South Normal Ave. +",60616,8425566,,,,,,,,,,,,,,,,,,,,,,,Bridgeport and Rogers Park Communities; Serves children ages 3-5,,, +3014,Ounce of Prevention - Site Locations.csv, One Hope United - Bridgeport Child Development Center II,"514 W. 31st St. +",60616,9494015,,,,,,,,,,,,,,,,,,,,,,,Bridgeport and Rogers Park Communities; Serves children ages 3-5,,, +3015,Ounce of Prevention - Site Locations.csv, One Hope United - Edgewater Early Learning Center,"5244 North Lakewood St. +",60640,9070278,,,,,,,,,,,,,,,,,,,,,,,Bridgeport and Rogers Park Communities; Serves children ages 3-5,,, +3016,Ounce of Prevention - Site Locations.csv, SGA Youth and Family Services - SGA Youth & Family Services,"Early Head Start Home Based +11 E. Adams, Suite 1500 +",60603,4474356,,,,,,,,,,,,,,,,,,,,,,,Brighton Park and McKinley Park; Services children ages 0-3; Home Visiting,,, +3017,Ounce of Prevention - Site Locations.csv, SGA Youth and Family Services - Program Site,"4222 S. Archer Ave. +",60632,,,,,,,,,,,,,,,,,,,,,,,,Brighton Park and McKinley Park; Services children ages 0-3; Home Visiting,,, +3018,purple_binder_early_childhood.csv, A Karrasel Nursery School & Kindergarten,3030 N Kedzie Avenue ,60618,4636151,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3019,purple_binder_early_childhood.csv, A Step Ahead Day Care Center,4208 N Broadway Street 10 ,60612,4048664,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3020,purple_binder_early_childhood.csv, ABC & Me Day Care Center,1100 W Lawrence Avenue ,60640,5614488,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3021,purple_binder_early_childhood.csv, ABC Academy,2714 W Pratt Boulevard ,60645,3381033,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3022,purple_binder_early_childhood.csv, ABLA Child Development Center,1342 S Racine Avenue ,60608,7335992,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3023,purple_binder_early_childhood.csv, Abraham Lincoln Centre,7239 S Dobson Avenue ,60619,4934496,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3024,purple_binder_early_childhood.csv, Abraham Lincoln Centre,5659 S Union Avenue ,60621,7832828,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3025,purple_binder_early_childhood.csv, Abraham Lincoln Centre,7 E 119th Street ,60628,2647633,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3026,purple_binder_early_childhood.csv, Abraham Lincoln Centre,1354 W 61st Street ,60636,4715100,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3027,purple_binder_early_childhood.csv, Abraham Lincoln Centre,3858 S Cottage Grove Avenue ,60653,3736600,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3028,purple_binder_early_childhood.csv, Abraham Lincoln Centre - Berkley Center,4210 S Berkeley Avenue ,60653,4513360,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3029,purple_binder_early_childhood.csv, Abraham Lincoln Centre - Lincoln/King,4314 S Cottage Grove Avenue ,60653,7472310,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3030,purple_binder_early_childhood.csv, Accounters Community Center,1155 W 81st Street ,60620,9945514,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3031,purple_binder_early_childhood.csv, Ada S. McKinley Community Services,725 S Wells Street ,60607,3852000,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3032,purple_binder_early_childhood.csv, Ada S. McKinley Community Services,4543 S Princeton Avenue ,60609,6249799,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3033,purple_binder_early_childhood.csv, Ada S. McKinley Community Services,2647 E 88th Street ,60617,3751999,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3034,purple_binder_early_childhood.csv, Ada S. McKinley Community Services - Ersula Howard,7222 S Exchange Avenue ,60649,2219711,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3035,purple_binder_early_childhood.csv, Ada S. McKinley Community Services - Maggie Drummond,4301 S Wabash ,60653,3738200,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3036,purple_binder_early_childhood.csv, Ada S. McKinley Community Services - Roseland,11410 S Edbrooke Avenue ,60628,4681918,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3037,purple_binder_early_childhood.csv, Ada S. McKinley Community Services - Wright Renaissance,7939 S Western Avenue ,60620,4768805,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3038,purple_binder_early_childhood.csv, Ada S. McKinley Services - McKinley - Trumbull,10530 S Oglesby Avenue ,60617,3757022,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3039,purple_binder_early_childhood.csv, Albany Park Community Center,3403 W Lawrence Avenue ,60625,4333204,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3040,purple_binder_early_childhood.csv, Albany Park Community Center - Ainslie,3401 W Ainslie Street ,60625,5395907,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3041,purple_binder_early_childhood.csv, Albany Park Community Center - Kimball,5121 N Kimball Avenue ,60625,5095650,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3042,purple_binder_early_childhood.csv, All Nations Development Center,8435 S Stony Island Avenue ,60617,3757000,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3043,purple_binder_early_childhood.csv, Appeal for Charities Ebenezer,7058 S LaFayette Avenue ,60621,6515400,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3044,purple_binder_early_childhood.csv, Appeal for Charities Emmanuel,50 W 71st Street ,60621,6515400,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3045,purple_binder_early_childhood.csv, BBF Family Services,1512 S Pulaski Road ,60623,2779582,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3046,purple_binder_early_childhood.csv, Bernard Horwich Jewish Community Center,3003 W Touhy Avenue ,60645,7619100,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3047,purple_binder_early_childhood.csv, Bethel New Life,4950 W Thomas Street ,60651,4737870,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3048,purple_binder_early_childhood.csv, Bethel New Life School,1120 N Lamon Avenue ,60651,6267760,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3049,purple_binder_early_childhood.csv," Boys & Girls Clubs of Chicago - Dr Martin Luther King, Jr. Club",2950 W Washington Boulevard ,60612,6385464,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3050,purple_binder_early_childhood.csv, Boys & Girls Clubs of Chicago - Ida Mae Fletcher,3140 W Ogden Avenue ,60623,7627383,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3051,purple_binder_early_childhood.csv, Boys & Girls Clubs of Chicago - James Jordan Club,2102 W Monroe Street ,60612,4324294,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3052,purple_binder_early_childhood.csv, Boys & Girls Clubs of Chicago - Yancey,6245 S Wabash Avenue ,60637,3634733,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3053,purple_binder_early_childhood.csv, Bray Temple Day Care,1049 E 73rd Street ,60619,4937092,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3054,purple_binder_early_childhood.csv, Bright Horizons at Fourth Presbyterian Children's Center,126 E Chestnut Street ,60611,6244532,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3055,purple_binder_early_childhood.csv, Bunnyland Developmental Day Care Center,545 W 119th Street ,60628,5685200,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3056,purple_binder_early_childhood.csv, C.C.C. Learning Center,78 W Van Buren Street ,60605,4273342,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3057,purple_binder_early_childhood.csv, C.C.C. Learning Center,610 S Canal Street ,60606,3538687,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3058,purple_binder_early_childhood.csv, Cambodian Association of Illinois,2831 W Lawrence Avenue ,60625,8787090,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3059,purple_binder_early_childhood.csv, Care-A-Lot Child Development Center,5522 N Milwaukee Avenue ,60630,7630888,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3060,purple_binder_early_childhood.csv, Care-a-Lot Child Development Center,6441 N Central Avenue ,60646,7638888,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3061,purple_binder_early_childhood.csv, Carole Robertson Center for Learning,2020 W Roosevelt Road ,60608,2437300,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3062,purple_binder_early_childhood.csv, Carole Robertson Center for Learning,3701 W Ogden Avenue ,60623,5228400,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3063,purple_binder_early_childhood.csv, Carole Robertson Center for Learning,2929 W 19th Street ,60623,5211600,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3064,purple_binder_early_childhood.csv, Casa Central - Casa Infantil Child Development Center,2222 N Kedzie Avenue ,60647,7721170,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3065,purple_binder_early_childhood.csv, Casa Central - CSC Child Development Center,1343 N California Avenue ,60622,6452300,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3066,purple_binder_early_childhood.csv, Catholic Charities Chicago,721 N LaSalle Street ,60654,6557000,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3067,purple_binder_early_childhood.csv, Catholic Charities Chicago - Chicago Lawn,3001 W 59th Street ,60629,9251085,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3068,purple_binder_early_childhood.csv, Catholic Charities Chicago - Cordi-Marian,1100 S May Street ,60607,6663787,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3069,purple_binder_early_childhood.csv, Catholic Charities Chicago - Ebenezer,1652 W Foster Avenue ,60640,8789925,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3070,purple_binder_early_childhood.csv, Catholic Charities Chicago - Grace Mission School,5332 S Western Avenue ,60609,4761990,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3071,purple_binder_early_childhood.csv, Catholic Charities Chicago - Maria's Garden,7320 S Yale Avenue ,60621,9943016,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3072,purple_binder_early_childhood.csv, Catholic Charities Chicago - St. Joseph,4800 S Paulina Street ,60609,9272524,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3073,purple_binder_early_childhood.csv, Catholic Charities Chicago - St. Kevin,10509 S Torrence Avenue ,60617,3746466,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3074,purple_binder_early_childhood.csv, Catholic Charities Chicago - St. Mark,1041 N Campbell Avenue ,60622,7726606,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3075,purple_binder_early_childhood.csv, Catholic Charities Chicago - St. Michael,8235 S Shore Drive ,60617,9337676,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3076,purple_binder_early_childhood.csv, Centers for New Horizons - Altgeld,941 E 132nd Street ,60827,4683055,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3077,purple_binder_early_childhood.csv, Centers for New Horizons - Altgeld Gardens II Early Learning Center,939 E 132nd Street ,60827,4686033,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3078,purple_binder_early_childhood.csv, Centers for New Horizons - Edison Hoard,3948 S State ,60609,5362187,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3079,purple_binder_early_childhood.csv, Centers for New Horizons - Head Start,226 E 43rd Street ,60653,6240061,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3080,purple_binder_early_childhood.csv, Centers for New Horizons Dr. King High School,4445 S Drexel Boulevard ,60653,2853327,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3081,purple_binder_early_childhood.csv, Centers for New Horizons Hyde Park,5600 S Woodlawn ,60637,6672525,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3082,purple_binder_early_childhood.csv, Centers for New Horizons Ida B. Wells,3641 S Rhodes Avenue ,60653,3733460,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3083,purple_binder_early_childhood.csv, Centers for New Horizons Raymond School,3663 S Wabash Avenue ,60653,3735673,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3084,purple_binder_early_childhood.csv, Centers for New Horizons Robert Taylor II,5120 S Federal Street ,60609,6240666,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3085,purple_binder_early_childhood.csv, Centers For New Horizons Robert Taylor School,5140 S Federal Street ,60609,5360510,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3086,purple_binder_early_childhood.csv, Centers for New Horizons Washington Park,6225 S Wabash Avenue ,60637,6672065,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3087,purple_binder_early_childhood.csv, Central Baptist Bridgeport School,3053 S Normal Avenue ,60616,8425566,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3088,purple_binder_early_childhood.csv, Chicago Child Care Society School,5467 S University Avenue ,60615,6430452,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3089,purple_binder_early_childhood.csv, Chicago Commons,3645 W Chicago Avenue ,60651,6385600,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3090,purple_binder_early_childhood.csv, Chicago Commons - Guadalupano Family Center,1814 S Paulina Street ,60608,6663883,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3091,purple_binder_early_childhood.csv, Chicago Commons - Nia Family Center,744 N Monticello Avenue ,60624,7220115,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3092,purple_binder_early_childhood.csv, Chicago Commons - Taylor Center School,1633 N Hamlin Avenue ,60647,2278551,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3093,purple_binder_early_childhood.csv, Chicago Commons Association New City,4600 S McDowell ,60609,3761657,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3094,purple_binder_early_childhood.csv, Chicago Commons Association Paulo Freire,1633 W 43rd Street ,60609,8262669,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3095,purple_binder_early_childhood.csv, Chicago Department of Human Services - North Area,4740 N Sheridan Road ,60640,7442580,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3096,purple_binder_early_childhood.csv, Chicago Department of Human Services - South Chicago,8759 S Commercial Avenue ,60617,7470331,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3097,purple_binder_early_childhood.csv, Chicago Metropolitan Association for the Education of Young Children,30 E Adams Street ,60603,4275399,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3098,purple_binder_early_childhood.csv, Chicago Urban Day School,1248 W 69th Street ,60636,4833555,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3099,purple_binder_early_childhood.csv, Chicago Youth Centers,461 E 111th Street ,60628,4684660,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3100,purple_binder_early_childhood.csv, Chicago Youth Centers - ABC Youth Center,3415 W 13th Place ,60623,7625655,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3101,purple_binder_early_childhood.csv, Chicago Youth Centers - BBR Youth Center,1530 S Hamlin Avenue ,60623,7621140,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3102,purple_binder_early_childhood.csv, Chicago Youth Centers - Centro Nuestro,3222 W Division Street ,60651,4893157,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3103,purple_binder_early_childhood.csv, Chicago Youth Centers - Dorothy Gautreaux,975 E 132nd Street ,60827,2911000,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3104,purple_binder_early_childhood.csv, Chicago Youth Centers - Elliott Donnelley Center,3947 S Michigan Avenue ,60653,2683815,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3105,purple_binder_early_childhood.csv, Chicago Youth Centers - Mt. Moriah-Taylor,1501 N Harding Avenue ,60651,2785837,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3106,purple_binder_early_childhood.csv, Chicago Youth Centers - Rebecca Crown,7601 S Phillips Avenue ,60649,7310444,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3107,purple_binder_early_childhood.csv, Children's Campus,7250 W Touhy Avenue ,60631,6313632,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3108,purple_binder_early_childhood.csv, Children's Home and Aid - Englewood Family Center,1701 W 53rd Avenue ,60609,4766998,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3109,purple_binder_early_childhood.csv, Children's Place Association,3059 W Augusta Boulevard ,60622,8261230,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3110,purple_binder_early_childhood.csv, Children's Playhouse,3342 W Bryn Mawr Avenue ,60659,4783888,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3111,purple_binder_early_childhood.csv, Childrens Home and Aid Society,125 S Wacker Drive ,60606,4240200,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3112,purple_binder_early_childhood.csv, ChildServ - St Matthew Head Start,1000 N Orleans Street ,60610,9443403,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3113,purple_binder_early_childhood.csv, Childserv Englewood,7928 S Ashland Avenue ,60620,,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3114,purple_binder_early_childhood.csv, Childserv Lawndale,3210 W Arthington ,60624,5677669,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3115,purple_binder_early_childhood.csv, ChildServ West Englewood School,1711 W Garfield Boulevard ,60636,8677350,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3116,purple_binder_early_childhood.csv, Chinese American Service League,310 W 24th Place ,60616,7910418,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3117,purple_binder_early_childhood.csv, Christopher House,2507 N Greenview Avenue ,60614,4721083,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3118,purple_binder_early_childhood.csv, Christopher House - Lakeshore,850 W Eastwood Avenue ,60640,2719403,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3119,purple_binder_early_childhood.csv, Christopher House - Rogers Park,7059 N Greenview Avenue ,60626,2745477,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3120,purple_binder_early_childhood.csv, Christopher House - Uptown Child Development Center,4701 N Winthrop Avenue ,60640,7694540,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3121,purple_binder_early_childhood.csv, Christopher House Buena Park,4303 N Kenmore Avenue ,60613,8830288,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3122,purple_binder_early_childhood.csv, Christopher House Logan Square,2610 N Francisco Avenue ,60647,2354073,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3123,purple_binder_early_childhood.csv, Christopher House Palmer Square,2140 N Richmond Street ,60647,9480010,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3124,purple_binder_early_childhood.csv, Church of God Community Day Care Center,1738 W Marquette Road ,60636,4715222,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3125,purple_binder_early_childhood.csv, Community Learning Center,10612 S Wentworth Avenue ,60628,9284104,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3126,purple_binder_early_childhood.csv, Concordia Child Care Center,3855 N Seeley Avenue ,60618,9353739,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3127,purple_binder_early_childhood.csv, Congregation K.I.N.S. Nursery School/Kinderland,2800 W North Shore Avenue ,60645,7614000,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3128,purple_binder_early_childhood.csv, Consuelo Lee Corretjer Day Care Center,2739 W Division Street ,60622,3428866,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3129,purple_binder_early_childhood.csv, Cook County/City of Chicago Child Development Center,40 N Dearborn Street ,60602,6244532,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3130,purple_binder_early_childhood.csv, Dawson Technical Institute,3901 S State Street ,60609,4512000,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3131,purple_binder_early_childhood.csv, Dorsey Developmental Institute School,2050 E 93rd Street ,60617,3754300,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3132,purple_binder_early_childhood.csv, Douglas-Tubman Child Development Center,5010 W Chicago Avenue ,60651,2683053,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3133,purple_binder_early_childhood.csv, Downtown Children's Learning Place,400 N McClurg Court ,60611,8289590,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3134,purple_binder_early_childhood.csv, Dr. Deton J. Brooks Head Start,6921 S Stony Island Avenue ,60649,9552818,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3135,purple_binder_early_childhood.csv, Easter Seal Society Gilchrist Marchment,2345 W North Avenue ,60647,2764000,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3136,purple_binder_early_childhood.csv, Educare Center,5044 S Wabash Avenue ,60615,9242334,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3137,purple_binder_early_childhood.csv, El Hogar Del Nino,1718 S Loomis Street ,60608,5639796,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3138,purple_binder_early_childhood.csv, El Hogar del Nino,1854 S Racine Avenue ,60608,2430011,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3139,purple_binder_early_childhood.csv, El Hogar Del Nino Cuidar,2325 S California Avenue ,60608,5231629,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3140,purple_binder_early_childhood.csv, El Valor Guadalupe Reyes,1951 W 19th Street ,60608,9972021,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3141,purple_binder_early_childhood.csv, El Valor Rey Gonzalez Child Care,3050 E 92nd Street ,60617,7219311,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3142,purple_binder_early_childhood.csv, Erie Neighborhood House,1701 W Superior Street ,60622,5635800,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3143,purple_binder_early_childhood.csv, Erie Neighborhood House,2510 W Cortez Street ,60622,4867161,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3144,purple_binder_early_childhood.csv, Erie Neighborhood House,1347 W Erie Street ,60642,6663430,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3145,purple_binder_early_childhood.csv, Eyes on the Future Child Care Center,6969 N Ravenswood Avenue ,60626,9730771,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3146,purple_binder_early_childhood.csv, Ezzard Charles School,7946 S Ashland Avenue ,60620,4870227,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3147,purple_binder_early_childhood.csv, Family Rescue Ridgeland,6824 S Ridgeland Avenue ,60649,6671073,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3148,purple_binder_early_childhood.csv, Fellowship House Day Care Center,844 W 32nd Street ,60608,3262282,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3149,purple_binder_early_childhood.csv, Fifth City Chicago Child Development Institute,3411 W Fifth Avenue ,60624,8268686,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3150,purple_binder_early_childhood.csv, Firman Community Services,37 W 47th Street ,60609,3733400,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3151,purple_binder_early_childhood.csv, Firman Community Services,4910 S King Drive ,60615,3732083,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3152,purple_binder_early_childhood.csv, Firman Community Services - School Age Program,4644 S Dearborn Street ,60609,3733400,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3153,purple_binder_early_childhood.csv, First Church of Love and Faith,2140 W 79th Street ,60620,8739155,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3154,purple_binder_early_childhood.csv, First Presbyterian Church,6400 S Kimbark Avenue ,60637,3630505,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3155,purple_binder_early_childhood.csv, Florence Heller Jewish Community Center,524 W Melrose Avenue ,60657,8716780,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3156,purple_binder_early_childhood.csv, Fresh Start Day Care,6924 W North Avenue ,60707,4792870,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3157,purple_binder_early_childhood.csv, Gads Hill Center,1919 W Cullerton Street ,60608,2260963,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3158,purple_binder_early_childhood.csv, Gads Hill Center - Cesar Chavez Elementary,4747 S Marshfield Avenue ,60609,,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3159,purple_binder_early_childhood.csv, Grant AME Church Day Care Center,4025 S Drexel Boulevard ,60653,2858440,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3160,purple_binder_early_childhood.csv, Greenview Children's Center,1507 W Sunnyside Avenue ,60640,7281777,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3161,purple_binder_early_childhood.csv, Habilitative Systems,415 S Kilpatrick Avenue ,60644,2612252,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3162,purple_binder_early_childhood.csv, Happy Child Day Center,7750 W Devon Avenue ,60631,7757969,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3163,purple_binder_early_childhood.csv, Harry S. Truman College Child Development Center,1145 W Wilson Avenue ,60640,9074740,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3164,purple_binder_early_childhood.csv, Heartland Alliance for Human Needs and Human Rights - Learning Center,615 W Wellington Avenue ,60657,7511870,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3165,purple_binder_early_childhood.csv, Henry Booth Family Rescue,2850 S Michigan Avenue ,60616,9492151,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3166,purple_binder_early_childhood.csv, Henry Booth House - Hilliard Head Start,2401 S Wabash Street ,60616,6639450,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3167,purple_binder_early_childhood.csv, Henry Booth Near South School,2929 S Wabash Suite 200 ,60616,7910424,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3168,purple_binder_early_childhood.csv, High Ridge YMCA Educational Center,2424 W Touhy Avenue ,60645,2628300,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3169,purple_binder_early_childhood.csv, Home of Life,4647 W Washington Boulevard ,60644,6268655,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3170,purple_binder_early_childhood.csv, Howard Area Community Center,7648 N Paulina Street ,60626,2626622,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3171,purple_binder_early_childhood.csv, Howard Area Community Services,7610 N Ashland Avenue ,60626,7647610,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3172,purple_binder_early_childhood.csv, Hull House Association - Humboldt Park,1132 S Spaulding Avenue ,60624,2767968,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3173,purple_binder_early_childhood.csv, Hull House Association - Lawndale,1401 S Sacramento Drive ,60623,9068600,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3174,purple_binder_early_childhood.csv, Hull House Association - LeClaire Hearst Community Center,4340 S Lamon Avenue ,60638,7671516,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3175,purple_binder_early_childhood.csv, Hull House Association - LeClaire-Ryder,4410 S LaPorte Avenue ,60638,7675170,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3176,purple_binder_early_childhood.csv, Hull House Association - Lincoln Square,4754 N Leavitt Street ,60625,8788651,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3177,purple_binder_early_childhood.csv, Hull House Association - Orr Infant and Family Development Center,730 N Pulaski Road ,60624,8261090,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3178,purple_binder_early_childhood.csv, Hull House Association - Parkway Community House,500 E 67th Street ,60637,4931306,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3179,purple_binder_early_childhood.csv, Hull House Association - Uptown West,4520 N Beacon Street ,60640,5613500,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3180,purple_binder_early_childhood.csv, Hull House Association Child Development,3212 N Broadway Street ,60657,5345814,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3181,purple_binder_early_childhood.csv, Human Resources Development Institute,222 S Jefferson Street ,60661,4686959,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3182,purple_binder_early_childhood.csv, Hyde Park Neighborhood Club,5480 S Kenwood Avenue ,60615,6434062,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3183,purple_binder_early_childhood.csv, Irving Park Early Learning Center,3023 W Montrose Avenue ,60618,5397422,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3184,purple_binder_early_childhood.csv, JCYS Lakeview Family Center,957 W Grace Street ,60613,2812533,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3185,purple_binder_early_childhood.csv, Jewish Child and Family Services,216 W Jackson Boulevard ,60606,3574800,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3186,purple_binder_early_childhood.csv, Jewish Child and Family Services - Joy Faith Knapp Children's Center,3145 W Pratt Boulevard ,60645,4673700,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3187,purple_binder_early_childhood.csv, Jewish Community Centers of Chicago,30 S Wells Street ,60606,3574700,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3188,purple_binder_early_childhood.csv, Jewish Community Centers of Chicago - Hyde Park,5200 S Hyde Park Boulevard ,60615,7533080,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3189,purple_binder_early_childhood.csv, Jolly Fun House Playschool,7559 W Addison Street ,60634,,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3190,purple_binder_early_childhood.csv, Kennedy-King College,6301 S Halsted Street ,60621,6025340,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3191,purple_binder_early_childhood.csv, Kennedy-King College,6800 S Wentworth Avenue ,60621,6025340,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3192,purple_binder_early_childhood.csv, Kenyatta's Day Care,2334 E 75th Street ,60649,2213777,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3193,purple_binder_early_childhood.csv, Kids Hope United,111 E Wacker Drive ,60601,9226733,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3194,purple_binder_early_childhood.csv, Kids Hope United - Harris Child Development Center,6200 S Drexel Avenue ,60637,3245612,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3195,purple_binder_early_childhood.csv, Kids Hope United - Kids Hope Child Development Center,5244 N Lakewood Avenue ,60640,9070278,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3196,purple_binder_early_childhood.csv, Kidwatch Plus,3901 N Ridgeway Avenue ,60618,5395431,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3197,purple_binder_early_childhood.csv, Kinara Community Services Day Care Center,6201 S Sangamon Street ,60621,3710720,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3198,purple_binder_early_childhood.csv, Kinder Care Kiddy College,7536 S Stewart ,60620,2243569,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3199,purple_binder_early_childhood.csv, KinderCare,1501 S State Street ,60605,9131557,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3200,purple_binder_early_childhood.csv, Korean American Community Services,4300 N California Avenue ,60618,5835501,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3201,purple_binder_early_childhood.csv, Lake Shore Preparatory School,300 W Hill Street ,60610,2662020,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3202,purple_binder_early_childhood.csv, Lake Shore School,5611 N Clark Street ,60660,5616707,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3203,purple_binder_early_childhood.csv, LaSalle Street Cycle,735 W Division Street ,60610,6642880,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3204,purple_binder_early_childhood.csv, Laurance Armour Day School,2150 W Harrison Avenue ,60612,9426501,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3205,purple_binder_early_childhood.csv, Literacy Chicago,17 N State Street ,60602,8701100,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3206,purple_binder_early_childhood.csv, Little Angels Day Care Center,6407 N Maplewood ,60645,3389770,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3207,purple_binder_early_childhood.csv, Little Harvard Academy,2708 W Peterson Avenue ,60659,9731500,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3208,purple_binder_early_childhood.csv, Little People Day Care School,7428 N Rogers Avenue ,60626,7612305,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3209,purple_binder_early_childhood.csv, Loyola University Chicago - Preschool/Day Care,1052 W Loyola Avenue ,60626,5083444,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3210,purple_binder_early_childhood.csv, Lutheran Day Nursery School,1802 N Fairfield Avenue ,60647,4864222,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3211,purple_binder_early_childhood.csv, Lutheran Family Mission - North Avenue,5251 W North Avenue ,60639,6372344,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3212,purple_binder_early_childhood.csv, Lutheran Family Mission Family Center,4920 W Madison Street ,60644,2872921,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3213,purple_binder_early_childhood.csv, Lutheran Social Services - North Austin,1500 N Mason Avenue ,60651,6354600,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3214,purple_binder_early_childhood.csv, Lutheran Social Services - Rogers Park,1754 W Devon Avenue ,60660,6354600,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3215,purple_binder_early_childhood.csv, Lutheran Social Services - Winthrop Children's Center,4848 N Winthrop Avenue ,60640,8783210,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3216,purple_binder_early_childhood.csv, Luv N Care Day School,5776 N Lincoln Avenue ,60659,7459591,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3217,purple_binder_early_childhood.csv, Lydia Home Association - Lydia Learn and Care,4300 W Irving Park Road ,60641,7361447,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3218,purple_binder_early_childhood.csv, Malcolm X College,1900 W Van Buren Street ,60612,8507300,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3219,purple_binder_early_childhood.csv, Marcy Newberry Association,1073 W Maxwell Street ,60608,8297555,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3220,purple_binder_early_childhood.csv, Marcy Newberry Association - Ashland Community Center,1440 S Ashland Avenue ,60608,6662036,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3221,purple_binder_early_childhood.csv, Marcy Newberry Association - Austin Town Hall,5610 W Lake Street ,60644,2611505,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3222,purple_binder_early_childhood.csv, Marcy Newberry Association - Marcy Center,1539 S Springfield Avenue ,60623,7612300,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3223,purple_binder_early_childhood.csv, Marcy Newberry Association - North Austin Headstart,1256 N Waller Avenue ,60651,2611700,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3224,purple_binder_early_childhood.csv, Marcy Newberry Association - Rockwell Center,2540 W Jackson Boulevard ,60612,6662931,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3225,purple_binder_early_childhood.csv, Marillac Social Center,2114 W 22nd Place ,60612,7227440,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3226,purple_binder_early_childhood.csv, Marillac Social Center Supportive Services,212 S Francisco Avenue ,60612,7227440,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3227,purple_binder_early_childhood.csv, Mary Craine Center,1545 W Morse Avenue ,60626,2621390,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3228,purple_binder_early_childhood.csv, Mary Crane Center North,2905 N Leavitt Street ,60618,9753322,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3229,purple_binder_early_childhood.csv, Mary Crane Family and Day Care Center,2905 N Clybourn Avenue ,60618,3485528,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3230,purple_binder_early_childhood.csv, McKinney's Home Day Care Center,1109 N Laramie Avenue ,60651,3791685,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3231,purple_binder_early_childhood.csv, Metropolitan Family Services - Calumet Center,235 E 103rd Street ,60628,3713600,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3232,purple_binder_early_childhood.csv, Metropolitan Family Services Children's Center,3215 W 63rd Street ,60629,8842350,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3233,purple_binder_early_childhood.csv, Near the Pier Development Center,540 N Lake Shore Drive ,60611,5272223,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3234,purple_binder_early_childhood.csv, New Concept School,7825 S Ellis Avenue ,60619,6519599,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3235,purple_binder_early_childhood.csv, New Pisgah Day Care Center,8130 S Racine Avenue ,60620,8735392,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3236,purple_binder_early_childhood.csv, North Avenue Day Nursery,2001 W Pierce Street ,60622,3424499,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3237,purple_binder_early_childhood.csv, Northshore Academy for Children,6711 N Sheridan Road ,60626,7434744,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3238,purple_binder_early_childhood.csv, Olive-Harvey College,10001 S Woodlawn Avenue ,60628,2916700,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3239,purple_binder_early_childhood.csv, Onward Neighborhood House,600 N Leavitt Street ,60612,6666726,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3240,purple_binder_early_childhood.csv, Onward Neighborhood House - After School,2158 W Ohio Street ,60612,2437920,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3241,purple_binder_early_childhood.csv, Our Lady of Guadalupe Early Childhood Center,9129 S Burley Avenue ,60617,9785320,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3242,purple_binder_early_childhood.csv, Our Lady of Lourdes Early Childhood Center,1449 S Keeler Avenue ,60623,5213126,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3243,purple_binder_early_childhood.csv, Our Lady of Tepeyac Early Childhood Center,2414 S Albany Avenue ,60623,2775888,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3244,purple_binder_early_childhood.csv, Progressive Community Center,56 E 48th Street ,60615,9246564,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3245,purple_binder_early_childhood.csv, Resurrection Child Care Center,7435 W Talcott Avenue ,60631,7925253,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3246,purple_binder_early_childhood.csv, Resurrection Day Care Center,1849 N Hermitage Avenue ,60622,3847142,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3247,purple_binder_early_childhood.csv, Richard J. Daley College,7500 S Pulaski Road ,60652,8387803,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3248,purple_binder_early_childhood.csv, Rogers Park Montessori School,1800 W Balmoral Avenue ,60640,2711700,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3249,purple_binder_early_childhood.csv, Roseland Christian Ministries Center,10858 S Michigan Avenue ,60628,2645665,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3250,purple_binder_early_childhood.csv, Ruthie Ann's Day Care Center,423 S Central Park Avenue ,60624,7222827,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3251,purple_binder_early_childhood.csv, Saint Bronislava Early Childhood Center,8716 S Colfax Avenue ,60617,6557305,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3252,purple_binder_early_childhood.csv, Saint Paul's House and Health Care Center - Byron,2815 W Byron Street ,60618,5838385,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3253,purple_binder_early_childhood.csv, Salvation Army - Child Care,1515 W Monroe Street ,60607,7332533,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3254,purple_binder_early_childhood.csv, Salvation Army - Columbus Park School,500 S Central Avenue ,60644,9214162,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3255,purple_binder_early_childhood.csv, Salvation Army - Chicago Temple Corps Community Center,1 N Ogden Avenue ,60607,2262649,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3256,purple_binder_early_childhood.csv, Salvation Army - Edsel Albert Ammons Nursery,549 E 76th Street ,60619,4837040,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3257,purple_binder_early_childhood.csv, Salvation Army - Family Outreach Initiative,845 W 69th Street ,60621,3824706,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3258,purple_binder_early_childhood.csv, Salvation Army - New Hope School,4255 W Division Street ,60651,7224908,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3259,purple_binder_early_childhood.csv, Salvation Army - Shiloah School,9211 S Justine Street ,60620,8814142,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3260,purple_binder_early_childhood.csv, Sinai Preschool,15 W Delaware Place ,60610,8677010,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3261,purple_binder_early_childhood.csv, South Central Community Service,7001 S Union Avenue ,60621,6028120,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3262,purple_binder_early_childhood.csv, South East Asia Center,1134 W Ainslie Street ,60640,9897433,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3263,purple_binder_early_childhood.csv, South Harper Montessori Preschool,8358 S Stony Island Avenue ,60617,7343120,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3264,purple_binder_early_childhood.csv, South Shore Bible Baptist Church Marantha,1631 E 71st Street ,60649,4937500,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3265,purple_binder_early_childhood.csv, South-East Asia Center,1112 W Foster Avenue ,60640,9897433,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3266,purple_binder_early_childhood.csv, South-East Asia Center,5120 N Broadway Avenue ,60640,9896927,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3267,purple_binder_early_childhood.csv, Sr. Bonaventure Children's Center,3522 N Central Avenue ,60634,2023540,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3268,purple_binder_early_childhood.csv, St Augustine College - Canillatas School,1333 W Argyle Street ,60640,8783231,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3269,purple_binder_early_childhood.csv, St. Augustine College Flamboyan,3401 W McLean Avenue ,60647,2763423,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3270,purple_binder_early_childhood.csv, St. Paul-Chaney Ford Child Care,4528 S Wabash Avenue ,60653,2858721,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3271,purple_binder_early_childhood.csv, St. Timothy Day Care Center,3555 W Huron Street ,60624,8541662,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3272,purple_binder_early_childhood.csv, St. Vincent De Paul Center,2145 N Halsted Street ,60614,9436776,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3273,purple_binder_early_childhood.csv, Sunshine Preschool,2100 W Devon Avenue ,60659,7649815,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3274,purple_binder_early_childhood.csv, Swedish Covenant Hospital Child Care,5140 N California Avenue ,60625,9071008,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3275,purple_binder_early_childhood.csv, Teach 21 Day Care Inc,4343 N Clarendon Avenue ,60613,2810069,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3276,purple_binder_early_childhood.csv, The Honey Tree Child Care,201 N Clark Street Floor 2 ,60606,5539100,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3277,purple_binder_early_childhood.csv, Thresholds - Mother's Project,1110 W Belmont Avenue ,60657,5373290,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3278,purple_binder_early_childhood.csv, Trinity Day Care Center,532 W 95th Street ,60628,4883511,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3279,purple_binder_early_childhood.csv, Trinity Resources Hope for Youth,5900 W Iowa Street ,60651,6260323,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3280,purple_binder_early_childhood.csv, Trinity Resources Progressive True Vine,5035 W Ohio Street ,60644,6268254,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3281,purple_binder_early_childhood.csv, Urban Family and Community Centers,4241 W Washington Boulevard ,60624,7228333,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3282,purple_binder_early_childhood.csv, V and J Day Care Center,1 E 113th Street ,60628,7853940,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3283,purple_binder_early_childhood.csv, Wayman Daycare Center,511 W Elm Street ,60610,9432120,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3284,purple_binder_early_childhood.csv, Woodlawn AME,6456 S Evans Avenue ,60637,6671400,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3285,purple_binder_early_childhood.csv, Woodlawn Organization,6040 S Harper Avenue ,60637,2885840,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3286,purple_binder_early_childhood.csv, Woodlawn Organization - Early Childhood Development Center,6450 S Champlain Avenue ,60637,3631238,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3287,purple_binder_early_childhood.csv, Woodlawn Organization - Early Childhood Development Center,950 E 61st Street ,60637,6673300,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3288,purple_binder_early_childhood.csv, Woodlawn T.W.O. Infant Toddler School,1445 E 65th Street ,60637,3245880,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3289,purple_binder_early_childhood.csv, YMCA Austin School,501 N Central Avenue ,60644,2879120,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3290,purple_binder_early_childhood.csv, YMCA Bowen School,2710 E 89th Street ,60617,9330166,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3291,purple_binder_early_childhood.csv, YMCA Duncan School,1001 W Roosevelt Road ,60608,7385456,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3292,purple_binder_early_childhood.csv, YMCA Garfield School,7 N Homan Avenue ,60624,2653900,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3293,purple_binder_early_childhood.csv, YMCA McCormick Tribune School,1834 N Lawndale Avenue ,60647,2352525,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3294,purple_binder_early_childhood.csv, YMCA North Lawndale,3449 W Arthington Street ,60624,6380773,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3295,purple_binder_early_childhood.csv, YMCA South Chicago II,8902 S Brandon Avenue ,60617,7217230,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3296,purple_binder_early_childhood.csv, YMCA South Chicago School,3039 E 91st Street ,60617,7219100,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3297,purple_binder_early_childhood.csv, YMCA South Side,6330 S Stony Island Avenue ,60637,9470700,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3298,purple_binder_early_childhood.csv, YMCA Wabash,3763 S Wabash Avenue ,60653,2850020,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3299,purple_binder_early_childhood.csv, YMCA West Side,5080 W Harrison Street ,60644,9553100,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3300,purple_binder_early_childhood.csv, YWCA Metropolitan Chicago,360 N Michigan Avenue ,60601,3726600,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3301,purple_binder_early_childhood.csv, Beasley,5255 S State Street ,60609,5351230,,,,,,,,,,,,,,,,,,,,,,,,,,Child Parent Center +3302,purple_binder_early_childhood.csv, Delano,3905 W Wilcox Street ,60624,5346450,,,,,,,,,,,,,,,,,,,,,,,,,,Child Parent Center +3303,purple_binder_early_childhood.csv, Dewey,638 W 54th Place ,60609,5351671,,,,,,,,,,,,,,,,,,,,,,,,,,Child Parent Center +3304,purple_binder_early_childhood.csv, Ferguson CPC,1420 N Hudson Avenue ,60610,5348580,,,,,,,,,,,,,,,,,,,,,,,,,,Child Parent Center +3305,purple_binder_early_childhood.csv, Hansberry,4055 W Arthington Street ,60624,5346931,,,,,,,,,,,,,,,,,,,,,,,,,,Child Parent Center +3306,purple_binder_early_childhood.csv, Herzl CPC,1401 S Hamlin Avenue ,60623,5341751,,,,,,,,,,,,,,,,,,,,,,,,,,Child Parent Center +3307,purple_binder_early_childhood.csv, Overton,4935 S Indiana Avenue ,60615,5351811,,,,,,,,,,,,,,,,,,,,,,,,,,Child Parent Center +3308,purple_binder_early_childhood.csv, Parker,328 W 69th Street ,60621,5353853,,,,,,,,,,,,,,,,,,,,,,,,,,Child Parent Center +3309,purple_binder_early_childhood.csv, Von Humboldt,1345 N Rockwell Street ,60622,5344668,,,,,,,,,,,,,,,,,,,,,,,,,,Child Parent Center +3310,purple_binder_early_childhood.csv, Wheatley,902 E 133rd Place ,60627,5355718,,,,,,,,,,,,,,,,,,,,,,,,,,Child Parent Center +3311,purple_binder_early_childhood.csv, Carole Robertson Center For Learning,3701 W Ogden Avenue ,60623,5228400,,,,,,,,,,,,,,,,,,,,,,,,,,Early Head Start +3312,purple_binder_early_childhood.csv, Carole Robertson Center For Learning,2929 W 19th Street ,60623,5211600,,,,,,,,,,,,,,,,,,,,,,,,,,Early Head Start +3313,purple_binder_early_childhood.csv, Catholic Charities Chicago - Chicago Lawn,3001 W 59th Street ,60629,9251085,,,,,,,,,,,,,,,,,,,,,,,,,,Early Head Start +3314,purple_binder_early_childhood.csv, Centers for New Horizons - Altgeld,941 E 132nd Street ,60627,4683055,,,,,,,,,,,,,,,,,,,,,,,,,,Early Head Start +3315,purple_binder_early_childhood.csv, Diversey Day Care,3003 W Touhy Avenue ,60647,3427777,,,,,,,,,,,,,,,,,,,,,,,,,,Early Head Start +3316,purple_binder_early_childhood.csv, El Hogar Del Nino,1718 S Loomis Street ,60608,5639796,,,,,,,,,,,,,,,,,,,,,,,,,,Early Head Start +3317,purple_binder_early_childhood.csv, Erie Neighborhood House,1347 W Erie Street ,60642,6663430,,,,,,,,,,,,,,,,,,,,,,,,,,Early Head Start +3318,purple_binder_early_childhood.csv, Firman Community Services - Early Beginnings,4705 S State Street ,60609,,,,,,,,,,,,,,,,,,,,,,,,,,,Early Head Start +3319,purple_binder_early_childhood.csv, First Start Children's Academy,4753 W Washington Boulevard ,60644,3794928,,,,,,,,,,,,,,,,,,,,,,,,,,Early Head Start +3320,purple_binder_early_childhood.csv, Gads Hill Center - Sinai Community Institute,2653 W Ogden Avenue ,60608,5211196,,,,,,,,,,,,,,,,,,,,,,,,,,Early Head Start +3321,purple_binder_early_childhood.csv, Hektoen Institute,1900 W Polk Street ,60612,8646560,,,,,,,,,,,,,,,,,,,,,,,,,,Early Head Start +3322,purple_binder_early_childhood.csv, Henry Booth House - Allison's Infant & Toddler Center,234 E 114th Street ,60628,8404502,,,,,,,,,,,,,,,,,,,,,,,,,,Early Head Start +3323,purple_binder_early_childhood.csv, Marcy Newberry Association,1073 W Maxwell Street ,60608,8297555,,,,,,,,,,,,,,,,,,,,,,,,,,Early Head Start +3324,purple_binder_early_childhood.csv, Marcy Newberry Association,1312 S Racine Avenue ,60608,7466024,,,,,,,,,,,,,,,,,,,,,,,,,,Early Head Start +3325,purple_binder_early_childhood.csv, North Avenue Day Nursery,2001 W Pierce Street ,60622,3424499,,,,,,,,,,,,,,,,,,,,,,,,,,Early Head Start +3326,purple_binder_early_childhood.csv, North Avenue Day Nursery,4339 W McLean Avenue ,60639,,,,,,,,,,,,,,,,,,,,,,,,,,,Early Head Start +3327,purple_binder_early_childhood.csv, Precious Infants & Tots Learning Center,624 E 47th Street ,60653,2682685,,,,,,,,,,,,,,,,,,,,,,,,,,Early Head Start +3328,purple_binder_early_childhood.csv, Rachel's Learning Center #1,3430 W Roosevelt Road ,60624,5330444,,,,,,,,,,,,,,,,,,,,,,,,,,Early Head Start +3329,purple_binder_early_childhood.csv, Rachel's Learning Center #2,5242 W North Avenue ,60639,2371444,,,,,,,,,,,,,,,,,,,,,,,,,,Early Head Start +3330,purple_binder_early_childhood.csv, Salvation Army,1631 E 71st Street ,60649,4937500,,,,,,,,,,,,,,,,,,,,,,,,,,Early Head Start +3331,purple_binder_early_childhood.csv, Whiz Kids Nursery Center,518 W 103rd Street ,60628,2339445,,,,,,,,,,,,,,,,,,,,,,,,,,Early Head Start +3332,purple_binder_early_childhood.csv, YMCA Garfield,7 N Homan Avenue ,60624,2653900,,,,,,,,,,,,,,,,,,,,,,,,,,Early Head Start +3333,purple_binder_early_childhood.csv, YMCA Marshall,3250 W Adams Street ,60624,2650145,,,,,,,,,,,,,,,,,,,,,,,,,,Early Head Start +3334,purple_binder_early_childhood.csv, YMCA North Lawndale,3449 W Arthington Street ,60624,6380773,,,,,,,,,,,,,,,,,,,,,,,,,,Early Head Start +3335,purple_binder_early_childhood.csv, C.C.C. Learning Center,219 S Dearborn Street ,60605,3538687,,,,,,,,,,,,,,,,,,,,,,,,,,Child Care +3336,purple_binder_early_childhood.csv, Haymarket Center,932 W. Washington Blvd ,60607,2267984,,,,,,,,,,,,,,,,,,,,,,,,,,Early Head Start From 0fe84a0fb6de1b8a01c91113f28490b524301338 Mon Sep 17 00:00:00 2001 From: RobKraft Date: Sun, 7 Mar 2021 12:44:38 -0600 Subject: [PATCH 04/33] Visual Studio solution file --- dedupe-examples.sln | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 dedupe-examples.sln diff --git a/dedupe-examples.sln b/dedupe-examples.sln new file mode 100644 index 00000000..f5b3459e --- /dev/null +++ b/dedupe-examples.sln @@ -0,0 +1,23 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.31025.194 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{888888A0-9F3D-457C-B088-3A5042F75D52}") = "dedupe-examples", "dedupe-examples.pyproj", "{D588098A-74ED-4CC7-A86F-26FF7F60504A}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {D588098A-74ED-4CC7-A86F-26FF7F60504A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D588098A-74ED-4CC7-A86F-26FF7F60504A}.Release|Any CPU.ActiveCfg = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {F7D1E09B-B615-4EAE-AC36-A75F5CECA2B4} + EndGlobalSection +EndGlobal From 387ba168ff97397ed996c6b1d170c1af12ae8495 Mon Sep 17 00:00:00 2001 From: RobKraft Date: Sun, 7 Mar 2021 12:44:46 -0600 Subject: [PATCH 05/33] gitignore files --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index d0f1e61c..f66985ba 100644 --- a/.gitignore +++ b/.gitignore @@ -28,3 +28,4 @@ pgsql_example/pgsql_init_db.py .idea /.vs/dedupe-examples/v16/.suo /.vs/slnx.sqlite +/dedupe-examples.pyproj.user From 3c8563b62bda05ad1c15b2df80039bb94531699d Mon Sep 17 00:00:00 2001 From: RobKraft Date: Tue, 9 Mar 2021 19:32:04 -0600 Subject: [PATCH 06/33] Input and Output "subfolders" in our S3 bucket --- s3_csv_example/s3_csv_example.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/s3_csv_example/s3_csv_example.py b/s3_csv_example/s3_csv_example.py index cad2f0b2..c00d0736 100644 --- a/s3_csv_example/s3_csv_example.py +++ b/s3_csv_example/s3_csv_example.py @@ -81,7 +81,7 @@ def readData(filename): # ## Setup input_file = 's3_csv_example_messy_input.csv' - output_file = 's3_csv_example_output.csv' + output_file = 'output/s3_csv_example_output.csv' settings_file = 's3_csv_example_learned_settings' training_file = 's3_csv_example_training.json' @@ -106,7 +106,7 @@ def readData(filename): filename = o.get('Key'); print(filename) data = s3_client.get_object(Bucket=bucket, Key=filename) - if filename[:2] == 's3': + if filename[:6] == 'input/': input_file = filename s3_client.download_file(bucket,filename,filename) s3files.append(filename) From 0e2778d24f51cb0c413b4b88f8ce5d7faea5bd03 Mon Sep 17 00:00:00 2001 From: RobKraft Date: Wed, 10 Mar 2021 07:28:34 -0600 Subject: [PATCH 07/33] Changes for input/ output/ paths --- s3_csv_example/s3_csv_example.py | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/s3_csv_example/s3_csv_example.py b/s3_csv_example/s3_csv_example.py index c00d0736..fa34cb4a 100644 --- a/s3_csv_example/s3_csv_example.py +++ b/s3_csv_example/s3_csv_example.py @@ -81,7 +81,8 @@ def readData(filename): # ## Setup input_file = 's3_csv_example_messy_input.csv' - output_file = 'output/s3_csv_example_output.csv' + output_file = 's3_csv_example_output.csv' + s3output_file = 'output/s3_csv_example_output.csv' settings_file = 's3_csv_example_learned_settings' training_file = 's3_csv_example_training.json' @@ -106,13 +107,14 @@ def readData(filename): filename = o.get('Key'); print(filename) data = s3_client.get_object(Bucket=bucket, Key=filename) - if filename[:6] == 'input/': + if filename[:6] == 'input/' and len(filename) > 6: input_file = filename - s3_client.download_file(bucket,filename,filename) - s3files.append(filename) - response = s3_client.delete_object( - Bucket=bucket, - Key=filename) + local_file = filename[6:] + s3_client.download_file(bucket,filename,local_file) + s3files.append(local_file) + #response = s3_client.delete_object( + # Bucket=bucket, + # Key=filename) print('importing data ...') data_d = {} @@ -198,8 +200,8 @@ def readData(filename): "Cluster ID": cluster_id, "confidence_score": score } - - with open(output_file, 'w') as f_output, open(input_file) as f_input: +#TODO - Local_File is wrong - need to process each input file + with open(output_file, 'w') as f_output, open(local_file) as f_input: reader = csv.DictReader(f_input) fieldnames = ['Cluster ID', 'confidence_score'] + reader.fieldnames @@ -212,6 +214,6 @@ def readData(filename): row.update(cluster_membership[row_id]) writer.writerow(row) s3 = boto3.resource('s3') - s3.meta.client.upload_file(output_file, output_bucket, output_file) + s3.meta.client.upload_file(output_file, output_bucket, s3output_file) os.remove(output_file) From 2734bd280a3750f26028bab289a8947b9769f00d Mon Sep 17 00:00:00 2001 From: RobKraft Date: Mon, 15 Mar 2021 16:43:12 -0500 Subject: [PATCH 08/33] Fix for /output path --- s3_csv_example/s3_csv_example.py | 32 +++++++++++++++++++------------- 1 file changed, 19 insertions(+), 13 deletions(-) diff --git a/s3_csv_example/s3_csv_example.py b/s3_csv_example/s3_csv_example.py index fa34cb4a..b4b7c9b0 100644 --- a/s3_csv_example/s3_csv_example.py +++ b/s3_csv_example/s3_csv_example.py @@ -79,10 +79,12 @@ def readData(filename): logging.getLogger().setLevel(log_level) # ## Setup + import time + timestr = time.strftime(".%Y.%m.%d-%H.%M.%S") input_file = 's3_csv_example_messy_input.csv' - output_file = 's3_csv_example_output.csv' - s3output_file = 'output/s3_csv_example_output.csv' + output_file = 's3_csv_example_output' + timestr + '.csv' + s3output_file = 'output/s3_csv_example_output' + timestr + '.csv' settings_file = 's3_csv_example_learned_settings' training_file = 's3_csv_example_training.json' @@ -97,7 +99,8 @@ def readData(filename): bucket = sys.argv[1] if len(sys.argv) > 1: output_bucket = sys.argv[2] - + #bucket='c4kc-cvax-deduplication' + #output_bucket=bucket s3files = [] import boto3 @@ -105,16 +108,17 @@ def readData(filename): result = s3_client.list_objects(Bucket = bucket, Prefix='') for o in result.get('Contents'): filename = o.get('Key'); - print(filename) - data = s3_client.get_object(Bucket=bucket, Key=filename) - if filename[:6] == 'input/' and len(filename) > 6: - input_file = filename - local_file = filename[6:] - s3_client.download_file(bucket,filename,local_file) - s3files.append(local_file) - #response = s3_client.delete_object( - # Bucket=bucket, - # Key=filename) + if filename[:7] != 'output/': + print(filename) + data = s3_client.get_object(Bucket=bucket, Key=filename) + if filename[:6] == 'input/' and len(filename) > 6: + input_file = filename + local_file = filename[6:] + s3_client.download_file(bucket,filename,local_file) + s3files.append(local_file) + #response = s3_client.delete_object( + # Bucket=bucket, + # Key=filename) print('importing data ...') data_d = {} @@ -217,3 +221,5 @@ def readData(filename): s3.meta.client.upload_file(output_file, output_bucket, s3output_file) os.remove(output_file) + #C:\Users\Administrator\AppData\Local\Programs\Python\Python39\python s3_csv_example.py c4kc-cvax-deduplication c4kc-cvax-deduplication + From 4da8e2ddae673c47b74c1ad8bad64b2f4913dc57 Mon Sep 17 00:00:00 2001 From: RobKraft Date: Mon, 15 Mar 2021 16:48:04 -0500 Subject: [PATCH 09/33] Delete in s3 Input file after downloading --- s3_csv_example/s3_csv_example.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/s3_csv_example/s3_csv_example.py b/s3_csv_example/s3_csv_example.py index b4b7c9b0..47e33618 100644 --- a/s3_csv_example/s3_csv_example.py +++ b/s3_csv_example/s3_csv_example.py @@ -116,9 +116,9 @@ def readData(filename): local_file = filename[6:] s3_client.download_file(bucket,filename,local_file) s3files.append(local_file) - #response = s3_client.delete_object( - # Bucket=bucket, - # Key=filename) + response = s3_client.delete_object( + Bucket=bucket, + Key=filename) print('importing data ...') data_d = {} From eceb9e2640749b278793d75178cb599f9f60a5ec Mon Sep 17 00:00:00 2001 From: Rob Kraft Date: Sun, 28 Mar 2021 09:08:39 -0500 Subject: [PATCH 10/33] Combining multiple input files - work in progress --- s3_csv_example/s3_csv_example.py | 72 +++++++++++++++++++------------- 1 file changed, 43 insertions(+), 29 deletions(-) diff --git a/s3_csv_example/s3_csv_example.py b/s3_csv_example/s3_csv_example.py index 47e33618..27125e5b 100644 --- a/s3_csv_example/s3_csv_example.py +++ b/s3_csv_example/s3_csv_example.py @@ -1,17 +1,8 @@ #!/usr/bin/python # -*- coding: utf-8 -*- """ -This code demonstrates how to use dedupe with a comma separated values -(CSV) file. All operations are performed in memory, so will run very -quickly on datasets up to ~10,000 rows. - -We start with a CSV file containing our messy data. In this example, -it is listings of early childhood education centers in Chicago -compiled from several different sources. - -The output will be a CSV with our clustered results. - -For larger datasets, see our [mysql_example](mysql_example.html) +This code shows how to read input files from an S3 bucket, purge the bucket from the S3 folder, +then write the output to a different path in the S3 bucket """ import os @@ -51,11 +42,16 @@ def readData(filename): reader = csv.DictReader(f) for row in reader: clean_row = [(k, preProcess(v)) for (k, v) in row.items()] - row_id = int(row['Id']) + row_id = str(int(row['FileNo'])) + '.' + str(int(row['Id'])) data_d[row_id] = dict(clean_row) return data_d +def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): + s3 = boto3.resource('s3') + s3.meta.client.upload_file(local_file_to_send, output_bucket, s3output_file) + os.remove(local_file_to_send) + if __name__ == '__main__': @@ -82,14 +78,12 @@ def readData(filename): import time timestr = time.strftime(".%Y.%m.%d-%H.%M.%S") - input_file = 's3_csv_example_messy_input.csv' output_file = 's3_csv_example_output' + timestr + '.csv' s3output_file = 'output/s3_csv_example_output' + timestr + '.csv' settings_file = 's3_csv_example_learned_settings' training_file = 's3_csv_example_training.json' scriptpath = os.path.dirname(__file__) - input_file = os.path.join(scriptpath, input_file) #output_file = os.path.join(scriptpath, output_file) settings_file = os.path.join(scriptpath, settings_file) training_file = os.path.join(scriptpath, training_file) @@ -108,25 +102,47 @@ def readData(filename): result = s3_client.list_objects(Bucket = bucket, Prefix='') for o in result.get('Contents'): filename = o.get('Key'); - if filename[:7] != 'output/': - print(filename) + if filename[:7] != 'output/': #don't process files that are in the /output path of the s3 bucket + data = s3_client.get_object(Bucket=bucket, Key=filename) if filename[:6] == 'input/' and len(filename) > 6: - input_file = filename - local_file = filename[6:] + print(filename) + local_file = filename[6:] #remove input/ from the name of the file s3_client.download_file(bucket,filename,local_file) s3files.append(local_file) - response = s3_client.delete_object( - Bucket=bucket, - Key=filename) + # response = s3_client.delete_object( + # Bucket=bucket, + # Key=filename) +#new stuff here + csv_header = 'Id,Source,Site name,Address,Zip,Phone,Fax,Program Name,Length of Day,IDHS Provider ID,Agency,Neighborhood,Funded Enrollment,Program Option,Number per Site EHS,Number per Site HS,Director,Head Start Fund,Eearly Head Start Fund,CC fund,Progmod,Website,Executive Director,Center Director,ECE Available Programs,NAEYC Valid Until,NAEYC Program Id,Email Address,Ounce of Prevention Description,Purple binder service type,Column,Column2' + csv_out = 'C:/Users/robkr/Source/Repos/dedupe-examples/s3_csv_example/combinedfile.csv' + csv_merge = open(csv_out, 'w') + csv_merge.write('FileNo,' + csv_header) + csv_merge.write('\n') + fileno = 1 + for file in s3files: + csv_in = open(file) + for line in csv_in: + if line.startswith(csv_header): + continue + csv_merge.write(str(fileno) + ',' + line) + csv_in.close() + fileno = fileno + 1 + csv_merge.close() + #results = pd.DataFrame([]) +#https://www.techbeamers.com/merge-multiple-csv-files/ + +#end new + print('importing data ...') data_d = {} - for eachFile in s3files: - data_d.update(readData(eachFile)) + data_d.update(readData(csv_out)) +# for eachFile in s3files: + # data_d.update(readData(eachFile)) if not data_d: - print('no files found to process in s3 bucket') + print('no files found to process in s3 bucket named: ' + bucket) os._exit(1) # If a settings file already exists, we'll just load that and skip training @@ -205,7 +221,7 @@ def readData(filename): "confidence_score": score } #TODO - Local_File is wrong - need to process each input file - with open(output_file, 'w') as f_output, open(local_file) as f_input: + with open(output_file, 'w') as f_output, open(csv_out) as f_input: reader = csv.DictReader(f_input) fieldnames = ['Cluster ID', 'confidence_score'] + reader.fieldnames @@ -214,12 +230,10 @@ def readData(filename): writer.writeheader() for row in reader: - row_id = int(row['Id']) + row_id = str(int(row['FileNo'])) + '.' + str(int(row['Id'])) row.update(cluster_membership[row_id]) writer.writerow(row) - s3 = boto3.resource('s3') - s3.meta.client.upload_file(output_file, output_bucket, s3output_file) - os.remove(output_file) + writeToS3Bucket(output_file, output_bucket, s3output_file) #C:\Users\Administrator\AppData\Local\Programs\Python\Python39\python s3_csv_example.py c4kc-cvax-deduplication c4kc-cvax-deduplication From e3fa1e8f51d377ec04ebaad71f8648ea12fe6fcf Mon Sep 17 00:00:00 2001 From: Rob Kraft Date: Sat, 3 Apr 2021 20:14:20 -0500 Subject: [PATCH 11/33] Writing Comebackkc actual data - also renaming headers --- s3_csv_example/s3_csv_example.py | 131 ++++++++++++++++++++++--------- 1 file changed, 95 insertions(+), 36 deletions(-) diff --git a/s3_csv_example/s3_csv_example.py b/s3_csv_example/s3_csv_example.py index 27125e5b..cda6b427 100644 --- a/s3_csv_example/s3_csv_example.py +++ b/s3_csv_example/s3_csv_example.py @@ -31,7 +31,7 @@ def preProcess(column): return column -def readData(filename): +def readData(filename, idcol): """ Read in our data from a CSV file and create a dictionary of records, where the key is a unique record ID and each value is dict @@ -42,7 +42,7 @@ def readData(filename): reader = csv.DictReader(f) for row in reader: clean_row = [(k, preProcess(v)) for (k, v) in row.items()] - row_id = str(int(row['FileNo'])) + '.' + str(int(row['Id'])) + row_id = str(int(row['FileNo'])) + '.' + str(int(row[idcol])) data_d[row_id] = dict(clean_row) return data_d @@ -78,10 +78,17 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): import time timestr = time.strftime(".%Y.%m.%d-%H.%M.%S") + FileSource = "comebackkc1" output_file = 's3_csv_example_output' + timestr + '.csv' s3output_file = 'output/s3_csv_example_output' + timestr + '.csv' - settings_file = 's3_csv_example_learned_settings' - training_file = 's3_csv_example_training.json' + if FileSource == "dedupesample": + settings_file = 's3_csv_example_learned_settings' + training_file = 's3_csv_example_training.json' + idcol = 'Id' + else: #FileSource = "comebackkc1" + settings_file = 'reals3_csv_example_learned_settings' + training_file = 'reals3_csv_example_training.json' + idcol = 'Receipt Number' scriptpath = os.path.dirname(__file__) #output_file = os.path.join(scriptpath, output_file) @@ -93,53 +100,93 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): bucket = sys.argv[1] if len(sys.argv) > 1: output_bucket = sys.argv[2] - #bucket='c4kc-cvax-deduplication' - #output_bucket=bucket + bucket='c4kc-cvax-deduplication' + output_bucket=bucket s3files = [] import boto3 s3_client = boto3.client('s3') - result = s3_client.list_objects(Bucket = bucket, Prefix='') - for o in result.get('Contents'): - filename = o.get('Key'); - if filename[:7] != 'output/': #don't process files that are in the /output path of the s3 bucket + if FileSource == "dedupesample": + result = s3_client.list_objects(Bucket = bucket, Prefix='') + for o in result.get('Contents'): + filename = o.get('Key'); + if filename[:7] != 'output/': #don't process files that are in the /output path of the s3 bucket - data = s3_client.get_object(Bucket=bucket, Key=filename) - if filename[:6] == 'input/' and len(filename) > 6: - print(filename) - local_file = filename[6:] #remove input/ from the name of the file - s3_client.download_file(bucket,filename,local_file) - s3files.append(local_file) - # response = s3_client.delete_object( - # Bucket=bucket, - # Key=filename) + data = s3_client.get_object(Bucket=bucket, Key=filename) + if filename[:6] == 'input/' and len(filename) > 6: + print(filename) + local_file = filename[6:] #remove input/ from the name of the file + s3_client.download_file(bucket,filename,local_file) + s3files.append(local_file) + # response = s3_client.delete_object( + # Bucket=bucket, + # Key=filename) + csv_header = 'Id,Source,Site name,Address,Zip,Phone,Fax,Program Name,Length of Day,IDHS Provider ID,Agency,Neighborhood,Funded Enrollment,Program Option,Number per Site EHS,Number per Site HS,Director,Head Start Fund,Eearly Head Start Fund,CC fund,Progmod,Website,Executive Director,Center Director,ECE Available Programs,NAEYC Valid Until,NAEYC Program Id,Email Address,Ounce of Prevention Description,Purple binder service type,Column,Column2' + else: #FileSource = "comebackkc1" + s3files.append('C:/Users/robkr/Downloads/ResponseExport-KCRegionalCOVID19VaccinationSurvey-20210323 (1)/ResponseExport-KCRegionalCOVID19VaccinationSurvey-20210323.csv') + csv_header = 'Receipt Number,Response Reference ID,Respondent Email,URL submitted from,Form version submitted in,Response Submission DateTime,Time Taken To Complete (seconds),External ID,External Status,Are you planning to receive the COVID-19 vaccine?,What makes you uncertain about receiving the COVID-19 vaccine?,When would you like to get your first dose of the COVID-19 vaccine?,What state do you live in?,Which Kansas county do you live in?,"Do you live within the city limits of Kansas City, MO?",Which Missouri county do you live in?,What is your zip code?,First Name,Last Name,Street Address,City,"Phone number (please enter numbers only, no dashes, spaces, or parentheses)",Email address,What is your preferred method of contact?,We need your permission to contact you about COVID-19 testing and vaccination.,Is it okay for us to leave you a voicemail?,Sex,Age,Race/ethnicity (check as many as apply),"Do you have any pre-existing medical conditions or do you have any conditions that put you at increased risk of severe illness? (i.e. immunocompromised, diabetes, chronic lung conditions, cardiovascular disease, morbid obesity, etc.)","Do you live in or visit often crowded living settings? (For example, a supportive care facility, assisted living facility, group home, homeless shelter, or correctional setting)","How many members, including yourself, live in your household?",Do you have a history of any of the following pre-existing medical conditions?,Are you immuno-compromised?,What is your work status?,"What is your work zip code, either where you normally work in the office or on location or the zip code of your employers primary office?",Are you employed by any of the following types of patient-facing organizations?,What is the name of the health care provider for which you work?,Are you responsible for or in a position to influence vaccination planning for your employer or another organization?,What is the name of your employer or other organization?,What is your job title or role at your organization?' #new stuff here - csv_header = 'Id,Source,Site name,Address,Zip,Phone,Fax,Program Name,Length of Day,IDHS Provider ID,Agency,Neighborhood,Funded Enrollment,Program Option,Number per Site EHS,Number per Site HS,Director,Head Start Fund,Eearly Head Start Fund,CC fund,Progmod,Website,Executive Director,Center Director,ECE Available Programs,NAEYC Valid Until,NAEYC Program Id,Email Address,Ounce of Prevention Description,Purple binder service type,Column,Column2' csv_out = 'C:/Users/robkr/Source/Repos/dedupe-examples/s3_csv_example/combinedfile.csv' + + + + fileno = 1 + count = -1 csv_merge = open(csv_out, 'w') - csv_merge.write('FileNo,' + csv_header) + csv_headerNew = 'Receipt Number,Response Reference ID,Respondent Email,URL submitted from,Form version submitted in,Response Submission DateTime,Time Taken To Complete (seconds),External ID,External Status,Are you planning to receive the COVID-19 vaccine?,What makes you uncertain about receiving the COVID-19 vaccine?,When would you like to get your first dose of the COVID-19 vaccine?,What state do you live in?,Which Kansas county do you live in?,"Do you live within the city limits of Kansas City, MO?",Which Missouri county do you live in?,Zip,FirstName,LastName,Street Address,City,"Phone",Email,What is your preferred method of contact?,We need your permission to contact you about COVID-19 testing and vaccination.,Is it okay for us to leave you a voicemail?,Sex,Age,Race/ethnicity (check as many as apply),"Do you have any pre-existing medical conditions or do you have any conditions that put you at increased risk of severe illness? (i.e. immunocompromised, diabetes, chronic lung conditions, cardiovascular disease, morbid obesity, etc.)","Do you live in or visit often crowded living settings? (For example, a supportive care facility, assisted living facility, group home, homeless shelter, or correctional setting)","How many members, including yourself, live in your household?",Do you have a history of any of the following pre-existing medical conditions?,Are you immuno-compromised?,What is your work status?,"What is your work zip code, either where you normally work in the office or on location or the zip code of your employers primary office?",Are you employed by any of the following types of patient-facing organizations?,What is the name of the health care provider for which you work?,Are you responsible for or in a position to influence vaccination planning for your employer or another organization?,What is the name of your employer or other organization?,What is your job title or role at your organization?' + csv_merge.write('FileNo,' + csv_headerNew) csv_merge.write('\n') - fileno = 1 for file in s3files: - csv_in = open(file) + csv_in = open(file,"r",encoding='utf-8') #https://stackoverflow.com/questions/49562499/how-to-fix-unicodedecodeerror-charmap-codec-cant-decode-byte-0x9d-in-posit for line in csv_in: - if line.startswith(csv_header): + if count < 1: #line.startswith(csv_header): + count = count + 1 continue csv_merge.write(str(fileno) + ',' + line) + print(count) + count = count + 1 csv_in.close() fileno = fileno + 1 csv_merge.close() + + #'Email','Zip','FirstName','LastName','City','Phone' + + #fields = [ + # {'field': 'Email address', 'type': 'Exact', 'has missing': True}, + # {'field': 'What is your zip code?', 'type': 'String'}, + # {'field': 'First Name', 'type': 'String'}, + # {'field': 'Last Name', 'type': 'String'}, + # {'field': 'City', 'type': 'String'}, + # {'field': 'What is your zip code?', 'type': 'Exact', 'has missing': True}, + # {'field': 'Phone number (please enter numbers only, no dashes, spaces, or parentheses)', 'type': 'String', 'has missing': True}, + # ] + #with open(output_file, 'w') as f_output, open(csv_out) as f_input: + + # newcols = [] + # reader = csv.DictReader(f_input) + # for colname in reader.fieldnames: + # colname = str.replace(colname,"First Name","FirstName") + # colname = str.replace(colname,"Last Name","LastName") + # colname = str.replace(colname,"Email address","Email") + # colname = str.replace(colname,"Phone number (please enter numbers only, no dashes, spaces, or parentheses)","Phone") + # colname = str.replace(colname,"What is your zip code?","Zip") + # newcols.append(colname) + + #writer = csv.DictWriter(f_output, fieldnames=newcols) + #writer.writeheader() + + #results = pd.DataFrame([]) #https://www.techbeamers.com/merge-multiple-csv-files/ + #csv_header = 'Receipt Number,Response Reference ID,Respondent Email,URL submitted from,Form version submitted in,Response Submission DateTime,Time Taken To Complete (seconds),External ID,External Status,Are you planning to receive the COVID-19 vaccine?,What makes you uncertain about receiving the COVID-19 vaccine?,When would you like to get your first dose of the COVID-19 vaccine?,What state do you live in?,Which Kansas county do you live in?,"Do you live within the city limits of Kansas City, MO?",Which Missouri county do you live in?,What is your zip code?,First Name,Last Name,Street Address,City,"Phone number (please enter numbers only, no dashes, spaces, or parentheses)",Email address,What is your preferred method of contact?,We need your permission to contact you about COVID-19 testing and vaccination.,Is it okay for us to leave you a voicemail?,Sex,Age,Race/ethnicity (check as many as apply),"Do you have any pre-existing medical conditions or do you have any conditions that put you at increased risk of severe illness? (i.e. immunocompromised, diabetes, chronic lung conditions, cardiovascular disease, morbid obesity, etc.)","Do you live in or visit often crowded living settings? (For example, a supportive care facility, assisted living facility, group home, homeless shelter, or correctional setting)","How many members, including yourself, live in your household?",Do you have a history of any of the following pre-existing medical conditions?,Are you immuno-compromised?,What is your work status?,"What is your work zip code, either where you normally work in the office or on location or the zip code of your employers primary office?",Are you employed by any of the following types of patient-facing organizations?,What is the name of the health care provider for which you work?,Are you responsible for or in a position to influence vaccination planning for your employer or another organization?,What is the name of your employer or other organization?,What is your job title or role at your organization?' #end new - print('importing data ...') data_d = {} - data_d.update(readData(csv_out)) + data_d.update(readData(csv_out, idcol)) # for eachFile in s3files: - # data_d.update(readData(eachFile)) + # data_d.update(readData(eachFile, idcol)) if not data_d: print('no files found to process in s3 bucket named: ' + bucket) @@ -154,13 +201,23 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): # ## Training # Define the fields dedupe will pay attention to - fields = [ - {'field': 'Site name', 'type': 'String'}, - {'field': 'Address', 'type': 'String'}, - {'field': 'Zip', 'type': 'Exact', 'has missing': True}, - {'field': 'Phone', 'type': 'String', 'has missing': True}, - ] - + if FileSource == "dedupesample": + fields = [ + {'field': 'Site name', 'type': 'String'}, + {'field': 'Address', 'type': 'String'}, + {'field': 'Zip', 'type': 'Exact', 'has missing': True}, + {'field': 'Phone', 'type': 'String', 'has missing': True}, + ] + else: #FileSource = "comebackkc1" + fields = [ + {'field': 'Email', 'type': 'Exact', 'has missing': True}, + {'field': 'Zip', 'type': 'String'}, + {'field': 'FirstName', 'type': 'String'}, + {'field': 'LastName', 'type': 'String'}, + {'field': 'City', 'type': 'String'}, + {'field': 'Zip', 'type': 'Exact', 'has missing': True}, + {'field': 'Phone', 'type': 'String', 'has missing': True}, + ] # Create a new deduper object and pass our data model to it. deduper = dedupe.Dedupe(fields) @@ -220,7 +277,7 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): "Cluster ID": cluster_id, "confidence_score": score } -#TODO - Local_File is wrong - need to process each input file + with open(output_file, 'w') as f_output, open(csv_out) as f_input: reader = csv.DictReader(f_input) @@ -230,10 +287,12 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): writer.writeheader() for row in reader: - row_id = str(int(row['FileNo'])) + '.' + str(int(row['Id'])) + row_id = str(int(row['FileNo'])) + '.' + str(int(row[idcol])) row.update(cluster_membership[row_id]) writer.writerow(row) writeToS3Bucket(output_file, output_bucket, s3output_file) #C:\Users\Administrator\AppData\Local\Programs\Python\Python39\python s3_csv_example.py c4kc-cvax-deduplication c4kc-cvax-deduplication + #data sort, by confidence id smallest to largest then cluster id + \ No newline at end of file From f66282486b018fdd4254b6b567d8be4cea30ca3d Mon Sep 17 00:00:00 2001 From: Rob Kraft Date: Tue, 6 Apr 2021 19:06:43 -0500 Subject: [PATCH 12/33] Refactoring for easier enhancements --- s3_csv_example/s3_csv_example.py | 84 +++++++++++++++----------------- 1 file changed, 39 insertions(+), 45 deletions(-) diff --git a/s3_csv_example/s3_csv_example.py b/s3_csv_example/s3_csv_example.py index cda6b427..41a3b5b4 100644 --- a/s3_csv_example/s3_csv_example.py +++ b/s3_csv_example/s3_csv_example.py @@ -31,7 +31,7 @@ def preProcess(column): return column -def readData(filename, idcol): +def readData(filename): """ Read in our data from a CSV file and create a dictionary of records, where the key is a unique record ID and each value is dict @@ -42,7 +42,7 @@ def readData(filename, idcol): reader = csv.DictReader(f) for row in reader: clean_row = [(k, preProcess(v)) for (k, v) in row.items()] - row_id = str(int(row['FileNo'])) + '.' + str(int(row[idcol])) + row_id = str(int(row[fieldNameFileNo])) + '.' + str(int(row[fieldNameIdCol])) data_d[row_id] = dict(clean_row) return data_d @@ -77,18 +77,23 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): # ## Setup import time timestr = time.strftime(".%Y.%m.%d-%H.%M.%S") - + + fieldNameFileNo = 'FileNo' #not dynamic - we totally control this + fieldNameFileName = 'FileName' #not dynamic - we totally control this + fieldNameIdInSource = 'IdInSource' #not dynamic - we totally control this + fieldNameClusterId = 'ClusterId' #not dynamic - we totally control this + fieldNameConfidence = 'ConfidenceScore' #not dynamic - we totally control this FileSource = "comebackkc1" output_file = 's3_csv_example_output' + timestr + '.csv' s3output_file = 'output/s3_csv_example_output' + timestr + '.csv' if FileSource == "dedupesample": settings_file = 's3_csv_example_learned_settings' training_file = 's3_csv_example_training.json' - idcol = 'Id' + fieldNameIdCol = 'Id' else: #FileSource = "comebackkc1" settings_file = 'reals3_csv_example_learned_settings' training_file = 'reals3_csv_example_training.json' - idcol = 'Receipt Number' + fieldNameIdCol = fieldNameIdInSource scriptpath = os.path.dirname(__file__) #output_file = os.path.join(scriptpath, output_file) @@ -128,53 +133,29 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): #new stuff here csv_out = 'C:/Users/robkr/Source/Repos/dedupe-examples/s3_csv_example/combinedfile.csv' - - - fileno = 1 + fileno = 1 #Used to make the key independent per record when we combine multiple input files count = -1 csv_merge = open(csv_out, 'w') - csv_headerNew = 'Receipt Number,Response Reference ID,Respondent Email,URL submitted from,Form version submitted in,Response Submission DateTime,Time Taken To Complete (seconds),External ID,External Status,Are you planning to receive the COVID-19 vaccine?,What makes you uncertain about receiving the COVID-19 vaccine?,When would you like to get your first dose of the COVID-19 vaccine?,What state do you live in?,Which Kansas county do you live in?,"Do you live within the city limits of Kansas City, MO?",Which Missouri county do you live in?,Zip,FirstName,LastName,Street Address,City,"Phone",Email,What is your preferred method of contact?,We need your permission to contact you about COVID-19 testing and vaccination.,Is it okay for us to leave you a voicemail?,Sex,Age,Race/ethnicity (check as many as apply),"Do you have any pre-existing medical conditions or do you have any conditions that put you at increased risk of severe illness? (i.e. immunocompromised, diabetes, chronic lung conditions, cardiovascular disease, morbid obesity, etc.)","Do you live in or visit often crowded living settings? (For example, a supportive care facility, assisted living facility, group home, homeless shelter, or correctional setting)","How many members, including yourself, live in your household?",Do you have a history of any of the following pre-existing medical conditions?,Are you immuno-compromised?,What is your work status?,"What is your work zip code, either where you normally work in the office or on location or the zip code of your employers primary office?",Are you employed by any of the following types of patient-facing organizations?,What is the name of the health care provider for which you work?,Are you responsible for or in a position to influence vaccination planning for your employer or another organization?,What is the name of your employer or other organization?,What is your job title or role at your organization?' - csv_merge.write('FileNo,' + csv_headerNew) + #replacing Receipt Number with IDinSource in this file!!! + csv_headerNew = fieldNameIdInSource + ',Response Reference ID,Respondent Email,URL submitted from,Form version submitted in,Response Submission DateTime,Time Taken To Complete (seconds),External ID,External Status,Are you planning to receive the COVID-19 vaccine?,What makes you uncertain about receiving the COVID-19 vaccine?,When would you like to get your first dose of the COVID-19 vaccine?,What state do you live in?,Which Kansas county do you live in?,"Do you live within the city limits of Kansas City, MO?",Which Missouri county do you live in?,Zip,FirstName,LastName,Street Address,City,"Phone",Email,What is your preferred method of contact?,We need your permission to contact you about COVID-19 testing and vaccination.,Is it okay for us to leave you a voicemail?,Sex,Age,Race/ethnicity (check as many as apply),"Do you have any pre-existing medical conditions or do you have any conditions that put you at increased risk of severe illness? (i.e. immunocompromised, diabetes, chronic lung conditions, cardiovascular disease, morbid obesity, etc.)","Do you live in or visit often crowded living settings? (For example, a supportive care facility, assisted living facility, group home, homeless shelter, or correctional setting)","How many members, including yourself, live in your household?",Do you have a history of any of the following pre-existing medical conditions?,Are you immuno-compromised?,What is your work status?,"What is your work zip code, either where you normally work in the office or on location or the zip code of your employers primary office?",Are you employed by any of the following types of patient-facing organizations?,What is the name of the health care provider for which you work?,Are you responsible for or in a position to influence vaccination planning for your employer or another organization?,What is the name of your employer or other organization?,What is your job title or role at your organization?' + csv_merge.write(fieldNameFileName + ',' + fieldNameFileNo + ',' + csv_headerNew) csv_merge.write('\n') for file in s3files: + firstpos=file.rfind("/") + lastpos=len(file) + filenameonly = file[firstpos+1:lastpos] csv_in = open(file,"r",encoding='utf-8') #https://stackoverflow.com/questions/49562499/how-to-fix-unicodedecodeerror-charmap-codec-cant-decode-byte-0x9d-in-posit for line in csv_in: if count < 1: #line.startswith(csv_header): count = count + 1 continue - csv_merge.write(str(fileno) + ',' + line) + csv_merge.write(filenameonly + ',' + str(fileno) + ',' + line) print(count) count = count + 1 csv_in.close() fileno = fileno + 1 csv_merge.close() - #'Email','Zip','FirstName','LastName','City','Phone' - - #fields = [ - # {'field': 'Email address', 'type': 'Exact', 'has missing': True}, - # {'field': 'What is your zip code?', 'type': 'String'}, - # {'field': 'First Name', 'type': 'String'}, - # {'field': 'Last Name', 'type': 'String'}, - # {'field': 'City', 'type': 'String'}, - # {'field': 'What is your zip code?', 'type': 'Exact', 'has missing': True}, - # {'field': 'Phone number (please enter numbers only, no dashes, spaces, or parentheses)', 'type': 'String', 'has missing': True}, - # ] - #with open(output_file, 'w') as f_output, open(csv_out) as f_input: - - # newcols = [] - # reader = csv.DictReader(f_input) - # for colname in reader.fieldnames: - # colname = str.replace(colname,"First Name","FirstName") - # colname = str.replace(colname,"Last Name","LastName") - # colname = str.replace(colname,"Email address","Email") - # colname = str.replace(colname,"Phone number (please enter numbers only, no dashes, spaces, or parentheses)","Phone") - # colname = str.replace(colname,"What is your zip code?","Zip") - # newcols.append(colname) - - #writer = csv.DictWriter(f_output, fieldnames=newcols) - #writer.writeheader() - #results = pd.DataFrame([]) #https://www.techbeamers.com/merge-multiple-csv-files/ @@ -184,7 +165,7 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): print('importing data ...') data_d = {} - data_d.update(readData(csv_out, idcol)) + data_d.update(readData(csv_out)) # for eachFile in s3files: # data_d.update(readData(eachFile, idcol)) @@ -192,7 +173,13 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): print('no files found to process in s3 bucket named: ' + bucket) os._exit(1) - # If a settings file already exists, we'll just load that and skip training + fieldNameSourceFileUniqueId='' + if FileSource == "dedupesample": + outputfieldnames = reader.fieldnames + else: #FileSource = "comebackkc1" + fieldNameSourceFileUniqueId = 'Response Reference ID' #this is probably different for each file - a GUID in some cases + outputfieldnames = [fieldNameFileName,fieldNameFileNo,fieldNameIdInSource,fieldNameSourceFileUniqueId,'FirstName', 'LastName','Email','City','Phone','Zip'] + # If a settings file already exists, we'll just load that and skip training if os.path.exists(settings_file): print('reading from', settings_file) with open(settings_file, 'rb') as f: @@ -218,6 +205,7 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): {'field': 'Zip', 'type': 'Exact', 'has missing': True}, {'field': 'Phone', 'type': 'String', 'has missing': True}, ] + # Create a new deduper object and pass our data model to it. deduper = dedupe.Dedupe(fields) @@ -274,22 +262,28 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): for cluster_id, (records, scores) in enumerate(clustered_dupes): for record_id, score in zip(records, scores): cluster_membership[record_id] = { - "Cluster ID": cluster_id, - "confidence_score": score + fieldNameClusterId: cluster_id, + fieldNameConfidence: score } with open(output_file, 'w') as f_output, open(csv_out) as f_input: reader = csv.DictReader(f_input) - fieldnames = ['Cluster ID', 'confidence_score'] + reader.fieldnames - + fieldnames = [fieldNameClusterId, fieldNameConfidence] + outputfieldnames writer = csv.DictWriter(f_output, fieldnames=fieldnames) writer.writeheader() for row in reader: - row_id = str(int(row['FileNo'])) + '.' + str(int(row[idcol])) + row_id = str(int(row[fieldNameFileNo])) + '.' + str(int(row[fieldNameIdCol])) row.update(cluster_membership[row_id]) - writer.writerow(row) + + newrow = {fieldNameFileName: row[fieldNameFileName], fieldNameFileNo: row[fieldNameFileNo], + fieldNameIdInSource: row[fieldNameIdInSource], fieldNameSourceFileUniqueId:row[fieldNameSourceFileUniqueId], + 'FirstName': row['FirstName'], 'LastName': row['LastName'] + , 'City': row['City'], 'Zip': row['Zip'] + , 'Phone': row['Phone'], 'Email': row['Email'] + , fieldNameClusterId: row[fieldNameClusterId], fieldNameConfidence: row[fieldNameConfidence]} + writer.writerow(newrow) writeToS3Bucket(output_file, output_bucket, s3output_file) #C:\Users\Administrator\AppData\Local\Programs\Python\Python39\python s3_csv_example.py c4kc-cvax-deduplication c4kc-cvax-deduplication From 1abad9584a0f31c00e78266f0e29c33897f02d85 Mon Sep 17 00:00:00 2001 From: Rob Kraft Date: Wed, 7 Apr 2021 18:21:37 -0500 Subject: [PATCH 13/33] Read headers in from mappings.csv --- s3_csv_example/s3_csv_example.py | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) diff --git a/s3_csv_example/s3_csv_example.py b/s3_csv_example/s3_csv_example.py index 41a3b5b4..7afad275 100644 --- a/s3_csv_example/s3_csv_example.py +++ b/s3_csv_example/s3_csv_example.py @@ -30,6 +30,18 @@ def preProcess(column): column = None return column +def readMappings(filename): + + + data_d = {} + with open(mappings_file) as f: + reader = csv.DictReader(f) + for row in reader: + fldSource = str(row['Source']) + clean_row = [(k, preProcess(v)) for (k, v) in row.items()] + data_d[fldSource] = dict(clean_row) + + return data_d def readData(filename): """ @@ -74,6 +86,7 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): log_level = logging.DEBUG logging.getLogger().setLevel(log_level) + # ## Setup import time timestr = time.strftime(".%Y.%m.%d-%H.%M.%S") @@ -95,10 +108,15 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): training_file = 'reals3_csv_example_training.json' fieldNameIdCol = fieldNameIdInSource + mappings_file = 'Mappings.csv' scriptpath = os.path.dirname(__file__) #output_file = os.path.join(scriptpath, output_file) settings_file = os.path.join(scriptpath, settings_file) training_file = os.path.join(scriptpath, training_file) + mappings_file = os.path.join(scriptpath, mappings_file) + + header_map = {} + header_map.update(readMappings(mappings_file)) import sys if len(sys.argv) > 1: @@ -126,10 +144,10 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): # response = s3_client.delete_object( # Bucket=bucket, # Key=filename) - csv_header = 'Id,Source,Site name,Address,Zip,Phone,Fax,Program Name,Length of Day,IDHS Provider ID,Agency,Neighborhood,Funded Enrollment,Program Option,Number per Site EHS,Number per Site HS,Director,Head Start Fund,Eearly Head Start Fund,CC fund,Progmod,Website,Executive Director,Center Director,ECE Available Programs,NAEYC Valid Until,NAEYC Program Id,Email Address,Ounce of Prevention Description,Purple binder service type,Column,Column2' + #csv_header = 'Id,Source,Site name,Address,Zip,Phone,Fax,Program Name,Length of Day,IDHS Provider ID,Agency,Neighborhood,Funded Enrollment,Program Option,Number per Site EHS,Number per Site HS,Director,Head Start Fund,Eearly Head Start Fund,CC fund,Progmod,Website,Executive Director,Center Director,ECE Available Programs,NAEYC Valid Until,NAEYC Program Id,Email Address,Ounce of Prevention Description,Purple binder service type,Column,Column2' else: #FileSource = "comebackkc1" s3files.append('C:/Users/robkr/Downloads/ResponseExport-KCRegionalCOVID19VaccinationSurvey-20210323 (1)/ResponseExport-KCRegionalCOVID19VaccinationSurvey-20210323.csv') - csv_header = 'Receipt Number,Response Reference ID,Respondent Email,URL submitted from,Form version submitted in,Response Submission DateTime,Time Taken To Complete (seconds),External ID,External Status,Are you planning to receive the COVID-19 vaccine?,What makes you uncertain about receiving the COVID-19 vaccine?,When would you like to get your first dose of the COVID-19 vaccine?,What state do you live in?,Which Kansas county do you live in?,"Do you live within the city limits of Kansas City, MO?",Which Missouri county do you live in?,What is your zip code?,First Name,Last Name,Street Address,City,"Phone number (please enter numbers only, no dashes, spaces, or parentheses)",Email address,What is your preferred method of contact?,We need your permission to contact you about COVID-19 testing and vaccination.,Is it okay for us to leave you a voicemail?,Sex,Age,Race/ethnicity (check as many as apply),"Do you have any pre-existing medical conditions or do you have any conditions that put you at increased risk of severe illness? (i.e. immunocompromised, diabetes, chronic lung conditions, cardiovascular disease, morbid obesity, etc.)","Do you live in or visit often crowded living settings? (For example, a supportive care facility, assisted living facility, group home, homeless shelter, or correctional setting)","How many members, including yourself, live in your household?",Do you have a history of any of the following pre-existing medical conditions?,Are you immuno-compromised?,What is your work status?,"What is your work zip code, either where you normally work in the office or on location or the zip code of your employers primary office?",Are you employed by any of the following types of patient-facing organizations?,What is the name of the health care provider for which you work?,Are you responsible for or in a position to influence vaccination planning for your employer or another organization?,What is the name of your employer or other organization?,What is your job title or role at your organization?' + #csv_header = 'Receipt Number,Response Reference ID,Respondent Email,URL submitted from,Form version submitted in,Response Submission DateTime,Time Taken To Complete (seconds),External ID,External Status,Are you planning to receive the COVID-19 vaccine?,What makes you uncertain about receiving the COVID-19 vaccine?,When would you like to get your first dose of the COVID-19 vaccine?,What state do you live in?,Which Kansas county do you live in?,"Do you live within the city limits of Kansas City, MO?",Which Missouri county do you live in?,What is your zip code?,First Name,Last Name,Street Address,City,"Phone number (please enter numbers only, no dashes, spaces, or parentheses)",Email address,What is your preferred method of contact?,We need your permission to contact you about COVID-19 testing and vaccination.,Is it okay for us to leave you a voicemail?,Sex,Age,Race/ethnicity (check as many as apply),"Do you have any pre-existing medical conditions or do you have any conditions that put you at increased risk of severe illness? (i.e. immunocompromised, diabetes, chronic lung conditions, cardiovascular disease, morbid obesity, etc.)","Do you live in or visit often crowded living settings? (For example, a supportive care facility, assisted living facility, group home, homeless shelter, or correctional setting)","How many members, including yourself, live in your household?",Do you have a history of any of the following pre-existing medical conditions?,Are you immuno-compromised?,What is your work status?,"What is your work zip code, either where you normally work in the office or on location or the zip code of your employers primary office?",Are you employed by any of the following types of patient-facing organizations?,What is the name of the health care provider for which you work?,Are you responsible for or in a position to influence vaccination planning for your employer or another organization?,What is the name of your employer or other organization?,What is your job title or role at your organization?' #new stuff here csv_out = 'C:/Users/robkr/Source/Repos/dedupe-examples/s3_csv_example/combinedfile.csv' @@ -137,6 +155,7 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): count = -1 csv_merge = open(csv_out, 'w') #replacing Receipt Number with IDinSource in this file!!! + #TODO - Read in Headers and do a replace of header names based on the mappings. csv_headerNew = fieldNameIdInSource + ',Response Reference ID,Respondent Email,URL submitted from,Form version submitted in,Response Submission DateTime,Time Taken To Complete (seconds),External ID,External Status,Are you planning to receive the COVID-19 vaccine?,What makes you uncertain about receiving the COVID-19 vaccine?,When would you like to get your first dose of the COVID-19 vaccine?,What state do you live in?,Which Kansas county do you live in?,"Do you live within the city limits of Kansas City, MO?",Which Missouri county do you live in?,Zip,FirstName,LastName,Street Address,City,"Phone",Email,What is your preferred method of contact?,We need your permission to contact you about COVID-19 testing and vaccination.,Is it okay for us to leave you a voicemail?,Sex,Age,Race/ethnicity (check as many as apply),"Do you have any pre-existing medical conditions or do you have any conditions that put you at increased risk of severe illness? (i.e. immunocompromised, diabetes, chronic lung conditions, cardiovascular disease, morbid obesity, etc.)","Do you live in or visit often crowded living settings? (For example, a supportive care facility, assisted living facility, group home, homeless shelter, or correctional setting)","How many members, including yourself, live in your household?",Do you have a history of any of the following pre-existing medical conditions?,Are you immuno-compromised?,What is your work status?,"What is your work zip code, either where you normally work in the office or on location or the zip code of your employers primary office?",Are you employed by any of the following types of patient-facing organizations?,What is the name of the health care provider for which you work?,Are you responsible for or in a position to influence vaccination planning for your employer or another organization?,What is the name of your employer or other organization?,What is your job title or role at your organization?' csv_merge.write(fieldNameFileName + ',' + fieldNameFileNo + ',' + csv_headerNew) csv_merge.write('\n') From 0775f39fdfb45e2794b11265c0d8d11115449534 Mon Sep 17 00:00:00 2001 From: Rob Kraft Date: Thu, 8 Apr 2021 19:10:11 -0500 Subject: [PATCH 14/33] Making things more dynamic - Response Ref ID --- s3_csv_example/s3_csv_example.py | 98 +++++++++++++++++++++++++++----- 1 file changed, 84 insertions(+), 14 deletions(-) diff --git a/s3_csv_example/s3_csv_example.py b/s3_csv_example/s3_csv_example.py index 7afad275..929edb79 100644 --- a/s3_csv_example/s3_csv_example.py +++ b/s3_csv_example/s3_csv_example.py @@ -29,7 +29,19 @@ def preProcess(column): if not column: column = None return column - +def preProcessCase(column): + """ + Do a little bit of data cleaning with the help of Unidecode and Regex. + Things like casing, extra spaces, quotes and new lines can be ignored. + """ + column = unidecode(column) + column = re.sub(' +', ' ', column) + column = re.sub('\n', ' ', column) + column = column.strip().strip('"').strip("'").strip() + # If data is missing, indicate that by setting the value to `None` + if not column: + column = None + return column def readMappings(filename): @@ -38,7 +50,7 @@ def readMappings(filename): reader = csv.DictReader(f) for row in reader: fldSource = str(row['Source']) - clean_row = [(k, preProcess(v)) for (k, v) in row.items()] + clean_row = [(k, preProcessCase(v)) for (k, v) in row.items()] data_d[fldSource] = dict(clean_row) return data_d @@ -93,7 +105,7 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): fieldNameFileNo = 'FileNo' #not dynamic - we totally control this fieldNameFileName = 'FileName' #not dynamic - we totally control this - fieldNameIdInSource = 'IdInSource' #not dynamic - we totally control this + fieldNameIdInSource = 'Key' #not dynamic - we totally control this fieldNameClusterId = 'ClusterId' #not dynamic - we totally control this fieldNameConfidence = 'ConfidenceScore' #not dynamic - we totally control this FileSource = "comebackkc1" @@ -148,39 +160,86 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): else: #FileSource = "comebackkc1" s3files.append('C:/Users/robkr/Downloads/ResponseExport-KCRegionalCOVID19VaccinationSurvey-20210323 (1)/ResponseExport-KCRegionalCOVID19VaccinationSurvey-20210323.csv') #csv_header = 'Receipt Number,Response Reference ID,Respondent Email,URL submitted from,Form version submitted in,Response Submission DateTime,Time Taken To Complete (seconds),External ID,External Status,Are you planning to receive the COVID-19 vaccine?,What makes you uncertain about receiving the COVID-19 vaccine?,When would you like to get your first dose of the COVID-19 vaccine?,What state do you live in?,Which Kansas county do you live in?,"Do you live within the city limits of Kansas City, MO?",Which Missouri county do you live in?,What is your zip code?,First Name,Last Name,Street Address,City,"Phone number (please enter numbers only, no dashes, spaces, or parentheses)",Email address,What is your preferred method of contact?,We need your permission to contact you about COVID-19 testing and vaccination.,Is it okay for us to leave you a voicemail?,Sex,Age,Race/ethnicity (check as many as apply),"Do you have any pre-existing medical conditions or do you have any conditions that put you at increased risk of severe illness? (i.e. immunocompromised, diabetes, chronic lung conditions, cardiovascular disease, morbid obesity, etc.)","Do you live in or visit often crowded living settings? (For example, a supportive care facility, assisted living facility, group home, homeless shelter, or correctional setting)","How many members, including yourself, live in your household?",Do you have a history of any of the following pre-existing medical conditions?,Are you immuno-compromised?,What is your work status?,"What is your work zip code, either where you normally work in the office or on location or the zip code of your employers primary office?",Are you employed by any of the following types of patient-facing organizations?,What is the name of the health care provider for which you work?,Are you responsible for or in a position to influence vaccination planning for your employer or another organization?,What is the name of your employer or other organization?,What is your job title or role at your organization?' -#new stuff here + csv_out = 'C:/Users/robkr/Source/Repos/dedupe-examples/s3_csv_example/combinedfile.csv' + + fileInfos = { "f":[]} + fileInfo = {0: []} + fileInfo["source"]="" + fileInfo["num"]=0 + fileInfos["f"].append(fileInfo) + + fileprefix = 'a_' +#4Start############# This ugly section exists to remove the extra header that is in some csv files ################# fileno = 1 #Used to make the key independent per record when we combine multiple input files count = -1 - csv_merge = open(csv_out, 'w') #replacing Receipt Number with IDinSource in this file!!! #TODO - Read in Headers and do a replace of header names based on the mappings. - csv_headerNew = fieldNameIdInSource + ',Response Reference ID,Respondent Email,URL submitted from,Form version submitted in,Response Submission DateTime,Time Taken To Complete (seconds),External ID,External Status,Are you planning to receive the COVID-19 vaccine?,What makes you uncertain about receiving the COVID-19 vaccine?,When would you like to get your first dose of the COVID-19 vaccine?,What state do you live in?,Which Kansas county do you live in?,"Do you live within the city limits of Kansas City, MO?",Which Missouri county do you live in?,Zip,FirstName,LastName,Street Address,City,"Phone",Email,What is your preferred method of contact?,We need your permission to contact you about COVID-19 testing and vaccination.,Is it okay for us to leave you a voicemail?,Sex,Age,Race/ethnicity (check as many as apply),"Do you have any pre-existing medical conditions or do you have any conditions that put you at increased risk of severe illness? (i.e. immunocompromised, diabetes, chronic lung conditions, cardiovascular disease, morbid obesity, etc.)","Do you live in or visit often crowded living settings? (For example, a supportive care facility, assisted living facility, group home, homeless shelter, or correctional setting)","How many members, including yourself, live in your household?",Do you have a history of any of the following pre-existing medical conditions?,Are you immuno-compromised?,What is your work status?,"What is your work zip code, either where you normally work in the office or on location or the zip code of your employers primary office?",Are you employed by any of the following types of patient-facing organizations?,What is the name of the health care provider for which you work?,Are you responsible for or in a position to influence vaccination planning for your employer or another organization?,What is the name of your employer or other organization?,What is your job title or role at your organization?' - csv_merge.write(fieldNameFileName + ',' + fieldNameFileNo + ',' + csv_headerNew) - csv_merge.write('\n') for file in s3files: firstpos=file.rfind("/") lastpos=len(file) filenameonly = file[firstpos+1:lastpos] + if filenameonly.startswith("Response"): + FileSource="comebackkc1" + fileInfo = {fileno: []} + fileInfo["source"]=FileSource + fileInfo["num"]=fileno + fileInfo["unq"]=header_map[FileSource]["Unique ID"] + fileInfos["f"].append(fileInfo) + csv_stripextraheader = open(fileprefix + filenameonly, 'w') csv_in = open(file,"r",encoding='utf-8') #https://stackoverflow.com/questions/49562499/how-to-fix-unicodedecodeerror-charmap-codec-cant-decode-byte-0x9d-in-posit for line in csv_in: - if count < 1: #line.startswith(csv_header): - count = count + 1 + if (FileSource=="comebackkc1") and (count < 0): #line.startswith(csv_header): + count = count + 1 #skip this line - remove it from the rewritten file continue - csv_merge.write(filenameonly + ',' + str(fileno) + ',' + line) + csv_stripextraheader.write(line) print(count) count = count + 1 csv_in.close() fileno = fileno + 1 + csv_stripextraheader.close() +#4End############# This ugly section exists to remove the extra header that is in some csv files ################# + +#5Start############# Combine multiple input files into one single file with consistent column headers ################# + fileno = 1 #Used to make the key independent per record when we combine multiple input files + count = 0 + csv_merge = open(csv_out, 'w', newline='') + #replacing Receipt Number with IDinSource in this file!!! + #TODO - Read in Headers and do a replace of header names based on the mappings. + #csv_headerNew = fieldNameIdInSource + ',Response Reference ID,Respondent Email,URL submitted from,Form version submitted in,Response Submission DateTime,Time Taken To Complete (seconds),External ID,External Status,Are you planning to receive the COVID-19 vaccine?,What makes you uncertain about receiving the COVID-19 vaccine?,When would you like to get your first dose of the COVID-19 vaccine?,What state do you live in?,Which Kansas county do you live in?,"Do you live within the city limits of Kansas City, MO?",Which Missouri county do you live in?,Zip,FirstName,LastName,Street Address,City,"Phone",Email,What is your preferred method of contact?,We need your permission to contact you about COVID-19 testing and vaccination.,Is it okay for us to leave you a voicemail?,Sex,Age,Race/ethnicity (check as many as apply),"Do you have any pre-existing medical conditions or do you have any conditions that put you at increased risk of severe illness? (i.e. immunocompromised, diabetes, chronic lung conditions, cardiovascular disease, morbid obesity, etc.)","Do you live in or visit often crowded living settings? (For example, a supportive care facility, assisted living facility, group home, homeless shelter, or correctional setting)","How many members, including yourself, live in your household?",Do you have a history of any of the following pre-existing medical conditions?,Are you immuno-compromised?,What is your work status?,"What is your work zip code, either where you normally work in the office or on location or the zip code of your employers primary office?",Are you employed by any of the following types of patient-facing organizations?,What is the name of the health care provider for which you work?,Are you responsible for or in a position to influence vaccination planning for your employer or another organization?,What is the name of your employer or other organization?,What is your job title or role at your organization?' + csv_headerNew = 'FirstName,LastName,Email,City,Phone,Zip,Unique ID,Key' + csv_merge.write(fieldNameFileName + ',' + fieldNameFileNo + ',' + csv_headerNew) + csv_merge.write('\n') + for file in s3files: + firstpos=file.rfind("/") + lastpos=len(file) + filenameonly = file[firstpos+1:lastpos] + if filenameonly.startswith("Response"): + FileSource="comebackkc1" + #https://stackoverflow.com/questions/49562499/how-to-fix-unicodedecodeerror-charmap-codec-cant-decode-byte-0x9d-in-posit + #I had sever 0x92 - https://stackoverflow.com/questions/37083687/unicodedecodeerror-ascii-codec-cant-decode-byte-0x92 + with open(fileprefix + filenameonly,"r",encoding='windows-1252') as f_input: + reader = csv.DictReader(f_input, dialect='excel') + for row in reader: + print(count) + count = count + 1 + outrow = (filenameonly + ',' + str(fileno) + ',"' + row[header_map[FileSource]["FirstName"]] + + '","' + row[header_map[FileSource]["LastName"]] + '",' + row[header_map[FileSource]["Email"]] + + ',"' + row[header_map[FileSource]["City"]] + '",' + row[header_map[FileSource]["Phone"]] + + ',' + row[header_map[FileSource]["Zip"]] + ',' + row[header_map[FileSource]["Unique ID"]] + + ',' + row[header_map[FileSource]["Key"]] + '\n') + print(outrow) + csv_merge.write(outrow) + fileno = fileno + 1 csv_merge.close() +#5End############# Combine multiple input files into one single file with consistent column headers ################# #results = pd.DataFrame([]) #https://www.techbeamers.com/merge-multiple-csv-files/ #csv_header = 'Receipt Number,Response Reference ID,Respondent Email,URL submitted from,Form version submitted in,Response Submission DateTime,Time Taken To Complete (seconds),External ID,External Status,Are you planning to receive the COVID-19 vaccine?,What makes you uncertain about receiving the COVID-19 vaccine?,When would you like to get your first dose of the COVID-19 vaccine?,What state do you live in?,Which Kansas county do you live in?,"Do you live within the city limits of Kansas City, MO?",Which Missouri county do you live in?,What is your zip code?,First Name,Last Name,Street Address,City,"Phone number (please enter numbers only, no dashes, spaces, or parentheses)",Email address,What is your preferred method of contact?,We need your permission to contact you about COVID-19 testing and vaccination.,Is it okay for us to leave you a voicemail?,Sex,Age,Race/ethnicity (check as many as apply),"Do you have any pre-existing medical conditions or do you have any conditions that put you at increased risk of severe illness? (i.e. immunocompromised, diabetes, chronic lung conditions, cardiovascular disease, morbid obesity, etc.)","Do you live in or visit often crowded living settings? (For example, a supportive care facility, assisted living facility, group home, homeless shelter, or correctional setting)","How many members, including yourself, live in your household?",Do you have a history of any of the following pre-existing medical conditions?,Are you immuno-compromised?,What is your work status?,"What is your work zip code, either where you normally work in the office or on location or the zip code of your employers primary office?",Are you employed by any of the following types of patient-facing organizations?,What is the name of the health care provider for which you work?,Are you responsible for or in a position to influence vaccination planning for your employer or another organization?,What is the name of your employer or other organization?,What is your job title or role at your organization?' -#end new print('importing data ...') data_d = {} @@ -196,7 +255,7 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): if FileSource == "dedupesample": outputfieldnames = reader.fieldnames else: #FileSource = "comebackkc1" - fieldNameSourceFileUniqueId = 'Response Reference ID' #this is probably different for each file - a GUID in some cases + fieldNameSourceFileUniqueId = header_map[FileSource]["Unique ID"] #this is probably different for each file - a GUID in some cases outputfieldnames = [fieldNameFileName,fieldNameFileNo,fieldNameIdInSource,fieldNameSourceFileUniqueId,'FirstName', 'LastName','Email','City','Phone','Zip'] # If a settings file already exists, we'll just load that and skip training if os.path.exists(settings_file): @@ -296,8 +355,19 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): row_id = str(int(row[fieldNameFileNo])) + '.' + str(int(row[fieldNameIdCol])) row.update(cluster_membership[row_id]) + # newrow = {fieldNameFileName: filenameonly, fieldNameFileNo: str(fileno), + # 'Unique ID': row[header_map[agency]["Unique ID"]], + #'Key':row[header_map[agency]["Key"]], + #'FirstName': row[header_map[agency]["FirstName"]], + #'LastName': row[header_map[agency]["LastName"]], + # 'City': row[header_map[agency]["City"]], + #'Zip': row[header_map[agency]["Zip"]], + # 'Phone': row[header_map[agency]["Phone"]], + #'Email': row[header_map[agency]["Email"]]} + + newrow = {fieldNameFileName: row[fieldNameFileName], fieldNameFileNo: row[fieldNameFileNo], - fieldNameIdInSource: row[fieldNameIdInSource], fieldNameSourceFileUniqueId:row[fieldNameSourceFileUniqueId], + fieldNameIdInSource: row[fieldNameIdInSource], fieldNameSourceFileUniqueId:row["Unique ID"], 'FirstName': row['FirstName'], 'LastName': row['LastName'] , 'City': row['City'], 'Zip': row['Zip'] , 'Phone': row['Phone'], 'Email': row['Email'] From d0e795565bb27fbbc3df6856169aaeb4038756b0 Mon Sep 17 00:00:00 2001 From: Rob Kraft Date: Thu, 8 Apr 2021 19:31:49 -0500 Subject: [PATCH 15/33] Add pandas library and sorting --- s3_csv_example/s3_csv_example.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/s3_csv_example/s3_csv_example.py b/s3_csv_example/s3_csv_example.py index 929edb79..b127b3fc 100644 --- a/s3_csv_example/s3_csv_example.py +++ b/s3_csv_example/s3_csv_example.py @@ -12,10 +12,13 @@ import optparse import sys +import pandas as pd + import dedupe from unidecode import unidecode + def preProcess(column): """ Do a little bit of data cleaning with the help of Unidecode and Regex. @@ -127,6 +130,8 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): training_file = os.path.join(scriptpath, training_file) mappings_file = os.path.join(scriptpath, mappings_file) + + header_map = {} header_map.update(readMappings(mappings_file)) @@ -373,6 +378,11 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): , 'Phone': row['Phone'], 'Email': row['Email'] , fieldNameClusterId: row[fieldNameClusterId], fieldNameConfidence: row[fieldNameConfidence]} writer.writerow(newrow) + +#https://www.usepandas.com/csv/sort-csv-data-by-column + df = pd.read_csv(output_file) + sorted_df = df.sort_values(by=["ConfidenceScore","ClusterId"], ascending=[True,True]) + sorted_df.to_csv('sorted' + output_file, index=False) writeToS3Bucket(output_file, output_bucket, s3output_file) #C:\Users\Administrator\AppData\Local\Programs\Python\Python39\python s3_csv_example.py c4kc-cvax-deduplication c4kc-cvax-deduplication From 61355ce52c0f30904484a2729e2fa60e416eb42a Mon Sep 17 00:00:00 2001 From: Rob Kraft Date: Fri, 9 Apr 2021 07:35:43 -0500 Subject: [PATCH 16/33] Extract a file with just duplicates. Also include the source type --- s3_csv_example/s3_csv_example.py | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/s3_csv_example/s3_csv_example.py b/s3_csv_example/s3_csv_example.py index b127b3fc..c3617449 100644 --- a/s3_csv_example/s3_csv_example.py +++ b/s3_csv_example/s3_csv_example.py @@ -213,7 +213,7 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): #replacing Receipt Number with IDinSource in this file!!! #TODO - Read in Headers and do a replace of header names based on the mappings. #csv_headerNew = fieldNameIdInSource + ',Response Reference ID,Respondent Email,URL submitted from,Form version submitted in,Response Submission DateTime,Time Taken To Complete (seconds),External ID,External Status,Are you planning to receive the COVID-19 vaccine?,What makes you uncertain about receiving the COVID-19 vaccine?,When would you like to get your first dose of the COVID-19 vaccine?,What state do you live in?,Which Kansas county do you live in?,"Do you live within the city limits of Kansas City, MO?",Which Missouri county do you live in?,Zip,FirstName,LastName,Street Address,City,"Phone",Email,What is your preferred method of contact?,We need your permission to contact you about COVID-19 testing and vaccination.,Is it okay for us to leave you a voicemail?,Sex,Age,Race/ethnicity (check as many as apply),"Do you have any pre-existing medical conditions or do you have any conditions that put you at increased risk of severe illness? (i.e. immunocompromised, diabetes, chronic lung conditions, cardiovascular disease, morbid obesity, etc.)","Do you live in or visit often crowded living settings? (For example, a supportive care facility, assisted living facility, group home, homeless shelter, or correctional setting)","How many members, including yourself, live in your household?",Do you have a history of any of the following pre-existing medical conditions?,Are you immuno-compromised?,What is your work status?,"What is your work zip code, either where you normally work in the office or on location or the zip code of your employers primary office?",Are you employed by any of the following types of patient-facing organizations?,What is the name of the health care provider for which you work?,Are you responsible for or in a position to influence vaccination planning for your employer or another organization?,What is the name of your employer or other organization?,What is your job title or role at your organization?' - csv_headerNew = 'FirstName,LastName,Email,City,Phone,Zip,Unique ID,Key' + csv_headerNew = 'FirstName,LastName,Email,City,Phone,Zip,Unique ID,Key,Source' csv_merge.write(fieldNameFileName + ',' + fieldNameFileNo + ',' + csv_headerNew) csv_merge.write('\n') for file in s3files: @@ -233,7 +233,7 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): + '","' + row[header_map[FileSource]["LastName"]] + '",' + row[header_map[FileSource]["Email"]] + ',"' + row[header_map[FileSource]["City"]] + '",' + row[header_map[FileSource]["Phone"]] + ',' + row[header_map[FileSource]["Zip"]] + ',' + row[header_map[FileSource]["Unique ID"]] - + ',' + row[header_map[FileSource]["Key"]] + '\n') + + ',' + row[header_map[FileSource]["Key"]] + ',' + FileSource + '\n') print(outrow) csv_merge.write(outrow) fileno = fileno + 1 @@ -261,7 +261,7 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): outputfieldnames = reader.fieldnames else: #FileSource = "comebackkc1" fieldNameSourceFileUniqueId = header_map[FileSource]["Unique ID"] #this is probably different for each file - a GUID in some cases - outputfieldnames = [fieldNameFileName,fieldNameFileNo,fieldNameIdInSource,fieldNameSourceFileUniqueId,'FirstName', 'LastName','Email','City','Phone','Zip'] + outputfieldnames = [fieldNameFileName,fieldNameFileNo,fieldNameIdInSource,fieldNameSourceFileUniqueId,'FirstName', 'LastName','Email','City','Phone','Zip','Source'] # If a settings file already exists, we'll just load that and skip training if os.path.exists(settings_file): print('reading from', settings_file) @@ -349,12 +349,14 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): fieldNameConfidence: score } - with open(output_file, 'w') as f_output, open(csv_out) as f_input: + with open(output_file, 'w') as f_output, open(csv_out) as f_input,open('sm_' +output_file, 'w') as f_outsm: reader = csv.DictReader(f_input) fieldnames = [fieldNameClusterId, fieldNameConfidence] + outputfieldnames writer = csv.DictWriter(f_output, fieldnames=fieldnames) writer.writeheader() + writersm = csv.DictWriter(f_outsm, fieldnames=fieldnames) + writersm.writeheader() for row in reader: row_id = str(int(row[fieldNameFileNo])) + '.' + str(int(row[fieldNameIdCol])) @@ -375,12 +377,13 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): fieldNameIdInSource: row[fieldNameIdInSource], fieldNameSourceFileUniqueId:row["Unique ID"], 'FirstName': row['FirstName'], 'LastName': row['LastName'] , 'City': row['City'], 'Zip': row['Zip'] - , 'Phone': row['Phone'], 'Email': row['Email'] + , 'Phone': row['Phone'], 'Email': row['Email'], 'Source': row['Source'] , fieldNameClusterId: row[fieldNameClusterId], fieldNameConfidence: row[fieldNameConfidence]} writer.writerow(newrow) - + if row[fieldNameConfidence] < 1 and row[fieldNameConfidence] > .75: + writersm.writerow(newrow) #https://www.usepandas.com/csv/sort-csv-data-by-column - df = pd.read_csv(output_file) + df = pd.read_csv('sm_' +output_file) sorted_df = df.sort_values(by=["ConfidenceScore","ClusterId"], ascending=[True,True]) sorted_df.to_csv('sorted' + output_file, index=False) writeToS3Bucket(output_file, output_bucket, s3output_file) From 0783243297455b2bb47bd818fab28a866de028b4 Mon Sep 17 00:00:00 2001 From: Rob Kraft Date: Fri, 9 Apr 2021 19:56:42 -0500 Subject: [PATCH 17/33] Support for multiple agencies (needs some easier coding) --- s3_csv_example/s3_csv_example.py | 31 +++++++++++++++++++++++-------- 1 file changed, 23 insertions(+), 8 deletions(-) diff --git a/s3_csv_example/s3_csv_example.py b/s3_csv_example/s3_csv_example.py index c3617449..d5e3608a 100644 --- a/s3_csv_example/s3_csv_example.py +++ b/s3_csv_example/s3_csv_example.py @@ -46,8 +46,6 @@ def preProcessCase(column): column = None return column def readMappings(filename): - - data_d = {} with open(mappings_file) as f: reader = csv.DictReader(f) @@ -63,7 +61,6 @@ def readData(filename): Read in our data from a CSV file and create a dictionary of records, where the key is a unique record ID and each value is dict """ - data_d = {} with open(filename) as f: reader = csv.DictReader(f) @@ -71,7 +68,6 @@ def readData(filename): clean_row = [(k, preProcess(v)) for (k, v) in row.items()] row_id = str(int(row[fieldNameFileNo])) + '.' + str(int(row[fieldNameIdCol])) data_d[row_id] = dict(clean_row) - return data_d def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): @@ -163,7 +159,9 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): # Key=filename) #csv_header = 'Id,Source,Site name,Address,Zip,Phone,Fax,Program Name,Length of Day,IDHS Provider ID,Agency,Neighborhood,Funded Enrollment,Program Option,Number per Site EHS,Number per Site HS,Director,Head Start Fund,Eearly Head Start Fund,CC fund,Progmod,Website,Executive Director,Center Director,ECE Available Programs,NAEYC Valid Until,NAEYC Program Id,Email Address,Ounce of Prevention Description,Purple binder service type,Column,Column2' else: #FileSource = "comebackkc1" - s3files.append('C:/Users/robkr/Downloads/ResponseExport-KCRegionalCOVID19VaccinationSurvey-20210323 (1)/ResponseExport-KCRegionalCOVID19VaccinationSurvey-20210323.csv') + s3files.append('C:/Users/robkr/Downloads/ResponseExport-KCRegionalCOVID19VaccinationSurvey-20210323 (1)/ResponseExportComeBackKC1.csv') + s3files.append('C:/Users/robkr/Downloads/ResponseExport-KCRegionalCOVID19VaccinationSurvey-20210323 (1)/Agency2.csv') + #csv_header = 'Receipt Number,Response Reference ID,Respondent Email,URL submitted from,Form version submitted in,Response Submission DateTime,Time Taken To Complete (seconds),External ID,External Status,Are you planning to receive the COVID-19 vaccine?,What makes you uncertain about receiving the COVID-19 vaccine?,When would you like to get your first dose of the COVID-19 vaccine?,What state do you live in?,Which Kansas county do you live in?,"Do you live within the city limits of Kansas City, MO?",Which Missouri county do you live in?,What is your zip code?,First Name,Last Name,Street Address,City,"Phone number (please enter numbers only, no dashes, spaces, or parentheses)",Email address,What is your preferred method of contact?,We need your permission to contact you about COVID-19 testing and vaccination.,Is it okay for us to leave you a voicemail?,Sex,Age,Race/ethnicity (check as many as apply),"Do you have any pre-existing medical conditions or do you have any conditions that put you at increased risk of severe illness? (i.e. immunocompromised, diabetes, chronic lung conditions, cardiovascular disease, morbid obesity, etc.)","Do you live in or visit often crowded living settings? (For example, a supportive care facility, assisted living facility, group home, homeless shelter, or correctional setting)","How many members, including yourself, live in your household?",Do you have a history of any of the following pre-existing medical conditions?,Are you immuno-compromised?,What is your work status?,"What is your work zip code, either where you normally work in the office or on location or the zip code of your employers primary office?",Are you employed by any of the following types of patient-facing organizations?,What is the name of the health care provider for which you work?,Are you responsible for or in a position to influence vaccination planning for your employer or another organization?,What is the name of your employer or other organization?,What is your job title or role at your organization?' csv_out = 'C:/Users/robkr/Source/Repos/dedupe-examples/s3_csv_example/combinedfile.csv' @@ -175,13 +173,13 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): fileInfo["num"]=0 fileInfos["f"].append(fileInfo) - fileprefix = 'a_' + fileprefix = 'pre_' #4Start############# This ugly section exists to remove the extra header that is in some csv files ################# fileno = 1 #Used to make the key independent per record when we combine multiple input files - count = -1 #replacing Receipt Number with IDinSource in this file!!! #TODO - Read in Headers and do a replace of header names based on the mappings. for file in s3files: + count = -1 firstpos=file.rfind("/") lastpos=len(file) filenameonly = file[firstpos+1:lastpos] @@ -192,16 +190,27 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): fileInfo["num"]=fileno fileInfo["unq"]=header_map[FileSource]["Unique ID"] fileInfos["f"].append(fileInfo) + if filenameonly.startswith("Agency"): + FileSource="Agency2" + fileInfo = {fileno: []} + fileInfo["source"]=FileSource + fileInfo["num"]=fileno + fileInfo["unq"]=header_map[FileSource]["Unique ID"] + fileInfos["f"].append(fileInfo) csv_stripextraheader = open(fileprefix + filenameonly, 'w') csv_in = open(file,"r",encoding='utf-8') #https://stackoverflow.com/questions/49562499/how-to-fix-unicodedecodeerror-charmap-codec-cant-decode-byte-0x9d-in-posit for line in csv_in: if (FileSource=="comebackkc1") and (count < 0): #line.startswith(csv_header): count = count + 1 #skip this line - remove it from the rewritten file continue + if (FileSource=="Agency2") and (count < 0): #line.startswith(csv_header): + count = count + 1 #skip this line - remove it from the rewritten file + continue csv_stripextraheader.write(line) print(count) count = count + 1 csv_in.close() + #os.remove(file) fileno = fileno + 1 csv_stripextraheader.close() #4End############# This ugly section exists to remove the extra header that is in some csv files ################# @@ -222,6 +231,8 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): filenameonly = file[firstpos+1:lastpos] if filenameonly.startswith("Response"): FileSource="comebackkc1" + if filenameonly.startswith("Agency"): + FileSource="Agency2" #https://stackoverflow.com/questions/49562499/how-to-fix-unicodedecodeerror-charmap-codec-cant-decode-byte-0x9d-in-posit #I had sever 0x92 - https://stackoverflow.com/questions/37083687/unicodedecodeerror-ascii-codec-cant-decode-byte-0x92 with open(fileprefix + filenameonly,"r",encoding='windows-1252') as f_input: @@ -237,6 +248,7 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): print(outrow) csv_merge.write(outrow) fileno = fileno + 1 + os.remove(fileprefix + filenameonly) csv_merge.close() #5End############# Combine multiple input files into one single file with consistent column headers ################# @@ -383,9 +395,12 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): if row[fieldNameConfidence] < 1 and row[fieldNameConfidence] > .75: writersm.writerow(newrow) #https://www.usepandas.com/csv/sort-csv-data-by-column - df = pd.read_csv('sm_' +output_file) + df = pd.read_csv('sm_' + output_file) sorted_df = df.sort_values(by=["ConfidenceScore","ClusterId"], ascending=[True,True]) sorted_df.to_csv('sorted' + output_file, index=False) + os.remove(output_file) + os.remove('sm_' + output_file) + writeToS3Bucket(output_file, output_bucket, s3output_file) #C:\Users\Administrator\AppData\Local\Programs\Python\Python39\python s3_csv_example.py c4kc-cvax-deduplication c4kc-cvax-deduplication From 2358f4a838f72d8569ae1ff4cc9e2abd25d1e1b3 Mon Sep 17 00:00:00 2001 From: Rob Kraft Date: Sat, 10 Apr 2021 15:01:40 -0500 Subject: [PATCH 18/33] Working on separate files per agency output --- s3_csv_example/s3_csv_example.py | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/s3_csv_example/s3_csv_example.py b/s3_csv_example/s3_csv_example.py index d5e3608a..f7de62a8 100644 --- a/s3_csv_example/s3_csv_example.py +++ b/s3_csv_example/s3_csv_example.py @@ -50,7 +50,7 @@ def readMappings(filename): with open(mappings_file) as f: reader = csv.DictReader(f) for row in reader: - fldSource = str(row['Source']) + fldSource = str(row[fieldNameSource]) clean_row = [(k, preProcessCase(v)) for (k, v) in row.items()] data_d[fldSource] = dict(clean_row) @@ -107,6 +107,7 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): fieldNameIdInSource = 'Key' #not dynamic - we totally control this fieldNameClusterId = 'ClusterId' #not dynamic - we totally control this fieldNameConfidence = 'ConfidenceScore' #not dynamic - we totally control this + fieldNameSource = 'Source' #not dynamic - we totally control this FileSource = "comebackkc1" output_file = 's3_csv_example_output' + timestr + '.csv' s3output_file = 'output/s3_csv_example_output' + timestr + '.csv' @@ -222,7 +223,7 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): #replacing Receipt Number with IDinSource in this file!!! #TODO - Read in Headers and do a replace of header names based on the mappings. #csv_headerNew = fieldNameIdInSource + ',Response Reference ID,Respondent Email,URL submitted from,Form version submitted in,Response Submission DateTime,Time Taken To Complete (seconds),External ID,External Status,Are you planning to receive the COVID-19 vaccine?,What makes you uncertain about receiving the COVID-19 vaccine?,When would you like to get your first dose of the COVID-19 vaccine?,What state do you live in?,Which Kansas county do you live in?,"Do you live within the city limits of Kansas City, MO?",Which Missouri county do you live in?,Zip,FirstName,LastName,Street Address,City,"Phone",Email,What is your preferred method of contact?,We need your permission to contact you about COVID-19 testing and vaccination.,Is it okay for us to leave you a voicemail?,Sex,Age,Race/ethnicity (check as many as apply),"Do you have any pre-existing medical conditions or do you have any conditions that put you at increased risk of severe illness? (i.e. immunocompromised, diabetes, chronic lung conditions, cardiovascular disease, morbid obesity, etc.)","Do you live in or visit often crowded living settings? (For example, a supportive care facility, assisted living facility, group home, homeless shelter, or correctional setting)","How many members, including yourself, live in your household?",Do you have a history of any of the following pre-existing medical conditions?,Are you immuno-compromised?,What is your work status?,"What is your work zip code, either where you normally work in the office or on location or the zip code of your employers primary office?",Are you employed by any of the following types of patient-facing organizations?,What is the name of the health care provider for which you work?,Are you responsible for or in a position to influence vaccination planning for your employer or another organization?,What is the name of your employer or other organization?,What is your job title or role at your organization?' - csv_headerNew = 'FirstName,LastName,Email,City,Phone,Zip,Unique ID,Key,Source' + csv_headerNew = 'FirstName,LastName,Email,City,Phone,Zip,Unique ID,Key,' + fieldNameSource csv_merge.write(fieldNameFileName + ',' + fieldNameFileNo + ',' + csv_headerNew) csv_merge.write('\n') for file in s3files: @@ -389,18 +390,30 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): fieldNameIdInSource: row[fieldNameIdInSource], fieldNameSourceFileUniqueId:row["Unique ID"], 'FirstName': row['FirstName'], 'LastName': row['LastName'] , 'City': row['City'], 'Zip': row['Zip'] - , 'Phone': row['Phone'], 'Email': row['Email'], 'Source': row['Source'] + , 'Phone': row['Phone'], 'Email': row['Email'], fieldNameSource: row[fieldNameSource] , fieldNameClusterId: row[fieldNameClusterId], fieldNameConfidence: row[fieldNameConfidence]} writer.writerow(newrow) if row[fieldNameConfidence] < 1 and row[fieldNameConfidence] > .75: writersm.writerow(newrow) #https://www.usepandas.com/csv/sort-csv-data-by-column df = pd.read_csv('sm_' + output_file) - sorted_df = df.sort_values(by=["ConfidenceScore","ClusterId"], ascending=[True,True]) + sorted_df = df.sort_values(by=[fieldNameClusterId,"ConfidenceScore"], ascending=[True,True]) sorted_df.to_csv('sorted' + output_file, index=False) os.remove(output_file) os.remove('sm_' + output_file) + df = pd.read_csv('sorted' + output_file) + g1 = df.groupby(fieldNameSource).get_group('Agency2').ClusterId.values + with open('Agency' + output_file, 'w') as f_output, open('sorted' + output_file) as f_input: + reader = csv.DictReader(f_input) + fieldnames = [fieldNameClusterId, fieldNameConfidence] + outputfieldnames + writer = csv.DictWriter(f_output, fieldnames=fieldnames) + writer.writeheader() + for row in reader: + if int(row[fieldNameClusterId]) in g1: + writer.writerow(row) + + writeToS3Bucket(output_file, output_bucket, s3output_file) #C:\Users\Administrator\AppData\Local\Programs\Python\Python39\python s3_csv_example.py c4kc-cvax-deduplication c4kc-cvax-deduplication From 3fa3559dc45150ce3db1f32a63e741d0997baaec Mon Sep 17 00:00:00 2001 From: Rob Kraft Date: Sat, 10 Apr 2021 15:40:49 -0500 Subject: [PATCH 19/33] File splitting complete - and sorted --- s3_csv_example/s3_csv_example.py | 27 ++++++++++++++++++--------- 1 file changed, 18 insertions(+), 9 deletions(-) diff --git a/s3_csv_example/s3_csv_example.py b/s3_csv_example/s3_csv_example.py index f7de62a8..9eeb1421 100644 --- a/s3_csv_example/s3_csv_example.py +++ b/s3_csv_example/s3_csv_example.py @@ -403,16 +403,25 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): os.remove('sm_' + output_file) df = pd.read_csv('sorted' + output_file) - g1 = df.groupby(fieldNameSource).get_group('Agency2').ClusterId.values - with open('Agency' + output_file, 'w') as f_output, open('sorted' + output_file) as f_input: - reader = csv.DictReader(f_input) - fieldnames = [fieldNameClusterId, fieldNameConfidence] + outputfieldnames - writer = csv.DictWriter(f_output, fieldnames=fieldnames) - writer.writeheader() - for row in reader: - if int(row[fieldNameClusterId]) in g1: - writer.writerow(row) + for filen in fileInfos["f"]: + ss = filen['source'] + if ss == '': + continue + gg = df.groupby(fieldNameSource).get_group(ss).ClusterId.values + with open(ss + output_file, 'w') as a_out, open('sorted' + output_file) as f_input: + reader = csv.DictReader(f_input) + fieldnames = [fieldNameClusterId, fieldNameConfidence] + outputfieldnames + writer = csv.DictWriter(a_out, fieldnames=fieldnames) + writer.writeheader() + for row in reader: + if int(row[fieldNameClusterId]) in gg: + writer.writerow(row) + a_out.close() + df2 = pd.read_csv(ss + output_file) + sorted_df = df2.sort_values(by=[fieldNameClusterId,"ConfidenceScore"], ascending=[True,True]) + sorted_df.to_csv('sorted' + ss + output_file, index=False) + os.remove(ss + output_file) writeToS3Bucket(output_file, output_bucket, s3output_file) From b35ca517a267a457cfc80a9b29f18315758db400 Mon Sep 17 00:00:00 2001 From: Rob Kraft Date: Sun, 11 Apr 2021 14:05:43 -0500 Subject: [PATCH 20/33] Script for KCDigitalDrive Vaccinations --- KCDigitalDrive/KCDigitalDrive_Vacc.py | 411 ++++++++++++++++++++++++++ KCDigitalDrive/Mappings.csv | 4 + KCDigitalDrive/requirements.txt | 1 + 3 files changed, 416 insertions(+) create mode 100644 KCDigitalDrive/KCDigitalDrive_Vacc.py create mode 100644 KCDigitalDrive/Mappings.csv create mode 100644 KCDigitalDrive/requirements.txt diff --git a/KCDigitalDrive/KCDigitalDrive_Vacc.py b/KCDigitalDrive/KCDigitalDrive_Vacc.py new file mode 100644 index 00000000..9b28ce15 --- /dev/null +++ b/KCDigitalDrive/KCDigitalDrive_Vacc.py @@ -0,0 +1,411 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +""" +This script identifies duplicate signups. +""" + +import os +import csv +import re +import logging +import optparse +import sys + +import pandas as pd + +import dedupe +from unidecode import unidecode + + + +def preProcess(column): + """ + Do a little bit of data cleaning with the help of Unidecode and Regex. + Things like casing, extra spaces, quotes and new lines can be ignored. + """ + column = unidecode(column) + column = re.sub(' +', ' ', column) + column = re.sub('\n', ' ', column) + column = column.strip().strip('"').strip("'").lower().strip() + # If data is missing, indicate that by setting the value to `None` + if not column: + column = None + return column +def preProcessCase(column): + """ + Do a little bit of data cleaning with the help of Unidecode and Regex. + Things like casing, extra spaces, quotes and new lines can be ignored. + """ + column = unidecode(column) + column = re.sub(' +', ' ', column) + column = re.sub('\n', ' ', column) + column = column.strip().strip('"').strip("'").strip() + # If data is missing, indicate that by setting the value to `None` + if not column: + column = None + return column +def readMappings(filename): + data_d = {} + with open(mappings_file) as f: + reader = csv.DictReader(f) + for row in reader: + fldSource = str(row[fieldNameSource]) + clean_row = [(k, preProcessCase(v)) for (k, v) in row.items()] + data_d[fldSource] = dict(clean_row) + + return data_d + +def readData(filename): + """ + Read in our data from a CSV file and create a dictionary of records, + where the key is a unique record ID and each value is dict + """ + data_d = {} + with open(filename) as f: + reader = csv.DictReader(f) + for row in reader: + clean_row = [(k, preProcess(v)) for (k, v) in row.items()] + row_id = str(int(row[fieldNameFileNo])) + '.' + str(int(row[fieldNameIdCol])) + data_d[row_id] = dict(clean_row) + return data_d + +def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): + s3 = boto3.resource('s3') + for filen in fileInfos["f"]: + ss = filen['source'] + if ss == '': + continue + agencyFilePrefix = ss + '.' + s3.meta.client.upload_file(agencyFilePrefix + sortedPrefix + local_file_to_send, output_bucket, 'output/' + agencyFilePrefix + sortedPrefix + local_file_to_send) + os.remove(agencyFilePrefix + sortedPrefix +local_file_to_send) + + +if __name__ == '__main__': + + # ## Logging + + # Dedupe uses Python logging to show or suppress verbose output. This + # code block lets you change the level of loggin on the command + # line. You don't need it if you don't want that. To enable verbose + # logging, run `python examples/csv_example/csv_example.py -v` + optp = optparse.OptionParser() + optp.add_option('-v', '--verbose', dest='verbose', action='count', + help='Increase verbosity (specify multiple times for more)' + ) + (opts, args) = optp.parse_args() + log_level = logging.WARNING + if opts.verbose: + if opts.verbose == 1: + log_level = logging.INFO + elif opts.verbose >= 2: + log_level = logging.DEBUG + logging.getLogger().setLevel(log_level) + + # 1. Setup + import time + print('1. Combining Files at' + time.strftime(".%Y.%m.%d-%H.%M.%S") + ' ...') + timestr = time.strftime(".%Y.%m.%d-%H.%M.%S") + + fieldNameFileNo = 'FileNo' #not dynamic - we totally control this + fieldNameFileName = 'FileName' #not dynamic - we totally control this + fieldNameIdInSource = 'Key' #not dynamic - we totally control this + fieldNameIdCol = fieldNameIdInSource + fieldNameClusterId = 'ClusterId' #not dynamic - we totally control this + fieldNameConfidence = 'ConfidenceScore' #not dynamic - we totally control this + fieldNameSource = 'Source' #not dynamic - we totally control this + AppFileSource = "local" + output_file = 'Duplicate_Vaccination_Signups' + timestr + '.csv' + s3output_file = 'output/Duplicate_Vaccination_Signups' + timestr + '.csv' + settings_file = 'Duplicate_Vaccination_Signups_learned_settings' + training_file = 'Duplicate_Vaccination_Signups_training.json' + combined_file = 'combinedfile.csv' + bucket='c4kc-cvax-deduplication' #bucket name could be overridden by value passed in below + + mappings_file = 'Mappings.csv' + scriptpath = os.path.dirname(__file__) + settings_file = os.path.join(scriptpath, settings_file) + training_file = os.path.join(scriptpath, training_file) + mappings_file = os.path.join(scriptpath, mappings_file) + + #2. Load all file mappings metadata + print('2. Loading headers at' + time.strftime(".%Y.%m.%d-%H.%M.%S") + ' ...') + header_map = {} + header_map.update(readMappings(mappings_file)) + + #3. Import files to working area (aka folders local to python script on hard drive) + print('3. Importing files to python script directories at' + time.strftime(".%Y.%m.%d-%H.%M.%S") + ' ...') + import sys + if len(sys.argv) > 1: + bucket = sys.argv[1] + if len(sys.argv) > 1: + output_bucket = sys.argv[2] + output_bucket=bucket + s3files = [] + + import boto3 + s3_client = boto3.client('s3') + if AppFileSource == "s3": + result = s3_client.list_objects(Bucket = bucket, Prefix='') + for o in result.get('Contents'): + filename = o.get('Key'); + if filename[:7] != 'output/': #don't process files that are in the /output path of the s3 bucket + data = s3_client.get_object(Bucket=bucket, Key=filename) + if filename[:6] == 'input/' and len(filename) > 6: + print(filename) + local_file = filename[6:] #remove input/ from the name of the file + s3_client.download_file(bucket,filename,local_file) + s3files.append(local_file) + response = s3_client.delete_object(Bucket=bucket,Key=filename) + else: #AppFileSource = "local" + s3files.append('C:/Users/robkr/Downloads/ResponseExport-KCRegionalCOVID19VaccinationSurvey-20210323 (1)/ResponseExportComeBackKC1.csv') + s3files.append('C:/Users/robkr/Downloads/ResponseExport-KCRegionalCOVID19VaccinationSurvey-20210323 (1)/Agency2.csv') + +#4. Pre-Process Files- This ugly section exists to remove the extra header that is in some csv files ################# + print('4. Pre-processing files at' + time.strftime(".%Y.%m.%d-%H.%M.%S") + ' ...') + + fileInfos = { "f":[]} + fileInfo = {0: []} + fileInfo["source"]="" + fileInfo["num"]=0 + fileInfos["f"].append(fileInfo) + + fileprefix = 'pre_' + fileno = 1 #Used to make the key independent per record when we combine multiple input files + #replacing Receipt Number with IDinSource in this file!!! + #TODO - Read in Headers and do a replace of header names based on the mappings. + for file in s3files: + count = -1 + firstpos=file.rfind("/") + lastpos=len(file) + filenameonly = file[firstpos+1:lastpos] + if filenameonly.startswith("Response"): + FileSource="comebackkc1" + fileInfo = {fileno: []} + fileInfo["source"]=FileSource + fileInfo["num"]=fileno + fileInfo["unq"]=header_map[FileSource]["Unique ID"] + fileInfos["f"].append(fileInfo) + if filenameonly.startswith("Agency"): + FileSource="Agency2" + fileInfo = {fileno: []} + fileInfo["source"]=FileSource + fileInfo["num"]=fileno + fileInfo["unq"]=header_map[FileSource]["Unique ID"] + fileInfos["f"].append(fileInfo) + csv_stripextraheader = open(fileprefix + filenameonly, 'w') + csv_in = open(file,"r",encoding='utf-8') #https://stackoverflow.com/questions/49562499/how-to-fix-unicodedecodeerror-charmap-codec-cant-decode-byte-0x9d-in-posit + for line in csv_in: + if (FileSource=="comebackkc1") and (count < 0): #line.startswith(csv_header): + count = count + 1 #skip this line - remove it from the rewritten file + continue + if (FileSource=="Agency2") and (count < 0): #line.startswith(csv_header): + count = count + 1 #skip this line - remove it from the rewritten file + continue + csv_stripextraheader.write(line) + #print(count) + count = count + 1 + csv_in.close() + #os.remove(file) + fileno = fileno + 1 + csv_stripextraheader.close() +#4End############# This ugly section exists to remove the extra header that is in some csv files ################# + +#5. Combine the input files into one .csv files with consistent column headers ################# + print('5. Combining files at' + time.strftime(".%Y.%m.%d-%H.%M.%S") + ' ...') + fileno = 1 #Used to make the key independent per record when we combine multiple input files + count = 0 + csv_merge = open(combined_file, 'w', newline='') + #TODO Unique ID and Key + csv_headerNew = 'FirstName,LastName,Email,City,Phone,Zip,Unique ID,Key,' + fieldNameSource + csv_merge.write(fieldNameFileName + ',' + fieldNameFileNo + ',' + csv_headerNew) + csv_merge.write('\n') + for file in s3files: + firstpos=file.rfind("/") + lastpos=len(file) + filenameonly = file[firstpos+1:lastpos] + if filenameonly.startswith("Response"): #TODO - Can we map this? + FileSource="comebackkc1" + if filenameonly.startswith("Agency"): + FileSource="Agency2" + #https://stackoverflow.com/questions/49562499/how-to-fix-unicodedecodeerror-charmap-codec-cant-decode-byte-0x9d-in-posit + #I had sever 0x92 - https://stackoverflow.com/questions/37083687/unicodedecodeerror-ascii-codec-cant-decode-byte-0x92 + with open(fileprefix + filenameonly,"r",encoding='windows-1252') as f_input: + reader = csv.DictReader(f_input, dialect='excel') + for row in reader: + #print(count) + count = count + 1 + outrow = (filenameonly + ',' + str(fileno) + ',"' + row[header_map[FileSource]["FirstName"]] + + '","' + row[header_map[FileSource]["LastName"]] + '",' + row[header_map[FileSource]["Email"]] + + ',"' + row[header_map[FileSource]["City"]] + '",' + row[header_map[FileSource]["Phone"]] + + ',' + row[header_map[FileSource]["Zip"]] + ',' + row[header_map[FileSource]["Unique ID"]] + + ',' + row[header_map[FileSource]["Key"]] + ',' + FileSource + '\n') + #print(outrow) + csv_merge.write(outrow) + fileno = fileno + 1 + os.remove(fileprefix + filenameonly) + csv_merge.close() +#5End############# Combine multiple input files into one single file with consistent column headers ################# + + + #results = pd.DataFrame([]) +#https://www.techbeamers.com/merge-multiple-csv-files/ + #csv_header = 'Receipt Number,Response Reference ID,Respondent Email,URL submitted from,Form version submitted in,Response Submission DateTime,Time Taken To Complete (seconds),External ID,External Status,Are you planning to receive the COVID-19 vaccine?,What makes you uncertain about receiving the COVID-19 vaccine?,When would you like to get your first dose of the COVID-19 vaccine?,What state do you live in?,Which Kansas county do you live in?,"Do you live within the city limits of Kansas City, MO?",Which Missouri county do you live in?,What is your zip code?,First Name,Last Name,Street Address,City,"Phone number (please enter numbers only, no dashes, spaces, or parentheses)",Email address,What is your preferred method of contact?,We need your permission to contact you about COVID-19 testing and vaccination.,Is it okay for us to leave you a voicemail?,Sex,Age,Race/ethnicity (check as many as apply),"Do you have any pre-existing medical conditions or do you have any conditions that put you at increased risk of severe illness? (i.e. immunocompromised, diabetes, chronic lung conditions, cardiovascular disease, morbid obesity, etc.)","Do you live in or visit often crowded living settings? (For example, a supportive care facility, assisted living facility, group home, homeless shelter, or correctional setting)","How many members, including yourself, live in your household?",Do you have a history of any of the following pre-existing medical conditions?,Are you immuno-compromised?,What is your work status?,"What is your work zip code, either where you normally work in the office or on location or the zip code of your employers primary office?",Are you employed by any of the following types of patient-facing organizations?,What is the name of the health care provider for which you work?,Are you responsible for or in a position to influence vaccination planning for your employer or another organization?,What is the name of your employer or other organization?,What is your job title or role at your organization?' + +#6. Read the data from the combined file into our DataFrame for deduping + print('6. Importing data for Deduping at' + time.strftime(".%Y.%m.%d-%H.%M.%S") + ' ...') + data_d = {} + data_d.update(readData(combined_file)) +# for eachFile in s3files: + # data_d.update(readData(eachFile, idcol)) + + if not data_d: + print('no files found to process in s3 bucket named: ' + bucket) + os._exit(1) + + fieldNameSourceFileUniqueId='' + fieldNameSourceFileUniqueId = header_map[FileSource]["Unique ID"] #this is probably different for each file - a GUID in some cases + outputfieldnames = [fieldNameFileName,fieldNameFileNo,fieldNameIdInSource,fieldNameSourceFileUniqueId,'FirstName', 'LastName','Email','City','Phone','Zip','Source'] + # If a settings file already exists, we'll just load that and skip training + if os.path.exists(settings_file): + print('reading from', settings_file) + with open(settings_file, 'rb') as f: + deduper = dedupe.StaticDedupe(f) + else: + # ## Training + + # Define the fields dedupe will pay attention to + fields = [ + {'field': 'Email', 'type': 'Exact', 'has missing': True}, + {'field': 'Zip', 'type': 'String'}, + {'field': 'FirstName', 'type': 'String'}, + {'field': 'LastName', 'type': 'String'}, + {'field': 'City', 'type': 'String'}, + {'field': 'Zip', 'type': 'Exact', 'has missing': True}, + {'field': 'Phone', 'type': 'String', 'has missing': True},] + + # Create a new deduper object and pass our data model to it. + deduper = dedupe.Dedupe(fields) + + # If we have training data saved from a previous run of dedupe, + # look for it and load it in. + # __Note:__ if you want to train from scratch, delete the training_file + if os.path.exists(training_file): + print('reading labeled examples from ', training_file) + with open(training_file, 'rb') as f: + deduper.prepare_training(data_d, f) + else: + deduper.prepare_training(data_d) + + # ## Active learning + # Dedupe will find the next pair of records + # it is least certain about and ask you to label them as duplicates + # or not. + # use 'y', 'n' and 'u' keys to flag duplicates + # press 'f' when you are finished + print('starting active labeling...') + + dedupe.console_label(deduper) + + # Using the examples we just labeled, train the deduper and learn + # blocking predicates + deduper.train() + + # When finished, save our training to disk + with open(training_file, 'w') as tf: + deduper.write_training(tf) + + # Save our weights and predicates to disk. If the settings file + # exists, we will skip all the training and learning next time we run + # this file. + with open(settings_file, 'wb') as sf: + deduper.write_settings(sf) + + # ## Clustering + + # `partition` will return sets of records that dedupe + # believes are all referring to the same entity. + + print('clustering...') + clustered_dupes = deduper.partition(data_d, 0.5) + + print('# duplicate sets', len(clustered_dupes)) + + # ## Writing Results + + # Write our original data back out to a CSV with a new column called + # 'Cluster ID' which indicates which records refer to each other. + + cluster_membership = {} + for cluster_id, (records, scores) in enumerate(clustered_dupes): + for record_id, score in zip(records, scores): + cluster_membership[record_id] = { + fieldNameClusterId: cluster_id, + fieldNameConfidence: score + } + +#7. Create new output files with the clustered information. One file of just dups, another file with all data + print('7. Create output files with clustered info at' + time.strftime(".%Y.%m.%d-%H.%M.%S") + ' ...') + smallPrefix = 'sm.' + with open(output_file, 'w') as f_output, open(combined_file) as f_input,open(smallPrefix +output_file, 'w') as f_outsm: + + reader = csv.DictReader(f_input) + fieldnames = [fieldNameClusterId, fieldNameConfidence] + outputfieldnames + writer = csv.DictWriter(f_output, fieldnames=fieldnames) + writer.writeheader() + writersm = csv.DictWriter(f_outsm, fieldnames=fieldnames) + writersm.writeheader() + + for row in reader: + row_id = str(int(row[fieldNameFileNo])) + '.' + str(int(row[fieldNameIdCol])) + row.update(cluster_membership[row_id]) + newrow = {fieldNameFileName: row[fieldNameFileName], fieldNameFileNo: row[fieldNameFileNo], + fieldNameIdInSource: row[fieldNameIdInSource], fieldNameSourceFileUniqueId:row["Unique ID"], + 'FirstName': row['FirstName'], 'LastName': row['LastName'] + , 'City': row['City'], 'Zip': row['Zip'] + , 'Phone': row['Phone'], 'Email': row['Email'], fieldNameSource: row[fieldNameSource] + , fieldNameClusterId: row[fieldNameClusterId], fieldNameConfidence: row[fieldNameConfidence]} + writer.writerow(newrow) + if row[fieldNameConfidence] < 1 and row[fieldNameConfidence] > .75: + writersm.writerow(newrow) + +#8. Sort the single output file that has cluster info + print('8. Sorting files at' + time.strftime(".%Y.%m.%d-%H.%M.%S") + ' ...') +#https://www.usepandas.com/csv/sort-csv-data-by-column + sortedPrefix = 'sorted.' + df = pd.read_csv(smallPrefix + output_file) + sorted_df = df.sort_values(by=[fieldNameClusterId,"ConfidenceScore"], ascending=[True,True]) + sorted_df.to_csv(sortedPrefix + output_file, index=False) + os.remove(output_file) + os.remove(smallPrefix + output_file) + +#9. Split the output file into output files per agency and sort it + print('9. Split files per agency at' + time.strftime(".%Y.%m.%d-%H.%M.%S") + ' ...') + df = pd.read_csv(sortedPrefix + output_file) + for filen in fileInfos["f"]: + ss = filen['source'] + if ss == '': + continue + agencyFilePrefix = ss + '.' + gg = df.groupby(fieldNameSource).get_group(ss).ClusterId.values + with open(agencyFilePrefix + output_file, 'w') as a_out, open(sortedPrefix + output_file) as f_input: + reader = csv.DictReader(f_input) + fieldnames = [fieldNameClusterId, fieldNameConfidence] + outputfieldnames + writer = csv.DictWriter(a_out, fieldnames=fieldnames) + writer.writeheader() + for row in reader: + if int(row[fieldNameClusterId]) in gg: + writer.writerow(row) + a_out.close() + df2 = pd.read_csv(agencyFilePrefix + output_file) + sorted_df = df2.sort_values(by=[fieldNameClusterId,"ConfidenceScore"], ascending=[True,True]) + sorted_df.to_csv(agencyFilePrefix + sortedPrefix + output_file, index=False) + os.remove(agencyFilePrefix + output_file) + +#10 + print('10. Send files to s3 at' + time.strftime(".%Y.%m.%d-%H.%M.%S") + ' ...') + writeToS3Bucket(output_file, output_bucket, s3output_file) + + #C:\Users\Administrator\AppData\Local\Programs\Python\Python39\python s3_csv_example.py c4kc-cvax-deduplication c4kc-cvax-deduplication + + #data sort, by confidence id smallest to largest then cluster id + \ No newline at end of file diff --git a/KCDigitalDrive/Mappings.csv b/KCDigitalDrive/Mappings.csv new file mode 100644 index 00000000..ef3162d5 --- /dev/null +++ b/KCDigitalDrive/Mappings.csv @@ -0,0 +1,4 @@ +Source,FirstName,LastName,Email,City,Phone,Zip,Unique ID,Key +comebackkc1,First Name,Last Name,Email address,City,"Phone number (please enter numbers only, no dashes, spaces, or parentheses)",What is your zip code?,Response Reference ID,Receipt Number +Agency2,First Name,Last Name,Email address,City,"Phone number (please enter numbers only, no dashes, spaces, or parentheses)",What is your zip code?,Response Reference ID,Receipt Number +Agency3,NamoFirst,Namo2nd,EmailMe,City,Phone Number,ZipCode,GUID,id diff --git a/KCDigitalDrive/requirements.txt b/KCDigitalDrive/requirements.txt new file mode 100644 index 00000000..051b14ce --- /dev/null +++ b/KCDigitalDrive/requirements.txt @@ -0,0 +1 @@ +unidecode From 2201e941970c173569a94572a6a1673939d1000c Mon Sep 17 00:00:00 2001 From: Rob Kraft Date: Sun, 11 Apr 2021 14:21:27 -0500 Subject: [PATCH 21/33] Need training files --- ...licate_Vaccination_Signups_learned_settings | Bin 0 -> 467539 bytes ...Duplicate_Vaccination_Signups_training.json | 1 + 2 files changed, 1 insertion(+) create mode 100644 KCDigitalDrive/Duplicate_Vaccination_Signups_learned_settings create mode 100644 KCDigitalDrive/Duplicate_Vaccination_Signups_training.json diff --git a/KCDigitalDrive/Duplicate_Vaccination_Signups_learned_settings b/KCDigitalDrive/Duplicate_Vaccination_Signups_learned_settings new file mode 100644 index 0000000000000000000000000000000000000000..a57b6412e31492fae3747c0918dccf12823c6cb6 GIT binary patch literal 467539 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�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 literal 0 HcmV?d00001 diff --git a/KCDigitalDrive/Duplicate_Vaccination_Signups_training.json b/KCDigitalDrive/Duplicate_Vaccination_Signups_training.json new file mode 100644 index 00000000..fe001b5a --- /dev/null +++ b/KCDigitalDrive/Duplicate_Vaccination_Signups_training.json @@ -0,0 +1 @@ +{"distinct": [[{"FileNo": "1", "Receipt Number": "1165", "Response Reference ID": "224c8e71-79a5-437e-8bdb-fa8d6eeb03a5", "Respondent Email": null, "URL submitted from": "https://www.comebackkc.com/covid-vaccine-survey/", "Form version submitted in": "3", "Response Submission DateTime": "03/01/2021 10:28 am", "Time Taken To Complete (seconds)": "377", "External ID": null, "External Status": null, "Are you planning to receive the COVID-19 vaccine?": "yes", "What makes you uncertain about receiving the COVID-19 vaccine?": null, "When would you like to get your first dose of the COVID-19 vaccine?": "as soon as possible", "What state do you live in?": "missouri", "Which Kansas county do you live in?": null, "Do you live within the city limits of Kansas City, MO?": "yes", "Which Missouri county do you live in?": "jackson", "Zip": "64133", "FirstName": "velma", "LastName": "day", "Street Address": null, "City": "kansas city", "Phone": "8167378305", "Email": "jv2day@yahoo.com", "What is your preferred method of contact?": "phone call", "We need your permission to contact you about COVID-19 testing and vaccination.": "i consent to receive email notifications regarding covid-19 vaccination availability and clinic opportunities.,i consent to receive text message notifications regarding covid-19 vaccination availability and clinic opportunities. message and data rates may apply.,i give permission to comeback kc to share my information with appropriate public health officials to help with vaccine distribution.", "Is it okay for us to leave you a voicemail?": "yes", "Sex": "female", "Age": "83", "Race/ethnicity (check as many as apply)": "white", "Do you have any pre-existing medical conditions or do you have any conditions that put you at increased risk of severe illness? (i.e. immunocompromised, diabetes, chronic lung conditions, cardiovascular disease, morbid obesity, etc.)": "yes", "Do you live in or visit often crowded living settings? (For example, a supportive care facility, assisted living facility, group home, homeless shelter, or correctional setting)": "yes", "How many members, including yourself, live in your household?": "2", "Do you have a history of any of the following pre-existing medical conditions?": null, "Are you immuno-compromised?": null, "What is your work status?": "retired", "What is your work zip code, either where you normally work in the office or on location or the zip code of your employers primary office?": null, "Are you employed by any of the following types of patient-facing organizations?": "none of these", "What is the name of the health care provider for which you work?": null, "Are you responsible for or in a position to influence vaccination planning for your employer or another organization?": "no, just interested for myself and my family", "What is the name of your employer or other organization?": null, "What is your job title or role at your organization?": null}, {"FileNo": "1", "Receipt Number": "1166", "Response Reference ID": "0382803a-fe68-4278-9fca-89f2b02744f1", "Respondent Email": null, "URL submitted from": "https://www.comebackkc.com/covid-vaccine-survey/", "Form version submitted in": "3", "Response Submission DateTime": "03/01/2021 10:30 am", "Time Taken To Complete (seconds)": "187", "External ID": null, "External Status": null, "Are you planning to receive the COVID-19 vaccine?": "yes", "What makes you uncertain about receiving the COVID-19 vaccine?": null, "When would you like to get your first dose of the COVID-19 vaccine?": "as soon as possible", "What state do you live in?": "missouri", "Which Kansas county do you live in?": null, "Do you live within the city limits of Kansas City, MO?": "yes", "Which Missouri county do you live in?": "jackson", "Zip": "64133", "FirstName": "john", "LastName": "day", "Street Address": null, "City": "kansas city", "Phone": "8167378305", "Email": "jv2day@yahoo.com", "What is your preferred method of contact?": "phone call", "We need your permission to contact you about COVID-19 testing and vaccination.": "i consent to receive email notifications regarding covid-19 vaccination availability and clinic opportunities.,i consent to receive text message notifications regarding covid-19 vaccination availability and clinic opportunities. message and data rates may apply.,i give permission to comeback kc to share my information with appropriate public health officials to help with vaccine distribution.", "Is it okay for us to leave you a voicemail?": "yes", "Sex": "male", "Age": "89", "Race/ethnicity (check as many as apply)": "white", "Do you have any pre-existing medical conditions or do you have any conditions that put you at increased risk of severe illness? (i.e. immunocompromised, diabetes, chronic lung conditions, cardiovascular disease, morbid obesity, etc.)": "no", "Do you live in or visit often crowded living settings? (For example, a supportive care facility, assisted living facility, group home, homeless shelter, or correctional setting)": "no", "How many members, including yourself, live in your household?": "2", "Do you have a history of any of the following pre-existing medical conditions?": null, "Are you immuno-compromised?": null, "What is your work status?": "retired", "What is your work zip code, either where you normally work in the office or on location or the zip code of your employers primary office?": null, "Are you employed by any of the following types of patient-facing organizations?": "none of these", "What is the name of the health care provider for which you work?": null, "Are you responsible for or in a position to influence vaccination planning for your employer or another organization?": "no, just interested for myself and my family", "What is the name of your employer or other organization?": null, "What is your job title or role at your organization?": null}], [{"FileNo": "1", "Receipt Number": "914", "Response Reference ID": "64cb5ed4-0323-4930-8895-144a450b655a", "Respondent Email": null, "URL submitted from": "https://www.comebackkc.com/covid-vaccine-survey/", "Form version submitted in": "3", "Response Submission DateTime": "02/23/2021 12:39 pm", "Time Taken To Complete (seconds)": "215", "External ID": null, "External Status": null, "Are you planning to receive the COVID-19 vaccine?": "yes", "What makes you uncertain about receiving the COVID-19 vaccine?": null, "When would you like to get your first dose of the COVID-19 vaccine?": "as soon as possible", "What state do you live in?": "kansas", "Which Kansas county do you live in?": "johnson", "Do you live within the city limits of Kansas City, MO?": null, "Which Missouri county do you live in?": null, "Zip": "66062", "FirstName": "joyce", "LastName": "bardeen", "Street Address": null, "City": "olathe", "Phone": "7249712837", "Email": "joycebardeen@gmail.com", "What is your preferred method of contact?": "text message", "We need your permission to contact you about COVID-19 testing and vaccination.": "i consent to receive email notifications regarding covid-19 vaccination availability and clinic opportunities.,i consent to receive text message notifications regarding covid-19 vaccination availability and clinic opportunities. message and data rates may apply.,i give permission to comeback kc to share my information with appropriate public health officials to help with vaccine distribution.", "Is it okay for us to leave you a voicemail?": "yes", "Sex": "female", "Age": "72", "Race/ethnicity (check as many as apply)": "white", "Do you have any pre-existing medical conditions or do you have any conditions that put you at increased risk of severe illness? (i.e. immunocompromised, diabetes, chronic lung conditions, cardiovascular disease, morbid obesity, etc.)": "no", "Do you live in or visit often crowded living settings? (For example, a supportive care facility, assisted living facility, group home, homeless shelter, or correctional setting)": "no", "How many members, including yourself, live in your household?": "2", "Do you have a history of any of the following pre-existing medical conditions?": null, "Are you immuno-compromised?": null, "What is your work status?": "retired", "What is your work zip code, either where you normally work in the office or on location or the zip code of your employers primary office?": null, "Are you employed by any of the following types of patient-facing organizations?": "none of these", "What is the name of the health care provider for which you work?": null, "Are you responsible for or in a position to influence vaccination planning for your employer or another organization?": "no, just interested for myself and my family", "What is the name of your employer or other organization?": null, "What is your job title or role at your organization?": null}, {"FileNo": "1", "Receipt Number": "916", "Response Reference ID": "b070d53c-5efd-41fa-ae33-c34484a9b4b6", "Respondent Email": null, "URL submitted from": "https://www.comebackkc.com/covid-vaccine-survey/", "Form version submitted in": "3", "Response Submission DateTime": "02/23/2021 12:44 pm", "Time Taken To Complete (seconds)": "292", "External ID": null, "External Status": null, "Are you planning to receive the COVID-19 vaccine?": "yes", "What makes you uncertain about receiving the COVID-19 vaccine?": null, "When would you like to get your first dose of the COVID-19 vaccine?": "as soon as possible", "What state do you live in?": "kansas", "Which Kansas county do you live in?": "johnson", "Do you live within the city limits of Kansas City, MO?": null, "Which Missouri county do you live in?": null, "Zip": "66062", "FirstName": "robert", "LastName": "bardeen", "Street Address": null, "City": "olathe", "Phone": "7249712838", "Email": "robertbardeen@gmail.com", "What is your preferred method of contact?": "text message", "We need your permission to contact you about COVID-19 testing and vaccination.": "i consent to receive email notifications regarding covid-19 vaccination availability and clinic opportunities.,i consent to receive text message notifications regarding covid-19 vaccination availability and clinic opportunities. message and data rates may apply.,i give permission to comeback kc to share my information with appropriate public health officials to help with vaccine distribution.", "Is it okay for us to leave you a voicemail?": "yes", "Sex": "male", "Age": "73", "Race/ethnicity (check as many as apply)": "white", "Do you have any pre-existing medical conditions or do you have any conditions that put you at increased risk of severe illness? (i.e. immunocompromised, diabetes, chronic lung conditions, cardiovascular disease, morbid obesity, etc.)": "no", "Do you live in or visit often crowded living settings? (For example, a supportive care facility, assisted living facility, group home, homeless shelter, or correctional setting)": "no", "How many members, including yourself, live in your household?": "2", "Do you have a history of any of the following pre-existing medical conditions?": null, "Are you immuno-compromised?": null, "What is your work status?": "retired", "What is your work zip code, either where you normally work in the office or on location or the zip code of your employers primary office?": null, "Are you employed by any of the following types of patient-facing organizations?": "none of these", "What is the name of the health care provider for which you work?": null, "Are you responsible for or in a position to influence vaccination planning for your employer or another organization?": "no, just interested for myself and my family", "What is the name of your employer or other organization?": null, "What is your job title or role at your organization?": null}], [{"FileNo": "1", "Receipt Number": "217", "Response Reference ID": "a8ba7467-ff25-40a4-84dd-f16cd2aa8941", "Respondent Email": null, "URL submitted from": "https://www.comebackkc.com/covid-vaccine-survey/", "Form version submitted in": "3", "Response Submission DateTime": "02/22/2021 8:51 am", "Time Taken To Complete (seconds)": "217", "External ID": null, "External Status": null, "Are you planning to receive the COVID-19 vaccine?": "yes", "What makes you uncertain about receiving the COVID-19 vaccine?": null, "When would you like to get your first dose of the COVID-19 vaccine?": "as soon as possible", "What state do you live in?": "missouri", "Which Kansas county do you live in?": null, "Do you live within the city limits of Kansas City, MO?": "yes", "Which Missouri county do you live in?": "jackson", "Zip": "64114", "FirstName": "sarah", "LastName": "peckham", "Street Address": null, "City": "kansas city", "Phone": "8163634045", "Email": "speckham@kc.rr.com", "What is your preferred method of contact?": "email", "We need your permission to contact you about COVID-19 testing and vaccination.": "i consent to receive email notifications regarding covid-19 vaccination availability and clinic opportunities.,i consent to receive text message notifications regarding covid-19 vaccination availability and clinic opportunities. message and data rates may apply.,i give permission to comeback kc to share my information with appropriate public health officials to help with vaccine distribution.", "Is it okay for us to leave you a voicemail?": "yes", "Sex": "female", "Age": "82", "Race/ethnicity (check as many as apply)": "white", "Do you have any pre-existing medical conditions or do you have any conditions that put you at increased risk of severe illness? (i.e. immunocompromised, diabetes, chronic lung conditions, cardiovascular disease, morbid obesity, etc.)": "no", "Do you live in or visit often crowded living settings? (For example, a supportive care facility, assisted living facility, group home, homeless shelter, or correctional setting)": "no", "How many members, including yourself, live in your household?": "1", "Do you have a history of any of the following pre-existing medical conditions?": null, "Are you immuno-compromised?": null, "What is your work status?": "retired", "What is your work zip code, either where you normally work in the office or on location or the zip code of your employers primary office?": null, "Are you employed by any of the following types of patient-facing organizations?": "none of these", "What is the name of the health care provider for which you work?": null, "Are you responsible for or in a position to influence vaccination planning for your employer or another organization?": "no, just interested for myself and my family", "What is the name of your employer or other organization?": null, "What is your job title or role at your organization?": null}, {"FileNo": "1", "Receipt Number": "318", "Response Reference ID": "60a9795d-944a-4d94-9c5b-277c63bb2733", "Respondent Email": null, "URL submitted from": "https://www.comebackkc.com/covid-vaccine-survey/", "Form version submitted in": "3", "Response Submission DateTime": "02/22/2021 10:04 am", "Time Taken To Complete (seconds)": "290", "External ID": null, "External Status": null, "Are you planning to receive the COVID-19 vaccine?": "yes", "What makes you uncertain about receiving the COVID-19 vaccine?": null, "When would you like to get your first dose of the COVID-19 vaccine?": "as soon as possible", "What state do you live in?": "missouri", "Which Kansas county do you live in?": null, "Do you live within the city limits of Kansas City, MO?": "yes", "Which Missouri county do you live in?": "jackson", "Zip": "64114", "FirstName": "sarah", "LastName": "hamacher", "Street Address": null, "City": "kansas city", "Phone": "8166788575", "Email": "sally.hamacher@hotmail.com", "What is your preferred method of contact?": "text message", "We need your permission to contact you about COVID-19 testing and vaccination.": "i consent to receive email notifications regarding covid-19 vaccination availability and clinic opportunities.,i consent to receive text message notifications regarding covid-19 vaccination availability and clinic opportunities. message and data rates may apply.,i give permission to comeback kc to share my information with appropriate public health officials to help with vaccine distribution.", "Is it okay for us to leave you a voicemail?": "yes", "Sex": "female", "Age": "71", "Race/ethnicity (check as many as apply)": "white", "Do you have any pre-existing medical conditions or do you have any conditions that put you at increased risk of severe illness? (i.e. immunocompromised, diabetes, chronic lung conditions, cardiovascular disease, morbid obesity, etc.)": "yes", "Do you live in or visit often crowded living settings? (For example, a supportive care facility, assisted living facility, group home, homeless shelter, or correctional setting)": "no", "How many members, including yourself, live in your household?": "3", "Do you have a history of any of the following pre-existing medical conditions?": null, "Are you immuno-compromised?": null, "What is your work status?": "retired", "What is your work zip code, either where you normally work in the office or on location or the zip code of your employers primary office?": null, "Are you employed by any of the following types of patient-facing organizations?": "none of these", "What is the name of the health care provider for which you work?": null, "Are you responsible for or in a position to influence vaccination planning for your employer or another organization?": "no, just interested for myself and my family", "What is the name of your employer or other organization?": null, "What is your job title or role at your organization?": null}], [{"FileNo": "1", "Receipt Number": "466", "Response Reference ID": "063d5c1e-138e-4ce2-9123-3f5ffd2ce29d", "Respondent Email": null, "URL submitted from": "https://www.comebackkc.com/covid-vaccine-survey/", "Form version submitted in": "3", "Response Submission DateTime": "02/22/2021 12:03 pm", "Time Taken To Complete (seconds)": "243", "External ID": null, "External Status": null, "Are you planning to receive the COVID-19 vaccine?": "yes", "What makes you uncertain about receiving the COVID-19 vaccine?": null, "When would you like to get your first dose of the COVID-19 vaccine?": "as soon as possible", "What state do you live in?": "missouri", "Which Kansas county do you live in?": null, "Do you live within the city limits of Kansas City, MO?": "yes", "Which Missouri county do you live in?": "platte", "Zip": "64151", "FirstName": "john", "LastName": "jacobsen", "Street Address": null, "City": "kansas city", "Phone": "8165871706", "Email": "jakeojacob@kc.rr.com", "What is your preferred method of contact?": "email", "We need your permission to contact you about COVID-19 testing and vaccination.": "i consent to receive email notifications regarding covid-19 vaccination availability and clinic opportunities.,i consent to receive text message notifications regarding covid-19 vaccination availability and clinic opportunities. message and data rates may apply.,i give permission to comeback kc to share my information with appropriate public health officials to help with vaccine distribution.", "Is it okay for us to leave you a voicemail?": "yes", "Sex": "male", "Age": "86", "Race/ethnicity (check as many as apply)": "white", "Do you have any pre-existing medical conditions or do you have any conditions that put you at increased risk of severe illness? (i.e. immunocompromised, diabetes, chronic lung conditions, cardiovascular disease, morbid obesity, etc.)": "yes", "Do you live in or visit often crowded living settings? (For example, a supportive care facility, assisted living facility, group home, homeless shelter, or correctional setting)": "no", "How many members, including yourself, live in your household?": "2", "Do you have a history of any of the following pre-existing medical conditions?": null, "Are you immuno-compromised?": null, "What is your work status?": "retired", "What is your work zip code, either where you normally work in the office or on location or the zip code of your employers primary office?": null, "Are you employed by any of the following types of patient-facing organizations?": "none of these", "What is the name of the health care provider for which you work?": null, "Are you responsible for or in a position to influence vaccination planning for your employer or another organization?": "no, just interested for myself and my family", "What is the name of your employer or other organization?": null, "What is your job title or role at your organization?": null}, {"FileNo": "1", "Receipt Number": "889", "Response Reference ID": "c1bcdf20-e5a2-4148-8139-53a47b6cb722", "Respondent Email": null, "URL submitted from": "https://www.comebackkc.com/covid-vaccine-survey/", "Form version submitted in": "3", "Response Submission DateTime": "02/23/2021 10:47 am", "Time Taken To Complete (seconds)": "161", "External ID": null, "External Status": null, "Are you planning to receive the COVID-19 vaccine?": "yes", "What makes you uncertain about receiving the COVID-19 vaccine?": null, "When would you like to get your first dose of the COVID-19 vaccine?": "as soon as possible", "What state do you live in?": "missouri", "Which Kansas county do you live in?": null, "Do you live within the city limits of Kansas City, MO?": "yes", "Which Missouri county do you live in?": "jackson", "Zip": "64145", "FirstName": "john", "LastName": "hanrahan", "Street Address": null, "City": "kansas city", "Phone": "8165000002", "Email": "jahanrahan@firstam.com", "What is your preferred method of contact?": "email", "We need your permission to contact you about COVID-19 testing and vaccination.": "i consent to receive email notifications regarding covid-19 vaccination availability and clinic opportunities.,i consent to receive text message notifications regarding covid-19 vaccination availability and clinic opportunities. message and data rates may apply.,i give permission to comeback kc to share my information with appropriate public health officials to help with vaccine distribution.", "Is it okay for us to leave you a voicemail?": "yes", "Sex": "male", "Age": "68", "Race/ethnicity (check as many as apply)": "white", "Do you have any pre-existing medical conditions or do you have any conditions that put you at increased risk of severe illness? (i.e. immunocompromised, diabetes, chronic lung conditions, cardiovascular disease, morbid obesity, etc.)": "yes", "Do you live in or visit often crowded living settings? (For example, a supportive care facility, assisted living facility, group home, homeless shelter, or correctional setting)": "no", "How many members, including yourself, live in your household?": "2", "Do you have a history of any of the following pre-existing medical conditions?": null, "Are you immuno-compromised?": null, "What is your work status?": "employed full time", "What is your work zip code, either where you normally work in the office or on location or the zip code of your employers primary office?": "64106", "Are you employed by any of the following types of patient-facing organizations?": "none of these", "What is the name of the health care provider for which you work?": null, "Are you responsible for or in a position to influence vaccination planning for your employer or another organization?": "no, just interested for myself and my family", "What is the name of your employer or other organization?": null, "What is your job title or role at your organization?": null}], [{"FileNo": "1", "Receipt Number": "1085", "Response Reference ID": "060a28b2-6db6-4327-9ded-3746d5711645", "Respondent Email": null, "URL submitted from": "https://www.comebackkc.com/covid-vaccine-survey/", "Form version submitted in": "3", "Response Submission DateTime": "02/26/2021 17:24 pm", "Time Taken To Complete (seconds)": "247", "External ID": null, "External Status": null, "Are you planning to receive the COVID-19 vaccine?": "yes", "What makes you uncertain about receiving the COVID-19 vaccine?": null, "When would you like to get your first dose of the COVID-19 vaccine?": "as soon as possible", "What state do you live in?": "missouri", "Which Kansas county do you live in?": null, "Do you live within the city limits of Kansas City, MO?": "no", "Which Missouri county do you live in?": "jackson", "Zip": "64015", "FirstName": "john", "LastName": "gale", "Street Address": null, "City": "lake tapawingo", "Phone": "8167975641", "Email": "jvgale.jg@gmail.com", "What is your preferred method of contact?": "email", "We need your permission to contact you about COVID-19 testing and vaccination.": "i consent to receive email notifications regarding covid-19 vaccination availability and clinic opportunities.,i consent to receive text message notifications regarding covid-19 vaccination availability and clinic opportunities. message and data rates may apply.,i give permission to comeback kc to share my information with appropriate public health officials to help with vaccine distribution.", "Is it okay for us to leave you a voicemail?": "yes", "Sex": "male", "Age": "63", "Race/ethnicity (check as many as apply)": "white", "Do you have any pre-existing medical conditions or do you have any conditions that put you at increased risk of severe illness? (i.e. immunocompromised, diabetes, chronic lung conditions, cardiovascular disease, morbid obesity, etc.)": "yes", "Do you live in or visit often crowded living settings? (For example, a supportive care facility, assisted living facility, group home, homeless shelter, or correctional setting)": "no", "How many members, including yourself, live in your household?": "2", "Do you have a history of any of the following pre-existing medical conditions?": null, "Are you immuno-compromised?": null, "What is your work status?": "retired", "What is your work zip code, either where you normally work in the office or on location or the zip code of your employers primary office?": null, "Are you employed by any of the following types of patient-facing organizations?": "none of these", "What is the name of the health care provider for which you work?": null, "Are you responsible for or in a position to influence vaccination planning for your employer or another organization?": "no, just interested for myself and my family", "What is the name of your employer or other organization?": null, "What is your job title or role at your organization?": null}, {"FileNo": "1", "Receipt Number": "1099", "Response Reference ID": "c65de88f-0079-4cd6-96ea-b021878dfe84", "Respondent Email": null, "URL submitted from": "https://www.comebackkc.com/covid-vaccine-survey/", "Form version submitted in": "3", "Response Submission DateTime": "02/26/2021 17:27 pm", "Time Taken To Complete (seconds)": "183", "External ID": null, "External Status": null, "Are you planning to receive the COVID-19 vaccine?": "yes", "What makes you uncertain about receiving the COVID-19 vaccine?": null, "When would you like to get your first dose of the COVID-19 vaccine?": "as soon as possible", "What state do you live in?": "missouri", "Which Kansas county do you live in?": null, "Do you live within the city limits of Kansas City, MO?": "no", "Which Missouri county do you live in?": "jackson", "Zip": "64014", "FirstName": "james", "LastName": "gale", "Street Address": null, "City": "blue springs", "Phone": "8167975641", "Email": "jvgale.jg@gmail.com", "What is your preferred method of contact?": "email", "We need your permission to contact you about COVID-19 testing and vaccination.": "i consent to receive email notifications regarding covid-19 vaccination availability and clinic opportunities.,i consent to receive text message notifications regarding covid-19 vaccination availability and clinic opportunities. message and data rates may apply.,i give permission to comeback kc to share my information with appropriate public health officials to help with vaccine distribution.", "Is it okay for us to leave you a voicemail?": "yes", "Sex": "male", "Age": null, "Race/ethnicity (check as many as apply)": "white", "Do you have any pre-existing medical conditions or do you have any conditions that put you at increased risk of severe illness? (i.e. immunocompromised, diabetes, chronic lung conditions, cardiovascular disease, morbid obesity, etc.)": "yes", "Do you live in or visit often crowded living settings? (For example, a supportive care facility, assisted living facility, group home, homeless shelter, or correctional setting)": "no", "How many members, including yourself, live in your household?": "3", "Do you have a history of any of the following pre-existing medical conditions?": null, "Are you immuno-compromised?": null, "What is your work status?": "retired", "What is your work zip code, either where you normally work in the office or on location or the zip code of your employers primary office?": null, "Are you employed by any of the following types of patient-facing organizations?": "none of these", "What is the name of the health care provider for which you work?": null, "Are you responsible for or in a position to influence vaccination planning for your employer or another organization?": "no, just interested for myself and my family", "What is the name of your employer or other organization?": null, "What is your job title or role at your organization?": null}], [{"FileNo": "1", "Receipt Number": "834", "Response Reference ID": "dfcb7cde-868d-4989-b186-20e177876956", "Respondent Email": null, "URL submitted from": "https://www.comebackkc.com/covid-vaccine-survey/", "Form version submitted in": "3", "Response Submission DateTime": "02/23/2021 6:38 am", "Time Taken To Complete (seconds)": "260", "External ID": null, "External Status": null, "Are you planning to receive the COVID-19 vaccine?": "yes", "What makes you uncertain about receiving the COVID-19 vaccine?": null, "When would you like to get your first dose of the COVID-19 vaccine?": "as soon as possible", "What state do you live in?": "missouri", "Which Kansas county do you live in?": null, "Do you live within the city limits of Kansas City, MO?": "no", "Which Missouri county do you live in?": "jackson", "Zip": "64014", "FirstName": "peter", "LastName": "rocque", "Street Address": null, "City": "blue springs", "Phone": "8162742092", "Email": "pcrocque@sbcglobal.net", "What is your preferred method of contact?": "email", "We need your permission to contact you about COVID-19 testing and vaccination.": "i consent to receive email notifications regarding covid-19 vaccination availability and clinic opportunities.,i consent to receive text message notifications regarding covid-19 vaccination availability and clinic opportunities. message and data rates may apply.,i give permission to comeback kc to share my information with appropriate public health officials to help with vaccine distribution.", "Is it okay for us to leave you a voicemail?": "yes", "Sex": "male", "Age": "71", "Race/ethnicity (check as many as apply)": "white", "Do you have any pre-existing medical conditions or do you have any conditions that put you at increased risk of severe illness? (i.e. immunocompromised, diabetes, chronic lung conditions, cardiovascular disease, morbid obesity, etc.)": "no", "Do you live in or visit often crowded living settings? (For example, a supportive care facility, assisted living facility, group home, homeless shelter, or correctional setting)": "no", "How many members, including yourself, live in your household?": "2", "Do you have a history of any of the following pre-existing medical conditions?": null, "Are you immuno-compromised?": null, "What is your work status?": "retired", "What is your work zip code, either where you normally work in the office or on location or the zip code of your employers primary office?": null, "Are you employed by any of the following types of patient-facing organizations?": "none of these", "What is the name of the health care provider for which you work?": null, "Are you responsible for or in a position to influence vaccination planning for your employer or another organization?": "no, just interested for myself and my family", "What is the name of your employer or other organization?": null, "What is your job title or role at your organization?": null}, {"FileNo": "1", "Receipt Number": "837", "Response Reference ID": "95cc7222-c19e-44d4-aac9-76fa0cdf9249", "Respondent Email": null, "URL submitted from": "https://www.comebackkc.com/covid-vaccine-survey/", "Form version submitted in": "3", "Response Submission DateTime": "02/23/2021 6:51 am", "Time Taken To Complete (seconds)": "197", "External ID": null, "External Status": null, "Are you planning to receive the COVID-19 vaccine?": "yes", "What makes you uncertain about receiving the COVID-19 vaccine?": null, "When would you like to get your first dose of the COVID-19 vaccine?": "as soon as possible", "What state do you live in?": "missouri", "Which Kansas county do you live in?": null, "Do you live within the city limits of Kansas City, MO?": "no", "Which Missouri county do you live in?": "jackson", "Zip": "64014", "FirstName": "cynthia", "LastName": "rocque", "Street Address": null, "City": "blue springs", "Phone": "8162742092", "Email": "pcrocque@sbcglobal.net", "What is your preferred method of contact?": "email", "We need your permission to contact you about COVID-19 testing and vaccination.": "i consent to receive email notifications regarding covid-19 vaccination availability and clinic opportunities.,i consent to receive text message notifications regarding covid-19 vaccination availability and clinic opportunities. message and data rates may apply.,i give permission to comeback kc to share my information with appropriate public health officials to help with vaccine distribution.", "Is it okay for us to leave you a voicemail?": "yes", "Sex": "female", "Age": null, "Race/ethnicity (check as many as apply)": "white", "Do you have any pre-existing medical conditions or do you have any conditions that put you at increased risk of severe illness? (i.e. immunocompromised, diabetes, chronic lung conditions, cardiovascular disease, morbid obesity, etc.)": "yes", "Do you live in or visit often crowded living settings? (For example, a supportive care facility, assisted living facility, group home, homeless shelter, or correctional setting)": "no", "How many members, including yourself, live in your household?": "2", "Do you have a history of any of the following pre-existing medical conditions?": null, "Are you immuno-compromised?": null, "What is your work status?": "retired", "What is your work zip code, either where you normally work in the office or on location or the zip code of your employers primary office?": null, "Are you employed by any of the following types of patient-facing organizations?": "none of these", "What is the name of the health care provider for which you work?": null, "Are you responsible for or in a position to influence vaccination planning for your employer or another organization?": "no, just interested for myself and my family", "What is the name of your employer or other organization?": null, "What is your job title or role at your organization?": null}], [{"FileNo": "1", "Receipt Number": "239", "Response Reference ID": "67d9316b-34d6-4841-acc2-c87991f546bb", "Respondent Email": null, "URL submitted from": "https://www.comebackkc.com/covid-vaccine-survey/", "Form version submitted in": "3", "Response Submission DateTime": "02/22/2021 9:12 am", "Time Taken To Complete (seconds)": "222", "External ID": null, "External Status": null, "Are you planning to receive the COVID-19 vaccine?": "yes", "What makes you uncertain about receiving the COVID-19 vaccine?": null, "When would you like to get your first dose of the COVID-19 vaccine?": "as soon as possible", "What state do you live in?": "missouri", "Which Kansas county do you live in?": null, "Do you live within the city limits of Kansas City, MO?": "no", "Which Missouri county do you live in?": "jackson", "Zip": "64058", "FirstName": "dennis", "LastName": "hartman", "Street Address": null, "City": "independence", "Phone": "8163357555", "Email": "denbethar@yahoo.com", "What is your preferred method of contact?": "email", "We need your permission to contact you about COVID-19 testing and vaccination.": "i consent to receive email notifications regarding covid-19 vaccination availability and clinic opportunities.,i consent to receive text message notifications regarding covid-19 vaccination availability and clinic opportunities. message and data rates may apply.,i give permission to comeback kc to share my information with appropriate public health officials to help with vaccine distribution.", "Is it okay for us to leave you a voicemail?": "yes", "Sex": "male", "Age": "74", "Race/ethnicity (check as many as apply)": "white", "Do you have any pre-existing medical conditions or do you have any conditions that put you at increased risk of severe illness? (i.e. immunocompromised, diabetes, chronic lung conditions, cardiovascular disease, morbid obesity, etc.)": "yes", "Do you live in or visit often crowded living settings? (For example, a supportive care facility, assisted living facility, group home, homeless shelter, or correctional setting)": "no", "How many members, including yourself, live in your household?": "3", "Do you have a history of any of the following pre-existing medical conditions?": null, "Are you immuno-compromised?": null, "What is your work status?": "retired", "What is your work zip code, either where you normally work in the office or on location or the zip code of your employers primary office?": null, "Are you employed by any of the following types of patient-facing organizations?": "none of these", "What is the name of the health care provider for which you work?": null, "Are you responsible for or in a position to influence vaccination planning for your employer or another organization?": "no, just interested for myself and my family", "What is the name of your employer or other organization?": null, "What is your job title or role at your organization?": null}, {"FileNo": "1", "Receipt Number": "251", "Response Reference ID": "74d9a0ed-33cd-4cd6-869c-a074f9db9a1f", "Respondent Email": null, "URL submitted from": "https://www.comebackkc.com/covid-vaccine-survey/", "Form version submitted in": "3", "Response Submission DateTime": "02/22/2021 9:16 am", "Time Taken To Complete (seconds)": "192", "External ID": null, "External Status": null, "Are you planning to receive the COVID-19 vaccine?": "yes", "What makes you uncertain about receiving the COVID-19 vaccine?": null, "When would you like to get your first dose of the COVID-19 vaccine?": "as soon as possible", "What state do you live in?": "missouri", "Which Kansas county do you live in?": null, "Do you live within the city limits of Kansas City, MO?": "no", "Which Missouri county do you live in?": "jackson", "Zip": "64058", "FirstName": "betty", "LastName": "hartman", "Street Address": null, "City": "independence", "Phone": "8163357555", "Email": "betdenhar@yahoo.com", "What is your preferred method of contact?": "email", "We need your permission to contact you about COVID-19 testing and vaccination.": "i consent to receive email notifications regarding covid-19 vaccination availability and clinic opportunities.,i consent to receive text message notifications regarding covid-19 vaccination availability and clinic opportunities. message and data rates may apply.,i give permission to comeback kc to share my information with appropriate public health officials to help with vaccine distribution.", "Is it okay for us to leave you a voicemail?": "yes", "Sex": "female", "Age": "65", "Race/ethnicity (check as many as apply)": "white", "Do you have any pre-existing medical conditions or do you have any conditions that put you at increased risk of severe illness? (i.e. immunocompromised, diabetes, chronic lung conditions, cardiovascular disease, morbid obesity, etc.)": "yes", "Do you live in or visit often crowded living settings? (For example, a supportive care facility, assisted living facility, group home, homeless shelter, or correctional setting)": "no", "How many members, including yourself, live in your household?": "3", "Do you have a history of any of the following pre-existing medical conditions?": null, "Are you immuno-compromised?": null, "What is your work status?": "other", "What is your work zip code, either where you normally work in the office or on location or the zip code of your employers primary office?": null, "Are you employed by any of the following types of patient-facing organizations?": "none of these", "What is the name of the health care provider for which you work?": null, "Are you responsible for or in a position to influence vaccination planning for your employer or another organization?": "no, just interested for myself and my family", "What is the name of your employer or other organization?": null, "What is your job title or role at your organization?": null}], [{"FileNo": "1", "Receipt Number": "917", "Response Reference ID": "b9dd70c3-b716-411c-994c-5b88f6285fac", "Respondent Email": null, "URL submitted from": "https://www.comebackkc.com/covid-vaccine-survey/", "Form version submitted in": "3", "Response Submission DateTime": "02/23/2021 12:52 pm", "Time Taken To Complete (seconds)": "162", "External ID": null, "External Status": null, "Are you planning to receive the COVID-19 vaccine?": "yes", "What makes you uncertain about receiving the COVID-19 vaccine?": null, "When would you like to get your first dose of the COVID-19 vaccine?": "as soon as possible", "What state do you live in?": "kansas", "Which Kansas county do you live in?": "shawnee", "Do you live within the city limits of Kansas City, MO?": null, "Which Missouri county do you live in?": null, "Zip": "66604", "FirstName": "kyle", "LastName": "ashton", "Street Address": null, "City": "topeka", "Phone": "7852248423", "Email": "ashtonkyle@gmail.com", "What is your preferred method of contact?": "text message", "We need your permission to contact you about COVID-19 testing and vaccination.": "i consent to receive email notifications regarding covid-19 vaccination availability and clinic opportunities.,i consent to receive text message notifications regarding covid-19 vaccination availability and clinic opportunities. message and data rates may apply.,i give permission to comeback kc to share my information with appropriate public health officials to help with vaccine distribution.", "Is it okay for us to leave you a voicemail?": "yes", "Sex": "female", "Age": "68", "Race/ethnicity (check as many as apply)": "white", "Do you have any pre-existing medical conditions or do you have any conditions that put you at increased risk of severe illness? (i.e. immunocompromised, diabetes, chronic lung conditions, cardiovascular disease, morbid obesity, etc.)": "yes", "Do you live in or visit often crowded living settings? (For example, a supportive care facility, assisted living facility, group home, homeless shelter, or correctional setting)": "no", "How many members, including yourself, live in your household?": "2", "Do you have a history of any of the following pre-existing medical conditions?": null, "Are you immuno-compromised?": null, "What is your work status?": "retired", "What is your work zip code, either where you normally work in the office or on location or the zip code of your employers primary office?": null, "Are you employed by any of the following types of patient-facing organizations?": "none of these", "What is the name of the health care provider for which you work?": null, "Are you responsible for or in a position to influence vaccination planning for your employer or another organization?": "no, just interested for myself and my family", "What is the name of your employer or other organization?": null, "What is your job title or role at your organization?": null}, {"FileNo": "1", "Receipt Number": "918", "Response Reference ID": "c1b2cb42-d3fa-4368-aeca-ac201b6c7580", "Respondent Email": null, "URL submitted from": "https://www.comebackkc.com/covid-vaccine-survey/", "Form version submitted in": "3", "Response Submission DateTime": "02/23/2021 12:55 pm", "Time Taken To Complete (seconds)": "137", "External ID": null, "External Status": null, "Are you planning to receive the COVID-19 vaccine?": "yes", "What makes you uncertain about receiving the COVID-19 vaccine?": null, "When would you like to get your first dose of the COVID-19 vaccine?": "as soon as possible", "What state do you live in?": "kansas", "Which Kansas county do you live in?": "shawnee", "Do you live within the city limits of Kansas City, MO?": null, "Which Missouri county do you live in?": null, "Zip": "66604", "FirstName": "leonard", "LastName": "ashton", "Street Address": null, "City": "topeka", "Phone": "7852248423", "Email": "ashtonkyle@gmail.com", "What is your preferred method of contact?": "text message", "We need your permission to contact you about COVID-19 testing and vaccination.": "i consent to receive email notifications regarding covid-19 vaccination availability and clinic opportunities.,i consent to receive text message notifications regarding covid-19 vaccination availability and clinic opportunities. message and data rates may apply.,i give permission to comeback kc to share my information with appropriate public health officials to help with vaccine distribution.", "Is it okay for us to leave you a voicemail?": "yes", "Sex": "male", "Age": "71", "Race/ethnicity (check as many as apply)": "white", "Do you have any pre-existing medical conditions or do you have any conditions that put you at increased risk of severe illness? (i.e. immunocompromised, diabetes, chronic lung conditions, cardiovascular disease, morbid obesity, etc.)": "yes", "Do you live in or visit often crowded living settings? (For example, a supportive care facility, assisted living facility, group home, homeless shelter, or correctional setting)": "no", "How many members, including yourself, live in your household?": "2", "Do you have a history of any of the following pre-existing medical conditions?": null, "Are you immuno-compromised?": null, "What is your work status?": "retired", "What is your work zip code, either where you normally work in the office or on location or the zip code of your employers primary office?": null, "Are you employed by any of the following types of patient-facing organizations?": "none of these", "What is the name of the health care provider for which you work?": null, "Are you responsible for or in a position to influence vaccination planning for your employer or another organization?": "no, just interested for myself and my family", "What is the name of your employer or other organization?": null, "What is your job title or role at your organization?": null}], [{"FileNo": "1", "Receipt Number": "445", "Response Reference ID": "2aafa625-6e11-4c2d-8760-485f0db2449e", "Respondent Email": null, "URL submitted from": "https://www.comebackkc.com/covid-vaccine-survey/", "Form version submitted in": "3", "Response Submission DateTime": "02/22/2021 11:52 am", "Time Taken To Complete (seconds)": "144", "External ID": null, "External Status": null, "Are you planning to receive the COVID-19 vaccine?": "yes", "What makes you uncertain about receiving the COVID-19 vaccine?": null, "When would you like to get your first dose of the COVID-19 vaccine?": "as soon as possible", "What state do you live in?": "missouri", "Which Kansas county do you live in?": null, "Do you live within the city limits of Kansas City, MO?": "no", "Which Missouri county do you live in?": "cass", "Zip": "64078", "FirstName": "charlotte", "LastName": "witthar", "Street Address": null, "City": "peculiar", "Phone": "8167304404", "Email": "kcwitthar@gmail.com", "What is your preferred method of contact?": "text message", "We need your permission to contact you about COVID-19 testing and vaccination.": "i consent to receive email notifications regarding covid-19 vaccination availability and clinic opportunities.,i consent to receive text message notifications regarding covid-19 vaccination availability and clinic opportunities. message and data rates may apply.,i give permission to comeback kc to share my information with appropriate public health officials to help with vaccine distribution.", "Is it okay for us to leave you a voicemail?": "yes", "Sex": "female", "Age": "50", "Race/ethnicity (check as many as apply)": "white", "Do you have any pre-existing medical conditions or do you have any conditions that put you at increased risk of severe illness? (i.e. immunocompromised, diabetes, chronic lung conditions, cardiovascular disease, morbid obesity, etc.)": "yes", "Do you live in or visit often crowded living settings? (For example, a supportive care facility, assisted living facility, group home, homeless shelter, or correctional setting)": "no", "How many members, including yourself, live in your household?": "4", "Do you have a history of any of the following pre-existing medical conditions?": null, "Are you immuno-compromised?": null, "What is your work status?": "employed full time", "What is your work zip code, either where you normally work in the office or on location or the zip code of your employers primary office?": "64078", "Are you employed by any of the following types of patient-facing organizations?": "none of these", "What is the name of the health care provider for which you work?": null, "Are you responsible for or in a position to influence vaccination planning for your employer or another organization?": "no, just interested for myself and my family", "What is the name of your employer or other organization?": null, "What is your job title or role at your organization?": null}, {"FileNo": "1", "Receipt Number": "451", "Response Reference ID": "1440246a-2e80-414d-b8c1-7d640a34acff", "Respondent Email": null, "URL submitted from": "https://www.comebackkc.com/covid-vaccine-survey/", "Form version submitted in": "3", "Response Submission DateTime": "02/22/2021 11:55 am", "Time Taken To Complete (seconds)": "101", "External ID": null, "External Status": null, "Are you planning to receive the COVID-19 vaccine?": "yes", "What makes you uncertain about receiving the COVID-19 vaccine?": null, "When would you like to get your first dose of the COVID-19 vaccine?": "as soon as possible", "What state do you live in?": "missouri", "Which Kansas county do you live in?": null, "Do you live within the city limits of Kansas City, MO?": "no", "Which Missouri county do you live in?": "cass", "Zip": "64078", "FirstName": "mona", "LastName": "witthar", "Street Address": null, "City": "peculiar", "Phone": "8167304404", "Email": "kwitthar33@gmail.com", "What is your preferred method of contact?": "text message", "We need your permission to contact you about COVID-19 testing and vaccination.": "i consent to receive email notifications regarding covid-19 vaccination availability and clinic opportunities.,i consent to receive text message notifications regarding covid-19 vaccination availability and clinic opportunities. message and data rates may apply.,i give permission to comeback kc to share my information with appropriate public health officials to help with vaccine distribution.", "Is it okay for us to leave you a voicemail?": "yes", "Sex": "female", "Age": "83", "Race/ethnicity (check as many as apply)": "white", "Do you have any pre-existing medical conditions or do you have any conditions that put you at increased risk of severe illness? (i.e. immunocompromised, diabetes, chronic lung conditions, cardiovascular disease, morbid obesity, etc.)": "yes", "Do you live in or visit often crowded living settings? (For example, a supportive care facility, assisted living facility, group home, homeless shelter, or correctional setting)": "no", "How many members, including yourself, live in your household?": "4", "Do you have a history of any of the following pre-existing medical conditions?": null, "Are you immuno-compromised?": null, "What is your work status?": "retired", "What is your work zip code, either where you normally work in the office or on location or the zip code of your employers primary office?": null, "Are you employed by any of the following types of patient-facing organizations?": "none of these", "What is the name of the health care provider for which you work?": null, "Are you responsible for or in a position to influence vaccination planning for your employer or another organization?": "no, just interested for myself and my family", "What is the name of your employer or other organization?": null, "What is your job title or role at your organization?": null}], [{"FileNo": "1", "Receipt Number": "47", "Response Reference ID": "8e5b0860-b8ac-48b4-a61d-06efba452cf2", "Respondent Email": null, "URL submitted from": "https://www.comebackkc.com/covid-vaccine-survey/", "Form version submitted in": "3", "Response Submission DateTime": "02/11/2021 10:25 am", "Time Taken To Complete (seconds)": "1067", "External ID": null, "External Status": null, "Are you planning to receive the COVID-19 vaccine?": "yes", "What makes you uncertain about receiving the COVID-19 vaccine?": null, "When would you like to get your first dose of the COVID-19 vaccine?": "as soon as possible", "What state do you live in?": "kansas", "Which Kansas county do you live in?": "johnson", "Do you live within the city limits of Kansas City, MO?": null, "Which Missouri county do you live in?": null, "Zip": "66206", "FirstName": "deborah", "LastName": "throckmorton", "Street Address": null, "City": "leawood", "Phone": "9133815161", "Email": "ddthrockmorton@yahoo.com", "What is your preferred method of contact?": "phone call", "We need your permission to contact you about COVID-19 testing and vaccination.": "i consent to receive email notifications regarding covid-19 vaccination availability and clinic opportunities.,i consent to receive text message notifications regarding covid-19 vaccination availability and clinic opportunities. message and data rates may apply.,i give permission to comeback kc to share my information with appropriate public health officials to help with vaccine distribution.", "Is it okay for us to leave you a voicemail?": "yes", "Sex": "female", "Age": "72", "Race/ethnicity (check as many as apply)": "white", "Do you have any pre-existing medical conditions or do you have any conditions that put you at increased risk of severe illness? (i.e. immunocompromised, diabetes, chronic lung conditions, cardiovascular disease, morbid obesity, etc.)": "no", "Do you live in or visit often crowded living settings? (For example, a supportive care facility, assisted living facility, group home, homeless shelter, or correctional setting)": "no", "How many members, including yourself, live in your household?": "2", "Do you have a history of any of the following pre-existing medical conditions?": null, "Are you immuno-compromised?": null, "What is your work status?": "unemployed", "What is your work zip code, either where you normally work in the office or on location or the zip code of your employers primary office?": null, "Are you employed by any of the following types of patient-facing organizations?": "none of these", "What is the name of the health care provider for which you work?": null, "Are you responsible for or in a position to influence vaccination planning for your employer or another organization?": "no, just interested for myself and my family", "What is the name of your employer or other organization?": null, "What is your job title or role at your organization?": null}, {"FileNo": "1", "Receipt Number": "49", "Response Reference ID": "775c8cf3-8524-4c0c-b362-4ea4cb6c461d", "Respondent Email": null, "URL submitted from": "https://www.comebackkc.com/covid-vaccine-survey/", "Form version submitted in": "3", "Response Submission DateTime": "02/11/2021 10:37 am", "Time Taken To Complete (seconds)": "964", "External ID": null, "External Status": null, "Are you planning to receive the COVID-19 vaccine?": "yes", "What makes you uncertain about receiving the COVID-19 vaccine?": null, "When would you like to get your first dose of the COVID-19 vaccine?": "as soon as possible", "What state do you live in?": "kansas", "Which Kansas county do you live in?": "johnson", "Do you live within the city limits of Kansas City, MO?": null, "Which Missouri county do you live in?": null, "Zip": "66206", "FirstName": "daniel", "LastName": "throckmorton", "Street Address": null, "City": "leawood", "Phone": "9133815161", "Email": "wta@turnkeymail.com", "What is your preferred method of contact?": "phone call", "We need your permission to contact you about COVID-19 testing and vaccination.": "i consent to receive email notifications regarding covid-19 vaccination availability and clinic opportunities.,i consent to receive text message notifications regarding covid-19 vaccination availability and clinic opportunities. message and data rates may apply.,i give permission to comeback kc to share my information with appropriate public health officials to help with vaccine distribution.", "Is it okay for us to leave you a voicemail?": "yes", "Sex": "male", "Age": "73", "Race/ethnicity (check as many as apply)": "white", "Do you have any pre-existing medical conditions or do you have any conditions that put you at increased risk of severe illness? (i.e. immunocompromised, diabetes, chronic lung conditions, cardiovascular disease, morbid obesity, etc.)": "no", "Do you live in or visit often crowded living settings? (For example, a supportive care facility, assisted living facility, group home, homeless shelter, or correctional setting)": "no", "How many members, including yourself, live in your household?": "2", "Do you have a history of any of the following pre-existing medical conditions?": null, "Are you immuno-compromised?": null, "What is your work status?": "retired", "What is your work zip code, either where you normally work in the office or on location or the zip code of your employers primary office?": null, "Are you employed by any of the following types of patient-facing organizations?": "none of these", "What is the name of the health care provider for which you work?": null, "Are you responsible for or in a position to influence vaccination planning for your employer or another organization?": "no, just interested for myself and my family", "What is the name of your employer or other organization?": null, "What is your job title or role at your organization?": null}], [{"FileNo": "1", "Receipt Number": "346", "Response Reference ID": "361ce144-f5b7-44cc-be5c-4004130547fb", "Respondent Email": null, "URL submitted from": "https://www.comebackkc.com/covid-vaccine-survey/", "Form version submitted in": "3", "Response Submission DateTime": "02/22/2021 10:27 am", "Time Taken To Complete (seconds)": "243", "External ID": null, "External Status": null, "Are you planning to receive the COVID-19 vaccine?": "yes", "What makes you uncertain about receiving the COVID-19 vaccine?": null, "When would you like to get your first dose of the COVID-19 vaccine?": "as soon as possible", "What state do you live in?": "missouri", "Which Kansas county do you live in?": null, "Do you live within the city limits of Kansas City, MO?": "yes", "Which Missouri county do you live in?": "jackson", "Zip": "64131", "FirstName": "angie", "LastName": "reuter", "Street Address": null, "City": "kansas city", "Phone": "8169430409", "Email": "genereuter1@gmail.com", "What is your preferred method of contact?": "email", "We need your permission to contact you about COVID-19 testing and vaccination.": "i consent to receive email notifications regarding covid-19 vaccination availability and clinic opportunities.,i give permission to comeback kc to share my information with appropriate public health officials to help with vaccine distribution.", "Is it okay for us to leave you a voicemail?": "yes", "Sex": "female", "Age": "68", "Race/ethnicity (check as many as apply)": "white", "Do you have any pre-existing medical conditions or do you have any conditions that put you at increased risk of severe illness? (i.e. immunocompromised, diabetes, chronic lung conditions, cardiovascular disease, morbid obesity, etc.)": "no", "Do you live in or visit often crowded living settings? (For example, a supportive care facility, assisted living facility, group home, homeless shelter, or correctional setting)": "no", "How many members, including yourself, live in your household?": "2", "Do you have a history of any of the following pre-existing medical conditions?": null, "Are you immuno-compromised?": null, "What is your work status?": "retired", "What is your work zip code, either where you normally work in the office or on location or the zip code of your employers primary office?": null, "Are you employed by any of the following types of patient-facing organizations?": "none of these", "What is the name of the health care provider for which you work?": null, "Are you responsible for or in a position to influence vaccination planning for your employer or another organization?": "no, just interested for myself and my family", "What is the name of your employer or other organization?": null, "What is your job title or role at your organization?": null}, {"FileNo": "1", "Receipt Number": "348", "Response Reference ID": "b7f7dadd-5d1b-4ec3-ba35-0ee8d8600800", "Respondent Email": null, "URL submitted from": "https://www.comebackkc.com/covid-vaccine-survey/", "Form version submitted in": "3", "Response Submission DateTime": "02/22/2021 10:30 am", "Time Taken To Complete (seconds)": "117", "External ID": null, "External Status": null, "Are you planning to receive the COVID-19 vaccine?": "yes", "What makes you uncertain about receiving the COVID-19 vaccine?": null, "When would you like to get your first dose of the COVID-19 vaccine?": "as soon as possible", "What state do you live in?": "missouri", "Which Kansas county do you live in?": null, "Do you live within the city limits of Kansas City, MO?": "yes", "Which Missouri county do you live in?": "jackson", "Zip": "64131", "FirstName": "gene", "LastName": "reuter", "Street Address": null, "City": "kansas city", "Phone": "8169430409", "Email": "genereuter1@gmail.com", "What is your preferred method of contact?": "email", "We need your permission to contact you about COVID-19 testing and vaccination.": "i consent to receive email notifications regarding covid-19 vaccination availability and clinic opportunities.,i give permission to comeback kc to share my information with appropriate public health officials to help with vaccine distribution.", "Is it okay for us to leave you a voicemail?": "yes", "Sex": "male", "Age": "67", "Race/ethnicity (check as many as apply)": "white", "Do you have any pre-existing medical conditions or do you have any conditions that put you at increased risk of severe illness? (i.e. immunocompromised, diabetes, chronic lung conditions, cardiovascular disease, morbid obesity, etc.)": "yes", "Do you live in or visit often crowded living settings? (For example, a supportive care facility, assisted living facility, group home, homeless shelter, or correctional setting)": "no", "How many members, including yourself, live in your household?": "2", "Do you have a history of any of the following pre-existing medical conditions?": null, "Are you immuno-compromised?": null, "What is your work status?": "retired", "What is your work zip code, either where you normally work in the office or on location or the zip code of your employers primary office?": null, "Are you employed by any of the following types of patient-facing organizations?": "none of these", "What is the name of the health care provider for which you work?": null, "Are you responsible for or in a position to influence vaccination planning for your employer or another organization?": "no, just interested for myself and my family", "What is the name of your employer or other organization?": null, "What is your job title or role at your organization?": null}]], "match": [[{"FileNo": "1", "Receipt Number": "789", "Response Reference ID": "18e80af2-d934-41bb-bec9-ec32e5d14afb", "Respondent Email": null, "URL submitted from": "https://www.comebackkc.com/covid-vaccine-survey/", "Form version submitted in": "3", "Response Submission DateTime": "02/22/2021 22:02 pm", "Time Taken To Complete (seconds)": "424", "External ID": null, "External Status": null, "Are you planning to receive the COVID-19 vaccine?": "yes", "What makes you uncertain about receiving the COVID-19 vaccine?": null, "When would you like to get your first dose of the COVID-19 vaccine?": "as soon as possible", "What state do you live in?": "kansas", "Which Kansas county do you live in?": "johnson", "Do you live within the city limits of Kansas City, MO?": null, "Which Missouri county do you live in?": null, "Zip": "66213", "FirstName": "janet", "LastName": "christiansen", "Street Address": null, "City": "overland park kansas", "Phone": "9135685618", "Email": "janetchristiansen27@gmail.com", "What is your preferred method of contact?": "email", "We need your permission to contact you about COVID-19 testing and vaccination.": "i consent to receive email notifications regarding covid-19 vaccination availability and clinic opportunities.,i consent to receive text message notifications regarding covid-19 vaccination availability and clinic opportunities. message and data rates may apply.,i give permission to comeback kc to share my information with appropriate public health officials to help with vaccine distribution.", "Is it okay for us to leave you a voicemail?": "yes", "Sex": "female", "Age": "68", "Race/ethnicity (check as many as apply)": "white", "Do you have any pre-existing medical conditions or do you have any conditions that put you at increased risk of severe illness? (i.e. immunocompromised, diabetes, chronic lung conditions, cardiovascular disease, morbid obesity, etc.)": "yes", "Do you live in or visit often crowded living settings? (For example, a supportive care facility, assisted living facility, group home, homeless shelter, or correctional setting)": "no", "How many members, including yourself, live in your household?": "1", "Do you have a history of any of the following pre-existing medical conditions?": null, "Are you immuno-compromised?": null, "What is your work status?": "retired", "What is your work zip code, either where you normally work in the office or on location or the zip code of your employers primary office?": null, "Are you employed by any of the following types of patient-facing organizations?": "none of these", "What is the name of the health care provider for which you work?": null, "Are you responsible for or in a position to influence vaccination planning for your employer or another organization?": "no, just interested for myself and my family", "What is the name of your employer or other organization?": null, "What is your job title or role at your organization?": null}, {"FileNo": "1", "Receipt Number": "1041", "Response Reference ID": "8d99045a-b4de-49ef-905b-454a74d64759", "Respondent Email": null, "URL submitted from": "https://www.comebackkc.com/covid-vaccine-survey/", "Form version submitted in": "3", "Response Submission DateTime": "02/25/2021 10:52 am", "Time Taken To Complete (seconds)": "218929", "External ID": null, "External Status": null, "Are you planning to receive the COVID-19 vaccine?": "yes", "What makes you uncertain about receiving the COVID-19 vaccine?": null, "When would you like to get your first dose of the COVID-19 vaccine?": "as soon as possible", "What state do you live in?": "kansas", "Which Kansas county do you live in?": "johnson", "Do you live within the city limits of Kansas City, MO?": null, "Which Missouri county do you live in?": null, "Zip": "66213", "FirstName": "janet", "LastName": "christiansen", "Street Address": null, "City": "overland park", "Phone": "9135685618", "Email": "janetchristiansen27@gmail.com", "What is your preferred method of contact?": "email", "We need your permission to contact you about COVID-19 testing and vaccination.": "i consent to receive email notifications regarding covid-19 vaccination availability and clinic opportunities.,i consent to receive text message notifications regarding covid-19 vaccination availability and clinic opportunities. message and data rates may apply.,i give permission to comeback kc to share my information with appropriate public health officials to help with vaccine distribution.", "Is it okay for us to leave you a voicemail?": "yes", "Sex": "female", "Age": "68", "Race/ethnicity (check as many as apply)": "white", "Do you have any pre-existing medical conditions or do you have any conditions that put you at increased risk of severe illness? (i.e. immunocompromised, diabetes, chronic lung conditions, cardiovascular disease, morbid obesity, etc.)": "yes", "Do you live in or visit often crowded living settings? (For example, a supportive care facility, assisted living facility, group home, homeless shelter, or correctional setting)": "no", "How many members, including yourself, live in your household?": "1", "Do you have a history of any of the following pre-existing medical conditions?": null, "Are you immuno-compromised?": null, "What is your work status?": "retired", "What is your work zip code, either where you normally work in the office or on location or the zip code of your employers primary office?": null, "Are you employed by any of the following types of patient-facing organizations?": "none of these", "What is the name of the health care provider for which you work?": null, "Are you responsible for or in a position to influence vaccination planning for your employer or another organization?": "no, just interested for myself and my family", "What is the name of your employer or other organization?": null, "What is your job title or role at your organization?": null}], [{"FileNo": "1", "Receipt Number": "870", "Response Reference ID": "da30c547-8453-4616-9f41-959faa9e017f", "Respondent Email": null, "URL submitted from": "https://www.comebackkc.com/covid-vaccine-survey/", "Form version submitted in": "3", "Response Submission DateTime": "02/23/2021 9:28 am", "Time Taken To Complete (seconds)": "432", "External ID": null, "External Status": null, "Are you planning to receive the COVID-19 vaccine?": "yes", "What makes you uncertain about receiving the COVID-19 vaccine?": null, "When would you like to get your first dose of the COVID-19 vaccine?": "as soon as possible", "What state do you live in?": "missouri", "Which Kansas county do you live in?": null, "Do you live within the city limits of Kansas City, MO?": "yes", "Which Missouri county do you live in?": "jackson", "Zip": "64111", "FirstName": "rebecca", "LastName": "baker", "Street Address": null, "City": "kansas city", "Phone": "8165603708", "Email": "rab1225@hotmail.com", "What is your preferred method of contact?": "text message", "We need your permission to contact you about COVID-19 testing and vaccination.": "i consent to receive email notifications regarding covid-19 vaccination availability and clinic opportunities.,i consent to receive text message notifications regarding covid-19 vaccination availability and clinic opportunities. message and data rates may apply.,i give permission to comeback kc to share my information with appropriate public health officials to help with vaccine distribution.", "Is it okay for us to leave you a voicemail?": "yes", "Sex": "female", "Age": "74", "Race/ethnicity (check as many as apply)": "white", "Do you have any pre-existing medical conditions or do you have any conditions that put you at increased risk of severe illness? (i.e. immunocompromised, diabetes, chronic lung conditions, cardiovascular disease, morbid obesity, etc.)": "no", "Do you live in or visit often crowded living settings? (For example, a supportive care facility, assisted living facility, group home, homeless shelter, or correctional setting)": "no", "How many members, including yourself, live in your household?": "1", "Do you have a history of any of the following pre-existing medical conditions?": null, "Are you immuno-compromised?": null, "What is your work status?": "retired", "What is your work zip code, either where you normally work in the office or on location or the zip code of your employers primary office?": null, "Are you employed by any of the following types of patient-facing organizations?": "none of these", "What is the name of the health care provider for which you work?": null, "Are you responsible for or in a position to influence vaccination planning for your employer or another organization?": "no, just interested for myself and my family", "What is the name of your employer or other organization?": null, "What is your job title or role at your organization?": null}, {"FileNo": "1", "Receipt Number": "1159", "Response Reference ID": "73cfbda7-fa8f-431d-8ef4-bc109e2022a2", "Respondent Email": null, "URL submitted from": "https://www.comebackkc.com/covid-vaccine-survey/", "Form version submitted in": "3", "Response Submission DateTime": "02/28/2021 18:48 pm", "Time Taken To Complete (seconds)": "293", "External ID": null, "External Status": null, "Are you planning to receive the COVID-19 vaccine?": "yes", "What makes you uncertain about receiving the COVID-19 vaccine?": null, "When would you like to get your first dose of the COVID-19 vaccine?": "as soon as possible", "What state do you live in?": "missouri", "Which Kansas county do you live in?": null, "Do you live within the city limits of Kansas City, MO?": "yes", "Which Missouri county do you live in?": "jackson", "Zip": "64111", "FirstName": "rebecca", "LastName": "baker", "Street Address": null, "City": "kansas city, mo", "Phone": "8165603708", "Email": "rab1225@hotmail.com", "What is your preferred method of contact?": "text message", "We need your permission to contact you about COVID-19 testing and vaccination.": "i consent to receive email notifications regarding covid-19 vaccination availability and clinic opportunities.,i consent to receive text message notifications regarding covid-19 vaccination availability and clinic opportunities. message and data rates may apply.,i give permission to comeback kc to share my information with appropriate public health officials to help with vaccine distribution.", "Is it okay for us to leave you a voicemail?": "yes", "Sex": "female", "Age": "74", "Race/ethnicity (check as many as apply)": "white", "Do you have any pre-existing medical conditions or do you have any conditions that put you at increased risk of severe illness? (i.e. immunocompromised, diabetes, chronic lung conditions, cardiovascular disease, morbid obesity, etc.)": "no", "Do you live in or visit often crowded living settings? (For example, a supportive care facility, assisted living facility, group home, homeless shelter, or correctional setting)": "no", "How many members, including yourself, live in your household?": "1", "Do you have a history of any of the following pre-existing medical conditions?": null, "Are you immuno-compromised?": null, "What is your work status?": "retired", "What is your work zip code, either where you normally work in the office or on location or the zip code of your employers primary office?": null, "Are you employed by any of the following types of patient-facing organizations?": "none of these", "What is the name of the health care provider for which you work?": null, "Are you responsible for or in a position to influence vaccination planning for your employer or another organization?": "no, just interested for myself and my family", "What is the name of your employer or other organization?": null, "What is your job title or role at your organization?": null}], [{"FileNo": "1", "Receipt Number": "796", "Response Reference ID": "fda3d0d1-1985-4a5c-8b6e-c1637b0136d7", "Respondent Email": null, "URL submitted from": "https://www.comebackkc.com/covid-vaccine-survey/", "Form version submitted in": "3", "Response Submission DateTime": "02/22/2021 22:18 pm", "Time Taken To Complete (seconds)": "363", "External ID": null, "External Status": null, "Are you planning to receive the COVID-19 vaccine?": "yes", "What makes you uncertain about receiving the COVID-19 vaccine?": null, "When would you like to get your first dose of the COVID-19 vaccine?": "as soon as possible", "What state do you live in?": "missouri", "Which Kansas county do you live in?": null, "Do you live within the city limits of Kansas City, MO?": "no", "Which Missouri county do you live in?": "jackson", "Zip": "64063", "FirstName": "marian", "LastName": "stone", "Street Address": null, "City": "lee's summit, mo", "Phone": "8166006177", "Email": "marnstone21@gmail.com", "What is your preferred method of contact?": "email", "We need your permission to contact you about COVID-19 testing and vaccination.": "i consent to receive email notifications regarding covid-19 vaccination availability and clinic opportunities.,i consent to receive text message notifications regarding covid-19 vaccination availability and clinic opportunities. message and data rates may apply.,i give permission to comeback kc to share my information with appropriate public health officials to help with vaccine distribution.", "Is it okay for us to leave you a voicemail?": "yes", "Sex": "female", "Age": "84", "Race/ethnicity (check as many as apply)": "white", "Do you have any pre-existing medical conditions or do you have any conditions that put you at increased risk of severe illness? (i.e. immunocompromised, diabetes, chronic lung conditions, cardiovascular disease, morbid obesity, etc.)": "yes", "Do you live in or visit often crowded living settings? (For example, a supportive care facility, assisted living facility, group home, homeless shelter, or correctional setting)": "no", "How many members, including yourself, live in your household?": "2", "Do you have a history of any of the following pre-existing medical conditions?": null, "Are you immuno-compromised?": null, "What is your work status?": "retired", "What is your work zip code, either where you normally work in the office or on location or the zip code of your employers primary office?": null, "Are you employed by any of the following types of patient-facing organizations?": "none of these", "What is the name of the health care provider for which you work?": null, "Are you responsible for or in a position to influence vaccination planning for your employer or another organization?": "no, just interested for myself and my family", "What is the name of your employer or other organization?": null, "What is your job title or role at your organization?": null}, {"FileNo": "1", "Receipt Number": "922", "Response Reference ID": "f04faa9e-c32e-4134-8942-938bd9dd27c6", "Respondent Email": null, "URL submitted from": "https://www.comebackkc.com/covid-vaccine-survey/", "Form version submitted in": "3", "Response Submission DateTime": "02/23/2021 13:06 pm", "Time Taken To Complete (seconds)": "253", "External ID": null, "External Status": null, "Are you planning to receive the COVID-19 vaccine?": "yes", "What makes you uncertain about receiving the COVID-19 vaccine?": null, "When would you like to get your first dose of the COVID-19 vaccine?": "as soon as possible", "What state do you live in?": "missouri", "Which Kansas county do you live in?": null, "Do you live within the city limits of Kansas City, MO?": "no", "Which Missouri county do you live in?": "jackson", "Zip": "64063", "FirstName": "marian", "LastName": "stone", "Street Address": null, "City": "lee's summit", "Phone": "8166006177", "Email": "marnstone21@gmail.com", "What is your preferred method of contact?": "email", "We need your permission to contact you about COVID-19 testing and vaccination.": "i consent to receive email notifications regarding covid-19 vaccination availability and clinic opportunities.,i consent to receive text message notifications regarding covid-19 vaccination availability and clinic opportunities. message and data rates may apply.,i give permission to comeback kc to share my information with appropriate public health officials to help with vaccine distribution.", "Is it okay for us to leave you a voicemail?": "yes", "Sex": "female", "Age": "83", "Race/ethnicity (check as many as apply)": "white", "Do you have any pre-existing medical conditions or do you have any conditions that put you at increased risk of severe illness? (i.e. immunocompromised, diabetes, chronic lung conditions, cardiovascular disease, morbid obesity, etc.)": "yes", "Do you live in or visit often crowded living settings? (For example, a supportive care facility, assisted living facility, group home, homeless shelter, or correctional setting)": "no", "How many members, including yourself, live in your household?": "2", "Do you have a history of any of the following pre-existing medical conditions?": null, "Are you immuno-compromised?": null, "What is your work status?": "retired", "What is your work zip code, either where you normally work in the office or on location or the zip code of your employers primary office?": null, "Are you employed by any of the following types of patient-facing organizations?": "none of these", "What is the name of the health care provider for which you work?": null, "Are you responsible for or in a position to influence vaccination planning for your employer or another organization?": "no, just interested for myself and my family", "What is the name of your employer or other organization?": null, "What is your job title or role at your organization?": null}], [{"FileNo": "1", "Receipt Number": "45", "Response Reference ID": "d2eaab78-f930-462d-9238-2395b295d084", "Respondent Email": null, "URL submitted from": "https://www.comebackkc.com/covid-vaccine-survey/", "Form version submitted in": "3", "Response Submission DateTime": "02/11/2021 9:19 am", "Time Taken To Complete (seconds)": "151", "External ID": null, "External Status": null, "Are you planning to receive the COVID-19 vaccine?": "yes", "What makes you uncertain about receiving the COVID-19 vaccine?": null, "When would you like to get your first dose of the COVID-19 vaccine?": "as soon as possible", "What state do you live in?": "kansas", "Which Kansas county do you live in?": "johnson", "Do you live within the city limits of Kansas City, MO?": null, "Which Missouri county do you live in?": null, "Zip": "66208", "FirstName": "anne", "LastName": "schwab", "Street Address": null, "City": "prairie village", "Phone": "8165909144", "Email": "alschwab@pm.me", "What is your preferred method of contact?": "text message", "We need your permission to contact you about COVID-19 testing and vaccination.": "i consent to receive email notifications regarding covid-19 vaccination availability and clinic opportunities.,i consent to receive text message notifications regarding covid-19 vaccination availability and clinic opportunities. message and data rates may apply.,i give permission to comeback kc to share my information with appropriate public health officials to help with vaccine distribution.", "Is it okay for us to leave you a voicemail?": "yes", "Sex": "female", "Age": "59", "Race/ethnicity (check as many as apply)": "white,some other race", "Do you have any pre-existing medical conditions or do you have any conditions that put you at increased risk of severe illness? (i.e. immunocompromised, diabetes, chronic lung conditions, cardiovascular disease, morbid obesity, etc.)": "yes", "Do you live in or visit often crowded living settings? (For example, a supportive care facility, assisted living facility, group home, homeless shelter, or correctional setting)": "no", "How many members, including yourself, live in your household?": "1", "Do you have a history of any of the following pre-existing medical conditions?": null, "Are you immuno-compromised?": null, "What is your work status?": "gig worker / independent contractor", "What is your work zip code, either where you normally work in the office or on location or the zip code of your employers primary office?": null, "Are you employed by any of the following types of patient-facing organizations?": "none of these", "What is the name of the health care provider for which you work?": null, "Are you responsible for or in a position to influence vaccination planning for your employer or another organization?": "no, just interested for myself and my family", "What is the name of your employer or other organization?": null, "What is your job title or role at your organization?": null}, {"FileNo": "1", "Receipt Number": "1228", "Response Reference ID": "4b1dce17-1ec1-473c-b8ae-93b685804e06", "Respondent Email": null, "URL submitted from": "https://www.comebackkc.com/covid-vaccine-survey/", "Form version submitted in": "3", "Response Submission DateTime": "03/23/2021 14:31 pm", "Time Taken To Complete (seconds)": "146", "External ID": null, "External Status": null, "Are you planning to receive the COVID-19 vaccine?": "yes", "What makes you uncertain about receiving the COVID-19 vaccine?": null, "When would you like to get your first dose of the COVID-19 vaccine?": "as soon as possible", "What state do you live in?": "kansas", "Which Kansas county do you live in?": "johnson", "Do you live within the city limits of Kansas City, MO?": null, "Which Missouri county do you live in?": null, "Zip": "66208", "FirstName": "anne", "LastName": "schwab", "Street Address": null, "City": "prairie village", "Phone": "8165909144", "Email": "alschwab@pm.me", "What is your preferred method of contact?": "text message", "We need your permission to contact you about COVID-19 testing and vaccination.": "i consent to receive email notifications regarding covid-19 vaccination availability and clinic opportunities.,i consent to receive text message notifications regarding covid-19 vaccination availability and clinic opportunities. message and data rates may apply.,i give permission to comeback kc to share my information with appropriate public health officials to help with vaccine distribution.", "Is it okay for us to leave you a voicemail?": "yes", "Sex": "female", "Age": "59", "Race/ethnicity (check as many as apply)": "white,some other race", "Do you have any pre-existing medical conditions or do you have any conditions that put you at increased risk of severe illness? (i.e. immunocompromised, diabetes, chronic lung conditions, cardiovascular disease, morbid obesity, etc.)": "yes", "Do you live in or visit often crowded living settings? (For example, a supportive care facility, assisted living facility, group home, homeless shelter, or correctional setting)": "no", "How many members, including yourself, live in your household?": "1", "Do you have a history of any of the following pre-existing medical conditions?": null, "Are you immuno-compromised?": null, "What is your work status?": "retired", "What is your work zip code, either where you normally work in the office or on location or the zip code of your employers primary office?": null, "Are you employed by any of the following types of patient-facing organizations?": "none of these", "What is the name of the health care provider for which you work?": null, "Are you responsible for or in a position to influence vaccination planning for your employer or another organization?": "no, just interested for myself and my family", "What is the name of your employer or other organization?": null, "What is your job title or role at your organization?": null}], [{"FileNo": "1", "Receipt Number": "115", "Response Reference ID": "bf18a8fa-cf3a-4429-b630-b2176f1b828f", "Respondent Email": null, "URL submitted from": "https://www.comebackkc.com/covid-vaccine-survey/", "Form version submitted in": "3", "Response Submission DateTime": "02/22/2021 6:36 am", "Time Taken To Complete (seconds)": "187", "External ID": null, "External Status": null, "Are you planning to receive the COVID-19 vaccine?": "yes", "What makes you uncertain about receiving the COVID-19 vaccine?": null, "When would you like to get your first dose of the COVID-19 vaccine?": "as soon as possible", "What state do you live in?": "missouri", "Which Kansas county do you live in?": null, "Do you live within the city limits of Kansas City, MO?": "yes", "Which Missouri county do you live in?": "cass", "Zip": "64012", "FirstName": "iona", "LastName": "souders", "Street Address": null, "City": "belton", "Phone": "8163227944", "Email": "sreduosdub@yahoo.com", "What is your preferred method of contact?": "text message", "We need your permission to contact you about COVID-19 testing and vaccination.": "i consent to receive email notifications regarding covid-19 vaccination availability and clinic opportunities.,i consent to receive text message notifications regarding covid-19 vaccination availability and clinic opportunities. message and data rates may apply.,i give permission to comeback kc to share my information with appropriate public health officials to help with vaccine distribution.", "Is it okay for us to leave you a voicemail?": "yes", "Sex": "female", "Age": "81", "Race/ethnicity (check as many as apply)": "white", "Do you have any pre-existing medical conditions or do you have any conditions that put you at increased risk of severe illness? (i.e. immunocompromised, diabetes, chronic lung conditions, cardiovascular disease, morbid obesity, etc.)": "no", "Do you live in or visit often crowded living settings? (For example, a supportive care facility, assisted living facility, group home, homeless shelter, or correctional setting)": "no", "How many members, including yourself, live in your household?": "2", "Do you have a history of any of the following pre-existing medical conditions?": null, "Are you immuno-compromised?": null, "What is your work status?": "retired", "What is your work zip code, either where you normally work in the office or on location or the zip code of your employers primary office?": null, "Are you employed by any of the following types of patient-facing organizations?": "other", "What is the name of the health care provider for which you work?": null, "Are you responsible for or in a position to influence vaccination planning for your employer or another organization?": "no, just interested for myself and my family", "What is the name of your employer or other organization?": null, "What is your job title or role at your organization?": null}, {"FileNo": "1", "Receipt Number": "1150", "Response Reference ID": "2e3e4601-8845-43f1-8b3b-4c32383b2ea8", "Respondent Email": null, "URL submitted from": "https://www.comebackkc.com/covid-vaccine-survey/", "Form version submitted in": "3", "Response Submission DateTime": "02/28/2021 9:08 am", "Time Taken To Complete (seconds)": "160", "External ID": null, "External Status": null, "Are you planning to receive the COVID-19 vaccine?": "yes", "What makes you uncertain about receiving the COVID-19 vaccine?": null, "When would you like to get your first dose of the COVID-19 vaccine?": "as soon as possible", "What state do you live in?": "missouri", "Which Kansas county do you live in?": null, "Do you live within the city limits of Kansas City, MO?": "yes", "Which Missouri county do you live in?": "cass", "Zip": "64012", "FirstName": "iona", "LastName": "souders", "Street Address": null, "City": "belton", "Phone": "8163227944", "Email": "sreduosdub@yahoo.com", "What is your preferred method of contact?": "text message", "We need your permission to contact you about COVID-19 testing and vaccination.": "i consent to receive email notifications regarding covid-19 vaccination availability and clinic opportunities.,i consent to receive text message notifications regarding covid-19 vaccination availability and clinic opportunities. message and data rates may apply.,i give permission to comeback kc to share my information with appropriate public health officials to help with vaccine distribution.", "Is it okay for us to leave you a voicemail?": "yes", "Sex": "female", "Age": "81", "Race/ethnicity (check as many as apply)": "white", "Do you have any pre-existing medical conditions or do you have any conditions that put you at increased risk of severe illness? (i.e. immunocompromised, diabetes, chronic lung conditions, cardiovascular disease, morbid obesity, etc.)": "no", "Do you live in or visit often crowded living settings? (For example, a supportive care facility, assisted living facility, group home, homeless shelter, or correctional setting)": "no", "How many members, including yourself, live in your household?": "2", "Do you have a history of any of the following pre-existing medical conditions?": null, "Are you immuno-compromised?": null, "What is your work status?": "retired", "What is your work zip code, either where you normally work in the office or on location or the zip code of your employers primary office?": null, "Are you employed by any of the following types of patient-facing organizations?": "other", "What is the name of the health care provider for which you work?": null, "Are you responsible for or in a position to influence vaccination planning for your employer or another organization?": "no, just interested for myself and my family", "What is the name of your employer or other organization?": null, "What is your job title or role at your organization?": null}], [{"FileNo": "1", "Receipt Number": "11", "Response Reference ID": "5b6f8a7e-3e40-4344-9c4b-5690ddeee3b8", "Respondent Email": null, "URL submitted from": "https://www.comebackkc.com/covid-vaccine-survey/", "Form version submitted in": "3", "Response Submission DateTime": "01/27/2021 15:10 pm", "Time Taken To Complete (seconds)": "109", "External ID": null, "External Status": null, "Are you planning to receive the COVID-19 vaccine?": "yes", "What makes you uncertain about receiving the COVID-19 vaccine?": null, "When would you like to get your first dose of the COVID-19 vaccine?": "as soon as possible", "What state do you live in?": "missouri", "Which Kansas county do you live in?": null, "Do you live within the city limits of Kansas City, MO?": "yes", "Which Missouri county do you live in?": "clay", "Zip": "64157", "FirstName": "amy", "LastName": "hearst", "Street Address": null, "City": "kansas city", "Phone": "7738822094", "Email": "amyhearst@yahoo.com", "What is your preferred method of contact?": "phone call", "We need your permission to contact you about COVID-19 testing and vaccination.": "i consent to receive email notifications regarding covid-19 vaccination availability and clinic opportunities.,i consent to receive text message notifications regarding covid-19 vaccination availability and clinic opportunities. message and data rates may apply.,i give permission to comeback kc to share my information with appropriate public health officials to help with vaccine distribution.", "Is it okay for us to leave you a voicemail?": "yes", "Sex": "female", "Age": "49", "Race/ethnicity (check as many as apply)": "white", "Do you have any pre-existing medical conditions or do you have any conditions that put you at increased risk of severe illness? (i.e. immunocompromised, diabetes, chronic lung conditions, cardiovascular disease, morbid obesity, etc.)": "no", "Do you live in or visit often crowded living settings? (For example, a supportive care facility, assisted living facility, group home, homeless shelter, or correctional setting)": "no", "How many members, including yourself, live in your household?": "4", "Do you have a history of any of the following pre-existing medical conditions?": null, "Are you immuno-compromised?": null, "What is your work status?": "employed part time", "What is your work zip code, either where you normally work in the office or on location or the zip code of your employers primary office?": "64157", "Are you employed by any of the following types of patient-facing organizations?": "none of these", "What is the name of the health care provider for which you work?": null, "Are you responsible for or in a position to influence vaccination planning for your employer or another organization?": "no, just interested for myself and my family", "What is the name of your employer or other organization?": null, "What is your job title or role at your organization?": null}, {"FileNo": "1", "Receipt Number": "42", "Response Reference ID": "3a9bb44b-8d71-4738-96b6-9804133ed03e", "Respondent Email": null, "URL submitted from": "https://www.comebackkc.com/covid-vaccine-survey/", "Form version submitted in": "3", "Response Submission DateTime": "02/10/2021 18:40 pm", "Time Taken To Complete (seconds)": "112", "External ID": null, "External Status": null, "Are you planning to receive the COVID-19 vaccine?": "yes", "What makes you uncertain about receiving the COVID-19 vaccine?": null, "When would you like to get your first dose of the COVID-19 vaccine?": "as soon as possible", "What state do you live in?": "missouri", "Which Kansas county do you live in?": null, "Do you live within the city limits of Kansas City, MO?": "yes", "Which Missouri county do you live in?": "clay", "Zip": "64157", "FirstName": "amy", "LastName": "hearst", "Street Address": null, "City": "kansas city", "Phone": "7738822094", "Email": "amyhearst@yahoo.com", "What is your preferred method of contact?": "email", "We need your permission to contact you about COVID-19 testing and vaccination.": "i consent to receive email notifications regarding covid-19 vaccination availability and clinic opportunities.,i consent to receive text message notifications regarding covid-19 vaccination availability and clinic opportunities. message and data rates may apply.,i give permission to comeback kc to share my information with appropriate public health officials to help with vaccine distribution.", "Is it okay for us to leave you a voicemail?": "yes", "Sex": "female", "Age": "49", "Race/ethnicity (check as many as apply)": "white", "Do you have any pre-existing medical conditions or do you have any conditions that put you at increased risk of severe illness? (i.e. immunocompromised, diabetes, chronic lung conditions, cardiovascular disease, morbid obesity, etc.)": "no", "Do you live in or visit often crowded living settings? (For example, a supportive care facility, assisted living facility, group home, homeless shelter, or correctional setting)": "no", "How many members, including yourself, live in your household?": "4", "Do you have a history of any of the following pre-existing medical conditions?": null, "Are you immuno-compromised?": null, "What is your work status?": "employed part time", "What is your work zip code, either where you normally work in the office or on location or the zip code of your employers primary office?": "64157", "Are you employed by any of the following types of patient-facing organizations?": "none of these", "What is the name of the health care provider for which you work?": null, "Are you responsible for or in a position to influence vaccination planning for your employer or another organization?": "no, just interested for myself and my family", "What is the name of your employer or other organization?": null, "What is your job title or role at your organization?": null}], [{"FileNo": "1", "Receipt Number": "5", "Response Reference ID": "a18b4303-9f5e-491b-b146-39277e78e00d", "Respondent Email": null, "URL submitted from": "https://www.comebackkc.com/covid-vaccine-survey/", "Form version submitted in": "2", "Response Submission DateTime": "01/27/2021 14:24 pm", "Time Taken To Complete (seconds)": "116", "External ID": null, "External Status": null, "Are you planning to receive the COVID-19 vaccine?": "yes", "What makes you uncertain about receiving the COVID-19 vaccine?": null, "When would you like to get your first dose of the COVID-19 vaccine?": "as soon as possible", "What state do you live in?": "missouri", "Which Kansas county do you live in?": null, "Do you live within the city limits of Kansas City, MO?": "yes", "Which Missouri county do you live in?": "jackson", "Zip": "64075", "FirstName": "ashleigh", "LastName": "bertrand", "Street Address": null, "City": "oak grove", "Phone": "8163044602", "Email": "abertrand@bssd.net", "What is your preferred method of contact?": "text message", "We need your permission to contact you about COVID-19 testing and vaccination.": "i consent to receive email notifications regarding covid-19 vaccination availability and clinic opportunities.,i consent to receive text message notifications regarding covid-19 vaccination availability and clinic opportunities. message and data rates may apply.", "Is it okay for us to leave you a voicemail?": "no", "Sex": "female", "Age": "41", "Race/ethnicity (check as many as apply)": "white", "Do you have any pre-existing medical conditions or do you have any conditions that put you at increased risk of severe illness? (i.e. immunocompromised, diabetes, chronic lung conditions, cardiovascular disease, morbid obesity, etc.)": "no", "Do you live in or visit often crowded living settings? (For example, a supportive care facility, assisted living facility, group home, homeless shelter, or correctional setting)": "no", "How many members, including yourself, live in your household?": "4", "Do you have a history of any of the following pre-existing medical conditions?": null, "Are you immuno-compromised?": null, "What is your work status?": "employed full time", "What is your work zip code, either where you normally work in the office or on location or the zip code of your employers primary office?": "64014", "Are you employed by any of the following types of patient-facing organizations?": "none of these", "What is the name of the health care provider for which you work?": null, "Are you responsible for or in a position to influence vaccination planning for your employer or another organization?": "no, just interested for myself and my family", "What is the name of your employer or other organization?": null, "What is your job title or role at your organization?": null}, {"FileNo": "1", "Receipt Number": "36", "Response Reference ID": "384a5297-ed8a-4ee7-905d-40c50d1805c2", "Respondent Email": null, "URL submitted from": "https://www.comebackkc.com/covid-vaccine-survey/", "Form version submitted in": "3", "Response Submission DateTime": "02/10/2021 14:19 pm", "Time Taken To Complete (seconds)": "86", "External ID": null, "External Status": null, "Are you planning to receive the COVID-19 vaccine?": "yes", "What makes you uncertain about receiving the COVID-19 vaccine?": null, "When would you like to get your first dose of the COVID-19 vaccine?": "as soon as possible", "What state do you live in?": "missouri", "Which Kansas county do you live in?": null, "Do you live within the city limits of Kansas City, MO?": "yes", "Which Missouri county do you live in?": "jackson", "Zip": "64075", "FirstName": "ashleigh", "LastName": "bertrand", "Street Address": null, "City": "oak grove", "Phone": "18163044602", "Email": "abertrand@bssd.net", "What is your preferred method of contact?": "email", "We need your permission to contact you about COVID-19 testing and vaccination.": "i consent to receive email notifications regarding covid-19 vaccination availability and clinic opportunities.,i consent to receive text message notifications regarding covid-19 vaccination availability and clinic opportunities. message and data rates may apply.,i give permission to comeback kc to share my information with appropriate public health officials to help with vaccine distribution.", "Is it okay for us to leave you a voicemail?": "yes", "Sex": "female", "Age": "41", "Race/ethnicity (check as many as apply)": "white", "Do you have any pre-existing medical conditions or do you have any conditions that put you at increased risk of severe illness? (i.e. immunocompromised, diabetes, chronic lung conditions, cardiovascular disease, morbid obesity, etc.)": "no", "Do you live in or visit often crowded living settings? (For example, a supportive care facility, assisted living facility, group home, homeless shelter, or correctional setting)": "no", "How many members, including yourself, live in your household?": "4", "Do you have a history of any of the following pre-existing medical conditions?": null, "Are you immuno-compromised?": null, "What is your work status?": "employed full time", "What is your work zip code, either where you normally work in the office or on location or the zip code of your employers primary office?": "64014", "Are you employed by any of the following types of patient-facing organizations?": "none of these", "What is the name of the health care provider for which you work?": null, "Are you responsible for or in a position to influence vaccination planning for your employer or another organization?": "no, just interested for myself and my family", "What is the name of your employer or other organization?": null, "What is your job title or role at your organization?": null}], [{"FileNo": "1", "Receipt Number": "198", "Response Reference ID": "aeadcc86-31a5-4283-94d0-c51410e4c414", "Respondent Email": null, "URL submitted from": "https://www.comebackkc.com/covid-vaccine-survey/", "Form version submitted in": "3", "Response Submission DateTime": "02/22/2021 8:35 am", "Time Taken To Complete (seconds)": "139", "External ID": null, "External Status": null, "Are you planning to receive the COVID-19 vaccine?": "yes", "What makes you uncertain about receiving the COVID-19 vaccine?": null, "When would you like to get your first dose of the COVID-19 vaccine?": "as soon as possible", "What state do you live in?": "missouri", "Which Kansas county do you live in?": null, "Do you live within the city limits of Kansas City, MO?": "no", "Which Missouri county do you live in?": "jackson", "Zip": "64064", "FirstName": "debbie", "LastName": "bodenheimer", "Street Address": null, "City": "lees summit", "Phone": "8163320559", "Email": "debbieces@gmail.com", "What is your preferred method of contact?": "email", "We need your permission to contact you about COVID-19 testing and vaccination.": "i consent to receive email notifications regarding covid-19 vaccination availability and clinic opportunities.,i consent to receive text message notifications regarding covid-19 vaccination availability and clinic opportunities. message and data rates may apply.,i give permission to comeback kc to share my information with appropriate public health officials to help with vaccine distribution.", "Is it okay for us to leave you a voicemail?": "yes", "Sex": "female", "Age": "66", "Race/ethnicity (check as many as apply)": "white", "Do you have any pre-existing medical conditions or do you have any conditions that put you at increased risk of severe illness? (i.e. immunocompromised, diabetes, chronic lung conditions, cardiovascular disease, morbid obesity, etc.)": "no", "Do you live in or visit often crowded living settings? (For example, a supportive care facility, assisted living facility, group home, homeless shelter, or correctional setting)": "no", "How many members, including yourself, live in your household?": "3", "Do you have a history of any of the following pre-existing medical conditions?": null, "Are you immuno-compromised?": null, "What is your work status?": "employed full time", "What is your work zip code, either where you normally work in the office or on location or the zip code of your employers primary office?": "64055", "Are you employed by any of the following types of patient-facing organizations?": "none of these", "What is the name of the health care provider for which you work?": null, "Are you responsible for or in a position to influence vaccination planning for your employer or another organization?": "no, just interested for myself and my family", "What is the name of your employer or other organization?": null, "What is your job title or role at your organization?": null}, {"FileNo": "1", "Receipt Number": "203", "Response Reference ID": "ab15c964-c71d-46bc-8c60-3b91fec8e7ea", "Respondent Email": null, "URL submitted from": "https://www.comebackkc.com/covid-vaccine-survey/", "Form version submitted in": "3", "Response Submission DateTime": "02/22/2021 8:41 am", "Time Taken To Complete (seconds)": "377", "External ID": null, "External Status": null, "Are you planning to receive the COVID-19 vaccine?": "yes", "What makes you uncertain about receiving the COVID-19 vaccine?": null, "When would you like to get your first dose of the COVID-19 vaccine?": "as soon as possible", "What state do you live in?": "missouri", "Which Kansas county do you live in?": null, "Do you live within the city limits of Kansas City, MO?": "no", "Which Missouri county do you live in?": "jackson", "Zip": "64064", "FirstName": "lee", "LastName": "bodenheimer", "Street Address": null, "City": "lees summit", "Phone": "8163320559", "Email": "leebodces@gmail.com", "What is your preferred method of contact?": "email", "We need your permission to contact you about COVID-19 testing and vaccination.": "i consent to receive email notifications regarding covid-19 vaccination availability and clinic opportunities.,i consent to receive text message notifications regarding covid-19 vaccination availability and clinic opportunities. message and data rates may apply.,i give permission to comeback kc to share my information with appropriate public health officials to help with vaccine distribution.", "Is it okay for us to leave you a voicemail?": "yes", "Sex": "male", "Age": "68", "Race/ethnicity (check as many as apply)": "white", "Do you have any pre-existing medical conditions or do you have any conditions that put you at increased risk of severe illness? (i.e. immunocompromised, diabetes, chronic lung conditions, cardiovascular disease, morbid obesity, etc.)": "no", "Do you live in or visit often crowded living settings? (For example, a supportive care facility, assisted living facility, group home, homeless shelter, or correctional setting)": "no", "How many members, including yourself, live in your household?": "3", "Do you have a history of any of the following pre-existing medical conditions?": null, "Are you immuno-compromised?": null, "What is your work status?": "employed full time", "What is your work zip code, either where you normally work in the office or on location or the zip code of your employers primary office?": "64055", "Are you employed by any of the following types of patient-facing organizations?": "none of these", "What is the name of the health care provider for which you work?": null, "Are you responsible for or in a position to influence vaccination planning for your employer or another organization?": "no, just interested for myself and my family", "What is the name of your employer or other organization?": null, "What is your job title or role at your organization?": null}], [{"FileNo": "1", "Receipt Number": "1009", "Response Reference ID": "f38f4998-578d-4899-807e-9fa10282ffd4", "Respondent Email": null, "URL submitted from": "https://www.comebackkc.com/covid-vaccine-survey/", "Form version submitted in": "3", "Response Submission DateTime": "02/24/2021 15:43 pm", "Time Taken To Complete (seconds)": "242", "External ID": null, "External Status": null, "Are you planning to receive the COVID-19 vaccine?": "yes", "What makes you uncertain about receiving the COVID-19 vaccine?": null, "When would you like to get your first dose of the COVID-19 vaccine?": "as soon as possible", "What state do you live in?": "missouri", "Which Kansas county do you live in?": null, "Do you live within the city limits of Kansas City, MO?": "no", "Which Missouri county do you live in?": "jackson", "Zip": "64055", "FirstName": "ron", "LastName": "rogacki", "Street Address": null, "City": "independence", "Phone": "8168536712", "Email": "lyndarogacki@gmail.com", "What is your preferred method of contact?": "phone call", "We need your permission to contact you about COVID-19 testing and vaccination.": "i consent to receive email notifications regarding covid-19 vaccination availability and clinic opportunities.,i consent to receive text message notifications regarding covid-19 vaccination availability and clinic opportunities. message and data rates may apply.,i give permission to comeback kc to share my information with appropriate public health officials to help with vaccine distribution.", "Is it okay for us to leave you a voicemail?": "no", "Sex": "male", "Age": "74", "Race/ethnicity (check as many as apply)": "white", "Do you have any pre-existing medical conditions or do you have any conditions that put you at increased risk of severe illness? (i.e. immunocompromised, diabetes, chronic lung conditions, cardiovascular disease, morbid obesity, etc.)": "no", "Do you live in or visit often crowded living settings? (For example, a supportive care facility, assisted living facility, group home, homeless shelter, or correctional setting)": "no", "How many members, including yourself, live in your household?": "2", "Do you have a history of any of the following pre-existing medical conditions?": null, "Are you immuno-compromised?": null, "What is your work status?": "retired", "What is your work zip code, either where you normally work in the office or on location or the zip code of your employers primary office?": null, "Are you employed by any of the following types of patient-facing organizations?": "none of these", "What is the name of the health care provider for which you work?": null, "Are you responsible for or in a position to influence vaccination planning for your employer or another organization?": "no, just interested for myself and my family", "What is the name of your employer or other organization?": null, "What is your job title or role at your organization?": null}, {"FileNo": "1", "Receipt Number": "1011", "Response Reference ID": "1ab04645-cc24-4cba-8af5-6d7b3ac7d87c", "Respondent Email": null, "URL submitted from": "https://www.comebackkc.com/covid-vaccine-survey/", "Form version submitted in": "3", "Response Submission DateTime": "02/24/2021 15:46 pm", "Time Taken To Complete (seconds)": "152", "External ID": null, "External Status": null, "Are you planning to receive the COVID-19 vaccine?": "yes", "What makes you uncertain about receiving the COVID-19 vaccine?": null, "When would you like to get your first dose of the COVID-19 vaccine?": "as soon as possible", "What state do you live in?": "missouri", "Which Kansas county do you live in?": null, "Do you live within the city limits of Kansas City, MO?": "no", "Which Missouri county do you live in?": "jackson", "Zip": "64055", "FirstName": "lynda", "LastName": "rogacki", "Street Address": null, "City": "independence", "Phone": "8168536712", "Email": "lyndarogacki@gmail.com", "What is your preferred method of contact?": "phone call", "We need your permission to contact you about COVID-19 testing and vaccination.": "i consent to receive email notifications regarding covid-19 vaccination availability and clinic opportunities.,i consent to receive text message notifications regarding covid-19 vaccination availability and clinic opportunities. message and data rates may apply.", "Is it okay for us to leave you a voicemail?": "no", "Sex": "female", "Age": "69", "Race/ethnicity (check as many as apply)": "white", "Do you have any pre-existing medical conditions or do you have any conditions that put you at increased risk of severe illness? (i.e. immunocompromised, diabetes, chronic lung conditions, cardiovascular disease, morbid obesity, etc.)": "no", "Do you live in or visit often crowded living settings? (For example, a supportive care facility, assisted living facility, group home, homeless shelter, or correctional setting)": "no", "How many members, including yourself, live in your household?": "2", "Do you have a history of any of the following pre-existing medical conditions?": null, "Are you immuno-compromised?": null, "What is your work status?": "retired", "What is your work zip code, either where you normally work in the office or on location or the zip code of your employers primary office?": null, "Are you employed by any of the following types of patient-facing organizations?": "none of these", "What is the name of the health care provider for which you work?": null, "Are you responsible for or in a position to influence vaccination planning for your employer or another organization?": "no, just interested for myself and my family", "What is the name of your employer or other organization?": null, "What is your job title or role at your organization?": null}], [{"FileNo": "1", "Receipt Number": "147", "Response Reference ID": "c828393c-934e-4090-9b7c-791474813463", "Respondent Email": null, "URL submitted from": "https://www.comebackkc.com/covid-vaccine-survey/", "Form version submitted in": "3", "Response Submission DateTime": "02/22/2021 7:43 am", "Time Taken To Complete (seconds)": "601", "External ID": null, "External Status": null, "Are you planning to receive the COVID-19 vaccine?": "yes", "What makes you uncertain about receiving the COVID-19 vaccine?": null, "When would you like to get your first dose of the COVID-19 vaccine?": "as soon as possible", "What state do you live in?": "missouri", "Which Kansas county do you live in?": null, "Do you live within the city limits of Kansas City, MO?": "no", "Which Missouri county do you live in?": "jackson", "Zip": "64015", "FirstName": "deanna", "LastName": "price", "Street Address": null, "City": "blue springs", "Phone": "8168253003", "Email": "bdeeprice@comcast.net", "What is your preferred method of contact?": "text message", "We need your permission to contact you about COVID-19 testing and vaccination.": "i consent to receive email notifications regarding covid-19 vaccination availability and clinic opportunities.,i consent to receive text message notifications regarding covid-19 vaccination availability and clinic opportunities. message and data rates may apply.,i give permission to comeback kc to share my information with appropriate public health officials to help with vaccine distribution.", "Is it okay for us to leave you a voicemail?": "yes", "Sex": "female", "Age": "76", "Race/ethnicity (check as many as apply)": "white", "Do you have any pre-existing medical conditions or do you have any conditions that put you at increased risk of severe illness? (i.e. immunocompromised, diabetes, chronic lung conditions, cardiovascular disease, morbid obesity, etc.)": "no", "Do you live in or visit often crowded living settings? (For example, a supportive care facility, assisted living facility, group home, homeless shelter, or correctional setting)": "no", "How many members, including yourself, live in your household?": "2", "Do you have a history of any of the following pre-existing medical conditions?": null, "Are you immuno-compromised?": null, "What is your work status?": "retired", "What is your work zip code, either where you normally work in the office or on location or the zip code of your employers primary office?": null, "Are you employed by any of the following types of patient-facing organizations?": "none of these", "What is the name of the health care provider for which you work?": null, "Are you responsible for or in a position to influence vaccination planning for your employer or another organization?": "no, just interested for myself and my family", "What is the name of your employer or other organization?": null, "What is your job title or role at your organization?": null}, {"FileNo": "1", "Receipt Number": "154", "Response Reference ID": "7fdee8b2-3d8c-431c-bd85-deded644cb0e", "Respondent Email": null, "URL submitted from": "https://www.comebackkc.com/covid-vaccine-survey/", "Form version submitted in": "3", "Response Submission DateTime": "02/22/2021 7:50 am", "Time Taken To Complete (seconds)": "315", "External ID": null, "External Status": null, "Are you planning to receive the COVID-19 vaccine?": "yes", "What makes you uncertain about receiving the COVID-19 vaccine?": null, "When would you like to get your first dose of the COVID-19 vaccine?": "as soon as possible", "What state do you live in?": "missouri", "Which Kansas county do you live in?": null, "Do you live within the city limits of Kansas City, MO?": "no", "Which Missouri county do you live in?": "jackson", "Zip": "64015", "FirstName": "william", "LastName": "price", "Street Address": null, "City": "blue springs", "Phone": "8168253003", "Email": "bdeeprice@comcast.net", "What is your preferred method of contact?": "text message", "We need your permission to contact you about COVID-19 testing and vaccination.": "i consent to receive email notifications regarding covid-19 vaccination availability and clinic opportunities.,i consent to receive text message notifications regarding covid-19 vaccination availability and clinic opportunities. message and data rates may apply.,i give permission to comeback kc to share my information with appropriate public health officials to help with vaccine distribution.", "Is it okay for us to leave you a voicemail?": "yes", "Sex": "male", "Age": "76", "Race/ethnicity (check as many as apply)": "white", "Do you have any pre-existing medical conditions or do you have any conditions that put you at increased risk of severe illness? (i.e. immunocompromised, diabetes, chronic lung conditions, cardiovascular disease, morbid obesity, etc.)": "no", "Do you live in or visit often crowded living settings? (For example, a supportive care facility, assisted living facility, group home, homeless shelter, or correctional setting)": "no", "How many members, including yourself, live in your household?": "2", "Do you have a history of any of the following pre-existing medical conditions?": null, "Are you immuno-compromised?": null, "What is your work status?": "retired", "What is your work zip code, either where you normally work in the office or on location or the zip code of your employers primary office?": null, "Are you employed by any of the following types of patient-facing organizations?": "none of these", "What is the name of the health care provider for which you work?": null, "Are you responsible for or in a position to influence vaccination planning for your employer or another organization?": "no, just interested for myself and my family", "What is the name of your employer or other organization?": null, "What is your job title or role at your organization?": null}]]} \ No newline at end of file From 591451f72694abb951c9b54bba8072ba1008691a Mon Sep 17 00:00:00 2001 From: Rob Kraft Date: Wed, 28 Apr 2021 18:17:55 -0500 Subject: [PATCH 22/33] Handle another file type, also error logging --- .gitignore | 18 +++ KCDigitalDrive/KCDigitalDrive_Vacc.py | 175 ++++++++++++++++++-------- KCDigitalDrive/Mappings.csv | 4 +- dedupe-examples.pyproj | 12 +- requirements.txt | 1 + 5 files changed, 154 insertions(+), 56 deletions(-) diff --git a/.gitignore b/.gitignore index f66985ba..9282b851 100644 --- a/.gitignore +++ b/.gitignore @@ -29,3 +29,21 @@ pgsql_example/pgsql_init_db.py /.vs/dedupe-examples/v16/.suo /.vs/slnx.sqlite /dedupe-examples.pyproj.user +/s3_csv_example/combinedfile.csv +/s3_csv_example/s3thirdfile.csv +/s3_csv_example/s3secondfile.csv +/s3_csv_example/Mappings.csv +/combinedfile.csv +/CBKC01.sorted.Duplicate_Vaccination_Signups.2021.04.19-19.46.56.csv +/CBKC01.ResponseExportComeBackKC1.csv +/CBKC01.Agency2.csv +/pre_Op1.csv +/Duplicate_Vaccination_Signups.2021.04.27-12.31.18.csv +/logfile.csv +/errors.csv +/sorted.Duplicate_Vaccination_Signups.2021.04.28-16.29.57.csv +/sorted.Duplicate_Vaccination_Signups.2021.04.28-16.06.01.csv +/SAFE01.sorted.Duplicate_Vaccination_Signups.2021.04.28-16.29.57.csv +/SAFE01.sorted.Duplicate_Vaccination_Signups.2021.04.28-16.06.01.csv +/s3_csv_example_output.2021.03.28-10.49.26.zip +/s3_csv_example_output.2021.03.27-13.45.32.csv diff --git a/KCDigitalDrive/KCDigitalDrive_Vacc.py b/KCDigitalDrive/KCDigitalDrive_Vacc.py index 9b28ce15..2c9a44ce 100644 --- a/KCDigitalDrive/KCDigitalDrive_Vacc.py +++ b/KCDigitalDrive/KCDigitalDrive_Vacc.py @@ -23,14 +23,20 @@ def preProcess(column): Do a little bit of data cleaning with the help of Unidecode and Regex. Things like casing, extra spaces, quotes and new lines can be ignored. """ - column = unidecode(column) - column = re.sub(' +', ' ', column) - column = re.sub('\n', ' ', column) - column = column.strip().strip('"').strip("'").lower().strip() + if column == None: + return column + try: + column = unidecode(column) + column = re.sub(' +', ' ', column) + column = re.sub('\n', ' ', column) + column = column.strip().strip('"').strip("'").lower().strip() + except: + return column # If data is missing, indicate that by setting the value to `None` if not column: column = None return column + def preProcessCase(column): """ Do a little bit of data cleaning with the help of Unidecode and Regex. @@ -54,6 +60,19 @@ def readMappings(filename): data_d[fldSource] = dict(clean_row) return data_d +def writeToLog(message, error): + csv_log = open('logfile.csv', 'a+', newline='') +# csv_logHeader = 'DateTime,Message,Error' + #csv_log.write(csv_logHeader) + csv_log.write(time.strftime("%Y.%m.%d %H:%M.%S") + ',' + message) + csv_log.write('\n') + print(message + ' at ' + time.strftime("%Y.%m.%d %H:%M.%S")) + if error != '': + csv_err = open('errors.csv', 'a+', newline='') + csv_err.write(time.strftime("%Y.%m.%d %H:%M.%S") + ',' + message + ',' + error) + csv_err.write('\n') + print(message + ': ' + error + ' at ' + time.strftime("%Y.%m.%d %H:%M.%S")) + def readData(filename): """ @@ -64,9 +83,13 @@ def readData(filename): with open(filename) as f: reader = csv.DictReader(f) for row in reader: - clean_row = [(k, preProcess(v)) for (k, v) in row.items()] - row_id = str(int(row[fieldNameFileNo])) + '.' + str(int(row[fieldNameIdCol])) - data_d[row_id] = dict(clean_row) + try: + clean_row = [(k, preProcess(v)) for (k, v) in row.items()] + if row['Key'] != None: + row_id = str(int(row[fieldNameFileNo])) + '.' + str(int(row[fieldNameIdCol])) + data_d[row_id] = dict(clean_row) + except: + print(row) return data_d def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): @@ -103,7 +126,10 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): # 1. Setup import time - print('1. Combining Files at' + time.strftime(".%Y.%m.%d-%H.%M.%S") + ' ...') + writeToLog('Pgm','Start') + + #print('1. Combining Files at' + time.strftime(".%Y.%m.%d-%H.%M.%S") + ' ...') + writeToLog('1.0 Combining Files','') timestr = time.strftime(".%Y.%m.%d-%H.%M.%S") fieldNameFileNo = 'FileNo' #not dynamic - we totally control this @@ -128,12 +154,14 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): mappings_file = os.path.join(scriptpath, mappings_file) #2. Load all file mappings metadata - print('2. Loading headers at' + time.strftime(".%Y.%m.%d-%H.%M.%S") + ' ...') + #print('2. Loading headers at' + time.strftime(".%Y.%m.%d-%H.%M.%S") + ' ...') + writeToLog('2.0 Loading headers','') header_map = {} header_map.update(readMappings(mappings_file)) #3. Import files to working area (aka folders local to python script on hard drive) - print('3. Importing files to python script directories at' + time.strftime(".%Y.%m.%d-%H.%M.%S") + ' ...') + #print('3. Importing files to python script directories at' + time.strftime(".%Y.%m.%d-%H.%M.%S") + ' ...') + writeToLog('3.0 Importing files to python script directories','') import sys if len(sys.argv) > 1: bucket = sys.argv[1] @@ -152,16 +180,18 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): data = s3_client.get_object(Bucket=bucket, Key=filename) if filename[:6] == 'input/' and len(filename) > 6: print(filename) - local_file = filename[6:] #remove input/ from the name of the file - s3_client.download_file(bucket,filename,local_file) - s3files.append(local_file) - response = s3_client.delete_object(Bucket=bucket,Key=filename) + if len(filename) > filename.rfind("/")+1: + local_file = filename[6:].replace("/",".") #remove input/ from the name of the file + s3_client.download_file(bucket,filename,local_file) + s3files.append(local_file) + response = s3_client.delete_object(Bucket=bucket,Key=filename) else: #AppFileSource = "local" - s3files.append('C:/Users/robkr/Downloads/ResponseExport-KCRegionalCOVID19VaccinationSurvey-20210323 (1)/ResponseExportComeBackKC1.csv') - s3files.append('C:/Users/robkr/Downloads/ResponseExport-KCRegionalCOVID19VaccinationSurvey-20210323 (1)/Agency2.csv') + #s3files.append('C:/Users/robkr/Downloads/ResponseExport-KCRegionalCOVID19VaccinationSurvey-20210323 (1)/ResponseExportComeBackKC1.csv') + s3files.append('C:/Users/robkr/Downloads/ResponseExport-KCRegionalCOVID19VaccinationSurvey-20210323 (1)/SAFE01X.csv') #4. Pre-Process Files- This ugly section exists to remove the extra header that is in some csv files ################# - print('4. Pre-processing files at' + time.strftime(".%Y.%m.%d-%H.%M.%S") + ' ...') + #print('4. Pre-processing files at' + time.strftime(".%Y.%m.%d-%H.%M.%S") + ' ...') + writeToLog('4.0 Pre-processing files','') fileInfos = { "f":[]} fileInfo = {0: []} @@ -178,6 +208,7 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): firstpos=file.rfind("/") lastpos=len(file) filenameonly = file[firstpos+1:lastpos] + writeToLog('4.5 Pocessing file ' + filenameonly,'') if filenameonly.startswith("Response"): FileSource="comebackkc1" fileInfo = {fileno: []} @@ -185,23 +216,34 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): fileInfo["num"]=fileno fileInfo["unq"]=header_map[FileSource]["Unique ID"] fileInfos["f"].append(fileInfo) - if filenameonly.startswith("Agency"): - FileSource="Agency2" + if filenameonly.startswith("CBKC01"): + FileSource="CBKC01" fileInfo = {fileno: []} fileInfo["source"]=FileSource fileInfo["num"]=fileno fileInfo["unq"]=header_map[FileSource]["Unique ID"] fileInfos["f"].append(fileInfo) + if filenameonly.startswith("SAFE01"): + FileSource="SAFE01" + fileInfo = {fileno: []} + fileInfo["source"]=FileSource + fileInfo["num"]=fileno + fileInfo["unq"]=header_map[FileSource]["Unique ID"] + fileInfos["f"].append(fileInfo) csv_stripextraheader = open(fileprefix + filenameonly, 'w') csv_in = open(file,"r",encoding='utf-8') #https://stackoverflow.com/questions/49562499/how-to-fix-unicodedecodeerror-charmap-codec-cant-decode-byte-0x9d-in-posit for line in csv_in: if (FileSource=="comebackkc1") and (count < 0): #line.startswith(csv_header): count = count + 1 #skip this line - remove it from the rewritten file continue - if (FileSource=="Agency2") and (count < 0): #line.startswith(csv_header): + if (FileSource=="CBKC01") and (count < 0): #line.startswith(csv_header): count = count + 1 #skip this line - remove it from the rewritten file continue - csv_stripextraheader.write(line) + try: + csv_stripextraheader.write(line) + except UnicodeEncodeError as e: + print(line) + writeToLog('UnicodeEncodeError', 'record ' + str(count) + ': ' + str(e)) #print(count) count = count + 1 csv_in.close() @@ -211,7 +253,9 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): #4End############# This ugly section exists to remove the extra header that is in some csv files ################# #5. Combine the input files into one .csv files with consistent column headers ################# - print('5. Combining files at' + time.strftime(".%Y.%m.%d-%H.%M.%S") + ' ...') + #print('5. Combining files at' + time.strftime(".%Y.%m.%d-%H.%M.%S") + ' ...') + writeToLog('5.0 Combining files','') + fileno = 1 #Used to make the key independent per record when we combine multiple input files count = 0 csv_merge = open(combined_file, 'w', newline='') @@ -225,8 +269,10 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): filenameonly = file[firstpos+1:lastpos] if filenameonly.startswith("Response"): #TODO - Can we map this? FileSource="comebackkc1" - if filenameonly.startswith("Agency"): - FileSource="Agency2" + if filenameonly.startswith("CBKC01"): + FileSource="CBKC01" + if filenameonly.startswith("SAFE01"): + FileSource="SAFE01" #https://stackoverflow.com/questions/49562499/how-to-fix-unicodedecodeerror-charmap-codec-cant-decode-byte-0x9d-in-posit #I had sever 0x92 - https://stackoverflow.com/questions/37083687/unicodedecodeerror-ascii-codec-cant-decode-byte-0x92 with open(fileprefix + filenameonly,"r",encoding='windows-1252') as f_input: @@ -234,13 +280,17 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): for row in reader: #print(count) count = count + 1 - outrow = (filenameonly + ',' + str(fileno) + ',"' + row[header_map[FileSource]["FirstName"]] - + '","' + row[header_map[FileSource]["LastName"]] + '",' + row[header_map[FileSource]["Email"]] - + ',"' + row[header_map[FileSource]["City"]] + '",' + row[header_map[FileSource]["Phone"]] - + ',' + row[header_map[FileSource]["Zip"]] + ',' + row[header_map[FileSource]["Unique ID"]] - + ',' + row[header_map[FileSource]["Key"]] + ',' + FileSource + '\n') - #print(outrow) - csv_merge.write(outrow) + try: + outrow = (filenameonly + ',' + str(fileno) + ',"' + row[header_map[FileSource]["FirstName"]] + + '","' + row[header_map[FileSource]["LastName"]] + '",' + row[header_map[FileSource]["Email"]] + + ',"' + row[header_map[FileSource]["City"]] + '",' + row[header_map[FileSource]["Phone"]] + + ',' + row[header_map[FileSource]["Zip"]] + ',' + row[header_map[FileSource]["Unique ID"]] + + ',' + row[header_map[FileSource]["Key"]] + ',' + FileSource + '\n') + #print(outrow) + csv_merge.write(outrow) + except UnicodeEncodeError as e: + print(row) + writeToLog('UnicodeEncodeError', 'record ' + str(count) + ': ' + str(e)) fileno = fileno + 1 os.remove(fileprefix + filenameonly) csv_merge.close() @@ -252,7 +302,9 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): #csv_header = 'Receipt Number,Response Reference ID,Respondent Email,URL submitted from,Form version submitted in,Response Submission DateTime,Time Taken To Complete (seconds),External ID,External Status,Are you planning to receive the COVID-19 vaccine?,What makes you uncertain about receiving the COVID-19 vaccine?,When would you like to get your first dose of the COVID-19 vaccine?,What state do you live in?,Which Kansas county do you live in?,"Do you live within the city limits of Kansas City, MO?",Which Missouri county do you live in?,What is your zip code?,First Name,Last Name,Street Address,City,"Phone number (please enter numbers only, no dashes, spaces, or parentheses)",Email address,What is your preferred method of contact?,We need your permission to contact you about COVID-19 testing and vaccination.,Is it okay for us to leave you a voicemail?,Sex,Age,Race/ethnicity (check as many as apply),"Do you have any pre-existing medical conditions or do you have any conditions that put you at increased risk of severe illness? (i.e. immunocompromised, diabetes, chronic lung conditions, cardiovascular disease, morbid obesity, etc.)","Do you live in or visit often crowded living settings? (For example, a supportive care facility, assisted living facility, group home, homeless shelter, or correctional setting)","How many members, including yourself, live in your household?",Do you have a history of any of the following pre-existing medical conditions?,Are you immuno-compromised?,What is your work status?,"What is your work zip code, either where you normally work in the office or on location or the zip code of your employers primary office?",Are you employed by any of the following types of patient-facing organizations?,What is the name of the health care provider for which you work?,Are you responsible for or in a position to influence vaccination planning for your employer or another organization?,What is the name of your employer or other organization?,What is your job title or role at your organization?' #6. Read the data from the combined file into our DataFrame for deduping - print('6. Importing data for Deduping at' + time.strftime(".%Y.%m.%d-%H.%M.%S") + ' ...') + #print('6. Importing data for Deduping at' + time.strftime(".%Y.%m.%d-%H.%M.%S") + ' ...') + writeToLog('6.0 Importing data for Deduping','') + data_d = {} data_d.update(readData(combined_file)) # for eachFile in s3files: @@ -302,7 +354,8 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): # or not. # use 'y', 'n' and 'u' keys to flag duplicates # press 'f' when you are finished - print('starting active labeling...') + #print('starting active labeling...') + writeToLog('6.3 starting active labeling...','') dedupe.console_label(deduper) @@ -325,11 +378,12 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): # `partition` will return sets of records that dedupe # believes are all referring to the same entity. - print('clustering...') + #print('clustering...' + time.strftime(".%Y.%m.%d-%H.%M.%S") + ' ...') + writeToLog('6.5 clustering...','') clustered_dupes = deduper.partition(data_d, 0.5) - print('# duplicate sets', len(clustered_dupes)) - + #print('# duplicate sets', len(clustered_dupes)) + writeToLog('6.8 # duplicate sets...','') # ## Writing Results # Write our original data back out to a CSV with a new column called @@ -344,8 +398,11 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): } #7. Create new output files with the clustered information. One file of just dups, another file with all data - print('7. Create output files with clustered info at' + time.strftime(".%Y.%m.%d-%H.%M.%S") + ' ...') + #print('7. Create output files with clustered info at' + time.strftime(".%Y.%m.%d-%H.%M.%S") + ' ...') + writeToLog('7.0 Create output files with clustered info','') + smallPrefix = 'sm.' + with open(output_file, 'w') as f_output, open(combined_file) as f_input,open(smallPrefix +output_file, 'w') as f_outsm: reader = csv.DictReader(f_input) @@ -354,22 +411,28 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): writer.writeheader() writersm = csv.DictWriter(f_outsm, fieldnames=fieldnames) writersm.writeheader() - + count = 0 for row in reader: - row_id = str(int(row[fieldNameFileNo])) + '.' + str(int(row[fieldNameIdCol])) - row.update(cluster_membership[row_id]) - newrow = {fieldNameFileName: row[fieldNameFileName], fieldNameFileNo: row[fieldNameFileNo], - fieldNameIdInSource: row[fieldNameIdInSource], fieldNameSourceFileUniqueId:row["Unique ID"], - 'FirstName': row['FirstName'], 'LastName': row['LastName'] - , 'City': row['City'], 'Zip': row['Zip'] - , 'Phone': row['Phone'], 'Email': row['Email'], fieldNameSource: row[fieldNameSource] - , fieldNameClusterId: row[fieldNameClusterId], fieldNameConfidence: row[fieldNameConfidence]} - writer.writerow(newrow) - if row[fieldNameConfidence] < 1 and row[fieldNameConfidence] > .75: - writersm.writerow(newrow) - + count = count +1 + try: + row_id = str(int(row[fieldNameFileNo])) + '.' + str(int(row[fieldNameIdCol])) + row.update(cluster_membership[row_id]) + newrow = {fieldNameFileName: row[fieldNameFileName], fieldNameFileNo: row[fieldNameFileNo], + fieldNameIdInSource: row[fieldNameIdInSource], fieldNameSourceFileUniqueId:row["Unique ID"], + 'FirstName': row['FirstName'], 'LastName': row['LastName'] + , 'City': row['City'], 'Zip': row['Zip'] + , 'Phone': row['Phone'], 'Email': row['Email'], fieldNameSource: row[fieldNameSource] + , fieldNameClusterId: row[fieldNameClusterId], fieldNameConfidence: row[fieldNameConfidence]} + writer.writerow(newrow) + if row[fieldNameConfidence] < 1 and row[fieldNameConfidence] > .75: + writersm.writerow(newrow) + except Exception as e: + print (row) + writeToLog('Error', 'record ' + str(count) + ': ' + str(e)) #8. Sort the single output file that has cluster info - print('8. Sorting files at' + time.strftime(".%Y.%m.%d-%H.%M.%S") + ' ...') + #print('8. Sorting files at' + time.strftime(".%Y.%m.%d-%H.%M.%S") + ' ...') + writeToLog('8.0 Sorting files','') + #https://www.usepandas.com/csv/sort-csv-data-by-column sortedPrefix = 'sorted.' df = pd.read_csv(smallPrefix + output_file) @@ -379,7 +442,9 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): os.remove(smallPrefix + output_file) #9. Split the output file into output files per agency and sort it - print('9. Split files per agency at' + time.strftime(".%Y.%m.%d-%H.%M.%S") + ' ...') + #print('9. Split files per agency at' + time.strftime(".%Y.%m.%d-%H.%M.%S") + ' ...') + writeToLog('9.0 Split files per agency','') + df = pd.read_csv(sortedPrefix + output_file) for filen in fileInfos["f"]: ss = filen['source'] @@ -387,6 +452,7 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): continue agencyFilePrefix = ss + '.' gg = df.groupby(fieldNameSource).get_group(ss).ClusterId.values + linesInFile=0 with open(agencyFilePrefix + output_file, 'w') as a_out, open(sortedPrefix + output_file) as f_input: reader = csv.DictReader(f_input) fieldnames = [fieldNameClusterId, fieldNameConfidence] + outputfieldnames @@ -395,14 +461,17 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): for row in reader: if int(row[fieldNameClusterId]) in gg: writer.writerow(row) + linesInFile = linesInFile+1 a_out.close() df2 = pd.read_csv(agencyFilePrefix + output_file) sorted_df = df2.sort_values(by=[fieldNameClusterId,"ConfidenceScore"], ascending=[True,True]) sorted_df.to_csv(agencyFilePrefix + sortedPrefix + output_file, index=False) os.remove(agencyFilePrefix + output_file) + writeToLog('9.8 ' + str(linesInFile) + ' records written to ' + agencyFilePrefix + sortedPrefix + output_file ,'') #10 - print('10. Send files to s3 at' + time.strftime(".%Y.%m.%d-%H.%M.%S") + ' ...') + #print('10. Send files to s3 at' + time.strftime(".%Y.%m.%d-%H.%M.%S") + ' ...') + writeToLog('9.9 Send files to s3','') writeToS3Bucket(output_file, output_bucket, s3output_file) #C:\Users\Administrator\AppData\Local\Programs\Python\Python39\python s3_csv_example.py c4kc-cvax-deduplication c4kc-cvax-deduplication diff --git a/KCDigitalDrive/Mappings.csv b/KCDigitalDrive/Mappings.csv index ef3162d5..de4672c8 100644 --- a/KCDigitalDrive/Mappings.csv +++ b/KCDigitalDrive/Mappings.csv @@ -1,4 +1,4 @@ Source,FirstName,LastName,Email,City,Phone,Zip,Unique ID,Key comebackkc1,First Name,Last Name,Email address,City,"Phone number (please enter numbers only, no dashes, spaces, or parentheses)",What is your zip code?,Response Reference ID,Receipt Number -Agency2,First Name,Last Name,Email address,City,"Phone number (please enter numbers only, no dashes, spaces, or parentheses)",What is your zip code?,Response Reference ID,Receipt Number -Agency3,NamoFirst,Namo2nd,EmailMe,City,Phone Number,ZipCode,GUID,id +CBKC01,First Name,Last Name,Email address,City,"Phone number (please enter numbers only, no dashes, spaces, or parentheses)",What is your zip code?,Response Reference ID,Receipt Number +SAFE01,First Name,Last Name,Email Address,"What city do you live in?","Home Phone Number","The zip code where you live",IP,Submission ID diff --git a/dedupe-examples.pyproj b/dedupe-examples.pyproj index 0e8ef7b6..73bb03cc 100644 --- a/dedupe-examples.pyproj +++ b/dedupe-examples.pyproj @@ -5,7 +5,7 @@ 2.0 {d588098a-74ed-4cc7-a86f-26ff7f60504a} - s3_csv_example\s3_csv_example.py + KCDigitalDrive\KCDigitalDrive_Vacc.py . . @@ -14,6 +14,7 @@ wildrydes-rob-kraft pp4ncaliftwo False + True @@ -25,6 +26,13 @@ + + + + + + + @@ -38,6 +46,7 @@ + @@ -52,6 +61,7 @@ + diff --git a/requirements.txt b/requirements.txt index 24f66897..c5afc16b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,4 @@ dedupe Unidecode==0.4.16 future +pandas \ No newline at end of file From c294e5514bbc920e881f82d01f891e55b11648e7 Mon Sep 17 00:00:00 2001 From: Rob Kraft Date: Thu, 29 Apr 2021 10:40:14 -0500 Subject: [PATCH 23/33] Default source of files to s3 --- KCDigitalDrive/KCDigitalDrive_Vacc.py | 6 ++++-- dedupe-examples.pyproj | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/KCDigitalDrive/KCDigitalDrive_Vacc.py b/KCDigitalDrive/KCDigitalDrive_Vacc.py index 2c9a44ce..dcc8b391 100644 --- a/KCDigitalDrive/KCDigitalDrive_Vacc.py +++ b/KCDigitalDrive/KCDigitalDrive_Vacc.py @@ -139,7 +139,7 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): fieldNameClusterId = 'ClusterId' #not dynamic - we totally control this fieldNameConfidence = 'ConfidenceScore' #not dynamic - we totally control this fieldNameSource = 'Source' #not dynamic - we totally control this - AppFileSource = "local" + AppFileSource = "s3" output_file = 'Duplicate_Vaccination_Signups' + timestr + '.csv' s3output_file = 'output/Duplicate_Vaccination_Signups' + timestr + '.csv' settings_file = 'Duplicate_Vaccination_Signups_learned_settings' @@ -165,8 +165,10 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): import sys if len(sys.argv) > 1: bucket = sys.argv[1] - if len(sys.argv) > 1: + if len(sys.argv) > 2: output_bucket = sys.argv[2] + if len(sys.argv) > 3: + AppFileSource = sys.argv[3] output_bucket=bucket s3files = [] diff --git a/dedupe-examples.pyproj b/dedupe-examples.pyproj index 73bb03cc..cf46f91e 100644 --- a/dedupe-examples.pyproj +++ b/dedupe-examples.pyproj @@ -12,7 +12,7 @@ {888888a0-9f3d-457c-b088-3a5042f75d52} Standard Python launcher - wildrydes-rob-kraft pp4ncaliftwo + wildrydes-rob-kraft pp4ncaliftwo local False True From 1ec6333bd507718f867d7b37ff3f1ce5e6f84374 Mon Sep 17 00:00:00 2001 From: Rob Kraft Date: Thu, 29 Apr 2021 14:22:58 -0500 Subject: [PATCH 24/33] Fix typo in msg --- KCDigitalDrive/KCDigitalDrive_Vacc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/KCDigitalDrive/KCDigitalDrive_Vacc.py b/KCDigitalDrive/KCDigitalDrive_Vacc.py index dcc8b391..fe539af7 100644 --- a/KCDigitalDrive/KCDigitalDrive_Vacc.py +++ b/KCDigitalDrive/KCDigitalDrive_Vacc.py @@ -210,7 +210,7 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): firstpos=file.rfind("/") lastpos=len(file) filenameonly = file[firstpos+1:lastpos] - writeToLog('4.5 Pocessing file ' + filenameonly,'') + writeToLog('4.5 Processing file ' + filenameonly,'') if filenameonly.startswith("Response"): FileSource="comebackkc1" fileInfo = {fileno: []} From 70a0aee51915ed86215c14ab2634db20a8d46347 Mon Sep 17 00:00:00 2001 From: Rob Kraft Date: Tue, 4 May 2021 12:33:27 -0500 Subject: [PATCH 25/33] Specify full file path for every file --- KCDigitalDrive/KCDigitalDrive_Vacc.py | 81 ++++++++++++++++----------- 1 file changed, 49 insertions(+), 32 deletions(-) diff --git a/KCDigitalDrive/KCDigitalDrive_Vacc.py b/KCDigitalDrive/KCDigitalDrive_Vacc.py index fe539af7..cf4ebf08 100644 --- a/KCDigitalDrive/KCDigitalDrive_Vacc.py +++ b/KCDigitalDrive/KCDigitalDrive_Vacc.py @@ -61,14 +61,14 @@ def readMappings(filename): return data_d def writeToLog(message, error): - csv_log = open('logfile.csv', 'a+', newline='') + csv_log = open(log_file, 'a+', newline='') # csv_logHeader = 'DateTime,Message,Error' #csv_log.write(csv_logHeader) csv_log.write(time.strftime("%Y.%m.%d %H:%M.%S") + ',' + message) csv_log.write('\n') print(message + ' at ' + time.strftime("%Y.%m.%d %H:%M.%S")) if error != '': - csv_err = open('errors.csv', 'a+', newline='') + csv_err = open(errors_file, 'a+', newline='') csv_err.write(time.strftime("%Y.%m.%d %H:%M.%S") + ',' + message + ',' + error) csv_err.write('\n') print(message + ': ' + error + ' at ' + time.strftime("%Y.%m.%d %H:%M.%S")) @@ -92,15 +92,18 @@ def readData(filename): print(row) return data_d -def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): +def writeToS3Bucket( output_bucket): s3 = boto3.resource('s3') for filen in fileInfos["f"]: ss = filen['source'] if ss == '': continue agencyFilePrefix = ss + '.' - s3.meta.client.upload_file(agencyFilePrefix + sortedPrefix + local_file_to_send, output_bucket, 'output/' + agencyFilePrefix + sortedPrefix + local_file_to_send) - os.remove(agencyFilePrefix + sortedPrefix +local_file_to_send) + output_fileAgain = 'Duplicate_Vaccination_Signups' + timestr + '.csv' + agency_file = os.path.join(scriptpath, agencyFilePrefix + output_file_base) + agency_sorted_file = os.path.join(scriptpath, agencyFilePrefix + 'sorted.' + output_file_base) + s3.meta.client.upload_file(agency_sorted_file, output_bucket, 'output/' + agencyFilePrefix + sortedPrefix + output_file_base) + os.remove(agency_sorted_file) if __name__ == '__main__': @@ -126,10 +129,6 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): # 1. Setup import time - writeToLog('Pgm','Start') - - #print('1. Combining Files at' + time.strftime(".%Y.%m.%d-%H.%M.%S") + ' ...') - writeToLog('1.0 Combining Files','') timestr = time.strftime(".%Y.%m.%d-%H.%M.%S") fieldNameFileNo = 'FileNo' #not dynamic - we totally control this @@ -139,19 +138,35 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): fieldNameClusterId = 'ClusterId' #not dynamic - we totally control this fieldNameConfidence = 'ConfidenceScore' #not dynamic - we totally control this fieldNameSource = 'Source' #not dynamic - we totally control this - AppFileSource = "s3" - output_file = 'Duplicate_Vaccination_Signups' + timestr + '.csv' - s3output_file = 'output/Duplicate_Vaccination_Signups' + timestr + '.csv' + AppFileSource = "local" #s3 or local + log_file = 'logfile.csv' + errors_file = 'errors.csv' + mappings_file = 'Mappings.csv' settings_file = 'Duplicate_Vaccination_Signups_learned_settings' training_file = 'Duplicate_Vaccination_Signups_training.json' combined_file = 'combinedfile.csv' + output_file_base = 'Duplicate_Vaccination_Signups' + timestr + '.csv' + outputsm_file = 'sm.' + output_file_base + outputsorted_file = 'sorted.' + output_file_base + s3output_file = 'output/' + output_file_base bucket='c4kc-cvax-deduplication' #bucket name could be overridden by value passed in below - mappings_file = 'Mappings.csv' scriptpath = os.path.dirname(__file__) + log_file = os.path.join(scriptpath, log_file) + errors_file = os.path.join(scriptpath, errors_file) + mappings_file = os.path.join(scriptpath, mappings_file) settings_file = os.path.join(scriptpath, settings_file) training_file = os.path.join(scriptpath, training_file) - mappings_file = os.path.join(scriptpath, mappings_file) + combined_file = os.path.join(scriptpath, combined_file) + output_file = os.path.join(scriptpath, output_file_base) + outputsm_file = os.path.join(scriptpath, outputsm_file) + outputsorted_file = os.path.join(scriptpath, outputsorted_file) + + writeToLog('Pgm','Start') + #print('1. Combining Files at' + time.strftime(".%Y.%m.%d-%H.%M.%S") + ' ...') + writeToLog('1.0 Combining Files','') + + #2. Load all file mappings metadata #print('2. Loading headers at' + time.strftime(".%Y.%m.%d-%H.%M.%S") + ' ...') @@ -232,7 +247,8 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): fileInfo["num"]=fileno fileInfo["unq"]=header_map[FileSource]["Unique ID"] fileInfos["f"].append(fileInfo) - csv_stripextraheader = open(fileprefix + filenameonly, 'w') + step4_file = os.path.join(scriptpath, fileprefix + filenameonly) + csv_stripextraheader = open(step4_file, 'w') csv_in = open(file,"r",encoding='utf-8') #https://stackoverflow.com/questions/49562499/how-to-fix-unicodedecodeerror-charmap-codec-cant-decode-byte-0x9d-in-posit for line in csv_in: if (FileSource=="comebackkc1") and (count < 0): #line.startswith(csv_header): @@ -277,7 +293,8 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): FileSource="SAFE01" #https://stackoverflow.com/questions/49562499/how-to-fix-unicodedecodeerror-charmap-codec-cant-decode-byte-0x9d-in-posit #I had sever 0x92 - https://stackoverflow.com/questions/37083687/unicodedecodeerror-ascii-codec-cant-decode-byte-0x92 - with open(fileprefix + filenameonly,"r",encoding='windows-1252') as f_input: + step4_file = os.path.join(scriptpath, fileprefix + filenameonly) + with open(step4_file,"r",encoding='windows-1252') as f_input: reader = csv.DictReader(f_input, dialect='excel') for row in reader: #print(count) @@ -294,7 +311,7 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): print(row) writeToLog('UnicodeEncodeError', 'record ' + str(count) + ': ' + str(e)) fileno = fileno + 1 - os.remove(fileprefix + filenameonly) + os.remove(step4_file) csv_merge.close() #5End############# Combine multiple input files into one single file with consistent column headers ################# @@ -403,9 +420,7 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): #print('7. Create output files with clustered info at' + time.strftime(".%Y.%m.%d-%H.%M.%S") + ' ...') writeToLog('7.0 Create output files with clustered info','') - smallPrefix = 'sm.' - - with open(output_file, 'w') as f_output, open(combined_file) as f_input,open(smallPrefix +output_file, 'w') as f_outsm: + with open(output_file, 'w') as f_output, open(combined_file) as f_input,open(outputsm_file, 'w') as f_outsm: reader = csv.DictReader(f_input) fieldnames = [fieldNameClusterId, fieldNameConfidence] + outputfieldnames @@ -431,23 +446,23 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): except Exception as e: print (row) writeToLog('Error', 'record ' + str(count) + ': ' + str(e)) + os.remove(combined_file) #8. Sort the single output file that has cluster info #print('8. Sorting files at' + time.strftime(".%Y.%m.%d-%H.%M.%S") + ' ...') writeToLog('8.0 Sorting files','') #https://www.usepandas.com/csv/sort-csv-data-by-column - sortedPrefix = 'sorted.' - df = pd.read_csv(smallPrefix + output_file) + df = pd.read_csv(outputsm_file) sorted_df = df.sort_values(by=[fieldNameClusterId,"ConfidenceScore"], ascending=[True,True]) - sorted_df.to_csv(sortedPrefix + output_file, index=False) + sorted_df.to_csv(outputsorted_file, index=False) os.remove(output_file) - os.remove(smallPrefix + output_file) + os.remove(outputsm_file) #9. Split the output file into output files per agency and sort it #print('9. Split files per agency at' + time.strftime(".%Y.%m.%d-%H.%M.%S") + ' ...') writeToLog('9.0 Split files per agency','') - df = pd.read_csv(sortedPrefix + output_file) + df = pd.read_csv(outputsorted_file) for filen in fileInfos["f"]: ss = filen['source'] if ss == '': @@ -455,7 +470,9 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): agencyFilePrefix = ss + '.' gg = df.groupby(fieldNameSource).get_group(ss).ClusterId.values linesInFile=0 - with open(agencyFilePrefix + output_file, 'w') as a_out, open(sortedPrefix + output_file) as f_input: + agency_file = os.path.join(scriptpath, agencyFilePrefix + output_file_base) + agency_sorted_file = os.path.join(scriptpath, agencyFilePrefix + 'sorted.' + output_file_base) + with open(agency_file, 'w') as a_out, open(outputsorted_file) as f_input: reader = csv.DictReader(f_input) fieldnames = [fieldNameClusterId, fieldNameConfidence] + outputfieldnames writer = csv.DictWriter(a_out, fieldnames=fieldnames) @@ -465,16 +482,16 @@ def writeToS3Bucket(local_file_to_send, output_bucket, s3output_file): writer.writerow(row) linesInFile = linesInFile+1 a_out.close() - df2 = pd.read_csv(agencyFilePrefix + output_file) + df2 = pd.read_csv(agency_file) sorted_df = df2.sort_values(by=[fieldNameClusterId,"ConfidenceScore"], ascending=[True,True]) - sorted_df.to_csv(agencyFilePrefix + sortedPrefix + output_file, index=False) - os.remove(agencyFilePrefix + output_file) - writeToLog('9.8 ' + str(linesInFile) + ' records written to ' + agencyFilePrefix + sortedPrefix + output_file ,'') - + sorted_df.to_csv(agency_sorted_file, index=False) + os.remove(agency_file) + writeToLog('9.8 ' + str(linesInFile) + ' records written to ' + agency_sorted_file ,'') + os.remove(outputsorted_file) #10 #print('10. Send files to s3 at' + time.strftime(".%Y.%m.%d-%H.%M.%S") + ' ...') writeToLog('9.9 Send files to s3','') - writeToS3Bucket(output_file, output_bucket, s3output_file) + writeToS3Bucket( output_bucket) #C:\Users\Administrator\AppData\Local\Programs\Python\Python39\python s3_csv_example.py c4kc-cvax-deduplication c4kc-cvax-deduplication From 155068f503c73b68beb1a0332e4aaf60af855f40 Mon Sep 17 00:00:00 2001 From: Rob Kraft Date: Tue, 4 May 2021 13:02:34 -0500 Subject: [PATCH 26/33] more file paths --- KCDigitalDrive/KCDigitalDrive_Vacc.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/KCDigitalDrive/KCDigitalDrive_Vacc.py b/KCDigitalDrive/KCDigitalDrive_Vacc.py index cf4ebf08..3a68f267 100644 --- a/KCDigitalDrive/KCDigitalDrive_Vacc.py +++ b/KCDigitalDrive/KCDigitalDrive_Vacc.py @@ -138,7 +138,7 @@ def writeToS3Bucket( output_bucket): fieldNameClusterId = 'ClusterId' #not dynamic - we totally control this fieldNameConfidence = 'ConfidenceScore' #not dynamic - we totally control this fieldNameSource = 'Source' #not dynamic - we totally control this - AppFileSource = "local" #s3 or local + AppFileSource = "s3" #s3 or local log_file = 'logfile.csv' errors_file = 'errors.csv' mappings_file = 'Mappings.csv' @@ -199,6 +199,8 @@ def writeToS3Bucket( output_bucket): print(filename) if len(filename) > filename.rfind("/")+1: local_file = filename[6:].replace("/",".") #remove input/ from the name of the file + local_file = os.path.join(scriptpath, local_file) + writeToLog('3.5 Downloading ' + filename + ' from s3 to ' + local_file,'') s3_client.download_file(bucket,filename,local_file) s3files.append(local_file) response = s3_client.delete_object(Bucket=bucket,Key=filename) From 9915a25b09ee942eb459adcc75d3eeef89497e20 Mon Sep 17 00:00:00 2001 From: Rob Kraft Date: Tue, 4 May 2021 13:16:09 -0500 Subject: [PATCH 27/33] change file path / to \\ don't understand --- KCDigitalDrive/KCDigitalDrive_Vacc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/KCDigitalDrive/KCDigitalDrive_Vacc.py b/KCDigitalDrive/KCDigitalDrive_Vacc.py index 3a68f267..2bcd3265 100644 --- a/KCDigitalDrive/KCDigitalDrive_Vacc.py +++ b/KCDigitalDrive/KCDigitalDrive_Vacc.py @@ -224,7 +224,7 @@ def writeToS3Bucket( output_bucket): #TODO - Read in Headers and do a replace of header names based on the mappings. for file in s3files: count = -1 - firstpos=file.rfind("/") + firstpos=file.rfind("\\") #not sure why this works differently on deployed site lastpos=len(file) filenameonly = file[firstpos+1:lastpos] writeToLog('4.5 Processing file ' + filenameonly,'') From d2cff57463c0363e90a58118c048862125e3afca Mon Sep 17 00:00:00 2001 From: Rob Kraft Date: Tue, 4 May 2021 13:44:24 -0500 Subject: [PATCH 28/33] can't print unattended --- KCDigitalDrive/KCDigitalDrive_Vacc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/KCDigitalDrive/KCDigitalDrive_Vacc.py b/KCDigitalDrive/KCDigitalDrive_Vacc.py index 2bcd3265..73df6ceb 100644 --- a/KCDigitalDrive/KCDigitalDrive_Vacc.py +++ b/KCDigitalDrive/KCDigitalDrive_Vacc.py @@ -262,7 +262,7 @@ def writeToS3Bucket( output_bucket): try: csv_stripextraheader.write(line) except UnicodeEncodeError as e: - print(line) + #print(line) - argh - print doesn't work on unattended script writeToLog('UnicodeEncodeError', 'record ' + str(count) + ': ' + str(e)) #print(count) count = count + 1 @@ -284,7 +284,7 @@ def writeToS3Bucket( output_bucket): csv_merge.write(fieldNameFileName + ',' + fieldNameFileNo + ',' + csv_headerNew) csv_merge.write('\n') for file in s3files: - firstpos=file.rfind("/") + firstpos=file.rfind("\\") #argh lastpos=len(file) filenameonly = file[firstpos+1:lastpos] if filenameonly.startswith("Response"): #TODO - Can we map this? From 15fb7d8027e59336504d14a61893af73881176ff Mon Sep 17 00:00:00 2001 From: Rob Kraft Date: Tue, 4 May 2021 13:56:22 -0500 Subject: [PATCH 29/33] Guessing at cleanup for s3 --- KCDigitalDrive/KCDigitalDrive_Vacc.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/KCDigitalDrive/KCDigitalDrive_Vacc.py b/KCDigitalDrive/KCDigitalDrive_Vacc.py index 73df6ceb..ccbf0bce 100644 --- a/KCDigitalDrive/KCDigitalDrive_Vacc.py +++ b/KCDigitalDrive/KCDigitalDrive_Vacc.py @@ -99,10 +99,8 @@ def writeToS3Bucket( output_bucket): if ss == '': continue agencyFilePrefix = ss + '.' - output_fileAgain = 'Duplicate_Vaccination_Signups' + timestr + '.csv' - agency_file = os.path.join(scriptpath, agencyFilePrefix + output_file_base) agency_sorted_file = os.path.join(scriptpath, agencyFilePrefix + 'sorted.' + output_file_base) - s3.meta.client.upload_file(agency_sorted_file, output_bucket, 'output/' + agencyFilePrefix + sortedPrefix + output_file_base) + s3.meta.client.upload_file(agency_sorted_file, output_bucket, 'output/' + agencyFilePrefix + 'sorted.' + output_file_base) os.remove(agency_sorted_file) From ae9aed6413205ccb9fe91321cd994e3a4e4d57ef Mon Sep 17 00:00:00 2001 From: Rob Kraft Date: Tue, 4 May 2021 16:13:15 -0500 Subject: [PATCH 30/33] Fix for correctly removing one file --- KCDigitalDrive/KCDigitalDrive_Vacc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/KCDigitalDrive/KCDigitalDrive_Vacc.py b/KCDigitalDrive/KCDigitalDrive_Vacc.py index ccbf0bce..89ac49f4 100644 --- a/KCDigitalDrive/KCDigitalDrive_Vacc.py +++ b/KCDigitalDrive/KCDigitalDrive_Vacc.py @@ -310,8 +310,8 @@ def writeToS3Bucket( output_bucket): except UnicodeEncodeError as e: print(row) writeToLog('UnicodeEncodeError', 'record ' + str(count) + ': ' + str(e)) + os.remove(step4_file) fileno = fileno + 1 - os.remove(step4_file) csv_merge.close() #5End############# Combine multiple input files into one single file with consistent column headers ################# From 90336bbc8b42e7c3344c11d1ad06b923f17e4eb2 Mon Sep 17 00:00:00 2001 From: Rob Kraft Date: Tue, 4 May 2021 16:23:38 -0500 Subject: [PATCH 31/33] Indention matters! --- KCDigitalDrive/KCDigitalDrive_Vacc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/KCDigitalDrive/KCDigitalDrive_Vacc.py b/KCDigitalDrive/KCDigitalDrive_Vacc.py index 89ac49f4..98df6aa0 100644 --- a/KCDigitalDrive/KCDigitalDrive_Vacc.py +++ b/KCDigitalDrive/KCDigitalDrive_Vacc.py @@ -310,7 +310,7 @@ def writeToS3Bucket( output_bucket): except UnicodeEncodeError as e: print(row) writeToLog('UnicodeEncodeError', 'record ' + str(count) + ': ' + str(e)) - os.remove(step4_file) + os.remove(step4_file) fileno = fileno + 1 csv_merge.close() #5End############# Combine multiple input files into one single file with consistent column headers ################# From fe2178b660bb3ad764e0c87e63f6952ab6231da3 Mon Sep 17 00:00:00 2001 From: Rob Kraft Date: Tue, 4 May 2021 16:59:37 -0500 Subject: [PATCH 32/33] Delete original file if at S3 --- KCDigitalDrive/KCDigitalDrive_Vacc.py | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/KCDigitalDrive/KCDigitalDrive_Vacc.py b/KCDigitalDrive/KCDigitalDrive_Vacc.py index 98df6aa0..76ef64e5 100644 --- a/KCDigitalDrive/KCDigitalDrive_Vacc.py +++ b/KCDigitalDrive/KCDigitalDrive_Vacc.py @@ -204,7 +204,7 @@ def writeToS3Bucket( output_bucket): response = s3_client.delete_object(Bucket=bucket,Key=filename) else: #AppFileSource = "local" #s3files.append('C:/Users/robkr/Downloads/ResponseExport-KCRegionalCOVID19VaccinationSurvey-20210323 (1)/ResponseExportComeBackKC1.csv') - s3files.append('C:/Users/robkr/Downloads/ResponseExport-KCRegionalCOVID19VaccinationSurvey-20210323 (1)/SAFE01X.csv') + s3files.append('C:/Users/robkr/Downloads/ResponseExport-KCRegionalCOVID19VaccinationSurvey-20210323 (1)/SAFE01.SAFE01x - Copy.csv') #4. Pre-Process Files- This ugly section exists to remove the extra header that is in some csv files ################# #print('4. Pre-processing files at' + time.strftime(".%Y.%m.%d-%H.%M.%S") + ' ...') @@ -222,7 +222,11 @@ def writeToS3Bucket( output_bucket): #TODO - Read in Headers and do a replace of header names based on the mappings. for file in s3files: count = -1 - firstpos=file.rfind("\\") #not sure why this works differently on deployed site + firstpos=0 + if AppFileSource == "s3": + firstpos=file.rfind("\\") + else: + firstpos=file.rfind("/") lastpos=len(file) filenameonly = file[firstpos+1:lastpos] writeToLog('4.5 Processing file ' + filenameonly,'') @@ -265,7 +269,8 @@ def writeToS3Bucket( output_bucket): #print(count) count = count + 1 csv_in.close() - #os.remove(file) + if AppFileSource == "s3": + os.remove(file) fileno = fileno + 1 csv_stripextraheader.close() #4End############# This ugly section exists to remove the extra header that is in some csv files ################# @@ -282,7 +287,11 @@ def writeToS3Bucket( output_bucket): csv_merge.write(fieldNameFileName + ',' + fieldNameFileNo + ',' + csv_headerNew) csv_merge.write('\n') for file in s3files: - firstpos=file.rfind("\\") #argh + firstpos=0 + if AppFileSource == "s3": + firstpos=file.rfind("\\") + else: + firstpos=file.rfind("/") lastpos=len(file) filenameonly = file[firstpos+1:lastpos] if filenameonly.startswith("Response"): #TODO - Can we map this? From bf02a805f8d1a0581b07c1eb81503c769b9541f1 Mon Sep 17 00:00:00 2001 From: Rob Kraft Date: Thu, 17 Jun 2021 15:47:22 -0500 Subject: [PATCH 33/33] Add dockerfile --- Dockerfile | 16 ++++++++++++++++ KCDigitalDrive/KCDigitalDrive_Vacc.py | 6 ++++-- dedupe-examples.pyproj | 1 + 3 files changed, 21 insertions(+), 2 deletions(-) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..22e9874d --- /dev/null +++ b/Dockerfile @@ -0,0 +1,16 @@ +FROM python:3 + +ADD KCDigitalDrive/KCDigitalDrive_Vacc.py / + +RUN pip install unidecode +RUN pip install pandas +RUN pip install dedupe +RUN pip install boto3 + +COPY KCDigitalDrive/Mappings.csv ./ +COPY SAFE01TestData.csv ./ +COPY KCDigitalDrive/Duplicate_Vaccination_Signups_learned_settings ./ +COPY KCDigitalDrive/Duplicate_Vaccination_Signups_training.json ./ + + +CMD ["python", "./KCDigitalDrive_Vacc.py", "wildrydes-rob-kraft", "pp4ncaliftwo", "local"] \ No newline at end of file diff --git a/KCDigitalDrive/KCDigitalDrive_Vacc.py b/KCDigitalDrive/KCDigitalDrive_Vacc.py index 76ef64e5..9832d02e 100644 --- a/KCDigitalDrive/KCDigitalDrive_Vacc.py +++ b/KCDigitalDrive/KCDigitalDrive_Vacc.py @@ -204,7 +204,8 @@ def writeToS3Bucket( output_bucket): response = s3_client.delete_object(Bucket=bucket,Key=filename) else: #AppFileSource = "local" #s3files.append('C:/Users/robkr/Downloads/ResponseExport-KCRegionalCOVID19VaccinationSurvey-20210323 (1)/ResponseExportComeBackKC1.csv') - s3files.append('C:/Users/robkr/Downloads/ResponseExport-KCRegionalCOVID19VaccinationSurvey-20210323 (1)/SAFE01.SAFE01x - Copy.csv') + #s3files.append('C:/Users/robkr/Downloads/ResponseExport-KCRegionalCOVID19VaccinationSurvey-20210323 (1)/SAFE01.SAFE01x - Copy.csv') + s3files.append('SAFE01TestData.csv') #4. Pre-Process Files- This ugly section exists to remove the extra header that is in some csv files ################# #print('4. Pre-processing files at' + time.strftime(".%Y.%m.%d-%H.%M.%S") + ' ...') @@ -303,7 +304,8 @@ def writeToS3Bucket( output_bucket): #https://stackoverflow.com/questions/49562499/how-to-fix-unicodedecodeerror-charmap-codec-cant-decode-byte-0x9d-in-posit #I had sever 0x92 - https://stackoverflow.com/questions/37083687/unicodedecodeerror-ascii-codec-cant-decode-byte-0x92 step4_file = os.path.join(scriptpath, fileprefix + filenameonly) - with open(step4_file,"r",encoding='windows-1252') as f_input: + #with open(step4_file,"r",encoding='windows-1252') as f_input: #if OS is windows + with open(step4_file,"r") as f_input: reader = csv.DictReader(f_input, dialect='excel') for row in reader: #print(count) diff --git a/dedupe-examples.pyproj b/dedupe-examples.pyproj index cf46f91e..7ae8caec 100644 --- a/dedupe-examples.pyproj +++ b/dedupe-examples.pyproj @@ -23,6 +23,7 @@ +