-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathids.json
More file actions
1438 lines (1438 loc) · 72.6 KB
/
Copy pathids.json
File metadata and controls
1438 lines (1438 loc) · 72.6 KB
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
{
"major_ids": {
"Architecture and Related Services": 1,
"Area, Ethnic, Cultural, Gender, and Group Studies": 2,
"Biological and Biomedical Sciences": 3,
"Computer and Information Sciences and Support Services": 4,
"Education": 5,
"Engineering": 6,
"English Language and Literature/Letters": 7,
"Foreign Languages, Literatures, and Linguistics": 8,
"History": 9,
"Mathematics and Statistics": 10,
"Multi/Interdisciplinary Studies": 11,
"Natural Resources and Conservation": 12,
"Philosophy and Religious Studies": 13,
"Physical Sciences": 14,
"Psychology": 15,
"Public Administration and Social Service Professions": 16,
"Social Sciences": 17,
"Visual and Performing Arts": 18,
"Business, Management, Marketing, and Related Support Services": 19,
"Communication, Journalism, and Related Programs": 20,
"Liberal Arts and Sciences, General Studies and Humanities": 21,
"Agricultural/Animal/Plant/Veterinary Science and Related Fields": 22,
"Engineering/Engineering-related Technologies/Technicians": 23,
"Family and Consumer Sciences/Human Sciences": 24,
"Health Professions and Related Programs": 25,
"Legal Professions and Studies": 26,
"Military Technologies and Applied Sciences": 27,
"Theology and Religious Vocations": 28,
"Science Technologies/Technicians": 29,
"Homeland Security, Law Enforcement, Firefighting and Related Protective Services": 30,
"Communications Technologies/Technicians and Support Services": 31,
"Parks, Recreation, Leisure, Fitness, and Kinesiology": 32,
"Library Science": 33,
"Culinary, Entertainment, and Personal Services": 34,
"Transportation and Materials Moving": 35,
"Construction Trades": 36,
"Mechanic and Repair Technologies/Technicians": 37,
"Precision Production": 38
},
"program_ids": {
"Architectural and Building Sciences/Technology": 1,
"Architecture": 2,
"African-American/Black Studies": 3,
"East Asian Studies": 4,
"Near and Middle Eastern Studies": 5,
"Computational Biology": 6,
"Ecology and Evolutionary Biology": 7,
"Molecular Biology": 8,
"Neuroscience": 9,
"Computer Science": 10,
"Teacher Education and Professional Development, Specific Levels and Methods, Other": 11,
"Chemical Engineering": 12,
"Civil Engineering, General": 13,
"Electrical and Electronics Engineering": 14,
"Engineering, General": 15,
"Mechanical Engineering": 16,
"Operations Research": 17,
"English Language and Literature, General": 18,
"Classics and Classical Languages, Literatures, and Linguistics, General": 19,
"Comparative Literature": 20,
"French Language and Literature": 21,
"German Language and Literature": 22,
"Hispanic and Latin American Languages, Literatures, and Linguistics, General": 23,
"Linguistics": 24,
"Romance Languages, Literatures, and Linguistics, General": 25,
"Slavic Languages, Literatures, and Linguistics, General": 26,
"History and Philosophy of Science and Technology": 27,
"History, General": 28,
"Applied Mathematics, General": 29,
"Financial Mathematics": 30,
"Mathematics, General": 31,
"Multi-/Interdisciplinary Studies, Other": 32,
"Environmental Studies": 33,
"Philosophy": 34,
"Religion/Religious Studies": 35,
"Astrophysics": 36,
"Atmospheric Sciences and Meteorology, General": 37,
"Chemistry, General": 38,
"Geology/Earth Science, General": 39,
"Physics, General": 40,
"Experimental Psychology": 41,
"Research and Experimental Psychology, Other": 42,
"Public Policy Analysis, General": 43,
"Anthropology, General": 44,
"Demography and Population Studies": 45,
"Econometrics and Quantitative Economics": 46,
"Political Science and Government, General": 47,
"Sociology, General": 48,
"Art History, Criticism and Conservation": 49,
"Music, General": 50,
"City/Urban, Community, and Regional Planning": 51,
"Real Estate Development": 52,
"Biology/Biological Sciences, General": 53,
"Business/Commerce, General": 54,
"Management Science": 55,
"Management Sciences and Quantitative Methods, Other": 56,
"Digital Communication and Media/Multimedia": 57,
"Journalism, Other": 58,
"Mass Communication/Media Studies": 59,
"Computer and Information Sciences, General": 60,
"Aerospace, Aeronautical, and Astronautical/Space Engineering, General": 61,
"Bioengineering and Biomedical Engineering": 62,
"Chemical and Biomolecular Engineering": 63,
"Environmental/Environmental Health Engineering": 64,
"Materials Engineering": 65,
"Nuclear Engineering": 66,
"Systems Engineering": 67,
"Transportation and Highway Engineering": 68,
"Creative Writing": 69,
"Foreign Languages and Literatures, General": 70,
"Liberal Arts and Sciences/Liberal Studies": 71,
"Cognitive Science, General": 72,
"Mathematics and Computer Science": 73,
"Science, Technology and Society": 74,
"Geophysics and Seismology": 75,
"Meteorology": 76,
"Oceanography, Chemical and Physical": 77,
"Planetary Astronomy and Science": 78,
"Drama and Dramatics/Theatre Arts, General": 79,
"International Agriculture": 80,
"Architectural History and Criticism, General": 81,
"Landscape Architecture": 82,
"Sustainable Design/Architecture": 83,
"American/United States Studies/Civilization": 84,
"Caribbean Studies": 85,
"Ethnic, Cultural Minority, Gender, and Group Studies, Other": 86,
"Folklore Studies": 87,
"Gay/Lesbian Studies": 88,
"German Studies": 89,
"Russian Studies": 90,
"Russian, Central European, East European and Eurasian Studies": 91,
"South Asian Studies": 92,
"Ural-Altaic and Central Asian Studies": 93,
"Women's Studies": 94,
"Biochemistry": 95,
"Bioinformatics": 96,
"Biological and Biomedical Sciences, Other": 97,
"Biomedical Sciences, General": 98,
"Biophysics": 99,
"Biostatistics": 100,
"Biotechnology": 101,
"Cell Biology and Anatomy": 102,
"Cell/Cellular and Molecular Biology": 103,
"Cell/Cellular Biology and Histology": 104,
"Developmental Biology and Embryology": 105,
"Epidemiology": 106,
"Evolutionary Biology": 107,
"Genetics, General": 108,
"Genome Sciences/Genomics": 109,
"Immunology": 110,
"Medical Microbiology and Bacteriology": 111,
"Microbiological Sciences and Immunology, Other": 112,
"Microbiology and Immunology": 113,
"Neurobiology and Anatomy": 114,
"Pathology/Experimental Pathology": 115,
"Systematic Biology/Biological Systematics": 116,
"Virology": 117,
"Accounting": 118,
"Business Administration and Management, General": 119,
"Business/Corporate Communications, General": 120,
"Business/Managerial Economics": 121,
"Entrepreneurship/Entrepreneurial Studies": 122,
"Finance, General": 123,
"Investments and Securities": 124,
"Marketing/Marketing Management, General": 125,
"Non-Profit/Public/Organizational Management": 126,
"Organizational Behavior Studies": 127,
"Project Management": 128,
"Real Estate": 129,
"Research and Development Management": 130,
"Journalism": 131,
"Computer and Information Systems Security/Auditing/Information Assurance": 132,
"Computer Programming/Programmer, General": 133,
"Information Science/Studies": 134,
"Web/Multimedia Management and Webmaster": 135,
"Counselor Education/School Counseling and Guidance Services": 136,
"Curriculum and Instruction": 137,
"Education, General": 138,
"Education, Other": 139,
"Educational Evaluation and Research": 140,
"Educational Leadership and Administration, General": 141,
"Educational/Instructional Technology": 142,
"Higher Education/Higher Education Administration": 143,
"International and Comparative Education": 144,
"Learning Sciences": 145,
"Mathematics Teacher Education": 146,
"Multicultural Education": 147,
"Reading Teacher Education": 148,
"Secondary School Administration/Principalship": 149,
"Teacher Education and Professional Development, Specific Subject Areas, Other": 150,
"Urban Education and Leadership": 151,
"Computer Engineering, General": 152,
"Computer Software Engineering": 153,
"Engineering Physics/Applied Physics": 154,
"Engineering Science": 155,
"Engineering Design": 156,
"Nanotechnology": 157,
"American Literature (United States)": 158,
"Human Nutrition": 159,
"African Languages, Literatures, and Linguistics": 160,
"Ancient/Classical Greek Language and Literature": 161,
"Arabic Language and Literature": 162,
"Bosnian, Serbian, and Croatian Languages and Literatures": 163,
"Celtic Languages, Literatures, and Linguistics": 164,
"Chinese Language and Literature": 165,
"Classics and Classical Languages, Literatures, and Linguistics, Other": 166,
"Germanic Languages, Literatures, and Linguistics, Other": 167,
"Hebrew Language and Literature": 168,
"Hindi Language and Literature": 169,
"Indonesian/Malay Languages and Literatures": 170,
"Italian Language and Literature": 171,
"Japanese Language and Literature": 172,
"Korean Language and Literature": 173,
"Latin Language and Literature": 174,
"Middle/Near Eastern and Semitic Languages, Literatures, and Linguistics, General": 175,
"Modern Greek Language and Literature": 176,
"Polish Language and Literature": 177,
"Portuguese Language and Literature": 178,
"Russian Language and Literature": 179,
"Sanskrit and Classical Indian Languages, Literatures, and Linguistics": 180,
"Scandinavian Languages, Literatures, and Linguistics": 181,
"Spanish Language and Literature": 182,
"Swedish Language and Literature": 183,
"Thai Language and Literature": 184,
"Turkish Language and Literature": 185,
"Advanced General Dentistry": 186,
"Advanced/Graduate Dentistry and Oral Sciences, Other": 187,
"Behavioral Aspects of Health": 188,
"Bioethics/Medical Ethics": 189,
"Dental Clinical Sciences, General": 190,
"Dental Public Health and Education": 191,
"Dentistry": 192,
"Endodontics/Endodontology": 193,
"Environmental Health": 194,
"Health Services Administration": 195,
"Health/Health Care Administration/Management": 196,
"Implantology/Implant Dentistry": 197,
"International Public Health/International Health": 198,
"Medical Informatics": 199,
"Medical Science/Scientist": 200,
"Medicine": 201,
"Oral Biology and Oral and Maxillofacial Pathology": 202,
"Oral/Maxillofacial Surgery": 203,
"Orthodontics/Orthodontology": 204,
"Pediatric Dentistry/Pedodontics": 205,
"Periodontics/Periodontology": 206,
"Pre-Medicine/Pre-Medical Studies": 207,
"Prosthodontics/Prosthodontology": 208,
"Public Health Education and Promotion": 209,
"Public Health, General": 210,
"Public Health, Other": 211,
"Temporomandibular Disorders and Orofacial Pain": 212,
"American History (United States)": 213,
"Asian History": 214,
"European History": 215,
"History, Other": 216,
"Advanced Legal Research/Studies, General": 217,
"Law": 218,
"Legal Studies": 219,
"Humanities/Humanistic Studies": 220,
"Liberal Arts and Sciences, General Studies and Humanities, Other": 221,
"Applied Mathematics, Other": 222,
"Applied Statistics, General": 223,
"Computational Mathematics": 224,
"Statistics, General": 225,
"Strategic Intelligence": 226,
"Ancient Studies/Civilization": 227,
"Behavioral Sciences": 228,
"Classical, Ancient Mediterranean, and Near Eastern Studies and Archaeology": 229,
"Cultural Studies/Critical Theory and Analysis": 230,
"Historic Preservation and Conservation, Other": 231,
"Medieval and Renaissance Studies": 232,
"Museology/Museum Studies": 233,
"Natural Sciences": 234,
"Sustainability Studies": 235,
"Systems Science and Theory": 236,
"Energy and Environmental Policy": 237,
"Environmental/Natural Resources Management and Policy, General": 238,
"Natural Resources/Conservation, General": 239,
"Ethics": 240,
"Islamic Studies": 241,
"Philosophy and Religious Studies, General": 242,
"Astronomy": 243,
"Astronomy and Astrophysics, Other": 244,
"Atomic/Molecular Physics": 245,
"Chemical Physics": 246,
"Chemistry, Other": 247,
"Geological and Earth Sciences/Geosciences, Other": 248,
"Clinical Psychology": 249,
"Cognitive Psychology and Psycholinguistics": 250,
"Educational Psychology": 251,
"Psychology, General": 252,
"Social Psychology": 253,
"Education Policy Analysis": 254,
"Health Policy Analysis": 255,
"Public Administration": 256,
"Public Policy Analysis, Other": 257,
"Anthropology, Other": 258,
"Archeology": 259,
"Economics, General": 260,
"International Relations and Affairs": 261,
"National Security Policy Studies": 262,
"Physical and Biological Anthropology": 263,
"Political Science and Government, Other": 264,
"Social Sciences, General": 265,
"Divinity/Ministry": 266,
"Theology and Religious Vocations, Other": 267,
"Theology/Theological Studies": 268,
"Design and Applied Arts, Other": 269,
"Digital Arts": 270,
"Film/Cinema/Media Studies": 271,
"Fine/Studio Arts, General": 272,
"Music Performance, General": 273,
"Visual and Performing Arts, General": 274,
"Comparative and Laboratory Animal Medicine": 275,
"African Studies": 276,
"American Indian/Native American Studies": 277,
"Area Studies, Other": 278,
"Asian-American Studies": 279,
"Hispanic-American, Puerto Rican, and Mexican-American/Chicano Studies": 280,
"Latin American Studies": 281,
"Biochemistry, Biophysics and Molecular Biology, Other": 282,
"Cell Physiology": 283,
"Human/Medical Genetics": 284,
"Oncology and Cancer Biology": 285,
"Structural Biology": 286,
"Business Administration, Management and Operations, Other": 287,
"Business, Management, Marketing, and Related Support Services, Other": 288,
"Communication and Media Studies, Other": 289,
"Technical and Scientific Communication": 290,
"Biology Teacher Education": 291,
"Chemistry Teacher Education": 292,
"Earth Science Teacher Education": 293,
"Elementary Education and Teaching": 294,
"English/Language Arts Teacher Education": 295,
"Foreign Language Teacher Education": 296,
"French Language Teacher Education": 297,
"History Teacher Education": 298,
"Physics Teacher Education": 299,
"Social Science Teacher Education": 300,
"Spanish Language Teacher Education": 301,
"Engineering, Other": 302,
"Petroleum Engineering": 303,
"Engineering/Industrial Management": 304,
"English Language and Literature/Letters, Other": 305,
"Community Health and Preventive Medicine": 306,
"Medical/Clinical Assistant": 307,
"Physician Assistant": 308,
"Computational and Applied Mathematics": 309,
"Human Biology": 310,
"Natural Resources Conservation and Research, Other": 311,
"Philosophy and Religious Studies, Other": 312,
"Physics, Other": 313,
"Development Economics and International Development": 314,
"Urban Studies/Affairs": 315,
"Art/Art Studies, General": 316,
"Cinematography and Film/Video Production": 317,
"Industrial and Product Design": 318,
"Music Theory and Composition": 319,
"European Studies/Civilization": 320,
"Biochemistry and Molecular Biology": 321,
"Biomathematics, Bioinformatics, and Computational Biology, Other": 322,
"Pharmacology": 323,
"Physiology, General": 324,
"Computer and Information Sciences, Other": 325,
"Computer Programming, Specific Applications": 326,
"Health Professions and Related Clinical Sciences, Other": 327,
"Registered Nursing/Registered Nurse": 328,
"Mathematics, Other": 329,
"Intercultural/Multicultural and Diversity Studies": 330,
"Environmental Science": 331,
"Christian Studies": 332,
"Jewish/Judaic Studies": 333,
"Physical Sciences, General": 334,
"Bible/Biblical Studies": 335,
"Theological and Ministerial Studies, Other": 336,
"Acting": 337,
"Conducting": 338,
"Directing and Theatrical Production": 339,
"Graphic Design": 340,
"Keyboard Instruments": 341,
"Music, Other": 342,
"Photography": 343,
"Playwriting and Screenwriting": 344,
"Printmaking": 345,
"Sculpture": 346,
"Stringed Instruments": 347,
"Technical Theatre/Theatre Design and Technology": 348,
"Theatre Literature, History and Criticism": 349,
"Theatre/Theatre Arts Management": 350,
"Voice and Opera": 351,
"Veterinary Medicine": 352,
"Environmental Design/Architecture": 353,
"Asian Studies/Civilization": 354,
"Environmental Biology": 355,
"Accounting and Finance": 356,
"Actuarial Science": 357,
"E-Commerce/Electronic Commerce": 358,
"Insurance": 359,
"International Business/Trade/Commerce": 360,
"Management Information Systems, General": 361,
"Operations Management and Supervision": 362,
"Public Finance": 363,
"Retailing and Retail Operations": 364,
"Sales, Distribution, and Marketing Operations, General": 365,
"Transportation/Mobility Management": 366,
"Communication, General": 367,
"Artificial Intelligence": 368,
"Computer Systems Networking and Telecommunications": 369,
"Data Modeling/Warehousing and Database Administration": 370,
"Modeling, Virtual Environments and Simulation": 371,
"Adult and Continuing Education and Teaching": 372,
"Educational Statistics and Research Methods": 373,
"Junior High/Intermediate/Middle School Education and Teaching": 374,
"Science Teacher Education/General Science Teacher Education": 375,
"Secondary Education and Teaching": 376,
"Social and Philosophical Foundations of Education": 377,
"Social Studies Teacher Education": 378,
"Teaching English as a Second or Foreign Language/ESL Language Instructor": 379,
"Geological/Geophysical Engineering": 380,
"General Literature": 381,
"Professional, Technical, Business, and Scientific Writing": 382,
"East Asian Languages, Literatures, and Linguistics, General": 383,
"Romance Languages, Literatures, and Linguistics, Other": 384,
"Adult Health Nurse/Nursing": 385,
"Community Health Services/Liaison/Counseling": 386,
"Emergency Room/Trauma Nursing": 387,
"Family Practice Nurse/Nursing": 388,
"Genetic Counseling/Counselor": 389,
"Health Professions Education": 390,
"Health Services/Allied Health/Health Sciences, General": 391,
"Health/Medical Preparatory Programs, Other": 392,
"Maternal/Child Health and Neonatal Nurse/Nursing": 393,
"Nurse Anesthetist": 394,
"Nurse Midwife/Nursing Midwifery": 395,
"Nursing Administration": 396,
"Nursing Education": 397,
"Pediatric Nurse/Nursing": 398,
"Perioperative/Operating Room and Surgical Nurse/Nursing": 399,
"Psychiatric/Mental Health Nurse/Nursing": 400,
"Registered Nursing, Nursing Administration, Nursing Research and Clinical Nursing, Other": 401,
"Women's Health Nurse/Nursing": 402,
"Programs for Foreign Lawyers": 403,
"Mathematics and Statistics, Other": 404,
"Anthrozoology": 405,
"Computational Science": 406,
"Historic Preservation and Conservation, General": 407,
"International/Globalization Studies": 408,
"Logic": 409,
"Philosophy, Other": 410,
"Hydrology and Water Resources Science": 411,
"Applied Psychology": 412,
"Counseling Psychology": 413,
"Developmental and Child Psychology": 414,
"Psychology, Other": 415,
"Social Work": 416,
"Applied Economics": 417,
"Criminology": 418,
"Geographic Information Science and Cartography": 419,
"Geography, Other": 420,
"Social Sciences, Other": 421,
"Design and Visual Communications, General": 422,
"Microbiology, General": 423,
"Neurobiology and Neurosciences, Other": 424,
"Engineering Mechanics": 425,
"Geochemistry": 426,
"Anatomy": 427,
"Ecology": 428,
"Infectious Disease and Global Health": 429,
"Marine Biology and Biological Oceanography": 430,
"Molecular Genetics": 431,
"Toxicology": 432,
"Political Communication": 433,
"Teacher Education, Multiple Levels": 434,
"Engineering/Engineering-Related Technologies/Technicians, Other": 435,
"Environmental/Environmental Engineering Technology/Technician": 436,
"Middle/Near Eastern and Semitic Languages, Literatures, and Linguistics, Other": 437,
"Cardiovascular Technology/Technologist": 438,
"Critical Care Nursing": 439,
"Health Information/Medical Records Administration/Administrator": 440,
"Nursing Practice": 441,
"Nursing Science": 442,
"Ophthalmic Technician/Technologist": 443,
"Palliative Care Nursing": 444,
"Physical Therapy/Therapist": 445,
"Legal Research and Advanced Professional Studies, Other": 446,
"Biological and Physical Sciences": 447,
"Multi-/Interdisciplinary Studies, General": 448,
"Forest Management/Forest Resources Management": 449,
"Materials Science": 450,
"Optics/Optical Sciences": 451,
"Science Technologies/Technicians, Other": 452,
"Political Economy": 453,
"Dance, General": 454,
"Fine Arts and Art Studies, Other": 455,
"Visual and Performing Arts, Other": 456,
"Ethnic Studies": 457,
"French Studies": 458,
"Italian Studies": 459,
"Latin American and Caribbean Studies": 460,
"Slavic Studies": 461,
"Molecular Medicine": 462,
"Molecular Pharmacology": 463,
"Bilingual and Multilingual Education": 464,
"Industrial Engineering": 465,
"Clinical and Translational Science": 466,
"Cybersecurity Defense Strategy/Policy": 467,
"Contemplative Studies/Inquiry": 468,
"Cultural Resource Management and Policy Analysis": 469,
"Data Science, General": 470,
"Theoretical and Mathematical Physics": 471,
"Research Methodology and Quantitative Methods": 472,
"Music Technology": 473,
"Musicology and Ethnomusicology": 474,
"Animal Genetics": 475,
"Population Biology": 476,
"Business Statistics": 477,
"Organizational Leadership": 478,
"Speech Communication and Rhetoric": 479,
"Radio and Television Broadcasting Technology/Technician": 480,
"Recording Arts Technology/Technician": 481,
"Education/Teaching of Individuals in Early Childhood Special Education Programs": 482,
"Education/Teaching of Individuals with Autism": 483,
"Education/Teaching of Individuals with Multiple Disabilities": 484,
"Education/Teaching of Individuals with Specific Learning Disabilities": 485,
"Education/Teaching of the Gifted and Talented": 486,
"Music Teacher Education": 487,
"Special Education and Teaching, General": 488,
"Mechatronics, Robotics, and Automation Engineering": 489,
"Clinical Research Coordinator": 490,
"Maternal and Child Health": 491,
"Medical Illustration/Medical Illustrator": 492,
"Mental and Social Health Services and Allied Professions, Other": 493,
"Mental Health Counseling/Counselor": 494,
"Occupational Health and Industrial Hygiene": 495,
"General Studies": 496,
"Intelligence, General": 497,
"Signal/Geospatial Intelligence": 498,
"Gerontology": 499,
"Physical Sciences, Other": 500,
"Music History, Literature, and Theory": 501,
"Architecture and Related Services, Other": 502,
"Botany/Plant Biology, Other": 503,
"Cell/Cellular Biology and Anatomical Sciences, Other": 504,
"Accounting and Related Services, Other": 505,
"Accounting Technology/Technician and Bookkeeping": 506,
"Human Resources Management/Personnel Administration, General": 507,
"Labor and Industrial Relations": 508,
"Communication, Journalism, and Related Programs, Other": 509,
"Health Communication": 510,
"Radio and Television": 511,
"Radio, Television, and Digital Communication, Other": 512,
"Sports Communication": 513,
"Computer and Information Sciences and Support Services, Other": 514,
"Manufacturing Engineering": 515,
"Mechanical/Mechanical Engineering Technology/Technician": 516,
"Robotics Technology/Technician": 517,
"Writing, General": 518,
"Human Development, Family Studies, and Related Services, Other": 519,
"East Asian Languages, Literatures, and Linguistics, Other": 520,
"Audiology/Audiologist": 521,
"Audiology/Audiologist and Speech-Language Pathology/Pathologist": 522,
"Communication Sciences and Disorders, General": 523,
"Health and Medical Administrative Services, Other": 524,
"Health and Wellness, General": 525,
"Marriage and Family Therapy/Counseling": 526,
"Orthotist/Prosthetist": 527,
"Physical Therapy Assistant": 528,
"Speech-Language Pathology/Pathologist": 529,
"Legal Professions and Studies, Other": 530,
"Tax Law/Taxation": 531,
"Sport and Fitness Administration/Management": 532,
"Religion/Religious Studies, Other": 533,
"Community Psychology": 534,
"Industrial and Organizational Psychology": 535,
"Community Organization and Advocacy": 536,
"Geography": 537,
"Religious/Sacred Music": 538,
"Arts, Entertainment, and Media Management, General": 539,
"Documentary Production": 540,
"Dramatic/Theatre Arts and Stagecraft, Other": 541,
"Jazz/Jazz Studies": 542,
"Musical Theatre": 543,
"Regional Studies (U.S., Canadian, Foreign)": 544,
"Western European Studies": 545,
"Conservation Biology": 546,
"Construction Management, General": 547,
"Computer Software and Media Applications, Other": 548,
"Information Technology": 549,
"Information Technology Project Management": 550,
"Education/Teaching of Individuals with Emotional Disturbances": 551,
"Education/Teaching of Individuals with Intellectual Disabilities": 552,
"Education/Teaching of Individuals with Orthopedic and Other Physical Health Impairments": 553,
"Geotechnical and Geoenvironmental Engineering": 554,
"Mining and Mineral Engineering": 555,
"Hospital and Health Care Facilities Administration/Management": 556,
"Medical/Health Humanities": 557,
"Occupational Therapy/Therapist": 558,
"International Business, Trade, and Tax Law": 559,
"International Law and Legal Studies": 560,
"Library and Information Science": 561,
"Mathematical Statistics and Probability": 562,
"Business Analytics": 563,
"Climate Science": 564,
"Dispute Resolution": 565,
"Nutrition Sciences": 566,
"Exercise Science and Kinesiology": 567,
"Agricultural and Horticultural Plant Breeding": 568,
"Agricultural Animal Breeding": 569,
"Agricultural Business and Management, General": 570,
"Agricultural Economics": 571,
"Agriculture, General": 572,
"Agronomy and Crop Science": 573,
"Animal Sciences, General": 574,
"Food Science": 575,
"Horticultural Science": 576,
"Ornamental Horticulture": 577,
"Plant Sciences, General": 578,
"Veterinary Sciences/Veterinary Clinical Sciences, General": 579,
"Viticulture and Enology": 580,
"Animal Physiology": 581,
"Biometry/Biometrics": 582,
"Botany/Plant Biology": 583,
"Entomology": 584,
"Environmental Toxicology": 585,
"Neurobiology and Behavior": 586,
"Parasitology": 587,
"Plant Pathology/Phytopathology": 588,
"Zoology/Animal Biology": 589,
"Hotel/Motel Administration/Management": 590,
"Institutional Food Workers": 591,
"Agricultural Engineering": 592,
"Plastics and Polymer Engineering Technology/Technician": 593,
"Apparel and Textiles, General": 594,
"Foods, Nutrition, and Wellness Studies, General": 595,
"Housing and Human Environments, General": 596,
"Human Development and Family Studies, General": 597,
"Textile Science": 598,
"American/U.S. Law/Legal Studies/Jurisprudence": 599,
"Environmental/Natural Resource Economics": 600,
"Fashion/Apparel Design": 601,
"Fiber, Textile and Weaving Arts": 602,
"Molecular Biochemistry": 603,
"International Finance": 604,
"Marketing Research": 605,
"Computer Programming, Other": 606,
"Computer Systems Analysis/Analyst": 607,
"South Asian Languages, Literatures, and Linguistics, General": 608,
"Health/Medical Physics": 609,
"Securities Services Administration/Management": 610,
"International Policy Analysis": 611,
"International Economics": 612,
"Agricultural/Animal/Plant/Veterinary Science and Related Fields, Other": 613,
"Range Science and Management": 614,
"Architectural Technology/Technician": 615,
"Endocrinology": 616,
"Exercise Physiology and Kinesiology": 617,
"Vision Science/Physiological Optics": 618,
"Biochemical Engineering": 619,
"Electrical, Electronics, and Communications Engineering, Other": 620,
"Rhetoric and Composition": 621,
"Dutch/Flemish Language and Literature": 622,
"Foreign Languages, Literatures, and Linguistics, Other": 623,
"Optometry": 624,
"Topology and Foundations": 625,
"Peace Studies and Conflict Resolution": 626,
"Forest Sciences and Biology": 627,
"Forestry, General": 628,
"Natural Resources and Conservation, Other": 629,
"Wildlife, Fish and Wildlands Science and Management": 630,
"Buddhist Studies": 631,
"Scandinavian Studies": 632,
"Southeast Asian Studies": 633,
"Molecular Physiology": 634,
"Molecular Toxicology": 635,
"Labor Studies": 636,
"Computer Engineering, Other": 637,
"Structural Engineering": 638,
"Germanic Languages, Literatures, and Linguistics, General": 639,
"Linguistic, Comparative, and Related Language Studies and Services, Other": 640,
"Library Science, Other": 641,
"Mathematics and Statistics": 642,
"Statistics, Other": 643,
"Geography and Environmental Studies": 644,
"Atmospheric Sciences and Meteorology, Other": 645,
"Behavioral Neuroscience": 646,
"Music Management": 647,
"Architectural Studies": 648,
"Electrical and Computer Engineering": 649,
"Human Computer Interaction": 650,
"Chemical Technology/Technician": 651,
"Brass Instruments": 652,
"Percussion Instruments": 653,
"Woodwind Instruments": 654,
"Spanish and Iberian Studies": 655,
"Physical Chemistry": 656,
"Early Childhood Education and Teaching": 657,
"Education/Teaching of Individuals with Hearing Impairments Including Deafness": 658,
"Health Teacher Education": 659,
"Child Development": 660,
"Banking, Corporate, Finance, and Securities Law": 661,
"Applied Behavior Analysis": 662,
"Clinical Child Psychology": 663,
"Psychometrics and Quantitative Psychology": 664,
"Civil Engineering, Other": 665,
"Area, Ethnic, Cultural, Gender, and Group Studies, Other": 666,
"Epidemiology and Biostatistics": 667,
"Informatics": 668,
"Construction Engineering": 669,
"Energy Systems Engineering, General": 670,
"Laser and Optical Engineering": 671,
"Naval Architecture and Marine Engineering": 672,
"Polymer/Plastics Engineering": 673,
"Audio Engineering Technology/Technician": 674,
"Athletic Training/Trainer": 675,
"Clinical Laboratory Science/Medical Technology/Technologist": 676,
"Clinical Nutrition/Nutritionist": 677,
"Dental Hygiene/Hygienist": 678,
"Geriatric Nurse/Nursing": 679,
"Medicinal and Pharmaceutical Chemistry": 680,
"Pharmaceutical Sciences": 681,
"Pharmaceutics and Drug Design": 682,
"Pharmacy": 683,
"Pharmacy Administration and Pharmacy Policy and Regulatory Affairs": 684,
"Pharmacy, Pharmaceutical Sciences, and Administration, Other": 685,
"Public Health/Community Nurse/Nursing": 686,
"Earth Systems Science": 687,
"Financial Analytics": 688,
"Linguistics and Anthropology": 689,
"Philosophy, Politics, and Economics": 690,
"Sports, Kinesiology, and Physical Education/Fitness, General": 691,
"Polymer Chemistry": 692,
"Public Administration and Social Service Professions, Other": 693,
"Ceramic Arts and Ceramics": 694,
"Drawing": 695,
"Illustration": 696,
"Jewelry Arts": 697,
"Radiation Biology/Radiobiology": 698,
"Hospitality Administration/Management, General": 699,
"Information Resources Management": 700,
"Logistics, Materials, and Supply Chain Management": 701,
"International and Intercultural Communication": 702,
"Public Relations, Advertising, and Applied Communication": 703,
"Public Relations/Image Management": 704,
"Long Term Care Administration/Management": 705,
"Medical Radiologic Technology/Science - Radiation Therapist": 706,
"Crisis/Emergency/Disaster Management": 707,
"Energy, Environment, and Natural Resources Law": 708,
"Health Law": 709,
"Legal Administrative Assistant/Secretary": 710,
"Environmental Chemistry": 711,
"American Government and Politics (United States)": 712,
"Human Resources Management and Services, Other": 713,
"Kindergarten/Preschool Education and Teaching": 714,
"Allied Health Diagnostic, Intervention, and Treatment Professions, Other": 715,
"Dental Assisting/Assistant": 716,
"Movement Therapy and Movement Education": 717,
"Vocational Rehabilitation Counseling/Counselor": 718,
"School Psychology": 719,
"Medical Anthropology": 720,
"Entrepreneurial and Small Business Operations, Other": 721,
"Finance and Financial Management Services, Other": 722,
"Management Information Systems and Services, Other": 723,
"Computer Graphics": 724,
"Computer/Information Technology Services Administration and Management, Other": 725,
"Human-Centered Technology Design": 726,
"Biological/Biosystems Engineering": 727,
"Applied Engineering Technologies/Technicians": 728,
"CAD/CADD Drafting and/or Design Technology/Technician": 729,
"Electrical, Electronic, and Communications Engineering Technology/Technician": 730,
"Engineering Technologies/Technicians, General": 731,
"Engineering-Related Fields, Other": 732,
"Apparel and Textile Manufacture": 733,
"Language Interpretation and Translation": 734,
"Biopsychology": 735,
"Data Analytics, General": 736,
"Applied and Professional Ethics": 737,
"Materials Sciences, Other": 738,
"Costume Design": 739,
"Film/Video and Photographic Arts, Other": 740,
"Fine and Studio Arts Management": 741,
"Game and Interactive Media Design": 742,
"Intermedia/Multimedia": 743,
"Music Pedagogy": 744,
"Accounting and Business/Management": 745,
"Anesthesiologist Assistant": 746,
"Comparative Law": 747,
"Economics and Computer Science": 748,
"Sports, Kinesiology, and Physical Education/Fitness, Other": 749,
"Pastoral Counseling and Specialized Ministries, Other": 750,
"Pastoral Studies/Counseling": 751,
"Religious Education": 752,
"Youth Ministry": 753,
"Purchasing, Procurement/Acquisitions and Contracts Management": 754,
"Clinical Nurse Specialist": 755,
"Criminal Justice/Law Enforcement Administration": 756,
"Criminal Justice/Police Science": 757,
"Criminal Justice/Safety Studies": 758,
"Agricultural Business and Management, Other": 759,
"Agroecology and Sustainable Agriculture": 760,
"Animal Sciences, Other": 761,
"Food Science and Technology, Other": 762,
"Plant Sciences, Other": 763,
"Soil Science and Agronomy, General": 764,
"Soil Sciences, Other": 765,
"Veterinary Preventive Medicine, Epidemiology, and Public Health": 766,
"Animal Behavior and Ethology": 767,
"Pharmacology and Toxicology": 768,
"Physiology, Pathology, and Related Sciences, Other": 769,
"Agricultural Teacher Education": 770,
"Health Occupations Teacher Education": 771,
"Physical Education Teaching and Coaching": 772,
"Textile Sciences and Engineering": 773,
"Forensic Science and Technology": 774,
"Marine Sciences": 775,
"Urban Forestry": 776,
"Chinese Studies": 777,
"Japanese Studies": 778,
"Ecology, Evolution, Systematics and Population Biology, Other": 779,
"Computer Hardware Engineering": 780,
"Literature, Other": 781,
"Clinical and Industrial Drug Development": 782,
"Substance Abuse/Addiction Counseling": 783,
"Health/Medical Psychology": 784,
"Economics, Other": 785,
"Agricultural and Food Products Processing": 786,
"Plant Molecular Biology": 787,
"Advertising": 788,
"Art Teacher Education": 789,
"College Student Counseling and Personnel Services": 790,
"Ocean Engineering": 791,
"Construction Engineering Technology/Technician": 792,
"Surveying Technology/Surveying": 793,
"Family and Community Services": 794,
"Dietetics/Dietitian": 795,
"Rehabilitation Science": 796,
"Fire Science/Fire-fighting": 797,
"Fishing and Fisheries Sciences and Management": 798,
"Parks, Recreation, and Leisure Facilities Management, General": 799,
"Environmental Psychology": 800,
"Interior Design": 801,
"Pharmacology and Toxicology, Other": 802,
"Restaurant/Food Services Management": 803,
"Taxation": 804,
"Broadcast Journalism": 805,
"Educational Administration and Supervision, Other": 806,
"Telecommunications Engineering": 807,
"Water Resources Engineering": 808,
"Biomedical Technology/Technician": 809,
"Civil Engineering Technologies/Technicians": 810,
"Rhetoric and Composition/Writing Studies, Other": 811,
"Industrial and Physical Pharmacy and Cosmetic Sciences": 812,
"Pharmaceutical Marketing and Management": 813,
"Pharmacoeconomics/Pharmaceutical Economics": 814,
"Arts and Entertainment Law": 815,
"Aeronautics/Aviation/Aerospace Science and Technology, General": 816,
"Financial Planning and Services": 817,
"Organizational Communication, General": 818,
"Science, Technology, Engineering, and Mathematics (STEM) Educational Methods": 819,
"Architectural Engineering": 820,
"Family and Consumer Sciences/Human Sciences, General": 821,
"Theatre and Dance": 822,
"Pre-Architecture Studies": 823,
"Occupational Safety and Health Technology/Technician": 824,
"Data Science, Other": 825,
"International Relations and National Security Studies, Other": 826,
"Applied Linguistics": 827,
"Forensic Psychology": 828,
"Irish Studies": 829,
"Meeting and Event Planning": 830,
"Tourism and Travel Services Management": 831,
"Publishing": 832,
"Animation, Interactive Technology, Video Graphics, and Special Effects": 833,
"Web Page, Digital/Multimedia and Information Resources Design": 834,
"English Literature (British and Commonwealth)": 835,
"Art Therapy/Therapist": 836,
"Cyber/Electronic Operations and Warfare": 837,
"Acoustics": 838,
"Aquatic Biology/Limnology": 839,
"Communication Disorders Sciences and Services, Other": 840,
"Agricultural and Extension Education Services": 841,
"Agricultural Communication/Journalism": 842,
"Animal Health": 843,
"Veterinary Pathology and Pathobiology": 844,
"Digital Marketing": 845,
"German Language Teacher Education": 846,
"Latin Teacher Education": 847,
"Technical Teacher Education": 848,
"Pre-Engineering": 849,
"Parks, Recreation, and Leisure Studies": 850,
"Crafts/Craft Design, Folk Art and Artisanry": 851,
"Painting": 852,
"Agricultural Mechanization, General": 853,
"Agricultural Production Operations, General": 854,
"Crop Production": 855,
"Dairy Husbandry and Production": 856,
"Dairy Science": 857,
"Poultry Science": 858,
"Turf and Turfgrass Management": 859,
"Disability Studies": 860,
"Plant Genetics": 861,
"Apparel and Textiles, Other": 862,
"Consumer Economics": 863,
"Dance Therapy/Therapist": 864,
"Dietetics and Clinical Nutrition Services, Other": 865,
"Health Professions Education, Ethics, and Humanities, Other": 866,
"Water, Wetlands, and Marine Resources Management": 867,
"Rural Sociology": 868,
"Educational Assessment, Testing, and Measurement": 869,
"Veterinary Infectious Diseases": 870,
"Energy Systems Engineering, Other": 871,
"Manufacturing Engineering Technology/Technician": 872,
"Pre-Occupational Therapy Studies": 873,
"Interior Architecture": 874,
"Canadian Studies": 875,
"Korean Studies": 876,
"Genetics, Other": 877,
"Auditing": 878,
"Business and Innovation/Entrepreneurship Teacher Education": 879,
"Drama and Dance Teacher Education": 880,
"Family and Consumer Sciences/Home Economics Teacher Education": 881,
"Geography Teacher Education": 882,
"Psychology Teacher Education": 883,
"Special Education and Teaching, Other": 884,
"Speech Teacher Education": 885,
"Technology Teacher Education/Industrial Arts Teacher Education": 886,
"Ceramic Sciences and Engineering": 887,
"Forest Engineering": 888,
"Metallurgical Engineering": 889,
"Ancient Near Eastern and Biblical Languages, Literatures, and Linguistics": 890,
"Danish Language and Literature": 891,
"Norwegian Language and Literature": 892,
"Uralic Languages, Literatures, and Linguistics": 893,
"Clinical/Medical Social Work": 894,
"Emergency Medical Technology/Technician (EMT Paramedic)": 895,
"Rehabilitation and Therapeutic Professions, Other": 896,
"Corrections and Criminal Justice, Other": 897,
"Forest Resources Production and Management": 898,
"Forestry, Other": 899,
"Wood Science and Wood Products/Pulp and Paper Technology/Technician": 900,
"Atmospheric Chemistry and Climatology": 901,
"Human Services, General": 902,
"Social Work, Other": 903,
"Youth Services/Administration": 904,
"Cultural Anthropology": 905,
"Banking and Financial Support Services": 906,
"Hospitality Administration/Management, Other": 907,
"International Marketing": 908,
"Marketing, Other": 909,
"Public Relations, Advertising, and Applied Communication, Other": 910,
"Data Processing and Data Processing Technology/Technician": 911,
"Culinary Arts and Related Services, Other": 912,
"Educational Assessment, Evaluation, and Research, Other": 913,
"Student Counseling and Personnel Services, Other": 914,
"Teaching English or French as a Second or Foreign Language, Other": 915,
"Computer Engineering Technologies/Technicians, Other": 916,
"Child Care and Support Services Management": 917,
"Clinical/Medical Laboratory Science and Allied Professions, Other": 918,
"Clinical/Medical Laboratory Technician": 919,
"Medical Illustration and Informatics, Other": 920,
"Pre-Dentistry Studies": 921,
"Radiologic Technology/Science - Radiographer": 922,
"Criminal Justice and Corrections, General": 923,
"Mathematical Economics": 924,
"Forensic Anthropology": 925,
"Arts, Entertainment, and Media Management, Other": 926,
"General Office Occupations and Clerical Services": 927,
"Selling Skills and Sales Operations": 928,
"Cloud Computing": 929,
"Computer Game Programming": 930,
"Computer Programming, Specific Platforms": 931,
"Computer Support Specialist": 932,
"System, Networking, and LAN/WAN Management/Manager": 933,
"Dietitian Assistant": 934,
"Health Information/Medical Records Technology/Technician": 935,
"Medical Administrative/Executive Assistant and Medical Secretary": 936,
"Medical Insurance Specialist/Medical Biller": 937,
"Pharmacy Technician/Assistant": 938,
"Corrections Administration": 939,
"Fire Services Administration": 940,
"Security and Loss Prevention Services": 941,
"Legal Assistant/Paralegal": 942,
"Legal Support Services, Other": 943,
"Data Analytics, Other": 944,
"Airline/Commercial/Professional Pilot and Flight Crew": 945,
"Pre-Veterinary Studies": 946,
"Veterinary Microbiology and Immunobiology": 947,
"Sales and Marketing Operations/Marketing and Distribution Teacher Education": 948,
"Trade and Industrial Teacher Education": 949,
"Family Resource Management Studies, General": 950,
"Foodservice Systems Administration/Management": 951,
"Housing and Human Environments, Other": 952,
"Iranian Languages, Literatures, and Linguistics": 953,
"Pre-Law Studies": 954,
"Mathematical Biology": 955,
"Land Use Planning and Management/Development": 956,
"Clinical, Counseling and Applied Psychology, Other": 957,
"Agribusiness/Agricultural Business Operations": 958,