-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcurriculum.js
More file actions
3435 lines (3435 loc) · 179 KB
/
curriculum.js
File metadata and controls
3435 lines (3435 loc) · 179 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
var curriculum = {
"ACC100": ["Introductory Financial Accounting"],
"ACC110": ["Financial Accounting"],
"ACC333": ["Core Concepts of Accounting", "ACC100"],
"ACC340": ["Financial Management", "BSM200"],
"ACC406": ["Introductory Management Accounting", "ACC100"],
"ACC410": ["Management Accounting", "ACC110"],
"ACC414": ["Intermediate Accounting I", "ACC333"],
"ACC504": ["Accounting Cases and Concepts I"],
"ACC507": ["Accounting for Managers", "ACC414"],
"ACC514": ["Intermediate Accounting II", "ACC414"],
"ACC521": ["Auditing", "ACC514"],
"ACC522": ["Taxation for Managers and Financial Planners", "ACC110"],
"ACC605": ["Public Sector Accounting", "ACC414"],
"ACC607": ["Accounting for Small Business", "ACC410"],
"ACC621": ["Internal Auditing", "ACC514"],
"ACC703": ["Advanced Financial Accounting", "ACC504"],
"ACC706": ["Accounting Theory", "ACC504"],
"ACC742": ["Canadian Business Taxation I", "ACC514"],
"ACC801": ["Intermediate Cost and Management Accounting", "ACC414"],
"ACC803": ["Advanced Management Accounting", "ACC801"],
"ACC821": ["Advanced Auditing", "ACC521"],
"ACC842": ["Canadian Business Taxation II", "ACC742"],
"AFA100": ["Introductory Financial Accounting"],
"AFA200": ["Management Accounting", "AFA100"],
"AFA300": ["Intermediate Accounting I", "AFA100"],
"AFA400": ["Intermediate Accounting II", "AFA300"],
"AFA500": ["Intermediate Accounting III", "AFA400"],
"AFA511": ["Ethics in Accounting", "AFA400"],
"AFA517": ["Taxation for Managers and Financial Planners", "AFA300"],
"AFA518": ["Auditing", "AFA400"],
"AFA615": ["Public Sector and Not-for-Profit Accounting", "AFA300"],
"AFA619": ["Intermediate Cost and Management Acct.", "AFA100"],
"AFA706": ["Financial Accounting Theory", "AFA500"],
"AFA708": ["Forensic Accounting and Internal Audit", "AFA400"],
"AFA716": ["Advanced Financial Acct. and Disclosure", "AFA500"],
"AFA717": ["Canadian Business Taxation I", "AFA500"],
"AFA817": ["Canadian Business Taxation II", "AFA717"],
"AFA819": ["Advanced Management Accounting", "AFA619"],
"AER222": ["Engineering Design and Graphical Communication"],
"AER309": ["Basic Thermodynamics", "CPS125"],
"AER316": ["Fluid Mechanics", "MTH240"],
"AER318": ["Dynamics", "AER222"],
"AER320": ["Statics and Intro to Strength of Materials", "AER222"],
"AER403": ["Mechanisms and Vibrations", "AER318"],
"AER404": ["Intro to Aerospace Engineering Design", "AER222"],
"AER416": ["Flight Mechanics", "AER316"],
"AER423": ["Thermodynamics and Heat Transfer", "AER309"],
"AER504": ["Aerodynamics", "AER416"],
"AER507": ["Materials and Manufacturing", "AER320"],
"AER509": ["Control Systems", "AER403"],
"AER520": ["Stress Analysis", "AER320"],
"AER606": ["Component Design and Material Selection", "AER404", "AER507", "AER520", "ECN801"],
"AER615": ["Aircraft Performance", "AER504"],
"AER621": ["Aerospace Structural Design", "AER404"],
"AER622": ["Gas Dynamics", "AER423"],
"AER626": ["Applied Finite Elements", "AER520"],
"AER627": ["Introduction to Space Robotics", "AER403"],
"AER710": ["Propulsion", "AER622"],
"AER715": ["Avionics and Systems", "AER416"],
"AER716": ["Aircraft Stability and Control", "AER320"],
"AER721": ["Orbital Dynamics", "AER403"],
"AER722": ["Aeroelasticity", "AER403"],
"AER723": ["Introduction to Space Systems Design", "AER509"],
"AER813": ["Space Systems Design Project", "AER627"],
"AER814": ["Aircraft Design Project", "AER626"],
"AER817": ["Systems Engineering", "AER606"],
"AER818": ["Manufacturing Management", "AER507"],
"AER821": ["Spacecraft Attitude Dynamics and Control", "AER509"],
"AER822": ["Avionics Design Project", "AER715"],
"AER827": ["Composite Materials", "AER507"],
"AER870": ["Aerospace Engineering Thesis"],
"ASL101": ["Introductory American Sign Language I"],
"ASL201": ["Introductory American Sign Language II", "ASL101"],
"ASL301": ["Intermediate American Sign Language I", "ASL201"],
"ASL401": ["Intermediate American Sign Language II", "ASL301"],
"ASL501": ["Advanced American Sign Language I", "ASL401"],
"ASL601": ["Advanced American Sign Language II", "ASL501"],
"ANT100": ["Introduction to Anthropology"],
"ANT200": ["Anthropological Perspectives", "ANT100"],
"ANT306": ["Introduction to Linguistic Anthropology", "ANT100"],
"ANT900": ["Anthropology Capstone", "LIR400"],
"ARB101": ["Introductory Arabic I"],
"ARB201": ["Introductory Arabic II", "ARB101"],
"ARB300": ["Principles in Arabic Writing"],
"ARB301": ["Intermediate Arabic I", "ARB201"],
"ARB401": ["Intermediate Arabic II", "ARB301"],
"ARB402": ["Arabic Conversation and Pronunciation", "ARB301"],
"ARB501": ["Advanced Arabic I", "ARB401"],
"ARB601": ["Advanced Arabic II", "ARB501"],
"ARC721": ["Theorizing Technology in Architecture", "ASC406"],
"ARC821": ["The Architect in Society", "ASC406"],
"ARC920": ["Advanced Architecture Studio"],
"ASC101": ["Communications Studio"],
"ASC102": ["The Built World"],
"ASC103": ["The Built Context"],
"ASC120": ["Introduction to Architecture"],
"ASC200": ["Sustainable Practices", "ASC102"],
"ASC201": ["Design Studio I", "ASC101"],
"ASC202": ["The Building Project", "ASC102"],
"ASC203": ["Structures I", "PCS107"],
"ASC205": ["Collaborative Exercise I"],
"ASC206": ["Ideas, Tech and Precedents I", "ASC103"],
"ASC301": ["Design Studio II", "ASC201"],
"ASC302": ["Envelope Systems", "ASC201"],
"ASC303": ["Structures II", "ASC203"],
"ASC304": ["The Construction Project", "ASC103"],
"ASC306": ["Ideas, Tech and Precedents II", "ASC206"],
"ASC401": ["Design Studio III", "ASC301"],
"ASC402": ["Bodily Comfort Systems", "ASC302"],
"ASC403": ["Site Development and Planning", "ASC102"],
"ASC405": ["Collaborative Exercise II", "ASC205"],
"ASC406": ["Ideas, Tech and Precedents III", "ASC306"],
"ASC520": ["Integration Studio I", "ASC401"],
"ASC521": ["Light/Sound in Architecture", "ASC401"],
"ASC522": ["Project Economics", "ASC401"],
"ASC523": ["Theories of Urbanism", "ASC401", "ASC403", "ASC406"],
"ASC605": ["Collaborative Exercise III", "ASC405"],
"ASC620": ["Integration Studio II", "ASC520", "ASC522", "ASC621"],
"ASC621": ["Tectonics and Materiality", "ASC401"],
"ASC622": ["Documentation and Construction Contract", "ASC401"],
"ASC623": ["Principles of Detailing", "ASC401"],
"ASC704": ["Independent Study"],
"ASC730": ["Construction Case Studies Advanced"],
"ASC731": ["The Architecture of Urban Housing"],
"ASC732": ["Architectural Theory Since 1968"],
"ASC733": ["Canadian Architecture Since 1945"],
"ASC734": ["Advanced Digital Design"],
"ASC735": ["Heritage Conservation Theory and Practice"],
"ASC750": ["Architecture and Public Policy"],
"ASC751": ["Architectural Writing"],
"ASC752": ["Business Practices in the AEC Industry"],
"ASC753": ["Contemporary Theories of Urbanism"],
"ASC754": ["Creative Space Simulation"],
"ASC755": ["Digital Tools"],
"ASC756": ["Fire Safety in the Built Environment"],
"ASC805": ["Collaborative Exercise IV", "ASC605"],
"ASC850": ["Globalization and Construction"],
"ASC851": ["How Buildings Work"],
"ASC852": ["Landscape Ecological Design"],
"ASC853": ["Landscape Design, Theory and Application"],
"ASC854": ["Performance Modelling"],
"ASC855": ["Sustainable Ratings Systems"],
"ASC856": ["The Small Building"],
"ASC857": ["Glass in Architecture"],
"ASC858": ["Toronto: Architecture/Urbanism"],
"ASC900": ["Selected Topics in Architectural Science"],
"ASC901": ["Selected Topics in Architectural Science"],
"ASC902": ["Selected Topics in Architectural Science"],
"ASC903": ["Selected Topics in Architectural Science"],
"ASC904": ["Selected Topics in Architectural Science"],
"ASC905": ["Selected Topics in Architectural Science"],
"ACS100": ["Ideas That Shape the World I"],
"ACS103": ["Introduction to the Humanities"],
"ACS104": ["Ideas that Shape the World"],
"ACS106": ["Introduction to Language"],
"ACS210": ["Ideas that Shape the World: Antiquity"],
"ACS220": ["Ideas that Shape the World: Middle Ages"],
"ACS300": ["Ideas That Shape the World: Early Modern"],
"ACS302": ["Introduction to Culture Studies"],
"ACS400": ["Ideas That Shape the World: Modernity"],
"ACS401": ["Introduction to Research and Statistics"],
"ACS402": ["Introduction to Global Studies"],
"ACS403": ["Introduction to Diversity and Equity"],
"ACS500": ["Ideas That Shape the World: Post-Atomic"],
"ACS800": ["Senior Group Project"],
"ACS900": ["Senior Seminar"],
"ACS910": ["Fellowship Practicum"],
"ACS950": ["Directed Research Course"],
"BCH261": ["Biochemistry", "BLG143"],
"BCH361": ["Advanced Biochemistry I", "BCH261"],
"BCH461": ["Biochemistry of Disease", "BLG400", "BCH361"],
"BCH463": ["Advanced Biochemistry II", "BCH361"],
"BCH501": ["Protein Biochem and Proteomics", "BCH261"],
"BCH550": ["Glycobiology", "BLG311"],
"BCH560": ["Protein Structure and Function", "BCH261"],
"BCH580": ["Cell Signalling", "BLG311"],
"BCH880": ["Advanced Biochemistry Laboratory", "BCH361"],
"BLG101": ["Anatomy and Physiology I"],
"BLG111": ["Anatomy and Physiology II", "BLG101", "NSE101", "NSE111", "PPN101"],
"BLG131": ["Microbiology for Nursing", "PPN201", "NSE203", "NSE211", "PAT201", "NSE212"],
"BLG133": ["Fundamentals of Biological Anthropology I"],
"BLG143": ["Biology I"],
"BLG144": ["Biology II", "BLG143"],
"BLG151": ["Microbiology I", "BLG143"],
"BLG181": ["Biology of a Living City"],
"BLG230": ["Botany", "BLG143"],
"BLG233": ["Biological Anthropology II", "BLG133"],
"BLG251": ["Microbiology II", "BLG151"],
"BLG307": ["Molecular Biology", "BLG151"],
"BLG311": ["Cell Biology", "BLG143"],
"BLG312": ["Invertebrate Zoology", "BLG143"],
"BLG315": ["Evolution", "BLG143"],
"BLG316": ["Zoology", "BLG143"],
"BLG340": ["Environmental Biology", "BLG151"],
"BLG351": ["Applied Microbiology", "BLG151"],
"BLG400": ["Genetics", "BLG143"],
"BLG401": ["Ecotoxicology", "BLG143"],
"BLG402": ["Limnology", "BLG143"],
"BLG408": ["Viruses", "BLG143"],
"BLG409": ["Biometry", "BLG143"],
"BLG40A/B": ["Project-Thesis"],
"BLG411": ["Cell Biology II", "BLG311"],
"BLG481": ["Biology and Chemistry Project Laboratory"],
"BLG508": ["Conservation Biology", "BLG230"],
"BLG567": ["Ecology", "BLG143"],
"BLG578": ["Pharmacology", "BLG143"],
"BLG599": ["Biology Facts in Pop Media Sci-Fiction"],
"BLG600": ["Physiology", "BLG143"],
"BLG601": ["Physiology", "BLG143"],
"BLG605": ["Science and Government Policy Development", "CHY142"],
"BLG606": ["Intro to Clinical Research and Trials", "CHY142"],
"BLG607": ["Intellectual Property in Science", "CHY142"],
"BLG610": ["Data Science for Biology", "BLG409"],
"BLG630": ["Population Biology", "BLG230"],
"BLG667": ["Disease Ecology", "BLG567"],
"BLG678": ["Current Topics in Biology", "BLG307"],
"BLG699": ["Social Factors in Drug Development"],
"BLG700": ["Anatomy", "BLG143"],
"BLG701": ["Anatomy", "BLG143"],
"BLG702": ["Genomics and its Applications", "BLG400"],
"BLG707": ["Entomology", "BLG143"],
"BLG720": ["Urban Field Biology - Water Ecosystems"],
"BLG721": ["Inter-University Field Course"],
"BLG785": ["Developmental Biology", "BLG307"],
"BLG788": ["Current Topics in Biotechnology", "BLG307"],
"BLG800": ["Genomics and Proteomics", "BLG311"],
"BLG802": ["Plant Diversity", "BLG230"],
"BLG803": ["Ecosystem Processes", "BLG567"],
"BLG804": ["Water Quality and Environmental Management", "BLG151"],
"BLG805": ["Behavioural Ecology", "BLG316"],
"BLG806": ["Tropical Field Ecology", "BLG567"],
"BLG810": ["Advanced Techniques in Plant Biology", "BLG230"],
"BLG850": ["What is Cancer?"],
"BLG856": ["Immunology", "BLG311"],
"BLG888": ["Molecular Biology Laboratory", "BLG307"],
"BME100": ["Introduction to Biomedical Engineering"],
"BME229": ["Biomedical Physics", "BME100"],
"BME323": ["Statics and Mechanics of Materials"],
"BME328": ["Digital Systems", "CPS125"],
"BME406": ["Biomechanics", "BME323"],
"BME423": ["Biomaterials", "BLG143"],
"BME501": ["Bioinformatics", "BLG601"],
"BME506": ["Introduction to Software", "BME328"],
"BME516": ["Fluid Mechanics", "BME229", "MTH312", "BME423", "CEN199", "BME406"],
"BME532": ["Signals and Systems I", "EES604", "CEN199"],
"BME538": ["Microprocessor Systems", "BME328"],
"BME632": ["Signals and Systems II", "BME532", "CEN199"],
"BME639": ["Control Systems and Bio-Robotics", "BME532", "CEN199"],
"BME674": ["Biomedical Instrumentation", "BLG601"],
"BME703": ["Tissue Engineering", "BLG601"],
"BME704": ["Radiation Therapy Devices", "BME674"],
"BME705": ["Rehabilitation Engineering", "BLG601"],
"BME70A/B": ["Biomedical Engineering Capstone Design", "BLG601", "BME501", "BME516", "BME632", "BME639", "BME674", "EES612", "BLG701", "BME506", "BME423", "BME406", "MTH410"],
"BME772": ["Biomedical Signal Analysis", "BLG601"],
"BME777": ["Emerging Topics in Biomedical Engineering", "BLG601", "BLG701", "BME406", "BME423", "BME501", "BME506", "BME516", "BME632", "BME639", "BME674", "EES612", "MTH410"],
"BME802": ["Human-Computer Interaction", "BME506", "BME639", "BME674"],
"BME804": ["Design of Bio-MEMS", "BME674"],
"BME808": ["Computations in Genetic Engineering", "BME501"],
"BME809": ["Biomedical Systems Modelling", "BLG601"],
"BME872": ["Biomedical Image Analysis", "BME229"],
"BMS150": ["Introduction to the Human Genome"],
"BMS280": ["Biomedical Science Orientation II"],
"BMS451": ["Medical Microbiology", "BLG151"],
"BMS500": ["Human Genetics", "BCH261"],
"BMS605": ["Advanced Physiology", "BCH261"],
"BMS607": ["Molecular Genetics and Epigenetics", "BLG400", "BLG307"],
"BMS650": ["Experimental Design", "BCH261", "BLG400", "BLG307", "BLG411"],
"BMS750": ["Systems Biology", "BLG411"],
"BMS760": ["Critical Thinking in Biomedical Sciences", "BMS650"],
"BMS770": ["Medical Epidemiology", "MTH380"],
"BMS850": ["Cancer Biology", "BLG307"],
"BMS857": ["Advanced Immunology", "BLG856"],
"BMS858": ["Infection and Immunity", "BLG151", "BLG411", "BLG856"],
"BMS860": ["Stem Cell Biology", "BCH361", "BLG307", "BLG411", "BLG600"],
"BMS865": ["Model Organisms", "BLG311"],
"BMS870": ["Neurobiology", "BLG600", "BLG311", "BLG411"],
"BSC720": ["Building Performance Assessment Studio"],
"BSC721": ["Existing Building Forensics", "ASC620"],
"BSC722": ["Sustainable Environmental Control Systems", "ASC620"],
"BSC820": ["Building Science Detail Design Studio"],
"BSC821": ["Sustainable Detail Design"],
"BSC822": ["Advanced Envelopes/Components"],
"BUS221": ["Business Decision-Making"],
"BUS223": ["Ethics in Commerce"],
"BUS600": ["Strategic Analysis in Uncertain Times"],
"BUS720": ["Independent Research"],
"BUS800": ["Strategic Management", "AFF310"],
"BSM100": ["The New Business: From Idea to Reality"],
"BSM200": ["The Growing Business: Breaking Even", "BSM100"],
"BSM600": ["The Mature Business", "BSM200"],
"CRB100": ["Introduction to the Caribbean"],
"CRB500": ["Families in the Caribbean"],
"CRB501": ["Racism and Caribbean Peoples in Canada"],
"CRB502": ["Cultural Traditions in the Caribbean"],
"CRB600": ["Postcolonial Caribbean Society"],
"CRB603": ["Special Topics in Caribbean Studies"],
"CRB605": ["Caribbean Tourism: Impacts and Resistance"],
"CRB614": ["Caribbean Critical Thought"],
"CHE200": ["Chemical Engineering Fundamentals", "CHY102"],
"CHE204": ["Thermodynamics I", "CHE200", "CHY211", "CPS125", "MTH141", "MTH240", "PCS125"],
"CHE214": ["Thermodynamics II", "CHE204"],
"CHE215": ["Process Measurements", "CHE217"],
"CHE217": ["Fluid Mechanics", "CHE200", "CHY211", "CPS125", "MTH140", "MTH141", "MTH240", "PCS125", "PCS211"],
"CHE220": ["Heat Transfer", "CHE217"],
"CHE307": ["Chemical Engineering Materials", "CHY224"],
"CHE308": ["Mass Transfer", "CHE214"],
"CHE309": ["Introductory Bioengineering", "CHE200"],
"CHE312": ["Chemical Reaction Engineering", "CHE308"],
"CHE315": ["Unit Operations Laboratory I", "CHE215"],
"CHE318": ["Separation Processes", "CHE220"],
"CHE319": ["Process Modeling and Simulation", "CHE308"],
"CHE331": ["Engineering Statistics and Probabilities", "CPS125"],
"CHE338": ["Chemical Engineering Computations", "CPS125"],
"CHE404": ["Enhanced Oil Recovery", "CHE308"],
"CHE413": ["Chemical Engineering Equipment Design", "CHE312", "CHE318", "ECN801"],
"CHE414": ["Rate Processes in Chemical Engineering", "CHE220"],
"CHE415": ["Unit Operations Laboratory II", "CHE315"],
"CHE420": ["Particulate Engineering", "CHE217"],
"CHE422": ["Biochemical Engineering", "CHE220", "CHE309"],
"CHE424": ["Food Process Engineering", "CHE220"],
"CHE425": ["Process and Engineering Optimization", "CHE319"],
"CHE426": ["Transport Phenomena", "CHE308"],
"CHE427": ["Fluidization Engineering", "CHE217"],
"CHE430": ["Process Control", "CHE312", "CHE318", "CHE319"],
"CHE44A": ["Plant Design-A", "CHE617"],
"CHE44B": ["Plant Design-B", "CHE44A"],
"CHE451": ["Plastics Technology", "CHY224"],
"CHE454": ["Polymer Science", "CHE331"],
"CHE462": ["Computer Process Control", "CHE430"],
"CHE471": ["Thesis/Research and Design Project"],
"CHE473": ["Sustainable Energy Technologies"],
"CHE474": ["Nanotechnology and Its Applications", "CHE312", "CHE318"],
"CHE480": ["Microfluidic Systems", "CHE308"],
"CHE615": ["Air Pollution and Control", "CHE318"],
"CHE616": ["Water and Wastewater Treatment", "CHE308"],
"CHE617": ["Chemical Process Safety Loss Prevention", "CHE308"],
"CHE618": ["Solid Waste Treatment", "CHE308"],
"CHE714": ["Pharmaceutical Technology and Processing", "CHE220", "CHE309"],
"CHE715": ["Membrane Technology", "CHE308"],
"CHY102": ["General Chemistry"],
"CHY103": ["General Chemistry I"],
"CHY104": ["General Chemistry"],
"CHY113": ["General Chemistry II", "CHY103"],
"CHY123": ["General Chemistry"],
"CHY142": ["Organic Chemistry I", "CHY103"],
"CHY152": ["Introductory Organic Chemistry", "CHY104"],
"CHY182": ["Chemistry Applications to Living Systems"],
"CHY183": ["Introduction to Forensic Sciences"],
"CHY200": ["Organic Chemistry", "CHY104"],
"CHY203": ["Instrumental Methods of Analysis", "CHY102", "CPS125", "MTH140", "MTH141", "PCS125", "CHE200", "CHY211", "MTH240"],
"CHY204": ["Biochemistry I", "CHY200"],
"CHY205": ["Biochemistry II", "CHY204"],
"CHY211": ["General Chemistry Laboratory", "CHY102"],
"CHY213": ["Analytical Chemistry I", "CHY113"],
"CHY223": ["Analytical Chemistry II", "CHY213"],
"CHY224": ["Organic Chemistry", "CHY102"],
"CHY242": ["Organic Chemistry II", "CHY142"],
"CHY249": ["Structure and Bonding", "CHY103"],
"CHY307": ["Chemistry Laboratory Research Project"],
"CHY310": ["Commercial Chemistry", "BCH261"],
"CHY330": ["Atomic and Molecular Spectroscopy", "CHY223"],
"CHY331": ["Basic Chromatography", "CHY223"],
"CHY339": ["Characterization of Organic Compounds", "CHY242"],
"CHY344": ["Inorganic Chemistry", "CHY113"],
"CHY381": ["Physical Chemistry I", "CHY103", "CHY113"],
"CHY382": ["Physical Chemistry II", "CHY103", "CHY113"],
"CHY399": ["Property-Directed Integrated Laboratory", "CHY242"],
"CHY40A": ["Research Project-Thesis-A"],
"CHY40B": ["Research Project-Thesis-B", "CHY40A"],
"CHY422": ["Environmental Chemistry", "CHY223"],
"CHY423": ["Environmental Science", "BLG144"],
"CHY431": ["Applied Analytical Chemistry", "CHY223"],
"CHY434": ["Analytical Chemistry of Complex Samples", "CHY330"],
"CHY435": ["Advanced Chemical Instrumentation", "CHY223"],
"CHY436": ["Pharmaceutical Chemistry", "BCH261"],
"CHY437": ["Organic Chemistry", "CHY242"],
"CHY445": ["Materials Chemistry", "CHY242"],
"CHY447": ["Solid State Chemistry", "CHY113"],
"CHY449": ["Inorganic Chemistry II", "CHY344"],
"CHY482": ["Selected Topics in Chemistry", "CHY223"],
"CHY500": ["Directed Studies"],
"CHY501": ["Polymer Chemistry", "CHY242"],
"CHY502": ["Organometallic Chemistry", "CHY339"],
"CHY547": ["Theory of Food Analysis", "CHY204"],
"CHY583": ["Alternative Energies"],
"CHY599": ["The Business of Chemistry and Biology"],
"CHY600": ["Organic Reaction Mechanisms", "CHY142"],
"CHY706": ["Computational and Quantum Chemistry", "CHY142"],
"CYC101": ["Intro to Child and Youth Care"],
"CYC102": ["Ready for Practice"],
"CYC201": ["Child Abuse and Neglect"],
"CYC301": ["Interpersonal Communications", "CYC101"],
"CYC302": ["Therapeutic Recreational Programming", "CYC101"],
"CYC303": ["Internship I", "CYC102"],
"CYC347": ["Professional Issues", "CYC101"],
"CYC402": ["Group Work with Children and Youth", "CYC101"],
"CYC405": ["Therapeutic Foundations"],
"CYC406": ["Therapeutic Life-Space"],
"CYC409": ["Social Research and Evaluation I"],
"CYC48A/B": ["Independent Study", "CYC602"],
"CYC505": ["Management in Human Service Organizations"],
"CYC515": ["Cyber Technology and Communication"],
"CYC517": ["CYC Practice in Developmental Services"],
"CYC518": ["Special Topics"],
"CYC519": ["Independent Reading"],
"CYC550": ["Foundations of Social Innovation"],
"CYC560": ["Social Innovation in Practice"],
"CYC570": ["Social Innovation in Action", "CYC550"],
"CYC602": ["Children's Rights"],
"CYC604": ["Social Research and Evaluation II", "CYC409"],
"CYC607": ["Therapeutic Assessment", "CYC405"],
"CYC608": ["Therapeutic Intervention", "CYC607"],
"CYC60A/B": ["Internship II", "CYC303"],
"CYC800": ["Intensive In-Home Family Support"],
"CYC801": ["CYC Practice in Education"],
"CYC803": ["Advocacy in Child and Youth Services"],
"CYC804": ["Integrated Case Management", "CYC602"],
"CYC805": ["Special Issues: Program Development"],
"CYC806": ["Advanced Placement", "CYC60A/B"],
"CYC807": ["Advanced Group Work", "CYC402"],
"CYC808": ["Residential Care Techniques"],
"CYC809": ["Trauma-Informed Practice", "CYC607"],
"CYC819": ["Practice with Families", "CYC607"],
"CYC822": ["Professional Practice and Identity", "CYC803"],
"CYC825": ["Independent Studies", "CYC409"],
"CYC900": ["Diversity Issues for Children and Youth"],
"CYC905": ["An Indigenous Perspective on CYC"],
"CHN101": ["Introductory Chinese I"],
"CHN201": ["Introductory Chinese II", "CHN101"],
"CHN301": ["Intermediate Chinese I", "CHN201"],
"CHN401": ["Intermediate Chinese II", "CHN301"],
"CHN402": ["Chinese Conversation and Pronunciation", "CHN401"],
"CHN501": ["Advanced Chinese I", "CHN401"],
"CHN502": ["Communication Business Chinese", "CHN515"],
"CHN515": ["Introduction to Business Chinese", "CHN601"],
"CHN601": ["Advanced Chinese II", "CHN501"],
"CHN602": ["Chinese Business in Practice", "CHN515"],
"CHN612": ["Contemporary Chinese Language and Culture", "CHN601"],
"CHS503": ["Chinese Literary Traditions"],
"CHS504": ["Chinese Cultural Traditions"],
"CVL207": ["Graphics"],
"CVL300": ["Environmental Science and Impact Assess", "CEN100"],
"CVL312": ["Computer Aided Structural Analysis", "CEN199", "CVL313"],
"CVL313": ["Structural Analysis", "CEN199"],
"CVL316": ["Transportation Engineering", "MTH425"],
"CVL320": ["Strength of Materials I", "CEN100", "MTH141", "MTH240", "MTL200", "PCS125", "PCS211"],
"CVL323": ["Fundamentals of Surveying", "CVL207"],
"CVL352": ["Geomatics Measurement Techniques", "CEN199"],
"CVL354": ["Remote Sensing and Image Analysis", "CEN199", "PCS125"],
"CVL400": ["Hydrology and Water Resources", "CVL405"],
"CVL405": ["Probability and Statistics for Engineers", "CPS125"],
"CVL407": ["Structures III", "ASC303"],
"CVL410": ["Structural Concrete Design I", "CEN199"],
"CVL411": ["Structural Steel Design", "CEN199", "CVL313"],
"CVL420": ["Strength of Materials II", "CVL320"],
"CVL423": ["Geology for Engineers", "CHY102"],
"CVL434": ["Geotechnical Properties of Soils", "CVL320"],
"CVL500": ["Introduction to Structural Design", "CEN199", "CVL420"],
"CVL501": ["Fluid Mechanics and Hydraulics", "CEN199"],
"CVL502": ["Hydraulics Engineering", "MEC522"],
"CVL533": ["Concrete Materials", "CEN199"],
"CVL600": ["Foundation Engineering", "CEN199"],
"CVL601": ["Wastewater Engineering", "CEN199", "CVL400", "CVL501"],
"CVL602": ["Municipal Engineering"],
"CVL609": ["Civil Engineering Systems", "CEN199", "ECN801"],
"CVL633": ["Highway Materials", "CEN199", "CVL320"],
"CVL650": ["Satellite Geodesy", "CVL352"],
"CVL70A/B": ["Structural Capstone Design Project", "CVL313"],
"CVL71A/B": ["Environmental Capstone Design Project", "CVL300"],
"CVL72A/B": ["Transportation Capstone Design Project", "CVL316"],
"CVL735": ["Highway Design", "CEN199"],
"CVL736": ["Geospatial Information Systems", "CVL352"],
"CVL742": ["Project Management", "ECN801"],
"CVL900": ["Pavement Design and Management", "CVL633"],
"CVL901": ["Municipal Solid Waste Management", "CVL300"],
"CVL902": ["Traffic Operations and Management", "CVL316"],
"CVL903": ["Water Resources Engineering", "CVL400"],
"CVL904": ["Structural Concrete Design II", "CVL410"],
"CVL905": ["Bridge Design and Construction", "CVL411"],
"CVL906": ["Renovation/Repair of Existing Structures", "CVL410"],
"CVL908": ["Structural Building Systems", "CVL312", "CVL410", "CVL411"],
"CVL909": ["Water and Wastewater Treatment Engineering"],
"CVL910": ["Transportation Planning", "CVL316"],
"CVL913": ["Water Supply Engineering", "CVL601"],
"CVL914": ["Pavement Materials and Design", "CVL434"],
"CVL920": ["Water and Wastewater Treatment Engineering", "CVL602"],
"MPC101": ["Visual Studies I"],
"MPC103": ["Art and the Classical Tradition"],
"MPC125": ["Visual Studies II", "MPC101"],
"MPC201": ["Visual Art: Concepts and Theories"],
"MPC203": ["Art in the Modern World", "MPC103"],
"MPC210": ["Visual Culture: Digital Art"],
"MPC225": ["Visual Studies III: Integrated Digital", "MPC125"],
"CEN100": ["Introduction to Engineering"],
"CEN199": ["Writing Skills"],
"CEN699": ["Research Placement"],
"CEN800": ["Law and Ethics in Engineering Practice"],
"CMN100": ["Professional Health Communication"],
"CMN114": ["Short Management Reports"],
"CMN200": ["The Craft of Professional Writing"],
"CMN210": ["Text, Image and Sound"],
"CMN211": ["Language and Power"],
"CMN213": ["Texts in Social Contexts"],
"CMN214": ["Communication and Language"],
"CMN215": ["Messages, Modalities and Media", "CMN200"],
"CMN216": ["Communication Revolutions"],
"CMN222": ["Digital Discourse and Design", "CMN200"],
"CMN225": ["Communication in Place"],
"CMN230": ["Trans Studies and Communication"],
"CMN269": ["Countercultural Communication"],
"CMN279": ["Introduction to Professional Communication"],
"CMN288": ["Communication and Social Media"],
"CMN300": ["Communication in the Computer Industry"],
"CMN304": ["Career Advancement Communication"],
"CMN305": ["Strategic Public Relations In ProCom", "CMN100"],
"CMN306": ["Risk and Crisis Communication", "CMN100"],
"CMN310": ["Communication with Colour", "CMN448"],
"CMN313": ["Organizational Report Writing", "CMN100"],
"CMN314": ["Professional Presentations", "CMN100"],
"CMN315": ["Issues in Organizational Communication", "CMN100"],
"CMN316": ["Questioning Data", "CMN100"],
"CMN317": ["Information, Technology, and Control", "CMN100"],
"CMN321": ["Knowledge Translation", "CMN313"],
"CMN323": ["Introduction to Professional Practice", "CMN222"],
"CMN324": ["Strategic Storytelling in Industry", "CMN200"],
"CMN325": ["Communication and the Digital Enterprise", "CMN200"],
"CMN373": ["Fashion and Communication"],
"CMN376": ["ProCom Internship"],
"CMN380": ["Spectacle and the City", "CMN448"],
"CMN402": ["Theorizing Communication", "CMN323"],
"CMN403": ["Visual Semiotics", "CMN448"],
"CMN405": ["Oral Advocacy", "CMN314"],
"CMN406": ["Communication in an Indigenous Context"],
"CMN408": ["Proposal and Grant Writing", "CMN313"],
"CMN411": ["Special Topics in ProCom"],
"CMN413": ["Corporate Communications", "CMN100"],
"CMN414": ["Interpersonal Communication", "CMN100"],
"CMN432": ["Communication in the Engineering Professions"],
"CMN443": ["Contemporary Intercultural Communication", "CMN100"],
"CMN447": ["Communication and Law", "LAW122"],
"CMN448": ["Introduction to Visual Communication", "CMN200"],
"CMN450": ["Participatory Media and Communication"],
"CMN453": ["Communication and Social Change", "CMN211"],
"CMN480": ["Applied Research Methods I", "CMN315"],
"CMN490": ["Applied Research Methods II", "CMN480"],
"CMN600": ["Science, Communication and Society"],
"CMN601": ["Visual Communication: A Critical Approach"],
"FCD121": ["Design Literacy I"],
"FCD204": ["Discovering Data Storytelling", "NNS101"],
"FCD210": ["Text, Image and Sound"],
"FCD222": ["Coding for Creatives"],
"FCD230": ["Topics in Communication and Design"],
"FCD240": ["History of Art and Design: Global Survey"],
"FCD309": ["Design for Sustainability"],
"FCD316": ["The Global Stage"],
"FCD362": ["Web and Cross-Media Design (FCAD Elective)"],
"FCD540": ["Marketing for Creatives"],
"FCD551": ["Digital Media and Cultures (FCAD Elective)"],
"FCD558": ["Intro to Design Thinking"],
"FCD580": ["Project in Creative Technology"],
"FCD760": ["Diversity: Creative Work"],
"FCD810": ["Immersion in Communication and Design"],
"FCD815": ["FCAD's Design Solutions Supercourse I"],
"FCD816": ["Global Campus Studio Supercourse I"],
"FCD817": ["Live Event Supercourse I"],
"FCD825": ["FCAD's Design Solutions Supercourse II"],
"FCD826": ["Global Campus Studio Supercourse II"],
"FCD827": ["Live Event Supercourse II", "FCD817"],
"FCD842": ["Build Your Brand", "NNS101"],
"FCD912": ["Researching Media Audiences"],
"FCD918": ["Media Ethics"],
"FCD920": ["Visual Story Production"],
"FCD962": ["Designing Interactions"],
"COE318": ["Software Systems", "CHY102", "MTH141", "PCS211", "CPS125", "ELE202", "MTH240"],
"COE328": ["Digital Systems", "CPS125", "ELE202"],
"COE428": ["Engineering Algorithms and Data Structures", "COE318"],
"COE501": ["Electromagnetism: Theory and Effects", "MTH312"],
"COE528": ["Object Oriented Eng Analysis and Design", "COE318"],
"COE538": ["Microprocessor Systems", "COE328"],
"COE608": ["Computer Organization and Architecture", "COE328"],
"COE628": ["Operating Systems", "COE318"],
"COE691": ["Software Requirements Analysis and SPEC", "CPS510", "COE428", "COE528"],
"COE692": ["Software Design and Architecture", "CPS510", "COE428", "COE528"],
"COE70A/B": ["Computer Engineering Capstone Design", "COE528", "COE608", "COE628", "MEC511", "MTH514", "ELE632", "ELE635", "ELE639", "CPS688", "ELE632", "ELE635", "ELE632", "ELE639", "CPS688", "COE692", "CPS688", "ELE532"],
"COE718": ["Embedded Systems Design", "COE538"],
"COE758": ["Digital Systems Engineering", "COE538"],
"COE768": ["Computer Networks", "COE538"],
"COE817": ["Network Security", "COE768"],
"COE818": ["Advanced Computer Architecture", "COE758"],
"COE838": ["Systems-on-Chip Design", "COE718"],
"COE848": ["Fundamentals of Data Engineering", "COE528"],
"COE865": ["Advanced Computer Networks", "COE768"],
"COE891": ["Software Testing and Quality Assurance", "COE692"],
"COE892": ["Distributed and Cloud Computing", "COE768"],
"CPS101": ["Introduction to App Development"],
"CPS109": ["Computer Science I"],
"CPS118": ["Introductory Programming for Scientists"],
"CPS125": ["Digital Computation and Programming"],
"CPS171": ["Introduction to Cyber-Secure Coding"],
"CPS188": ["Computer Programming Fundamentals"],
"CPS209": ["Computer Science II", "CPS109"],
"CPS213": ["Computer Organization I"],
"CPS270": ["Data Access and Management"],
"CPS305": ["Data Structures", "CPS209"],
"CPS310": ["Computer Organization II", "CPS213"],
"CPS311": ["Object Oriented Programming and Design", "CPS209"],
"CPS371": ["Introduction to Security Protocols", "CPS571"],
"CPS393": ["Introduction to UNIX, C and C++", "CPS209"],
"CPS406": ["Introduction to Software Engineering", "CPS311"],
"CPS40A/B": ["Thesis"],
"CPS412": ["Social Issues, Ethics and Professionalism"],
"CPS420": ["Discrete Structures", "MTH110", "CPS109"],
"CPS471": ["Software Security Fundamentals", "CPS171"],
"CPS501": ["Bioinformatics", "CPS118"],
"CPS506": ["Comparative Programming Languages", "CPS209"],
"CPS510": ["Database Systems I", "CPS305"],
"CPS511": ["Computer Graphics", "CPS305"],
"CPS513": ["Introduction to Multimedia Computation"],
"CPS521": ["Introduction to Data Science"],
"CPS530": ["Web Systems Development", "CPS209"],
"CPS571": ["Introduction to Cyber-Security"],
"CPS590": ["Operating Systems I", "CPS305"],
"CPS606": ["Advanced Computer Organization", "CPS310"],
"CPS607": ["Autonomous Mobile Robotics", "CPS310"],
"CPS610": ["Database Systems II", "CPS510"],
"CPS613": ["Human-Computer Interaction", "CPS209"],
"CPS615": ["Theory of Computation", "CPS305"],
"CPS616": ["Algorithms", "CPS305"],
"CPS621": ["Introduction to Multimedia Systems", "CPS109"],
"CPS630": ["Web Applications", "CPS510"],
"CPS633": ["Computer Security", "CPS393"],
"CPS643": ["Virtual Reality", "CPS511"],
"CPS650": ["Computational Thinking in Our World"],
"CPS688": ["Advanced Algorithms", "COE428"],
"CPS706": ["Computer Networks I", "CPS590"],
"CPS707": ["Software Verification and Validation", "CPS406"],
"CPS710": ["Compilers and Interpreters", "CPS305"],
"CPS713": ["Applied Cryptography", "CPS209"],
"CPS714": ["Software Project Management", "CPS406"],
"CPS716": ["Computer Networks II", "CPS706"],
"CPS721": ["Artificial Intelligence I", "CPS305"],
"CPS730": ["Web Technology and Performance Measurement", "CPS393"],
"CPS731": ["Software Engineering I", "CPS406"],
"CPS752": ["Parallel Computer Systems", "CPS310"],
"CPS801": ["Operating Systems II", "CPS305"],
"CPS803": ["Machine Learning", "MTH108"],
"CPS811": ["Distributed Systems and Networks", "CPS706"],
"CPS813": ["Human Robot Interaction", "CPS607"],
"CPS815": ["Topics in Algorithms", "CPS616"],
"CPS822": ["Artificial Intelligence II", "CPS721"],
"CPS824": ["Reinforcement Learning", "CPS305"],
"CPS831": ["Software Engineering II", "CPS731"],
"CPS832": ["Mainframe Systems", "CPS310"],
"CPS840": ["Selected Topics in Computer Science"],
"CPS841": ["Advanced Topics in Computer Science"],
"CPS842": ["Information Retrieval and Web Search", "CPS311"],
"CPS843": ["Introduction to Computer Vision", "CPS305"],
"CPS844": ["Data Mining", "CPS305"],
"CPS845": ["Extreme Programming and Agile Processes", "CPS406"],
"CPS847": ["Software Tools for Startups", "CPS209"],
"CPS853": ["Creating Big Data Systems", "CPS406"],
"CPS865": ["Model-Driven Software Engineering", "CPS406"],
"CPS870": ["Applied Natural Language Processing", "CPS420", "MTH380"],
"CPS888": ["Software Engineering"],
"CRI100": ["Creative Industries Overview"],
"CRI200": ["IP Issues in the Digital Age", "CRI100"],
"CRI300": ["Digital Design Studio"],
"CRI400": ["Entrepreneurship in Creative Industries"],
"CRI410": ["Beggars, Choosers: C.I Advocacy"],
"CRI420": ["Book Publishing and Marketing"],
"CRI430": ["Canadian Media Entertainment Industries"],
"CRI450": ["Appreciating Creativity in Practice"],
"CRI500": ["Project Management"],
"CRI510": ["Art and Business of Gaming"],
"CRI520": ["Design Management"],
"CRI530": ["Talent Management"],
"CRI540": ["Marketing the Creative Industries"],
"CRI560": ["Topics in Creative Industries"],
"CRI570": ["Creative Industries: International Lab"],
"CRI590": ["Storying Indigenous People"],
"CRI600": ["The Creative Process", "CRI200"],
"CRI620": ["Concert and Festival Management"],
"CRI630": ["Advertising Theory and Practice"],
"CRI670": ["Music and Brands"],
"CRI680": ["Celebrity"],
"CRI700": ["Human Resources in Creative Industries", "CRI600"],
"CRI710": ["Creative Industries Research Methodology", "CRI600"],
"CRI720": ["Media Regulation and Communication Policy"],
"CRI730": ["Strategic Leadership in Cr. Industries"],
"CRI740": ["The Creative Negotiation"],
"CRI750": ["Emerging Technologies in Cyberspace"],
"CRI760": ["Diversity in Creative Industries"],
"CRI770": ["Trendwatching"],
"CRI780": ["Your Creative Self"],
"CRI800": ["Managing Creative Enterprises", "CRI700"],
"CRI810": ["Studies in Creative Collaboration", "CRI700"],
"CRI820": ["Global Licensing/Distribution Agreements"],
"CRI830": ["Youth Cultural Production"],
"CRI840": ["Experience Innovation"],
"CRI850": ["Directed Reading Course"],
"CRI860": ["The Big Night"],
"CRM100": ["Introduction to Canadian Criminal Justice"],
"CRM101": ["Understanding Crime in Canadian Society"],
"CRM102": ["Introduction to Criminology"],
"CRM200": ["Criminal Law", "CRM100"],
"CRM201": ["Making Public Order in Canada", "CRM100"],
"CRM202": ["Victims and the Criminal Process", "CRM100"],
"CRM204": ["Criminal Justice Research and Statistics", "CRM100"],
"CRM205": ["Gender, Sexuality and the Law", "CRM100"],
"CRM206": ["Race, Ethnicity and Justice", "CRM100"],
"CRM250": ["Criminalizing Blackness", "CRM100"],
"CRM300": ["Policing in Canada", "CRM100"],
"CRM302": ["Criminological Theories", "CRM100"],
"CRM303": ["Immigration and Refugee Protection in CJS", "CRM100"],
"CRM304": ["Youth Justice in Canada", "CRM100"],
"CRM306": ["Corrections in Canada", "CRM100"],
"CRM308": ["Criminal Courts in Canada", "CRM100"],
"CRM310": ["Advanced Qualitative Research Methods", "SSH301"],
"CRM311": ["Regulating Public Space", "CRM100"],
"CRM312": ["Representing Crime", "CRM100"],
"CRM314": ["Criminal Justice and the Charter", "CRM100"],
"CRM315": ["Advanced Quantitative Research Methods", "CRM100"],
"CRM316": ["International Perspectives", "CRM100"],
"CRM317": ["Special Topics in Criminology/Law", "CRM100"],
"CRM318": ["Violence and Communities", "CRM100"],
"CRM322": ["Ethics in Criminal Justice", "CRM100"],
"CRM324": ["Security Threats", "CRM100"],
"CRM335": ["History and Politics of Abolition", "CRM100"],
"CRM350": ["Cyber Criminology", "CRM100"],
"CRM400": ["Indigenous Governance/Justice", "CRM100"],
"CRM402": ["Criminal Justice and Social Inequality", "CRM100"],
"CRM404": ["Debates In Justice Policy", "CRM100"],
"CRM406": ["Seminar in Criminal Justice", "CRM100"],
"CRM515": ["Gendering Justice"],
"CRM601": ["Violence in Society"],
"EID100": ["Digital Skills: Int'l Innovation"],
"DST300": ["Whose Lives Matter?"],
"DST500": ["A History of Madness"],
"DST501": ["Rethinking Disability"],
"DST502": ["Disability and the State", "DST501"],
"DST503": ["Current Topics in Disability I"],
"DST504": ["Mad People's History"],
"DST506": ["Principles and Practices of Accessibility"],
"DST507": ["Disability, Justice and Good Human Life", "DST501"],
"DST508": ["Cripping the Arts in Canada"],
"DST509": ["Crip Culture in Canada"],
"DST525": ["Disability, Representation/s and Culture", "DST501"],
"DST603": ["Law and Disability", "DST501"],
"DST604": ["Current Topics in Disability II"],
"DST605": ["Sexuality, Desire and Disability"],
"DST613": ["Strategies for Community Building", "DST501"],
"DST614": ["Community, Access and Technology"],
"DST725": ["The Politics and Practice of Interventions", "DST501"],
"DST727": ["Leadership Practices for Changing Times", "DST501"],
"DST80A/B": ["Practicum in Disability Studies", "DST501"],
"DST88A/B": ["Research Methods", "DST501"],
"DST99A/B": ["Applied Community Project/Thesis", "DST501"],
"CLD101": ["Human Development I"],
"CLD102": ["Observation/ELC"],
"CLD103": ["Human Development II", "CLD101"],
"CLD111": ["Curriculum I: Environments"],
"CLD161": ["Field Education I", "CLD102"],
"CLD204": ["Physical Development", "CLD103"],
"CLD205": ["Children's Social/Emotional Well-Being", "CLD103"],
"CLD206": ["Language Development", "CLD103"],
"CLD212": ["Curriculum II: Program Planning"],
"CLD213": ["History and Philosophy of ECE"],
"CLD215": ["Creative Arts I", "CLD212"],
"CLD231": ["Families in Canadian Context I"],
"CLD241": ["Children with Disabilities", "CLD103"],
"CLD251": ["Interpersonal Communication"],
"CLD262": ["Field Education II", "CLD161"],
"CLD307": ["Cognitive Development", "CLD103", "PSY102", "CLD262"],
"CLD314": ["Literacy in the Early Years", "CLD212"],
"CLD315": ["Creative Arts II", "CLD215"],
"CLD317": ["Concept Development in Math", "CLD212"],
"CLD322": ["Research I: Methods", "PSY102"],
"CLD323": ["Research II: Applications", "CLD322"],
"CLD332": ["Families in Canadian Context II"],
"CLD342": ["Assessment for Programming", "CLD241"],
"CLD363": ["Field Education III", "CLD241"],
"CLD415": ["Concept Development in Science", "CLD212"],
"CLD419": ["Children and Technology", "CLD212"],
"CLD420": ["Children and Nature", "CLD212"],
"CLD421": ["Childhood Bilingualism"],
"CLD435": ["Theory and Practice of Family Support"],
"CLD442": ["Infant Mental Health", "CLD231"],
"CLD444": ["Therapies for Young Children", "CLD342"],
"CLD445": ["Inclusion and Consultation", "CLD342"],
"CLD446": ["Children and Chronic Illness", "CLD342"],
"CLD447": ["Equity Issues in Ontario ECE", "CLD332"],
"CLD448": ["Childhood in a Global Context"],
"CLD449": ["Research in ECE Lab Schools"],
"CLD450": ["Indigenous Early Learning"],
"CLD454": ["Policy in ECEC", "CLD262"],
"CLD464": ["Senior Internship", "CLD262"],
"CLD500": ["A Caring World for Children"],
"ECN101": ["Principles of Microeconomics"],
"ECN104": ["Introductory Microeconomics"],
"ECN109": ["Basic Mathematics for Economics"],
"ECN110": ["The Economy and Society"],
"ECN129": ["Statistics for Economics I", "ECN189"],
"ECN189": ["Mathematics for Economics I", "ECN109"],
"ECN201": ["Principles of Macroeconomics"],
"ECN204": ["Introductory Macroeconomics"],
"ECN205": ["Economics of Change and Conflict"],
"ECN210": ["Understanding Economics"],
"ECN220": ["Evolution of the Global Economy"],
"ECN230": ["Mathematics for Economics II", "ECN189"],
"ECN250": ["Computing for Economics", "ECN230"],
"ECN301": ["Intermediate Macroeconomics I", "ECN101"],
"ECN320": ["Introduction to Financial Economics", "ECN101"],
"ECN321": ["Introduction to Law and Economics", "ECN101"],
"ECN329": ["Statistics for Economics II", "ECN129"],
"ECN340": ["The Economics of Human Behaviour"],
"ECN440": ["Economic Issues in Financial Markets"],
"ECN501": ["Industrial Organization", "ECN504"],
"ECN502": ["Economics of Energy and Natural Resources", "ECN101"],
"ECN503": ["Economic Development"],
"ECN504": ["Intermediate Microeconomics I", "ECN101"],
"ECN505": ["Economic Issues in Labour Markets"],
"ECN506": ["Money and Banking", "ECN201"],
"ECN507": ["Ethics and Justice in Economics"],
"ECN509": ["Economic Issues in Money and Banking"],
"ECN510": ["Environmental Economics", "ECN101"],
"ECN511": ["Economy and Environment"],
"ECN512": ["The Economics of Sex"],
"ECN600": ["Intermediate Macroeconomics II", "ECN301"],
"ECN601": ["Economics of Information", "ECN504"],
"ECN603": ["Economic Issues in Globalization", "ECN101"],
"ECN605": ["Labour Economics", "ECN101"],
"ECN606": ["International Monetary Economics", "ECN301"],
"ECN607": ["Issues in the International Economy"],
"ECN610": ["The History of Economic Thought", "ECN301"],
"ECN614": ["An Introduction to Game Theory", "ECN504"],
"ECN620": ["Applied Economic Analysis", "ECN301"],
"ECN627": ["Econometrics I", "ECN230"],
"ECN630": ["Economic History", "ECN301"],
"ECN640": ["Economics of Immigration", "ECN101"],
"ECN700": ["Intermediate Microeconomics II", "ECN504"],
"ECN702": ["Econometrics II", "ECN627"],
"ECN703": ["Public Sector Economics", "ECN504"],
"ECN707": ["Economics of International Trade I", "ECN504"],
"ECN710": ["Transportation Economics", "ECN101"],
"ECN715": ["Advanced Microeconomics", "ECN700"],
"ECN721": ["International Financial Markets", "ECN301"],
"ECN722": ["Economic Issues in Professional Sports"],
"ECN723": ["Applied Research Methods", "ECN600", "ECN620", "ECN627"],
"ECN724": ["Advanced Econometrics", "ECN702"],
"ECN725": ["Financial Econometrics", "ECN627"],
"ECN726": ["Economics of Developing Countries", "ECN504"],
"ECN729": ["Sports Economics", "ECN101"],
"ECN801": ["Principles of Engineering Economics"],
"ECN802": ["The Economies of East Asia"],
"ECN803": ["Canadian Tax Policy", "ECN504"],
"ECN807": ["Economics of International Trade II", "ECN707"],
"ECN808": ["Economic Growth and Technological Change", "ECN301"],
"ECN815": ["Advanced Macroeconomics", "ECN230"],
"ECN820": ["Thesis"],
"ECN821": ["Country Risk Analysis", "ECN301"],
"ECN900": ["Internship"],
"EDZ100": ["Entrepreneurial ZONE Participant"],
"EES508": ["Digital Systems", "EES512"],
"EES512": ["Electric Circuits", "MTH140"],
"EES604": ["Electronics and Sensors", "ELE202"],
"EES612": ["Electric Machines and Actuators", "CEN199"],
"ELE202": ["Electric Circuit Analysis", "MTH140"],
"ELE302": ["Electric Networks", "CHY102", "MTH140", "MTH141", "PCS125", "PCS211", "CPS125", "ELE202", "MTH240"],
"ELE401": ["Field Theory", "MTH312"],
"ELE404": ["Electronic Circuits I", "ELE302"],
"ELE504": ["Electronic Circuits II", "ELE404"],
"ELE531": ["Electromagnetics", "ELE401"],
"ELE532": ["Signals and Systems I", "CEN199", "COE318", "ELE302", "MTH312", "MTH314", "ELE404"],
"ELE632": ["Signals and Systems II", "ELE532"],
"ELE635": ["Communication Systems", "ELE532"],
"ELE637": ["Energy Conversion", "ELE302"],
"ELE639": ["Control Systems", "ELE532"],
"ELE707": ["Sensors and Measurement", "ELE504"],
"ELE709": ["Real-Time Computer Control Systems", "ELE639"],
"ELE70A/B": ["Electrical Engineering Capstone Design", "COE538", "ELE504", "ELE531", "ELE632", "ELE635", "ELE637", "ELE639", "MEC511"],
"ELE714": ["System Testing and Design-for-Testability", "ELE504"],
"ELE719": ["Fundamentals of Robotics", "ELE639"],
"ELE724": ["CMOS Mixed-Mode Circuits and Systems", "ELE639"],
"ELE734": ["Low Power Digital Integrated Circuits", "COE538"],
"ELE745": ["Digital Communication Systems", "ELE635"],
"ELE746": ["Power Systems Analysis", "ELE637"],
"ELE747": ["Advanced Electric Drives", "ELE637"],
"ELE754": ["Power Electronics", "ELE504"],
"ELE792": ["Digital Signal Processing", "ELE632"],
"ELE801": ["Electric Vehicles", "ELE637"],
"ELE804": ["Radio-Frequency Circuits and Systems", "ELE724"],
"ELE806": ["Alternative Energy Systems", "ELE747"],
"ELE809": ["Digital Control System Design", "ELE639"],
"ELE815": ["Wireless Communications", "ELE745"],
"ELE819": ["Control of Robotic Manipulators", "ELE719"],
"ELE829": ["System Models and Identification", "ELE639"],
"ELE846": ["Power Systems Protection and Control", "ELE746"],
"ELE861": ["Microwave Engineering", "ELE531"],
"ELE863": ["VLSI Circuits for Data Communications", "ELE724"],
"ELE882": ["Intro to Digital Image Processing", "ELE632"],
"ELE884": ["Photonics", "ELE531"],
"ELE885": ["Optical Communication Systems", "ELE635"],
"ELE888": ["Intelligent Systems", "ELE632"],
"EIE201": ["Start-up of Technology Ventures"],
"EIE301": ["Practicum I: New Venture Identification", "ECN801", "EMS201"],
"EIE401": ["Practicum II: Market and Tech Development", "ECN801", "EMS201", "EIE201"],
"EIE501": ["Practicum III: Bus Dev and Mkt Readiness", "ECN801", "EMS201", "EIE201", "EIE301"],
"EMS201": ["Entrepreneurship and Innovation Management"],
"EMS202": ["Operations Management"],
"EMS203": ["Investment Analysis", "EMS303"],
"EMS204": ["Organization Design and Dynamics"],
"EMS301": ["Management Information Systems", "EMS201"],
"EMS302": ["Operations Research", "EMS202"],
"EMS303": ["Managerial Accounting", "ECN801"],
"EMS304": ["Project Management", "EMS204"],
"ENG101": ["Laughter and Tears: Comedy and Tragedy"],
"ENG104": ["The Short Story"],
"ENG110": ["Literatures Across Borders"],
"ENG112": ["Zap, Pow, Bang: Pop Lit"],
"ENG200": ["Writing as a Cultural Act"],
"ENG201": ["Myth and Literature"],
"ENG203": ["The Literature of Indigenous Peoples"],
"ENG208": ["Introduction to Non-Fiction", "ENG110"],
"ENG212": ["Cultures in Crisis"],
"ENG222": ["Fairy Tales and Fantasies"],
"ENG223": ["Literatures of Exile and Migration", "ENG110"],
"ENG224": ["Children's Literature"],
"ENG230": ["Creativity, Writing, and Everyday Life"],
"ENG302": ["Practicum: Writing in the Arts", "ENG208"],
"ENG304": ["Practicum: Making Digital Work", "ENG208"],
"ENG306": ["Practicum: Writing Poetry", "ENG208"],
"ENG307": ["Practicum: Writing Fiction", "ENG208"],
"ENG308": ["Practicum: Grammar Principles for Editors", "ENG208"],
"ENG340": ["Practicum: Making Little Magazines", "ENG208"],
"ENG390": ["Practicum: Open Topics", "ENG208"],
"ENG400": ["Literary and Cultural Theory", "ENG810"],
"ENG402": ["Comics", "ENG110"],
"ENG409": ["Urban Literatures", "ENG110"],
"ENG413": ["Literature And Colonization", "ENG110"],
"ENG416": ["American Literatures", "ENG110"],
"ENG417": ["Special Topics in American Literatures", "ENG110"],
"ENG421": ["16C Literature and Culture", "ENG110"],
"ENG422": ["17C Literature and Culture", "ENG110"],
"ENG503": ["Science Fiction"],
"ENG505": ["Creative Writing"],
"ENG510": ["Gothic Horror"],
"ENG511": ["The Art of Writing Life"],
"ENG517": ["Techniques and Topics in Creative Writing", "ENG110"],
"ENG520": ["The Language of Persuasion", "ENG110"],
"ENG529": ["Controversies in Public Discourse", "ENG110"],
"ENG530": ["Literary Non-Fiction", "ENG110"],
"ENG531": ["18C Literature and Culture", "ENG110"],
"ENG540": ["The Novel", "ENG110"],
"ENG548": ["Parenting, Media, and Culture", "ENG110"],
"ENG550": ["Drama", "ENG110"],
"ENG560": ["Poetry and Poetics", "ENG110"],
"ENG570": ["Auto/Biography", "ENG110"],
"ENG580": ["The Gothic", "ENG110"],
"ENG590": ["Studies in Word and Image", "ENG110"],
"ENG602": ["Women's Writing"],
"ENG610": ["The Language of Love, Sex and Gender"],
"ENG611": ["Film and Literature", "ENG110"],
"ENG620": ["Literatures of the Caribbean"],
"ENG621": ["Women's Texts, Global Contexts", "ENG110"],
"ENG623": ["Film/Literature: Middle East,North Africa", "ENG110"],
"ENG624": ["20C Literature and Culture", "ENG110"],
"ENG632": ["19C Literature and Culture", "ENG110"],
"ENG634": ["Romantic Explorations", "ENG110"],
"ENG635": ["Modernism", "ENG110"],
"ENG640": ["Literatures of Asia and its Diasporas", "ENG110"],
"ENG650": ["Indigenous World View", "ENG110"],
"ENG701": ["Canadian Literatures", "ENG110"],
"ENG703": ["Popular Literatures", "ENG110"],
"ENG705": ["Studies in Visual Cultures", "ENG110"],
"ENG706": ["Shakespeare and Performance", "ENG110"],
"ENG707": ["Shakespeare and His World", "ENG110"],
"ENG710": ["Special Topics in Canadian Literatures", "ENG110"],
"ENG730": ["The Social Life of Books", "ENG110"],
"ENG810": ["Approaches to English Research", "ENG208"],
"ENG904": ["Independent Research Paper"],
"ENG907": ["Independent Research Project"],
"ENG910": ["English Capstone Seminar"],
"ENG921": ["Narrative in a Digital Age", "ENG110"],
"ENG941": ["Gender and Sex in Literature and Culture", "ENG110"],
"ENG942": ["Decolonizing Literature", "ENG110"],
"ENT100": ["Applied Entrepreneurship"],
"ENT401": ["Design Thinking Experience"],
"ENT500": ["New Venture Startup"],
"ENT501": ["Family Business in Canada"],
"ENT505": ["Small-Business Management", "BSM200"],
"ENT511": ["Funding New Ventures", "FIN401"],
"ENT526": ["Entrepreneurial Behaviour and Strategy"],
"ENT527": ["Theories in Entrepreneurship", "ENT526"],
"ENT528": ["New Venture Development", "ENT601"],
"ENT555": ["Managing Small and Medium Enterprises", "ENT526"],
"ENT56A/B": ["Entrepreneurial Skills Development", "ENT526"],
"ENT570": ["Entrepreneurial Self-Development Part I"],
"ENT577": ["Entrepreneurial Selling", "ENT526"],
"ENT580": ["Entrepreneur Self-Development Part II"],