-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcourses-clusters.json
1618 lines (1618 loc) · 227 KB
/
courses-clusters.json
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
{"clusters":[
{"id":"S1LIN007","title":"Syntax","dept":"LIN","division":"Social Sciences","description":"This series of courses considers in depth how sentences are formed from words, and the principles that govern them.","courses":[5,1,2,3,4]},
{"id":"S1WST004","title":"Gender and Public Policy","dept":"WST","division":"Social Sciences","description":"This cluster deals with gender and women's issues in the context of politics, law, and public policy.","courses":[6,7,8,9]},
{"id":"N1MAS002","title":"Music Cognition","dept":"MAS","division":"Natural Sciences and Engineering","description":"This cluster provides an introduction to cognitive science through the window of music perception. Students will learn fundamentals of musical structure and basic principles of cognition, then use this knowledge to explore how music is perceived and remembered.","courses":[10,11,12,13,14,15,16,17]},
{"id":"H1SA009","title":"Art Explorations","dept":"AAH","division":"Humanities","description":"This cluster provides an opportunity to explore contemporary art production. Two introductory level studios and one advanced level studio are required to complete this cluster. Note: advanced level courses maintain prerequisites. Introductory level courses are not open to seniors. Enrollment in a cluster does not guarantee enrollment in a course.","courses":[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]},
{"id":"H1WST004","title":"Gender and Sexuality","dept":"WST","division":"Humanities","description":"The focus of this cluster is the relationship between gender and sexuality.","courses":[62,63,64]},
{"id":"S1WST003","title":"Gender, Science and Health","dept":"WST","division":"Social Sciences","description":"This cluster focuses on the intersection of gender, science and human health. Students will explore the ways in which scientific and medical knowledge and institutions affect women and gender relations.","courses":[6,65,8,66]},
{"id":"S1AAS003","title":"Economics and the African Diaspora","dept":"AAS","division":"Social Sciences","description":"This cluster has been constructed to help deepen the knowledge of students concerning theoretical and empirical issues of development over time in Economics, with special reference to African and African-American economic development.","courses":[67,68,69,70]},
{"id":"S1AAS002","title":"African American Politics","dept":"AAS","division":"Social Sciences","description":"This Cluster is designed to deepen the knowledge of students concerning the African and African-American aspects of political science.","courses":[71,72,73,74,75,76,77,78,79,80]},
{"id":"S1WST002","title":"History and Theory of Feminism","dept":"WST","division":"Social Sciences","description":"This cluster provides an in-depth exploration of the history and theory of feminism, through a range of approaches, including philosophy, literary criticism, history, religion, and political theory.","courses":[6,7,8]},
{"id":"S1AAS004","title":"Race and Social Issues","dept":"AAS","division":"Social Sciences","description":"This cluster looks at issues from a double racial and social approach, emphasizing the need to consider race and class status as fundamental reading parameters in exploring texts, films and cultures.","courses":[81,82,83,84,85,74,68,79,71,86,87,88,89]},
{"id":"S1AAS005","title":"Global and African Diasporic Studies","dept":"AAS","division":"Social Sciences","description":"An exploration of topics and issues that are relevant to the knowledge of Africa and the African Diaspora (defined as peoples who can claim Africa as an important reference in their genealogy). This cluster emphasizes approaches that bridge existing gaps among different cultures, communities and countries that make up the African Diaspora.","courses":[90,91,67,92,93,87,94,89]},
{"id":"S1AAS001","title":"Aspects of History","dept":"AAS","division":"Social Sciences","description":"This cluster is designed to help deepen the knowledge of students concerning the African and African-American aspects of the discipline of history.","courses":[90,95,81,91,82,67,83,96,97,84,70,98]},
{"id":"S1AAS006","title":"Representation and Leadership","dept":"AAS","division":"Social Sciences","description":"This cluster explores emblematic figures who inspire social and political movements in the United States, Africa, and the African Diaspora.","courses":[85,74,99,86,100,88]},
{"id":"S1ANT001","title":"The Interpretation of Culture","dept":"ANT","division":"Social Sciences","description":"The concept of culture as a system of symbols and meanings which give insight into the unity and diversity of humanity.","courses":[101,102,103,104,105,106,107,108,109]},
{"id":"S1ANT009","title":"Medical Anthropology","dept":"ANT","division":"Social Sciences","description":"A cross cultural and critical examination of health, illness and medical systems.","courses":[101,110,111]},
{"id":"S1ANT002","title":"Social Analysis","dept":"ANT","division":"Social Sciences","description":"An introduction to the way anthropologists study enduring social institutions such as states, nations, markets and kinship groups; and systems of stratification imposed on individuals by society such as class, race and gender.","courses":[111,112,113,104,114,106,115,101,110,116]},
{"id":"S1ANT005","title":"Anthropology of Globalization","dept":"ANT","division":"Social Sciences","description":"The anthropological study of global political, economic and cultural formations.","courses":[101,116,117,112,102,104,105,114,118,119,106,115]},
{"id":"S1WST001","title":"Gender and Social Issues","dept":"WST","division":"Social Sciences","description":"This cluster introduces students to a range of approaches to gender, primarily based in the social sciences, and covering a variety of cultures.","courses":[6,62,8,9,120]},
{"id":"H1WST001","title":"Race and Gender","dept":"WST","division":"Humanities","description":"This cluster focuses on the intersection of race and gender, with special emphasis on African-American history, literature, and writing.","courses":[6,121,122,123,124,125,126]},
{"id":"S1ASL001","title":"Deaf Culture Studies","dept":"ASL","division":"Social Sciences","description":"Literature, history, and culture of the American Deaf community. All courses are taught in ASL and require intermediate-level proficiency in ASL before entering. Students who have taken ASL outside of the UR must be approved for entry into their first 200: -level ASL course.","courses":[127,128,129]},
{"id":"N1BCS008","title":"Neurobiology","dept":"BCS","division":"Natural Sciences and Engineering","description":"An introduction to the biology of the brain and the neural mechanisms underlying behavior.","courses":[130,131,132,133,134,135,136,137,138,139]},
{"id":"N1BCS009","title":"Neuropsychology","dept":"BCS","division":"Natural Sciences and Engineering","description":"An introduction to the biological mechanisms that underlie behavior with special emphasis on abnormal behavior.","courses":[11,134,138]},
{"id":"N1BCS001","title":"Mind and Brain","dept":"BCS","division":"Natural Sciences and Engineering","description":"A general introduction to perception, cognition, learning, memory, and development, considering both the nature of these processes and the brain mechanisms that underlie them. Due to overlap restrictions, this cluster is not available to Psychology majors.","courses":[11,12,140,141,142,143,133,134,136,144]},
{"id":"N1BCS002","title":"Language and Cognition","dept":"BCS","division":"Natural Sciences and Engineering","description":"An introduction to the mental processes involved in human language and cognition.","courses":[141,142,145,143,146,147,148,149,144,12]},
{"id":"N1BCS006","title":"Language and Cognitive Development","dept":"BCS","division":"Natural Sciences and Engineering","description":"An introduction to the development of language and cognition and their underlying biological mechanisms.","courses":[11,145,146]},
{"id":"N1BCS003","title":"The Senses","dept":"BCS","division":"Natural Sciences and Engineering","description":"An introduction to the human senses, particularly vision and hearing, covering both the basic sensory processes and higher-level perceptual ones.","courses":[11,140,150,133,151,137,152]},
{"id":"N1BCS007","title":"Biology and Behavior","dept":"BCS","division":"Natural Sciences and Engineering","description":"An introduction to animal behavior and its underlying biological and evolutionary mechanisms.","courses":[11,143,136,153]},
{"id":"N1BCS004","title":"Mind, Brain, and Development","dept":"BCS","division":"Natural Sciences and Engineering","description":"An introduction to the brain and cognitive processes, with a special emphasis on their development. Due to overlap restrictions, this cluster is not available to Psychology majors.","courses":[11,145,12]},
{"id":"N1BCS005","title":"Perception and Development","dept":"BCS","division":"Natural Sciences and Engineering","description":"An introduction to perception, cognition, their development, and their underlying brain mechanisms.","courses":[11,12,140,145]},
{"id":"N1BIO002","title":"Biological Principles","dept":"BIO","division":"Natural Sciences and Engineering","description":"These courses provide students with an overview of the principles of biology.","courses":[154,130,131,155,156,157,158,159,160,161,162,153,163]},
{"id":"N4BME001","title":"Biomedical Engineering","dept":"BME","division":"Natural Sciences and Engineering","description":"Biomedical engineering combines the disciplines of engineering, design, and biological sciences to study, detect, measure, and ultimately improve the performance of human or animal bodies. This cluster will expose the students to the principal driving forces involved in understanding the functions of the human body or its parts. Note: this cluster requires 13 credits.","courses":[164,165,166,167,168]},
{"id":"N4CHE001","title":"Green Engineering","dept":"CHE","division":"Natural Sciences and Engineering","description":"This cluster exposes students to topics related to the analysis of contemporary environmental issues and the role of chemical engineers in addressing these concerns.","courses":[169,170,171,172,173]},
{"id":"N1CHM002","title":"Chemistry and the Physical World","dept":"CHM","division":"Natural Sciences and Engineering","description":"This cluster provides a comprehensive introduction to chemistry and concludes the sequence with a broad overview of physics.","courses":[174,175,176,177,178,179,180,181,182]},
{"id":"N1CHM003","title":"Chemistry and Life Science","dept":"CHM","division":"Natural Sciences and Engineering","description":"This cluster provides a comprehensive introduction to chemistry and concludes the sequence with a general course in biology.","courses":[174,175,176,177,154,157,130,131]},
{"id":"N1CHM006","title":"Chemistry and Reason","dept":"CHM","division":"Natural Sciences and Engineering","description":"This cluster provides a comprehensive introduction to chemistry and concludes the sequence with a formal approach to reasoning presented in a philosophy course.","courses":[174,175,176,177,183,184,185,186]},
{"id":"N1CHM001","title":"Chemical Sciences","dept":"CHM","division":"Natural Sciences and Engineering","description":"This cluster provides a comprehensive introduction to the chemical sciences and includes both lecture material and laboratory experience. The cluster is then completed with an additional course in an advanced area of chemistry chosen by the student.","courses":[176,177,187,188,189,174,175]},
{"id":"N1CHM004","title":"Chemistry and the Environment","dept":"CHM","division":"Natural Sciences and Engineering","description":"This cluster provides a comprehensive introduction to chemistry and concludes the sequence with a general survey course in geology.","courses":[174,175,176,177,190,191,192,193,194]},
{"id":"N1CHM005","title":"Chemistry and the History of Science","dept":"CHM","division":"Natural Sciences and Engineering","description":"This cluster provides a comprehensive introduction to chemistry and concludes the sequence with a social science perspective of the impact of science on humanity.","courses":[174,175,176,177,195,196,197,198,199]},
{"id":"N4CSC001","title":"Foundations of Computer Science","dept":"CSC","division":"Natural Sciences and Engineering","description":"This is the main course sequence leading into the B.S. in Computer Science. It provides a thorough overview of foundational computer science techniques and issues.","courses":[200,201,202]},
{"id":"N4CSC002","title":"Business Computing","dept":"CSC","division":"Natural Sciences and Engineering","description":"Introduction to software packages, computing, and computerized business systems analysis. The mixture of programming skills, information systems and powerful analysis packages like EXCEL is a strong foundation for serious application.","courses":[203,204,205,200,206,207]},
{"id":"N4CSC004","title":"Computer Systems","dept":"CSC","division":"Natural Sciences and Engineering","description":"Covers the internal organization of computers and the relation to recent computer hardware developments, as well as to classical topics in computer software such as compilers and operation systems.","courses":[201,208,200,202]},
{"id":"N4CSC009","title":"Computer Science and Art","dept":"CSC","division":"Natural Sciences and Engineering","description":"This cluster introduces students to the use of computers in visual art and music.","courses":[203,204,205,200,209,210,211]},
{"id":"N4CSC010","title":"Computing for the Social Sciences","dept":"CSC","division":"Natural Sciences and Engineering","description":"This cluster introduces students to powerful software packages and fundamentals of computer programming. There is special emphasis on computation done in the context of the social sciences.","courses":[203,212,204,205,200,206,213,214,215,216,217,218]},
{"id":"N4CSC011","title":"Algorithms","dept":"CSC","division":"Natural Sciences and Engineering","description":"Emphasizes algorithmic thought, use of data structures, and the design and analysis of efficient algorithms.","courses":[219,168,220,221,204,200,222,223]},
{"id":"N4CSC013","title":"Human Computer Interaction","dept":"CSC","division":"Natural Sciences and Engineering","description":"The cluster teaches the program and design tools for Human Computer Interaction.","courses":[224,225,204,205,200,226]},
{"id":"N4CSC015","title":"Computational Problem Solving","dept":"CSC","division":"Natural Sciences and Engineering","description":"An introduction to problem solving through standard computer applications and computer programming. Suitable for students in a wide variety of disciplines.","courses":[221,204,205,200,212]},
{"id":"S1CSP008","title":"Personality Psychology","dept":"CSP","division":"Social Sciences","description":"This cluster focuses on how personality affects behavior in everyday ife. The emphasis is on \"normal\" as opposed to \"abnormal\" functioning.","courses":[227,228,229,230,231,232,233]},
{"id":"S1CSP009","title":"Social/Emotional Development","dept":"CSP","division":"Social Sciences","description":"This cluster examines psychological theories and research pertaining to children's social and emotional development. Courses pertain to normative and atypical development in children and adolescents and consider different developmental processes in varying social contexts.","courses":[229,234,235,236,237,238,239,240]},
{"id":"S1CSP007","title":"Psychology of Developmental Disabilites","dept":"CSP","division":"Social Sciences","description":"This cluster examines the characteristics and unique challenges of individuals with developmental disabilites and other forms of psychopathology. Courses deal with issues of diagnosis, treatment, and education, and include opportunities to apply knowledge in clinical and research settings.","courses":[241,236,242,243,244,245,246]},
{"id":"S1CSP004 ","title":"Social Psychology","dept":"CSP","division":"Social Sciences","description":"Social psychology examines how people perceive and interact with others. The courses in this cluster cover a wide range of social phenomena, including attitudes, social motivation, relationships, behavior in groups, and social cognition.","courses":[228,144,230,247,248,231,234]},
{"id":"S1CSP005","title":"Organizational Psychology","dept":"CSP","division":"Social Sciences","description":"This cluster examines how organizations function, with an emphasis on social factors, motivation, and personality. It may appeal to those who intend to pursue management as a profession.","courses":[249,228,227,230]},
{"id":"S1CSP006","title":"Psychology as a Social Science","dept":"CSP","division":"Social Sciences","description":"This cluster offers a sampling of social, personality, motivational, clinical, and other social science aspects of psychology. (Students who score 3 or higher on the AP Psychology exam may petition the Department to be exempted from PSY 101 and be permitted to take three courses from the approved list below.)","courses":[250,228,229,227,251,144,230,247,249,231,234,235,241,252,236]},
{"id":"S1CSP001","title":"Psychopathology","dept":"CSP","division":"Social Sciences","description":"This cluster deal with both child and adult mental disorders, focusing on their characteristics, causes and treatments. Also examined is the role of psychological factors in the development of healthy and unhealthy behavior, including medical disease and addiction.","courses":[241,227,253,254,252,236,134,138]},
{"id":"S1CSP003","title":"Psychology of Motivation","dept":"CSP","division":"Social Sciences","description":"This cluster explores the psychological forces that affect the energization and direction of human action. Courses are concerned with (1) research and theory about basic motivational principles, and (2) the utilization of these principles in various applied fields.","courses":[230,228,227,247,255,256,257]},
{"id":"H1WST003","title":"Gender and Literature","dept":"WST","division":"Humanities","description":"The courses in this cluster deal with gender and literature. Students will explore both the representation of women (and men) in writing, and the situation and practice of women authors.","courses":[6,258,124,124,259,260,121]},
{"id":"H1WST002","title":"Gender, Culture and Representation","dept":"WST","division":"Humanities","description":"This cluster enables students to study a broad range of representations of gender across the arts and media, as well as exploring the situation of women artists and writers.","courses":[6,261,262,258,125,63,263,264]},
{"id":"H1WST006","title":"Theory and Philosophy of Feminism","dept":"WST","division":"Humanities","description":"This cluster provides an in-depth exploration of the theory and philosophy of feminism.","courses":[6,265,7,266]},
{"id":"H1WST005","title":"LGBTQ Studies in the Humanities","dept":"WST","division":"Humanities","description":"Women's Studies cluster in art, literature, and related areas explored through the lens of Lesbian, Gay, Bisexual, Transgender, and Queer Studies","courses":[267,268,63,64,62,6,269,270,271]},
{"id":"N4ECE001","title":"Electronics and Programming for Music","dept":"ECE","division":"Natural Sciences and Engineering","description":"This cluster provides an introduction to the basics of computer programming and electronics, with special application to digital music.","courses":[272,273,274,204,200,275]},
{"id":"S1ECO009","title":"Introduction to Economics","dept":"ECO","division":"Social Sciences","description":"Provides an exposure to the two broad areas of economic analysis: macroeonomics - the study of aggregate economic behavior, and microeconomics - the study of individual/firm behavior.","courses":[276,277,278]},
{"id":"S1ECO007","title":"Macroeconomics","dept":"ECO","division":"Social Sciences","description":"Provides students with fundamental analytic tools of the economist with application to macroeconomics.","courses":[276,278,279,280,281,282,283,284,285,286,287]},
{"id":"S1ECO008","title":"Advanced Macroeconomics","dept":"ECO","division":"Social Sciences","description":"Provides students with an in-depth introduction to fundamental tools of macroeconomic analysis. For students with prior economics training (ECO 108: PRINCIPLES OF ECONOMICS or equivalent).","courses":[277,288,278,279,280,289,290,281,282,283,284,285,286,287]},
{"id":"S1ECO001","title":"Applied Economics","dept":"ECO","division":"Social Sciences","description":"Provides students with fundamental analytic tools of the economist and applies these tools in one substantive area.","courses":[276,277,288,291,292,293,294,295,296,206,297,298,299,300,301,302,303,304,305,306]},
{"id":"S1ECO004","title":"Advanced Applied Economics","dept":"ECO","division":"Social Sciences","description":"For students with some prior economics training at principles level (ECO 108: PRINCIPLES OF ECONOMICS or equivalent), provides fundamental intermediate level microeconomic tools with two applications in substantive areas.","courses":[277,288,293,294,295,296,206,307,297,298,299,300,301,302,303,304,305,306]},
{"id":"S1ECO002","title":"Theoretical Economics","dept":"ECO","division":"Social Sciences","description":"Designed for the student with mathematical training, this cluster provides students with an excellent background to issues and techniques in theoretical evidence.","courses":[276,277,288,308,309,307,297,310,311,312]},
{"id":"S1ECO005","title":"Advanced Theoretical Economics","dept":"ECO","division":"Social Sciences","description":"This cluster is designed for students who have economics principles (ECO 108: PRINCIPLES OF ECONOMICS) background and principles training. This cluster provides students with an in-depth introduction to issues in theoretical economics.","courses":[277,288,308,309,307,297,310,311,312]},
{"id":"N1EES007","title":"Global Environmental Change","dept":"EES","division":"Natural Sciences and Engineering","description":"This cluster examines the factors that shape the record of past environments. The current features and processes of the environment will be used to understand the past and predict the future.","courses":[191,313,314,194]},
{"id":"N1EES002","title":"Earth and Planetary Sciences","dept":"EES","division":"Natural Sciences and Engineering","description":"In this cluster students will become familiar with the history of the Earth, the processes that govern the patterns of that history and the relationship of our planet to the larger environment of the solar system. (Note: EES 201 is a prerequisite for EES 204.)","courses":[178,179,315,316,317,318]},
{"id":"N1EES003","title":"Earth Resources","dept":"EES","division":"Natural Sciences and Engineering","description":"Energy sources, their use and availability and the origin and mode of occurrence of minerals in the earth. (Note: EES 101 is a prerequisite for EES 204.)","courses":[190,194,319,317,318]},
{"id":"N1EES004","title":"Earth and the Environment","dept":"EES","division":"Natural Sciences and Engineering","description":"This cluster is an introduction to the basic geological and chemical processes that govern earth systems dynamics. There is a general introduction to geological and environmental sciences, with additional focus on interactions between earth surface and atmosphere.","courses":[190,191,315,314,316,320]},
{"id":"N1EES005","title":"Life through Time","dept":"EES","division":"Natural Sciences and Engineering","description":"This cluster will introduce students to the geological record of life on Earth and also explain the environmental processes that sustain life and the biotic processes that affect the environment.","courses":[314,191,321,157,130,155,131,322]},
{"id":"N1EES001","title":"Earth through Time","dept":"EES","division":"Natural Sciences and Engineering","description":"This cluster is a general introduction to the earth and environmental sciences. (Note: EES 201 is a prerequisite for EES 203 and 204.)","courses":[190,314,191,315,323,324,317,316]},
{"id":"N1SUS001","title":"Energy and Sustainability","dept":"SUS","division":"Natural Sciences and Engineering","description":"The cluster consists of three groups of courses: group one introduces students to the natural world and the impact humans have on it; group two discusses the basic ideas of energy availability and use; group three introduces students to the social/philosophical background of sustainability.","courses":[157,190,191,315,170,194,319,325,326,327,328,329]},
{"id":"H1SUS001","title":"Sustainability and the Humanities","dept":"SUS","division":"Humanities","description":"This cluster introduces students to ways of understanding environmental values, histories, and relationships from a humanities perspective. By engaging environmental issues with an emphasis on interpretation, imagination, and culture, students will learn to think critically about the conceptual frameworks that shape how ecological problems and solutions are articulated.","courses":[191,330,331,332,333,326,327,22,334]},
{"id":"S1SUS001","title":"Society and Sustainability","dept":"SUS","division":"Social Sciences","description":"The cluster introduces students to current thinking about sustainability policies and their consequences. The first group of courses deals with the intellectual/philosophical background of sustainability; the second group covers policies important in this field and their consequences for society. The cluster is intended especially for students in the natural sciences and engineering. (Note that ANT 224 can be used to fulfill a requirement in either subgroup.)","courses":[112,326,335,327,336,112,300,325,328,329]},
{"id":"N1STT002","title":"Probability and Statistics","dept":"STT","division":"Natural Sciences and Engineering","description":"This cluster provides an introduction to methods and theory of probability and statistics.","courses":[337,338,168,220]},
{"id":"N1STT001","title":"Applied Statistics","dept":"STT","division":"Natural Sciences and Engineering","description":"This cluster provides an overview of applied statistics as used in various fields of science, industry and for government activity.","courses":[339,340,216,217,218,341,342,343,204,200]},
{"id":"S1RST001","title":"The Great Experiments -- Identities & Cultures in","dept":"RST","division":"Social Sciences","description":"This cluster explores the process and politics of change in Russia and the surrounding region from cultural, historical, and political vantage points.","courses":[344,345,346,347,348,349,350,351,352,353,354,355,356,357]},
{"id":"S1PSC015","title":"European Politics and Civilization","dept":"PSC","division":"Social Sciences","description":"This cluster focuses on contemporary politics and history in all parts of Europe.","courses":[351,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374]},
{"id":"S1PSC018","title":"America and the World","dept":"PSC","division":"Social Sciences","description":"This cluster places the politics of the United States in the context of international politics, providing basic foundation courses in domestic and non-domestic politics as well as the opportunity to take a more specialized course.","courses":[375,361,346,364,348,376,377,378,379,362,363,380,381,382,383,384,385,386,387,388,389,390,371,365,391,372,392,393,394,395,396,397,398,399,400,401,402,403,79,404,405,406,407,408,409,410,411,80,328,412,413,414,367,367,368,369,370,415,416,417]},
{"id":"S1PSC008","title":"International Relations","dept":"PSC","division":"Social Sciences","description":"This cluster explores the clashes of countries and ideologies in the international sphere.","courses":[346,377,418,419,420,378,379,362,363,381,382,384,385,386,421,364,387,388,389,371,365,391,415,348,372,367,422,423,373,374,213,394]},
{"id":"S1PSC007","title":"Comparative Politics","dept":"PSC","division":"Social Sciences","description":"This cluster explores the politics, political processes, and political institutions in countries other than the United States.","courses":[361,377,418,378,424,379,362,363,381,383,384,385,386,364,387,388,389,371,372,425,367,368,369,370,426,427,416,428,373,213]},
{"id":"S1PSC005","title":"American Politics and Policy","dept":"PSC","division":"Social Sciences","description":"This cluster explores politics, political processes, and political institutions in the United States.","courses":[375,395,396,397,78,398,399,400,401,402,403,79,404,405,406,407,408,409,410,411,80,328,412,413,414,329,417,429,430,431,213,394,432]},
{"id":"S1PSC010","title":"Political Philosophy","dept":"PSC","division":"Social Sciences","description":"This cluster explores political philosophy from a variety of perspectives and applied to a variety of political problems. It also permits you to combine the study of political philosophy with other philosophical approaches.","courses":[433,394,434,435,436,437,429,326,438,439,440,441,335]},
{"id":"S1PSC006","title":"Political Methods and Theory","dept":"PSC","division":"Social Sciences","description":"This cluster explores different approaches of political science, with courses in methods as well as normative and formal theory.","courses":[213,432,442,378,348,433,443,394,434,417,444,435,436,437,445,429]},
{"id":"S1PSC014","title":"American Political History","dept":"PSC","division":"Social Sciences","description":"This cluster explores the origins and development of American society, especially its politics, political processes, and political institutions.","courses":[446,447,448,375,394,397,400,401,402,403,79,405,406,408,410,80,413,429]},
{"id":"S1PSC017","title":"Politics and Religion","dept":"PSC","division":"Social Sciences","description":"This cluster focuses on the intersection of politics and religion, both in the United States and in other parts of the world.","courses":[449,450,451,452,453,454,455,456,457,458,379,421,459,388,402,79,80,429]},
{"id":"S1PSC016","title":"Poland, Russia, and Central Europe","dept":"PSC","division":"Social Sciences","description":"This cluster explores the politics, history, and economics of central and eastern Europe and Russia.","courses":[345,460,461,462,350,463,464,362,363,383,364,372]},
{"id":"S1PSC013","title":"Environmental Politics","dept":"PSC","division":"Social Sciences","description":"This cluster focuses on the politics of the environment, including problems and approaches and the forces at work on all sides of the issue. Note that some of the courses in this cluster have prerequisites.","courses":[328,414,329,375,395,396,405,408,409,410,412,465,157,466,467,153,163,190,191,194]},
{"id":"S1PSC012","title":"Politics and Mathematics","dept":"PSC","division":"Social Sciences","description":"This cluster explores the application of mathematics and statistics to a variety of political problems. Note that some of the courses in this cluster have prerequisites.","courses":[468,469,337,216,218,443,213,348,372,444,445]},
{"id":"S1HIS008","title":"American History","dept":"HIS","division":"Social Sciences","description":"The course of American history from colonization to the twentieth century. (Note: This is a Social Science cluster.)","courses":[302,470,471,472,473,446,447,474,475,476,477,478,479,480,481,482,483,484,485,448,486,487,488,489,490,491,492,493,494,495,496]},
{"id":"S1HIS016","title":"Russia and East European History","dept":"HIS","division":"Social Sciences","description":"The history of Russia and the Soviet Union.","courses":[497,344,345,460,498,499,500,501,502,463,352]},
{"id":"S1PSC009","title":"World Politics","dept":"PSC","division":"Social Sciences","description":"This cluster explores politics in countries other than the United States along with the interaction of countries in the international sphere.","courses":[361,346,377,378,379,362,363,381,382,383,384,385,386,387,388,389,390,371,365,391,372,503,393,504,367,368,505,369,370,415,348,373,374]},
{"id":"S1HIS015","title":"Social History and History of Daily Life","dept":"HIS","division":"Social Sciences","description":"The perspectives, methods, and findings of social history.","courses":[472,473,475,476,195,506,197,198,199,507,508,509,498,510,511,483,512,513]},
{"id":"S1HIS002","title":"African-American History","dept":"HIS","division":"Social Sciences","description":"The history of African-Americans from the age of slavery to the present.","courses":[474,475,476,514,485,515,512,302,494]},
{"id":"S1HIS017","title":"History of Science, Technology, and Medicine","dept":"HIS","division":"Social Sciences","description":"Perspectives on the development of knowledge in science and medicine and its application and social impact.","courses":[195,196,197,198,199,516]},
{"id":"S1HIS006","title":"European History","dept":"HIS","division":"Social Sciences","description":"The course of European history from late antiquity to the twentieth century.","courses":[517,359,518,497,344,345,460,507,519,520,521,508,522,509,523,516,524,525,526,527,528,449,529,498,530,531,460,532,533,463]},
{"id":"S1HIS019","title":"Latin American History and Culture","dept":"HIS","division":"Social Sciences","description":"This cluster introduces students to the study of the Latin American region. Students will develop an appreciation for the Native American, colonial, and/or modern experiences that have shaped diverse cultural groups throughout Brazil, the Caribbean and Spanish America.","courses":[534,535,536,511,514,537,538,104,539,540,541,542,543,544,545,546,547,548,549]},
{"id":"S1HIS010","title":"Asian and Asian American History","dept":"HIS","division":"Social Sciences","description":"The history of Japan, China, and Asian America.","courses":[550,551,552,553,554,555,556,557,558,559,560,510,561,114,562,563,564,565]},
{"id":"S1HIS007","title":"Economic History","dept":"HIS","division":"Social Sciences","description":"The perspectives, methods, and findings of economic history.","courses":[195,566,556,511,567,561,296,302,195,506,197,199,568,483,569,570,571,572]},
{"id":"S1HIS009","title":"Cultural and Intellectual History","dept":"HIS","division":"Social Sciences","description":"The perspectives, methods, and findings of cultural and intellectual history.","courses":[506,519,520,521,508,523,525,478,479,480,481,484,573,574,575,493,565,494,355]},
{"id":"S1HIS004","title":"War, Revolution, and Society","dept":"HIS","division":"Social Sciences","description":"The impact of war and revolution on the making of the modern world.","courses":[576,345,477,507,568,522,526,577,449,498,557,560,510,448,561,578,579]},
{"id":"S1HIS011","title":"African History","dept":"HIS","division":"Social Sciences","description":"The history of colonial and contemporary Africa.","courses":[580,581,576,582,583,556,568,584,585,514,586,587]},
{"id":"S1HIS003","title":"Global Perspectives","dept":"HIS","division":"Social Sciences","description":"The history of imperial and transnational relationships and their role in the making of the modern world.","courses":[517,359,576,195,506,583,199,507,566,556,568,523,588,558,560,514,483,567,589,570,590,591,571,592,593,452,458]},
{"id":"N1INT005","title":"The Science of Light and Sound","dept":"INT","division":"Natural Sciences and Engineering","description":"Physics of Music deals with sound waves, and Optics deals with light waves. The two kinds of waves have interesting similarities and differences. Students will learn about the sources, propagation and the perception of light and sound waves by living systems.","courses":[140,594,595]},
{"id":"N1INT014","title":"Math and Statistics for the Social Sciences","dept":"INT","division":"Natural Sciences and Engineering","description":"This cluster provides a solid foundation in calculus and statistics for students interested in the social sciences. The normal math course to take would be MTH 141 or MTH 161. The other options are for students who have AP credits for MTH 161. All students should be aware of the following: No more than one course in a cluster may be used toward a major or minor being used to fulfill a divisional requirement.","courses":[596,597,168,598,599,600,601,216,218,277,307,213,214,348,372,444,602,445]},
{"id":"N1PHL001","title":"Logic","dept":"PHL","division":"Natural Sciences and Engineering","description":"This cluster begins with the basic course in symbolic logic and is followed by two courses that explore theoretical questions about logic and computation and develop more advanced logical systems.","courses":[184,603,604,605,606,607,608,609,610,611,200,201,612]},
{"id":"N4INT006","title":"Mechanics","dept":"INT","division":"Natural Sciences and Engineering","description":"The essence of the mechanical universe: forces, structures transmitting forces, and motion.","courses":[613,614,615,596,597]},
{"id":"N1INT010","title":"General Science","dept":"INT","division":"Natural Sciences and Engineering","description":"This Cluster is intended for students who had intended to major in a natural science or engineering field. Students with a continuing interest in one of these fields should consider a Cluster from that field.","courses":[174,176,130,155,131,156,616,617,614,618,615,619,620,596,621,622,167,597,168,601,221,204,200,164,170,272,623,594,210,624,625]},
{"id":"N4INT007","title":"Energy and Power","dept":"INT","division":"Natural Sciences and Engineering","description":"What are energy and power? How are they produced, transmitted, and possibly wasted?","courses":[626,616,614,615,596,597,622,168]},
{"id":"S1PH003","title":"Health, Environment, and Sustainability","dept":"PH","division":"Social Sciences","description":"An overview of the relationship between public health and the environment, and of the social, political and economic contributors to creating and solving environmental health problems.","courses":[627,628,300,325,328,329,157,191,629,630]},
{"id":"N1INT003","title":"Introduction to Physical Science","dept":"INT","division":"Natural Sciences and Engineering","description":"The utility of the scientific method is demonstrated across three fields of physical science. This cluster is for the student with little or no science background.","courses":[631,178,632,179,174,594,180,181,595,190,191,315,633,314]},
{"id":"S1PH002","title":"Health Policy","dept":"PH","division":"Social Sciences","description":"An overview of health policy as it relates to the organization, financing, and provision of health care in the U.S., including its history.","courses":[634,635,298,636,407,408,413]},
{"id":"S1INT009","title":"Economic History","dept":"INT","division":"Social Sciences","description":"This cluster gives students the opportunity to apply economic analysis to historical developments.","courses":[276,637,296,584,511]},
{"id":"S1INT006","title":"Political Economy","dept":"INT","division":"Social Sciences","description":"This cluster combines the study of economics and politics, exploring their intersection as it applies both to domestic and international matters. Note that some of the Economics courses in this cluster have prerequisites.","courses":[276,277,278,280,294,295,296,638,305,282,283,385,348,372,443,395,404,408,409,639,80,328,412,413,329,444,445]},
{"id":"N1INT015","title":"Life on Earth -- Biology, Earth and Environmental","dept":"INT","division":"Natural Sciences and Engineering","description":"This cluster will introduce major themes in biology, energy resource availability, and environmental science. The graduate will have the foundation necessary to make informed personal and political decisions concerning today's complex issues of biotechnology, ecosystem modification, and energy resource use and management.","courses":[154,157,130,155,131,156,190,191,194,640,180,181]},
{"id":"N1PH001","title":"Epidemiology and Statistics","dept":"PH","division":"Natural Sciences and Engineering","description":"An examination of the principles and skills required to assess population health.","courses":[628,469,339,217,218]},
{"id":"N1INT013","title":"The Scientific Method","dept":"INT","division":"Natural Sciences and Engineering","description":"An exmination of the scientific method aimed at providing a basic understanding of science and the scientific progress. The courses will address the larger view of science by exploring what constitutes a scientific theory and by examining the writings of scientists and their humanist contemporaries about the world view that science provides. The process of discovery will be used to teach the basic principles of science and the scientific method.","courses":[185,595,180,181]},
{"id":"S1INT007","title":"Legal Studies","dept":"INT","division":"Social Sciences","description":"An introduction to legal studies by means of one course in analytical techniques and two courses that study particular aspects of the law and legal systems. Students are encouraged to seek faculty advice when selecting their courses.","courses":[277,641,642,602,445,103,113,254,305,402,406,411,369,429,643,644,183,184,645,646,647,648,649,335,650]},
{"id":"S1PH004","title":"Medicine in Context","dept":"PH","division":"Social Sciences","description":"This cluster is a study of how ethical and religious beliefs, and economic, political psychological and cultural factors affect the organization, financing and use of health care, mainly in the United States but with some reference to other industrialized countries.","courses":[651,252,298,197,198,199,652,653]},
{"id":"S1INT002","title":"Polish and Central European Studies Certificate","dept":"INT","division":"Social Sciences","description":"The Polish and Central European Studies Certificate provides students with an opportunity to develop an interdisciplinary knowledge about Poland and Central Europe.","courses":[]},
{"id":"N4INT001","title":"Modern Technology","dept":"INT","division":"Natural Sciences and Engineering","description":"Modern technology uses changing forces, currents, light, and materials. Find how technology uses these primary concepts to solve important practical problems.","courses":[596,597,654,655,613,594,656,657,658]},
{"id":"N1INT004","title":"Origins","dept":"INT","division":"Natural Sciences and Engineering","description":"These courses explore our understanding of the origins of the Universe, the Milky Way galaxy, the chemical elements, the Sun and Solar System, the Earth, its oceans, continents and atmosphere, life, and human kind. Important background material will be covered in class.","courses":[631,178,632,179,190]},
{"id":"N4INT002","title":"Musical Sound -- Science and Synthesis","dept":"INT","division":"Natural Sciences and Engineering","description":"Introduction to the physical basis of musical sound, the technology of music and basic music theory.","courses":[659,272,595,13,14,15]},
{"id":"S1PH001","title":"Introduction to Public Health","dept":"PH","division":"Social Sciences","description":"An overview of the core competencies of public health.","courses":[627,660,628]},
{"id":"S1LIN005","title":"Language and Meaning","dept":"LIN","division":"Social Sciences","description":"This series of courses focuses on the semantics and pragmatics of natural language and how linguistic forms and their usages give rise to meanings.","courses":[5,661,612,662,663,664]},
{"id":"S1LIN001","title":"Speech","dept":"LIN","division":"Social Sciences","description":"This cluster considers the sound systems of languages and the articulatory mechanisms that produce those sounds.","courses":[5,665,666]},
{"id":"S1LIN002","title":"Natural Language","dept":"LIN","division":"Social Sciences","description":"An overview of the nature of human language.","courses":[5,667,668,669,670,665,1,661,671]},
{"id":"S1LIN004","title":"Language Structure","dept":"LIN","division":"Social Sciences","description":"This cluster introduces students to the techniques for investigating the structures of a wide variety of languages.","courses":[5,665,1,661,671]},
{"id":"S1LIN006","title":"Language in Contemporary Society","dept":"LIN","division":"Social Sciences","description":"This cluster considers the impact of how we talk about things in our daily lives, and how it affects society as a whole.","courses":[672,667,668,669,670]},
{"id":"H1SA010","title":"Visual Production","dept":"AAH","division":"Humanities","description":"One introductory level studio and two advanced level studios are required to complete this cluster. The introductory level studio courses address the basic principles of visual organization, fundamental tehnical instruction, the importance of writing, and the discursive elements of art evaluation. The advanced level courses provide opportunities to gain a broad and mature understanding of art production and its possibilities as a tool of research and investigation. Advanced level studio courses maintain prerequisites. Introductory level courses are not open to seniors. Enrollment in a cluster does not guarantee enrollment in a course.","courses":[18,19,20,21,22,23,24,25,27,673,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]},
{"id":"N1PAS007","title":"Science and Technology by Inquiry","dept":"PAS","division":"Natural Sciences and Engineering","description":"The courses in this cluster will explore what constitutes a scientific theory by providing students with the opportunity to engage in scientific hypothesis testing in the laboratory. This cluster will also expose the students to the design process, specifically the process of determining constraints and optimization of a design.","courses":[180,181,595,623]},
{"id":"S1MAS001","title":"Music and Linguistics for Musicians","dept":"MAS","division":"Social Sciences","description":"This cluster is designed for music majors or minors who have already taken MUR 110/111 or equivalent. It explores the structural relations between music and language systems, and how we perceive them.","courses":[10,5,669,665,1,666]},
{"id":"N1MAS003","title":"Music and Language for Musicians","dept":"MAS","division":"Natural Sciences and Engineering","description":"This cluster is designed for music majors or minors who have already taken MUR 110/111 or equivalent. It explores the structural relations between music, cognition and language systems.","courses":[10,141,147,149,5,11,12]},
{"id":"N1MAS001","title":"Music Cognition for Musicians","dept":"MAS","division":"Natural Sciences and Engineering","description":"This cluster is designed for music majors or minors who have already taken MUR 110/111. Students will learn basic principles of cognition and the auditory system, then use this knowledge to explore how music is perceived and remembered.","courses":[133,10,674,11,12]},
{"id":"N1PAS002","title":"An Introduction to the Physical World","dept":"PAS","division":"Natural Sciences and Engineering","description":"This is an introductory cluster designed especially for students in the humanities and other non-scientific fields who are interested in learning something about the physical world. Substantial use will be made of demonstrations. No background knowledge is required and the material will be presented with very little mathematics.","courses":[595,180,181,675,182,631,178,632,179]},
{"id":"N4ME002","title":"Engineering Design","dept":"ME","division":"Natural Sciences and Engineering","description":"The process of design as found in biological structures (human or animal bodies) or man-made structures, the software used in man-made design, and the basic principles of structural analysis applicable to large or small structures.","courses":[676,613,596,597,654,623]},
{"id":"N4ME004","title":"Biomechanics","dept":"ME","division":"Natural Sciences and Engineering","description":"Biological structures (such as human and animal bodies, plants, etc.) are made so as to transmit forces, motion, and power. This cluster examines the principles of biomechanics, emphasizing the principles of design in the efficient function of animals and plants, and the application of these principles.","courses":[164,613,130,131,174,623]},
{"id":"N4ME005","title":"Engineering and Technology in Antiquity","dept":"ME","division":"Natural Sciences and Engineering","description":"An exploration of basic mechanics and optics through a study of engineering and technology in antiquity.","courses":[677,678,679]},
{"id":"N4ME003","title":"Design with Materials","dept":"ME","division":"Natural Sciences and Engineering","description":"Engineering design uses solids, fluids, or gases for the transmission of forces and power. Find out how materials are chosen, and why, to fit specific design requirements.","courses":[174,676,680,623]},
{"id":"N4ME001","title":"Force and Motion","dept":"ME","division":"Natural Sciences and Engineering","description":"How do mechanical forces transmit and cause motion of things small and large?","courses":[613,681,596,622,167,597,168,654,682]},
{"id":"Quest) (N1PAS005","title":"Honors Physics","dept":"PAS","division":"Natural Sciences and Engineering","description":"An overview of Physics that uses mathematics, including calculus, so that quantitative calculations can be performed.","courses":[615,619,683,684]},
{"id":"N1PAS004","title":"Quantitative Physics","dept":"PAS","division":"Natural Sciences and Engineering","description":"An overview of physics that uses mathematics, including calculus, so that quantitative calculations can be performed.","courses":[685,686,616,617,614,618,687,615,619,683,596,622,167,597,168,174,595,595,675]},
{"id":"N1PAS003","title":"The Nature of the Universe","dept":"PAS","division":"Natural Sciences and Engineering","description":"An overview of the study of the Universe. Emphasis is given to the important concepts with a minimal amount of mathematics.","courses":[631,178,632,179,180,181,595,675,182]},
{"id":"N1PAS001","title":"Science -- Discovery, History and Methodology","dept":"PAS","division":"Natural Sciences and Engineering","description":"An examination of scientific discoveries in physics and astronomy from the scientist's point of view and compared to the understanding of science and the scientific process from other disciplines. No background knowledge is required and the material will be presented with very little mathematics.","courses":[185,631,178,632,179,180,181,675,182]},
{"id":"N1PAS006","title":"Physics in Seafaring","dept":"PAS","division":"Natural Sciences and Engineering","description":"This cluster focuses on the nature of forces affecting or employed by a ship on the high seas.","courses":[688,616,617,614,618,615,619]},
{"id":"N1MTH002","title":"Calculus and Mathematics","dept":"MTH","division":"Natural Sciences and Engineering","description":"A three-semester calculus sequence covering techniques and applications of differentiation and integration, Taylor series, and other standard topics through partial derivatives.","courses":[689,622,167,596,597]},
{"id":"H1SP001","title":"Literature and Identity in Hispanic Societies","dept":"MLC","division":"Humanities","description":"An exploration of questions of identity including issues of class, race, nation, gender, and genre, through a variety of literary texts from Spain and Latin America. One course may be taken in English.","courses":[690,691,540,541,692,693,694,695,696,697,698,699,700,701,702,703,704,705,544,544,545,706,707,708,546,547,709,710]},
{"id":"N1MTH001","title":"Honors Calculus","dept":"MTH","division":"Natural Sciences and Engineering","description":"An honors sequence covering the fundamental concepts of calculus.","courses":[711,168,598,599,600,601,220,712,713]},
{"id":"N1MTH008","title":"Math and Statistics","dept":"MTH","division":"Natural Sciences and Engineering","description":"This cluster provides a solid foundation in calculus and statistics. The normal track would be MTH 161-162 and the statistics course, or MTH 141-142 and the statistics course. (Students who have AP credit for MTH 161 might consider N1MTH001, which is the only cluster that permits AP credit.)","courses":[216,217,218,596,597,622,168,598,600,689,468,469]},
{"id":"H1SP002","title":"Introduction to Spanish Studies","dept":"MLC","division":"Humanities","description":"This cluster introduces students to Spanish language and culture through courses that practice language skills as well as present current issues of interest in Hispanic countries.","courses":[714,715,716,717,718,719,690]},
{"id":"N1MTH007","title":"Mathematical Modeling for the Social Sciences","dept":"MTH","division":"Natural Sciences and Engineering","description":"A cluster for students interested in learning how mathematics is used for modeling in the social sciences.","courses":[689,620,596,597,168,601,468,277,348,372,444,602,445]},
{"id":"N1MTH006","title":"Introduction to Calculus and Contemporary Mathemat","dept":"MTH","division":"Natural Sciences and Engineering","description":"The first two courses in the cluster integrate precalculus mathematics with an introduction to the differential calculus. The third course covers either the integral calculus or contemporary mathematics. This cluster is designed for students who lack the mathematics skills needed to perform successfully in the standard calculus courses.","courses":[620,621,689,622]},
{"id":"N1MTH005","title":"Advanced Mathematics","dept":"MTH","division":"Natural Sciences and Engineering","description":"A cluster covering the fundamental concepts of calculus together with one semester of more advanced material.","courses":[219,720,721,722,207,723,468,469,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,597,168,599,598,600]},
{"id":"N1MTH004","title":"Calculus and Probability","dept":"MTH","division":"Natural Sciences and Engineering","description":"A cluster covering the fundamental concepts of calculus and probability.","courses":[743,597,682,599,598,600]},
{"id":"N1MTH003","title":"Analysis and Calculus","dept":"MTH","division":"Natural Sciences and Engineering","description":"This cluster covers, at a faster pace, the material in the calculus cluster. In addition, a semester of differential equations or a semester of multidimensional analysis is required.","courses":[168,597,599,598,600]},
{"id":"H1SP003","title":"Hispanic Film and Popular Culture","dept":"MLC","division":"Humanities","description":"Proficiency in Spanish is not required for completion of this cluster; students may choose three courses taught in English from among the alternatives. This cluster provides an analysis of the visual representations of social and cultural issues such as gender, race, class, and national identity in film and popular texts.","courses":[690,744,745,746,747,548,549,748,749]},
{"id":"H1INT006","title":"Hispanic Cultures","dept":"INT","division":"Humanities","description":"This cluster will allow students to explore Hispanic literatures and cultures in relation to political, historical, and economic contexts. Proficiency in Spanish is not required for completion of this cluster, and students may choose three courses taught in English from among the alternatives.","courses":[750,511,751,752,542,692,702,753,754,709,755]},
{"id":"H1FR005","title":"Introduction to French Language and Culture","dept":"MLC","division":"Humanities","description":"This cluster introduces students to basic language skills (reading, writing, speaking, listening) as well as the cultural context for French. The third element is a related course in Comparative Literature which will open up the study of this linguistic-cultural area by looking at the evolution of its civilization, the dynamics of contemporary life, or in some other way add depth to the study of this area.","courses":[756,757,758,759,760,761,762,762,763,764,765]},
{"id":"H1RST004","title":"Russian Studies","dept":"RST","division":"Humanities","description":"The study of Russia from the vantage points of history, national identity, and everyday life.","courses":[351,463,353,344,345,350,356,357]},
{"id":"H1JPN005","title":"Japanese Language and Culture","dept":"MLC","division":"Humanities","description":"This cluster introduces students to basic language skills (reading, writing, speaking, listening) as well as the cultural context for Japanese. One language course is supplemented by two related courses in English which will open up the study of this linguistic-cultural area by looking at the evolution of Japan's civilization, the dynamics of contemporary life, or in some other way add depth to the study of this area.","courses":[766,767,768,769,770,771,772,773,563,565,774]},
{"id":"H1RST001","title":"Introduction to Russian Culture and Civilization","dept":"RST","division":"Humanities","description":"An overview of Russian civilization or Russia in Europe, followed by one course on 19th or 20th century literature, and another course on imperial or modern cultural history.","courses":[351,463,775,776,777,778,779,780,781,352,353,782,354,783,355,344,345,350,784,785]},
{"id":"H1MLC001","title":"Introduction to European Studies","dept":"MLC","division":"Humanities","description":"An exploration of Europe as a newly unified continent, combined with an emphasis on one or more of the still strong European national cultures.","courses":[351,358,760,761,762,786,763,764,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,533,803,804,805,463,806,807,352,353,808,354,783,691,752,809,700,702,709,748,749,356,350,357]},
{"id":"H1FR007","title":"Advanced French Language and Cultural Studies","dept":"MLC","division":"Humanities","description":"This cluster allows students to perfect their language skills by pursuing literary or cultural study with a primary emphasis on language, or by focusing on the history of the French language.","courses":[760,810,811,786,812,813,814]},
{"id":"H1JPN008","title":"Japanese Language","dept":"MLC","division":"Humanities","description":"Students may choose the appropriate level of Japanese language as a cluster. Any three consecutive courses in the language sequence below can be chosen.","courses":[766,767,768,769,770,771,772,773,815]},
{"id":"H1REL007","title":"Ancient Greek","dept":"RCL","division":"Humanities","description":"This cluster will enable students to achieve a basic proficiency in Ancient Greek as well as a familiarity with Greek literature and culture.","courses":[531,816,817,818,819,820,821]},
{"id":"H1JPN009","title":"Traditional Japanese Culture","dept":"MLC","division":"Humanities","description":"Explore the roots and development of Japan's traditional culture from its origins through the 20th century.","courses":[563,774,822,823,824,825,564,826,827,828]},
{"id":"H1IT005","title":"Introduction to Italian Language and Culture","dept":"MLC","division":"Humanities","description":"The cluster provides a basic knowledge of Italian grammar and an introduction to Italian culture. The third course focuses on specific authors, periods, or problems in Italian Literature, Civilization, Intellectual and Cultural History.","courses":[829,830,831,801,832,833,834,835,836,803]},
{"id":"H1JPN010","title":"Japanese Popular Culture","dept":"MLC","division":"Humanities","description":"Explore the domestic and international dimensions of Japan's acclaimed manga, anime, film, art, literature, music, etc.","courses":[837,838,839,565,840,828,841]},
{"id":"H1REL006","title":"Arabic","dept":"RCL","division":"Humanities","description":"This cluster will enable students to achieve a basic proficiency in Arabic as well as a familiarity with Arabic literature and culture.","courses":[452,842,843]},
{"id":"H1IT006","title":"Intermediate Italian Language and Culture","dept":"MLC","division":"Humanities","description":"This cluster is designed for students with basic knowledge of Italian grammar who want to enhance their speaking, listening, and writing skills in the context of contemporary Italian culture. The third course focuses on specific authors, periods, or problems in Italian Literature, Civilization, Intellectual and Cultural History.","courses":[831,844,801,832,833,845,834,835,836,803]},
{"id":"H1JPN011","title":"Japanese Urban Arts","dept":"MLC","division":"Humanities","description":"Not just samurai and anime: explore the culture of one of the world's great bourgeois and mercantile cultures from the 16th century to the present.","courses":[822,846,847,848,828,774]},
{"id":"H1REL005","title":"Buddhism","dept":"RCL","division":"Humanities","description":"This cluster enables students to probe central issues and themes involving Buddhism, in the broader contexts of its foundational texts, beliefs, and rituals.","courses":[849,850,851]},
{"id":"H1IT007","title":"Advanced Italian Language and Cultural Studies","dept":"MLC","division":"Humanities","description":"This cluster is designed for students who want to focus on both advanced language practice and Italian Literature, Civilization, Intellectual and Cultural History.","courses":[845,832,833,852,834,835,836,803]},
{"id":"H1GER013","title":"Divided Germany","dept":"MLC","division":"Humanities","description":"In this cluster students will be introduced to the cinema and culture of divided Germany and Eastern Europe (1945-89), while also engaging the larger historical developments of Eastern and Western Europe in general, and divided Germany in particular.","courses":[853,501,800,509]},
{"id":"H1RUS001","title":"Russian Literature and Culture: Tradition & Trans","dept":"MLC","division":"Humanities","description":"An introduction to Russian culture and identity, beginning with a survey course on civilization, literature of the golden age, art, or national identity, followed by courses from the nineteenth and twentieth century literary traditions.","courses":[463,785,776,353,854,855,784,785,777,780,781,352,355,778,779,780,352,782,354,783,355]},
{"id":"H1IT008","title":"Italian Language","dept":"MLC","division":"Humanities","description":"The cluster is designed for students whose interest lies mainly in acquiring linguistic competence and basic cultural awareness.","courses":[831,844,830,856]},
{"id":"H1IT001","title":"Italian Studies on Location","dept":"MLC","division":"Humanities","description":"The cluster includes three courses at the 200 level in Italian and in other disciplines cross-listed with Italian. It also includes an Italian language course at the beginning, intermediate, or advanced level. It is designed for students who want to learn about Italian culture from an interdisciplinary perspective and on location. The program is interdivisional and focuses on various aspects of Italian Culture and Civilization.","courses":[]},
{"id":"H1IT009","title":"Italian Culture and Civilization","dept":"MLC","division":"Humanities","description":"The cluster is designed for students who have minimal or no experience in Italian language and want to focus on Italian Civilization, Intellectual and Cultural History, and Italian Literature in translation.","courses":[834,803,832,845,835,836]},
{"id":"H1GER004","title":"Introduction to German Language and Culture","dept":"MLC","division":"Humanities","description":"This cluster introduces students to basic language skills (reading, writing, speaking, listening) as well as the cultural context of German. The third element is a related course in English which will open up the study of this linguistic-cultural area by looking at the evolution of its civilization or the dynamics of contemporary life.","courses":[857,858,859,860,793,861,862,863,864,865,866,853,800]},
{"id":"H1GER003","title":"Germany before Nazism","dept":"MLC","division":"Humanities","description":"This sequence provides a historically structured overview of the most important developments in German culture and society during the 18th, 19th, and early 20th centuries.","courses":[867,795,796,797,868,861,862,869,865,870,871,519,520,528]},
{"id":"H1GER005","title":"Intermediate German Language and Culture","dept":"MLC","division":"Humanities","description":"This cluster includes two intermediate courses in German, which will address all skills but will do more reading of cultural materials than GER 101: ELEMENTARY GERMAN I-102. It is followed by a third course which provides an in-depth view of a particular cultural topic.","courses":[860,872,873,795,796,797,874,870]},
{"id":"H1GER008","title":"Fantasy, Horror & Magic","dept":"MLC","division":"Humanities","description":"The genres of horror, magic and fantasy fiction are some of the most popular. In this cluster students will be introduced to the elements of literary, film, and cultural studies as they analyze moments of horror, magic and fantasy from their German roots to contemporary American forms.","courses":[875,868,876,861,862,877]},
{"id":"H1REL003","title":"Islam","dept":"RCL","division":"Humanities","description":"This cluster enables students to probe central issues involving Islam, within the broader contexts of its foundational texts, beliefs, and rituals.","courses":[452,842,878,843,879,880,881,581,119]},
{"id":"H1RUS007","title":"Russian Language","dept":"MLC","division":"Humanities","description":"This cluster introduces students to basic language skills (reading, writing, speaking, listening comprehension).","courses":[882,883,464,884,885,886,887,855,888,889,890]},
{"id":"H1FR011","title":"Intermediate French Language and Culture","dept":"MLC","division":"Humanities","description":"This cluster includes one intermediate course in French. It is followed by two further courses, either a survey of one period of literature/culture or focused on a particular author, type of literature, or on another specialized topic.","courses":[759,760,810,763,764,891,789,765]},
{"id":"H1RUS005","title":"Intermediate Russian Language and Culture","dept":"MLC","division":"Humanities","description":"Intermediate Russian, followed by a third course (or two 2-credit courses) which either combines language and culture, or focusses on a broad period, or a specific author or important topic.","courses":[464,884,350,463,854,886,807,855,784,785,776,777,778,779,780,781,352,353,782,354,783,355,357]},
{"id":"H1MLC002","title":"Totalitarian Europe: History, Philosophy, Represe","dept":"MLC","division":"Humanities","description":"The cluster includes courses on various aspects of European totalitarian regimes: history, politics, philosophy, and culture, as well as the relationship between totalitarianism and various forms of human expression and representation such as art, music, cinema, and literature.","courses":[892,863,893,352,355,577,449,498,894,895]},
{"id":"H1RUS004","title":"Introduction to Russian Language and Culture","dept":"MLC","division":"Humanities","description":"This cluster introduces students to basic language skills (reading, writing, speaking, listening) as well as the cultural context for Russian. The third element either surveys Russian civilization, or looks in depth at life in Russia today.","courses":[882,883,350,463,806,784,785,357]},
{"id":"H1MLC003","title":"Continental Philosophy","dept":"MLC","division":"Humanities","description":"Cluster introduces students to Continental European thinkers from the nineteenth and twentieth centuries.","courses":[896,892,795,796,897,520,898]},
{"id":"H1POL001","title":"Polish Language","dept":"MLC","division":"Humanities","description":"This cluster introduces students to basic language skills (reading, writing, speaking, listening).","courses":[899,461,900]},
{"id":"H1MUR011","title":"The Performing Musician","dept":"MUR","division":"Humanities","description":"A hands-on approach to the experience of music.","courses":[901,902,903,904,905,906,907,908,909,910]},
{"id":"H1MUR013","title":"Introduction to Classical Music","dept":"MUR","division":"Humanities","description":"Explores Western art music from a variety of perspectives, incuding music theory, history, and criticism. (Admission to appropriate level of theory by placement test.)","courses":[13,14,15,907,908,911,901,902]},
{"id":"H1MUR016","title":"Musical Styles and Ideas","dept":"MUR","division":"Humanities","description":"A diverse array of repertories and approaches to the musical experience.","courses":[907,13,14,15,908,911,494,912,913,914,915,916,917,918,919,495,920,109,921,922,923,924]},
{"id":"H1MUR014","title":"Popular Music","dept":"MUR","division":"Humanities","description":"Explores various styles and forms of popular music in Western culture.","courses":[494,912,925,913,914,915,926,909,916,917,918,927,928,906,910,929,495,920]},
{"id":"H1MUR017","title":"World Music","dept":"MUR","division":"Humanities","description":"An introduction to non-Western music.","courses":[109,930,907,931,932,933,934,924]},
{"id":"H1MUR001","title":"Music Theory","dept":"MUR","division":"Humanities","description":"The grammar and syntax of Western music, including notation, harmony, counterpoint, and some composition.","courses":[13,14,15,935,936,937,938]},
{"id":"H1GER012","title":"Jews in Germany","dept":"MLC","division":"Humanities","description":"In this cluster students will be introduced to the history, experience, artistic production and representation of Jews in 20th-century Germany.","courses":[869,863,577,449]},
{"id":"H1REL002","title":"Christianity","dept":"RCL","division":"Humanities","description":"This cluster enables students to probe central issues involving Christianity, within the broader contexts of its foundational texts, beliefs, and rituals.","courses":[939,820,451,940,941,942,943,944,945,946,453,454,455,456,457,947,496,948]},
{"id":"H1INT002","title":"Boccaccio","dept":"MLC","division":"Humanities","description":"This cluster offers the opportunity to read the Decameron in relation to the Classical and Scriptural tradition as well as to English medieval literature, medieval history, and medieval art.","courses":[834,949,950,951,952,835,439,451,517,359]},
{"id":"H1JPN012","title":"Japan in Ruins: Apocalypse","dept":"MLC","division":"Humanities","description":"Japanese visions of the meaning of time, its end and reincarnation in fantasies of history, memory, nostalgia and revenge.","courses":[838,953,954]},
{"id":"H1GER006","title":"Advanced German Language and Culture","dept":"MLC","division":"Humanities","description":"In this cluster, the more advanced student will be able to pursue linguistic and cultural studies concerning both broad and specific topics. Each course is taught exclusively in German.","courses":[873,794,867,874,864,955,956]},
{"id":"H1MAS001","title":"Music, Culture, and Understanding","dept":"MAS","division":"Humanities","description":"This cluster provides an introduction to music as a window on cognition and culture. Students will learn fundamentals of music reading and structure, then use this knowledge to explore how music is perceived and remembered, and about the role it plays in one or more cultural groups.","courses":[10,13,14,15,957,109,494,912,913,911,958,495]},
{"id":"H1SA008","title":"Art New York","dept":"AAH","division":"Humanities","description":"This cluster is associated with the Art New York Program which introduces students to the vibrant cultural art world of New York City through internships in art institutions, direct involvement with practicing artists, and academic courses on contemporary art.","courses":[959,960,961]},
{"id":"H1JST002","title":"Jewish Studies","dept":"JST","division":"Humanities","description":"This cluster permits students to study Jewish history, culture, language, literature, and religion, from ancient Israel through contemporary America.","courses":[962,963,964,965,939,966,967,968,969,970,971,942,972,973,974,449,863,975,353,352,976,977,978,979]},
{"id":"H1PH001","title":"Bioethics","dept":"PH","division":"Humanities","description":"The philosophical study of ethical controversies in biology, medicine and public health.","courses":[627,651,980,629,981,982,326,983,984,650,630]},
{"id":"H1INT001","title":"Epic Literature","dept":"INT","division":"Humanities","description":"This cluster focuses on myth and epic as general categories permitting the student an overview of the genre of epic together with concentration on specific traditions and their sources.","courses":[816,985,986,987,988,802,989,990]},
{"id":"H1INT004","title":"Japanese Studies","dept":"INT","division":"Humanities","description":"JPN 230: INTRO TRADITNL JAPANESE CULT, REL 106: FROM CONFUCIUS TO ZEN and a course in Japanese history combine for a cluster in Japanese Studies.","courses":[563,849,991,555]},
{"id":"H1POL002","title":"Polish Studies","dept":"MLC","division":"Humanities","description":"This Cluster will focus on Polish language and literature and also includes introduction to Polish history and current political and cultural issues in Poland.","courses":[331,460,532,992,993,900,994,995,996,997]},
{"id":"H1INT003","title":"Dante","dept":"INT","division":"Humanities","description":"This cluster is designed for students who wish to approach the Divine Comedy from an interdisciplinary perspective and who are interested in exploring the literary, historical, philosophical, religious, and artistic aspects of Medieval western tradition.","courses":[832,833,998,803,949,950,952,999,359,439,939,820,451,1000]},
{"id":"H1PHL004","title":"Philosophy and Law","dept":"PHL","division":"Humanities","description":"This cluster explores analytical techniques and philosophical issues related to the study of the law.","courses":[183,650,982,326,1001,1002,441,335,1003,980,1004,629,1005,327,1006]},
{"id":"H1PHL001","title":"Ethics and Values","dept":"PHL","division":"Humanities","description":"This cluster explores issues in theoretical and applied ethics.","courses":[982,326,1002,441,335,1003,980,650,1004,629,1005,327,1007,1008,1006,981,1009,183,1010,1001,1011,1012,1013,1014,185,1015]},
{"id":"H1PHL003","title":"Knowledge, Mind, and Nature","dept":"PHL","division":"Humanities","description":"This cluster introduces students to basic methods of philosophical reasoning and allows them to pursue their interests in more advanced courses in the theory of knowledge, philosophy of science, philosophy of mind, and metaphysics.","courses":[612,1016,1017,663,664,1018,186,1019,1020,1021,1022,1023,1024,1009,982,326,183,1010,1001,184,1011,1012,1014,1025,185,1015]},
{"id":"H1PHL005","title":"Philosophy and Teaching Internship","dept":"PHL","division":"Humanities","description":"This cluster combines study of the philosophy of education and training in the basic skills of argument analysis with practical experience as interns in the Rochester City School District. Interns work with elementary school children, focusing primarily on teaching clear thinking and writing.","courses":[183,1005,1026]},
{"id":"H1PHL002","title":"History of Philosophy","dept":"PHL","division":"Humanities","description":"This cluster includes courses covering the history of philosophy from ancient times through the early twentieth century.","courses":[439,440,1027,1028,1029,1030,1031,1032,1009,982,326,183,1010,1001,1011,1012,1014,185,1015]},
{"id":"H1INT005","title":"Legal Studies","dept":"INT","division":"Humanities","description":"An introduction to legal studies by means of one course in analytical techniqes and two courses that study particular aspects of the law and legal systems. Students are encouraged to seek faculty advice when selecting their courses.","courses":[644,183,335,650,646,647,643,277,312,642,184,1033,602,103,113,254,305,648,649,402,406,411]},
{"id":"H1REL012","title":"The Classical Tradition","dept":"RCL","division":"Humanities","description":"This cluster concentrates on the history, religion, philosophy and literature of the ancient world.","courses":[531,1034,816,1035,575,818,1036,1037,1038,1039,985,819,1040,1041,817,949,439]},
{"id":"H1FR010","title":"Modern French Thought","dept":"FR","division":"Humanities","description":"For students interested in philosophy, aesthetics, and cultural theory, this cluster is designed to cover the major intellectual currents that have shaped modern French culture and identity by exploring the relations among literature, philosophy, and literary and cultural theory.","courses":[896,789,1042,1043,786,1044,1045]},
{"id":"H1REL001","title":"Judaism","dept":"RCL","division":"Humanities","description":"This cluster enables students to probe central issues in Judaism, within the broader contexts of its foundational texts, beliefs, and rituals.","courses":[939,1046,1047,1048,942,1049,1050,1051,1052,1053,1054,1055,978,449]},
{"id":"H1REL004","title":"Hinduism","dept":"RCL","division":"Humanities","description":"This cluster enables students to probe central issues and themes involving Hinduism within the broader context of its foundational texts, beliefs, and rituals.","courses":[1056,1057,1058,987,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,988,1070,1071,1072]},
{"id":"H1REL016","title":"Ethics and Philosophy in Religion","dept":"RCL","division":"Humanities","description":"This cluster enables the student to probe in depth a broad range of ethical and philosophical issues in context of religious traditions and from a cross-cultural and comparative perspective.","courses":[818,980,1073,646,1047,1049,647,945,455,1061,1062,1074,1075,1076]},
{"id":"H1REL017","title":"East Meets West","dept":"RCL","division":"Humanities","description":"This cluster explores western religious traditions in comparison with eastern religions.","courses":[1077,449,1078,450,939,820,1046,451,452,1073,1079,842,495,878,1080,1081,1082,1083,1084,1085,920,1086,1087,940,941,1088,1048,1050,1051,1052,1053,1053,1055,647,943,944,1089,1089,1089,945,946,453,454,455,456,457,947,947,496,496,843,879,880,881,458,1074,1090,1091,1056,849,1057,1082,1092,1093,1094,1095,1058,987,1059,1060,1061,1062,1063,1064,1065,1066,1096,850,851,1067,1068,1069,988,1097,1098,1070]},
{"id":"H1REL015","title":"Religion and Society","dept":"RCL","division":"Humanities","description":"This cluster enables students to study specific religions, their societies and interactions from a variety of cross-cultural and comparative perspective.","courses":[1099,495,1080,1081,1084,920,1100,1086,646,1052,647,1089,946,453,454,455,456,458]},
{"id":"H1REL009","title":"Latin","dept":"RCL","division":"Humanities","description":"This cluster will enable students to achieve a basic proficiency in Latin as well as a familiarity with Latin literature and culture.","courses":[1034,1037,1038,1039,1040,1040]},
{"id":"H1REL008","title":"Hebrew","dept":"RCL","division":"Humanities","description":"This cluster will enable students to achieve a basic proficiency in Hebrew as well as a familiarity with Hebrew literature and culture.","courses":[939,1101,978]},
{"id":"H1CLT003","title":"Comparative Film Traditions","dept":"MLC","division":"Humanities","description":"This cluster is designed to encourage cross-cultural exploration of national film traditions. In consultation with the undergraduate advisor, students will select courses that treat similar or related issues within a relatively restricted historical scope.","courses":[1102,1103,501,874,774,841,1104,1105,1106,1107,548,748,749,783,1108,1109,791,792]},
{"id":"H1ENG016","title":"Media, Culture and Communication","dept":"ENG","division":"Humanities","description":"This cluster focuses on oral, written, and visual communication, in both the theoretical study of writing and media and the practical applications of journalism, publishing and debate.","courses":[1110,1111,1112,1113,1114,1115,1116,1117,644,1118,1119,1120,1121,1122,1123,1124,1125,1125,1126,1127,1128,1129,1130,1131,333,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141]},
{"id":"H1ENG018","title":"Theatre Production and Performance","dept":"ENG","division":"Humanities","description":"A cluster allowing students to study various aspects of theater performance, acting, and theatrical technique.","courses":[1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167]},
{"id":"H1FR002","title":"Textual Analysis of Literature in French","dept":"MLC","division":"Humanities","description":"This cluster allows students to develop their skills in textual analysis through close readings of related literary works across the French and Francophone traditions.","courses":[811,812,1168,1169,1170,788,1171,1172,1173]},
{"id":"H1FR004","title":"Studies in Francophone Cultures","dept":"MLC","division":"Humanities","description":"This cluster allows students to focus on the analysis of literature and culture of French expression in Africa and the Americas in the light of contemporary critical theory.","courses":[786,789,1174,1175,1176,1171,1172,1173]},
{"id":"H1FMS012","title":"International Cinemas","dept":"FMS","division":"Humanities","description":"This cluster encourages the study of national cinemas in a comparative framework. Students are encouraged to take courses from two different traditions.","courses":[1111,1121,1122,1123,548,549,1177,748,749,783,1178,501,800,1179,791,1127,1180,774,838]},
{"id":"H1FMS001","title":"The Art of Film","dept":"FMS","division":"Humanities","description":"This cluster acquaints students with basic techniques of film analysis and with the development of cinema as an art form and a technology.","courses":[1111,1121,1122,1123,1125,669,1181,1182,1130,837,1126,268,1124,1124,1124,1124,1183,1129,1129,1129,1184]},
{"id":"H1FMS002","title":"Media Studies","dept":"FMS","division":"Humanities","description":"This cluster focuses on the history, theory, and analysis of visual and electronic media and the cultures they help to produce.","courses":[1112,669,919,333,1181,1182,1135,1130,1128,333,1185]},
{"id":"H1FMS003","title":"Film History","dept":"FMS","division":"Humanities","description":"This cluster allows the student to explore the general evolution of cinematic form, while encouraging more specific historical focus on a tradition, a genre, or a region.","courses":[1121,1122,1123,837,1125,791,774]},
{"id":"H1FMS006","title":"Production","dept":"FMS","division":"Humanities","description":"This cluster is designed for the student whose primary interests and goals lie in studio work -- film or video production, photography or computer graphics. Students may combine a specialization in one medium with training in an allied medium, or in critical approaches to their chosen medium.","courses":[25,1186,1187,1188,1189,25,334,1190,1191,1112,1111,23,24,1192,1193,1194]},
{"id":"H1ENG008","title":"Modern and Contemporary Literature","dept":"ENG","division":"Humanities","description":"This cluster explores the literature and culture of the twentieth century -- a time marked by confusion and crisis, chaos and catastrophe. It was also a time of innovation and experiment, giving rise to radically new and exciting forms of literary expression. This cluster invites students to explore and compare some of the distinct genres of the modern era.","courses":[1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1134,1111,1121,1122,1123,1124,1125,1127]},
{"id":"H1ENG002","title":"Gender and Writing","dept":"ENG","division":"Humanities","description":"This cluster focuses on gender and its impact on writing. What does it mean in a specific cultural or historical moment to be a man or a woman, and how does it affect the way literature is read and written?","courses":[1205,1208,1120,333]},
{"id":"H1ENG006","title":"American and African American Studies","dept":"ENG","division":"Humanities","description":"Students interested in the diverse traditions and cultures of the United States can pursue and develop those interests in this cluster. What is an American? Is there a distinctive American tradition in literature or culture? How do Americans negotiate their multiethnic, multiracial identity? Students in this cluster can pursue a distinct track in African American literature and culture.","courses":[1209,1210,1211,1212,1213,1196,1214,121,1202,1205,1215,1216,1217]},
{"id":"H1ENG007","title":"Medieval Studies","dept":"ENG","division":"Humanities","description":"The \"Middle Ages\" was a term coined in the early modern era to describe that period of history, and its attendant cultures, that was defined by the demise of the classical world and the beginning of the \"Renaissance,\" although these lines of demarcation can be challenged. This cluster explores the literature and language of England from the ninth to the sixteenth centuries, as well as the roots that contributed to it (Classical and Scriptural Backgrounds) and modern adaptations of it (what we call \"medievalism\").","courses":[949,1218,1219,1220,950,1221,951,952,1205,1222]},
{"id":"H1ENG009","title":"Novels","dept":"ENG","division":"Humanities","description":"Novels have always been a popular literary form; some would argue that they are the most sigificant literary development of the modern era. This cluster allows students to investigate the appeal of novels and the power of different storytelling traditions.","courses":[1223,1224,1225,1213,121,1197,1202,1205,332,1206,1125,1217,1226,1227]},
{"id":"H1ENG012","title":"Poems, Poetry, and Poetics","dept":"ENG","division":"Humanities","description":"This cluster focuses on the history, theory, and practice of verse expression in the English language.","courses":[1228,951,986,1229,1199,1203,1230,332]},
{"id":"H1ENG010","title":"Great Books, Great Authors","dept":"ENG","division":"Humanities","description":"People have always associated the study of literature with its great authors, its great books. But the idea of what constitutes canonical \"greatness\" changes from age to age. This cluster introduces students not only to traditional canonical authors and works, but to the new voices that we count as outstanding as time unfolds, or as emphases change.","courses":[1231,1232,949,1218,1195,951,952,1233,986,1205,1129,1217]},
{"id":"H1ENG015","title":"Creative Writing","dept":"ENG","division":"Humanities","description":"This cluster gives students a chance to write original poetry and fiction and to study influential modern and contemporary writers with an eye to developing their own style.","courses":[1234,1223,1228,1142,1235,1236,1237,1226,1238,1239,1227,1240,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1217]},
{"id":"H1ENG011","title":"Plays, Playwrights, and Theater","dept":"ENG","division":"Humanities","description":"This cluster concentrates on dramatic literature and history, with one segment of production/performance emphasis.","courses":[1110,1232,1142,1221,1241,1201,1152,1233,1158,1159,1160,1161,1162,1163,1164,1165,1166]},
{"id":"H1DAN010","title":"Dance and Performance","dept":"DAN","division":"Humanities","description":"This cluster is designed for the student interested in the art of dance and performance. Through the study of dance technique and theory as well as the context within which dance exists in the field, students will have opportunities to experience, view and discuss the art of dance, performance, and creative expression.","courses":[1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269]},
{"id":"H1CLT002","title":"Gender and Literary Studies","dept":"MLC","division":"Humanities","description":"This cluster offers a variety of feminist approaches to the study of literature and film. It allows the student to choose a historical focus on one literary tradition, or to pursue comparative analysis of national traditions.","courses":[859,1105,749,1270,1271,1272,1273,753,545,1274]},
{"id":"H1ENG001","title":"Literature and Cultural Identity","dept":"ENG","division":"Humanities","description":"In this cluster students can work in a range of courses involving questions of national, ethnic and racial identity. How do issues of ethnic and racial identity figure in forms of literary and cultural expression for authors and for readers? How does our own cultural identity affect the way we read and think about literature?","courses":[1209,1210,1214,121,332,1216,1222,1127,1136]},
{"id":"H1DAN006","title":"Improvisation and Creative Process","dept":"DAN","division":"Humanities","description":"This cluster encourages students to discover the potential of their own creative energies. Through reading, attending lecture-demonstrations, discussion, and improvisation, we explore the creative process.","courses":[1249,1255,1255,1275,1246,1267,1247,1248,1250,1276,1253,1254,1256,1277,1259,1278,1262,1279,1266]},
{"id":"H1CLT004","title":"Comparative Cultural Studies","dept":"MLC","division":"Humanities","description":"This cluster offers training in literary and cultural analysis with specific attention to national cultures. Students may choose to focus on one national tradition or they may choose a comparative framework.","courses":[859,786,1174,563,846,565,463,353,702,1044,1045,352,1271,753,545,1175,1176,1173,1168,1169,1170,788,1171,862,694,706,355,1280,803,564,840,1281,779,808,354,824,825]},
{"id":"H1DAN007","title":"Movement and Culture","dept":"DAN","division":"Humanities","description":"In this cluster students will have the opportunity to investigate theoretically and experientially movement and dance from different cultures. The goal is to increase knowledge and understanding of the rich and varied roles of movement forms around the world with a focus on community.","courses":[1282,1259,1278,1242,1243,1245,1248,1249,1251,1253,1254,930,1256,1257,1283,1284,1258,1277,1285,1286,1260,1262,1287,1288,1264,1265,1266]},
{"id":"H1DAN009","title":"Mind-Body Somatics","dept":"DAN","division":"Humanities","description":"This cluster explores multiple perspectives of somatic approaches to movement repatterning, teaching how to change maladaptive movement patterns in order to develop new, more integrated movement. Valuable for the dancer and non-dancer.","courses":[1248,1249,1289,1259,1285,1286,1261,1290,1291,1276,1252,1254,1277,1278,1292,1275,1242]},
{"id":"H1CLT001","title":"Introduction to Comparative Literature","dept":"MLC","division":"Humanities","description":"This cluster is designed to provide considerable flexibility for the student who wishes to explore the relations among literature, culture, and literary and cultural theory.","courses":[859,1293,1294,789,1043,1295,786,1174,565,463,353,1274,1173,1296,1170,862,868,861,1297,834,1298,1299,1300,954,776,1301,780,803,354,355]},
{"id":"H1CHI001","title":"Chinese Language","dept":"MLC","division":"Humanities","description":"This cluster introduces students to basic language skills (reading, writing, speaking, listening).","courses":[1302,1303,1304,1305,1306]},
{"id":"H1ASL002","title":"Advanced Proficiency in American Sign Language","dept":"ASL","division":"Humanities","description":"For students entering the College with prior proficiency in American Sign Language, this cluster offers intermediate and advanced sign courses as well as advanced courses on the structure, literature, and translation of the language. Students must be approved for entry into ASL 105: INTERMED AMERICAN SIGN LANG by the Director of the ASL Program.","courses":[1307,1308,148,127,1309,1310]},
{"id":"H1ASL001","title":"Basic Proficiency in American Sign Language","dept":"ASL","division":"Humanities","description":"Basic Proficiency in American Sign Language Beginning and intermediate level courses in American Sign Language, the sign language used by the deaf community of the United States and parts of Canada. Students completing this cluster will have basic proficiency in expressing themselves in ASL as well as comprehending basic conversational ASL.","courses":[1311,1312,1307]},
{"id":"H1AH012","title":"Gender, Ethnicity, Identity","dept":"AAH","division":"Humanities","description":"These courses explore the ways in which art can be qualified or shaped according to gender, race, and sexuality. Students choose a mix of three introductory-level and advanced-level courses.","courses":[1190,1313,1314,1315,530,1316,1317,1318,1319,1320,1321]},
{"id":"H1AH011","title":"Architecture, Space, and Institutions","dept":"AAH","division":"Humanities","description":"This cluster introduces the student to a variety of approaches to the history, theory and practice of architecture, space, museums and the culture of display. Students choose one introductory-level and two advanced-level courses.","courses":[1190,1313,1322,1323,1324,18,19,21,22,27,1325,1326,1327,1328,330,1329,1330,1331,1332]},
{"id":"H1AH010","title":"Art History and Visual Culture","dept":"AAH","division":"Humanities","description":"Courses present a historical and theoretic appraisal of the processes by which we engage with images in the interests of artistic representation, and how such representation shapes our sense of both contemporary and earlier art. Students choose one introductory-level and two advanced-level courses.","courses":[1190,1313,575,1333,1191,1323,1324,1334,1335,1336,1337,1338,1339,1340,1327,1341,1342,493,1343,1344,1345,1346,1347,1348,268,1349,1014,785,1121,1122]},
{"id":"H1AAS001","title":"Visual and Literary Arts of the Diaspora","dept":"AAS","division":"Humanities","description":"This cluster seeks to educate students about the significance of visual arts and literature in the lived experience of the African Diaspora.","courses":[494,912,495,1317,71,1350,1175,747,1351,94,1352,121,100,1214,87,1206,1215]},
{"id":"Brazil, Russia, India, China (S1HIS018","title":"BRIC Nations History","dept":"HIS","division":"Social Sciences","description":"This cluster familiarizes students with the histories of current rising world economic and political powers and makes them better informed 21st-century global citizens.","courses":[497,344,345,552,553,557,558,561,536,1353,118,562,376,350,463,353,355,543]}
],
"courses":[
{"title":"INTRODUCTION TO LINGUISTIC ANALYSIS","listings":[{"dept":"LIN","cn":"110"}],"clusters":[125,126,127,128,132,133]},
{"title":"INTRODUCTION TO GRAMMATICAL SYSTEMS","listings":[{"dept":"LIN","cn":"220"}],"clusters":[0,127,128,132]},
{"title":"SYNTACTIC THEORY","listings":[{"dept":"LIN","cn":"260"}],"clusters":[0]},
{"title":"PHRASE STRUCTURE GRAMMARS","listings":[{"dept":"LIN","cn":"261"}],"clusters":[0]},
{"title":"TOPICS IN EXPERIMENTAL SYNTAX","listings":[{"dept":"LIN","cn":"262"}],"clusters":[0]},
{"title":"INTRODUCTION TO LINGUISTIC ANALYSIS","listings":[{"dept":"LIN","cn":"110"}],"clusters":[125,126,127,128,132,133]},
{"title":"COLLOQUIUM IN WOMENS STUDIES","listings":[{"dept":"WST","cn":"200"}],"clusters":[1,5,8,17,18,54,55,56,57]},
{"title":"PHIL FOUNDATIONS IN FEMINISM","listings":[{"dept":"WST","cn":"205"},{"dept":"PHL","cn":"171"}],"clusters":[1,8,56]},
{"title":"FEMINISM GENDER AND HEALTH","listings":[{"dept":"WST","cn":"206"}],"clusters":[1,5,8,17]},
{"title":"INTERNATIONAL HUMAN RIGHTS","listings":[{"dept":"WST","cn":"227"},{"dept":"HIS","cn":"303"}],"clusters":[1,17]},
{"title":"MUSIC AND THE MIND","listings":[{"dept":"BCS","cn":"260"}],"clusters":[2,132,133,134,202]},
{"title":"NEURAL FOUNDATIONS OF BEHAVIOR","listings":[{"dept":"BCS","cn":"110"}],"clusters":[2,21,22,24,25,26,27,28,133,134]},
{"title":"FOUNDATIONS OF COGNITIVE SCIENCE","listings":[{"dept":"BCS","cn":"111"}],"clusters":[2,22,23,27,28,133,134]},
{"title":"ELEMENTS OF MUSIC","listings":[{"dept":"MUR","cn":"101"}],"clusters":[2,123,192,193,196,202]},
{"title":"INTRODUCTION TO MUSIC THEORY","listings":[{"dept":"MUR","cn":"110"}],"clusters":[2,123,192,193,196,202]},
{"title":"THEORY I","listings":[{"dept":"MUR","cn":"111"}],"clusters":[2,123,192,193,196,202]},
{"title":"MODEL COMPOSITION (MUST BE TAKEN WITH TH 161)","listings":[{"dept":"TH","cn":"101"}],"clusters":[2]},
{"title":"AURAL SKILLS (MUST BE TAKEN WITH TH 101)","listings":[{"dept":"TH","cn":"161"}],"clusters":[2]},
{"title":"INTRODUCTION TO DRAWING","listings":[{"dept":"SA","cn":"111"}],"clusters":[3,130,256]},
{"title":"CREATING ARCHITECTURE - AN INTRODUCTION TO","listings":[{"dept":"SA","cn":"114"}],"clusters":[3,130,256]},
{"title":"INTRODUCTION TO PAINTING","listings":[{"dept":"SA","cn":"121"}],"clusters":[3,130]},
{"title":"INTRODUCTION TO SCULPTURE","listings":[{"dept":"SA","cn":"131"}],"clusters":[3,130,256]},
{"title":"INTRODUCTION TO SCULPTURE: RE)COLLECTING THE OBJECT","listings":[{"dept":"SA","cn":"132"}],"clusters":[3,73,130,256]},
{"title":"INTRODUCTION TO PHOTOGRAPHY","listings":[{"dept":"SA","cn":"141"}],"clusters":[3,130,234]},
{"title":"INTRODUCTION TO DIGITAL ART","listings":[{"dept":"SA","cn":"151"}],"clusters":[3,130,234]},
{"title":"INTRODUCTION TO VIDEO ART","listings":[{"dept":"SA","cn":"161"}],"clusters":[3,130,234,234]},
{"title":"INTRODUCTION TO PRINTMAKING","listings":[{"dept":"SA","cn":"172"}],"clusters":[3]},
{"title":"INTRODUCTION TO STUDIO PRACTICE","listings":[{"dept":"SA","cn":"190"}],"clusters":[3,130,256]},
{"title":"ADVANCED DRAWING","listings":[{"dept":"SA","cn":"212"}],"clusters":[3,130]},
{"title":"ADVANCED PAINTING","listings":[{"dept":"SA","cn":"222A"}],"clusters":[3,130]},
{"title":"ADVANCED PAINTING","listings":[{"dept":"SA","cn":"222B"}],"clusters":[3,130]},
{"title":"ADVANCED PAINTING","listings":[{"dept":"SA","cn":"222C"}],"clusters":[3,130]},
{"title":"ADVANCED SCULPTURE","listings":[{"dept":"SA","cn":"232A"}],"clusters":[3,130]},
{"title":"ADVANCED SCULPTURE","listings":[{"dept":"SA","cn":"232B"}],"clusters":[3,130]},
{"title":"ADVANCED SCULPTURE","listings":[{"dept":"SA","cn":"232C"}],"clusters":[3,130]},
{"title":"ADVANCED PHOTOGRAPHY/DIGITAL ART","listings":[{"dept":"SA","cn":"242A"}],"clusters":[3,130]},
{"title":"ADVANCED PHOTOGRAPHY/DIGITAL ART","listings":[{"dept":"SA","cn":"242B"}],"clusters":[3,130]},
{"title":"ADVANCED PHOTOGRAPHY/DIGITAL ART","listings":[{"dept":"SA","cn":"242C"}],"clusters":[3,130]},
{"title":"EXPANDED PHOTOGRAPHY","listings":[{"dept":"SA","cn":"244A"}],"clusters":[3,130]},
{"title":"EXPANDED PHOTOGRAPHY","listings":[{"dept":"SA","cn":"244B"}],"clusters":[3,130]},
{"title":"EXPANDED PHOTOGRAPHY","listings":[{"dept":"SA","cn":"244C"}],"clusters":[3,130]},
{"title":"ADVANCED DIGITAL ART: NATURE 2.0","listings":[{"dept":"SA","cn":"253A"}],"clusters":[3,130]},
{"title":"ADVANCED DIGITAL ART: NATURE 2.0","listings":[{"dept":"SA","cn":"253B"}],"clusters":[3,130]},
{"title":"ADVANCED DIGITAL ART: NATURE 2.0","listings":[{"dept":"SA","cn":"253C"}],"clusters":[3,130]},
{"title":"ADVANCED VIDEO ART","listings":[{"dept":"SA","cn":"262A"}],"clusters":[3,130]},
{"title":"ADVANCED VIDEO ART","listings":[{"dept":"SA","cn":"262B"}],"clusters":[3,130]},
{"title":"ADVANCED VIDEO ART","listings":[{"dept":"SA","cn":"262C"}],"clusters":[3,130]},
{"title":"BOOKMAKING","listings":[{"dept":"SA","cn":"273A"}],"clusters":[3,130]},
{"title":"BOOKMAKING","listings":[{"dept":"SA","cn":"273B"}],"clusters":[3,130]},
{"title":"BOOKMAKING","listings":[{"dept":"SA","cn":"273C"}],"clusters":[3,130]},
{"title":"PERFORMANCE ART & SOCIAL INTERVENTION","listings":[{"dept":"SA","cn":"281A"}],"clusters":[3,130]},
{"title":"PERFORMANCE ART & SOCIAL INTERVENTION","listings":[{"dept":"SA","cn":"281B"}],"clusters":[3,130]},
{"title":"PERFORMANCE ART & SOCIAL INTERVENTION","listings":[{"dept":"SA","cn":"281C"}],"clusters":[3,130]},
{"title":"ADVANCED PRINTMAKING","listings":[{"dept":"SA","cn":"282A"}],"clusters":[3,130]},
{"title":"ADVANCED PRINTMAKING","listings":[{"dept":"SA","cn":"282B"}],"clusters":[3,130]},
{"title":"ADVANCED PRINTMAKING","listings":[{"dept":"SA","cn":"282C"}],"clusters":[3,130]},
{"title":"MARKINGS METHODS & MATERIALS","listings":[{"dept":"SA","cn":"292A"}],"clusters":[3,130]},
{"title":"MARKINGS METHODS & MATERIALS","listings":[{"dept":"SA","cn":"292B"}],"clusters":[3,130]},
{"title":"MARKINGS METHODS & MATERIALS","listings":[{"dept":"SA","cn":"292C"}],"clusters":[3,130]},
{"title":"INTERDISCIPLINARY STUDIO","listings":[{"dept":"SA","cn":"293A"}],"clusters":[3,130]},
{"title":"INTERDISCIPLINARY STUDIO","listings":[{"dept":"SA","cn":"293B"}],"clusters":[3,130]},
{"title":"INTERDISCIPLINARY STUDIO","listings":[{"dept":"SA","cn":"293C"}],"clusters":[3]},
{"title":"LANGUAGE AND SEXUALITY","listings":[{"dept":"WST","cn":"103"},{"dept":"LIN","cn":"103"}],"clusters":[4,17,57]},
{"title":"SEXUALITY AND GENDER","listings":[{"dept":"WST","cn":"271"},{"dept":"GER","cn":"220"}],"clusters":[4,55,57]},
{"title":"GENDER & SEXUALITY IN THE 20TH CENTURY","listings":[{"dept":"WST","cn":"272"},{"dept":"GER","cn":"272"}],"clusters":[4,57]},
{"title":"INTRODUCTION TO MEDICAL ANTHROPOLOGY","listings":[{"dept":"WST","cn":"115"},{"dept":"ANT","cn":"102"}],"clusters":[5]},
{"title":"PSYCHOLOGY OF GENDER","listings":[{"dept":"WST","cn":"266"},{"dept":"CSP","cn":"267"}],"clusters":[5]},
{"title":"ECONOMIES & SOCIETIES OF LATIN AMER & CARIB","listings":[{"dept":"AAS","cn":"252"},{"dept":"HIS","cn":"250"}],"clusters":[6,10,11]},
{"title":"ECO &SOC CONDITNS OF AFR-AM","listings":[{"dept":"AAS","cn":"253"},{"dept":"ECO","cn":"253"}],"clusters":[6,9]},
{"title":"EVOLUTION OF THE WORLD ECONOMY SINCE 1500","listings":[{"dept":"AAS","cn":"371"},{"dept":"HIS","cn":"306"}],"clusters":[6]},
{"title":"THE ATLANTIC SLAVE TRADE","listings":[{"dept":"AAS","cn":"375"},{"dept":"HIS","cn":"311"}],"clusters":[6,11]},
{"title":"SOCIAL MOVEMENTS IN U.S.","listings":[{"dept":"AAS","cn":"220"},{"dept":"PSC","cn":"220"}],"clusters":[7,9,258]},
{"title":"20TH CEN AFRICAN-AMER POLITICAL THOUGHT","listings":[{"dept":"AAS","cn":"223"},{"dept":"PSC","cn":"203"}],"clusters":[7]},
{"title":"AFRICAN AMERICAN POLITICS","listings":[{"dept":"AAS","cn":"224"},{"dept":"PSC","cn":"224"}],"clusters":[7]},
{"title":"RACE & POLITICAL REPRESENTATION","listings":[{"dept":"AAS","cn":"225"},{"dept":"PSC","cn":"225"}],"clusters":[7,9,12]},
{"title":"POPULATIONS & RESOURCES","listings":[{"dept":"AAS","cn":"232"}],"clusters":[7]},
{"title":"RACE POLITICS & GLOBAL SOCIETY","listings":[{"dept":"AAS","cn":"265"},{"dept":"PSC","cn":"265"}],"clusters":[7]},
{"title":"RACE & POLITICS IN AMERICAN HISTORY","listings":[{"dept":"PSC","cn":"124"}],"clusters":[7]},
{"title":"POLITICAL PARTICIPATION IN THE U.S.","listings":[{"dept":"PSC","cn":"214"}],"clusters":[7,82]},
{"title":"RACE AND ETHNIC POLITICS","listings":[{"dept":"PSC","cn":"228"}],"clusters":[7,9,79,82,85,86]},
{"title":"URBAN CHANGE & CITY POLITICS","listings":[{"dept":"PSC","cn":"241"}],"clusters":[7,79,82,85,86,114]},
{"title":"AFRICAN AMERICAN HISTORY II","listings":[{"dept":"AAS","cn":"142"},{"dept":"HIS","cn":"171"}],"clusters":[9,11]},
{"title":"THE CIVIL WAR","listings":[{"dept":"AAS","cn":"249"},{"dept":"HIS","cn":"269"}],"clusters":[9,11]},
{"title":"HISTORY OF RACE IN AMERICA","listings":[{"dept":"AAS","cn":"256"},{"dept":"HIS","cn":"274"}],"clusters":[9,11]},
{"title":"BLACK FAMILY IN SLAVERY & FREEDOM","listings":[{"dept":"AAS","cn":"356"},{"dept":"HIS","cn":"364"}],"clusters":[9,11]},
{"title":"ROCHESTER POLITICS AND PLACES","listings":[{"dept":"AAS","cn":"194Q"},{"dept":"PSC","cn":"194Q"}],"clusters":[9,12]},
{"title":"MARTIN & MALCOLM IN AMERICA: REL. & THE CIVIL RIGHTS MOVEMENT","listings":[{"dept":"AAS","cn":"228"},{"dept":"REL","cn":"226"}],"clusters":[9,12]},
{"title":"SLAVERY & 20TH CEN AFRICAN-AMERICAN NOVEL","listings":[{"dept":"AAS","cn":"245"},{"dept":"ENG","cn":"248"}],"clusters":[9,10,258]},
{"title":"CRY FREEDOM: LIBERATION THEOLOGIES","listings":[{"dept":"AAS","cn":"246"},{"dept":"REL","cn":"234"}],"clusters":[9,12]},
{"title":"MADNESS & POSTCOLONIAL LITERATURE","listings":[{"dept":"AAS","cn":"280"},{"dept":"FR","cn":"272"}],"clusters":[9,10]},
{"title":"CONTEMPORARY COLONIAL AND AFRICA","listings":[{"dept":"AAS","cn":"106"},{"dept":"HIS","cn":"110"}],"clusters":[10,11]},
{"title":"THE THIRD WORLD","listings":[{"dept":"AAS","cn":"202"},{"dept":"HIS","cn":"201"}],"clusters":[10,11]},
{"title":"EVOLUTION OF THE WORLD ECONOMIC ORDER SINCE THE 16TH CEN.","listings":[{"dept":"AAS","cn":"372"},{"dept":"HIS","cn":"306"}],"clusters":[10]},
{"title":"MUTILATED BODIES MUTILATED DISCOURSE","listings":[{"dept":"AAS","cn":"244"},{"dept":"FR","cn":"243"}],"clusters":[10]},
{"title":"THE CARIBBEAN NOVEL & ITS THEORY","listings":[{"dept":"AAS","cn":"272"},{"dept":"FR","cn":"274"}],"clusters":[10,258]},
{"title":"AFRICAN-AMERICAN HISTORY I","listings":[{"dept":"AAS","cn":"141"},{"dept":"HIS","cn":"170"}],"clusters":[11]},
{"title":"AFRICA'S SLEEPING GIANT - NIGERIA SINCE THE ISLAMIC REVOL. OF 1804","listings":[{"dept":"AAS","cn":"260"},{"dept":"HIS","cn":"212"}],"clusters":[11]},
{"title":"THE AMERICAN SOUTH","listings":[{"dept":"AAS","cn":"288"},{"dept":"HIS","cn":"268"}],"clusters":[11]},
{"title":"EVOL. OF THE WORLD ECO. ORDER SINCE THE 16TH C.","listings":[{"dept":"AS","cn":"371"},{"dept":"HIS","cn":"306"}],"clusters":[11]},
{"title":"CIVIL RIGHTS IN AMERICA","listings":[{"dept":"AAS","cn":"271"},{"dept":"HIS","cn":"271"}],"clusters":[12]},
{"title":"AFRICAN AMERICAN AUTOBIOGRAPHY","listings":[{"dept":"AAS","cn":"230"},{"dept":"ENG","cn":"230"}],"clusters":[12,258]},
{"title":"CULTURAL ANTHROPOLOGY","listings":[{"dept":"ANT","cn":"101"}],"clusters":[13,14,15,16]},
{"title":"CULTURE & CONSUMPTION","listings":[{"dept":"ANT","cn":"226"}],"clusters":[13,16]},
{"title":"WAR, GENOCIDE & JUSTICE","listings":[{"dept":"ANT","cn":"230"}],"clusters":[13,118,215]},
{"title":"LATIN AMERICAN IMMIGRATION","listings":[{"dept":"ANT","cn":"239"}],"clusters":[13,15,16,97]},
{"title":"ANTHROPOLOGICAL APPROACHES TO GENER & SEXUALTY","listings":[{"dept":"ANT","cn":"246"}],"clusters":[13,16]},
{"title":"GLOBAL CULTURE","listings":[{"dept":"ANT","cn":"266"}],"clusters":[13,15,16]},
{"title":"SCIENCE, CULTURE & EXPERTISE","listings":[{"dept":"ANT","cn":"268"}],"clusters":[13]},
{"title":"CREATIVE ETHNOGRAPHY","listings":[{"dept":"ANT","cn":"274"}],"clusters":[13]},
{"title":"WORLDS OF MUSIC","listings":[{"dept":"MUR","cn":"121"}],"clusters":[13,193,195,202]},
{"title":"INTRO TO MEDICAL ANTHROPOLOGY","listings":[{"dept":"ANT","cn":"102"}],"clusters":[14,15]},
{"title":"MEDICAL ANTHROPOLOGY","listings":[{"dept":"ANT","cn":"216"}],"clusters":[14,15]},
{"title":"ANTHROPOLOGY OF DEVELOPMENT","listings":[{"dept":"ANT","cn":"224"}],"clusters":[15,16,74,74]},
{"title":"(IL)LEGAL ANTHROPOLOGY","listings":[{"dept":"ANT","cn":"231"}],"clusters":[15,118,215]},
{"title":"CHINESE SOCIETY AFTER MAO","listings":[{"dept":"ANT","cn":"257"}],"clusters":[15,16,98]},
{"title":"ANTHROPOLOGY OF SOCIALISM & POST SOCIALISM","listings":[{"dept":"ANT","cn":"267"}],"clusters":[15,16]},
{"title":"CONTEMPORARY ISSUES & ANTHROPOLOGY","listings":[{"dept":"ANT","cn":"104"}],"clusters":[15,16]},
{"title":"WORLDS OF MUSIC","listings":[{"dept":"ANT","cn":"213"}],"clusters":[16]},
{"title":"CULTURE & RELIGION IN THE INDIAN OCEAN","listings":[{"dept":"ANT","cn":"262"}],"clusters":[16,259]},
{"title":"ISLAM AND GLOBAL POLITICS","listings":[{"dept":"ANT","cn":"264"}],"clusters":[16,183]},
{"title":"INTERNATIONAL HUMAN RIGHTS","listings":[{"dept":"WST","cn":"296"},{"dept":"HIS","cn":"314"}],"clusters":[17]},
{"title":"CONTEMP. BLACK WOMEN WRITERS","listings":[{"dept":"ENG","cn":"230"}],"clusters":[18,54,237,239,246,258]},
{"title":"INTRO TO AFRICAN AMER. LIT.","listings":[{"dept":"WST","cn":"155"},{"dept":"ENG","cn":"116"}],"clusters":[18]},
{"title":"GENDER & REPRESENTATION IN NATIVE AMERICAN ART","listings":[{"dept":"WST","cn":"224"},{"dept":"AH","cn":"276"}],"clusters":[18]},
{"title":"TONI MORRISON","listings":[{"dept":"WST","cn":"243"},{"dept":"ENG","cn":"243"}],"clusters":[18,54,54]},
{"title":"RACE AND GENDER IN POPULAR FILM","listings":[{"dept":"WST","cn":"260"},{"dept":"AH","cn":"213"}],"clusters":[18,55]},
{"title":"U.S. LATINOS/LATINAS","listings":[{"dept":"WST","cn":"278"},{"dept":"SP","cn":"282"}],"clusters":[18]},
{"title":"INTRO TO ASL LITERATURE","listings":[{"dept":"ASL","cn":"201"}],"clusters":[19,253]},
{"title":"HIS&CULT OF AMER DEAF CMMNTY","listings":[{"dept":"ASL","cn":"202"}],"clusters":[19]},
{"title":"SOCIOLINGSTCS OF DEAF COMNTY","listings":[{"dept":"ASL","cn":"250"}],"clusters":[19]},
{"title":"PRINCIPLES OF BIOLOGY I","listings":[{"dept":"BIO","cn":"110"}],"clusters":[20,29,33,70,108,115,137]},
{"title":"BIOLOGY PERSPECTIVES I","listings":[{"dept":"BIO","cn":"112"}],"clusters":[20,29,33,70,108,115,137]},
{"title":"BASIC NEUROBIOLOGY","listings":[{"dept":"BCS","cn":"240"}],"clusters":[20]},
{"title":"AUDITORY PERCEPTION","listings":[{"dept":"BCS","cn":"221"}],"clusters":[20,22,25,134]},
{"title":"NEUROPSYCHOLOGY","listings":[{"dept":"BCS","cn":"242"}],"clusters":[20,21,22,52]},
{"title":"NEUROCHEMICAL FOUNDATIONS OF BEHAVIOR","listings":[{"dept":"BCS","cn":"243"}],"clusters":[20]},
{"title":"NEUROETHOLOGY","listings":[{"dept":"BCS","cn":"244"}],"clusters":[20,22,26]},
{"title":"SENSORY & MOTOR NEUROSCIENCE","listings":[{"dept":"BCS","cn":"245"}],"clusters":[20,25]},
{"title":"BIOLOGY OF MENTAL DISORDERS","listings":[{"dept":"BCS","cn":"246"}],"clusters":[20,21,52]},
{"title":"DEVELOPMENTAL NEUROBIOLOGY","listings":[{"dept":"BCS","cn":"249"}],"clusters":[20]},
{"title":"PERCEPTION & ACTION","listings":[{"dept":"BCS","cn":"151"}],"clusters":[22,25,28,104]},
{"title":"LANGUAGE & PSYCHOLINGUISTICS","listings":[{"dept":"BCS","cn":"152"}],"clusters":[22,23,133]},
{"title":"COGNITION","listings":[{"dept":"BCS","cn":"153"}],"clusters":[22,23]},
{"title":"ANIMAL MINDS","listings":[{"dept":"BCS","cn":"183"}],"clusters":[22,23,26]},
{"title":"SOCIAL COGNITION","listings":[{"dept":"CSP","cn":"210"}],"clusters":[22,23,49,51]},
{"title":"DEVELOPMENT OF MIND & BRAIN","listings":[{"dept":"BCS","cn":"172"}],"clusters":[23,24,27,28]},
{"title":"LANGUAGE DEVELOPMENT","listings":[{"dept":"BCS","cn":"259"}],"clusters":[23,24]},
{"title":"LANGUAGE USE & UNDERSTANDING","listings":[{"dept":"BCS","cn":"261"}],"clusters":[23,133]},
{"title":"SIGNED LANGUAGE STRUCTURE","listings":[{"dept":"BCS","cn":"264"}],"clusters":[23,253]},
{"title":"LANGUAGE AND THE BRAIN","listings":[{"dept":"BCS","cn":"265"}],"clusters":[23,133]},
{"title":"THE INTELLIGENT EYE","listings":[{"dept":"BCS","cn":"220"}],"clusters":[25]},
{"title":"VISION AND THE EYE","listings":[{"dept":"BCS","cn":"223"}],"clusters":[25]},
{"title":"THEORY OF PERCEPTION","listings":[{"dept":"PHL","cn":"327"}],"clusters":[25]},
{"title":"ANIMAL BEHAVIOR","listings":[{"dept":"BIO","cn":"260"}],"clusters":[26,29,88]},
{"title":"GENES, GERMS & GENOMICS: AN INTRO. TO MODERN BIOLOGY","listings":[{"dept":"BIO","cn":"101"}],"clusters":[29,33,115]},
{"title":"PRINCIPLES OF BIOLOGY II","listings":[{"dept":"BIO","cn":"111"}],"clusters":[29,70,108,115]},
{"title":"BIOLOGY PERSPECTIVES II [NOTE: AP score of 4 or 5 required]","listings":[{"dept":"BIO","cn":"113"}],"clusters":[29,108,115]},
{"title":"ECOSYSTEM CONSERVATION & HUMAN SOCIETY","listings":[{"dept":"BIO","cn":"104"}],"clusters":[29,33,70,72,88,110,115]},
{"title":"GENETICS & THE HUMAN GENOME","listings":[{"dept":"BIO","cn":"190"}],"clusters":[29]},
{"title":"PRINCIPLES OF GENETICS","listings":[{"dept":"BIO","cn":"198"}],"clusters":[29]},
{"title":"LECTURES IN PHYSIOLOGY","listings":[{"dept":"BIO","cn":"201"}],"clusters":[29]},
{"title":"MAMMALIAN ANATOMY","listings":[{"dept":"BIO","cn":"203"}],"clusters":[29]},
{"title":"MAMMALIAN PHYSIOLOGY","listings":[{"dept":"BIO","cn":"204"}],"clusters":[29]},
{"title":"ECOLOGY","listings":[{"dept":"BIO","cn":"263"}],"clusters":[29,88]},
{"title":"INTRO TO BIOMED ENGINEERING","listings":[{"dept":"BME","cn":"101"}],"clusters":[30,108,137]},
{"title":"FUNDAMENTALS OF BIOMECHANICS","listings":[{"dept":"BME","cn":"201"}],"clusters":[30]},
{"title":"BIOMECHANICS LAB (1 credit)","listings":[{"dept":"BME","cn":"201L"}],"clusters":[30]},
{"title":"CALCULUS III","listings":[{"dept":"MTH","cn":"143"}],"clusters":[30,108,140,142,146]},
{"title":"CALCULUS IIA","listings":[{"dept":"MTH","cn":"162"}],"clusters":[30,43,75,105,108,109,140,142,148,149,151,153,155]},
{"title":"CHEMICAL PROCESS ANALYSIS","listings":[{"dept":"CHE","cn":"113"}],"clusters":[31]},
{"title":"GREEN ENERGY","listings":[{"dept":"CHE","cn":"150"}],"clusters":[31,72,108]},
{"title":"FUEL CELLS (2 credits)","listings":[{"dept":"CHE","cn":"258"}],"clusters":[31]},
{"title":"PROCESSING MICROELECTRONIC DEVICES (2 credits)","listings":[{"dept":"CHE","cn":"282"}],"clusters":[31]},
{"title":"INDEPENDENT STUDY (with fac. approval)","listings":[{"dept":"CHE","cn":"391"}],"clusters":[31]},
{"title":"CHEM CONCPTS SYST PRACT I","listings":[{"dept":"CHM","cn":"131"}],"clusters":[32,33,34,35,36,37,108,111,137,139,142]},
{"title":"FRESHMAN ORGANIC CHEMISTRY I","listings":[{"dept":"CHM","cn":"171"}],"clusters":[32,33,34,35,36,37]},
{"title":"CHEM CONCPTS SYST PRACT II","listings":[{"dept":"CHM","cn":"132"}],"clusters":[32,33,34,35,36,37,108]},
{"title":"FRESHMAN ORGANIC CHEMISTRY II","listings":[{"dept":"CHM","cn":"172"}],"clusters":[32,33,34,35,36,37]},
{"title":"THE SOLAR SYSTEM","listings":[{"dept":"AST","cn":"104"}],"clusters":[32,67,111,122,135,143,144]},
{"title":"THE COSMIC ORIGINS OF LIFE","listings":[{"dept":"AST","cn":"106"}],"clusters":[32,67,111,122,135,143,144]},
{"title":"NATURE PHYSICAL WORLD","listings":[{"dept":"PHY","cn":"100"}],"clusters":[32,111,115,117,131,135,143,144]},
{"title":"VISIONS OF THE MULTIVERSE","listings":[{"dept":"PHY","cn":"102"}],"clusters":[32,111,115,117,131,135,143,144]},
{"title":"QUANTUM REALITY","listings":[{"dept":"PHY","cn":"109"}],"clusters":[32,135,143,144]},
{"title":"REASON AND ARGUMENT","listings":[{"dept":"PHL","cn":"105"}],"clusters":[34,118,210,211,212,213,214,215]},
{"title":"INTRODUCTORY LOGIC","listings":[{"dept":"PHL","cn":"110"}],"clusters":[34,106,118,212,215]},
{"title":"SCIENCE AND REASON","listings":[{"dept":"PHL","cn":"152"}],"clusters":[34,117,144,211,212,214]},
{"title":"PHILOSOPHY OF SCIENCE","listings":[{"dept":"PHL","cn":"252"}],"clusters":[34,212]},
{"title":"ORGANIC CHEMISTRY I","listings":[{"dept":"CHM","cn":"203"}],"clusters":[35]},
{"title":"ORGANIC CHEMISTRY II","listings":[{"dept":"CHM","cn":"204"}],"clusters":[35]},
{"title":"INORGANIC CHEMISTRY","listings":[{"dept":"CHM","cn":"211"}],"clusters":[35]},
{"title":"INTRO GEOLOGICAL SCIENCES","listings":[{"dept":"EES","cn":"101"}],"clusters":[36,68,69,71,72,88,111,115,122]},
{"title":"INTRODUCTION TO ENVIRONMENTAL SCIENCE","listings":[{"dept":"EES","cn":"103"}],"clusters":[36,66,69,70,71,72,73,88,110,111,115]},
{"title":"ENVIRONMENTAL GEOCHEMISTRY","listings":[{"dept":"EES","cn":"216"}],"clusters":[36]},
{"title":"ATMOSPHERIC GEOCHEMISTRY","listings":[{"dept":"EES","cn":"218"}],"clusters":[36]},
{"title":"ENERGY AND SOCIETY","listings":[{"dept":"EES","cn":"219"}],"clusters":[36,66,68,72,88,115]},
{"title":"HISTORY OF TECHNOLOGY","listings":[{"dept":"HIS","cn":"180"}],"clusters":[37,93,95,99,99,103]},
{"title":"HISTORICAL ORIGINS OF MODERN ASTROLOGY","listings":[{"dept":"HIS","cn":"185"}],"clusters":[37,95]},
{"title":"HEALTH, MEDICINE & SOCIAL REFORM","listings":[{"dept":"HIS","cn":"202"}],"clusters":[37,93,95,99,119]},
{"title":"CHANGING CONCEPTS OF HEALTH & ILLNESS","listings":[{"dept":"HIS","cn":"203"}],"clusters":[37,93,95,119]},
{"title":"INTERNATIONAL & GLOBAL HEALTH","listings":[{"dept":"HIS","cn":"204"}],"clusters":[37,93,95,99,103,119]},
{"title":"THE SCIENCE OF PROGRAMMING","listings":[{"dept":"CSC","cn":"171"}],"clusters":[38,39,40,41,42,43,44,45,58,76,106,108]},
{"title":"THE SCIENCE OF DATA STRUCTURES","listings":[{"dept":"CSC","cn":"172"}],"clusters":[38,40,106]},
{"title":"COMPUTATION & FORMAL SYSTEMS","listings":[{"dept":"CSC","cn":"173"}],"clusters":[38,40]},
{"title":"COMPUTER APPLICATIONS","listings":[{"dept":"CSC","cn":"108"}],"clusters":[39,41,42]},
{"title":"THE ART OF PROGRAMMING","listings":[{"dept":"CSC","cn":"161"}],"clusters":[39,41,42,43,44,45,58,76,108]},
{"title":"INTRO TO PROGRAMMING & THE WEB","listings":[{"dept":"CSC","cn":"170"}],"clusters":[39,41,42,44,45]},
{"title":"ECONOMIC STATISTICS","listings":[{"dept":"ECO","cn":"230"}],"clusters":[39,42,62,63]},
{"title":"INTRO TO FINANCIAL MATHEMATICS","listings":[{"dept":"MTH","cn":"210"}],"clusters":[39,153]},
{"title":"COMPUTER ORGANIZATION","listings":[{"dept":"CSC","cn":"252"}],"clusters":[40]},
{"title":"RECREATIONAL GRAPHICS","listings":[{"dept":"CSC","cn":"131"}],"clusters":[41]},
{"title":"VIDEO GAME PROGRAMMING","listings":[{"dept":"CSC","cn":"166"}],"clusters":[41,108]},
{"title":"COMPUTATIONAL MODELS OF MUSIC","listings":[{"dept":"CSC","cn":"198"}],"clusters":[41]},
{"title":"SOCIAL IMPLICATIONS OF COMPUTING","listings":[{"dept":"CSC","cn":"199"}],"clusters":[42,45]},
{"title":"APPLIED DATA ANALYSIS","listings":[{"dept":"PSC","cn":"200"}],"clusters":[42,80,81,82,84,89,105]},
{"title":"POLITICAL INQUIRY","listings":[{"dept":"PSC","cn":"201"}],"clusters":[42,105]},
{"title":"INTRO TO STAT METHODS FOR PSYCH","listings":[{"dept":"PSY","cn":"211"}],"clusters":[42]},
{"title":"APPLIED STAT FOR SOCIAL SCI I","listings":[{"dept":"STT","cn":"211"}],"clusters":[42,76,89,105,149]},
{"title":"APPLIED STT-BIO PHY SCI I","listings":[{"dept":"STT","cn":"212"}],"clusters":[42,76,116,149]},
{"title":"ELEMENTS PROB & MATH STAT","listings":[{"dept":"STT","cn":"213"}],"clusters":[42,76,89,105,116,149]},
{"title":"DISCRETE MATH","listings":[{"dept":"MTH","cn":"150"}],"clusters":[43,153]},
{"title":"HONORS CALCULUS II","listings":[{"dept":"MTH","cn":"172"}],"clusters":[43,75,148]},
{"title":"ENGINEERING COMPUTING","listings":[{"dept":"CSC","cn":"160"}],"clusters":[43,45,108]},
{"title":"CRYPTOGRAPHY","listings":[{"dept":"CSC","cn":"281"}],"clusters":[43]},
{"title":"DESIGN & ANAL. OF EFFIC. ALGORITHMS","listings":[{"dept":"CSC","cn":"282"}],"clusters":[43]},
{"title":"HUMAN COMPUTER INTERACTION","listings":[{"dept":"CSC","cn":"212"}],"clusters":[44]},
{"title":"INTRO TO HUMAN COMPUTER INTERACTION","listings":[{"dept":"DMS","cn":"103"}],"clusters":[44]},
{"title":"WEB PROGRAMMING","listings":[{"dept":"CSC","cn":"210"}],"clusters":[44]},
{"title":"THEORIES OF PERSONALITY & PSYCHOTHERAPY","listings":[{"dept":"CSP","cn":"181"}],"clusters":[46,50,51,52,53]},
{"title":"SOCIAL PSYCH & INDIVID DIFFERENCES","listings":[{"dept":"CSP","cn":"161"}],"clusters":[46,49,50,51,53]},
{"title":"SOCIAL & EMOTIONAL DEVELOPMENT","listings":[{"dept":"CSP","cn":"171"}],"clusters":[46,47,51]},
{"title":"AN APPROACH TO HUMAN MOTIVATION","listings":[{"dept":"CSP","cn":"262"}],"clusters":[46,49,50,51,53]},
{"title":"PSYCHOLOGY OF GENDER","listings":[{"dept":"CSP","cn":"267"}],"clusters":[46,49,51]},
{"title":"ACHIEVEMENT & MOTIVATION","listings":[{"dept":"CSP","cn":"364"}],"clusters":[46]},
{"title":"EXPLORING RES IN SOCIAL-PERSONALITY","listings":[{"dept":"CSP","cn":"373"}],"clusters":[46]},
{"title":"PSYCHOLOGY OF PARENTING","listings":[{"dept":"CSP","cn":"276"}],"clusters":[47,49,51]},
{"title":"ADOLESCENT DEVELOPMENT","listings":[{"dept":"CSP","cn":"278"}],"clusters":[47,51]},
{"title":"DEV CHILD PSYCHOPATHOLOGY","listings":[{"dept":"CSP","cn":"289"}],"clusters":[47,48,51,52]},
{"title":"SEM IN SOC AND PERS DEVELOPMENT","listings":[{"dept":"CSP","cn":"371"}],"clusters":[47]},
{"title":"RESEARCH IN FAMILY PSYCHOLOGY I","listings":[{"dept":"CSP","cn":"377"}],"clusters":[47]},
{"title":"RESEARCH IN FAMILY PSYCHOLOGY II","listings":[{"dept":"CSP","cn":"378"}],"clusters":[47]},
{"title":"MORAL DEVELOPMENT","listings":[{"dept":"CSP","cn":"383"}],"clusters":[47]},
{"title":"ABNORMAL PSYCHOLOGY","listings":[{"dept":"CSP","cn":"282"}],"clusters":[48,51,52]},
{"title":"PSYCH OF DEV DISABILITIES","listings":[{"dept":"CSP","cn":"381"}],"clusters":[48]},
{"title":"PRACTICUM IN DEV DISABILITIES","listings":[{"dept":"CSP","cn":"384"}],"clusters":[48]},
{"title":"PRACTICUM IN DEV DISABILITIES","listings":[{"dept":"CSP","cn":"385"}],"clusters":[48]},
{"title":"INDEP STUDY RELATED TO DEV DISASBIL","listings":[{"dept":"CSP","cn":"391D"}],"clusters":[48]},
{"title":"SP TOPICS IN DISABILITIES","listings":[{"dept":"PM","cn":"427"}],"clusters":[48]},
{"title":"RELATIONSHIP PROCESS & EMOTIONS","listings":[{"dept":"CSP","cn":"263"}],"clusters":[49,51,53]},
{"title":"RESEARCH LAB IN SOCIAL PSYCH","listings":[{"dept":"CSP","cn":"266"}],"clusters":[49]},
{"title":"PSYCH OF BUSINESS & INDUSTRY","listings":[{"dept":"CSP","cn":"264"}],"clusters":[50,51]},
{"title":"INTRO TO PSYCHOLOGY","listings":[{"dept":"PSY","cn":"101"}],"clusters":[51]},
{"title":"PSYCH OF HUMAN SEXUALITY","listings":[{"dept":"CSP","cn":"209"}],"clusters":[51]},
{"title":"BEHAVIORAL MEDICINE","listings":[{"dept":"CSP","cn":"283"}],"clusters":[51,52,119]},
{"title":"CLINICAL PSYCHOLOGY","listings":[{"dept":"CSP","cn":"280"}],"clusters":[52]},
{"title":"PSYCHOLOGY & THE LAW","listings":[{"dept":"CSP","cn":"281"}],"clusters":[52,118,215]},
{"title":"HUMANISTIC PSYCHOLOGY","listings":[{"dept":"CSP","cn":"368"}],"clusters":[53]},
{"title":"SEM IN SELF-DETERMINATION","listings":[{"dept":"CSP","cn":"376"}],"clusters":[53]},
{"title":"RESEARCH IN MOTIVATION","listings":[{"dept":"CSP","cn":"398"}],"clusters":[53]},
{"title":"WRITING WOMEN'S LIVES","listings":[{"dept":"WST","cn":"240"},{"dept":"ENG","cn":"126"}],"clusters":[54,55]},
{"title":"SPANISH AMERICAN WOMEN WRITERS","listings":[{"dept":"WST","cn":"256"},{"dept":"SP","cn":"260"}],"clusters":[54]},
{"title":"JAPANESE WOMEN WRITERS","listings":[{"dept":"WST","cn":"273"},{"dept":"JPN","cn":"273"}],"clusters":[54]},
{"title":"WOMEN & MUSIC","listings":[{"dept":"WST","cn":"129"},{"dept":"MUR","cn":"128"}],"clusters":[55]},
{"title":"WOMAN AS IMAGE AND TEXT","listings":[{"dept":"WST","cn":"214"},{"dept":"AH","cn":"210"}],"clusters":[55]},
{"title":"GENDER & SEXUALITY IN THE 20th CENTURY","listings":[{"dept":"WST","cn":"277"},{"dept":"GER","cn":"272"}],"clusters":[55]},
{"title":"MOTHERS, COMRADES, & WHORES","listings":[{"dept":"WST","cn":"288"},{"dept":"GER","cn":"288"}],"clusters":[55]},
{"title":"Feminist Film Theory","listings":[{"dept":"WST","cn":"204"},{"dept":"AH","cn":"355"}],"clusters":[56]},
{"title":"Changing Genres of Erotica","listings":[{"dept":"WST","cn":"267"},{"dept":"ENG","cn":"267"}],"clusters":[56]},
{"title":"Art and the City","listings":[{"dept":"AH","cn":"281"}],"clusters":[57]},
{"title":"Warhol","listings":[{"dept":"AH","cn":"350"}],"clusters":[57,231,257]},
{"title":"LGBTQ Experiences in American History","listings":[{"dept":"WST","cn":"210"}],"clusters":[57]},
{"title":"Queer Theory","listings":[{"dept":"WST","cn":"212"}],"clusters":[57]},
{"title":"LGBTQ Issues in Educ. & Human Development","listings":[{"dept":"WST","cn":"290"},{"dept":"EDE","cn":"440"}],"clusters":[57]},
{"title":"INTRO TO DIGITAL MUSIC","listings":[{"dept":"ECE","cn":"140"}],"clusters":[58,108,123]},
{"title":"INTRO TO SIGNALS & CIRCUITS","listings":[{"dept":"ECE","cn":"111"}],"clusters":[58]},
{"title":"LOGIC DESIGN","listings":[{"dept":"ECE","cn":"112"}],"clusters":[58]},
{"title":"INTRO TO COMPUTRS & PROGRAMNG","listings":[{"dept":"ECE","cn":"114"}],"clusters":[58]},
{"title":"PRINCIPLES OF ECONOMICS","listings":[{"dept":"ECO","cn":"108"}],"clusters":[59,60,62,64,113,114]},
{"title":"INTERMEDIATE MICROECONOMICS","listings":[{"dept":"ECO","cn":"207"}],"clusters":[59,61,62,63,64,65,105,114,118,151,215]},
{"title":"INTERMEDIATE MACROECONOMICS","listings":[{"dept":"ECO","cn":"209"}],"clusters":[59,60,61,114]},
{"title":"INTERMEDIATE MACRO - HONORS","listings":[{"dept":"ECO","cn":"209H"}],"clusters":[60,61]},
{"title":"MONEY CREDIT & BANKING","listings":[{"dept":"ECO","cn":"211"}],"clusters":[60,61,114]},
{"title":"ECONOMICS OF GLOBALIZATION","listings":[{"dept":"ECO","cn":"268"}],"clusters":[60,61]},
{"title":"INTERNATIONAL ECONOMICS","listings":[{"dept":"ECO","cn":"269"}],"clusters":[60,61,114]},
{"title":"INTERNATIONAL FINANCE","listings":[{"dept":"ECO","cn":"270"}],"clusters":[60,61,114]},
{"title":"INTERNATIONAL POLITICAL ECONOMY","listings":[{"dept":"ECO","cn":"272"}],"clusters":[60,61]},
{"title":"ECONOMICS GROWTH & DEVELOPMENT","listings":[{"dept":"ECO","cn":"273"}],"clusters":[60,61]},
{"title":"FINANCIAL MANAGEMENT","listings":[{"dept":"FIN","cn":"205"}],"clusters":[60,61]},
{"title":"INVESTMENTS","listings":[{"dept":"FIN","cn":"206"}],"clusters":[60,61]},
{"title":"INTERMEDIATE MICRO - HONORS","listings":[{"dept":"ECO","cn":"207H"}],"clusters":[61,62,63,64,65]},
{"title":"MONETARY THEORY","listings":[{"dept":"ECO","cn":"229"}],"clusters":[61]},
{"title":"ECONOMETRICS OF FINANCIAL MARKETS","listings":[{"dept":"ECO","cn":"232"}],"clusters":[61]},
{"title":"ECONOMIC WAY OF THINKING","listings":[{"dept":"ECO","cn":"191Q"}],"clusters":[62]},
{"title":"ECONOMICS OF POPULATION","listings":[{"dept":"ECO","cn":"192Q"}],"clusters":[62]},
{"title":"ECONOMICS OF CONTRACTS ORGANIZATIONS & MARKETS","listings":[{"dept":"ECO","cn":"217"}],"clusters":[62,63]},
{"title":"LABOR ECONOMICS","listings":[{"dept":"ECO","cn":"223"}],"clusters":[62,63,114]},
{"title":"ECON OF SPORTS&ENTERTAINMENT","listings":[{"dept":"ECO","cn":"224"}],"clusters":[62,63,114]},
{"title":"AMERICAN ECONOMIC GROWTH","listings":[{"dept":"ECO","cn":"227"}],"clusters":[62,63,99,113,114]},
{"title":"APPLIED ECONOMETRICS","listings":[{"dept":"ECO","cn":"233"}],"clusters":[62,63,64,65]},
{"title":"ECONOMICS OF HEALTH","listings":[{"dept":"ECO","cn":"236"}],"clusters":[62,63,112,119]},
{"title":"ECONOMICS OF EDUCATION","listings":[{"dept":"ECO","cn":"237"}],"clusters":[62,63]},
{"title":"ENVIRONMENTAL ECONOMICS","listings":[{"dept":"ECO","cn":"238"}],"clusters":[62,63,74,110]},
{"title":"INDUSTRIAL ORGANIZATION","listings":[{"dept":"ECO","cn":"251"}],"clusters":[62,63]},
{"title":"ECO & SOC CONDITIONS OF AFRIC-AMER","listings":[{"dept":"ECO","cn":"253W"}],"clusters":[62,63,90,94,99]},
{"title":"STATE & LOCAL PUBLIC FINANCE","listings":[{"dept":"ECO","cn":"261"}],"clusters":[62,63]},
{"title":"PUBLIC FINANCE","listings":[{"dept":"ECO","cn":"263"}],"clusters":[62,63]},
{"title":"LAW & ECONOMICS","listings":[{"dept":"ECO","cn":"265"}],"clusters":[62,63,114,118,215]},
{"title":"ECONOMICS OF HUMAN BEHAVIOR","listings":[{"dept":"ECO","cn":"271"}],"clusters":[62,63]},
{"title":"ECONOMETRICS","listings":[{"dept":"ECO","cn":"231"}],"clusters":[63,64,65,105]},
{"title":"TOPICS IN MICROECON THEORY","listings":[{"dept":"ECO","cn":"208"}],"clusters":[64,65]},
{"title":"FAIR ALLOCATION","listings":[{"dept":"ECO","cn":"220"}],"clusters":[64,65]},
{"title":"ECONOMICS OF MARKET DESIGN","listings":[{"dept":"ECO","cn":"274"}],"clusters":[64,65]},
{"title":"POLITICAL ECONOMY OF GOV'T","listings":[{"dept":"ECO","cn":"282"}],"clusters":[64,65]},
{"title":"GAME THEORY & SOCIAL CHOICE","listings":[{"dept":"ECO","cn":"288"}],"clusters":[64,65,215]},
{"title":"INTRO TO CLIMATE CHANGE","listings":[{"dept":".EES","cn":"105"}],"clusters":[66]},
{"title":"EVOLUTION OF THE EARTH","listings":[{"dept":"EES","cn":"201"}],"clusters":[66,69,70,71,111]},
{"title":"INTRODUCTION TO CLIMATE CHANGE","listings":[{"dept":"EES","cn":"105"}],"clusters":[67,69,71,72,111]},
{"title":"GEOHAZARDS & THEIR MITIGATION","listings":[{"dept":"EES","cn":"211"}],"clusters":[67,69,71]},
{"title":"MINERALOGY","listings":[{"dept":"EES","cn":"204"}],"clusters":[67,68,71]},
{"title":"STRUCTURAL GEOLOGY","listings":[{"dept":"EES","cn":"208"}],"clusters":[67,68]},
{"title":"ENERGY RESOURCES","listings":[{"dept":"EES","cn":"222"}],"clusters":[68,72]},
{"title":"PHYSICAL HYDROLOGY","listings":[{"dept":"EES","cn":"213"}],"clusters":[69]},
{"title":"PRINCIPLES OF PALEONTOLOGY","listings":[{"dept":"EES","cn":"207"}],"clusters":[70]},
{"title":"VERTEBRATE PALEONTOLOGY","listings":[{"dept":"EES","cn":"270"}],"clusters":[70]},
{"title":"STRUCTURAL GEOLOGY","listings":[{"dept":"EES","cn":"108"}],"clusters":[71]},
{"title":"PHYSICAL SEDIMENTOLOGY","listings":[{"dept":"EES","cn":"203"}],"clusters":[71]},
{"title":"HISTORY OF NATURE","listings":[{"dept":"HIS","cn":"300"}],"clusters":[72,74,110]},
{"title":"CONTEMPORARY MORAL PROBLEMS","listings":[{"dept":"PHL","cn":"103"}],"clusters":[72,73,74,83,205,210,211,212,214]},
{"title":"ENVIRONMENTAL JUSTICE","listings":[{"dept":"PHL","cn":"230"}],"clusters":[72,73,74,210,211]},
{"title":"ENVIRONMENTAL POLITICS","listings":[{"dept":"PSC","cn":"243"}],"clusters":[72,74,79,82,88,110,114]},
{"title":"GREEN MARKETS: ENVIRONMENTAL OPP'S & PITFALLS","listings":[{"dept":"PSC","cn":"247"}],"clusters":[72,74,82,88,110,114]},
{"title":"CULTURAL HIS OF AMERICAN ARCHITECTURE","listings":[{"dept":"AH","cn":"274"}],"clusters":[73,256]},
{"title":"CRITICAL THEORIES OF THE ENVIRONMENT","listings":[{"dept":"ENG","cn":"242"},{"dept":"CAS","cn":"210"}],"clusters":[73,208]},
{"title":"LITERATURE & THE MODERN ENVIRONMENTAL IMAGINATION","listings":[{"dept":"ENG","cn":"245"},{"dept":"CAS","cn":"245"}],"clusters":[73,239,240,246]},
{"title":"MEDIA SPACE: ENVIRON. MEDIA FROM CYBERSPACE TO SMARTPHONES","listings":[{"dept":"ENG","cn":"267"},{"dept":"CAS","cn":"267"}],"clusters":[73,226,232,232,236]},
{"title":"ADVANCED DIGITAL ART: NATURE 2.0","listings":[{"dept":"SA","cn":"253"}],"clusters":[73,234]},
{"title":"SOCIAL & POLITICAL PHILOSOPHY","listings":[{"dept":"PHL","cn":"223"}],"clusters":[74,83,118,210,211,215]},
{"title":"NATURE, LANDSCAPE & ENVIRONMENT","listings":[{"dept":"ANT","cn":"223"}],"clusters":[74]},
{"title":"ELEMENTS OF PROBABILITY AND MATHEMATICAL STATISTICS","listings":[{"dept":"STT","cn":"201"}],"clusters":[75,89]},
{"title":"INTRO TO MATHEMATICAL STATISTICS","listings":[{"dept":"STT","cn":"203"}],"clusters":[75]},
{"title":"APPLIED STATISTICS II","listings":[{"dept":"STT","cn":"216"}],"clusters":[76,116]},
{"title":"SAMPLING TECHNIQUES","listings":[{"dept":"STT","cn":"221"}],"clusters":[76]},
{"title":"INTRO TO STT SOFTWARE & EXPLORATORY DATA ANALYSIS (4 credits)","listings":[{"dept":"STT","cn":"277"}],"clusters":[76]},
{"title":"DESIGN OF EXPERIMENTS (2 credits)","listings":[{"dept":"STT","cn":"222"}],"clusters":[76]},
{"title":"APPLIED MULTIVARIATE (2 credits)","listings":[{"dept":"STT","cn":"241"}],"clusters":[76]},
{"title":"HISTORY OF IMPERIAL RUSSIA","listings":[{"dept":"HIS","cn":"132"}],"clusters":[77,91,96,159,161,259]},
{"title":"SOVIET RUSSIA","listings":[{"dept":"HIS","cn":"133"}],"clusters":[77,87,91,96,101,159,161,259]},
{"title":"INTRO TO INTERNATIONAL RELATIONS","listings":[{"dept":"PSC","cn":"106"}],"clusters":[77,79,80,92]},
{"title":"RUSSIA AND E. EUROPE: POLITICS AND IR","listings":[{"dept":"PSC","cn":"271"}],"clusters":[77]},
{"title":"THEORIES OF INTERNAT RELATNS","listings":[{"dept":"PSC","cn":"272"}],"clusters":[77,79,80,84,89,92,105,114,151]},
{"title":"POLITICS AND ECONOMICS: POST-COMMUNIST TRANSFORMATION","listings":[{"dept":"PSC","cn":"292"}],"clusters":[77]},
{"title":"RUSSIA NOW","listings":[{"dept":"RST","cn":"126"}],"clusters":[77,87,159,161,162,186,188,259]},
{"title":"THE NEW EUROPE: FORMATIONS AND TRANSFORMATIONS","listings":[{"dept":"CLT","cn":"160"}],"clusters":[77,78,159,161,162]},
{"title":"SECRET NATION","listings":[{"dept":"RUS","cn":"247"}],"clusters":[77,91,161,162,175,175,186,187,204,248]},
{"title":"POLITICS OF IDENTITY","listings":[{"dept":"RUS","cn":"248"}],"clusters":[77,159,161,162,175,186,204,248,251,259]},
{"title":"RUSSIAN LIT BETWEEN THE REVOLUTIONS","listings":[{"dept":"RUS","cn":"265"}],"clusters":[77,161,162,175,186,248,251]},
{"title":"DANGEROUS TEXTS: LIT&POLITICS","listings":[{"dept":"RUS","cn":"289"}],"clusters":[77,100,161,175,175,186,187,248,251,259]},
{"title":"EUROPE TODAY (2 credits)","listings":[{"dept":"CLT","cn":"161"}],"clusters":[77,159,162]},
{"title":"RUSSIA NOW (2 credits)","listings":[{"dept":"RST","cn":"127"}],"clusters":[77,159,162,186,188]},
{"title":"EUROPE TODAY","listings":[{"dept":"CLT","cn":"162"}],"clusters":[78,162]},
{"title":"THE WEST & THE WORLD SINCE 1492","listings":[{"dept":"HIS","cn":"103"}],"clusters":[78,96,103,199,209]},
{"title":"EUROPE SINCE 1945","listings":[{"dept":"HIS","cn":"205"}],"clusters":[78]},
{"title":"INTRO. TO COMP. POLITICS","listings":[{"dept":"IR","cn":"101"},{"dept":"PSC","cn":"101"}],"clusters":[78,79,81,92]},
{"title":"ELECTIONS, PARTIES, & COALITIONS IN COMP. PERSPECTIVE","listings":[{"dept":"IR","cn":"220"}],"clusters":[78,79,80,81,87,92]},
{"title":"POLITICS OF NEW EUROPE","listings":[{"dept":"IR","cn":"222"}],"clusters":[78,79,80,81,87,92]},
{"title":"THEORIES OF COMP. POLITICS","listings":[{"dept":"IR","cn":"256"},{"dept":"PSC","cn":"256"}],"clusters":[78,79,80,81,87]},
{"title":"IDENTITY, ETHNICITY & NATIONALISM","listings":[{"dept":"IR","cn":"267"},{"dept":"PSC","cn":"267"}],"clusters":[78,79,80,92]},
{"title":"COMMUNISM & INTERNAT. RELATIONS IN EASTERN EUR.","listings":[{"dept":"IR","cn":"280"}],"clusters":[78]},
{"title":"ETHNIC POLITICS","listings":[{"dept":"PSC","cn":"252"}],"clusters":[78,79,79,80,81,92]},
{"title":"COMPARATIVE POLITICAL PARTIES","listings":[{"dept":"PSC","cn":"253"}],"clusters":[78,79,81,92]},
{"title":"COMPARATIVE LAW & COURTS","listings":[{"dept":"PSC","cn":"263"}],"clusters":[78,79,81,92,118]},
{"title":"COMPARATIVE POLITICAL INSTITUTIONS","listings":[{"dept":"PSC","cn":"264"}],"clusters":[78,79,81,92]},
{"title":"POLITICS OF THE EUROPEN UNION","listings":[{"dept":"PSC","cn":"266"}],"clusters":[78,79,80,81,92]},
{"title":"INTERNATIONAL POLITICAL ECONOMY","listings":[{"dept":"PSC","cn":"274"}],"clusters":[78,79,80,81,87,89,92,105,114,151]},
{"title":"EUROPEAN POLITICAL INTERNSHIPS","listings":[{"dept":"PSC","cn":"397"}],"clusters":[78,80,81,92]},
{"title":"UK POLITICS INTERNSHIP","listings":[{"dept":"PSC","cn":"397F"}],"clusters":[78,80,92]},
{"title":"INTRODUCTION TO AMERICAN POLITICS","listings":[{"dept":"PSC","cn":"105"}],"clusters":[79,82,85,88]},
{"title":"INDIA, PAKISTAN & THE POLITICS OF SOUTH ASIA","listings":[{"dept":"IR","cn":"202"}],"clusters":[79,259]},
{"title":"DICTATORSHIP & DEMOCRACY","listings":[{"dept":"IR","cn":"204"}],"clusters":[79,80,81,92]},
{"title":"HOW COUNTRIES BECOME RICH","listings":[{"dept":"IR","cn":"217"}],"clusters":[79,80,81,84,92]},
{"title":"DEMOCRACY IN LATIN AMERICA","listings":[{"dept":"IR","cn":"219"}],"clusters":[79,80,81,86,92]},
{"title":"INTERNATIONAL SECURITY","listings":[{"dept":"IR","cn":"228"}],"clusters":[79]},
{"title":"INTERNATIONAL POLITICAL ECONOMY","listings":[{"dept":"IR","cn":"229"}],"clusters":[79,80,81,92]},
{"title":"AMERICAN FOREIGN POLICY","listings":[{"dept":"IR","cn":"230"}],"clusters":[79,80,92]},
{"title":"ELECTIONS UNDER DEMOCRACY & DICTATORSHIP","listings":[{"dept":"IR","cn":"235"}],"clusters":[79,81,87,92]},
{"title":"CONTENTIOUS POLITICS & SOCIAL MOVEMENTS","listings":[{"dept":"IR","cn":"236"}],"clusters":[79,80,81,92]},
{"title":"POLITICAL ECONOMY OF INT'L MIGRATION","listings":[{"dept":"IR","cn":"238"}],"clusters":[79,80,81,92,114]},
{"title":"WOMEN, GENDER & DEVELOPMENT","listings":[{"dept":"IR","cn":"239"}],"clusters":[79,80,81,92]},
{"title":"CONTEMPORARY AFRICAN POLITICS","listings":[{"dept":"IR","cn":"260"},{"dept":"PSC","cn":"260"}],"clusters":[79,80,81,92]},
{"title":"LATIN AMERICAN POLITICS","listings":[{"dept":"IR","cn":"261"},{"dept":"PSC","cn":"261"}],"clusters":[79,80,81,86,92]},
{"title":"ELECTIONS IN DEVELOPING COUNTRIES","listings":[{"dept":"IR","cn":"262"},{"dept":"PSC","cn":"262"}],"clusters":[79,80,81,92]},
{"title":"CIVIL WAR & INTERNATIONAL SECURITY","listings":[{"dept":"IR","cn":"265"},{"dept":"PSC","cn":"265"}],"clusters":[79,92]},
{"title":"INTERNATIONAL ORGANIZATION","listings":[{"dept":"IR","cn":"268"},{"dept":"PSC","cn":"268"}],"clusters":[79,80,92]},
{"title":"THE POLITICS OF INSURGENCY & TERRORISM","listings":[{"dept":"IR","cn":"276"},{"dept":"PSC","cn":"276"}],"clusters":[79]},
{"title":"WAR & THE NATION STATE","listings":[{"dept":"IR","cn":"279"},{"dept":"PSC","cn":"279"}],"clusters":[79,92]},
{"title":"ARGUMENT IN POLITICAL SCIENCE","listings":[{"dept":"PSC","cn":"202"}],"clusters":[79,80,82,83,84,85]},
{"title":"INTEREST GROUPS IN AMERICA","listings":[{"dept":"PSC","cn":"209"}],"clusters":[79,82,88,114]},
{"title":"PUBLIC OPINION AND VOTING","listings":[{"dept":"PSC","cn":"211"}],"clusters":[79,82,88]},
{"title":"SUPREME COURT IN U.S. HISTORY","listings":[{"dept":"PSC","cn":"212"}],"clusters":[79,82,85]},
{"title":"AMERICAN ELECTIONS","listings":[{"dept":"PSC","cn":"215"}],"clusters":[79,82]},
{"title":"LEGISLATIVE POLITICS","listings":[{"dept":"PSC","cn":"216"}],"clusters":[79,82]},
{"title":"EMERGENCE OF THE MODERN CONGRESS","listings":[{"dept":"PSC","cn":"218"}],"clusters":[79,82,85]},
{"title":"THE PRESIDENCY","listings":[{"dept":"PSC","cn":"222"}],"clusters":[79,82,85]},
{"title":"CONSTITUTIONAL STRUCTURE & RIGHTS","listings":[{"dept":"PSC","cn":"223"}],"clusters":[79,82,85,86,118,215]},
{"title":"RACE & POLITICAL REPRESENTATION","listings":[{"dept":"PSC","cn":"225"}],"clusters":[79,82,85]},
{"title":"MONEY IN POLITICS","listings":[{"dept":"PSC","cn":"231"}],"clusters":[79,82,114]},
{"title":"CONTROVERSIES IN PUBLIC POLICY","listings":[{"dept":"PSC","cn":"232"}],"clusters":[79,82,85,88]},
{"title":"JUDICIAL POLITICS","listings":[{"dept":"PSC","cn":"234"}],"clusters":[79,82,85,118,215]},
{"title":"HEALTH CARE & THE LAW","listings":[{"dept":"PSC","cn":"236"}],"clusters":[79,82,112]},
{"title":"DOMESTIC SOCIAL POLICY","listings":[{"dept":"PSC","cn":"237"}],"clusters":[79,82,85,88,112,114]},
{"title":"BUSINESS AND POLITICS","listings":[{"dept":"PSC","cn":"238"}],"clusters":[79,82,88,114]},
{"title":"THE NATURE OF ENTREPRENEURSHIP","listings":[{"dept":"PSC","cn":"239"}],"clusters":[79,82,85,88]},
{"title":"CRIMINAL PROC. & CONSTITUTIONAL PRIN.","listings":[{"dept":"PSC","cn":"240"}],"clusters":[79,82,118,215]},
{"title":"POLITICS & MARKETS: INNOVATION & GLOBAL ENVIRONMENT","listings":[{"dept":"PSC","cn":"244K"}],"clusters":[79,82,88,114]},
{"title":"AGING & PUBLIC POLICY","listings":[{"dept":"PSC","cn":"245"}],"clusters":[79,82,85,112,114]},
{"title":"ENVIRONMENTAL LAW & POLICY","listings":[{"dept":"PSC","cn":"246"}],"clusters":[79,82,88]},
{"title":"MECHANISMS OF INTERNATIONAL RELATIONS","listings":[{"dept":"PSC","cn":"270"}],"clusters":[79,80,92]},
{"title":"ARAB-ISRAELI CONFLICT","listings":[{"dept":"PSC","cn":"276"}],"clusters":[79,81]},
{"title":"POLITICAL ACCOUNTABILITY","listings":[{"dept":"PSC","cn":"280"}],"clusters":[79,82,84]},
{"title":"POLITICAL ECONOMY OF AFRICA","listings":[{"dept":"IR","cn":"211"}],"clusters":[80,81]},
{"title":"POLITICAL VIOLENCE IN COMP. PERSPECTIVE","listings":[{"dept":"IR","cn":"214"}],"clusters":[80]},
{"title":"CORRUPTION & GOOD GOVERNANCE","listings":[{"dept":"IR","cn":"215"}],"clusters":[80]},
{"title":"ARAB-ISRAELI CONFLICT","listings":[{"dept":"IR","cn":"248"}],"clusters":[80,86]},
{"title":"GLOBALIZATION PAST & PRESENT","listings":[{"dept":"PSC","cn":"262"}],"clusters":[80]},
{"title":"WAR & THE NATION STATE","listings":[{"dept":"PSC","cn":"279"}],"clusters":[80]},
{"title":"FEDERALISM IN COMPARATIVE PERSPECTIVE","listings":[{"dept":"IR","cn":"218"}],"clusters":[81]},
{"title":"WAR & POLITICAL VIOLENCE","listings":[{"dept":"IR","cn":"278"},{"dept":"PSC","cn":"278"}],"clusters":[81]},
{"title":"IDENTITY, ETHNICITY & NATIONALISM","listings":[{"dept":"PSC","cn":"267"}],"clusters":[81]},
{"title":"COMPARATIVE ELECTIONS","listings":[{"dept":"PSC","cn":"268"}],"clusters":[81]},
{"title":"UK POLITICS INTERNSHIP","listings":[{"dept":"PSC","cn":"297F"}],"clusters":[81]},
{"title":"THE FIRST AMENDMENT & RELIGION IN AMERICA","listings":[{"dept":"PSC","cn":"291"}],"clusters":[82,83,84,85,86,118]},
{"title":"INTERN: PUB DEFENDER & DA","listings":[{"dept":"PSC","cn":"394"}],"clusters":[82]},
{"title":"WASHINGTON SEMESTER","listings":[{"dept":"PSC","cn":"396"}],"clusters":[82]},
{"title":"SURVEY RESEARCH METHODS","listings":[{"dept":"PSC","cn":"203"}],"clusters":[82,84]},
{"title":"INTRO TO POLITICAL PHILOSOPHY","listings":[{"dept":"PSC","cn":"104"}],"clusters":[83,84]},
{"title":"PHILOSOPHICAL FOUNDATIONS OF THE AMERICAN REVOLUTION","listings":[{"dept":"PSC","cn":"221"}],"clusters":[83,84]},
{"title":"CONTEMPORARY POLITICAL THEORY","listings":[{"dept":"PSC","cn":"283"}],"clusters":[83,84]},
{"title":"DEMOCRATIC THEORY","listings":[{"dept":"PSC","cn":"284"}],"clusters":[83,84]},
{"title":"THEORIES OF POLITICAL ECONOMY","listings":[{"dept":"PSC","cn":"287"}],"clusters":[83,84]},
{"title":"PHILOSOPHY OF WAR","listings":[{"dept":"PHL","cn":"108"}],"clusters":[83]},
{"title":"HISTORY OF ANCIENT PHILOSOPHY","listings":[{"dept":"PHL","cn":"201"}],"clusters":[83,199,209,214,216]},
{"title":"HISTORY OF MODERN PHILOSOPHY","listings":[{"dept":"PHL","cn":"202"}],"clusters":[83,214]},
{"title":"PHILOSOPHICAL FOUNDATIONS OF THE AMERICAN REVOLUTION","listings":[{"dept":"PHL","cn":"221"}],"clusters":[83,210,211]},
{"title":"RESEARCH DESIGN","listings":[{"dept":"PSC","cn":"204"}],"clusters":[84]},
{"title":"INTRO. TO POSITIVE POLITICAL THEORY","listings":[{"dept":"PSC","cn":"107"}],"clusters":[84,89,114]},
{"title":"FORMAL MODELS IN POLITICAL SCIENCE","listings":[{"dept":"PSC","cn":"281"}],"clusters":[84,89,105,114,151]},
{"title":"GAME THEORY","listings":[{"dept":"PSC","cn":"288"}],"clusters":[84,89,105,114,118,151]},
{"title":"INDUSTRIAL AMERICA 1864-1929","listings":[{"dept":"HIS","cn":"165"}],"clusters":[85,90]},
{"title":"NEW DEAL AMERICA 1929-PRESENT","listings":[{"dept":"HIS","cn":"166"}],"clusters":[85,90]},
{"title":"THE CIVIL WAR","listings":[{"dept":"HIS","cn":"269"}],"clusters":[85,90,101]},
{"title":"THE HOLOCAUST","listings":[{"dept":"HIS","cn":"236"}],"clusters":[86,96,101,187,197,204,218,221]},
{"title":"BASICS OF JUDAISM IN THE MODERN WORLD (2 credits)","listings":[{"dept":"JST","cn":"203"}],"clusters":[86,221]},
{"title":"HISTORY OF CHRISTIANITY","listings":[{"dept":"REL","cn":"104"}],"clusters":[86,198,199,209,221]},
{"title":"HISTORY OF ISLAM","listings":[{"dept":"REL","cn":"107"}],"clusters":[86,103,169,183,221]},
{"title":"CHRISTIAN HISTORY II","listings":[{"dept":"REL","cn":"232"}],"clusters":[86,198,221,222]},
{"title":"CATHOLICISM AND THE SOCIAL ORDER","listings":[{"dept":"REL","cn":"233"}],"clusters":[86,198,221,222]},
{"title":"CRY FREEDOM","listings":[{"dept":"REL","cn":"234"}],"clusters":[86,198,220,221,222]},
{"title":"RELIGION & SOCIETY IN LATIN AM.","listings":[{"dept":"REL","cn":"235"}],"clusters":[86,198,221,222]},
{"title":"CATHOLICISM IN AMERICAN LIFE","listings":[{"dept":"REL","cn":"236"}],"clusters":[86,198,221]},
{"title":"ISLAM AND THE THIRD WORLD","listings":[{"dept":"REL","cn":"247W"}],"clusters":[86,103,221,222]},
{"title":"CONFLICT IN DEMOCRACIES","listings":[{"dept":"IR","cn":"250"},{"dept":"PSC","cn":"250"}],"clusters":[86]},
{"title":"HISTORY OF POLAND","listings":[{"dept":"HIS","cn":"137"}],"clusters":[87,91,96,96,208]},
{"title":"ELEMENTARY POLISH II","listings":[{"dept":"POL","cn":"102"}],"clusters":[87,190]},
{"title":"POLISH REVIEW","listings":[{"dept":"POL","cn":"103"}],"clusters":[87]},
{"title":"RUSSIAN CIVILIZATION","listings":[{"dept":"RUS","cn":"128"}],"clusters":[87,91,96,159,161,162,175,186,188,248,251,259]},
{"title":"INTERMEDIATE RUSSIAN I","listings":[{"dept":"RUS","cn":"151"}],"clusters":[87,184,186]},
{"title":"BIOLOGY & THE ENVIRONMENT","listings":[{"dept":"BIO","cn":"102"}],"clusters":[88]},
{"title":"EVOLUTION","listings":[{"dept":"BIO","cn":"205"}],"clusters":[88]},
{"title":"GENETIC DIVERSITY & HUMAN DISEASE","listings":[{"dept":"BIO","cn":"232"}],"clusters":[88]},
{"title":"MATH MODELING IN POLITICAL SCIENCE","listings":[{"dept":"MTH","cn":"217"}],"clusters":[89,149,151,153]},
{"title":"INTRO TO MATH MODELS IN SOC&LIFE SCI","listings":[{"dept":"MTH","cn":"218"}],"clusters":[89,116,149,153]},
{"title":"UNITED STATES HISTORY TO 1877","listings":[{"dept":"HIS","cn":"160"}],"clusters":[90]},
{"title":"UNITED STATES HISTORY SINCE 1865","listings":[{"dept":"HIS","cn":"161"}],"clusters":[90]},
{"title":"EARLY AMERICA 1600-1800","listings":[{"dept":"HIS","cn":"162"}],"clusters":[90,93]},
{"title":"DEMOCRATIC AMERICA 1800-1865","listings":[{"dept":"HIS","cn":"164"}],"clusters":[90,93]},
{"title":"INTRO. TO AFRICAN-AMERICAN STUDIES","listings":[{"dept":"HIS","cn":"169"}],"clusters":[90,94]},
{"title":"AFRICAN-AMERICAN HISTORY I","listings":[{"dept":"HIS","cn":"170"}],"clusters":[90,93,94]},
{"title":"AFRICAN-AMERICAN HISTORY II","listings":[{"dept":"HIS","cn":"171"}],"clusters":[90,93,94]},
{"title":"AMERICAN MILITARY HISTORY","listings":[{"dept":"HIS","cn":"174"}],"clusters":[90,101]},
{"title":"AMERICAN THOUGHT 1600-1865","listings":[{"dept":"HIS","cn":"260"}],"clusters":[90,100]},
{"title":"AMERICAN THOUGHT 1865-1990","listings":[{"dept":"HIS","cn":"261"}],"clusters":[90,100]},
{"title":"AMERICAN CULTURE TO 1876","listings":[{"dept":"HIS","cn":"262"}],"clusters":[90,100]},
{"title":"AMERICAN CULTURE SINCE 1876","listings":[{"dept":"HIS","cn":"263"}],"clusters":[90,100]},
{"title":"IDEA OF AMERICA","listings":[{"dept":"HIS","cn":"264"}],"clusters":[90]},
{"title":"WOMEN AND WORK IN THE AMERICAS","listings":[{"dept":"HIS","cn":"265"}],"clusters":[90,93,99,103]},
{"title":"MUSIC-MADE AMERICA","listings":[{"dept":"HIS","cn":"267"}],"clusters":[90,100]},
{"title":"HISTORY OF THE AMERICAN SOUTH","listings":[{"dept":"HIS","cn":"268"}],"clusters":[90,94]},
{"title":"PROGRESSIVE AMERICA","listings":[{"dept":"HIS","cn":"270"}],"clusters":[90]},
{"title":"AMERICA AND THE \"GOOD WAR\"","listings":[{"dept":"HIS","cn":"271"}],"clusters":[90]},
{"title":"LINCOLN DOUGLASS AND AMERICAN FREEDOM","listings":[{"dept":"HIS","cn":"273W"},{"dept":"HIS","cn":"273"}],"clusters":[90]},
{"title":"HISTORY OF RACE IN AMERICA","listings":[{"dept":"HIS","cn":"274W"},{"dept":"HIS","cn":"274"}],"clusters":[90]},
{"title":"DIGITAL DOCUMENTARY EDITING: WM. SEWARD FAMILY PAPERS PROJECT","listings":[{"dept":"HIS","cn":"278W"},{"dept":"HIS","cn":"278"}],"clusters":[90]},
{"title":"SEWARD FAMILY IN PEACE AND WAR","listings":[{"dept":"HIS","cn":"279W"},{"dept":"HIS","cn":"279"}],"clusters":[90]},
{"title":"ARCHAEOLOGY OF EARLY AMERICA","listings":[{"dept":"HIS","cn":"280W"},{"dept":"HIS","cn":"280"}],"clusters":[90]},
{"title":"THE ARTS IN AMERICAN CULTURE","listings":[{"dept":"AH","cn":"255"}],"clusters":[90,100,257]},
{"title":"HISTORY OF JAZZ","listings":[{"dept":"MUR","cn":"122"}],"clusters":[90,94,100,193,194,202,258]},
{"title":"THE BLUES","listings":[{"dept":"REL","cn":"151"}],"clusters":[90,193,194,202,221,222,258]},
{"title":"SPIRITUALISM IN AMERICA","listings":[{"dept":"REL","cn":"239"}],"clusters":[90,198,221,221]},
{"title":"HISTORY OF RUSSIA TO 1692","listings":[{"dept":"HIS","cn":"131"}],"clusters":[91,96,259]},
{"title":"TOTALITARIANISM & EVERYDAY LIFE","listings":[{"dept":"HIS","cn":"239"}],"clusters":[91,93,96,101,187]},
{"title":"WORLD WAR II: EASTERN FRONT","listings":[{"dept":"HIS","cn":"323W"}],"clusters":[91]},
{"title":"STALINISM","listings":[{"dept":"HIS","cn":"332W"}],"clusters":[91]},
{"title":"MEN OF MARBLE, WOMEN OF STEEL: AN INTRO TO E. EUROPEAN FILM","listings":[{"dept":"GER","cn":"285"}],"clusters":[91,174,225,230]},
{"title":"RUSSIA NOW","listings":[{"dept":"RUS","cn":"126"}],"clusters":[91]},
{"title":"INTERNATIONAL SECURITY","listings":[{"dept":"IR","cn":"277"},{"dept":"PSC","cn":"277"}],"clusters":[92]},
{"title":"THE ARAB-ISRAELI CONFLICT","listings":[{"dept":"PSC","cn":"248"}],"clusters":[92]},
{"title":"THEORIES OF COMPARATIVE POLITICS","listings":[{"dept":"PSC","cn":"256"}],"clusters":[92]},
{"title":"HISTORY OF FOOD AND EATING","listings":[{"dept":"HIS","cn":"181"}],"clusters":[93,99,100,103]},
{"title":"COMPARATIVE MODERN REVOLUTIONS: FRANCE, JAPAN, MEXICO, RUSSIA","listings":[{"dept":"HIS","cn":"208"}],"clusters":[93,96,101,103]},
{"title":"CHILDREN, FAMILIES AND THE STATE","listings":[{"dept":"HIS","cn":"224W"},{"dept":"HIS","cn":"224"}],"clusters":[93,96,100]},
{"title":"EUROPE SINCE 1945","listings":[{"dept":"HIS","cn":"226"}],"clusters":[93,96,174]},
{"title":"THE SAMURAI","listings":[{"dept":"HIS","cn":"248"}],"clusters":[93,98,101]},
{"title":"ECO & SOCIETIES IN LATIN AME","listings":[{"dept":"HIS","cn":"250"}],"clusters":[93,97,99,113,157]},
{"title":"HISTORY OF RACE IN AMERICA","listings":[{"dept":"HIS","cn":"274"}],"clusters":[93,94]},
{"title":"ARCHAEOLOGY OF EARLY AMERICA","listings":[{"dept":"HIS","cn":"280"}],"clusters":[93]},
{"title":"AFRICAN DIASPORA IN LATIN AMERICA","listings":[{"dept":"HIS","cn":"251"}],"clusters":[94,97,102,103]},
{"title":"LINCOLN, DOUGLASS, AND AMERICAN FREEDOM","listings":[{"dept":"HIS","cn":"273"}],"clusters":[94]},
{"title":"HISTORY OF EUROPEAN EXPLORATION","listings":[{"dept":"HIS","cn":"228"}],"clusters":[95,96]},
{"title":"THE WEST AND THE WORLD TO 1500","listings":[{"dept":"HIS","cn":"102"}],"clusters":[96,103,199]},
{"title":"A WORLD REBORN & REFORMED: EUROPE, 1450-1700","listings":[{"dept":"HIS","cn":"123"}],"clusters":[96]},
{"title":"19TH CENTURY EUROPEAN THOUGHT","listings":[{"dept":"HIS","cn":"220"}],"clusters":[96,100,180]},
{"title":"20TH CENTURY EUROPEAN THOUGHT","listings":[{"dept":"HIS","cn":"221"}],"clusters":[96,100,180,189]},
{"title":"THE ENLIGHTENMENT","listings":[{"dept":"HIS","cn":"222"}],"clusters":[96,100]},
{"title":"EUR & THE GREAT WAR: 1914-1918","listings":[{"dept":"HIS","cn":"225"}],"clusters":[96,101]},
{"title":"HISTORY OF EUROPEAN EXPLORATION","listings":[{"dept":"HIS","cn":"227"}],"clusters":[96,100,103]},
{"title":"ENGLAND AND IRELAND SINCE 1800","listings":[{"dept":"HIS","cn":"229"}],"clusters":[96]},
{"title":"HIS FROM MYTH: KING ART & R HOOD","listings":[{"dept":"HIS","cn":"230"}],"clusters":[96,100]},
{"title":"FRENCH REVOLUTION","listings":[{"dept":"HIS","cn":"231"}],"clusters":[96,101]},
{"title":"MODERN FRANCE","listings":[{"dept":"HIS","cn":"232"}],"clusters":[96]},
{"title":"GERMANY & AUSTRIA 1800-1914","listings":[{"dept":"HIS","cn":"234"}],"clusters":[96,180]},
{"title":"MODERN GERMANY, 1945-PRESENT","listings":[{"dept":"HIS","cn":"237"}],"clusters":[96]},
{"title":"BARBARIAN EUROPE","listings":[{"dept":"AH","cn":"242"}],"clusters":[96,255]},
{"title":"CULTURAL HISTORY OF ANCIENT GREECE","listings":[{"dept":"CLA","cn":"102"}],"clusters":[96,165,216]},
{"title":"HISTORY OF POLAND (STUDY ABROAD)","listings":[{"dept":"HIS","cn":"137A"}],"clusters":[96,208]},
{"title":"IN AREZZO-MODERN ITALY 1815-1948","listings":[{"dept":"IT","cn":"228"}],"clusters":[96,162]},
{"title":"COLONIAL LATIN AMERICA","listings":[{"dept":"HIS","cn":"150"}],"clusters":[97]},
{"title":"MODERN LATIN AMERICA","listings":[{"dept":"HIS","cn":"151"}],"clusters":[97]},
{"title":"HISTORY OF BRAZIL","listings":[{"dept":"HIS","cn":"153"}],"clusters":[97,259]},
{"title":"SLAVERY IN LATIN AMERICA","listings":[{"dept":"HIS","cn":"350W"}],"clusters":[97]},
{"title":"URBAN HISTORY OF LATIN AMERICA","listings":[{"dept":"HIS","cn":"351W"}],"clusters":[97]},
{"title":"LATIN AMERICAN POLITICS","listings":[{"dept":"PSC","cn":"261"}],"clusters":[97]},
{"title":"EARLY HISPANIC TEXTS","listings":[{"dept":"SP","cn":"203"}],"clusters":[97,147]},
{"title":"SPANISH AMERICAN LITERATURE 1800 TO THE PRESENT","listings":[{"dept":"SP","cn":"204"}],"clusters":[97,147]},
{"title":"SPANISH AMERICAN CULTURES","listings":[{"dept":"SP","cn":"206"}],"clusters":[97,157]},
{"title":"BRAZILIAN LITERATURE AND CULTURE","listings":[{"dept":"SP","cn":"226"}],"clusters":[97,259]},
{"title":"SPANISH AMERICAN THEATRE AND POETRY","listings":[{"dept":"SP","cn":"257"}],"clusters":[97,147,147]},
{"title":"SPANISH AMERICAN WOMEN WRITERS","listings":[{"dept":"SP","cn":"260"}],"clusters":[97,147,245,248]},
{"title":"COLONIAL LATIN AMERICAN LITERATURE","listings":[{"dept":"SP","cn":"262G"}],"clusters":[97,147]},
{"title":"HISPANIC SHORT STORY","listings":[{"dept":"SP","cn":"270"}],"clusters":[97,147]},
{"title":"LATIN AMERICAN FILM","listings":[{"dept":"SP","cn":"287"}],"clusters":[97,156,225,230]},
{"title":"MEXICAN FILM","listings":[{"dept":"SP","cn":"287A"}],"clusters":[97,156,230]},
{"title":"EAST ASIA TO 1600","listings":[{"dept":"HIS","cn":"140"}],"clusters":[98]},
{"title":"EAST ASIA AFTER 1600","listings":[{"dept":"HIS","cn":"141"}],"clusters":[98]},
{"title":"TRADITIONAL CHINA","listings":[{"dept":"HIS","cn":"142"}],"clusters":[98,259]},
{"title":"MODERN CHINA: 1600-PRESENT","listings":[{"dept":"HIS","cn":"143"}],"clusters":[98,259]},
{"title":"TRADITIONAL JAPAN","listings":[{"dept":"HIS","cn":"144"}],"clusters":[98]},
{"title":"MODERN JAPAN","listings":[{"dept":"HIS","cn":"145"}],"clusters":[98,207]},
{"title":"AFRICA WELCOMES CHINA IN A NEW GLOBAL ECONOMY","listings":[{"dept":"HIS","cn":"210"}],"clusters":[98,99,102,103]},
{"title":"CHINESE REVOLUTION","listings":[{"dept":"HIS","cn":"243"}],"clusters":[98,101,259]},
{"title":"CHINA-US RELATIONS","listings":[{"dept":"HIS","cn":"244"}],"clusters":[98,103,259]},
{"title":"TIBET: HISTORY FROM MYTH","listings":[{"dept":"HIS","cn":"245"}],"clusters":[98]},
{"title":"THE KOREAN WAR","listings":[{"dept":"HIS","cn":"247"}],"clusters":[98,101,103]},
{"title":"RICH CHINA, POOR CHINA","listings":[{"dept":"HIS","cn":"342W"}],"clusters":[98,99,101,259]},
{"title":"CHINA'S SILK ROAD","listings":[{"dept":"CHI","cn":"283"}],"clusters":[98,259]},
{"title":"TRADITIONAL JAPANESE CULTURE","listings":[{"dept":"JPN","cn":"210"}],"clusters":[98,160,166,207,248]},
{"title":"CULTURE OF ZEN","listings":[{"dept":"JPN","cn":"233"}],"clusters":[98,166,248]},
{"title":"ISSUES IN CONTEMPORARY JAPANESE CULTURE","listings":[{"dept":"JPN","cn":"246"}],"clusters":[98,100,160,168,248,251]},
{"title":"CORRUPTION OF THE GLOBAL ECONOMY","listings":[{"dept":"HIS","cn":"209"}],"clusters":[99,103]},
{"title":"THE ROLE OF THE STATE IN GLOBAL HISTORICAL PERSPECTIVE","listings":[{"dept":"HIS","cn":"281"}],"clusters":[99,103]},
{"title":"GUNS, WAR, AND REVOLUTION","listings":[{"dept":"HIS","cn":"211"}],"clusters":[99,101,102,103]},
{"title":"READINGS IN ATLANTIC HISTORY","listings":[{"dept":"HIS","cn":"304W"}],"clusters":[99]},
{"title":"MARITIME ATLANTIC WORLD","listings":[{"dept":"HIS","cn":"305W"}],"clusters":[99,103]},
{"title":"THE GLOBAL CITY","listings":[{"dept":"HIS","cn":"308W"}],"clusters":[99,103]},
{"title":"WAR, MONEY, AND ORDINARY PEOPLE","listings":[{"dept":"HIS","cn":"330W"}],"clusters":[99]},
{"title":"HISTORY OF NATURE","listings":[{"dept":"HIS","cn":"300W"}],"clusters":[100]},
{"title":"BENJAMIN FRANKLIN'S AMERICA","listings":[{"dept":"HIS","cn":"375W"}],"clusters":[100]},
{"title":"INTRO TO ARCHAEOLOGY","listings":[{"dept":"AH","cn":"106"}],"clusters":[100,216,257]},
{"title":"COLONIAL & CONTEMP AFRICA","listings":[{"dept":"HIS","cn":"110"}],"clusters":[101,102,103]},
{"title":"HITLER'S GERMANY - 1914-1945","listings":[{"dept":"HIS","cn":"235"}],"clusters":[101,187,197]},
{"title":"SEA POWER: MARITIME AFFAIRS","listings":[{"dept":"NAV","cn":"250"}],"clusters":[101]},
{"title":"EVOLUTION OF WARFARE","listings":[{"dept":"NAV","cn":"251"}],"clusters":[101]},
{"title":"INTRO TO AFRICAN RELIGIONS OF THE DIASPORA","listings":[{"dept":"REL","cn":"164"}],"clusters":[102]},
{"title":"ISLAM AND THE THIRD WORLD","listings":[{"dept":"REL","cn":"247"}],"clusters":[102,183]},
{"title":"THE AFRICAN DIASPORA","listings":[{"dept":"HIS","cn":"111"}],"clusters":[102]},
{"title":"THE THIRD WORLD","listings":[{"dept":"HIS","cn":"201"}],"clusters":[102,103]},
{"title":"NIGERIA SINCE THE ISLAMIC REVOLUTION OF 1804","listings":[{"dept":"HIS","cn":"212"}],"clusters":[102,113]},
{"title":"NATURAL DISASTERS AND HISTORY IN AFRICA","listings":[{"dept":"HIS","cn":"213"}],"clusters":[102]},
{"title":"THE POLITICAL ECONOMY OF FOOD IN AFRICA","listings":[{"dept":"HIS","cn":"310W"}],"clusters":[102]},
{"title":"THE ATLANTIC SLAVE TRADE & AFRICA, 1650-1851","listings":[{"dept":"HIS","cn":"311W"}],"clusters":[102]},
{"title":"HISTORY OF BRITISH INDIA","listings":[{"dept":"HIS","cn":"240"}],"clusters":[103]},
{"title":"INTERNATIONAL HUMAN RIGHTS","listings":[{"dept":"HIS","cn":"303W"}],"clusters":[103]},
{"title":"EVOLUTION OF THE CURRENT WORLD ECONOMIC ORDER FROM 1500","listings":[{"dept":"HIS","cn":"306W"}],"clusters":[103]},
{"title":"SOCIOECONOMIC DEVELOPMENT OF THE ATLANTIC WORLD","listings":[{"dept":"HIS","cn":"307W"}],"clusters":[103]},
{"title":"THE MEDITERRANEAN WORLD, 1400-1800","listings":[{"dept":"HIS","cn":"309W"}],"clusters":[103]},
{"title":"ECO DEVELOPMENT IN A GLOBAL PERSPECTIVE","listings":[{"dept":"ECO","cn":"294"}],"clusters":[103]},
{"title":"INTRODUCTION TO OPTICS","listings":[{"dept":"OPT","cn":"101"}],"clusters":[104,108,111,121]},
{"title":"PHYSICS OF MUSIC","listings":[{"dept":"PHY","cn":"103"}],"clusters":[104,111,117,123,131,135,142,142,143]},
{"title":"CALCULUS I","listings":[{"dept":"MTH","cn":"141"}],"clusters":[105,107,108,109,121,136,140,142,146,149,151]},
{"title":"CALCULUS IA","listings":[{"dept":"MTH","cn":"161"}],"clusters":[105,107,108,109,121,136,140,142,146,149,151,153,154,155]},
{"title":"ORD DIFFERENTAIL EQUATIONS I","listings":[{"dept":"MTH","cn":"163"}],"clusters":[105,148,149,153,154,155]},
{"title":"MULTIDIMENSIONAL CALCULUS","listings":[{"dept":"MTH","cn":"164"}],"clusters":[105,148,153,154,155]},
{"title":"LINEAR ALG WITH DIFF EQUATIONS","listings":[{"dept":"MTH","cn":"165"}],"clusters":[105,148,149,153,154,155]},
{"title":"HONORS CALCULUS I","listings":[{"dept":"MTH","cn":"171"}],"clusters":[105,108,148,151]},
{"title":"STRATEGY AND POLITICS","listings":[{"dept":"PSC","cn":"285"}],"clusters":[105,118,151,215]},
{"title":"LOGIC & LANGUAGE","listings":[{"dept":"PHL","cn":"211"}],"clusters":[106]},
{"title":"(no title available for this course)","listings":[{"dept":"PHL","cn":"212"}],"clusters":[106]},
{"title":"(no title available for this course)","listings":[{"dept":"PHL","cn":"213"}],"clusters":[106]},
{"title":"LOGICAL METHODS PHILOSOPHY","listings":[{"dept":"PHL","cn":"214"}],"clusters":[106]},
{"title":"INTERMEDIATE LOGIC","listings":[{"dept":"PHL","cn":"215"}],"clusters":[106]},
{"title":"MATHEMATICAL LOGIC","listings":[{"dept":"PHL","cn":"216"}],"clusters":[106]},
{"title":"UNCERTAIN INFERENCE","listings":[{"dept":"PHL","cn":"217"}],"clusters":[106]},
{"title":"PHILOSOPHY OF MATHEMATICS","listings":[{"dept":"PHL","cn":"218"}],"clusters":[106]},
{"title":"DEVIANT LOGIC","listings":[{"dept":"PHL","cn":"219"}],"clusters":[106]},
{"title":"FORMAL SEMANTICS","listings":[{"dept":"LIN","cn":"265"}],"clusters":[106,125,212]},
{"title":"ENGINEERING MECHANICS I","listings":[{"dept":"ME","cn":"120"}],"clusters":[107,121,136,137,140]},
{"title":"MECHANICS","listings":[{"dept":"PHY","cn":"121"}],"clusters":[107,108,109,142,145]},
{"title":"MECHANICS (HONORS)","listings":[{"dept":"PHY","cn":"141"}],"clusters":[107,108,109,141,142,145]},
{"title":"GENERAL PHYSICS I","listings":[{"dept":"PHY","cn":"113"}],"clusters":[108,109,142,145]},
{"title":"GENERAL PHYSICS II","listings":[{"dept":"PHY","cn":"114"}],"clusters":[108,142,145]},
{"title":"ELECTRICITY & MAGNETISM","listings":[{"dept":"PHY","cn":"122"}],"clusters":[108,142,145]},
{"title":"ELECTR & MAGNETISM (HONORS)","listings":[{"dept":"PHY","cn":"142"}],"clusters":[108,141,142,145]},
{"title":"CALCULUS WITH FOUNDATIONS I","listings":[{"dept":"MTH","cn":"140A"}],"clusters":[108,151,152]},
{"title":"CALCULUS I","listings":[{"dept":"MTH","cn":"141A"}],"clusters":[108,152]},
{"title":"CALCULUS II","listings":[{"dept":"MTH","cn":"142"}],"clusters":[108,109,140,142,146,149,152]},
{"title":"ENGINEERING OF BRIDGES","listings":[{"dept":"EAS","cn":"104"},{"dept":"ME","cn":"104"}],"clusters":[108,131,136,137,139]},
{"title":"LOUDSPEAKER DESIGN","listings":[{"dept":"EAS","cn":"107"},{"dept":"ME","cn":"103"}],"clusters":[108]},
{"title":"INTRO TO ECE","listings":[{"dept":"ECE","cn":"101"}],"clusters":[108]},
{"title":"THERMODYNAMICS","listings":[{"dept":"ME","cn":"123"}],"clusters":[109]},
{"title":"INTRODUCTION TO PUBLIC HEALTH I","listings":[{"dept":"PH","cn":"101"}],"clusters":[110,124,205]},
{"title":"CONCEPTS OF EPIDEMIOLOGY","listings":[{"dept":"PH","cn":"103"}],"clusters":[110,116,124]},
{"title":"PUBLIC HEALTH ETHICS","listings":[{"dept":"PHL","cn":"228"}],"clusters":[110,205,210,211]},
{"title":"ENVIRONMENTAL JUSTICE","listings":[{"dept":"PHL","cn":"230W"}],"clusters":[110,205]},
{"title":"BLACK HOLES TIME WARPS...","listings":[{"dept":"AST","cn":"102"}],"clusters":[111,122,135,143,144]},
{"title":"INTRO TO THE MILKYWAY GALAXY","listings":[{"dept":"AST","cn":"105"}],"clusters":[111,122,135,143,144]},
{"title":"METEORITES AND MASS EXTINCTIONS","listings":[{"dept":"EES","cn":"106"}],"clusters":[111]},
{"title":"HEALTH POLICY AND POLITICS","listings":[{"dept":"HIS","cn":"373"}],"clusters":[112]},
{"title":"US HEALTH CARE SYSTEM","listings":[{"dept":"7PM","cn":"421"}],"clusters":[112]},
{"title":"INTRO. TO THE U.S. HEALTH SYSTEM","listings":[{"dept":"HLS","cn":"116"},{"dept":"PH","cn":"116"}],"clusters":[112]},
{"title":"ECONOMIC DEVELOPMENT OF THE NORTH","listings":[{"dept":"ECO","cn":"226"}],"clusters":[113]},
{"title":"ECONOMIES & SOCIETIES OF LAT. AM.","listings":[{"dept":"ECO","cn":"252"}],"clusters":[114]},
{"title":"THE NATURE OF ENTREPRENEURSHIP","listings":[{"dept":"PSC","cn":"239K"}],"clusters":[114]},
{"title":"ENVIRONMENTAL DECISIONS","listings":[{"dept":"EES","cn":"318W"}],"clusters":[115]},
{"title":"TOPICS IN GAME THEORY","listings":[{"dept":"ECO","cn":"256"}],"clusters":[118]},
{"title":"HEALTH CARE AND THE LAW","listings":[{"dept":"PH","cn":"236"}],"clusters":[118,215]},
{"title":"LEGAL STUDIES CAPSTONE SEMINAR","listings":[{"dept":"CAS","cn":"304"}],"clusters":[118,215]},
{"title":"ADVANCED DEBATE","listings":[{"dept":"ENG","cn":"136"}],"clusters":[118,215,226]},
{"title":"LEGAL REASONING AND ARGUMENT","listings":[{"dept":"PHL","cn":"385"}],"clusters":[118]},
{"title":"RELIGION AND LAW","listings":[{"dept":"REL","cn":"182"}],"clusters":[118,215,220,222]},
{"title":"GUILT","listings":[{"dept":"REL","cn":"226"}],"clusters":[118,215,220,221,222]},
{"title":"WOMEN & EDUCATIONAL LEADRSHP","listings":[{"dept":"EDU","cn":"509"}],"clusters":[118,215]},
{"title":"BUSINESS LAW","listings":[{"dept":"LAW","cn":"205"}],"clusters":[118,215]},
{"title":"PHILOSOPHY OF LAW","listings":[{"dept":"PHL","cn":"226"}],"clusters":[118,205,210,211,215]},
{"title":"INTRO. TO THE U.S. HEALTH SYSTEM","listings":[{"dept":"PH","cn":"116"}],"clusters":[119,205]},
{"title":"STORIES IN HEALTHCARE","listings":[{"dept":"MHB","cn":"220"}],"clusters":[119]},
{"title":"PEER HEALTH ADVOCACY I","listings":[{"dept":"PH","cn":"216"}],"clusters":[119]},
{"title":"QUEST CALCULUS IA","listings":[{"dept":"MTH","cn":"161Q"}],"clusters":[121,136,140]},
{"title":"INTRO TO EE","listings":[{"dept":"ECE","cn":"101Q"}],"clusters":[121]},
{"title":"GLOBAL WARMING","listings":[{"dept":"CHE","cn":"102Q"}],"clusters":[121]},
{"title":"AIR POLLTN: ENGINEERNG PERSCT","listings":[{"dept":"CHE","cn":"103Q"}],"clusters":[121]},
{"title":"CHIPS DIPS & AIR BAGS","listings":[{"dept":"CHE","cn":"105"}],"clusters":[121]},
{"title":"ACOUSTICS","listings":[{"dept":"6TH","cn":"212"}],"clusters":[123]},
{"title":"INTRODUCTION TO PUBLIC HEALTH II","listings":[{"dept":"PH","cn":"102"}],"clusters":[124]},
{"title":"INTRODUCTION TO SEMANTIC ANALYSIS","listings":[{"dept":"LIN","cn":"225"}],"clusters":[125,127,128]},
{"title":"PRAGMATICS","listings":[{"dept":"LIN","cn":"266"}],"clusters":[125]},
{"title":"PHILOSOPHY OF MIND","listings":[{"dept":"PHL","cn":"244"}],"clusters":[125,212]},
{"title":"PHILOSOPHY OF LANGUAGE","listings":[{"dept":"PHL","cn":"247"}],"clusters":[125,212]},
{"title":"INTRODUCTION TO LANGUAGE SOUND SYSTEMS","listings":[{"dept":"LIN","cn":"210"}],"clusters":[126,127,128,132]},
{"title":"TOPICS IN PHONETICS AND PHONOLOGY","listings":[{"dept":"LIN","cn":"227"}],"clusters":[126,132]},
{"title":"LANGUAGE AND SOCIAL IDENTITY","listings":[{"dept":"LIN","cn":"102"}],"clusters":[127,129]},
{"title":"LANGUAGE AND SEXUALITY","listings":[{"dept":"LIN","cn":"103"}],"clusters":[127,129]},
{"title":"LANGUAGE IN ADVERTISING","listings":[{"dept":"LIN","cn":"105"}],"clusters":[127,129,132,231,232]},
{"title":"LINGUISTICS AND LAW","listings":[{"dept":"LIN","cn":"106"}],"clusters":[127,129]},
{"title":"MORPHOLOGY","listings":[{"dept":"LIN","cn":"226"}],"clusters":[127,128]},
{"title":"PEOPLE AND THEIR LANGUAGE","listings":[{"dept":"LIN","cn":"101"}],"clusters":[129]},
{"title":"INTRODUCTION TO PRINTMAKING","listings":[{"dept":"SA","cn":"181"}],"clusters":[130]},
{"title":"COMPUTATIONAL MODELS OF MUSIC","listings":[{"dept":"CSC","cn":"263"}],"clusters":[134]},
{"title":"UNCERTAINTY & CHANCE IN PHY","listings":[{"dept":"PHY","cn":"104"}],"clusters":[135,142,143,144]},
{"title":"INTRO TO CAD AND DRAWING","listings":[{"dept":"ME","cn":"110"}],"clusters":[136,139]},
{"title":"ENGINEERING IN ANTIQUITY","listings":[{"dept":"ME","cn":"106"}],"clusters":[138]},
{"title":"MECHANICS AND OPTICS IN ANTIQUITY","listings":[{"dept":"ME","cn":"107"}],"clusters":[138]},
{"title":"BUILDING ENGINEERING TECHNOLOGY","listings":[{"dept":"ME","cn":"206"}],"clusters":[138]},
{"title":"INTRO TO MATERIALS SCIENCE","listings":[{"dept":"ME","cn":"280"}],"clusters":[139]},
{"title":"ENGINEERING MECHANICS II","listings":[{"dept":"ME","cn":"121"}],"clusters":[140]},
{"title":"CALCULUS IIA","listings":[{"dept":"MTH","cn":"162Q"}],"clusters":[140,154]},
{"title":"MODERN PHYSICS","listings":[{"dept":"PHY","cn":"143"}],"clusters":[141,142]},
{"title":"QUANTUM MECHANICS OF PHYSICAL SYSTEMS","listings":[{"dept":"PHY","cn":"237"}],"clusters":[141]},
{"title":"ELEMENTARY ASTRONOMY","listings":[{"dept":"AST","cn":"111"}],"clusters":[142]},
{"title":"ELEMENTARY ASTROPHYSICS","listings":[{"dept":"AST","cn":"142"}],"clusters":[142]},
{"title":"MODERN PHYSICS","listings":[{"dept":"PHY","cn":"123"}],"clusters":[142]},
{"title":"SHIP SYSTEMS II","listings":[{"dept":"NAV","cn":"249"}],"clusters":[145]},
{"title":"EXCURSIONS IN MATH","listings":[{"dept":"MTH","cn":"130"}],"clusters":[146,149,151,152]},
{"title":"ADVANCED SPANISH COMPOSITION","listings":[{"dept":"SP","cn":"200"}],"clusters":[147,150,156]},
{"title":"INTRO TO MODERN SPANISH LIT","listings":[{"dept":"SP","cn":"202"}],"clusters":[147,162]},
{"title":"SPANISH STUDIES ABROAD","listings":[{"dept":"SP","cn":"207"}],"clusters":[147,157]},
{"title":"DON QUIXOTE: THE BOOK THE MYTH THE IMAGE","listings":[{"dept":"SP","cn":"215"}],"clusters":[147]},
{"title":"THE PICARESQUE NOVEL","listings":[{"dept":"SP","cn":"216"}],"clusters":[147,248]},
{"title":"EL QUIJOTE","listings":[{"dept":"SP","cn":"217"}],"clusters":[147]},
{"title":"GOLDEN AGE DRAMA","listings":[{"dept":"SP","cn":"220"}],"clusters":[147]},
{"title":"SPANISH-AMERICN COLONIAL LIT","listings":[{"dept":"SP","cn":"222"}],"clusters":[147]},
{"title":"19TH CENTURY SPANISH PROSE","listings":[{"dept":"SP","cn":"230"}],"clusters":[147]},
{"title":"GEN OF 1898 & MODERNISMO","listings":[{"dept":"SP","cn":"231"}],"clusters":[147]},
{"title":"MODERN SPANISH PROSE","listings":[{"dept":"SP","cn":"246"}],"clusters":[147,162]},
{"title":"MODERN SPANISH POETRY","listings":[{"dept":"SP","cn":"247"}],"clusters":[147]},
{"title":"SPAIN'S TRANSITION TO DEMOCRACY","listings":[{"dept":"SP","cn":"248"}],"clusters":[147,157,162,248]},
{"title":"TOPICS IN SPANISH LITERATURE AND CULTURE","listings":[{"dept":"SP","cn":"249"}],"clusters":[147]},
{"title":"20TH C SP-AM THEATER","listings":[{"dept":"SP","cn":"255"}],"clusters":[147]},
{"title":"CONT SPANISH AMERICAN PROSE","listings":[{"dept":"SP","cn":"256"}],"clusters":[147]},
{"title":"FACING FACTS: SPANISH-AMERICAN NONFICTION","listings":[{"dept":"SP","cn":"261"}],"clusters":[147,248]},
{"title":"TOPICS IN SPANISH-AMERICAN LIT AND CULTURE","listings":[{"dept":"SP","cn":"262"}],"clusters":[147]},
{"title":"IDENTITY SIGNS","listings":[{"dept":"SP","cn":"262F"}],"clusters":[147]},
{"title":"POSTCARDS FROM SPAIN","listings":[{"dept":"SP","cn":"272"}],"clusters":[147,157,162]},
{"title":"CROSS READINGS: CULTURES OF SPAIN & LATIN AMER.","listings":[{"dept":"SP","cn":"275"}],"clusters":[147]},
{"title":"CALCULUS IA","listings":[{"dept":"AP","cn":"or"}],"clusters":[148]},
{"title":"HONORS CALCULUS III","listings":[{"dept":"MTH","cn":"173"}],"clusters":[148]},
{"title":"HONORS CALCULUS IV","listings":[{"dept":"MTH","cn":"174"}],"clusters":[148]},
{"title":"SPANISH-AMERICAN WOMEN WRITERS","listings":[{"dept":"CLT","cn":"111"}],"clusters":[150]},
{"title":"ELEMENTARY SPANISH I","listings":[{"dept":"SP","cn":"101"}],"clusters":[150]},
{"title":"ELEMENTARY SPANISH II","listings":[{"dept":"SP","cn":"102"}],"clusters":[150]},
{"title":"INTERMEDIATE SPANISH I","listings":[{"dept":"SP","cn":"151"}],"clusters":[150]},
{"title":"INTERMEDIATE SPANISH II","listings":[{"dept":"SP","cn":"152"}],"clusters":[150]},
{"title":"SPANISH STUDIES ABROAD","listings":[{"dept":"SP","cn":"157"}],"clusters":[150]},
{"title":"TRANSITION TO HIGHER MATH","listings":[{"dept":"MTH","cn":"200"}],"clusters":[153]},
{"title":"INTRO TO STOCHASTIC PROCESSE","listings":[{"dept":"MTH","cn":"202"}],"clusters":[153]},
{"title":"OPERATIONS RESEARCH I","listings":[{"dept":"MTH","cn":"208"}],"clusters":[153]},
{"title":"FRACTALS& COMPUTER GRAPHICS","listings":[{"dept":"MTH","cn":"215"}],"clusters":[153]},
{"title":"NUMBER THEORY W/APPLICATIONS","listings":[{"dept":"MTH","cn":"230"}],"clusters":[153]},
{"title":"INTRODUCTION TO CRYPTOGRAPHY","listings":[{"dept":"MTH","cn":"233"}],"clusters":[153]},
{"title":"LINEAR ALGEBRA","listings":[{"dept":"MTH","cn":"235"}],"clusters":[153]},
{"title":"INTRO TO ALGEBRA I","listings":[{"dept":"MTH","cn":"236"}],"clusters":[153]},
{"title":"INTRO TO ALGEBRA II","listings":[{"dept":"MTH","cn":"237"}],"clusters":[153]},
{"title":"COMBINATORIAL ANALYSIS","listings":[{"dept":"MTH","cn":"238"}],"clusters":[153]},
{"title":"INTRO TO TOPOLOGY","listings":[{"dept":"MTH","cn":"240"}],"clusters":[153]},
{"title":"SET THEORY AND LOGIC","listings":[{"dept":"MTH","cn":"246"}],"clusters":[153]},
{"title":"GRAPH THEORY","listings":[{"dept":"MTH","cn":"248"}],"clusters":[153]},
{"title":"INTRO TO GEOMETRY","listings":[{"dept":"MTH","cn":"250"}],"clusters":[153]},
{"title":"DIFF. GEOMETRY I","listings":[{"dept":"MTH","cn":"255"}],"clusters":[153]},
{"title":"ORDINARY DIFFERENTIAL EQUATIONS","listings":[{"dept":"MTH","cn":"263"}],"clusters":[153]},
{"title":"FUNCTIONS OF A REAL VARIABLE I","listings":[{"dept":"MTH","cn":"265"}],"clusters":[153]},