-
Notifications
You must be signed in to change notification settings - Fork 81
/
resume_faker.py
2143 lines (2126 loc) · 71.5 KB
/
resume_faker.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import random
from faker import Faker
from datetime import date
import re
import os
import subprocess
fake = Faker()
silent = True
ROOT_FOLDER = './resumeSrc/'
TEMPLATES_FOLDER = ROOT_FOLDER+'templates/'
PACKAGES_FOLDER = ROOT_FOLDER+'packages/'
UNIVERSITIES = [
'University of Alaska',
'Alaska Christian College',
'National Park Community College',
'University of Alaska Fairbanks',
'University of Arkansas - Fort Smith',
'Alabama A&M University',
'Athens State University',
'Auburn University',
'Auburn University at Montgomery',
'Birmingham-Southern College',
'Calhoun Community College',
'Enterprise State Community College',
'Faulkner State Community College',
'Gadsden State Community College',
'Huntingdon College',
'Jacksonville State University',
'Lurleen B. Wallace Community College',
'University of Montevallo',
'Northeast Alabama Community College',
'Northwest-Shoals Community College',
'Oakwood University',
'Samford University',
'Southeastern Bible College',
'University of South Alabama',
'Trenholm State Technical College',
'Troy University',
'Tuskegee University',
'University of Alabama',
'University of Alabama at Birmingham',
'University of Alabama in Huntsville',
'University of North Alabama',
'Snead State Community College',
'Arkansas Northeastern College',
'Arkansas State University',
'Arkansas Tech University',
'Central Baptist College',
'Harding University',
'Hendrix College',
'Henderson State University',
'John Brown University',
'Lyon College',
'Mid-South Community College',
'North Arkansas College',
'Northwest Arkansas Community College',
'Northwest Technical Institute',
'Ouachita Baptist University',
'University of the Ozarks',
'Phillips Community College U of A',
'Pulaski Technical College',
'Southern Arkansas University Magnolia',
'Southeast Arkansas College',
'University of Arkansas Community College Batesville',
'University of Arkansas at Little Rock',
'University of Arkansas for Medical Sciences',
'University of Arkansas at Pine Bluff',
'University of Arkansas',
'University of Central Arkansas',
'Williams Baptist College',
'University of Arizona',
'Arizona State University',
'Arizona Western College',
'Bryan University',
'Central Arizona College',
'Glendale Community College',
'Grand Canyon University',
'Maricopa Community Colleges',
'Mesa Community College',
'Northern Arizona University',
'Northland Pioneer College',
'University of Phoenix',
'Phoenix College',
'Pima Community College',
'Prescott College',
'Rio Salado College',
'South Mountain Community College',
'University of Advancing Technology',
'Yavapai College',
'Academy of Arts University',
'Adance Computing Institute',
'Acupuncture & Integrative Medicine College',
'Alliant International University',
'Allied American University',
'Anaheim University',
'Angeles College',
'Antioch University Los Angeles',
'Argosy University',
'Art Center College of Design',
'The Art Institute',
'Ashford University',
'ATI College',
'Antelope Valley College',
'Bakersfield College',
'Barstow Community College',
'Berkeley University of California',
'Berkeley City College',
'Brandman University',
'Butte College',
'Cabrillo College',
'California Institute of the Arts',
'California Baptist University',
'California Lutheran University',
'California Miramar University',
'California Polytechnic State University',
'California State University',
'California Institute of Technology',
'Canada College',
'College of the Canyons',
'California College of the Arts',
'California Community Colleges Chanellors Office',
'City College of San Francisco',
'Cerritos College',
'Cerro Coso Community College',
'Claremont Graduate University',
'Chaffey College',
'Chapman University',
'California Institute of Integral Studies',
'Citrus College',
'The Claremont Colleges',
'Claremont McKenna College',
'Copper Mountain College',
'Cogswell Polytechnical College',
'College of San Mateo',
'College of the Desert',
'El Camino College Compton Center',
'Contra Costa College',
'College of the Sequoias',
'Crafton Hills College',
'California State University Bakersfield',
'California State University Channel Islands',
'California State University Dominguez Hills',
'California State University East Bay',
'Fresno State',
'California State University Long Beach',
'California State University Monterey Bay',
'California State University Northridge',
'California State Polytechnic University Pomona',
'California State University Sacramento',
'California State University San Bernardino',
'California State University San Marcos',
'California State University Stanislaus',
'Cuesta College',
'Cuyamaca College',
'California Western School of Law San Diego',
'Cypress College',
'DeAnza College',
'San Joaquin Delta College',
'Dominican University of California',
'Dominican School of Philosophy and Theology',
'Diablo Valley College',
'East Los Angeles College',
'El Camino College',
'Expression College',
'Foothill-De Anza Community College District',
'Fashion Institute of Design & Merchandising',
'Fielding Graduate University',
'Foothill College',
'Fresno Pacific University',
'Fresno City College',
'Frederick Taylor University',
'Fullerton College',
'Fuller Theological Seminary',
'California State University Fullerton',
'Gavilan College',
'Golden Gate Baptist Theological Seminary',
'Glendale Community College',
'Gnomon School of Visual Effects',
'Columbia College',
'Golden West College',
'Grossmont College',
'Allan Hancock College',
'Hartnell College',
'Henley-Putnam University',
'Harvey Mudd College',
'Holy Names University',
'Humboldt State University',
'Humphreys College',
'Imperial Valley College',
'International Sports Sciences Association',
'International Technological University',
'Irvine Valley College',
'William Jessup University',
'John F. Kennedy University',
'Keck Graduate Institute',
'Mount Saint Marys College',
'Los Angeles Community College District',
'Los Angeles City College',
'Los Angeles Harbor College',
'Los Angeles Mission College',
'Laney College',
'Los Angeles Southwest College',
'La Sierra University',
'Las Positas College',
'Los Angeles Trade-Tech Community College',
'Laurus College',
'Los Angeles Valley College',
'University of La Verne',
'UCLA School of Law',
'Long Beach City College',
'Life Chiropractic College West',
'Loma Linda University',
'Loyola Marymount University',
'Los Medanos College',
'Los Rios Community College District',
'Lake Tahoe Community College',
'College of Marin',
'Marymount California University',
'The Masters College',
'Merced Community College',
'Mills College',
'MiraCosta College',
'Modesto Junior College',
'Mount San Jacinto College',
'Mount San Antonio College',
'Napa Valley College',
'Notre Dame de Namur University',
'NewSchool of Architecture and Design',
'Norco College',
'Naval Postgraduate School',
'Ohlone College',
'Orange Coast College',
'Otis College of Art and Design',
'Occidental College',
'University of the Pacific',
'Pacific College of Oriental Medicine',
'Palomar College',
'Pasadena City College',
'Pepperdine University',
'Peralta Community College District',
'Pierce College',
'Pitzer College',
'Pacific Lutheran Theological Seminary',
'Point Loma Nazarene University',
'Pomona College',
'Porterville College',
'Pacific School of Religion',
'Riverside City College',
'Riverside Community College District',
'University of Redlands',
'College of the Redwoods',
'Rio Hondo College',
'Rosemead College',
'Santa Ana College',
'Saddleback College',
'University of San Diego',
'Santa Rosa Junior College',
'Santa Barbara City College',
'School of Continuing Education',
'Scripps College',
'Santa Clara University',
'Southern California University of Health Sciences',
'San Diego City College',
'San Diego Mesa College',
'San Diego State University',
'San Francisco State University',
'Shasta College',
'The Institute of Buddhist Studies',
'Sierra College',
'Simpson University',
'College of the Siskiyous',
'San Jose State University',
'Starr King School for the Ministry',
'Skyline College',
'Santa Monica College',
'San Mateo County Community College',
'Soka University of America',
'Solano Community College',
'Sonoma State University',
'Stanford University',
'Saint Marys College',
'Taft College',
'Touro University California',
'University of California Davis',
'University of California Hastings College of the Law',
'University of California Irvine',
'University of California Los Angeles',
'University of California Los Angeles Extension',
'University of California Merced',
'University of California',
'University of California Press',
'University of California Riverside',
'University of California Santa Barbara',
'University of California Santa Cruz',
'University of California Santa Cruz Silicon Valley Extension',
'University of California San Diego',
'University of California San Francisco',
'University of California',
'University of the Pacific',
'University of Southern California',
'University of San Francisco',
'San Bernardino Valley College',
'Ventura College',
'Victor Valley College',
'West Coast Baptist College',
'Western University of Health Sciences',
'Westmont College',
'West Valley College',
'West Hills Community College District',
'Whittier College',
'West Los Angeles College',
'Yuba Community College District',
'Yosemite Community College District',
'Unitek College',
'Vanguard University',
'Southwestern College',
'Monterey Institute of International Studies',
'Adams State University',
'Auraria Higher Education Center',
'Aims Community College',
'Arapahoe Community College',
'Community College of Aurora',
'Community College of Denver',
'Colorado Heights University',
'University of Colorado Boulder',
'Colorado College',
'Colorado Mesa University',
'Colorado State University',
'Colorado State University-Pueblo',
'University of Denver',
'Fort Lewis College',
'Front Range Community College',
'Jones International University',
'Colorado School of Mines',
'Metropolitan State University of Denver',
'Naropa University',
'Pikes Peak Community College',
'Pueblo Community College',
'Redstone College',
'Regis University',
'University of the Rockies',
'Red Rocks Community College',
'William Howard Taft University',
'University Corporation for Atmospheric Research',
'University of Colorado Colorado Springs',
'University of Colorado Denver',
'University of Northern Colorado',
'University of Colorado',
'Western State Colorado University',
'Albertus Magnus College',
'Asnuntuck Community College',
'Connecticut College',
'Eastern Connecticut State University',
'Fairfield University',
'Goodwin College',
'University of Hartford',
'Hartford Seminary',
'University of New Haven',
'Queens University of Charlotte',
'Quinebaug Valley Community College',
'Sacred Heart University',
'Southern Connecticut State University',
'Three Rivers Community College',
'Trinity College',
'Tunxis Community College',
'University of Connecticut Health Center',
'University of Connecticut',
'University of Saint Joseph Connecticut',
'Western Connecticut State University',
'Wesleyan University',
'Yale University',
'American University',
'Carnegie Institution for Science',
'The Catholic University of America',
'Gallaudet University',
'Georgetown University',
'The George Washington University',
'Howard University',
'Johns Hopkins School of Advanced International Studies',
'University of California Washington Center',
'University of the District of Columbia',
'Delaware State University',
'Delaware Technical Community College',
'Goldey-Beacom College',
'University of Delaware',
'Wesley College',
'Wilmington University',
'Carlos Albizu University',
'Acupuncture Massage College',
'Atlantic Institute of Oriental Medicine',
'Barry University',
'Broward College',
'College of Central Florida',
'Chipola College',
'Bethune-Cookman University',
'Dade Medical College',
'Daytona State College',
'Eckerd College',
'Edison State College',
'Embry-Riddle Aeronautical University',
'Everglades University',
'Florida Atlantic University',
'Florida Gulf Coast University',
'Florida Institute of Technology',
'Florida International University',
'Flagler College',
'Florida Southern College',
'Florida National University',
'Florida State College at Jacksonville',
'Florida State University',
'Gulf Coast State College',
'Hillsborough Community College',
'Jacksonville University',
'Keiser University',
'Loraines Academy Incorporated',
'Lake Sumter State College',
'Lynn University',
'Millennia Atlantic University',
'Miami Dade College',
'University of Miami',
'Miami International University of Art and Design',
'New College of Florida',
'North Florida Community College',
'Nova Southeastern University',
'National University of Health Sciences',
'Northwest Florida State College',
'Palm Beach State College',
'Palm Beach Atlantic University',
'Pensacola State College',
'Pasco-Hernando State College',
'Ringling College of Art and Design',
'Rollins College',
'Saint Leo University',
'State College of Florida',
'Seminole State College of Florida',
'Santa Fe College',
'South Florida State College',
'Space Coast Health Institute',
'Saint Petersburg College',
'Stetson University',
'Saint Thomas University',
'Saint Vincent de Paul Regional Seminary',
'Traviss Career Center',
'University of Central Florida',
'University of Florida',
'University of North Florida',
'University of South Florida',
'University of South Florida Sarasota-Manatee',
'University of South Florida Saint Petersburg',
'University of Tampa',
'University of West Florida',
'Valencia College',
'Warner University',
'Webber International University',
'Agnes Scott College',
'Albany Technical College',
'Armstrong Atlantic State University',
'Atlanta Technical College',
'Atlanta Metropolitan State College',
'Berry College',
'Carver College',
'Child Care Education Institute',
'Central Georgia Technical College',
'Clayton State University',
'Columbus State University',
'Columbus Technical College',
'Covenant College',
'Dalton State',
'Darton State College',
'East Georgia State College',
'Emory University',
'Georgia Institute of Technology',
'Georgia College',
'Georgia Southern University',
'Georgia Gwinnett College',
'Georgia Perimeter College',
'Augusta University',
'Georgia State University',
'Georgia South Western State University',
'Interactive College of Technology',
'Atlantas John Marshall Law School',
'Kennesaw State University',
'Lanier Technical College',
'Life University',
'Mercer University',
'Middle Georgia State College',
'Morehouse College',
'Morehouse School of Medicine',
'North Georgia Technical College',
'Oglethorpe University',
'Okefenokee Technical College',
'Paine College',
'Pfeiffer University',
'Piedmont College',
'Reinhardt University',
'Savannah State University',
'Savannah College of Art and Design',
'Shorter University',
'Southeastern Technical College',
'Spelman College',
'Southern Polytechnic State University',
'Thomas University',
'University of Georgia',
'University of North Georgia',
'University System of Georgia',
'Valdosta State University',
'University of West Georgia',
'Wiregrass Georgia Technical College',
'Brigham Young University Hawaii',
'Chaminade University',
'University of Hawaii at Manoa',
'Mid-Pacific Institute',
'AIB College of Business',
'Central College',
'Coe College',
'Cornell College',
'Des Moines Area Community College',
'Dordt College',
'Drake University',
'Divine Word College',
'Eastern Iowa Community Colleges',
'Grinnell College',
'Hawkeye Community College',
'Iowa State University',
'Iowa Central Community College',
'Iowa Wesleyan College',
'Iowa Western Community College',
'Kaplan University',
'Kirkwood Community College',
'La James College',
'Loras College',
'Luther College',
'Maharishi University of Management',
'Northeast Iowa Community College',
'Palmer College of Chiropractic',
'Saint Ambrose University',
'Simpson College',
'Southwestern Community College',
'Univeristy of Iowa',
'Upper Iowa University',
'University of Northern Iowa',
'Wartburg College',
'Waldorf College',
'Boise State University',
'Brigham Young University Idaho',
'The College of Idaho',
'College of Southern Idaho',
'Idaho State University',
'University of Idaho',
'Augustana College',
'Aurora University',
'Benedictine University',
'Bradley University',
'City Colleges of Chicago',
'The University of Chicago Booth School of Business',
'College of Lake County',
'College of DuPage',
'Columbia College Chicago',
'Danville Area Community College',
'DePaul University',
'Dominican University',
'Eastern Illinois University',
'Elmhurst College',
'Governors State',
'Greenville College',
'The Hadley School for the Blind',
'Harper College',
'Heartland Community College',
'Illinois Central College',
'Illinois College of Optometry',
'Illinois Institute of Technology',
'University of Illinois at Urbana-Champaign',
'Illinois State University',
'Illinois Mathematics and Science Academy',
'Illinois Valley Community College',
'Illinois Wesleyan University',
'John A. Logan College',
'Joliet Junior College',
'The John Marshall Law School',
'Judson University',
'Kaskaskia College',
'Kankakee Community College',
'IIT Chicago-Kent College of Law',
'Kishwaukee College',
'Knox College',
'Lake Forest College',
'Lakeview College of Nursing',
'Lewis and Clark Community College',
'Lewis University',
'Lincoln Land Community College',
'Loyola University Chicago',
'Midwestern Career College',
'McHenry County College',
'McKendree University',
'Midwestern University',
'Monmouth College',
'Moraine Valley Community College',
'Morton College',
'Northeastern Illinois University',
'Northern Illinois University',
'National Louis University',
'North Park University',
'Northwestern University',
'Oakton Community College',
'Olivet Nazarene University',
'Chicago ORT Technical Institute',
'Parkland College',
'Prairie State College',
'Principia College',
'Resurrection University',
'Robert Morris University Illinois',
'Rockford University',
'Rock Valley College',
'Roosevelt University',
'Rosalind Franklin University',
'Saint Anthony College of Nursing',
'School of the Art Institute of Chicago',
'Saint Francis Medical Center College of Nursing',
'Shawnee Community College',
'Southeastern Illinois College',
'Southern Illinois University',
'Southern Illinois University Edwardsville',
'Spoon River College',
'South Suburban College',
'University of Saint Francis',
'Southwestern Illinois College',
'Saint Xavier University',
'Trinity Christian College',
'University of Chicago',
'University of Illinois at Chicago',
'University of Illinois',
'University of Illinois Springfield',
'University of Illinois at Urbana-Champaign',
'Waubonsee Community College',
'Wheaton College',
'Western Illinois University',
'Saint Johns College',
'Anabaptist Mennonite Biblical Seminary',
'Anderson University',
'Bethel College Indiana',
'Brown Mackie College',
'Ball State University',
'Butler University',
'DePauw University',
'Earlham College',
'University of Evansville',
'Goshen College',
'Grace College and Seminary',
'Hanover College',
'Harrison College',
'Holy Cross College',
'Indiana University',
'Indiana State University',
'Indiana Wesleyan University',
'Indiana University - Purdue University Fort Wayne',
'Indiana University',
'Indiana University Bloomington',
'Indiana University East',
'Indiana University Northwest',
'Indiana University - Purdue University Indianapolis',
'Indiana University Southeast',
'Indiana University South Bend',
'Ivy Tech Community College',
'Manchester University',
'Marian University Indianapolis',
'University of Notre Dame',
'Oakland City University',
'Purdue University North Central',
'Purdue University',
'Purdue University Calumet',
'Rose-Hulman Institute of Technology',
'Saint Marys College',
'Trine University',
'University of Indianapolis',
'University of Southern Indiana',
'Valparaiso University',
'Wabash College',
'Benedictine College',
'Butler Community College',
'Emporia State University',
'Fort Hays State University',
'Flint Hills Technical College',
'Fort Scott Community College',
'Garden City Community College',
'Hesston College',
'Highland Community College',
'Johnson County Community College',
'Kansas City Kansas Community College',
'Kansas State University',
'The University of Kansas',
'McPherson College',
'Neosho County Community College',
'Newman University',
'Pittsburg State University',
'Saint Paul School of Theology and Ministry',
'Sterling College',
'University of Saint Mary',
'Washburn University',
'Washburn University School of Law',
'Wichita State University',
'Asbury University',
'Bellarmine University',
'Berea College',
'Centre College',
'Eastern Kentucky University',
'Frontier Nursing University',
'Georgetown College',
'Kentucky Community and Technical College System',
'Kentucky Christian University',
'Kentucky State University',
'Lindsey Wilson College',
'The University of Louisville',
'Midway College',
'Morehead State University',
'Murray State University',
'Northern Kentucky University',
'The Southern Baptist Theological Seminary',
'Saint Catharine College',
'Sullivan University',
'University of the Cumberlands',
'Western Kentucky University',
'Bossier Parish Community College',
'Centenary College of Louisiana',
'Louisiana Tech University',
'Louisiana Culinary Institute',
'University of Louisiana Lafayette',
'Loyola University New Orleans',
'Louisiana State University',
'Louisiana State University - Eunice',
'LSU Health Sciences Center - New Orleans',
'LSU Health Sciences Center - New Orleans',
'Louisiana State University System',
'Nicholls State University',
'New Orleans Baptist Theological Seminary',
'Nunez Community College',
'Southeastern Louisiana University',
'Southern University',
'Tulane University',
'University of Louisiana at Monroe',
'University of New Orleans',
'Xavier University of Louisiana',
'Amherst College',
'Assumption College',
'Babson College',
'Boston College',
'Bentley University',
'Berklee College of Music',
'Berkshire Community College',
'The Boston Conservatory',
'Brandeis University',
'Bridgewater State University',
'Boston University',
'Cambridge College',
'Clark University',
'Curry College',
'Elms College',
'Emerson College',
'Emmanuel College',
'Endicott College',
'Fitchburg State University',
'Framingham State University',
'Gordon Conwell Theological Seminary',
'Gordon College',
'Hampshire College',
'Harvard University',
'Harvard Business School',
'College of the Holy Cross',
'Lesley University',
'Massachusetts Maritime Academy',
'Massachusetts Department of Higher Education',
'Massachusetts College of Art and Design',
'MassBay Community College',
'Marine Biological Laboratory',
'Merrimack Education Center',
'Merrimack College',
'MGH Institute of Health Professions',
'Milton Academy',
'Massachusetts Institute of Technology',
'Montserrat College of Art',
'Mount Ida College',
'Mount Holyoke College',
'Middlesex Community College',
'Middlesex School',
'North Bennet Street School',
'New England Law - Boston',
'Northeastern University',
'Olin College of Engineering',
'Salem State University',
'Simmons College',
'Smith College',
'Spa Tech Institute',
'Springfield College',
'Springfield Technical Community College',
'Suffolk University',
'Boston Architectural College',
'Tufts University',
'University of Massachusetts Amherst',
'University of Massachusetts Dartmouth',
'University of Massachusetts Medical School',
'University of Massachusetts',
'University of Massachusetts Boston',
'University of Massachusetts Lowell',
'Wellesley College',
'Wheaton College, Norton',
'Wheelock College',
'Williams College',
'Western New England University',
'Worcester State University',
'Worcester Polytechnic Institute',
'Anne Arundel Community College',
'Baltimore City Community College',
'Bowie State University',
'Carroll Community College',
'The Community College of Baltimore County',
'Chesapeake College',
'Coppin State University',
'College of Southern Maryland',
'Frederick Community College',
'Frostburg State University',
'Garrett College',
'Goucher College',
'Hagerstown Community College',
'Harford Community College',
'Hood College',
'Howard Community College',
'Johns Hopkins Bloomberg School of Public Health',
'Johns Hopkins University',
'Loyola University Maryland',
'Montgomery Blair High School',
'McDaniel College',
'Maryland Institute College of Art',
'Montgomery College',
'Mount Saint Marys University',
'Maryland University of Integrative Health',
'Prince Georges Community College',
'Salisbury University',
'Sojourner-Douglass College',
'Saint Marys College of Maryland',
'Saint James School',
'Towson University',
'University of Baltimore',
'University of Maryland College Park',
'University ofMaryland Baltimore County',
'University of Maryland Eastern Shore',
'University of Maryland University College',
'University System of Maryland',
'United States Naval Academy',
'Washington College',
'Wor-Wic Community College',
'Saint Johns College',
'Bates College',
'Bowdoin College',
'Central Maine Community College',
'College of the Atlantic',
'Colby College',
'Husson University',
'Maine Maritime Academy',
'Northern Maine Community College',
'Saint Josephs College',
'Southern Maine Community College',
'University of Maine',
'University of Maine Fort Kent',
'University of Maine at Presque Isle',
'University of New England',
'Unity College',
'York County Community College',
'University of Main at Augusta',
'Adrian College',
'Albion College',
'Alma College',
'Alpena Community College',
'Andrews University',
'Aquinas College',
'Baker College',
'Bay College',
'Calvin College',
'Central Michigan University',
'College for Creative Studies',
'Cornerstone University',
'Davenport University',
'Delta College',
'Douglas J. Aveda Institute',
'Eastern Michigan University',
'Ferris State University',
'Finlandia University',
'Grand Rapids Community College',
'Grand Valley State University',
'Henry Ford College',
'Hillsdale College',
'Hope College',
'Jackson College',
'Kettering University',
'Kalamazoo Valley Community College',
'Kalamazoo College',
'Lake Michigan College',
'Lansing Community College',
'Lake Superior State University',
'Lawrence Technological University',
'Macomb Community College',
'Marygrove College',
'Monroe County Community College',
'Michigan State University',
'Michigan Technological University',
'Northwestern Michigan College',
'Northern Michigan University',
'Oakland Univeristy',
'Oakland Community College',
'Saginaw Chippewa Tribal College',
'Saginaw Valley State University',
'University of Detroit Mercy',
'University of Michigan-Flint',
'University of Michigan',
'Wayne State',
'Washtenaw Community College',
'Western Michigan University',
'Alexandria Technical & Community College',
'Anoka-Ramsey Community College',
'Augsburg College',
'Bemidji State University',
'Bethel University',
'Carleton College',
'Century College',
'Central Lakes College',
'Concordia College',
'Crown College',
'College of Saint Benedict, Saint Johns University',
'Concordia University Saint Paul',
'The College of Saint Scholastica',
'Dakota County Technical College',
'Gustavus Adolphus College',
'Globe University',
'Hamline University',
'Inver Hills Community College',
'Institute of Production and Recording',
'Leech Lake Tribal College',
'Luther Seminary',
'Macalester College',
'McNally Smith College of Music',
'Mesabi Range College',
'Metropolitan State University',
'Minnesota State University Moorhead',
'Minnesota State University Mankato',
'North Hennepin Community College',
'Normandale Community College',
'Rasmussen College',
'Ridgewater College',
'Southwest Minnesota State University',
'Saint Marys University of Minnesota',
'South Central College',
'Saint Cloud State University',
'Saint Olaf College',
'University of Saint Thomas',
'University of Minnesota',
'United Theological Seminary of the Twin Cities',
'University of Northwestern Saint Paul',
'Walden University',
'Winona State Unviversity',
'Assemblies of God Theological Seminary',
'Aquinas Institute of Theology',
'A.T. Still University',
'Avila University',
'Columbia College',
'Central Methodist University',
'Crowder College',
'Culver-Stockton College',
'Drury University',
'Evangel University',
'Fontbonne University',
'Hannibal-LaGrange',
'Harris-Stowe State University',
'Jefferson College',
'Kansas City University of Medicine and Biosciences',
'Lincoln University',
'Lindenwood University',
'Linn State Technical College',
'Maryville University',
'Metropolitan Community College',
'Mineral Area College',
'Mizzou University of Missouri',
'Missouri State University',
'Missouri Valley College',
'Missouri Southern State University',
'Missouri University of Science and Technology',
'North Central Missouri College',
'Nazarene Theological Seminary',
'Northwest Missouri State University',
'Ozarks Technical Community College',
'Park University',
'Rockhurst University',
'Southwest Baptist University',
'South Central Career Center',
'Southeast Missouri State University',
'Saint Louis University',
'Saint Charles Community College',
'Saint Louis Community College',
'Truman State University',