Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
grouper_training/ex101/ex101.1.1/container_files/seed-data/sisData.sql
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
12590 lines (12550 sloc)
491 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
create table hr_depts ( | |
dept_id varchar(5), | |
name varchar(60), | |
parent_dept_id varchar(5), | |
abbrev varchar(5) | |
); | |
alter table hr_depts add primary key (dept_id); | |
insert into hr_depts(dept_id, name, parent_dept_id, abbrev) values | |
('10000', 'Board of Trustees', NULL, 'BT'), | |
('10100', 'President', '10000', 'PRES'), | |
('10200', 'Provost', '10100', 'PROV'), | |
('10300', 'Communications', '10100', 'COMM'), | |
('10400', 'Institutional Advancement', '10100', 'IADV'), | |
('10500', 'Student Affairs', '10100', 'SAF'), | |
('10600', 'General Counsel', '10100', 'GC'), | |
('10700', 'Diversity Equity & Inclusion', '10100', 'DEI'), | |
('10800', 'Finance & Administration', '10100', 'FA'), | |
('10900', 'Information Technology Services', '10100', 'ITS'), | |
('20000', 'College of Arts and Sciences', '10200', 'CAS'), | |
('30000', 'Graduate School of Arts and Sciences', '10200', 'GS'), | |
('40000', 'Library', '10200', 'LIB'), | |
('45000', 'School for Social Policy and Management', '10200', 'SPM'), | |
('50000', 'School of Business', '10200', 'BUS'), | |
('55000', 'Office of Research Administration', '10200', 'RA'), | |
('60000', 'School of Continuing Studies', '10200', 'SCS'), | |
('70000', 'Office of the Vice Provost of Research', '10200', 'VPR'), | |
('80000', 'Office of Institutional Research', '10200', 'OIR'), | |
('85000', 'Art Museum', '10200', 'AMUS'), | |
('90000', 'Centers & Institutes', '10200', 'CTRS'), | |
('20100', 'African and African American Studies', '20000', 'AAAS'), | |
('20150', 'American Studies', '20000', 'AS'), | |
('20200', 'Anthropology', '20000', 'ANTH'), | |
('20250', 'Applied Computation', '20000', 'APCS'), | |
('20300', 'Applied Mathematics', '20000', 'AMAT'), | |
('20350', 'Applied Physics', '20000', 'APHY'), | |
('20400', 'Architecture, Landscape Arch, and Urban Planning', '20000', 'ARCH'), | |
('20450', 'Art', '20000', 'ART'), | |
('20500', 'Astronomy', '20000', 'ASTR'), | |
('20550', 'Biological Sciences', '20000', 'BIOL'), | |
('20600', 'Biophysics', '20000', 'BPHY'), | |
('20650', 'Biostatistics', '20000', 'BIOS'), | |
('20700', 'Celtic Languages and Literatures', '20000', 'CELT'), | |
('20750', 'Chemistry', '20000', 'CHEM'), | |
('20800', 'Classics', '20000', 'CLSS'), | |
('20850', 'Comparative Literature', '20000', 'CPLT'), | |
('20900', 'Computer Science', '20000', 'CS'), | |
('20950', 'Planetary Sciences', '20000', 'PSCI'), | |
('21000', 'East Asian Languages and Civilizations', '20000', 'EALC'), | |
('21050', 'Economics', '20000', 'ECOM'), | |
('21100', 'Engineering', '20000', 'ENG'), | |
('21150', 'English', '20000', 'ENGL'), | |
('21200', 'Environmental Science', '20000', 'ENV'), | |
('21250', 'Creative Writing', '20000', 'WRI'), | |
('21300', 'Germanic Languages and Literatures', '20000', 'GERM'), | |
('21350', 'Global Health Policy', '20000', 'GHP'), | |
('21400', 'Government', '20000', 'GVMT'), | |
('21450', 'History', '20000', 'HIST'), | |
('21500', 'Literature', '20000', 'LIT'), | |
('21550', 'Humanities', '20000', 'HUM'), | |
('21600', 'Linguistics', '20000', 'LING'), | |
('21650', 'Mathematics', '20000', 'MAT'), | |
('21700', 'Medieval Studies', '20000', 'MEDS'), | |
('21750', 'Middle Eastern Studies', '20000', 'MES'), | |
('21800', 'Molecular and Cellular Biology', '20000', 'MCB'), | |
('21850', 'Music', '20000', 'MUS'), | |
('21900', 'Near Eastern Languages and Civilizations', '20000', 'NELC'), | |
('21950', 'Philosophy', '20000', 'PHIL'), | |
('22000', 'Physics', '20000', 'PHY'), | |
('22050', 'Political Science', '20000', 'POLI'), | |
('22100', 'Psychology', '20000', 'PSYC'), | |
('22150', 'Religion', '20000', 'REL'), | |
('22200', 'Romance Languages and Literatures', '20000', 'ROML'), | |
('22250', 'Slavic Languages and Literatures', '20000', 'SLAV'), | |
('22300', 'Social Studies', '20000', 'SOCS'), | |
('22350', 'Sociology', '20000', 'SOC'), | |
('22400', 'South Asian Studies', '20000', 'SAS'), | |
('22450', 'Statistics', '20000', 'STAT'), | |
('22500', 'Theater', '20000', 'THEA'), | |
('22550', 'Gender and Sexuality Studies', '20000', 'GSS'), | |
('90100', 'International Center for Ethics', '90000', 'ICFE'), | |
('90200', 'Institute for Social Science Research', '90000', 'ISSR'), | |
('90300', 'Research Center for Women''s Studies', '90000', 'RCWS'), | |
('10310', 'Strategic Communnications', '10300', 'SCOM'), | |
('10320', 'Digital Communications', '10300', 'DCOM'), | |
('10330', 'Integrated Media', '10300', 'IMED'), | |
('10340', 'Integrated Design', '10300', 'INTD'), | |
('10410', 'Alumni Relations', '10400', 'ALMR'), | |
('10420', 'Leadership Annual Giving', '10400', 'LDAG'), | |
('10430', 'Corporate & Foundational Relations', '10400', 'CFR'), | |
('10440', 'Donor Relations', '10400', 'DR'), | |
('10450', 'Major & Planned Giving', '10400', 'MPG'), | |
('10510', 'Athletics', '10500', 'ATHL'), | |
('10520', 'Counseling Center', '10500', 'CNSL'), | |
('10530', 'Health Center', '10500', 'HC'), | |
('10540', 'Center for Spiritual Life', '10500', 'CSL'), | |
('10550', 'Prevention Advocacy & Resource Center', '10500', 'PARC'), | |
('10560', 'Dean of Students', '10500', 'DS'), | |
('10561', 'Department of Community Services', '10560', 'DCS'), | |
('10562', 'Department of Student Activities', '10560', 'DSA'), | |
('10563', 'Student Rights & Community Standards', '10560', 'SRCS'), | |
('10710', 'Office of Equal Opportunity', '10700', 'OEO'), | |
('10720', 'Intercultural Center', '10700', 'INTC'), | |
('10730', 'University Ombuds', '10700', 'OMBU'), | |
('10810', 'Budget & Finance', '10800', 'BF'), | |
('10820', 'Campus Operations', '10800', 'OPS'), | |
('10830', 'Human Resources', '10800', 'HR'), | |
('10840', 'Investment', '10800', 'INVE'), | |
('10901', 'Research Computing', '10900', 'RC'), | |
('10902', 'Security', '10900', 'SEC'), | |
('10903', 'Infrastructure', '10900', 'INFR'), | |
('10904', 'Identity and Access Management', '10900', 'IAM'), | |
('10905', 'Enterprise Applications', '10900', 'EA'), | |
('10906', 'Networking', '10900', 'NET'), | |
('10907', 'Technology and Planning', '10900', 'TP'), | |
('10908', 'Software Acquisitions', '10900', 'SA'), | |
('10909', 'User Support', '10900', 'USE') | |
; | |
/************* hr_orgs *************/ | |
create table hr_orgs ( | |
dept_id VARCHAR(5) NOT NULL, | |
abbrev VARCHAR(5), | |
min_dept_id VARCHAR(5), | |
max_dept_id VARCHAR(5), | |
range_desc VARCHAR(30) | |
); | |
insert into hr_orgs values | |
(10000, 'BT', 10000, 10000, '100*'), | |
(10100, 'PRES', 10100, 10199, '101*'), | |
(10200, 'PROV', 10200, 10299, '102*'), | |
(10300, 'Comm', 10300, 10399, '103*'), | |
(10400, 'IA', 10400, 10499, '104*'), | |
(10500, 'SA', 10500, 10599, '105*'), | |
(10600, 'GC', 10600, 10699, '106*'), | |
(10700, 'DEIS', 10700, 10799, '107*'), | |
(10800, 'FA', 10800, 10899, '108*'), | |
(10900, 'ITS', 10900, 10999, '109*'), | |
(20000, 'AS', 20000, 29999, '2*'), | |
(30000, 'GS', 30000, 39999, '3*'), | |
(40000, 'LIB', 40000, 44999, '40* - 44*'), | |
(45000, 'SPM', 45000, 49999, '45* - 49*'), | |
(50000, 'SB', 50000, 54999, '50* - 54*'), | |
(55000, 'ORA', 55000, 59999, '55* - 59*'), | |
(60000, 'CSTU', 60000, 69999, '6*'), | |
(70000, 'VPR', 70000, 79999, '7*'), | |
(80000, 'IRA', 80000, 84999, '80* - 84*'), | |
(85000, 'AMU', 85000, 89999, '85* - 89*'), | |
(90000, 'CIS', 90000, 99999, '9*') | |
; | |
/************* hr_positions *************/ | |
create table hr_positions ( | |
position_id varchar(5), | |
dept_id varchar(5), | |
role varchar(10) | |
); | |
alter table hr_positions add primary key (position_id); | |
insert into hr_positions (position_id, dept_id, role) values | |
('10000','10000','staff'), | |
('10001','10000','staff'), | |
('10002','10000','staff'), | |
('10003','10000','staff'), | |
('10004','10000','staff'), | |
('10005','10000','staff'), | |
('10006','10000','staff'), | |
('10007','10100','staff'), | |
('10008','10100','staff'), | |
('10009','10100','staff'), | |
('10010','10100','staff'), | |
('10011','10100','staff'), | |
('10012','10100','staff'), | |
('10013','10200','staff'), | |
('10014','10200','staff'), | |
('10015','10200','staff'), | |
('10016','10200','staff'), | |
('10017','10200','staff'), | |
('10018','10200','staff'), | |
('10019','10300','staff'), | |
('10020','10300','staff'), | |
('10021','10300','staff'), | |
('10022','10400','staff'), | |
('10023','10400','staff'), | |
('10024','10400','staff'), | |
('10025','10400','affiliate'), | |
('10026','10400','affiliate'), | |
('10027','10500','staff'), | |
('10028','10500','staff'), | |
('10029','10500','staff'), | |
('10030','10600','staff'), | |
('10031','10600','staff'), | |
('10032','10600','staff'), | |
('10033','10600','staff'), | |
('10034','10600','staff'), | |
('10035','10600','affiliate'), | |
('10036','10700','staff'), | |
('10037','10700','staff'), | |
('10038','10800','staff'), | |
('10039','10800','staff'), | |
('10040','10800','staff'), | |
('10041','10800','staff'), | |
('10042','20000','staff'), | |
('10043','20000','staff'), | |
('10044','20000','staff'), | |
('10045','20000','staff'), | |
('10046','20000','staff'), | |
('10047','20000','affiliate'), | |
('10048','20000','affiliate'), | |
('10049','20000','affiliate'), | |
('10050','20000','affiliate'), | |
('10051','20000','affiliate'), | |
('10052','20000','affiliate'), | |
('10053','20000','affiliate'), | |
('10054','20000','affiliate'), | |
('10055','20000','affiliate'), | |
('10056','20000','affiliate'), | |
('10057','20000','affiliate'), | |
('10058','20000','affiliate'), | |
('10059','20000','affiliate'), | |
('10060','20000','affiliate'), | |
('10061','20000','affiliate'), | |
('10062','20000','affiliate'), | |
('10063','20000','affiliate'), | |
('10064','20000','affiliate'), | |
('10065','20000','affiliate'), | |
('10066','20000','affiliate'), | |
('10067','30000','staff'), | |
('10068','30000','staff'), | |
('10069','30000','staff'), | |
('10070','30000','staff'), | |
('10071','30000','staff'), | |
('10072','30000','faculty'), | |
('10073','30000','faculty'), | |
('10074','30000','faculty'), | |
('10075','30000','faculty'), | |
('10076','30000','faculty'), | |
('10077','30000','faculty'), | |
('10078','30000','faculty'), | |
('10079','30000','faculty'), | |
('10080','30000','faculty'), | |
('10081','30000','faculty'), | |
('10132','30000','affiliate'), | |
('10133','30000','affiliate'), | |
('10134','30000','affiliate'), | |
('10135','30000','affiliate'), | |
('10136','30000','affiliate'), | |
('10137','30000','affiliate'), | |
('10138','30000','affiliate'), | |
('10139','30000','affiliate'), | |
('10140','30000','affiliate'), | |
('10141','30000','affiliate'), | |
('10142','30000','affiliate'), | |
('10143','30000','affiliate'), | |
('10144','30000','affiliate'), | |
('10145','30000','affiliate'), | |
('10146','30000','affiliate'), | |
('10147','30000','affiliate'), | |
('10148','30000','affiliate'), | |
('10149','30000','affiliate'), | |
('10150','30000','affiliate'), | |
('10151','30000','affiliate'), | |
('10152','40000','staff'), | |
('10153','40000','staff'), | |
('10154','40000','staff'), | |
('10155','40000','staff'), | |
('10156','40000','staff'), | |
('10157','40000','staff'), | |
('10158','40000','staff'), | |
('10159','40000','staff'), | |
('10160','40000','affiliate'), | |
('10161','40000','affiliate'), | |
('10162','40000','affiliate'), | |
('10163','40000','affiliate'), | |
('10164','40000','affiliate'), | |
('10165','40000','affiliate'), | |
('10166','40000','affiliate'), | |
('10167','40000','affiliate'), | |
('10168','45000','staff'), | |
('10169','45000','staff'), | |
('10170','45000','staff'), | |
('10171','45000','staff'), | |
('10172','45000','staff'), | |
('10173','45000','faculty'), | |
('10174','45000','faculty'), | |
('10175','45000','faculty'), | |
('10176','45000','faculty'), | |
('10177','45000','faculty'), | |
('10178','45000','faculty'), | |
('10179','45000','faculty'), | |
('10180','45000','faculty'), | |
('10181','45000','faculty'), | |
('10182','45000','faculty'), | |
('10208','45000','affiliate'), | |
('10209','45000','affiliate'), | |
('10210','45000','affiliate'), | |
('10211','45000','affiliate'), | |
('10212','45000','affiliate'), | |
('10213','45000','affiliate'), | |
('10214','45000','affiliate'), | |
('10215','45000','affiliate'), | |
('10216','45000','affiliate'), | |
('10217','45000','affiliate'), | |
('10218','50000','staff'), | |
('10219','50000','staff'), | |
('10220','50000','staff'), | |
('10221','50000','staff'), | |
('10222','50000','staff'), | |
('10223','50000','faculty'), | |
('10224','50000','faculty'), | |
('10225','50000','faculty'), | |
('10226','50000','faculty'), | |
('10227','50000','faculty'), | |
('10228','50000','faculty'), | |
('10229','50000','faculty'), | |
('10230','50000','faculty'), | |
('10231','50000','faculty'), | |
('10232','50000','faculty'), | |
('10258','50000','affiliate'), | |
('10259','50000','affiliate'), | |
('10260','50000','affiliate'), | |
('10261','50000','affiliate'), | |
('10262','50000','affiliate'), | |
('10263','50000','affiliate'), | |
('10264','50000','affiliate'), | |
('10265','50000','affiliate'), | |
('10266','50000','affiliate'), | |
('10267','50000','affiliate'), | |
('10268','55000','staff'), | |
('10269','55000','staff'), | |
('10270','55000','staff'), | |
('10271','55000','staff'), | |
('10272','55000','staff'), | |
('10273','55000','staff'), | |
('10274','55000','affiliate'), | |
('10275','55000','affiliate'), | |
('10276','60000','staff'), | |
('10277','60000','staff'), | |
('10278','60000','staff'), | |
('10279','60000','staff'), | |
('10280','60000','staff'), | |
('10281','60000','faculty'), | |
('10282','60000','faculty'), | |
('10283','60000','faculty'), | |
('10284','60000','faculty'), | |
('10285','60000','faculty'), | |
('10286','60000','faculty'), | |
('10287','60000','faculty'), | |
('10288','60000','faculty'), | |
('10289','60000','faculty'), | |
('10290','60000','faculty'), | |
('10316','60000','affiliate'), | |
('10317','60000','affiliate'), | |
('10318','60000','affiliate'), | |
('10319','60000','affiliate'), | |
('10320','60000','affiliate'), | |
('10321','60000','affiliate'), | |
('10322','60000','affiliate'), | |
('10323','60000','affiliate'), | |
('10324','60000','affiliate'), | |
('10325','60000','affiliate'), | |
('10326','70000','staff'), | |
('10327','70000','staff'), | |
('10328','70000','staff'), | |
('10329','70000','staff'), | |
('10330','70000','staff'), | |
('10331','70000','staff'), | |
('10332','70000','affiliate'), | |
('10333','80000','staff'), | |
('10334','80000','staff'), | |
('10335','80000','staff'), | |
('10336','80000','staff'), | |
('10337','80000','staff'), | |
('10338','80000','staff'), | |
('10339','80000','affiliate'), | |
('10340','85000','staff'), | |
('10341','85000','staff'), | |
('10342','85000','staff'), | |
('10343','85000','staff'), | |
('10344','85000','staff'), | |
('10345','85000','staff'), | |
('10346','85000','staff'), | |
('10347','85000','staff'), | |
('10348','85000','affiliate'), | |
('10349','85000','affiliate'), | |
('10350','90000','staff'), | |
('10351','90000','staff'), | |
('10352','90000','staff'), | |
('10353','90000','staff'), | |
('10354','90000','staff'), | |
('10355','90000','affiliate'), | |
('10356','90000','affiliate'), | |
('10357','90000','affiliate'), | |
('10358','20100','staff'), | |
('10359','20100','staff'), | |
('10360','20100','staff'), | |
('10361','20100','staff'), | |
('10362','20100','staff'), | |
('10363','20100','faculty'), | |
('10364','20100','faculty'), | |
('10365','20100','faculty'), | |
('10366','20100','faculty'), | |
('10367','20100','faculty'), | |
('10368','20100','faculty'), | |
('10369','20100','faculty'), | |
('10370','20100','faculty'), | |
('10371','20100','faculty'), | |
('10372','20100','faculty'), | |
('10403','20100','affiliate'), | |
('10404','20150','staff'), | |
('10405','20150','staff'), | |
('10406','20150','staff'), | |
('10407','20150','staff'), | |
('10408','20150','staff'), | |
('10409','20150','faculty'), | |
('10410','20150','faculty'), | |
('10411','20150','faculty'), | |
('10412','20150','faculty'), | |
('10413','20150','faculty'), | |
('10414','20150','faculty'), | |
('10415','20150','faculty'), | |
('10416','20150','faculty'), | |
('10417','20150','faculty'), | |
('10418','20150','faculty'), | |
('10449','20150','affiliate'), | |
('10450','20200','staff'), | |
('10451','20200','staff'), | |
('10452','20200','staff'), | |
('10453','20200','staff'), | |
('10454','20200','staff'), | |
('10455','20200','faculty'), | |
('10456','20200','faculty'), | |
('10457','20200','faculty'), | |
('10458','20200','faculty'), | |
('10459','20200','faculty'), | |
('10460','20200','faculty'), | |
('10461','20200','faculty'), | |
('10462','20200','faculty'), | |
('10463','20200','faculty'), | |
('10464','20200','faculty'), | |
('10495','20200','affiliate'), | |
('10496','20250','staff'), | |
('10497','20250','staff'), | |
('10498','20250','staff'), | |
('10499','20250','staff'), | |
('10500','20250','staff'), | |
('10501','20250','faculty'), | |
('10502','20250','faculty'), | |
('10503','20250','faculty'), | |
('10504','20250','faculty'), | |
('10505','20250','faculty'), | |
('10506','20250','faculty'), | |
('10507','20250','faculty'), | |
('10508','20250','faculty'), | |
('10509','20250','faculty'), | |
('10510','20250','faculty'), | |
('10541','20250','affiliate'), | |
('10542','20300','staff'), | |
('10543','20300','staff'), | |
('10544','20300','staff'), | |
('10545','20300','staff'), | |
('10546','20300','staff'), | |
('10547','20300','faculty'), | |
('10548','20300','faculty'), | |
('10549','20300','faculty'), | |
('10550','20300','faculty'), | |
('10551','20300','faculty'), | |
('10552','20300','faculty'), | |
('10553','20300','faculty'), | |
('10554','20300','faculty'), | |
('10555','20300','faculty'), | |
('10556','20300','faculty'), | |
('10587','20300','affiliate'), | |
('10588','20350','staff'), | |
('10589','20350','staff'), | |
('10590','20350','staff'), | |
('10591','20350','staff'), | |
('10592','20350','staff'), | |
('10593','20350','faculty'), | |
('10594','20350','faculty'), | |
('10595','20350','faculty'), | |
('10596','20350','faculty'), | |
('10597','20350','faculty'), | |
('10598','20350','faculty'), | |
('10599','20350','faculty'), | |
('10600','20350','faculty'), | |
('10601','20350','faculty'), | |
('10602','20350','faculty'), | |
('10633','20350','affiliate'), | |
('10634','20400','staff'), | |
('10635','20400','staff'), | |
('10636','20400','staff'), | |
('10637','20400','staff'), | |
('10638','20400','staff'), | |
('10639','20400','faculty'), | |
('10640','20400','faculty'), | |
('10641','20400','faculty'), | |
('10642','20400','faculty'), | |
('10643','20400','faculty'), | |
('10644','20400','faculty'), | |
('10645','20400','faculty'), | |
('10646','20400','faculty'), | |
('10647','20400','faculty'), | |
('10648','20400','faculty'), | |
('10679','20400','affiliate'), | |
('10680','20450','staff'), | |
('10681','20450','staff'), | |
('10682','20450','staff'), | |
('10683','20450','staff'), | |
('10684','20450','staff'), | |
('10685','20450','faculty'), | |
('10686','20450','faculty'), | |
('10687','20450','faculty'), | |
('10688','20450','faculty'), | |
('10689','20450','faculty'), | |
('10690','20450','faculty'), | |
('10691','20450','faculty'), | |
('10692','20450','faculty'), | |
('10693','20450','faculty'), | |
('10694','20450','faculty'), | |
('10725','20450','affiliate'), | |
('10726','20500','staff'), | |
('10727','20500','staff'), | |
('10728','20500','staff'), | |
('10729','20500','staff'), | |
('10730','20500','staff'), | |
('10731','20500','faculty'), | |
('10732','20500','faculty'), | |
('10733','20500','faculty'), | |
('10734','20500','faculty'), | |
('10735','20500','faculty'), | |
('10736','20500','faculty'), | |
('10737','20500','faculty'), | |
('10738','20500','faculty'), | |
('10739','20500','faculty'), | |
('10740','20500','faculty'), | |
('10771','20500','affiliate'), | |
('10772','20550','staff'), | |
('10773','20550','staff'), | |
('10774','20550','staff'), | |
('10775','20550','staff'), | |
('10776','20550','staff'), | |
('10777','20550','faculty'), | |
('10778','20550','faculty'), | |
('10779','20550','faculty'), | |
('10780','20550','faculty'), | |
('10781','20550','faculty'), | |
('10782','20550','faculty'), | |
('10783','20550','faculty'), | |
('10784','20550','faculty'), | |
('10785','20550','faculty'), | |
('10786','20550','faculty'), | |
('10817','20550','affiliate'), | |
('10818','20600','staff'), | |
('10819','20600','staff'), | |
('10820','20600','staff'), | |
('10821','20600','staff'), | |
('10822','20600','staff'), | |
('10823','20600','faculty'), | |
('10824','20600','faculty'), | |
('10825','20600','faculty'), | |
('10826','20600','faculty'), | |
('10827','20600','faculty'), | |
('10828','20600','faculty'), | |
('10829','20600','faculty'), | |
('10830','20600','faculty'), | |
('10831','20600','faculty'), | |
('10832','20600','faculty'), | |
('10863','20600','affiliate'), | |
('10864','20650','staff'), | |
('10865','20650','staff'), | |
('10866','20650','staff'), | |
('10867','20650','staff'), | |
('10868','20650','staff'), | |
('10869','20650','faculty'), | |
('10870','20650','faculty'), | |
('10871','20650','faculty'), | |
('10872','20650','faculty'), | |
('10873','20650','faculty'), | |
('10874','20650','faculty'), | |
('10875','20650','faculty'), | |
('10876','20650','faculty'), | |
('10877','20650','faculty'), | |
('10878','20650','faculty'), | |
('10909','20650','affiliate'), | |
('10910','20700','staff'), | |
('10911','20700','staff'), | |
('10912','20700','staff'), | |
('10913','20700','staff'), | |
('10914','20700','staff'), | |
('10915','20700','faculty'), | |
('10916','20700','faculty'), | |
('10917','20700','faculty'), | |
('10918','20700','faculty'), | |
('10919','20700','faculty'), | |
('10920','20700','faculty'), | |
('10921','20700','faculty'), | |
('10922','20700','faculty'), | |
('10923','20700','faculty'), | |
('10924','20700','faculty'), | |
('10955','20700','affiliate'), | |
('10956','20750','staff'), | |
('10957','20750','staff'), | |
('10958','20750','staff'), | |
('10959','20750','staff'), | |
('10960','20750','staff'), | |
('10961','20750','faculty'), | |
('10962','20750','faculty'), | |
('10963','20750','faculty'), | |
('10964','20750','faculty'), | |
('10965','20750','faculty'), | |
('10966','20750','faculty'), | |
('10967','20750','faculty'), | |
('10968','20750','faculty'), | |
('10969','20750','faculty'), | |
('10970','20750','faculty'), | |
('11001','20750','affiliate'), | |
('11002','20800','staff'), | |
('11003','20800','staff'), | |
('11004','20800','staff'), | |
('11005','20800','staff'), | |
('11006','20800','staff'), | |
('11007','20800','faculty'), | |
('11008','20800','faculty'), | |
('11009','20800','faculty'), | |
('11010','20800','faculty'), | |
('11011','20800','faculty'), | |
('11012','20800','faculty'), | |
('11013','20800','faculty'), | |
('11014','20800','faculty'), | |
('11015','20800','faculty'), | |
('11016','20800','faculty'), | |
('11047','20800','affiliate'), | |
('11048','20850','staff'), | |
('11049','20850','staff'), | |
('11050','20850','staff'), | |
('11051','20850','staff'), | |
('11052','20850','staff'), | |
('11053','20850','faculty'), | |
('11054','20850','faculty'), | |
('11055','20850','faculty'), | |
('11056','20850','faculty'), | |
('11057','20850','faculty'), | |
('11058','20850','faculty'), | |
('11059','20850','faculty'), | |
('11060','20850','faculty'), | |
('11061','20850','faculty'), | |
('11062','20850','faculty'), | |
('11093','20850','affiliate'), | |
('11094','20900','staff'), | |
('11095','20900','staff'), | |
('11096','20900','staff'), | |
('11097','20900','staff'), | |
('11098','20900','staff'), | |
('11099','20900','faculty'), | |
('11100','20900','faculty'), | |
('11101','20900','faculty'), | |
('11102','20900','faculty'), | |
('11103','20900','faculty'), | |
('11104','20900','faculty'), | |
('11105','20900','faculty'), | |
('11106','20900','faculty'), | |
('11107','20900','faculty'), | |
('11108','20900','faculty'), | |
('11139','20900','affiliate'), | |
('11140','20950','staff'), | |
('11141','20950','staff'), | |
('11142','20950','staff'), | |
('11143','20950','staff'), | |
('11144','20950','staff'), | |
('11145','20950','faculty'), | |
('11146','20950','faculty'), | |
('11147','20950','faculty'), | |
('11148','20950','faculty'), | |
('11149','20950','faculty'), | |
('11150','20950','faculty'), | |
('11151','20950','faculty'), | |
('11152','20950','faculty'), | |
('11153','20950','faculty'), | |
('11154','20950','faculty'), | |
('11185','20950','affiliate'), | |
('11186','21000','staff'), | |
('11187','21000','staff'), | |
('11188','21000','staff'), | |
('11189','21000','staff'), | |
('11190','21000','staff'), | |
('11191','21000','faculty'), | |
('11192','21000','faculty'), | |
('11193','21000','faculty'), | |
('11194','21000','faculty'), | |
('11195','21000','faculty'), | |
('11196','21000','faculty'), | |
('11197','21000','faculty'), | |
('11198','21000','faculty'), | |
('11199','21000','faculty'), | |
('11200','21000','faculty'), | |
('11231','21000','affiliate'), | |
('11232','21050','staff'), | |
('11233','21050','staff'), | |
('11234','21050','staff'), | |
('11235','21050','staff'), | |
('11236','21050','staff'), | |
('11237','21050','faculty'), | |
('11238','21050','faculty'), | |
('11239','21050','faculty'), | |
('11240','21050','faculty'), | |
('11241','21050','faculty'), | |
('11242','21050','faculty'), | |
('11243','21050','faculty'), | |
('11244','21050','faculty'), | |
('11245','21050','faculty'), | |
('11246','21050','faculty'), | |
('11277','21050','affiliate'), | |
('11278','21100','staff'), | |
('11279','21100','staff'), | |
('11280','21100','staff'), | |
('11281','21100','staff'), | |
('11282','21100','staff'), | |
('11283','21100','faculty'), | |
('11284','21100','faculty'), | |
('11285','21100','faculty'), | |
('11286','21100','faculty'), | |
('11287','21100','faculty'), | |
('11288','21100','faculty'), | |
('11289','21100','faculty'), | |
('11290','21100','faculty'), | |
('11291','21100','faculty'), | |
('11292','21100','faculty'), | |
('11323','21100','affiliate'), | |
('11324','21150','staff'), | |
('11325','21150','staff'), | |
('11326','21150','staff'), | |
('11327','21150','staff'), | |
('11328','21150','staff'), | |
('11329','21150','faculty'), | |
('11330','21150','faculty'), | |
('11331','21150','faculty'), | |
('11332','21150','faculty'), | |
('11333','21150','faculty'), | |
('11334','21150','faculty'), | |
('11335','21150','faculty'), | |
('11336','21150','faculty'), | |
('11337','21150','faculty'), | |
('11338','21150','faculty'), | |
('11369','21150','affiliate'), | |
('11370','21200','staff'), | |
('11371','21200','staff'), | |
('11372','21200','staff'), | |
('11373','21200','staff'), | |
('11374','21200','staff'), | |
('11375','21200','faculty'), | |
('11376','21200','faculty'), | |
('11377','21200','faculty'), | |
('11378','21200','faculty'), | |
('11379','21200','faculty'), | |
('11380','21200','faculty'), | |
('11381','21200','faculty'), | |
('11382','21200','faculty'), | |
('11383','21200','faculty'), | |
('11384','21200','faculty'), | |
('11415','21200','affiliate'), | |
('11416','21250','staff'), | |
('11417','21250','staff'), | |
('11418','21250','staff'), | |
('11419','21250','staff'), | |
('11420','21250','staff'), | |
('11421','21250','faculty'), | |
('11422','21250','faculty'), | |
('11423','21250','faculty'), | |
('11424','21250','faculty'), | |
('11425','21250','faculty'), | |
('11426','21250','faculty'), | |
('11427','21250','faculty'), | |
('11428','21250','faculty'), | |
('11429','21250','faculty'), | |
('11430','21250','faculty'), | |
('11461','21250','affiliate'), | |
('11462','21300','staff'), | |
('11463','21300','staff'), | |
('11464','21300','staff'), | |
('11465','21300','staff'), | |
('11466','21300','staff'), | |
('11467','21300','faculty'), | |
('11468','21300','faculty'), | |
('11469','21300','faculty'), | |
('11470','21300','faculty'), | |
('11471','21300','faculty'), | |
('11472','21300','faculty'), | |
('11473','21300','faculty'), | |
('11474','21300','faculty'), | |
('11475','21300','faculty'), | |
('11476','21300','faculty'), | |
('11507','21300','affiliate'), | |
('11508','21350','staff'), | |
('11509','21350','staff'), | |
('11510','21350','staff'), | |
('11511','21350','staff'), | |
('11512','21350','staff'), | |
('11513','21350','faculty'), | |
('11514','21350','faculty'), | |
('11515','21350','faculty'), | |
('11516','21350','faculty'), | |
('11517','21350','faculty'), | |
('11518','21350','faculty'), | |
('11519','21350','faculty'), | |
('11520','21350','faculty'), | |
('11521','21350','faculty'), | |
('11522','21350','faculty'), | |
('11553','21350','affiliate'), | |
('11554','21400','staff'), | |
('11555','21400','staff'), | |
('11556','21400','staff'), | |
('11557','21400','staff'), | |
('11558','21400','staff'), | |
('11559','21400','faculty'), | |
('11560','21400','faculty'), | |
('11561','21400','faculty'), | |
('11562','21400','faculty'), | |
('11563','21400','faculty'), | |
('11564','21400','faculty'), | |
('11565','21400','faculty'), | |
('11566','21400','faculty'), | |
('11567','21400','faculty'), | |
('11568','21400','faculty'), | |
('11599','21400','affiliate'), | |
('11600','21450','staff'), | |
('11601','21450','staff'), | |
('11602','21450','staff'), | |
('11603','21450','staff'), | |
('11604','21450','staff'), | |
('11605','21450','faculty'), | |
('11606','21450','faculty'), | |
('11607','21450','faculty'), | |
('11608','21450','faculty'), | |
('11609','21450','faculty'), | |
('11610','21450','faculty'), | |
('11611','21450','faculty'), | |
('11612','21450','faculty'), | |
('11613','21450','faculty'), | |
('11614','21450','faculty'), | |
('11645','21450','affiliate'), | |
('11646','21500','staff'), | |
('11647','21500','staff'), | |
('11648','21500','staff'), | |
('11649','21500','staff'), | |
('11650','21500','staff'), | |
('11651','21500','faculty'), | |
('11652','21500','faculty'), | |
('11653','21500','faculty'), | |
('11654','21500','faculty'), | |
('11655','21500','faculty'), | |
('11656','21500','faculty'), | |
('11657','21500','faculty'), | |
('11658','21500','faculty'), | |
('11659','21500','faculty'), | |
('11660','21500','faculty'), | |
('11691','21500','affiliate'), | |
('11692','21550','staff'), | |
('11693','21550','staff'), | |
('11694','21550','staff'), | |
('11695','21550','staff'), | |
('11696','21550','staff'), | |
('11697','21550','faculty'), | |
('11698','21550','faculty'), | |
('11699','21550','faculty'), | |
('11700','21550','faculty'), | |
('11701','21550','faculty'), | |
('11702','21550','faculty'), | |
('11703','21550','faculty'), | |
('11704','21550','faculty'), | |
('11705','21550','faculty'), | |
('11706','21550','faculty'), | |
('11737','21550','affiliate'), | |
('11738','21600','staff'), | |
('11739','21600','staff'), | |
('11740','21600','staff'), | |
('11741','21600','staff'), | |
('11742','21600','staff'), | |
('11743','21600','faculty'), | |
('11744','21600','faculty'), | |
('11745','21600','faculty'), | |
('11746','21600','faculty'), | |
('11747','21600','faculty'), | |
('11748','21600','faculty'), | |
('11749','21600','faculty'), | |
('11750','21600','faculty'), | |
('11751','21600','faculty'), | |
('11752','21600','faculty'), | |
('11783','21600','affiliate'), | |
('11784','21650','staff'), | |
('11785','21650','staff'), | |
('11786','21650','staff'), | |
('11787','21650','staff'), | |
('11788','21650','staff'), | |
('11789','21650','faculty'), | |
('11790','21650','faculty'), | |
('11791','21650','faculty'), | |
('11792','21650','faculty'), | |
('11793','21650','faculty'), | |
('11794','21650','faculty'), | |
('11795','21650','faculty'), | |
('11796','21650','faculty'), | |
('11797','21650','faculty'), | |
('11798','21650','faculty'), | |
('11829','21650','affiliate'), | |
('11830','21700','staff'), | |
('11831','21700','staff'), | |
('11832','21700','staff'), | |
('11833','21700','staff'), | |
('11834','21700','staff'), | |
('11835','21700','faculty'), | |
('11836','21700','faculty'), | |
('11837','21700','faculty'), | |
('11838','21700','faculty'), | |
('11839','21700','faculty'), | |
('11840','21700','faculty'), | |
('11841','21700','faculty'), | |
('11842','21700','faculty'), | |
('11843','21700','faculty'), | |
('11844','21700','faculty'), | |
('11875','21700','affiliate'), | |
('11876','21750','staff'), | |
('11877','21750','staff'), | |
('11878','21750','staff'), | |
('11879','21750','staff'), | |
('11880','21750','staff'), | |
('11881','21750','faculty'), | |
('11882','21750','faculty'), | |
('11883','21750','faculty'), | |
('11884','21750','faculty'), | |
('11885','21750','faculty'), | |
('11886','21750','faculty'), | |
('11887','21750','faculty'), | |
('11888','21750','faculty'), | |
('11889','21750','faculty'), | |
('11890','21750','faculty'), | |
('11921','21750','affiliate'), | |
('11922','21800','staff'), | |
('11923','21800','staff'), | |
('11924','21800','staff'), | |
('11925','21800','staff'), | |
('11926','21800','staff'), | |
('11927','21800','faculty'), | |
('11928','21800','faculty'), | |
('11929','21800','faculty'), | |
('11930','21800','faculty'), | |
('11931','21800','faculty'), | |
('11932','21800','faculty'), | |
('11933','21800','faculty'), | |
('11934','21800','faculty'), | |
('11935','21800','faculty'), | |
('11936','21800','faculty'), | |
('11967','21800','affiliate'), | |
('11968','21850','staff'), | |
('11969','21850','staff'), | |
('11970','21850','staff'), | |
('11971','21850','staff'), | |
('11972','21850','staff'), | |
('11973','21850','faculty'), | |
('11974','21850','faculty'), | |
('11975','21850','faculty'), | |
('11976','21850','faculty'), | |
('11977','21850','faculty'), | |
('11978','21850','faculty'), | |
('11979','21850','faculty'), | |
('11980','21850','faculty'), | |
('11981','21850','faculty'), | |
('11982','21850','faculty'), | |
('12013','21850','affiliate'), | |
('12014','21900','staff'), | |
('12015','21900','staff'), | |
('12016','21900','staff'), | |
('12017','21900','staff'), | |
('12018','21900','staff'), | |
('12019','21900','faculty'), | |
('12020','21900','faculty'), | |
('12021','21900','faculty'), | |
('12022','21900','faculty'), | |
('12023','21900','faculty'), | |
('12024','21900','faculty'), | |
('12025','21900','faculty'), | |
('12026','21900','faculty'), | |
('12027','21900','faculty'), | |
('12028','21900','faculty'), | |
('12059','21900','affiliate'), | |
('12060','21950','staff'), | |
('12061','21950','staff'), | |
('12062','21950','staff'), | |
('12063','21950','staff'), | |
('12064','21950','staff'), | |
('12065','21950','faculty'), | |
('12066','21950','faculty'), | |
('12067','21950','faculty'), | |
('12068','21950','faculty'), | |
('12069','21950','faculty'), | |
('12070','21950','faculty'), | |
('12071','21950','faculty'), | |
('12072','21950','faculty'), | |
('12073','21950','faculty'), | |
('12074','21950','faculty'), | |
('12105','21950','affiliate'), | |
('12106','22000','staff'), | |
('12107','22000','staff'), | |
('12108','22000','staff'), | |
('12109','22000','staff'), | |
('12110','22000','staff'), | |
('12111','22000','faculty'), | |
('12112','22000','faculty'), | |
('12113','22000','faculty'), | |
('12114','22000','faculty'), | |
('12115','22000','faculty'), | |
('12116','22000','faculty'), | |
('12117','22000','faculty'), | |
('12118','22000','faculty'), | |
('12119','22000','faculty'), | |
('12120','22000','faculty'), | |
('12151','22000','affiliate'), | |
('12152','22050','staff'), | |
('12153','22050','staff'), | |
('12154','22050','staff'), | |
('12155','22050','staff'), | |
('12156','22050','staff'), | |
('12157','22050','faculty'), | |
('12158','22050','faculty'), | |
('12159','22050','faculty'), | |
('12160','22050','faculty'), | |
('12161','22050','faculty'), | |
('12162','22050','faculty'), | |
('12163','22050','faculty'), | |
('12164','22050','faculty'), | |
('12165','22050','faculty'), | |
('12166','22050','faculty'), | |
('12197','22050','affiliate'), | |
('12198','22100','staff'), | |
('12199','22100','staff'), | |
('12200','22100','staff'), | |
('12201','22100','staff'), | |
('12202','22100','staff'), | |
('12203','22100','faculty'), | |
('12204','22100','faculty'), | |
('12205','22100','faculty'), | |
('12206','22100','faculty'), | |
('12207','22100','faculty'), | |
('12208','22100','faculty'), | |
('12209','22100','faculty'), | |
('12210','22100','faculty'), | |
('12211','22100','faculty'), | |
('12212','22100','faculty'), | |
('12243','22100','affiliate'), | |
('12244','22150','staff'), | |
('12245','22150','staff'), | |
('12246','22150','staff'), | |
('12247','22150','staff'), | |
('12248','22150','staff'), | |
('12249','22150','faculty'), | |
('12250','22150','faculty'), | |
('12251','22150','faculty'), | |
('12252','22150','faculty'), | |
('12253','22150','faculty'), | |
('12254','22150','faculty'), | |
('12255','22150','faculty'), | |
('12256','22150','faculty'), | |
('12257','22150','faculty'), | |
('12258','22150','faculty'), | |
('12289','22150','affiliate'), | |
('12290','22200','staff'), | |
('12291','22200','staff'), | |
('12292','22200','staff'), | |
('12293','22200','staff'), | |
('12294','22200','staff'), | |
('12295','22200','faculty'), | |
('12296','22200','faculty'), | |
('12297','22200','faculty'), | |
('12298','22200','faculty'), | |
('12299','22200','faculty'), | |
('12300','22200','faculty'), | |
('12301','22200','faculty'), | |
('12302','22200','faculty'), | |
('12303','22200','faculty'), | |
('12304','22200','faculty'), | |
('12335','22200','affiliate'), | |
('12336','22250','staff'), | |
('12337','22250','staff'), | |
('12338','22250','staff'), | |
('12339','22250','staff'), | |
('12340','22250','staff'), | |
('12341','22250','faculty'), | |
('12342','22250','faculty'), | |
('12343','22250','faculty'), | |
('12344','22250','faculty'), | |
('12345','22250','faculty'), | |
('12346','22250','faculty'), | |
('12347','22250','faculty'), | |
('12348','22250','faculty'), | |
('12349','22250','faculty'), | |
('12350','22250','faculty'), | |
('12381','22250','affiliate'), | |
('12382','22300','staff'), | |
('12383','22300','staff'), | |
('12384','22300','staff'), | |
('12385','22300','staff'), | |
('12386','22300','staff'), | |
('12387','22300','faculty'), | |
('12388','22300','faculty'), | |
('12389','22300','faculty'), | |
('12390','22300','faculty'), | |
('12391','22300','faculty'), | |
('12392','22300','faculty'), | |
('12393','22300','faculty'), | |
('12394','22300','faculty'), | |
('12395','22300','faculty'), | |
('12396','22300','faculty'), | |
('12427','22300','affiliate'), | |
('12428','22350','staff'), | |
('12429','22350','staff'), | |
('12430','22350','staff'), | |
('12431','22350','staff'), | |
('12432','22350','staff'), | |
('12433','22350','faculty'), | |
('12434','22350','faculty'), | |
('12435','22350','faculty'), | |
('12436','22350','faculty'), | |
('12437','22350','faculty'), | |
('12438','22350','faculty'), | |
('12439','22350','faculty'), | |
('12440','22350','faculty'), | |
('12441','22350','faculty'), | |
('12442','22350','faculty'), | |
('12473','22350','affiliate'), | |
('12474','22400','staff'), | |
('12475','22400','staff'), | |
('12476','22400','staff'), | |
('12477','22400','staff'), | |
('12478','22400','staff'), | |
('12479','22400','faculty'), | |
('12480','22400','faculty'), | |
('12481','22400','faculty'), | |
('12482','22400','faculty'), | |
('12483','22400','faculty'), | |
('12484','22400','faculty'), | |
('12485','22400','faculty'), | |
('12486','22400','faculty'), | |
('12487','22400','faculty'), | |
('12488','22400','faculty'), | |
('12519','22400','affiliate'), | |
('12520','22450','staff'), | |
('12521','22450','staff'), | |
('12522','22450','staff'), | |
('12523','22450','staff'), | |
('12524','22450','staff'), | |
('12525','22450','faculty'), | |
('12526','22450','faculty'), | |
('12527','22450','faculty'), | |
('12528','22450','faculty'), | |
('12529','22450','faculty'), | |
('12530','22450','faculty'), | |
('12531','22450','faculty'), | |
('12532','22450','faculty'), | |
('12533','22450','faculty'), | |
('12534','22450','faculty'), | |
('12565','22450','affiliate'), | |
('12566','22500','staff'), | |
('12567','22500','staff'), | |
('12568','22500','staff'), | |
('12569','22500','staff'), | |
('12570','22500','staff'), | |
('12571','22500','faculty'), | |
('12572','22500','faculty'), | |
('12573','22500','faculty'), | |
('12574','22500','faculty'), | |
('12575','22500','faculty'), | |
('12576','22500','faculty'), | |
('12577','22500','faculty'), | |
('12578','22500','faculty'), | |
('12579','22500','faculty'), | |
('12580','22500','faculty'), | |
('12611','22500','affiliate'), | |
('12612','22550','staff'), | |
('12613','22550','staff'), | |
('12614','22550','staff'), | |
('12615','22550','staff'), | |
('12616','22550','staff'), | |
('12617','22550','faculty'), | |
('12618','22550','faculty'), | |
('12619','22550','faculty'), | |
('12620','22550','faculty'), | |
('12621','22550','faculty'), | |
('12622','22550','faculty'), | |
('12623','22550','faculty'), | |
('12624','22550','faculty'), | |
('12625','22550','faculty'), | |
('12626','22550','faculty'), | |
('12657','22550','affiliate'), | |
('12658','90100','staff'), | |
('12659','90100','staff'), | |
('12660','90100','staff'), | |
('12661','90100','staff'), | |
('12662','90100','staff'), | |
('12663','90100','staff'), | |
('12664','90100','staff'), | |
('12665','90100','staff'), | |
('12666','90100','faculty'), | |
('12667','90100','faculty'), | |
('12668','90100','faculty'), | |
('12669','90100','faculty'), | |
('12670','90100','faculty'), | |
('12671','90100','faculty'), | |
('12672','90100','faculty'), | |
('12673','90100','faculty'), | |
('12674','90100','faculty'), | |
('12675','90100','faculty'), | |
('12676','90100','faculty'), | |
('12677','90100','faculty'), | |
('12678','90100','faculty'), | |
('12679','90100','faculty'), | |
('12680','90100','faculty'), | |
('12681','90100','faculty'), | |
('12682','90100','faculty'), | |
('12683','90100','faculty'), | |
('12684','90100','faculty'), | |
('12685','90100','faculty'), | |
('12721','90100','affiliate'), | |
('12722','90100','affiliate'), | |
('12723','90100','affiliate'), | |
('12724','90100','affiliate'), | |
('12725','90100','affiliate'), | |
('12726','90100','affiliate'), | |
('12727','90100','affiliate'), | |
('12728','90100','affiliate'), | |
('12729','90100','affiliate'), | |
('12730','90100','affiliate'), | |
('12731','90200','staff'), | |
('12732','90200','staff'), | |
('12733','90200','staff'), | |
('12734','90200','staff'), | |
('12735','90200','staff'), | |
('12736','90200','staff'), | |
('12737','90200','staff'), | |
('12738','90200','staff'), | |
('12739','90200','faculty'), | |
('12740','90200','faculty'), | |
('12741','90200','faculty'), | |
('12742','90200','faculty'), | |
('12743','90200','faculty'), | |
('12744','90200','faculty'), | |
('12745','90200','faculty'), | |
('12746','90200','faculty'), | |
('12747','90200','faculty'), | |
('12748','90200','faculty'), | |
('12749','90200','faculty'), | |
('12750','90200','faculty'), | |
('12751','90200','faculty'), | |
('12752','90200','faculty'), | |
('12753','90200','faculty'), | |
('12754','90200','faculty'), | |
('12755','90200','faculty'), | |
('12756','90200','faculty'), | |
('12757','90200','faculty'), | |
('12758','90200','faculty'), | |
('12794','90200','affiliate'), | |
('12795','90200','affiliate'), | |
('12796','90200','affiliate'), | |
('12797','90200','affiliate'), | |
('12798','90200','affiliate'), | |
('12799','90200','affiliate'), | |
('12800','90200','affiliate'), | |
('12801','90200','affiliate'), | |
('12802','90200','affiliate'), | |
('12803','90200','affiliate'), | |
('12804','90300','staff'), | |
('12805','90300','staff'), | |
('12806','90300','staff'), | |
('12807','90300','staff'), | |
('12808','90300','staff'), | |
('12809','90300','staff'), | |
('12810','90300','staff'), | |
('12811','90300','staff'), | |
('12812','90300','faculty'), | |
('12813','90300','faculty'), | |
('12814','90300','faculty'), | |
('12815','90300','faculty'), | |
('12816','90300','faculty'), | |
('12817','90300','faculty'), | |
('12818','90300','faculty'), | |
('12819','90300','faculty'), | |
('12820','90300','faculty'), | |
('12821','90300','faculty'), | |
('12822','90300','faculty'), | |
('12823','90300','faculty'), | |
('12824','90300','faculty'), | |
('12825','90300','faculty'), | |
('12826','90300','faculty'), | |
('12827','90300','faculty'), | |
('12828','90300','faculty'), | |
('12829','90300','faculty'), | |
('12830','90300','faculty'), | |
('12831','90300','faculty'), | |
('12867','90300','affiliate'), | |
('12868','90300','affiliate'), | |
('12869','90300','affiliate'), | |
('12870','90300','affiliate'), | |
('12871','90300','affiliate'), | |
('12872','90300','affiliate'), | |
('12873','90300','affiliate'), | |
('12874','90300','affiliate'), | |
('12875','90300','affiliate'), | |
('12876','90300','affiliate'), | |
('12877','10310','staff'), | |
('12878','10310','staff'), | |
('12879','10310','staff'), | |
('12880','10310','staff'), | |
('12881','10310','staff'), | |
('12882','10310','affiliate'), | |
('12883','10320','staff'), | |
('12884','10320','staff'), | |
('12885','10320','staff'), | |
('12886','10320','staff'), | |
('12887','10320','staff'), | |
('12888','10320','affiliate'), | |
('12889','10330','staff'), | |
('12890','10330','staff'), | |
('12891','10330','staff'), | |
('12892','10330','staff'), | |
('12893','10330','staff'), | |
('12894','10330','affiliate'), | |
('12895','10340','staff'), | |
('12896','10340','staff'), | |
('12897','10340','staff'), | |
('12898','10340','staff'), | |
('12899','10340','staff'), | |
('12900','10340','affiliate'), | |
('12901','10410','staff'), | |
('12902','10410','staff'), | |
('12903','10410','staff'), | |
('12904','10410','staff'), | |
('12905','10410','staff'), | |
('12906','10410','affiliate'), | |
('12907','10410','affiliate'), | |
('12908','10420','staff'), | |
('12909','10420','staff'), | |
('12910','10420','staff'), | |
('12911','10420','staff'), | |
('12912','10420','staff'), | |
('12913','10430','staff'), | |
('12914','10430','staff'), | |
('12915','10430','staff'), | |
('12916','10430','staff'), | |
('12917','10430','staff'), | |
('12918','10440','staff'), | |
('12919','10440','staff'), | |
('12920','10440','staff'), | |
('12921','10440','staff'), | |
('12922','10440','staff'), | |
('12923','10450','staff'), | |
('12924','10450','staff'), | |
('12925','10450','staff'), | |
('12926','10450','staff'), | |
('12927','10450','staff'), | |
('12928','10510','staff'), | |
('12929','10510','staff'), | |
('12930','10510','staff'), | |
('12931','10510','staff'), | |
('12932','10510','staff'), | |
('12933','10510','staff'), | |
('12934','10510','staff'), | |
('12935','10510','staff'), | |
('12936','10510','staff'), | |
('12937','10510','staff'), | |
('12938','10510','staff'), | |
('12939','10510','staff'), | |
('12940','10510','affiliate'), | |
('12941','10510','affiliate'), | |
('12942','10510','affiliate'), | |
('12943','10510','affiliate'), | |
('12944','10520','staff'), | |
('12945','10520','staff'), | |
('12946','10520','staff'), | |
('12947','10520','staff'), | |
('12948','10520','staff'), | |
('12949','10530','staff'), | |
('12950','10530','staff'), | |
('12951','10530','staff'), | |
('12952','10530','staff'), | |
('12953','10530','staff'), | |
('12954','10530','staff'), | |
('12955','10530','staff'), | |
('12956','10530','staff'), | |
('12957','10530','staff'), | |
('12958','10530','staff'), | |
('12959','10530','staff'), | |
('12960','10530','staff'), | |
('12961','10530','staff'), | |
('12962','10530','staff'), | |
('12963','10530','staff'), | |
('12964','10530','staff'), | |
('12965','10530','staff'), | |
('12966','10530','staff'), | |
('12967','10530','staff'), | |
('12968','10530','staff'), | |
('12969','10540','staff'), | |
('12970','10540','staff'), | |
('12971','10540','staff'), | |
('12972','10540','staff'), | |
('12973','10540','staff'), | |
('12974','10540','staff'), | |
('12975','10540','staff'), | |
('12976','10540','staff'), | |
('12977','10540','affiliate'), | |
('12978','10540','affiliate'), | |
('12979','10550','staff'), | |
('12980','10550','staff'), | |
('12981','10550','staff'), | |
('12982','10550','staff'), | |
('12983','10550','staff'), | |
('12984','10550','staff'), | |
('12985','10550','staff'), | |
('12986','10550','staff'), | |
('12987','10550','affiliate'), | |
('12988','10550','affiliate'), | |
('12989','10560','staff'), | |
('12990','10560','staff'), | |
('12991','10560','staff'), | |
('12992','10561','staff'), | |
('12993','10561','staff'), | |
('12994','10561','staff'), | |
('12995','10561','staff'), | |
('12996','10561','staff'), | |
('12997','10561','staff'), | |
('12998','10561','staff'), | |
('12999','10561','staff'), | |
('13000','10561','staff'), | |
('13001','10561','staff'), | |
('13002','10561','staff'), | |
('13003','10561','staff'), | |
('13004','10561','affiliate'), | |
('13005','10561','affiliate'), | |
('13006','10561','affiliate'), | |
('13007','10562','staff'), | |
('13008','10562','staff'), | |
('13009','10562','staff'), | |
('13010','10562','staff'), | |
('13011','10562','staff'), | |
('13012','10562','staff'), | |
('13013','10562','staff'), | |
('13014','10562','staff'), | |
('13015','10563','staff'), | |
('13016','10563','staff'), | |
('13017','10563','staff'), | |
('13018','10563','staff'), | |
('13019','10710','staff'), | |
('13020','10710','staff'), | |
('13021','10710','staff'), | |
('13022','10710','staff'), | |
('13023','10720','staff'), | |
('13024','10720','staff'), | |
('13025','10720','staff'), | |
('13026','10720','staff'), | |
('13027','10720','staff'), | |
('13028','10720','staff'), | |
('13029','10720','affiliate'), | |
('13030','10720','affiliate'), | |
('13031','10730','staff'), | |
('13032','10730','staff'), | |
('13033','10730','staff'), | |
('13034','10810','staff'), | |
('13035','10810','staff'), | |
('13036','10810','staff'), | |
('13037','10810','staff'), | |
('13038','10810','staff'), | |
('13039','10810','staff'), | |
('13040','10810','affiliate'), | |
('13041','10820','staff'), | |
('13042','10820','staff'), | |
('13043','10820','staff'), | |
('13044','10820','staff'), | |
('13045','10820','staff'), | |
('13046','10820','staff'), | |
('13047','10820','staff'), | |
('13048','10820','staff'), | |
('13049','10820','staff'), | |
('13050','10820','staff'), | |
('13051','10820','staff'), | |
('13052','10820','staff'), | |
('13053','10820','affiliate'), | |
('13054','10820','affiliate'), | |
('13055','10820','affiliate'), | |
('13056','10830','staff'), | |
('13057','10830','staff'), | |
('13058','10830','staff'), | |
('13059','10830','staff'), | |
('13060','10830','staff'), | |
('13061','10830','staff'), | |
('13062','10830','staff'), | |
('13063','10830','staff'), | |
('13064','10830','staff'), | |
('13065','10830','staff'), | |
('13066','10830','staff'), | |
('13067','10830','staff'), | |
('13068','10830','affiliate'), | |
('13069','10830','affiliate'), | |
('13070','10840','staff'), | |
('13071','10840','staff'), | |
('13072','10840','staff'), | |
('13073','10840','staff'), | |
('13074','10840','staff'), | |
('13075','10840','staff'), | |
('13076','10840','affiliate'), | |
('13077','10901','staff'), | |
('13078','10901','staff'), | |
('13079','10901','staff'), | |
('13080','10901','staff'), | |
('13081','10901','staff'), | |
('13082','10901','staff'), | |
('13083','10901','staff'), | |
('13084','10901','staff'), | |
('13085','10901','affiliate'), | |
('13086','10901','affiliate'), | |
('13087','10902','staff'), | |
('13088','10902','staff'), | |
('13089','10902','staff'), | |
('13090','10902','staff'), | |
('13091','10902','staff'), | |
('13092','10902','staff'), | |
('13093','10902','staff'), | |
('13094','10902','staff'), | |
('13095','10903','staff'), | |
('13096','10903','staff'), | |
('13097','10903','staff'), | |
('13098','10903','staff'), | |
('13099','10904','staff'), | |
('13100','10904','staff'), | |
('13101','10904','staff'), | |
('13102','10904','staff'), | |
('13103','10904','staff'), | |
('13104','10905','staff'), | |
('13105','10905','staff'), | |
('13106','10905','staff'), | |
('13107','10905','staff'), | |
('13108','10905','staff'), | |
('13109','10905','staff'), | |
('13110','10905','staff'), | |
('13111','10905','staff'), | |
('13112','10905','staff'), | |
('13113','10905','staff'), | |
('13114','10905','staff'), | |
('13115','10905','staff'), | |
('13116','10905','staff'), | |
('13117','10905','staff'), | |
('13118','10905','staff'), | |
('13119','10905','staff'), | |
('13120','10906','staff'), | |
('13121','10906','staff'), | |
('13122','10906','staff'), | |
('13123','10906','staff'), | |
('13124','10906','staff'), | |
('13125','10906','staff'), | |
('13126','10906','staff'), | |
('13127','10906','staff'), | |
('13128','10907','staff'), | |
('13129','10907','staff'), | |
('13130','10907','staff'), | |
('13131','10907','staff'), | |
('13132','10908','staff'), | |
('13133','10908','staff'), | |
('13134','10908','staff'), | |
('13135','10908','staff'), | |
('13136','10909','staff'), | |
('13137','10909','staff'), | |
('13138','10909','staff'), | |
('13139','10909','staff'), | |
('13140','10909','staff'), | |
('13141','10909','staff'), | |
('13142','10909','staff'), | |
('13143','10909','staff'), | |
('13144','10909','staff'), | |
('13145','10909','staff'), | |
('13146','10909','staff'), | |
('13147','10909','staff'), | |
('13148','10909','staff'), | |
('13149','10909','staff'), | |
('13150','10909','staff'), | |
('13151','10909','staff'), | |
('13152','10909','staff'), | |
('13153','10909','staff'), | |
('13154','10909','staff'), | |
('13155','10909','staff'), | |
('13156','10909','affiliate'), | |
('13157','10909','affiliate'), | |
('13158','10909','affiliate'), | |
('13159','10909','affiliate'), | |
('13160','20800','work_study'), | |
('13161','10400','work_study'), | |
('13162','10563','work_study'), | |
('13163','10904','work_study'), | |
('13164','22250','work_study'), | |
('13165','22450','work_study'), | |
('13166','20650','work_study'), | |
('13167','10100','work_study'), | |
('13168','30000','work_study'), | |
('13169','10900','work_study'), | |
('13170','10903','work_study'), | |
('13171','21100','work_study'), | |
('13172','10560','work_study'), | |
('13173','22000','work_study'), | |
('13174','10909','work_study'), | |
('13175','22300','work_study'), | |
('13176','10840','work_study'), | |
('13177','10840','work_study'), | |
('13178','10520','work_study'), | |
('13179','10550','work_study'), | |
('13180','21700','work_study'), | |
('13181','10902','work_study'), | |
('13182','20800','work_study'), | |
('13183','20400','work_study'), | |
('13184','22350','work_study'), | |
('13185','21450','work_study'), | |
('13186','21550','work_study'), | |
('13187','10840','work_study'), | |
('13188','22300','work_study'), | |
('13189','22100','work_study'), | |
('13190','10520','work_study'), | |
('13191','10900','work_study'), | |
('13192','10800','work_study'), | |
('13193','10450','work_study'), | |
('13194','10563','work_study'), | |
('13195','10900','work_study'), | |
('13196','10420','work_study'), | |
('13197','22200','work_study'), | |
('13198','22400','work_study'), | |
('13199','21200','work_study'), | |
('13200','21950','work_study'), | |
('13201','22450','work_study'), | |
('13202','10340','work_study'), | |
('13203','10100','work_study'), | |
('13204','22000','work_study'), | |
('13205','21000','work_study'), | |
('13206','10830','work_study'), | |
('13207','10500','work_study'), | |
('13208','10820','work_study'), | |
('13209','10900','work_study'), | |
('13210','10907','work_study'), | |
('13211','21150','work_study'), | |
('13212','22300','work_study'), | |
('13213','22500','work_study'), | |
('13214','22250','work_study'), | |
('13215','20300','work_study'), | |
('13216','21250','work_study'), | |
('13217','21150','work_study'), | |
('13218','20950','work_study'), | |
('13219','10600','work_study'), | |
('13220','10562','work_study'), | |
('13221','20800','work_study'), | |
('13222','21900','work_study'), | |
('13223','20350','work_study'), | |
('13224','20500','work_study'), | |
('13225','22300','work_study'), | |
('13226','10200','work_study'), | |
('13227','10510','work_study'), | |
('13228','21750','work_study'), | |
('13229','10908','work_study'), | |
('13230','21200','work_study'), | |
('13231','10410','work_study'), | |
('13232','21900','work_study'), | |
('13233','10810','work_study'), | |
('13234','21200','work_study') | |
; | |
/************* hr_jobs *************/ | |
create table hr_jobs ( | |
position_id varchar(5), | |
person_id varchar(10) | |
); | |
insert into hr_jobs (position_id, person_id) values | |
('12565','800000000'), | |
('10167','800000001'), | |
('12658','800000003'), | |
('10264','800000009'), | |
('12488','800000010'), | |
('13212','800000011'), | |
('12824','800000014'), | |
('12160','800000015'), | |
('11972','800000016'), | |
('12626','800000019'), | |
('12817','800000020'), | |
('10146','800000023'), | |
('10080','800000024'), | |
('13100','800000026'), | |
('10076','800000029'), | |
('12809','800000029'), | |
('11970','800000030'), | |
('13184','800000032'), | |
('12338','800000033'), | |
('13122','800000033'), | |
('11195','800000035'), | |
('10019','800000037'), | |
('13196','800000038'), | |
('12577','800000043'), | |
('10863','800000045'), | |
('10153','800000046'), | |
('11745','800000046'), | |
('12890','800000048'), | |
('12972','800000051'), | |
('13199','800000052'), | |
('11737','800000053'), | |
('13177','800000056'), | |
('12740','800000061'), | |
('10864','800000062'), | |
('11925','800000067'), | |
('12884','800000067'), | |
('12954','800000067'), | |
('12071','800000068'), | |
('13023','800000072'), | |
('12893','800000073'), | |
('12209','800000076'), | |
('10362','800000077'), | |
('10405','800000077'), | |
('10144','800000079'), | |
('10012','800000081'), | |
('11564','800000084'), | |
('13226','800000085'), | |
('11555','800000087'), | |
('10137','800000089'), | |
('10026','800000090'), | |
('12747','800000091'), | |
('12799','800000092'), | |
('13167','800000093'), | |
('11415','800000095'), | |
('13096','800000096'), | |
('12566','800000098'), | |
('10365','800000098'), | |
('10368','800000100'), | |
('12806','800000100'), | |
('12728','800000101'), | |
('13189','800000102'), | |
('11796','800000103'), | |
('13003','800000104'), | |
('10052','800000109'), | |
('10050','800000110'), | |
('10266','800000114'), | |
('11059','800000115'), | |
('12480','800000118'), | |
('11151','800000119'), | |
('11152','800000120'), | |
('11793','800000121'), | |
('10550','800000122'), | |
('10338','800000124'), | |
('11655','800000127'), | |
('12678','800000128'), | |
('13041','800000130'), | |
('10820','800000133'), | |
('13079','800000134'), | |
('10461','800000135'), | |
('12969','800000138'), | |
('10736','800000139'), | |
('10684','800000142'), | |
('12751','800000145'), | |
('13149','800000146'), | |
('11936','800000149'), | |
('12879','800000151'), | |
('10278','800000152'), | |
('10059','800000153'), | |
('12941','800000156'), | |
('11842','800000163'), | |
('11381','800000164'), | |
('12294','800000165'), | |
('13210','800000166'), | |
('10231','800000168'), | |
('13046','800000171'), | |
('12614','800000174'), | |
('12903','800000175'), | |
('10407','800000176'), | |
('12155','800000182'), | |
('10173','800000183'), | |
('10872','800000186'), | |
('10316','800000187'), | |
('13203','800000188'), | |
('10322','800000190'), | |
('13047','800000191'), | |
('12393','800000192'), | |
('10590','800000194'), | |
('13209','800000195'), | |
('11515','800000196'), | |
('12975','800000199'), | |
('11466','800000201'), | |
('11472','800000203'), | |
('10336','800000203'), | |
('12916','800000204'), | |
('13031','800000205'), | |
('13215','800000206'), | |
('10180','800000207'), | |
('12620','800000208'), | |
('12341','800000209'), | |
('13232','800000215'), | |
('12342','800000217'), | |
('11603','800000218'), | |
('13017','800000221'), | |
('13054','800000222'), | |
('10033','800000223'), | |
('11290','800000223'), | |
('10072','800000224'), | |
('13032','800000227'), | |
('10963','800000228'), | |
('12668','800000229'), | |
('11016','800000230'), | |
('10911','800000232'), | |
('13092','800000234'), | |
('13059','800000235'), | |
('11051','800000239'), | |
('12519','800000240'), | |
('12211','800000243'), | |
('12868','800000244'), | |
('10730','800000245'), | |
('13176','800000246'), | |
('13150','800000247'), | |
('13045','800000247'), | |
('11967','800000249'), | |
('11656','800000251'), | |
('13102','800000252'), | |
('10409','800000253'), | |
('12734','800000254'), | |
('12248','800000257'), | |
('12813','800000257'), | |
('11876','800000258'), | |
('12063','800000260'), | |
('10503','800000261'), | |
('10225','800000262'), | |
('11329','800000263'), | |
('13195','800000264'), | |
('11787','800000265'), | |
('11285','800000266'), | |
('12525','800000269'), | |
('13173','800000270'), | |
('13073','800000274'), | |
('11743','800000276'), | |
('12120','800000278'), | |
('12388','800000281'), | |
('13026','800000287'), | |
('12822','800000289'), | |
('12578','800000290'), | |
('13042','800000298'), | |
('12823','800000300'), | |
('12940','800000301'), | |
('12983','800000303'), | |
('13022','800000305'), | |
('12523','800000307'), | |
('11517','800000308'), | |
('12680','800000311'), | |
('11008','800000312'), | |
('13012','800000314'), | |
('13067','800000314'), | |
('13164','800000317'), | |
('11786','800000318'), | |
('11050','800000318'), | |
('10642','800000318'), | |
('10049','800000319'), | |
('11287','800000323'), | |
('11833','800000324'), | |
('10778','800000325'), | |
('10601','800000328'), | |
('11382','800000329'), | |
('10913','800000331'), | |
('10822','800000334'), | |
('10074','800000336'), | |
('10367','800000337'), | |
('13019','800000340'), | |
('12742','800000341'), | |
('12948','800000341'), | |
('10361','800000342'), | |
('13025','800000344'), | |
('13072','800000345'), | |
('12202','800000347'), | |
('10286','800000349'), | |
('12671','800000351'), | |
('11004','800000352'), | |
('13108','800000353'), | |
('12955','800000353'), | |
('11370','800000355'), | |
('11476','800000357'), | |
('10321','800000358'), | |
('11187','800000360'), | |
('13120','800000361'), | |
('12917','800000363'), | |
('11607','800000364'), | |
('10287','800000366'), | |
('11462','800000370'), | |
('13154','800000376'), | |
('11377','800000376'), | |
('11605','800000377'), | |
('12991','800000378'), | |
('11887','800000379'), | |
('12877','800000382'), | |
('11974','800000382'), | |
('12528','800000383'), | |
('10027','800000384'), | |
('11278','800000384'), | |
('12486','800000384'), | |
('13095','800000386'), | |
('12685','800000386'), | |
('13119','800000389'), | |
('12957','800000395'), | |
('12527','800000396'), | |
('10271','800000397'), | |
('12572','800000399'), | |
('12875','800000401'), | |
('10780','800000404'), | |
('12741','800000405'), | |
('12730','800000407'), | |
('10685','800000408'), | |
('11188','800000413'), | |
('10062','800000414'), | |
('12292','800000415'), | |
('11231','800000416'), | |
('13202','800000417'), | |
('10213','800000423'), | |
('10276','800000426'), | |
('12996','800000430'), | |
('12672','800000432'), | |
('13182','800000433'), | |
('10149','800000435'), | |
('10051','800000437'), | |
('11748','800000439'), | |
('12867','800000440'), | |
('10139','800000443'), | |
('11102','800000444'), | |
('12249','800000446'), | |
('12915','800000447'), | |
('11697','800000448'), | |
('11789','800000449'), | |
('12758','800000452'), | |
('12290','800000454'), | |
('11190','800000455'), | |
('13159','800000456'), | |
('10063','800000457'), | |
('13175','800000458'), | |
('10232','800000459'), | |
('10960','800000460'), | |
('10169','800000462'), | |
('11371','800000465'), | |
('10692','800000467'), | |
('10633','800000468'), | |
('12335','800000470'), | |
('13138','800000472'), | |
('12914','800000472'), | |
('10404','800000475'), | |
('11554','800000477'), | |
('11790','800000481'), | |
('13109','800000482'), | |
('10406','800000482'), | |
('12757','800000483'), | |
('12391','800000484'), | |
('11233','800000487'), | |
('10965','800000488'), | |
('12752','800000493'), | |
('12721','800000496'), | |
('10222','800000498'), | |
('11695','800000501'), | |
('10163','800000504'), | |
('11191','800000505'), | |
('10004','800000507'), | |
('12681','800000508'), | |
('13207','800000509'), | |
('12944','800000510'), | |
('10412','800000511'), | |
('10008','800000513'), | |
('12953','800000516'), | |
('12965','800000517'), | |
('11923','800000519'), | |
('10152','800000522'), | |
('11882','800000522'), | |
('13111','800000523'), | |
('13044','800000523'), | |
('12019','800000524'), | |
('10168','800000525'), | |
('12892','800000526'), | |
('11235','800000530'), | |
('12336','800000532'), | |
('12062','800000533'), | |
('10333','800000535'), | |
('11196','800000536'), | |
('11013','800000537'), | |
('13057','800000541'), | |
('10220','800000544'), | |
('11243','800000546'), | |
('13001','800000546'), | |
('12255','800000551'), | |
('11880','800000551'), | |
('11232','800000552'), | |
('11057','800000559'), | |
('11610','800000560'), | |
('12613','800000561'), | |
('10681','800000562'), | |
('10269','800000563'), | |
('12961','800000567'), | |
('13183','800000572'), | |
('12907','800000578'), | |
('12387','800000582'), | |
('12904','800000583'), | |
('13009','800000587'), | |
('13131','800000589'), | |
('13098','800000594'), | |
('12210','800000598'), | |
('11331','800000599'), | |
('10739','800000600'), | |
('10594','800000601'), | |
('10013','800000604'), | |
('13084','800000605'), | |
('10068','800000608'), | |
('10826','800000609'), | |
('12569','800000612'), | |
('12020','800000614'), | |
('11280','800000617'), | |
('11650','800000618'), | |
('13070','800000619'), | |
('10455','800000620'), | |
('13158','800000629'), | |
('10349','800000633'), | |
('12534','800000638'), | |
('12389','800000639'), | |
('13145','800000640'), | |
('12802','800000647'), | |
('13088','800000648'), | |
('12107','800000649'), | |
('11742','800000651'), | |
('12437','800000653'), | |
('12964','800000654'), | |
('12303','800000659'), | |
('11883','800000661'), | |
('11463','800000667'), | |
('10002','800000668'), | |
('11333','800000669'), | |
('12673','800000674'), | |
('11609','800000675'), | |
('11693','800000678'), | |
('12065','800000680'), | |
('10740','800000681'), | |
('11006','800000683'), | |
('12251','800000684'), | |
('11750','800000686'), | |
('10912','800000689'), | |
('13113','800000690'), | |
('10689','800000691'), | |
('10587','800000693'), | |
('12657','800000695'), | |
('12027','800000697'), | |
('12013','800000698'), | |
('12247','800000699'), | |
('10143','800000700'), | |
('11522','800000702'), | |
('10588','800000704'), | |
('10823','800000706'), | |
('13048','800000713'), | |
('12021','800000722'), | |
('10353','800000731'), | |
('13027','800000736'), | |
('11649','800000742'), | |
('10224','800000745'), | |
('12340','800000750'), | |
('10288','800000752'), | |
('12245','800000753'), | |
('13160','800000755'), | |
('12164','800000756'), | |
('10734','800000758'), | |
('10970','800000763'), | |
('11011','800000764'), | |
('10208','800000771'), | |
('12625','800000774'), | |
('11380','800000775'), | |
('11244','800000777'), | |
('10177','800000779'), | |
('12621','800000780'), | |
('12291','800000780'), | |
('10025','800000783'), | |
('10209','800000784'), | |
('11277','800000786'), | |
('13074','800000787'), | |
('10548','800000788'), | |
('13056','800000789'), | |
('11326','800000794'), | |
('11921','800000795'), | |
('12293','800000796'), | |
('12803','800000797'), | |
('10032','800000800'), | |
('11699','800000805'), | |
('12878','800000812'), | |
('13186','800000813'), | |
('12980','800000814'), | |
('11153','800000816'), | |
('12154','800000817'), | |
('11935','800000820'), | |
('11142','800000823'), | |
('10160','800000824'), | |
('13156','800000825'), | |
('12887','800000826'), | |
('11794','800000829'), | |
('10878','800000831'), | |
('11751','800000833'), | |
('10029','800000833'), | |
('11094','800000834'), | |
('12819','800000834'), | |
('12243','800000838'), | |
('12931','800000839'), | |
('11369','800000842'), | |
('11647','800000844'), | |
('13168','800000847'), | |
('10071','800000851'), | |
('10507','800000853'), | |
('12987','800000854'), | |
('13018','800000857'), | |
('12256','800000860'), | |
('13190','800000862'), | |
('11606','800000863'), | |
('10345','800000866'), | |
('12725','800000869'), | |
('12571','800000870'), | |
('12889','800000872'), | |
('12880','800000873'), | |
('12109','800000875'), | |
('13204','800000881'), | |
('12212','800000883'), | |
('13187','800000891'), | |
('12968','800000893'), | |
('11417','800000895'), | |
('10457','800000896'), | |
('11747','800000897'), | |
('10871','800000898'), | |
('10210','800000899'), | |
('10221','800000901'), | |
('11877','800000912'), | |
('10331','800000913'), | |
('11465','800000916'), | |
('12874','800000918'), | |
('11795','800000919'), | |
('11461','800000921'), | |
('12114','800000926'), | |
('12919','800000927'), | |
('12754','800000928'), | |
('12949','800000929'), | |
('12436','800000931'), | |
('10034','800000933'), | |
('12487','800000934'), | |
('12970','800000935'), | |
('11557','800000937'), | |
('13028','800000939'), | |
('10410','800000946'), | |
('11977','800000949'), | |
('10691','800000950'), | |
('13169','800000951'), | |
('10501','800000954'), | |
('13148','800000955'), | |
('10317','800000956'), | |
('10648','800000957'), | |
('10552','800000958'), | |
('13097','800000959'), | |
('10259','800000962'), | |
('10634','800000964'), | |
('12735','800000965'), | |
('11335','800000967'), | |
('10283','800000969'), | |
('13049','800000970'), | |
('10870','800000970'), | |
('12973','800000972'), | |
('10641','800000973'), | |
('12299','800000976'), | |
('12616','800000978'), | |
('12676','800000980'), | |
('11058','800000982'), | |
('11334','800000983'), | |
('12661','800000988'), | |
('10348','800000992'), | |
('10460','800000994'), | |
('13220','800000995'), | |
('10873','800000999'), | |
('12477','800001001'), | |
('12531','800001002'), | |
('11185','800001005'), | |
('11884','800001007'), | |
('12302','800001009'), | |
('13080','800001013'), | |
('13053','800001022'), | |
('11562','800001024'), | |
('11108','800001025'), | |
('13103','800001026'), | |
('10069','800001027'), | |
('11783','800001028'), | |
('11563','800001031'), | |
('12381','800001032'), | |
('10014','800001033'), | |
('10866','800001035'), | |
('13231','800001036'), | |
('12894','800001037'), | |
('12206','800001039'), | |
('11418','800001040'), | |
('11284','800001041'), | |
('11288','800001042'), | |
('10454','800001043'), | |
('12258','800001045'), | |
('11378','800001046'), | |
('10057','800001051'), | |
('12520','800001052'), | |
('10504','800001054'), | |
('10067','800001055'), | |
('11103','800001056'), | |
('12666','800001057'), | |
('13039','800001060'), | |
('11052','800001062'), | |
('10036','800001065'), | |
('11553','800001066'), | |
('12988','800001068'), | |
('10370','800001069'), | |
('12664','800001071'), | |
('10075','800001072'), | |
('10175','800001079'), | |
('12430','800001079'), | |
('12199','800001080'), | |
('12997','800001081'), | |
('10645','800001082'), | |
('10647','800001083'), | |
('10350','800001084'), | |
('11471','800001086'), | |
('10728','800001087'), | |
('12990','800001089'), | |
('12945','800001093'), | |
('11467','800001097'), | |
('11095','800001099'), | |
('12483','800001099'), | |
('13146','800001101'), | |
('11980','800001101'), | |
('10229','800001103'), | |
('10957','800001103'), | |
('12976','800001105'), | |
('10329','800001108'), | |
('10777','800001109'), | |
('12937','800001111'), | |
('10555','800001115'), | |
('12926','800001119'), | |
('12935','800001120'), | |
('12897','800001121'), | |
('11652','800001125'), | |
('10914','800001126'), | |
('10542','800001129'), | |
('13143','800001134'), | |
('10502','800001136'), | |
('12888','800001137'), | |
('13136','800001139'), | |
('10554','800001141'), | |
('13066','800001142'), | |
('11784','800001145'), | |
('10335','800001145'), | |
('12826','800001146'), | |
('13099','800001147'), | |
('11829','800001151'), | |
('12943','800001152'), | |
('12529','800001155'), | |
('12665','800001158'), | |
('10818','800001161'), | |
('11283','800001163'), | |
('11703','800001169'), | |
('13114','800001170'), | |
('10556','800001175'), | |
('11426','800001178'), | |
('13024','800001179'), | |
('11105','800001186'), | |
('10021','800001188'), | |
('13228','800001190'), | |
('13068','800001191'), | |
('12913','800001193'), | |
('10138','800001194'), | |
('13081','800001196'), | |
('12023','800001197'), | |
('12727','800001201'), | |
('13153','800001202'), | |
('10686','800001204'), | |
('12994','800001210'), | |
('10867','800001215'), | |
('10003','800001218'), | |
('13094','800001219'), | |
('12984','800001221'), | |
('13110','800001227'), | |
('12744','800001228'), | |
('11520','800001235'), | |
('12622','800001237'), | |
('10158','800001241'), | |
('11509','800001243'), | |
('13170','800001245'), | |
('11975','800001247'), | |
('11738','800001247'), | |
('10357','800001249'), | |
('11926','800001253'), | |
('11608','800001254'), | |
('11791','800001255'), | |
('13129','800001256'), | |
('11844','800001259'), | |
('12064','800001261'), | |
('12831','800001261'), | |
('10154','800001263'), | |
('10508','800001263'), | |
('11653','800001264'), | |
('11375','800001265'), | |
('13127','800001266'), | |
('12906','800001267'), | |
('10639','800001269'), | |
('12073','800001271'), | |
('12440','800001274'), | |
('12821','800001284'), | |
('10372','800001286'), | |
('10920','800001288'), | |
('12886','800001289'), | |
('13051','800001292'), | |
('12473','800001293'), | |
('11922','800001294'), | |
('10289','800001295'), | |
('10779','800001297'), | |
('13038','800001298'), | |
('13134','800001299'), | |
('10147','800001300'), | |
('13040','800001301'), | |
('10969','800001302'), | |
('13162','800001303'), | |
('10024','800001307'), | |
('12898','800001312'), | |
('11706','800001317'), | |
('10967','800001319'), | |
('12977','800001320'), | |
('12392','800001321'), | |
('12971','800001321'), | |
('10151','800001328'), | |
('12959','800001331'), | |
('13227','800001332'), | |
('10005','800001333'), | |
('13137','800001335'), | |
('12066','800001336'), | |
('12952','800001340'), | |
('11841','800001344'), | |
('12530','800001346'), | |
('12250','800001347'), | |
('11246','800001352'), | |
('12729','800001353'), | |
('11198','800001355'), | |
('11427','800001356'), | |
('11144','800001357'), | |
('11143','800001359'), | |
('13010','800001361'), | |
('12347','800001361'), | |
('11969','800001362'), | |
('10039','800001364'), | |
('12951','800001366'), | |
('10267','800001368'), | |
('11291','800001376'), | |
('12660','800001380'), | |
('12618','800001382'), | |
('12677','800001384'), | |
('11741','800001385'), | |
('11423','800001386'), | |
('10043','800001386'), | |
('12902','800001387'), | |
('12060','800001388'), | |
('10725','800001389'), | |
('12396','800001390'), | |
('11416','800001391'), | |
('12684','800001394'), | |
('11282','800001398'), | |
('12108','800001403'), | |
('12732','800001404'), | |
('12343','800001405'), | |
('10285','800001406'), | |
('11602','800001408'), | |
('10545','800001411'), | |
('10273','800001413'), | |
('11512','800001413'), | |
('12522','800001415'), | |
('11101','800001417'), | |
('11098','800001419'), | |
('10048','800001423'), | |
('12753','800001425'), | |
('12205','800001427'), | |
('12669','800001430'), | |
('13197','800001434'), | |
('10171','800001435'), | |
('10876','800001437'), | |
('11372','800001441'), | |
('13217','800001444'), | |
('11428','800001445'), | |
('13160','800001446'), | |
('12105','800001448'), | |
('10047','800001453'), | |
('11691','800001455'), | |
('11657','800001456'), | |
('11752','800001457'), | |
('10216','800001458'), | |
('11009','800001459'), | |
('12891','800001460'), | |
('11968','800001461'), | |
('10646','800001465'), | |
('10733','800001467'), | |
('10358','800001470'), | |
('10680','800001472'), | |
('13118','800001482'), | |
('11651','800001483'), | |
('10022','800001485'), | |
('12755','800001485'), | |
('10591','800001486'), | |
('11422','800001489'), | |
('12481','800001490'), | |
('13090','800001493'), | |
('10869','800001494'), | |
('12807','800001495'), | |
('10054','800001497'), | |
('11507','800001498'), | |
('13214','800001500'), | |
('10155','800001510'), | |
('11062','800001514'), | |
('10923','800001515'), | |
('10162','800001516'), | |
('12683','800001517'), | |
('12909','800001521'), | |
('10280','800001522'), | |
('11048','800001525'), | |
('11971','800001525'), | |
('13064','800001527'), | |
('12797','800001530'), | |
('10727','800001533'), | |
('11192','800001534'), | |
('10150','800001535'), | |
('12905','800001539'), | |
('10326','800001543'), | |
('10543','800001544'), | |
('12615','800001547'), | |
('11932','800001549'), | |
('10599','800001551'), | |
('13200','800001552'), | |
('12873','800001553'), | |
('10010','800001555'), | |
('11106','800001555'), | |
('10132','800001557'), | |
('10510','800001558'), | |
('12827','800001560'), | |
('11924','800001563'), | |
('13021','800001565'), | |
('11559','800001567'), | |
('10217','800001568'), | |
('11197','800001570'), | |
('13181','800001574'), | |
('12829','800001575'), | |
('10819','800001576'), | |
('12476','800001577'), | |
('12025','800001578'), | |
('11982','800001587'), | |
('12910','800001587'), | |
('12818','800001590'), | |
('11324','800001594'), | |
('10359','800001595'), | |
('11599','800001597'), | |
('12870','800001598'), | |
('11698','800001600'), | |
('12960','800001602'), | |
('10453','800001603'), | |
('10553','800001604'), | |
('11003','800001615'), | |
('12116','800001615'), | |
('10363','800001618'), | |
('10735','800001624'), | |
('11879','800001627'), | |
('10772','800001628'), | |
('12300','800001628'), | |
('12743','800001629'), | |
('12724','800001632'), | |
('12722','800001634'), | |
('11889','800001636'), | |
('12993','800001638'), | |
('12016','800001642'), | |
('12974','800001649'), | |
('11886','800001651'), | |
('11330','800001654'), | |
('10223','800001655'), | |
('10602','800001656'), | |
('10142','800001658'), | |
('10366','800001663'), | |
('11383','800001664'), | |
('11289','800001666'), | |
('13166','800001667'), | |
('10640','800001669'), | |
('10044','800001669'), | |
('10369','800001672'), | |
('11519','800001676'), | |
('10694','800001681'), | |
('13128','800001682'), | |
('10598','800001684'), | |
('11516','800001685'), | |
('12254','800001686'), | |
('10341','800001688'), | |
('10589','800001690'), | |
('10344','800001693'), | |
('12911','800001699'), | |
('12663','800001699'), | |
('13139','800001700'), | |
('13086','800001701'), | |
('10592','800001702'), | |
('10157','800001708'), | |
('11701','800001709'), | |
('12908','800001714'), | |
('12795','800001722'), | |
('12257','800001725'), | |
('11328','800001726'), | |
('10418','800001727'), | |
('12918','800001731'), | |
('10825','800001736'), | |
('10411','800001737'), | |
('10693','800001739'), | |
('12349','800001742'), | |
('11376','800001746'), | |
('13201','800001748'), | |
('11785','800001752'), | |
('12017','800001752'), | |
('10133','800001753'), | |
('12804','800001755'), | |
('12337','800001757'), | |
('10637','800001758'), | |
('10226','800001760'), | |
('11832','800001762'), | |
('10417','800001764'), | |
('12995','800001770'), | |
('12746','800001772'), | |
('12923','800001772'), | |
('13211','800001773'), | |
('13132','800001775'), | |
('10020','800001776'), | |
('12573','800001778'), | |
('10040','800001780'), | |
('10214','800001781'), | |
('12118','800001784'), | |
('13151','800001786'), | |
('10056','800001788'), | |
('12925','800001790'), | |
('13218','800001797'), | |
('11237','800001803'), | |
('12568','800001804'), | |
('10018','800001806'), | |
('10827','800001807'), | |
('10017','800001808'), | |
('12617','800001810'), | |
('11337','800001812'), | |
('13121','800001821'), | |
('11645','800001822'), | |
('12872','800001823'), | |
('10687','800001825'), | |
('12950','800001826'), | |
('11840','800001827'), | |
('10966','800001828'), | |
('12532','800001829'), | |
('12896','800001830'), | |
('13152','800001833'), | |
('12992','800001836'), | |
('12161','800001838'), | |
('10011','800001842'), | |
('12390','800001843'), | |
('12815','800001845'), | |
('12938','800001847'), | |
('11885','800001848'), | |
('12157','800001851'), | |
('11186','800001855'), | |
('10281','800001856'), | |
('13185','800001860'), | |
('12526','800001862'), | |
('13144','800001863'), | |
('10877','800001864'), | |
('10551','800001867'), | |
('10679','800001868'), | |
('12738','800001871'), | |
('13076','800001874'), | |
('12985','800001875'), | |
('12201','800001878'), | |
('12298','800001879'), | |
('11047','800001883'), | |
('12158','800001885'), | |
('11658','800001886'), | |
('13008','800001887'), | |
('12869','800001888'), | |
('12619','800001889'), | |
('10007','800001890'), | |
('11424','800001890'), | |
('11613','800001893'), | |
('10924','800001897'), | |
('10265','800001902'), | |
('11929','800001904'), | |
('10215','800001906'), | |
('12159','800001908'), | |
('11835','800001909'), | |
('11702','800001913'), | |
('13205','800001915'), | |
('11149','800001922'), | |
('13233','800001924'), | |
('13191','800001926'), | |
('12385','800001930'), | |
('10064','800001934'), | |
('12244','800001935'), | |
('10041','800001936'), | |
('10824','800001939'), | |
('11843','800001942'), | |
('10786','800001943'), | |
('13229','800001944'), | |
('11746','800001945'), | |
('10042','800001946'), | |
('11323','800001947'), | |
('10319','800001948'), | |
('11470','800001950'), | |
('12798','800001953'), | |
('11007','800001959'), | |
('10282','800001960'), | |
('13219','800001960'), | |
('11107','800001962'), | |
('12296','800001963'), | |
('12165','800001964'), | |
('12794','800001966'), | |
('12808','800001970'), | |
('10009','800001971'), | |
('12979','800001972'), | |
('12484','800001973'), | |
('11838','800001975'), | |
('13180','800001977'), | |
('12111','800001978'), | |
('11513','800001979'), | |
('10351','800001985'), | |
('11200','800001999'), | |
('10688','800002000'), | |
('11141','800002002'), | |
('10961','800002009'), | |
('12162','800002012'), | |
('13157','800002013'), | |
('12350','800002015'), | |
('12442','800002016'), | |
('13224','800002017'), | |
('12726','800002019'), | |
('11518','800002021'), | |
('12885','800002022'), | |
('10459','800002023'), | |
('12805','800002023'), | |
('12345','800002024'), | |
('13163','800002034'), | |
('12439','800002036'), | |
('11739','800002038'), | |
('10218','800002039'), | |
('12825','800002040'), | |
('10145','800002041'), | |
('11792','800002043'), | |
('10916','800002047'), | |
('11508','800002048'), | |
('10176','800002049'), | |
('11744','800002051'), | |
('10922','800002057'), | |
('10414','800002059'), | |
('13101','800002061'), | |
('10261','800002063'), | |
('10682','800002066'), | |
('10784','800002067'), | |
('11055','800002069'), | |
('10452','800002073'), | |
('10327','800002075'), | |
('12900','800002076'), | |
('10268','800002079'), | |
('12570','800002082'), | |
('12252','800002084'), | |
('10865','800002085'), | |
('11614','800002088'), | |
('12800','800002093'), | |
('12801','800002094'), | |
('10874','800002096'), | |
('12883','800002098'), | |
('10771','800002099'), | |
('10058','800002104'), | |
('11245','800002106'), | |
('12946','800002108'), | |
('10340','800002108'), | |
('10070','800002109'), | |
('12386','800002109'), | |
('10731','800002110'), | |
('13174','800002111'), | |
('10737','800002114'), | |
('13188','800002115'), | |
('12930','800002116'), | |
('12871','800002118'), | |
('10600','800002121'), | |
('12431','800002122'), | |
('13083','800002125'), | |
('13078','800002126'), | |
('10001','800002127'), | |
('10325','800002128'), | |
('12623','800002129'), | |
('10690','800002130'), | |
('11566','800002131'), | |
('11797','800002132'), | |
('10275','800002139'), | |
('11469','800002141'), | |
('10509','800002142'), | |
('10136','800002144'), | |
('11654','800002147'), | |
('13062','800002147'), | |
('12022','800002150'), | |
('13221','800002155'), | |
('11292','800002156'), | |
('10318','800002157'), | |
('10643','800002158'), | |
('11145','800002164'), | |
('11692','800002168'), | |
('13006','800002170'), | |
('11473','800002171'), | |
('12986','800002173'), | |
('12922','800002176'), | |
('10320','800002180'), | |
('11837','800002181'), | |
('12924','800002188'), | |
('10408','800002189'), | |
('12828','800002190'), | |
('12197','800002191'), | |
('11612','800002192'), | |
('11611','800002193'), | |
('12999','800002193'), | |
('13005','800002194'), | |
('10918','800002206'), | |
('11878','800002206'), | |
('13117','800002210'), | |
('13130','800002216'), | |
('10270','800002216'), | |
('10449','800002218'), | |
('11694','800002220'), | |
('11150','800002223'), | |
('13165','800002229'), | |
('10495','800002230'), | |
('11373','800002231'), | |
('13106','800002232'), | |
('13198','800002233'), | |
('11978','800002234'), | |
('12963','800002235'), | |
('12989','800002237'), | |
('12246','800002238'), | |
('12014','800002245'), | |
('13124','800002247'), | |
('11976','800002250'), | |
('12110','800002251'), | |
('12067','800002251'), | |
('10593','800002252'), | |
('12736','800002256'), | |
('10346','800002259'), | |
('12166','800002260'), | |
('12297','800002261'), | |
('13171','800002263'), | |
('11421','800002265'), | |
('12521','800002269'), | |
('12117','800002271'), | |
('12942','800002272'), | |
('12981','800002273'), | |
('12434','800002275'), | |
('10352','800002280'), | |
('11420','800002282'), | |
('10549','800002283'), | |
('11700','800002285'), | |
('11604','800002286'), | |
('11511','800002287'), | |
('13029','800002288'), | |
('11099','800002289'), | |
('12433','800002290'), | |
('13052','800002291'), | |
('10262','800002294'), | |
('12068','800002295'), | |
('12106','800002295'), | |
('10028','800002296'), | |
('12810','800002298'), | |
('10962','800002303'), | |
('11194','800002305'), | |
('10066','800002308'), | |
('13192','800002309'), | |
('11336','800002317'), | |
('10161','800002319'), | |
('13193','800002320'), | |
('13116','800002323'), | |
('13216','800002324'), | |
('12475','800002325'), | |
('12575','800002327'), | |
('10910','800002327'), | |
('12750','800002329'), | |
('10170','800002332'), | |
('10277','800002333'), | |
('11327','800002334'), | |
('12203','800002335'), | |
('10324','800002339'), | |
('12428','800002343'), | |
('12956','800002343'), | |
('13030','800002344'), | |
('12382','800002345'), | |
('10830','800002347'), | |
('12921','800002347'), | |
('12901','800002348'), | |
('12395','800002349'), | |
('12929','800002350'), | |
('11474','800002351'), | |
('12339','800002356'), | |
('10006','800002358'), | |
('13161','800002360'), | |
('12659','800002362'), | |
('12485','800002366'), | |
('11696','800002367'), | |
('12675','800002368'), | |
('13036','800002372'), | |
('10828','800002374'), | |
('13033','800002376'), | |
('13069','800002377'), | |
('12756','800002380'), | |
('12982','800002383'), | |
('13085','800002385'), | |
('13123','800002386'), | |
('11140','800002389'), | |
('10832','800002389'), | |
('12967','800002390'), | |
('13093','800002391'), | |
('10546','800002392'), | |
('12024','800002394'), | |
('10821','800002396'), | |
('10773','800002396'), | |
('10364','800002398'), | |
('10038','800002402'), | |
('13172','800002403'), | |
('12026','800002407'), | |
('12435','800002409'), | |
('13135','800002411'), | |
('10456','800002413'), | |
('12611','800002415'), | |
('11561','800002419'), | |
('13065','800002421'), | |
('10135','800002423'), | |
('12072','800002430'), | |
('12674','800002432'), | |
('11648','800002436'), | |
('13035','800002437'), | |
('11419','800002437'), | |
('10915','800002437'), | |
('11049','800002439'), | |
('10023','800002441'), | |
('10031','800002448'), | |
('10081','800002454'), | |
('12667','800002456'), | |
('10541','800002457'), | |
('13179','800002458'), | |
('12670','800002459'), | |
('13104','800002460'), | |
('12253','800002462'), | |
('13007','800002466'), | |
('10078','800002467'), | |
('13222','800002469'), | |
('10909','800002472'), | |
('11379','800002473'), | |
('10403','800002474'), | |
('13208','800002481'), | |
('10172','800002484'), | |
('10330','800002485'), | |
('12574','800002485'), | |
('11093','800002486'), | |
('12344','800002488'), | |
('11005','800002489'), | |
('11241','800002495'), | |
('12928','800002496'), | |
('11014','800002497'), | |
('12820','800002498'), | |
('10140','800002499'), | |
('10413','800002504'), | |
('10498','800002505'), | |
('13142','800002506'), | |
('10732','800002507'), | |
('10181','800002508'), | |
('11928','800002510'), | |
('10964','800002512'), | |
('10179','800002513'), | |
('10505','800002520'), | |
('10219','800002520'), | |
('10636','800002522'), | |
('10073','800002527'), | |
('13223','800002527'), | |
('12429','800002529'), | |
('10053','800002532'), | |
('12580','800002535'), | |
('13213','800002537'), | |
('11933','800002538'), | |
('13034','800002542'), | |
('11558','800002545'), | |
('11875','800002546'), | |
('12920','800002547'), | |
('12978','800002550'), | |
('12612','800002552'), | |
('10829','800002554'), | |
('11836','800002555'), | |
('11061','800002558'), | |
('13230','800002559'), | |
('13141','800002563'), | |
('10035','800002564'), | |
('10781','800002565'), | |
('10258','800002566'), | |
('10958','800002567'), | |
('10227','800002571'), | |
('11740','800002572'), | |
('11788','800002573'), | |
('10339','800002580'), | |
('10272','800002585'), | |
('13234','800002587'), | |
('13091','800002590'), | |
('12479','800002592'), | |
('11002','800002593'), | |
('10683','800002601'), | |
('10783','800002602'), | |
('10159','800002608'), | |
('12119','800002610'), | |
('11234','800002612'), | |
('10141','800002614'), | |
('11425','800002615'), | |
('12912','800002625'), | |
('10868','800002626'), | |
('13043','800002626'), | |
('10956','800002628'), | |
('12932','800002632'), | |
('12432','800002632'), | |
('10166','800002633'), | |
('10726','800002636'), | |
('12061','800002641'), | |
('12748','800002642'), | |
('11429','800002643'), | |
('12958','800002643'), | |
('12059','800002646'), | |
('10290','800002647'), | |
('10464','800002648'), | |
('12934','800002649'), | |
('12028','800002650'), | |
('13058','800002650'), | |
('12830','800002654'), | |
('12441','800002656'), | |
('13075','800002665'), | |
('13000','800002667'), | |
('11888','800002668'), | |
('12112','800002669'), | |
('11556','800002670'), | |
('12939','800002671'), | |
('12153','800002678'), | |
('10228','800002681'), | |
('12015','800002682'), | |
('12881','800002685'), | |
('12438','800002688'), | |
('13071','800002690'), | |
('10831','800002694'), | |
('10644','800002696'), | |
('10061','800002699'), | |
('10065','800002700'), | |
('12524','800002702'), | |
('11279','800002704'), | |
('10354','800002705'), | |
('10596','800002706'), | |
('12812','800002708'), | |
('11236','800002709'), | |
('13063','800002716'), | |
('12579','800002717'), | |
('10785','800002721'), | |
('12070','800002724'), | |
('11148','800002725'), | |
('11384','800002728'), | |
('10506','800002730'), | |
('12749','800002733'), | |
('13155','800002734'), | |
('11193','800002735'), | |
('11060','800002736'), | |
('11240','800002742'), | |
('10015','800002744'), | |
('11475','800002746'), | |
('13015','800002746'), | |
('11931','800002750'), | |
('10499','800002751'), | |
('11242','800002751'), | |
('13125','800002754'), | |
('12811','800002757'), | |
('11332','800002758'), | |
('11374','800002761'), | |
('10284','800002763'), | |
('12295','800002764'), | |
('10500','800002764'), | |
('12018','800002765'), | |
('13194','800002767'), | |
('12394','800002769'), | |
('12207','800002772'), | |
('10332','800002773'), | |
('10955','800002774'), | |
('11834','800002780'), | |
('11015','800002782'), | |
('12533','800002787'), | |
('11001','800002789'), | |
('11189','800002793'), | |
('10212','800002794'), | |
('12198','800002796'), | |
('10451','800002797'), | |
('12662','800002797'), | |
('13060','800002798'), | |
('11704','800002801'), | |
('10775','800002804'), | |
('11096','800002805'), | |
('12152','800002806'), | |
('12882','800002807'), | |
('13225','800002808'), | |
('12348','800002811'), | |
('12624','800002816'), | |
('11831','800002819'), | |
('10274','800002820'), | |
('10738','800002823'), | |
('12739','800002824'), | |
('11659','800002825'), | |
('11600','800002827'), | |
('10030','800002828'), | |
('11147','800002831'), | |
('13206','800002834'), | |
('11286','800002836'), | |
('10356','800002837'), | |
('10496','800002839'), | |
('13011','800002840'), | |
('13037','800002841'), | |
('12115','800002842'), | |
('13016','800002843'), | |
('13013','800002844'), | |
('10164','800002847'), | |
('12427','800002849'), | |
('12899','800002850'), | |
('12113','800002851'), | |
('12384','800002853'), | |
('10729','800002855'), | |
('13089','800002856'), | |
('11567','800002857'), | |
('10782','800002858'), | |
('12731','800002859'), | |
('10342','800002860'), | |
('12796','800002866'), | |
('12567','800002870'), | |
('10462','800002873'), | |
('13050','800002874'), | |
('10337','800002875'), | |
('11927','800002876'), | |
('10016','800002877'), | |
('10079','800002877'), | |
('10174','800002883'), | |
('12733','800002887'), | |
('11338','800002888'), | |
('10037','800002890'), | |
('10921','800002890'), | |
('10360','800002892'), | |
('11514','800002893'), | |
('13126','800002895'), | |
('11705','800002897'), | |
('10463','800002902'), | |
('11981','800002903'), | |
('12069','800002906'), | |
('12156','800002907'), | |
('10060','800002908'), | |
('11238','800002909'), | |
('10323','800002910'), | |
('10182','800002912'), | |
('10497','800002916'), | |
('11979','800002917'), | |
('11010','800002929'), | |
('11839','800002931'), | |
('11154','800002935'), | |
('11881','800002936'), | |
('13133','800002937'), | |
('10211','800002938'), | |
('12474','800002940'), | |
('13140','800002942'), | |
('10260','800002947'), | |
('10959','800002950'), | |
('10919','800002951'), | |
('10968','800002954'), | |
('12482','800002955'), | |
('12304','800002958'), | |
('13082','800002959'), | |
('12682','800002959'), | |
('10347','800002959'), | |
('10343','800002961'), | |
('10597','800002962'), | |
('12745','800002964'), | |
('11646','800002965'), | |
('13014','800002966'), | |
('12998','800002968'), | |
('12679','800002969'), | |
('12737','800002969'), | |
('11934','800002970'), | |
('11139','800002973'), | |
('10638','800002975'), | |
('11830','800002978'), | |
('13061','800002978'), | |
('13105','800002980'), | |
('10817','800002983'), | |
('12478','800002986'), | |
('13178','800002988'), | |
('12814','800002990'), | |
('12200','800002992'), | |
('10416','800002992'), | |
('12204','800002995'), | |
('11239','800002996'), | |
('11053','800002997'), | |
('13077','800002999') | |
; | |
/************* sis_courses *************/ | |
create table sis_courses ( | |
course_id integer, | |
dept_id varchar(5), | |
dept_abbr varchar(5), | |
course_num varchar(5), | |
title varchar(200) | |
); | |
alter table sis_courses add primary key (course_id); | |
/** | |
* course titles generated by random course generator | |
* | |
* @link https://sourceforge.net/projects/nonsense/ | |
*/ | |
insert into sis_courses (course_id, dept_id, dept_abbr, course_num, title) values | |
(100000,'30000','GS','101','Literature Of Reformist Environmentalism In Modern Society'), | |
(100001,'30000','GS','110','Perspectives In Feminist Marxism & Persson''s Theorem'), | |
(100002,'30000','GS','120','Marxism & Socialism In The Postmodern Era'), | |
(100003,'30000','GS','150','Contemporary Female Religion & Landscapes'), | |
(100004,'30000','GS','201','Female Evolution Religion In The Reformist World'), | |
(100005,'30000','GS','210','Hispanic Political Correctness Perspectives In The Postmodern World'), | |
(100006,'30000','GS','220','Philosophy Of Liberated Pre-Realism In Recent Times'), | |
(100007,'30000','GS','250','Harlequin Romances In Recent Times'), | |
(100008,'30000','GS','301','Native American Images: Ideas In Conflict'), | |
(100009,'30000','GS','350','Special Topics In Cubism & Classical Romanticism In The Postmodern World'), | |
(100010,'30000','GS','399','Psychology Of The Inner City Latino Revolution In The Modern Age'), | |
(100011,'45000','SPM','101','Humanist Religion: Myth & Reality'), | |
(100012,'45000','SPM','110','The Potential Of Middle Class Japanese Poetry'), | |
(100013,'45000','SPM','120','Liberal Traditions: Ideas In Conflict'), | |
(100014,'45000','SPM','150','Eastern Italian Culture In Modern Society'), | |
(100015,'45000','SPM','201','Hittite Sculptures As The Roots Of 21st Century Fractal Geometry'), | |
(100016,'45000','SPM','210','Topics In The Culinary Arts'), | |
(100017,'45000','SPM','220','Struggle, Class, And Struggle As Explored In 21st Century Theater'), | |
(100018,'45000','SPM','250','Transforming The Southern Pacific Islander Experience'), | |
(100019,'45000','SPM','301','Evolution & Socialism In The Postmodern Era'), | |
(100020,'45000','SPM','350','The Highlights Of Inner City Female Symbols'), | |
(100021,'45000','SPM','399','''The Jerry Springer Show'' In The Liberal World'), | |
(100022,'50000','BUS','101','Liberal Realism In The 21st Century'), | |
(100023,'50000','BUS','110','Masterpieces Of Inner City Japanese Paintings'), | |
(100024,'50000','BUS','120','Western Minority Ethics In The Postmodern World'), | |
(100025,'50000','BUS','150','Ad-Hoc Investigation Of Classical Chinese Art'), | |
(100026,'50000','BUS','201','The JFK Assasination As Seen In Southern Asian Sculptures'), | |
(100027,'50000','BUS','210','Synchronized Swimming In The Radical World'), | |
(100028,'50000','BUS','220','Basketweaving In The Liberated World'), | |
(100029,'50000','BUS','250','Ethnicity In Modern America'), | |
(100030,'50000','BUS','301','Multiculturalism & Intellectualism In The Postmodern World'), | |
(100031,'50000','BUS','350','The Potential Of Southern African-American Expression'), | |
(100032,'50000','BUS','399','Microbiology As Seen In Southern American Poetry'), | |
(100033,'60000','SCS','101','Brief Survey Of The Rural Minority Movement In The United States'), | |
(100034,'60000','SCS','110','The Highlights Of Daytime Soap Operas'), | |
(100035,'60000','SCS','120','Birdwatching In The Postmodern World'), | |
(100036,'60000','SCS','150','Postmodern Pre-Realism In Modern America'), | |
(100037,'60000','SCS','201','Feminist Paganism In Modern Sculptures'), | |
(100038,'60000','SCS','210','Sex, Race, And Class In The Liberal World'), | |
(100039,'60000','SCS','220','Contemporary African Thought'), | |
(100040,'60000','SCS','250','Cardplaying In Modern Society'), | |
(100041,'60000','SCS','301','Topics In The Southern African Movement In Modern Society'), | |
(100042,'60000','SCS','350','Progressive Evolution In Recent Times'), | |
(100043,'60000','SCS','399','Special Studies In The Rural Pacific Islander Campaign In The Real World'), | |
(100044,'20100','AAAS','101','Manifest Destiny As Seen In Rural Female Architecture'), | |
(100045,'20100','AAAS','110','Infidelity & Hate In The Postmodern World'), | |
(100046,'20100','AAAS','120','The Influence Of Western Pacific Islander Music On Theoretical Physics'), | |
(100047,'20100','AAAS','150','Mexican Dance Interpretation'), | |
(100048,'20100','AAAS','201','Liberated Socialism In Modern Folklore'), | |
(100049,'20100','AAAS','210','French Dance As A Progressive Genre'), | |
(100050,'20100','AAAS','220','Native American Dance As A Liberated Genre'), | |
(100051,'20100','AAAS','250','Populist Political Correctness In Modern Sculptures'), | |
(100052,'20100','AAAS','301','The Potential Of The Franco-Prussian War'), | |
(100053,'20100','AAAS','350','The History Of French Ethics'), | |
(100054,'20100','AAAS','399','Western Female Ethics In Modern Society'), | |
(100055,'20150','AS','101','Legal Theories As Interpreted In Inner City African-American Dance'), | |
(100056,'20150','AS','110','Darwinism In The American Landscape'), | |
(100057,'20150','AS','120','Conflict, Family, And Community In Modern Society'), | |
(100058,'20150','AS','150','Upper Class Hispanic Music In Modern America'), | |
(100059,'20150','AS','201','Reformist Dadaism And Liberal Equality In The Real World'), | |
(100060,'20150','AS','210','The Radical Pottery Experience In Modern America'), | |
(100061,'20150','AS','220','Ethnicity In The American Landscape'), | |
(100062,'20150','AS','250','Principles Of Feminist Political Correctness In Recent Times'), | |
(100063,'20150','AS','301','Gender, Culture, And Gender As Seen In Contemporary Theater'), | |
(100064,'20150','AS','350','The Spanish-American War As Seen In Rural Female Literature'), | |
(100065,'20150','AS','399','Gender, Work, And Conflict In Female Mythology'), | |
(100066,'20200','ANTH','101','Art Of Atheist Environmentalism'), | |
(100067,'20200','ANTH','110','Life & Trauma In The American Landscape'), | |
(100068,'20200','ANTH','120','Exploration Of ''Star Trek'''), | |
(100069,'20200','ANTH','150','Crime & Passion In The Populist World'), | |
(100070,'20200','ANTH','201','Liberated Expression'), | |
(100071,'20200','ANTH','210','Exploration Of Pre-Chinese Drama'), | |
(100072,'20200','ANTH','220','Humanist Fundamentalism In The Postmodern Era'), | |
(100073,'20200','ANTH','250','Radical Affairs: Ideas In Transition'), | |
(100074,'20200','ANTH','301','Special Studies In Harlequin Romances'), | |
(100075,'20200','ANTH','350','Southern Female Religion Since 1935'), | |
(100076,'20200','ANTH','399','The History Of Sportsmanship'), | |
(100077,'20250','APCS','101','The Effect Of Byzantine Architecture On Contemporary Oceanography'), | |
(100078,'20250','APCS','110','Selected Topics In ''Star Trek'''), | |
(100079,'20250','APCS','120','Ethnicity In Modern America'), | |
(100080,'20250','APCS','150','Populist Equality In Recent Times'), | |
(100081,'20250','APCS','201','Western Hispanic Thought Since 1837'), | |
(100082,'20250','APCS','210','Contemporary Minority Affairs & Art'), | |
(100083,'20250','APCS','220','Transforming The Urban Minority Experience'), | |
(100084,'20250','APCS','250','Feminist Endeavors'), | |
(100085,'20250','APCS','301','Minority Classical Realism Traditions In The Postmodern World'), | |
(100086,'20250','APCS','350','Postmodern Multiculturalism In The Postmodern Era'), | |
(100087,'20250','APCS','399','Ethnicity In Today''s Society'), | |
(100088,'20300','AMAT','101','Literature Of Horror In Female Dance'), | |
(100089,'20300','AMAT','110','German Music As A Aesthetic Genre'), | |
(100090,'20300','AMAT','120','Morals Of Native American Feminism'), | |
(100091,'20300','AMAT','150','Middle Eastern Expression'), | |
(100092,'20300','AMAT','201','Transforming The Suburban Japanese Experience'), | |
(100093,'20300','AMAT','210','Selected Topics In Hittite Paintings'), | |
(100094,'20300','AMAT','220','Humanist Self-Actualization In Modern Mythology'), | |
(100095,'20300','AMAT','250','Ad-Hoc Investigation Of The Italian Renaissance'), | |
(100096,'20300','AMAT','301','Masterpieces Of Suburban Minority Sculptures'), | |
(100097,'20300','AMAT','350','The Influence Of Middle Class Hispanic Poetry On Modern Postmodern Post-Romanticism'), | |
(100098,'20300','AMAT','399','Psychology Of Southern Multi-Ethnic Architecture'), | |
(100099,'20350','APHY','101','Activisim & Evolution In The American Landscape'), | |
(100100,'20350','APHY','110','Symbolism Of Humanist Paganism & Ciani''s Hypothesis'), | |
(100101,'20350','APHY','120','Concepts In Postmodern Early Romanticism In The 21st Century'), | |
(100102,'20350','APHY','150','Critical Perspectives In Babylonian Folklore'), | |
(100103,'20350','APHY','201','The Franco-Prussian War As Seen In Suburban Native American Literature'), | |
(100104,'20350','APHY','210','Multiculturalism In Today''s Society'), | |
(100105,'20350','APHY','220','Liberal Communism In Modern Music'), | |
(100106,'20350','APHY','250','Ethnicity In The Liberal World'), | |
(100107,'20350','APHY','301','Meta-Physics Of Infidelity In Atheist Art'), | |
(100108,'20350','APHY','350','The History Of Atheist Music'), | |
(100109,'20350','APHY','399','Transforming The Rural Neo-Pagan Experience'), | |
(100110,'20400','ARCH','101','Topics In Birdwatching'), | |
(100111,'20400','ARCH','110','Pacific Islander Music Interpretation'), | |
(100112,'20400','ARCH','120','Postmodern Cubism In Modern Drama'), | |
(100113,'20400','ARCH','150','Multi-Ethnic Drama As A Reformist Genre'), | |
(100114,'20400','ARCH','201','Community, Sex, And Class In The Postmodern Era'), | |
(100115,'20400','ARCH','210','Exploration Of Humanist Marxism In The American Landscape'), | |
(100116,'20400','ARCH','220','Liberal Political Correctness And Liberal Activisim In The United States'), | |
(100117,'20400','ARCH','250','Globalism In The United States'), | |
(100118,'20400','ARCH','301','Ethnicity In The United States'), | |
(100119,'20400','ARCH','350','The History Of Russian Life'), | |
(100120,'20400','ARCH','399','Eastern Pacific Islander Thought Since 1817'), | |
(100121,'20450','ART','101','Microeconomics As Expressed In Western Chinese Sculptures'), | |
(100122,'20450','ART','110','Philosophy Of The Feminist Pottery Experience'), | |
(100123,'20450','ART','120','Atheist Literature As A Radical Genre'), | |
(100124,'20450','ART','150','Special Studies In Radical Darwinism In The Postmodern World'), | |
(100125,'20450','ART','201','Feminist Feminism And Humanist Poverty In The 21st Century'), | |
(100126,'20450','ART','210','The Effect Of Inner City Female Art On 21st Century Feminist Marxism'), | |
(100127,'20450','ART','220','Suburban Neo-Pagan Issues In The 21st Century'), | |
(100128,'20450','ART','250','Colloquium In Populist Communism & The Gamache-Freeman Postulate'), | |
(100129,'20450','ART','301','Survey Of Hittite Poetry'), | |
(100130,'20450','ART','350','Elbonian Life'), | |
(100131,'20450','ART','399','Native American Art As A Feminist Genre'), | |
(100132,'20500','ASTR','101','Synchronized Swimming In The American Landscape'), | |
(100133,'20500','ASTR','110','Darwinism & Realism In Modern Society'), | |
(100134,'20500','ASTR','120','Sex, Conflict, And Class In Minority Drama'), | |
(100135,'20500','ASTR','150','Conflict, Struggle, And Race In African Sculptures'), | |
(100136,'20500','ASTR','201','Psychology Of Horror In Chinese Art'), | |
(100137,'20500','ASTR','210','Chinese Architecture As A Reformist Genre'), | |
(100138,'20500','ASTR','220','Critical Perspectives In Urban American Religion'), | |
(100139,'20500','ASTR','250','Contemporary Elbonian Religion'), | |
(100140,'20500','ASTR','301','Urban Japanese Values In Recent Times'), | |
(100141,'20500','ASTR','350','Horror & Crime In The 21st Century'), | |
(100142,'20500','ASTR','399','Australian Affairs: Myth & Reality'), | |
(100143,'20550','BIOL','101','The Consequences Of Female Scientists On Contemporary Microeconomics'), | |
(100144,'20550','BIOL','110','''Star Wars'' In The Postmodern World'), | |
(100145,'20550','BIOL','120','Transforming The Liberated Female Experience'), | |
(100146,'20550','BIOL','150','Darwinism In The Feminist World'), | |
(100147,'20550','BIOL','201','Age, Community, And Culture In Female Poetry'), | |
(100148,'20550','BIOL','210','Postmodern Equality In Modern Mythology'), | |
(100149,'20550','BIOL','220','Contemporary Polytheistic Art'), | |
(100150,'20550','BIOL','250','Contemporary European Thought & Literature'), | |
(100151,'20550','BIOL','301','Special Studies In Southern Multi-Ethnic Paintings'), | |
(100152,'20550','BIOL','350','Special Topics In Postmodern Darwinism & Duke''s Theorem'), | |
(100153,'20550','BIOL','399','Populist Darwinism: A Process Approach'), | |
(100154,'20600','BPHY','101','Transforming The Middle Class Multi-Ethnic Experience'), | |
(100155,'20600','BPHY','110','Liberated Environmentalism In Recent Times'), | |
(100156,'20600','BPHY','120','Family, Class, And Struggle In European Sculptures'), | |
(100157,'20600','BPHY','150','Western American Perspectives In The Modern Age'), | |
(100158,'20600','BPHY','201','Psychology Of Sportsmanship'), | |
(100159,'20600','BPHY','210','Middle Eastern Thought'), | |
(100160,'20600','BPHY','220','Race, Age, And Community In The Modern Age'), | |
(100161,'20600','BPHY','250','The Effect Of Upper Class European Sculptures On Modern Reformist Environmentalism'), | |
(100162,'20600','BPHY','301','Aesthetic Poverty In Modern America'), | |
(100163,'20600','BPHY','350','Aesthetic Literature'), | |
(100164,'20600','BPHY','399','Foundations Of Post-Dadaism & Early Cubism In The American Landscape'), | |
(100165,'20650','BIOS','101','Latvian Symbols'), | |
(100166,'20650','BIOS','110','Contemporary Minority Ideas: Modern Ideas'), | |
(100167,'20650','BIOS','120','Colloquium In Early Babylonian Dance'), | |
(100168,'20650','BIOS','150','Brief Survey Of Aztec Mythology'), | |
(100169,'20650','BIOS','201','Images Of Atheist Darwinism'), | |
(100170,'20650','BIOS','210','Selected Topics In Professional Sports'), | |
(100171,'20650','BIOS','220','Masterpieces Of Urban Atheist Paintings'), | |
(100172,'20650','BIOS','250','Transforming The Upper Class Multi-Ethnic Experience'), | |
(100173,'20650','BIOS','301','Values Of French Fundamentalism'), | |
(100174,'20650','BIOS','350','Populist Early Cubism In Modern Dance'), | |
(100175,'20650','BIOS','399','Transforming The Liberated Female Experience'), | |
(100176,'20700','CELT','101','Psychology Of Rural Latino Images'), | |
(100177,'20700','CELT','110','Special Studies In Pre-Chinese Dance'), | |
(100178,'20700','CELT','120','Greek Drama As The Roots Of Contemporary Planar Geometry'), | |
(100179,'20700','CELT','150','Populist Thought: The Untold Story'), | |
(100180,'20700','CELT','201','The Culinary Experience In The Postmodern World'), | |
(100181,'20700','CELT','210','The Italian Renaissance As Analyzed In Western Female Drama'), | |
(100182,'20700','CELT','220','Selected Topics In The Culinary Experience'), | |
(100183,'20700','CELT','250','American Poetry Interpretation'), | |
(100184,'20700','CELT','301','Liberated German Society In Modern America'), | |
(100185,'20700','CELT','350','Images Of Native American Multiculturalism'), | |
(100186,'20700','CELT','399','Theoretical Physics As Seen In Reformist Japanese Music'), | |
(100187,'20750','CHEM','101','American Paintings Interpretation'), | |
(100188,'20750','CHEM','110','The Highlights Of Suicide In American Folklore'), | |
(100189,'20750','CHEM','120','The Effect Of Inner City Native American Music On Contemporary Populist Poverty'), | |
(100190,'20750','CHEM','150','Research Capstone In Suburban Chinese Art'), | |
(100191,'20750','CHEM','201','Shakespeare''s Comedies In Modern Society'), | |
(100192,'20750','CHEM','210','Postmodern Lifestyles'), | |
(100193,'20750','CHEM','220','Ethnicity In Today''s Society'), | |
(100194,'20750','CHEM','250','Transforming The Rural Latvian Experience'), | |
(100195,'20750','CHEM','301','Contemporary Russian Values & Symbols'), | |
(100196,'20750','CHEM','350','Exploration Of Byzantine Sculptures'), | |
(100197,'20750','CHEM','399','Research Capstone In ''Star Wars'''), | |
(100198,'20800','CLSS','101','Music Of Chinese Multiculturalism'), | |
(100199,'20800','CLSS','110','Topics In Elbonian Perspectives In The Postmodern World'), | |
(100200,'20800','CLSS','120','Western Atheist Culture Since 1863'), | |
(100201,'20800','CLSS','150','Middle Eastern Architecture Interpretation'), | |
(100202,'20800','CLSS','201','Birdwatching In The Liberated World'), | |
(100203,'20800','CLSS','210','Scandinavian Early Cubism Art In The 21st Century'), | |
(100204,'20800','CLSS','220','Liberal Civilization'), | |
(100205,'20800','CLSS','250','Dynamic Exploration Of Aesthetic Paganism & The Geertsma-Caldwell Principle'), | |
(100206,'20800','CLSS','301','Rural Sociology As Seen In Urban Neo-Pagan Mythology'), | |
(100207,'20800','CLSS','350','Ad-Hoc Investigation Of The Humanist Mexican Transformation In Modern Society'), | |
(100208,'20800','CLSS','399','Retrospectives Of Female Intellectualism'), | |
(100209,'20850','CPLT','101','Eastern Elbonian Perspectives Since 1820'), | |
(100210,'20850','CPLT','110','Quantitative Methods In Trauma In Polytheistic Art'), | |
(100211,'20850','CPLT','120','The Archetype Of The Journey In Western Female Mythology'), | |
(100212,'20850','CPLT','150','Contemporary Minority Thought & Morals'), | |
(100213,'20850','CPLT','201','Latino Romanticism Culture In The American Landscape'), | |
(100214,'20850','CPLT','210','Radical Early Cubism And Reformist Feminism In Recent Times'), | |
(100215,'20850','CPLT','220','Diversity In The Postmodern World'), | |
(100216,'20850','CPLT','250','The Consequences Of Sumerian Music On Modern Humanist Intellectualism'), | |
(100217,'20850','CPLT','301','Liberated Traditions: From McLeod To Dick'), | |
(100218,'20850','CPLT','350','Postmodern Romanticism In The Aesthetic World'), | |
(100219,'20850','CPLT','399','Liberal Early Cubism In The 21st Century'), | |
(100220,'20900','CS','101','Introduction To Computing Theory Issues In Recent Times'), | |
(100221,'20900','CS','110','Culture Of Computing Theory Programming: From Burney To Lindquist'), | |
(100222,'20900','CS','120','Transforming The Security-Oriented Experience'), | |
(100223,'20900','CS','150','Meta-Physics Of Engineering Object-Oriented Folklore'), | |
(100224,'20900','CS','201','Advanced Programming: An Odyssey Of Exploration'), | |
(100225,'20900','CS','210','Computing Theory Ethics: From Sears To Couillard'), | |
(100226,'20900','CS','220','Theory & Post-Theory In Quantum Computing'), | |
(100227,'20900','CS','250','Advanced Object-Oriented Techniques In The Real World'), | |
(100228,'20900','CS','301','Concepts In Computing Theory & The Benanti Postulate'), | |
(100229,'20900','CS','350','Networking Object-Oriented Traditions Since 1966'), | |
(100230,'20900','CS','399','The Beginning Dimension Of Forensics Computing Theory'), | |
(100231,'20950','PSCI','101','Masterpieces Of Feminist Neo-Pagan Mythology'), | |
(100232,'20950','PSCI','110','Populist Marxism In The American Landscape'), | |
(100233,'20950','PSCI','120','Minority Mythology As A Aesthetic Genre'), | |
(100234,'20950','PSCI','150','Senior Seminar In Middle Class Russian Drama'), | |
(100235,'20950','PSCI','201','Radical Feminism In The Aesthetic World'), | |
(100236,'20950','PSCI','210','Ethnicity In Today''s Society'), | |
(100237,'20950','PSCI','220','Work, Gender, And Race As Explored In 20th Century Film'), | |
(100238,'20950','PSCI','250','The Influence Of Inner City Female Drama On Contemporary Liberated Environmentalism'), | |
(100239,'20950','PSCI','301','Theories Of Death In Latvian Sculptures'), | |
(100240,'20950','PSCI','350','Humanist Equality And Aesthetic Paganism In The Populist World'), | |
(100241,'20950','PSCI','399','Psychology Of Liberated Hispanic Society'), | |
(100242,'21000','EALC','101','Transforming The Western Female Experience'), | |
(100243,'21000','EALC','110','Work, Struggle, And Culture In The Postmodern Era'), | |
(100244,'21000','EALC','120','Symbolism Of Basketweaving'), | |
(100245,'21000','EALC','150','Intellectualism & Environmentalism In Modern Society'), | |
(100246,'21000','EALC','201','The Effect Of Byzantine Mythology On Inner City Native American Sculptures In The Postmodern Era'), | |
(100247,'21000','EALC','210','Selected Topics In Multiculturalism & Multiculturalism In The Populist World'), | |
(100248,'21000','EALC','220','Special Topics In The Eastern Japanese Evolution In The Postmodern World'), | |
(100249,'21000','EALC','250','American Thought'), | |
(100250,'21000','EALC','301','Populist Political Correctness And Humanist Diversity In The Real World'), | |
(100251,'21000','EALC','350','The Franco-Prussian War As Interpreted In Suburban African Mythology'), | |
(100252,'21000','EALC','399','Postmodern Diversity And Aesthetic Fundamentalism In Modern America'), | |
(100253,'21050','ECOM','101','Contemporary Latino Thought'), | |
(100254,'21050','ECOM','110','Urban American Civilization Since 1885'), | |
(100255,'21050','ECOM','120','German Dance Interpretation'), | |
(100256,'21050','ECOM','150','Advanced Topics In African Expression In Modern America'), | |
(100257,'21050','ECOM','201','Feminist Morals: Ideas In Conflict'), | |
(100258,'21050','ECOM','210','Female Architecture As A Progressive Genre'), | |
(100259,'21050','ECOM','220','Contemporary German Lifestyles'), | |
(100260,'21050','ECOM','250','Progressive Marxism And Feminist Intellectualism In The Postmodern World'), | |
(100261,'21050','ECOM','301','Masterpieces Of Liberated Latino Literature'), | |
(100262,'21050','ECOM','350','Critical Perspectives In Postmodern Self-Actualization & The Dulany-Mutel Law'), | |
(100263,'21050','ECOM','399','Suicide & Love In The 21st Century'), | |
(100264,'21100','ENG','101','The Humanist Dimension Of Liberated Italian Mythology'), | |
(100265,'21100','ENG','110','Masterpieces Of Southern Native American Architecture'), | |
(100266,'21100','ENG','120','The Influence Of Eastern Latino Sculptures On Oceanography'), | |
(100267,'21100','ENG','150','Dynamic Exploration Of World War I'), | |
(100268,'21100','ENG','201','Endeavors Of Multi-Ethnic Fundamentalism'), | |
(100269,'21100','ENG','210','Ethics Of Russian Self-Actualization'), | |
(100270,'21100','ENG','220','Multi-Ethnic Studies In Multi-Ethnic Life'), | |
(100271,'21100','ENG','250','Liberal Endeavors: The Untold Story'), | |
(100272,'21100','ENG','301','Quantitative Methods In Westward Expansion'), | |
(100273,'21100','ENG','350','Passion & Hate In Modern Society'), | |
(100274,'21100','ENG','399','Evolution & Environmentalism In The Postmodern Era'), | |
(100275,'21150','ENGL','101','The Culinary Experience In The Modern Age'), | |
(100276,'21150','ENGL','110','The African Diaspora As Explored In Urban African-American Music'), | |
(100277,'21150','ENGL','120','Liberated Multiculturalism In Modern Society'), | |
(100278,'21150','ENGL','150','The Impact Of Pacific Islander Thinkers On Contemporary Quantum Mechanics'), | |
(100279,'21150','ENGL','201','Humanist Landscapes'), | |
(100280,'21150','ENGL','210','Colloquium In Progressive Socialism & The Brumley-Salles-Ortega Principle'), | |
(100281,'21150','ENGL','220','The Harlem Renaissance As Analyzed In Western Polytheistic Paintings'), | |
(100282,'21150','ENGL','250','The Consequences Of Sumerian Mythology On 20th Century Postmodern Early Realism'), | |
(100283,'21150','ENGL','301','Humanist Socialism In Recent Times'), | |
(100284,'21150','ENGL','350','Western American Art In The United States'), | |
(100285,'21150','ENGL','399','Ethnicity In Today''s Society'), | |
(100286,'21200','ENV','101','Synchronized Swimming In Modern America'), | |
(100287,'21200','ENV','110','Symbolism Of Cardplaying'), | |
(100288,'21200','ENV','120','Critical Perspectives In World War II'), | |
(100289,'21200','ENV','150','The End Of The World'), | |
(100290,'21200','ENV','201','Globalism In The 21st Century'), | |
(100291,'21200','ENV','210','The Reformist Dimension Of Middle Class Middle Eastern Paintings'), | |
(100292,'21200','ENV','220','Colloquium In Crime In Female Drama'), | |
(100293,'21200','ENV','250','Concepts In Birdwatching'), | |
(100294,'21200','ENV','301','Postmodern Ideas: A Journey Of Discovery'), | |
(100295,'21200','ENV','350','Research Capstone In Upper Class Scandinavian Mythology'), | |
(100296,'21200','ENV','399','Urban Neo-Pagan Symbols Since 1876'), | |
(100297,'21250','WRI','101','African Drama As A Radical Genre'), | |
(100298,'21250','WRI','110','Contemporary Female Landscapes'), | |
(100299,'21250','WRI','120','Early Dadaism In The American Landscape'), | |
(100300,'21250','WRI','150','Aesthetic Paganism'), | |
(100301,'21250','WRI','201','Exploration Of Horror In European Folklore'), | |
(100302,'21250','WRI','210','Selected Topics In Rural Chinese Ethics'), | |
(100303,'21250','WRI','220','Culture, Gender, And Sex In The Postmodern Era'), | |
(100304,'21250','WRI','250','Radical Traditions: Contemporary Ideas'), | |
(100305,'21250','WRI','301','Critical Perspectives In Early Greek Art'), | |
(100306,'21250','WRI','350','Liberal Political Correctness In Modern Paintings'), | |
(100307,'21250','WRI','399','Ethnicity In The Real World'), | |
(100308,'21300','GERM','101','Microeconomics As Interpreted In Inner City Chinese Folklore'), | |
(100309,'21300','GERM','110','The War Of 1812 As Interpreted In Urban Mexican Art'), | |
(100310,'21300','GERM','120','Perspectives In Hate In Middle Eastern Poetry'), | |
(100311,'21300','GERM','150','Multi-Ethnic Literature Interpretation'), | |
(100312,'21300','GERM','201','Paganism In Today''s Society'), | |
(100313,'21300','GERM','210','Ethnicity In Recent Times'), | |
(100314,'21300','GERM','220','Contemporary Scandinavian Religion & Art'), | |
(100315,'21300','GERM','250','Multi-Ethnic Socialism Retrospectives In The Postmodern World'), | |
(100316,'21300','GERM','301','Principles Of Middle Class Hispanic Dance'), | |
(100317,'21300','GERM','350','Selected Topics In Western Multi-Ethnic Dance'), | |
(100318,'21300','GERM','399','Liberal Self-Actualization And Liberal Early Romanticism In Today''s Society'), | |
(100319,'21350','GHP','101','Concepts In Liberated Native American Literature'), | |
(100320,'21350','GHP','110','The Effect Of Eastern Pacific Islander Paintings On Political Science'), | |
(100321,'21350','GHP','120','Scandinavian Drama As A Liberated Genre'), | |
(100322,'21350','GHP','150','Quantitative Methods In Feminist Intellectualism & The Hayes-Ogier Postulate'), | |
(100323,'21350','GHP','201','Family, Class, And Work In The Postmodern World'), | |
(100324,'21350','GHP','210','The Influence Of Hittite Folklore On 20th Century Rural Sociology'), | |
(100325,'21350','GHP','220','The Symbolism Of The Quest Paradigm In Suburban Pacific Islander Mythology'), | |
(100326,'21350','GHP','250','The Meaning Of Life As Seen In Upper Class Scandinavian Poetry'), | |
(100327,'21350','GHP','301','Endeavors Of Asian Early Realism'), | |
(100328,'21350','GHP','350','The Feminist Dimension Of Eastern Minority Music'), | |
(100329,'21350','GHP','399','Advanced Topics In Feminist Feminism In The Modern Age'), | |
(100330,'21400','GVMT','101','Age, Community, And Work In Modern America'), | |
(100331,'21400','GVMT','110','Critical Perspectives In The Inner City Chinese Movement In The Aesthetic World'), | |
(100332,'21400','GVMT','120','Classical Romanticism & Fundamentalism In The Radical World'), | |
(100333,'21400','GVMT','150','Symbolism Of The African Diaspora'), | |
(100334,'21400','GVMT','201','Cardplaying In The Modern Age'), | |
(100335,'21400','GVMT','210','Progressive Issues'), | |
(100336,'21400','GVMT','220','Meta-Physics Of Italian Ideas In The United States'), | |
(100337,'21400','GVMT','250','Foundations Of Inner City Minority Dance'), | |
(100338,'21400','GVMT','301','The Potential Of Japanese Society In The American Landscape'), | |
(100339,'21400','GVMT','350','Liberal Activisim: A Journey Of Thought'), | |
(100340,'21400','GVMT','399','Contemporary Multi-Ethnic Retrospectives & Expression'), | |
(100341,'21450','HIST','101','Conflict, Conflict, And Family In Today''s Society'), | |
(100342,'21450','HIST','110','Literature Of Pre-Byzantine Paintings'), | |
(100343,'21450','HIST','120','The Meaning Of Middle Class Atheist Dance'), | |
(100344,'21450','HIST','150','Colloquium In Self-Actualization & Socialism In Modern America'), | |
(100345,'21450','HIST','201','Colloquium In Aesthetic Pre-Realism & Kemp''s Theory'), | |
(100346,'21450','HIST','210','Computer Science As Explored In Eastern Mexican Folklore'), | |
(100347,'21450','HIST','220','Perspectives In The Franco-Prussian War'), | |
(100348,'21450','HIST','250','African-American Thought'), | |
(100349,'21450','HIST','301','Ethnicity In The American Landscape'), | |
(100350,'21450','HIST','350','Upper Class Mexican Issues In The Liberal World'), | |
(100351,'21450','HIST','399','Liberal Environmentalism In Modern Literature'), | |
(100352,'21500','LIT','101','Liberal Poverty In Modern Architecture'), | |
(100353,'21500','LIT','110','German Music As A Liberal Genre'), | |
(100354,'21500','LIT','120','Psychology Of Urban Female Images'), | |
(100355,'21500','LIT','150','Asian Life: A Paradigm Shift'), | |
(100356,'21500','LIT','201','Philosophy Of Crime In Middle Eastern Architecture'), | |
(100357,'21500','LIT','210','Dynamic Exploration Of Post-Hittite Folklore'), | |
(100358,'21500','LIT','220','Cross-Cultural Studies In Elbonian Symbols'), | |
(100359,'21500','LIT','250','Neo-Pagan Architecture Interpretation'), | |
(100360,'21500','LIT','301','Foundations Of Rural Australian Retrospectives'), | |
(100361,'21500','LIT','350','Transforming The Rural Female Experience'), | |
(100362,'21500','LIT','399','Masterpieces Of Suburban Italian Literature'), | |
(100363,'21550','HUM','101','Progressive Darwinism In The Progressive World'), | |
(100364,'21550','HUM','110','Anthropology As Interpreted In Urban Atheist Mythology'), | |
(100365,'21550','HUM','120','Ethnicity In The 21st Century'), | |
(100366,'21550','HUM','150','Latvian Dadaism Culture In The Modern Age'), | |
(100367,'21550','HUM','201','Struggle, Politics, And Community As Explored In 21st Century Fiction'), | |
(100368,'21550','HUM','210','Microeconomics As Expressed In Western Mexican Literature'), | |
(100369,'21550','HUM','220','Age, Gender, And Sex In American Poetry'), | |
(100370,'21550','HUM','250','Contemporary Middle Eastern Society & Society'), | |
(100371,'21550','HUM','301','Multiculturalism In Modern America'), | |
(100372,'21550','HUM','350','Liberal Classical Realism In Modern Art'), | |
(100373,'21550','HUM','399','Anthropology As Expressed In Middle Class Multi-Ethnic Mythology'), | |
(100374,'21600','LING','101','Psychology Of Eastern Neo-Pagan Mythology'), | |
(100375,'21600','LING','110','Sportsmanship In Recent Times'), | |
(100376,'21600','LING','120','Reformist Feminism'), | |
(100377,'21600','LING','150','Concepts In Inner City Elbonian Traditions'), | |
(100378,'21600','LING','201','Cardplaying In The Postmodern Era'), | |
(100379,'21600','LING','210','Multi-Ethnic Intellectualism Culture In Modern Society'), | |
(100380,'21600','LING','220','''Seinfeld'' In Modern America'), | |
(100381,'21600','LING','250','Ethnicity In The Populist World'), | |
(100382,'21600','LING','301','Poverty In The United States'), | |
(100383,'21600','LING','350','Passion & Trauma In Today''s Society'), | |
(100384,'21600','LING','399','Activisim In The American Landscape'), | |
(100385,'21650','MAT','101','Liberal Classical Dadaism And Aesthetic Diversity In The Postmodern World'), | |
(100386,'21650','MAT','110','The History Of Atheist Society'), | |
(100387,'21650','MAT','120','Principles Of Eastern Hispanic Sculptures'), | |
(100388,'21650','MAT','150','Contemporary Australian Images'), | |
(100389,'21650','MAT','201','Radical Environmentalism In Recent Times'), | |
(100390,'21650','MAT','210','Equality & Self-Actualization In Modern Society'), | |
(100391,'21650','MAT','220','Anger & Anger In The American Landscape'), | |
(100392,'21650','MAT','250','Contemporary Russian Values'), | |
(100393,'21650','MAT','301','Culture, Family, And Family In Female Folklore'), | |
(100394,'21650','MAT','350','Symbolism Of ''Seinfeld'''), | |
(100395,'21650','MAT','399','Transforming The Middle Class Multi-Ethnic Experience'), | |
(100396,'21700','MEDS','101','Literature Of The Eastern Hispanic Revolution In The Modern Age'), | |
(100397,'21700','MEDS','110','Masterpieces Of Southern Chinese Mythology'), | |
(100398,'21700','MEDS','120','Here Come The Mass Extinctions'), | |
(100399,'21700','MEDS','150','Mythology & Drama In The 21st Century'), | |
(100400,'21700','MEDS','201','Contemporary African-American Thought'), | |
(100401,'21700','MEDS','210','Native American Symbols'), | |
(100402,'21700','MEDS','220','Family, Class, And Gender In The Real World'), | |
(100403,'21700','MEDS','250','The Harlem Renaissance As Interpreted In Inner City Female Paintings'), | |
(100404,'21700','MEDS','301','Philosophy Of Synchronized Swimming'), | |
(100405,'21700','MEDS','350','Ethnicity In Modern America'), | |
(100406,'21700','MEDS','399','Masterpieces Of Urban European Literature'), | |
(100407,'21750','MES','101','Dadaism & Poverty In The Feminist World'), | |
(100408,'21750','MES','110','Politics, Race, And Struggle In Native American Literature'), | |
(100409,'21750','MES','120','The Reformist Dimension Of Eastern Latvian Drama'), | |
(100410,'21750','MES','150','The History Of Pre-Chinese Art'), | |
(100411,'21750','MES','201','The Meaning Of Reformist Political Correctness & The Olesen Theory'), | |
(100412,'21750','MES','210','Contemporary Multi-Ethnic Ideas & Society'), | |
(100413,'21750','MES','220','Love & Trauma In The United States'), | |
(100414,'21750','MES','250','The Influence Of Mexican Scientists On 21st Century Computer Science'), | |
(100415,'21750','MES','301','Liberal Evolution In Today''s Society'), | |
(100416,'21750','MES','350','Neo-Pagan Poetry Interpretation'), | |
(100417,'21750','MES','399','Work, Gender, And Status In German Architecture'), | |
(100418,'21800','MCB','101','Psychology Of Political Correctness & Poverty In The American Landscape'), | |
(100419,'21800','MCB','110','Contemporary Russian Retrospectives'), | |
(100420,'21800','MCB','120','Paganism & Equality In Today''s Society'), | |
(100421,'21800','MCB','150','Concepts In Japanese Retrospectives In The Postmodern World'), | |
(100422,'21800','MCB','201','Chinese Traditions: The Untold Story'), | |
(100423,'21800','MCB','210','Political Science As Analyzed In Suburban Multi-Ethnic Art'), | |
(100424,'21800','MCB','220','The Archetype Of The Rite Of Passage In Upper Class Minority Mythology'), | |
(100425,'21800','MCB','250','Politics, Culture, And Community In African Sculptures'), | |
(100426,'21800','MCB','301','Special Studies In Global Warming'), | |
(100427,'21800','MCB','350','Special Studies In Female Ideas In The Modern Age'), | |
(100428,'21800','MCB','399','Contemporary African Issues & Retrospectives'), | |
(100429,'21850','MUS','101','The Universe Of Planetwide Climatic Change'), | |
(100430,'21850','MUS','110','Society Of Minority Feminism'), | |
(100431,'21850','MUS','120','The History Of Russian Expression In The Postmodern World'), | |
(100432,'21850','MUS','150','The Populist Dimension Of Reformist Female Art'), | |
(100433,'21850','MUS','201','Passion & Trauma In Recent Times'), | |
(100434,'21850','MUS','210','Cross-Cultural Perspectives On African Ethics'), | |
(100435,'21850','MUS','220','Dynamic Exploration Of Classic Incan Literature'), | |
(100436,'21850','MUS','250','Transforming The Urban African Experience'), | |
(100437,'21850','MUS','301','The Aesthetic Dimension Of Liberated Atheist Paintings'), | |
(100438,'21850','MUS','350','Selected Topics In Pre-Hittite Mythology'), | |
(100439,'21850','MUS','399','Critical Perspectives In Radical Paganism In Recent Times'), | |
(100440,'21900','NELC','101','Advanced Topics In Rural Italian Endeavors'), | |
(100441,'21900','NELC','110','Concepts In Liberated Female Culture'), | |
(100442,'21900','NELC','120','Research Capstone In Professional Sports'), | |
(100443,'21900','NELC','150','Quantitative Methods In Populist Equality & Edinger''s Conjecture'), | |
(100444,'21900','NELC','201','Inner City Female Culture In The 21st Century'), | |
(100445,'21900','NELC','210','Selected Topics In Native American Civilization In The Postmodern Era'), | |
(100446,'21900','NELC','220','Radical Classical Cubism'), | |
(100447,'21900','NELC','250','Colloquium In Pre-Byzantine Mythology'), | |
(100448,'21900','NELC','301','Feminist Activisim: Ideas In Conflict'), | |
(100449,'21900','NELC','350','Reformist Political Correctness In Modern Music'), | |
(100450,'21900','NELC','399','Contemporary Hispanic Perspectives & Traditions'), | |
(100451,'21950','PHIL','101','Scandinavian Paintings Interpretation'), | |
(100452,'21950','PHIL','110','Birdwatching In The United States'), | |
(100453,'21950','PHIL','120','Colloquium In Hate In Japanese Paintings'), | |
(100454,'21950','PHIL','150','Ethnicity In Recent Times'), | |
(100455,'21950','PHIL','201','Foundations Of Upper Class Scandinavian Literature'), | |
(100456,'21950','PHIL','210','Postmodern Evolution In The Modern Age'), | |
(100457,'21950','PHIL','220','Upper Class Chinese Symbols Since 1944'), | |
(100458,'21950','PHIL','250','The Universe Of Aquatic Ballet'), | |
(100459,'21950','PHIL','301','Liberal Pre-Romanticism'), | |
(100460,'21950','PHIL','350','Humanist Marxism'), | |
(100461,'21950','PHIL','399','Senior Seminar In Basketweaving'), | |
(100462,'22000','PHY','101','Survey Of Globalism & Early Romanticism In The Modern Age'), | |
(100463,'22000','PHY','110','The Meaning Of Populist Classical Cubism In The United States'), | |
(100464,'22000','PHY','120','Conflict, Culture, And Race In African-American Paintings'), | |
(100465,'22000','PHY','150','Australian Folklore As A Radical Genre'), | |
(100466,'22000','PHY','201','Meta-Physics Of Pre-Renaissance Sculptures'), | |
(100467,'22000','PHY','210','The Feminist Dimension Of Radical Italian Paintings'), | |
(100468,'22000','PHY','220','Foundations Of Radical Minority Paintings'), | |
(100469,'22000','PHY','250','Culture, Culture, And Work In Italian Sculptures'), | |
(100470,'22000','PHY','301','Polytheistic Culture'), | |
(100471,'22000','PHY','350','Aesthetic Life'), | |
(100472,'22000','PHY','399','European Drama Interpretation'), | |
(100473,'22050','POLI','101','Neo-Pagan Life'), | |
(100474,'22050','POLI','110','The JFK Assasination As Interpreted In Rural American Folklore'), | |
(100475,'22050','POLI','120','Topics In Radical Intellectualism & The Drath Principle'), | |
(100476,'22050','POLI','150','Community, Politics, And Race In Scandinavian Architecture'), | |
(100477,'22050','POLI','201','Latino Endeavors: Ideas In Conflict'), | |
(100478,'22050','POLI','210','Contemporary Female Values & Literature'), | |
(100479,'22050','POLI','220','Masterpieces Of Middle Class Russian Literature'), | |
(100480,'22050','POLI','250','Radical Environmentalism In Modern Folklore'), | |
(100481,'22050','POLI','301','Postmodern Multiculturalism In Modern Music'), | |
(100482,'22050','POLI','350','Humanist Evolution'), | |
(100483,'22050','POLI','399','The Universe Of African-American Ideas In The Real World'), | |
(100484,'22100','PSYC','101','Synchronized Swimming In The Populist World'), | |
(100485,'22100','PSYC','110','Foundations Of ''Seinfeld'''), | |
(100486,'22100','PSYC','120','Concepts In Liberal Evolution In The Modern Age'), | |
(100487,'22100','PSYC','150','Brief Survey Of Hate In Hispanic Folklore'), | |
(100488,'22100','PSYC','201','Contemporary African-American Retrospectives'), | |
(100489,'22100','PSYC','210','Special Studies In Death In Japanese Literature'), | |
(100490,'22100','PSYC','220','Populist Marxism And Humanist Socialism In The American Landscape'), | |
(100491,'22100','PSYC','250','Manifest Destiny As Seen In Liberated European Dance'), | |
(100492,'22100','PSYC','301','Theories Of The French Revolution'), | |
(100493,'22100','PSYC','350','Quantitative Methods In Aesthetic Paganism In The Real World'), | |
(100494,'22100','PSYC','399','Quantitative Methods In Horror In American Art'), | |
(100495,'22150','REL','101','Exploration Of Liberal Environmentalism & The Fell-Wright Conjecture'), | |
(100496,'22150','REL','110','Darwinism & Self-Actualization In The Aesthetic World'), | |
(100497,'22150','REL','120','Populist Marxism In Modern Sculptures'), | |
(100498,'22150','REL','150','Here Come The Mass Extinctions'), | |
(100499,'22150','REL','201','The French Revolution As Seen In Eastern German Paintings'), | |
(100500,'22150','REL','210','The Effect Of Female Scientists On 20th Century Extraterrestrial Biology'), | |
(100501,'22150','REL','220','Anger & Trauma In The Postmodern Era'), | |
(100502,'22150','REL','250','Class, Class, And Gender In The American Landscape'), | |
(100503,'22150','REL','301','Postmodern Socialism And Populist Marxism In The Postmodern Era'), | |
(100504,'22150','REL','350','The History Of Marxism & Self-Actualization In The 21st Century'), | |
(100505,'22150','REL','399','Reformist Art: Different Points Of View'), | |
(100506,'22200','ROML','101','Psychology Of Classical Mayan Paintings'), | |
(100507,'22200','ROML','110','The Symbolism Of The Journey In Urban European Architecture'), | |
(100508,'22200','ROML','120','Liberal Religion: Paradigms and Synergy'), | |
(100509,'22200','ROML','150','Rural African-American Retrospectives In Recent Times'), | |
(100510,'22200','ROML','201','Radical Marxism And Liberal Diversity In The Postmodern World'), | |
(100511,'22200','ROML','210','French Literature Interpretation'), | |
(100512,'22200','ROML','220','The Meaning Of ''The X-Files'''), | |
(100513,'22200','ROML','250','The Humanist Pottery Experience In The Postmodern World'), | |
(100514,'22200','ROML','301','Populist Paganism In Modern Poetry'), | |
(100515,'22200','ROML','350','Topics In Early Etruscan Sculptures'), | |
(100516,'22200','ROML','399','Ideas Of Polytheistic Marxism'), | |
(100517,'22250','SLAV','101','Ad-Hoc Investigation Of Urban German Mythology'), | |
(100518,'22250','SLAV','110','The War Of 1812 As Explored In Inner City Japanese Art'), | |
(100519,'22250','SLAV','120','The Radical Pottery Experience In Modern America'), | |
(100520,'22250','SLAV','150','Globalism In The 21st Century'), | |
(100521,'22250','SLAV','201','The Culinary Arts In The Postmodern World'), | |
(100522,'22250','SLAV','210','The Populist Dimension Of Inner City Scandinavian Mythology'), | |
(100523,'22250','SLAV','220','Polytheistic Paintings As A Liberal Genre'), | |
(100524,'22250','SLAV','250','Culture, Culture, And Status In Pacific Islander Paintings'), | |
(100525,'22250','SLAV','301','Multi-Ethnic Darwinism Affairs In Modern Society'), | |
(100526,'22250','SLAV','350','Professional Sports In The Liberal World'), | |
(100527,'22250','SLAV','399','Advanced Topics In Asian Civilization In Today''s Society'), | |
(100528,'22300','SOCS','101','Female Mythology Interpretation'), | |
(100529,'22300','SOCS','110','African Self-Actualization Literature In Modern Society'), | |
(100530,'22300','SOCS','120','Principles Of Infidelity In Atheist Mythology'), | |
(100531,'22300','SOCS','150','Lifestyles Of Female Globalism'), | |
(100532,'22300','SOCS','201','Exploration Of Renaissance Music'), | |
(100533,'22300','SOCS','210','The Highlights Of The Liberal Pottery Experience'), | |
(100534,'22300','SOCS','220','Native American Perspectives'), | |
(100535,'22300','SOCS','250','Contemporary Pacific Islander Culture & Thought'), | |
(100536,'22300','SOCS','301','Classical Cubism & Equality In The Postmodern Era'), | |
(100537,'22300','SOCS','350','Globalism In The United States'), | |
(100538,'22300','SOCS','399','Middle Eastern Poverty Issues In Modern America'), | |
(100539,'22350','SOC','101','The Feminist Dimension Of Liberated Female Poetry'), | |
(100540,'22350','SOC','110','Atheist Paintings Interpretation'), | |
(100541,'22350','SOC','120','Values Of European Marxism'), | |
(100542,'22350','SOC','150','Postmodern Diversity In Modern Dance'), | |
(100543,'22350','SOC','201','Rural Hispanic Issues Since 1901'), | |
(100544,'22350','SOC','210','Age, Age, And Conflict In Middle Eastern Literature'), | |
(100545,'22350','SOC','220','Psychology Of Southern African-American Mythology'), | |
(100546,'22350','SOC','250','Inner City European Life Since 1908'), | |
(100547,'22350','SOC','301','French Poverty Ethics In The United States'), | |
(100548,'22350','SOC','350','Quantitative Methods In Daytime Soap Operas'), | |
(100549,'22350','SOC','399','Psychology Of Suburban Female Issues'), | |
(100550,'22400','SAS','101','Research Capstone In Progressive Latino Landscapes'), | |
(100551,'22400','SAS','110','Feminist Evolution'), | |
(100552,'22400','SAS','120','The Liberated Dimension Of Suburban Atheist Literature'), | |
(100553,'22400','SAS','150','Shakespeare''s Tragedies In Modern Society'), | |
(100554,'22400','SAS','201','Birdwatching In Modern Society'), | |
(100555,'22400','SAS','210','Reformist Values: Ideas In Conflict'), | |
(100556,'22400','SAS','220','Transforming The Western Female Experience'), | |
(100557,'22400','SAS','250','Pacific Islander Music Interpretation'), | |
(100558,'22400','SAS','301','Quantitative Methods In Manifest Destiny'), | |
(100559,'22400','SAS','350','The Influence Of Suburban Latino Drama On 21st Century Liberated Activisim'), | |
(100560,'22400','SAS','399','Perspectives In Cyberpunk Literature'), | |
(100561,'22450','STAT','101','Sex, Class, And Class In Australian Poetry'), | |
(100562,'22450','STAT','110','Ethnicity In The Postmodern Era'), | |
(100563,'22450','STAT','120','Urban Australian Traditions Since 1906'), | |
(100564,'22450','STAT','150','Radical Life: Myth & Reality'), | |
(100565,'22450','STAT','201','''The X-Files'' In Recent Times'), | |
(100566,'22450','STAT','210','Topics In The Upper Class Minority Movement In The Real World'), | |
(100567,'22450','STAT','220','French Folklore Interpretation'), | |
(100568,'22450','STAT','250','Culture, Race, And Community In Recent Times'), | |
(100569,'22450','STAT','301','Radical Thought'), | |
(100570,'22450','STAT','350','Survey Of The Franco-Prussian War'), | |
(100571,'22450','STAT','399','Liberated Self-Actualization'), | |
(100572,'22500','THEA','101','The Potential Of The American Civil War'), | |
(100573,'22500','THEA','110','Contemporary Elbonian Traditions'), | |
(100574,'22500','THEA','120','Exploration Of Suburban Elbonian Perspectives'), | |
(100575,'22500','THEA','150','Symbols Of Chinese Evolution'), | |
(100576,'22500','THEA','201','Realism In Today''s Society'), | |
(100577,'22500','THEA','210','Dynamic Exploration Of Infidelity In Atheist Art'), | |
(100578,'22500','THEA','220','Humanist Romanticism And Feminist Evolution In Modern America'), | |
(100579,'22500','THEA','250','Introduction To Southern Scandinavian Mythology'), | |
(100580,'22500','THEA','301','Aquatic Ballet In The 21st Century'), | |
(100581,'22500','THEA','350','Western Native American Affairs Since 1954'), | |
(100582,'22500','THEA','399','Liberal Globalism And Liberal Equality In The Postmodern World'), | |
(100583,'22550','GSS','101','Manifest Destiny As Seen In Upper Class Chinese Architecture'), | |
(100584,'22550','GSS','110','Images Of Latvian Feminism'), | |
(100585,'22550','GSS','120','Transforming The Southern American Experience'), | |
(100586,'22550','GSS','150','Perspectives Of Pacific Islander Self-Actualization'), | |
(100587,'22550','GSS','201','Dynamic Exploration Of The Rural Chinese Evolution In The United States'), | |
(100588,'22550','GSS','210','Postmodern Images: The Untold Story'), | |
(100589,'22550','GSS','220','Family, Class, And Status In Modern Society'), | |
(100590,'22550','GSS','250','Race, Family, And Status In Neo-Pagan Mythology'), | |
(100591,'22550','GSS','301','Multi-Ethnic Sculptures As A Postmodern Genre'), | |
(100592,'22550','GSS','350','Liberal Feminism And Progressive Post-Cubism In The Modern Age'), | |
(100593,'22550','GSS','399','Issues Of Italian Activisim'), | |
(100594,'90100','ICFE','101','Ethnicity In Modern Society'), | |
(100595,'90100','ICFE','110','Mexican Music As A Populist Genre'), | |
(100596,'90100','ICFE','120','Liberated Globalism In Modern Dance'), | |
(100597,'90100','ICFE','150','Liberal Post-Cubism And Radical Activisim In The United States'), | |
(100598,'90100','ICFE','201','The Feminist Dimension Of Liberated French Mythology'), | |
(100599,'90100','ICFE','210','The Consequences Of Inner City African Paintings On Legal Theories'), | |
(100600,'90100','ICFE','220','The Potential Of Feminist Diversity In The United States'), | |
(100601,'90100','ICFE','250','Suburban Elbonian Traditions Since 1966'), | |
(100602,'90100','ICFE','301','American Equality Images In The 21st Century'), | |
(100603,'90100','ICFE','350','Liberal Communism In Modern Music'), | |
(100604,'90100','ICFE','399','Selected Topics In Equality & Feminism In Modern Society'), | |
(100605,'90200','ISSR','101','American Poetry As A Liberal Genre'), | |
(100606,'90200','ISSR','110','Hispanic Political Correctness Thought In Recent Times'), | |
(100607,'90200','ISSR','120','Masterpieces Of Southern African Sculptures'), | |
(100608,'90200','ISSR','150','Humanist Equality In The Postmodern Era'), | |
(100609,'90200','ISSR','201','Middle Class Elbonian Thought In The Progressive World'), | |
(100610,'90200','ISSR','210','Survey Of Populist Multiculturalism & The Belcher Conjecture'), | |
(100611,'90200','ISSR','220','Ethnicity In The Postmodern Era'), | |
(100612,'90200','ISSR','250','Japanese Self-Actualization Morals In Recent Times'), | |
(100613,'90200','ISSR','301','Theories Of The Harlem Renaissance'), | |
(100614,'90200','ISSR','350','Inner City Native American Affairs In The Feminist World'), | |
(100615,'90200','ISSR','399','The Liberal Dimension Of Middle Class Pacific Islander Drama'), | |
(100616,'90300','RCWS','101','Mythology & Crime In The Liberated World'), | |
(100617,'90300','RCWS','110','Atheist Activisim Traditions In Today''s Society'), | |
(100618,'90300','RCWS','120','Quantum String Theory As Seen In Inner City Female Art'), | |
(100619,'90300','RCWS','150','Eastern Russian Civilization Since 1850'), | |
(100620,'90300','RCWS','201','Contemporary German Perspectives & Landscapes'), | |
(100621,'90300','RCWS','210','Female Poetry Interpretation'), | |
(100622,'90300','RCWS','220','Perspectives Of Neo-Pagan Environmentalism'), | |
(100623,'90300','RCWS','250','The Influence Of Rural Neo-Pagan Architecture On Vector Calculus'), | |
(100624,'90300','RCWS','301','French Post-Realism Ideas In The Modern Age'), | |
(100625,'90300','RCWS','350','Liberal Lifestyles: Ideas In Transition'), | |
(100626,'90300','RCWS','399','Principles Of The Liberal Pottery Experience') | |
; | |
/************* sis_enrollment *************/ | |
create table sis_enrollment ( | |
course_id integer, | |
person_id varchar(10), | |
term varchar(9), | |
role varchar(10) | |
); | |
insert into sis_enrollment (course_id, person_id, term, role) values | |
(100000,'800000375','2021FA','student'), | |
(100000,'800000914','2021FA','student'), | |
(100000,'800000968','2021FA','student'), | |
(100000,'800001329','2021FA','student'), | |
(100000,'800001469','2021FA','student'), | |
(100000,'800001704','2021FA','student'), | |
(100000,'800001791','2021FA','student'), | |
(100000,'800001799','2021FA','student'), | |
(100000,'800001858','2021FA','student'), | |
(100000,'800002258','2021FA','student'), | |
(100001,'800000067','2021FA','student'), | |
(100001,'800000359','2021FA','student'), | |
(100001,'800001075','2021FA','student'), | |
(100001,'800001599','2021FA','student'), | |
(100001,'800002095','2021FA','student'), | |
(100001,'800002243','2021FA','student'), | |
(100001,'800002467','2021FA','instructor'), | |
(100001,'800002492','2021FA','student'), | |
(100001,'800002595','2021FA','student'), | |
(100001,'800002635','2021FA','student'), | |
(100001,'800002726','2021FA','student'), | |
(100002,'800000719','2021FA','student'), | |
(100002,'800001072','2021FA','instructor'), | |
(100002,'800001157','2021FA','student'), | |
(100002,'800001815','2021FA','student'), | |
(100002,'800001940','2021FA','student'), | |
(100002,'800001976','2021FA','student'), | |
(100002,'800002018','2021FA','student'), | |
(100002,'800002202','2021FA','student'), | |
(100002,'800002451','2021FA','student'), | |
(100002,'800002548','2021FA','student'), | |
(100002,'800002877','2021FA','instructor'), | |
(100002,'800002967','2021FA','student'), | |
(100003,'800000210','2021FA','student'), | |
(100003,'800000765','2021FA','student'), | |
(100003,'800000889','2021FA','student'), | |
(100003,'800001072','2021FA','instructor'), | |
(100003,'800001100','2021FA','student'), | |
(100003,'800001209','2021FA','student'), | |
(100003,'800001471','2021FA','student'), | |
(100003,'800001951','2021FA','student'), | |
(100003,'800002611','2021FA','student'), | |
(100003,'800002652','2021FA','student'), | |
(100004,'800000011','2021FA','student'), | |
(100004,'800000381','2021FA','student'), | |
(100004,'800000701','2021FA','student'), | |
(100004,'800000881','2021FA','student'), | |
(100004,'800002120','2021FA','student'), | |
(100004,'800002531','2021FA','student'), | |
(100004,'800002877','2021FA','instructor'), | |
(100004,'800002913','2021FA','student'), | |
(100005,'800000237','2021FA','student'), | |
(100005,'800000336','2021FA','instructor'), | |
(100005,'800000346','2021FA','student'), | |
(100005,'800000550','2021FA','student'), | |
(100005,'800001599','2021FA','student'), | |
(100005,'800001815','2021FA','student'), | |
(100005,'800002453','2021FA','student'), | |
(100006,'800000224','2021FA','instructor'), | |
(100006,'800000409','2021FA','student'), | |
(100006,'800000474','2021FA','student'), | |
(100006,'800000632','2021FA','student'), | |
(100006,'800000666','2021FA','student'), | |
(100006,'800002268','2021FA','student'), | |
(100006,'800002483','2021FA','student'), | |
(100006,'800002604','2021FA','student'), | |
(100006,'800002645','2021FA','student'), | |
(100006,'800002749','2021FA','student'), | |
(100007,'800000024','2021FA','instructor'), | |
(100007,'800001156','2021FA','student'), | |
(100007,'800001473','2021FA','student'), | |
(100007,'800001588','2021FA','student'), | |
(100007,'800002159','2021FA','student'), | |
(100007,'800002517','2021FA','student'), | |
(100007,'800002527','2021FA','instructor'), | |
(100007,'800002599','2021FA','student'), | |
(100008,'800000714','2021FA','student'), | |
(100008,'800001234','2021FA','student'), | |
(100008,'800001454','2021FA','student'), | |
(100008,'800001689','2021FA','student'), | |
(100008,'800002209','2021FA','student'), | |
(100008,'800002454','2021FA','instructor'), | |
(100009,'800000099','2021FA','student'), | |
(100009,'800000369','2021FA','student'), | |
(100009,'800000981','2021FA','student'), | |
(100009,'800001377','2021FA','student'), | |
(100009,'800001643','2021FA','student'), | |
(100009,'800002790','2021FA','student'), | |
(100009,'800002994','2021FA','student'), | |
(100010,'800000029','2021FA','instructor'), | |
(100010,'800000354','2021FA','student'), | |
(100010,'800000755','2021FA','student'), | |
(100010,'800001174','2021FA','student'), | |
(100010,'800001377','2021FA','student'), | |
(100010,'800001478','2021FA','student'), | |
(100010,'800001550','2021FA','student'), | |
(100010,'800001574','2021FA','student'), | |
(100010,'800001961','2021FA','student'), | |
(100010,'800002074','2021FA','student'), | |
(100010,'800002224','2021FA','student'), | |
(100010,'800002341','2021FA','student'), | |
(100010,'800002490','2021FA','student'), | |
(100010,'800002586','2021FA','student'), | |
(100010,'800002587','2021FA','student'), | |
(100010,'800002830','2021FA','student'), | |
(100010,'800002956','2021FA','student'), | |
(100011,'800000306','2021FA','student'), | |
(100011,'800000322','2021FA','student'), | |
(100011,'800000348','2021FA','student'), | |
(100011,'800000419','2021FA','student'), | |
(100011,'800000809','2021FA','student'), | |
(100011,'800000878','2021FA','student'), | |
(100011,'800001079','2021FA','instructor'), | |
(100011,'800001183','2021FA','student'), | |
(100011,'800001199','2021FA','student'), | |
(100011,'800001616','2021FA','student'), | |
(100011,'800001738','2021FA','student'), | |
(100011,'800002042','2021FA','student'), | |
(100011,'800002501','2021FA','student'), | |
(100011,'800002559','2021FA','student'), | |
(100011,'800002591','2021FA','student'), | |
(100012,'800000197','2021FA','student'), | |
(100012,'800000207','2021FA','instructor'), | |
(100012,'800000207','2021FA','instructor'), | |
(100012,'800000467','2021FA','student'), | |
(100012,'800000557','2021FA','student'), | |
(100012,'800000625','2021FA','student'), | |
(100012,'800000725','2021FA','student'), | |
(100012,'800000876','2021FA','student'), | |
(100012,'800001725','2021FA','student'), | |
(100012,'800001774','2021FA','student'), | |
(100012,'800002451','2021FA','student'), | |
(100012,'800002471','2021FA','student'), | |
(100012,'800002508','2021FA','instructor'), | |
(100013,'800000080','2021FA','student'), | |
(100013,'800000290','2021FA','student'), | |
(100013,'800000369','2021FA','student'), | |
(100013,'800000509','2021FA','student'), | |
(100013,'800000568','2021FA','student'), | |
(100013,'800000720','2021FA','student'), | |
(100013,'800000737','2021FA','student'), | |
(100013,'800000908','2021FA','student'), | |
(100013,'800001270','2021FA','student'), | |
(100013,'800001712','2021FA','student'), | |
(100013,'800001899','2021FA','student'), | |
(100013,'800001938','2021FA','student'), | |
(100013,'800001988','2021FA','student'), | |
(100013,'800002257','2021FA','student'), | |
(100013,'800002267','2021FA','student'), | |
(100013,'800002305','2021FA','student'), | |
(100013,'800002516','2021FA','student'), | |
(100014,'800000339','2021FA','student'), | |
(100014,'800001004','2021FA','student'), | |
(100014,'800001372','2021FA','student'), | |
(100014,'800002202','2021FA','student'), | |
(100014,'800002623','2021FA','student'), | |
(100014,'800002635','2021FA','student'), | |
(100014,'800002878','2021FA','student'), | |
(100014,'800002883','2021FA','instructor'), | |
(100015,'800000393','2021FA','student'), | |
(100015,'800000637','2021FA','student'), | |
(100015,'800000807','2021FA','student'), | |
(100015,'800001706','2021FA','student'), | |
(100015,'800002821','2021FA','student'), | |
(100015,'800002912','2021FA','instructor'), | |
(100016,'800000290','2021FA','student'), | |
(100016,'800000749','2021FA','student'), | |
(100016,'800001181','2021FA','student'), | |
(100016,'800001715','2021FA','student'), | |
(100016,'800002239','2021FA','student'), | |
(100016,'800002324','2021FA','student'), | |
(100016,'800002346','2021FA','student'), | |
(100016,'800002452','2021FA','student'), | |
(100016,'800002766','2021FA','student'), | |
(100017,'800000112','2021FA','student'), | |
(100017,'800001049','2021FA','student'), | |
(100017,'800001234','2021FA','student'), | |
(100017,'800001866','2021FA','student'), | |
(100018,'800000322','2021FA','student'), | |
(100018,'800000779','2021FA','instructor'), | |
(100018,'800000881','2021FA','student'), | |
(100018,'800001343','2021FA','student'), | |
(100018,'800001729','2021FA','student'), | |
(100018,'800002397','2021FA','student'), | |
(100018,'800002883','2021FA','instructor'), | |
(100019,'800000065','2021FA','student'), | |
(100019,'800000241','2021FA','student'), | |
(100019,'800000400','2021FA','student'), | |
(100019,'800000977','2021FA','student'), | |
(100019,'800001117','2021FA','student'), | |
(100019,'800002029','2021FA','student'), | |
(100019,'800002049','2021FA','instructor'), | |
(100019,'800002219','2021FA','student'), | |
(100019,'800002475','2021FA','student'), | |
(100019,'800002513','2021FA','instructor'), | |
(100019,'800002912','2021FA','instructor'), | |
(100019,'800002988','2021FA','student'), | |
(100020,'800000726','2021FA','student'), | |
(100020,'800000808','2021FA','student'), | |
(100020,'800001315','2021FA','student'), | |
(100020,'800001633','2021FA','student'), | |
(100020,'800001798','2021FA','student'), | |
(100020,'800001951','2021FA','student'), | |
(100021,'800000593','2021FA','student'), | |
(100021,'800002113','2021FA','student'), | |
(100021,'800002326','2021FA','student'), | |
(100021,'800002620','2021FA','student'), | |
(100022,'800000368','2021FA','student'), | |
(100022,'800000417','2021FA','student'), | |
(100022,'800000717','2021FA','student'), | |
(100022,'800000905','2021FA','student'), | |
(100022,'800001078','2021FA','student'), | |
(100022,'800001367','2021FA','student'), | |
(100022,'800001716','2021FA','student'), | |
(100022,'800001769','2021FA','student'), | |
(100022,'800001779','2021FA','student'), | |
(100022,'800002042','2021FA','student'), | |
(100022,'800002107','2021FA','student'), | |
(100022,'800002477','2021FA','student'), | |
(100023,'800000093','2021FA','student'), | |
(100023,'800000688','2021FA','student'), | |
(100023,'800000914','2021FA','student'), | |
(100023,'800001698','2021FA','student'), | |
(100023,'800001706','2021FA','student'), | |
(100023,'800002120','2021FA','student'), | |
(100023,'800002414','2021FA','student'), | |
(100024,'800000028','2021FA','student'), | |
(100024,'800000419','2021FA','student'), | |
(100024,'800000843','2021FA','student'), | |
(100024,'800001103','2021FA','instructor'), | |
(100024,'800001213','2021FA','student'), | |
(100024,'800001279','2021FA','student'), | |
(100024,'800001311','2021FA','student'), | |
(100024,'800002645','2021FA','student'), | |
(100024,'800002673','2021FA','student'), | |
(100025,'800000262','2021FA','instructor'), | |
(100025,'800000317','2021FA','student'), | |
(100025,'800000421','2021FA','student'), | |
(100025,'800000595','2021FA','student'), | |
(100025,'800000745','2021FA','instructor'), | |
(100025,'800001103','2021FA','instructor'), | |
(100025,'800001305','2021FA','student'), | |
(100025,'800001399','2021FA','student'), | |
(100025,'800001760','2021FA','instructor'), | |
(100025,'800002360','2021FA','student'), | |
(100025,'800002387','2021FA','student'), | |
(100025,'800002537','2021FA','student'), | |
(100025,'800002589','2021FA','student'), | |
(100025,'800002896','2021FA','student'), | |
(100026,'800000060','2021FA','student'), | |
(100026,'800000459','2021FA','instructor'), | |
(100026,'800000547','2021FA','student'), | |
(100026,'800000555','2021FA','student'), | |
(100026,'800000694','2021FA','student'), | |
(100026,'800001988','2021FA','student'), | |
(100026,'800002006','2021FA','student'), | |
(100026,'800002035','2021FA','student'), | |
(100026,'800002091','2021FA','student'), | |
(100026,'800002315','2021FA','student'), | |
(100026,'800002358','2021FA','student'), | |
(100026,'800002476','2021FA','student'), | |
(100026,'800002606','2021FA','student'), | |
(100026,'800002672','2021FA','student'), | |
(100026,'800002770','2021FA','student'), | |
(100027,'800000197','2021FA','student'), | |
(100027,'800000445','2021FA','student'), | |
(100027,'800000479','2021FA','student'), | |
(100027,'800001304','2021FA','student'), | |
(100027,'800001396','2021FA','student'), | |
(100027,'800001655','2021FA','instructor'), | |
(100027,'800001740','2021FA','student'), | |
(100027,'800002607','2021FA','student'), | |
(100027,'800002960','2021FA','student'), | |
(100028,'800000047','2021FA','student'), | |
(100028,'800000419','2021FA','student'), | |
(100028,'800000622','2021FA','student'), | |
(100028,'800000859','2021FA','student'), | |
(100028,'800001190','2021FA','student'), | |
(100028,'800001992','2021FA','student'), | |
(100028,'800002523','2021FA','student'), | |
(100028,'800002619','2021FA','student'), | |
(100028,'800002952','2021FA','student'), | |
(100029,'800000554','2021FA','student'), | |
(100029,'800001216','2021FA','student'), | |
(100029,'800001426','2021FA','student'), | |
(100029,'800001524','2021FA','student'), | |
(100029,'800001538','2021FA','student'), | |
(100029,'800001614','2021FA','student'), | |
(100029,'800001704','2021FA','student'), | |
(100029,'800002479','2021FA','student'), | |
(100029,'800002528','2021FA','student'), | |
(100029,'800002658','2021FA','student'), | |
(100029,'800002681','2021FA','instructor'), | |
(100030,'800000106','2021FA','student'), | |
(100030,'800000749','2021FA','student'), | |
(100030,'800000924','2021FA','student'), | |
(100030,'800001078','2021FA','student'), | |
(100030,'800001429','2021FA','student'), | |
(100030,'800001760','2021FA','instructor'), | |
(100030,'800001919','2021FA','student'), | |
(100030,'800002072','2021FA','student'), | |
(100030,'800002357','2021FA','student'), | |
(100030,'800002373','2021FA','student'), | |
(100030,'800002571','2021FA','instructor'), | |
(100030,'800002629','2021FA','student'), | |
(100030,'800002681','2021FA','instructor'), | |
(100031,'800000365','2021FA','student'), | |
(100031,'800000431','2021FA','student'), | |
(100031,'800000886','2021FA','student'), | |
(100031,'800001285','2021FA','student'), | |
(100031,'800001993','2021FA','student'), | |
(100031,'800002080','2021FA','student'), | |
(100031,'800002300','2021FA','student'), | |
(100031,'800002406','2021FA','student'), | |
(100031,'800002464','2021FA','student'), | |
(100031,'800002569','2021FA','student'), | |
(100032,'800000022','2021FA','student'), | |
(100032,'800000027','2021FA','student'), | |
(100032,'800000473','2021FA','student'), | |
(100032,'800000548','2021FA','student'), | |
(100032,'800000610','2021FA','student'), | |
(100032,'800000850','2021FA','student'), | |
(100032,'800000920','2021FA','student'), | |
(100032,'800001526','2021FA','student'), | |
(100032,'800001721','2021FA','student'), | |
(100032,'800002274','2021FA','student'), | |
(100032,'800002924','2021FA','student'), | |
(100032,'800002976','2021FA','student'), | |
(100033,'800000349','2021FA','instructor'), | |
(100033,'800000366','2021FA','instructor'), | |
(100033,'800000752','2021FA','instructor'), | |
(100033,'800000821','2021FA','student'), | |
(100033,'800000835','2021FA','student'), | |
(100033,'800000930','2021FA','student'), | |
(100033,'800001029','2021FA','student'), | |
(100033,'800001171','2021FA','student'), | |
(100033,'800001606','2021FA','student'), | |
(100033,'800001977','2021FA','student'), | |
(100033,'800002018','2021FA','student'), | |
(100033,'800002185','2021FA','student'), | |
(100033,'800002276','2021FA','student'), | |
(100033,'800002629','2021FA','student'), | |
(100033,'800002647','2021FA','instructor'), | |
(100034,'800000189','2021FA','student'), | |
(100034,'800000288','2021FA','student'), | |
(100034,'800000338','2021FA','student'), | |
(100034,'800000721','2021FA','student'), | |
(100034,'800000746','2021FA','student'), | |
(100034,'800000947','2021FA','student'), | |
(100034,'800001122','2021FA','student'), | |
(100034,'800001309','2021FA','student'), | |
(100034,'800001332','2021FA','student'), | |
(100034,'800001583','2021FA','student'), | |
(100034,'800001981','2021FA','student'), | |
(100034,'800002090','2021FA','student'), | |
(100034,'800002253','2021FA','student'), | |
(100034,'800002307','2021FA','student'), | |
(100034,'800002455','2021FA','student'), | |
(100034,'800002638','2021FA','student'), | |
(100035,'800000915','2021FA','student'), | |
(100035,'800001185','2021FA','student'), | |
(100035,'800001295','2021FA','instructor'), | |
(100035,'800001789','2021FA','student'), | |
(100035,'800001956','2021FA','student'), | |
(100035,'800002266','2021FA','student'), | |
(100035,'800002292','2021FA','student'), | |
(100035,'800002763','2021FA','instructor'), | |
(100036,'800000368','2021FA','student'), | |
(100036,'800001058','2021FA','student'), | |
(100036,'800001067','2021FA','student'), | |
(100036,'800001234','2021FA','student'), | |
(100036,'800001295','2021FA','instructor'), | |
(100036,'800001322','2021FA','student'), | |
(100036,'800001348','2021FA','student'), | |
(100036,'800001596','2021FA','student'), | |
(100036,'800001623','2021FA','student'), | |
(100036,'800001881','2021FA','student'), | |
(100036,'800002064','2021FA','student'), | |
(100037,'800000059','2021FA','student'), | |
(100037,'800000267','2021FA','student'), | |
(100037,'800000718','2021FA','student'), | |
(100037,'800000767','2021FA','student'), | |
(100037,'800000963','2021FA','student'), | |
(100037,'800001077','2021FA','student'), | |
(100037,'800001337','2021FA','student'), | |
(100037,'800001657','2021FA','student'), | |
(100037,'800001751','2021FA','student'), | |
(100037,'800001866','2021FA','student'), | |
(100037,'800002113','2021FA','student'), | |
(100037,'800002204','2021FA','student'), | |
(100037,'800002607','2021FA','student'), | |
(100038,'800000052','2021FA','student'), | |
(100038,'800000366','2021FA','instructor'), | |
(100038,'800000458','2021FA','student'), | |
(100038,'800000463','2021FA','student'), | |
(100038,'800000542','2021FA','student'), | |
(100038,'800000995','2021FA','student'), | |
(100038,'800001029','2021FA','student'), | |
(100038,'800001474','2021FA','student'), | |
(100038,'800001584','2021FA','student'), | |
(100038,'800001741','2021FA','student'), | |
(100038,'800001856','2021FA','instructor'), | |
(100038,'800002373','2021FA','student'), | |
(100038,'800002480','2021FA','student'), | |
(100038,'800002539','2021FA','student'), | |
(100038,'800002562','2021FA','student'), | |
(100038,'800002637','2021FA','student'), | |
(100038,'800002703','2021FA','student'), | |
(100039,'800000057','2021FA','student'), | |
(100039,'800000349','2021FA','instructor'), | |
(100039,'800000433','2021FA','student'), | |
(100039,'800000545','2021FA','student'), | |
(100039,'800000595','2021FA','student'), | |
(100039,'800000746','2021FA','student'), | |
(100039,'800000968','2021FA','student'), | |
(100039,'800001058','2021FA','student'), | |
(100039,'800001248','2021FA','student'), | |
(100039,'800001418','2021FA','student'), | |
(100039,'800001792','2021FA','student'), | |
(100039,'800001960','2021FA','instructor'), | |
(100039,'800002701','2021FA','student'), | |
(100040,'800000225','2021FA','student'), | |
(100040,'800001182','2021FA','student'), | |
(100040,'800001315','2021FA','student'), | |
(100040,'800001406','2021FA','instructor'), | |
(100040,'800001645','2021FA','student'), | |
(100040,'800002133','2021FA','student'), | |
(100040,'800002644','2021FA','student'), | |
(100040,'800002715','2021FA','student'), | |
(100041,'800000206','2021FA','student'), | |
(100041,'800000936','2021FA','student'), | |
(100041,'800001832','2021FA','student'), | |
(100041,'800001859','2021FA','student'), | |
(100041,'800001960','2021FA','instructor'), | |
(100041,'800002292','2021FA','student'), | |
(100041,'800002548','2021FA','student'), | |
(100041,'800002588','2021FA','student'), | |
(100041,'800002605','2021FA','student'), | |
(100042,'800000193','2021FA','student'), | |
(100042,'800000417','2021FA','student'), | |
(100042,'800000709','2021FA','student'), | |
(100042,'800000871','2021FA','student'), | |
(100042,'800000914','2021FA','student'), | |
(100042,'800000961','2021FA','student'), | |
(100042,'800000991','2021FA','student'), | |
(100042,'800001339','2021FA','student'), | |
(100042,'800001610','2021FA','student'), | |
(100042,'800001856','2021FA','instructor'), | |
(100042,'800002369','2021FA','student'), | |
(100042,'800002447','2021FA','student'), | |
(100042,'800002503','2021FA','student'), | |
(100042,'800002595','2021FA','student'), | |
(100042,'800002621','2021FA','student'), | |
(100042,'800002854','2021FA','student'), | |
(100043,'800000147','2021FA','student'), | |
(100043,'800000290','2021FA','student'), | |
(100043,'800000969','2021FA','instructor'), | |
(100043,'800000969','2021FA','instructor'), | |
(100043,'800001207','2021FA','student'), | |
(100043,'800001426','2021FA','student'), | |
(100043,'800001488','2021FA','student'), | |
(100043,'800001552','2021FA','student'), | |
(100043,'800001581','2021FA','student'), | |
(100043,'800001648','2021FA','student'), | |
(100043,'800001653','2021FA','student'), | |
(100043,'800001723','2021FA','student'), | |
(100043,'800002205','2021FA','student'), | |
(100043,'800002982','2021FA','student'), | |
(100044,'800000082','2021FA','student'), | |
(100044,'800000327','2021FA','student'), | |
(100044,'800001128','2021FA','student'), | |
(100044,'800001174','2021FA','student'), | |
(100044,'800001378','2021FA','student'), | |
(100044,'800001588','2021FA','student'), | |
(100044,'800001905','2021FA','student'), | |
(100044,'800002102','2021FA','student'), | |
(100044,'800002297','2021FA','student'), | |
(100044,'800002456','2021FA','student'), | |
(100044,'800002943','2021FA','student'), | |
(100045,'800000098','2021FA','instructor'), | |
(100045,'800000500','2021FA','student'), | |
(100045,'800000585','2021FA','student'), | |
(100045,'800000848','2021FA','student'), | |
(100045,'800001050','2021FA','student'), | |
(100045,'800001127','2021FA','student'), | |
(100045,'800002328','2021FA','student'), | |
(100045,'800002369','2021FA','student'), | |
(100045,'800002471','2021FA','student'), | |
(100045,'800002701','2021FA','student'), | |
(100045,'800002800','2021FA','student'), | |
(100045,'800002879','2021FA','student'), | |
(100046,'800000337','2021FA','instructor'), | |
(100046,'800000543','2021FA','student'), | |
(100046,'800000930','2021FA','student'), | |
(100046,'800001096','2021FA','student'), | |
(100046,'800001209','2021FA','student'), | |
(100046,'800001260','2021FA','student'), | |
(100046,'800001710','2021FA','student'), | |
(100046,'800001835','2021FA','student'), | |
(100046,'800001986','2021FA','student'), | |
(100046,'800002270','2021FA','student'), | |
(100046,'800002297','2021FA','student'), | |
(100046,'800002346','2021FA','student'), | |
(100046,'800002351','2021FA','student'), | |
(100047,'800000100','2021FA','instructor'), | |
(100047,'800000310','2021FA','student'), | |
(100047,'800001537','2021FA','student'), | |
(100047,'800001901','2021FA','student'), | |
(100047,'800002370','2021FA','student'), | |
(100047,'800002398','2021FA','instructor'), | |
(100047,'800002434','2021FA','student'), | |
(100047,'800002450','2021FA','student'), | |
(100047,'800002556','2021FA','student'), | |
(100047,'800002631','2021FA','student'), | |
(100047,'800002861','2021FA','student'), | |
(100047,'800002881','2021FA','student'), | |
(100048,'800000054','2021FA','student'), | |
(100048,'800000125','2021FA','student'), | |
(100048,'800000272','2021FA','student'), | |
(100048,'800000748','2021FA','student'), | |
(100048,'800000809','2021FA','student'), | |
(100048,'800001244','2021FA','student'), | |
(100048,'800001286','2021FA','instructor'), | |
(100048,'800001402','2021FA','student'), | |
(100048,'800001586','2021FA','student'), | |
(100048,'800001606','2021FA','student'), | |
(100048,'800001640','2021FA','student'), | |
(100048,'800001663','2021FA','instructor'), | |
(100048,'800001663','2021FA','instructor'), | |
(100048,'800001672','2021FA','instructor'), | |
(100048,'800002102','2021FA','student'), | |
(100048,'800002343','2021FA','student'), | |
(100048,'800002398','2021FA','instructor'), | |
(100048,'800002584','2021FA','student'), | |
(100049,'800000765','2021FA','student'), | |
(100049,'800000861','2021FA','student'), | |
(100049,'800001059','2021FA','student'), | |
(100049,'800001102','2021FA','student'), | |
(100049,'800001153','2021FA','student'), | |
(100049,'800002030','2021FA','student'), | |
(100049,'800002619','2021FA','student'), | |
(100049,'800002722','2021FA','student'), | |
(100050,'800000155','2021FA','student'), | |
(100050,'800000490','2021FA','student'), | |
(100050,'800000610','2021FA','student'), | |
(100050,'800000655','2021FA','student'), | |
(100050,'800000729','2021FA','student'), | |
(100050,'800000845','2021FA','student'), | |
(100050,'800000993','2021FA','student'), | |
(100050,'800001029','2021FA','student'), | |
(100050,'800001174','2021FA','student'), | |
(100050,'800001342','2021FA','student'), | |
(100050,'800001659','2021FA','student'), | |
(100050,'800001667','2021FA','student'), | |
(100050,'800001835','2021FA','student'), | |
(100050,'800002029','2021FA','student'), | |
(100050,'800002201','2021FA','student'), | |
(100050,'800002830','2021FA','student'), | |
(100051,'800000579','2021FA','student'), | |
(100051,'800000917','2021FA','student'), | |
(100051,'800000960','2021FA','student'), | |
(100051,'800002300','2021FA','student'), | |
(100051,'800002862','2021FA','student'), | |
(100052,'800000080','2021FA','student'), | |
(100052,'800000100','2021FA','instructor'), | |
(100052,'800000362','2021FA','student'), | |
(100052,'800000799','2021FA','student'), | |
(100052,'800001189','2021FA','student'), | |
(100052,'800001529','2021FA','student'), | |
(100052,'800001675','2021FA','student'), | |
(100052,'800001857','2021FA','student'), | |
(100052,'800002050','2021FA','student'), | |
(100052,'800002074','2021FA','student'), | |
(100052,'800002209','2021FA','student'), | |
(100052,'800002242','2021FA','student'), | |
(100052,'800002784','2021FA','student'), | |
(100053,'800000064','2021FA','student'), | |
(100053,'800000098','2021FA','instructor'), | |
(100053,'800000111','2021FA','student'), | |
(100053,'800000474','2021FA','student'), | |
(100053,'800000917','2021FA','student'), | |
(100053,'800001048','2021FA','student'), | |
(100053,'800001069','2021FA','instructor'), | |
(100053,'800001114','2021FA','student'), | |
(100053,'800001276','2021FA','student'), | |
(100053,'800001286','2021FA','instructor'), | |
(100053,'800001674','2021FA','student'), | |
(100053,'800001738','2021FA','student'), | |
(100053,'800002197','2021FA','student'), | |
(100053,'800002471','2021FA','student'), | |
(100053,'800002662','2021FA','student'), | |
(100053,'800002901','2021FA','student'), | |
(100054,'800000766','2021FA','student'), | |
(100054,'800001069','2021FA','instructor'), | |
(100054,'800001291','2021FA','student'), | |
(100054,'800001326','2021FA','student'), | |
(100054,'800001507','2021FA','student'), | |
(100054,'800001518','2021FA','student'), | |
(100054,'800001745','2021FA','student'), | |
(100054,'800001751','2021FA','student'), | |
(100054,'800001858','2021FA','student'), | |
(100054,'800001901','2021FA','student'), | |
(100054,'800002461','2021FA','student'), | |
(100054,'800002854','2021FA','student'), | |
(100054,'800002889','2021FA','student'), | |
(100054,'800002987','2021FA','student'), | |
(100055,'800000322','2021FA','student'), | |
(100055,'800001053','2021FA','student'), | |
(100055,'800001270','2021FA','student'), | |
(100055,'800001275','2021FA','student'), | |
(100055,'800001316','2021FA','student'), | |
(100055,'800001505','2021FA','student'), | |
(100055,'800001513','2021FA','student'), | |
(100055,'800001718','2021FA','student'), | |
(100055,'800001737','2021FA','instructor'), | |
(100055,'800001903','2021FA','student'), | |
(100055,'800002637','2021FA','student'), | |
(100055,'800002784','2021FA','student'), | |
(100056,'800000253','2021FA','instructor'), | |
(100056,'800000327','2021FA','student'), | |
(100056,'800000350','2021FA','student'), | |
(100056,'800000547','2021FA','student'), | |
(100056,'800000963','2021FA','student'), | |
(100056,'800001206','2021FA','student'), | |
(100056,'800001605','2021FA','student'), | |
(100056,'800001635','2021FA','student'), | |
(100056,'800002143','2021FA','student'), | |
(100056,'800002301','2021FA','student'), | |
(100056,'800002501','2021FA','student'), | |
(100056,'800002687','2021FA','student'), | |
(100057,'800000013','2021FA','student'), | |
(100057,'800000248','2021FA','student'), | |
(100057,'800000602','2021FA','student'), | |
(100057,'800000624','2021FA','student'), | |
(100057,'800000671','2021FA','student'), | |
(100057,'800001104','2021FA','student'), | |
(100057,'800001296','2021FA','student'), | |
(100057,'800001732','2021FA','student'), | |
(100057,'800001745','2021FA','student'), | |
(100057,'800001774','2021FA','student'), | |
(100057,'800002059','2021FA','instructor'), | |
(100057,'800002616','2021FA','student'), | |
(100057,'800002985','2021FA','student'), | |
(100058,'800000049','2021FA','student'), | |
(100058,'800000063','2021FA','student'), | |
(100058,'800000511','2021FA','instructor'), | |
(100058,'800000726','2021FA','student'), | |
(100058,'800000801','2021FA','student'), | |
(100058,'800001090','2021FA','student'), | |
(100058,'800002059','2021FA','instructor'), | |
(100058,'800002249','2021FA','student'), | |
(100058,'800002504','2021FA','instructor'), | |
(100058,'800002661','2021FA','student'), | |
(100058,'800002693','2021FA','student'), | |
(100058,'800002991','2021FA','student'), | |
(100059,'800000387','2021FA','student'), | |
(100059,'800000411','2021FA','student'), | |
(100059,'800000428','2021FA','student'), | |
(100059,'800000725','2021FA','student'), | |
(100059,'800000989','2021FA','student'), | |
(100059,'800001932','2021FA','student'), | |
(100059,'800001940','2021FA','student'), | |
(100059,'800002504','2021FA','instructor'), | |
(100060,'800000148','2021FA','student'), | |
(100060,'800000694','2021FA','student'), | |
(100060,'800000776','2021FA','student'), | |
(100060,'800001232','2021FA','student'), | |
(100060,'800001548','2021FA','student'), | |
(100060,'800001730','2021FA','student'), | |
(100060,'800001764','2021FA','instructor'), | |
(100060,'800001771','2021FA','student'), | |
(100060,'800002117','2021FA','student'), | |
(100060,'800002253','2021FA','student'), | |
(100060,'800002621','2021FA','student'), | |
(100060,'800002791','2021FA','student'), | |
(100060,'800002881','2021FA','student'), | |
(100061,'800000022','2021FA','student'), | |
(100061,'800000147','2021FA','student'), | |
(100061,'800000253','2021FA','instructor'), | |
(100061,'800000602','2021FA','student'), | |
(100061,'800000822','2021FA','student'), | |
(100061,'800001138','2021FA','student'), | |
(100061,'800001291','2021FA','student'), | |
(100061,'800001310','2021FA','student'), | |
(100061,'800001737','2021FA','instructor'), | |
(100061,'800001900','2021FA','student'), | |
(100061,'800001974','2021FA','student'), | |
(100061,'800002101','2021FA','student'), | |
(100062,'800000027','2021FA','student'), | |
(100062,'800000333','2021FA','student'), | |
(100062,'800000369','2021FA','student'), | |
(100062,'800000565','2021FA','student'), | |
(100062,'800000636','2021FA','student'), | |
(100062,'800000946','2021FA','instructor'), | |
(100062,'800001326','2021FA','student'), | |
(100062,'800001428','2021FA','student'), | |
(100062,'800001552','2021FA','student'), | |
(100062,'800001727','2021FA','instructor'), | |
(100062,'800001984','2021FA','student'), | |
(100062,'800002652','2021FA','student'), | |
(100062,'800002992','2021FA','instructor'), | |
(100063,'800000946','2021FA','instructor'), | |
(100063,'800001074','2021FA','student'), | |
(100063,'800001164','2021FA','student'), | |
(100063,'800001291','2021FA','student'), | |
(100063,'800001401','2021FA','student'), | |
(100063,'800001824','2021FA','student'), | |
(100063,'800001837','2021FA','student'), | |
(100063,'800001977','2021FA','student'), | |
(100063,'800002010','2021FA','student'), | |
(100063,'800002340','2021FA','student'), | |
(100063,'800002341','2021FA','student'), | |
(100063,'800002653','2021FA','student'), | |
(100063,'800002703','2021FA','student'), | |
(100063,'800002861','2021FA','student'), | |
(100064,'800000032','2021FA','student'), | |
(100064,'800000543','2021FA','student'), | |
(100064,'800000635','2021FA','student'), | |
(100064,'800000687','2021FA','student'), | |
(100064,'800000886','2021FA','student'), | |
(100064,'800000948','2021FA','student'), | |
(100064,'800001313','2021FA','student'), | |
(100064,'800001464','2021FA','student'), | |
(100064,'800001478','2021FA','student'), | |
(100064,'800001918','2021FA','student'), | |
(100064,'800002726','2021FA','student'), | |
(100065,'800000057','2021FA','student'), | |
(100065,'800000105','2021FA','student'), | |
(100065,'800000696','2021FA','student'), | |
(100065,'800000993','2021FA','student'), | |
(100065,'800001252','2021FA','student'), | |
(100065,'800001416','2021FA','student'), | |
(100065,'800001429','2021FA','student'), | |
(100065,'800001727','2021FA','instructor'), | |
(100065,'800002001','2021FA','student'), | |
(100065,'800002248','2021FA','student'), | |
(100065,'800002346','2021FA','student'), | |
(100065,'800002458','2021FA','student'), | |
(100065,'800002770','2021FA','student'), | |
(100065,'800002979','2021FA','student'), | |
(100066,'800000233','2021FA','student'), | |
(100066,'800000540','2021FA','student'), | |
(100066,'800000896','2021FA','instructor'), | |
(100066,'800000981','2021FA','student'), | |
(100066,'800001792','2021FA','student'), | |
(100066,'800001861','2021FA','student'), | |
(100066,'800001995','2021FA','student'), | |
(100066,'800002463','2021FA','student'), | |
(100066,'800002464','2021FA','student'), | |
(100066,'800002948','2021FA','student'), | |
(100067,'800000321','2021FA','student'), | |
(100067,'800000499','2021FA','student'), | |
(100067,'800000506','2021FA','student'), | |
(100067,'800000620','2021FA','instructor'), | |
(100067,'800000682','2021FA','student'), | |
(100067,'800000832','2021FA','student'), | |
(100067,'800001011','2021FA','student'), | |
(100067,'800001622','2021FA','student'), | |
(100067,'800001633','2021FA','student'), | |
(100067,'800001877','2021FA','student'), | |
(100067,'800002185','2021FA','student'), | |
(100067,'800002312','2021FA','student'), | |
(100067,'800002429','2021FA','student'), | |
(100067,'800002574','2021FA','student'), | |
(100067,'800002583','2021FA','student'), | |
(100067,'800002596','2021FA','student'), | |
(100067,'800002701','2021FA','student'), | |
(100067,'800002913','2021FA','student'), | |
(100067,'800002922','2021FA','student'), | |
(100068,'800000086','2021FA','student'), | |
(100068,'800000188','2021FA','student'), | |
(100068,'800000271','2021FA','student'), | |
(100068,'800000284','2021FA','student'), | |
(100068,'800000554','2021FA','student'), | |
(100068,'800000903','2021FA','student'), | |
(100068,'800001275','2021FA','student'), | |
(100068,'800001409','2021FA','student'), | |
(100068,'800001536','2021FA','student'), | |
(100068,'800001796','2021FA','student'), | |
(100068,'800002175','2021FA','student'), | |
(100068,'800002204','2021FA','student'), | |
(100068,'800002359','2021FA','student'), | |
(100068,'800002413','2021FA','instructor'), | |
(100068,'800002637','2021FA','student'), | |
(100069,'800000125','2021FA','student'), | |
(100069,'800000306','2021FA','student'), | |
(100069,'800000564','2021FA','student'), | |
(100069,'800000575','2021FA','student'), | |
(100069,'800000584','2021FA','student'), | |
(100069,'800000994','2021FA','instructor'), | |
(100069,'800001440','2021FA','student'), | |
(100069,'800002284','2021FA','student'), | |
(100069,'800002478','2021FA','student'), | |
(100069,'800002562','2021FA','student'), | |
(100069,'800002873','2021FA','instructor'), | |
(100070,'800000188','2021FA','student'), | |
(100070,'800000620','2021FA','instructor'), | |
(100070,'800000671','2021FA','student'), | |
(100070,'800000682','2021FA','student'), | |
(100070,'800000781','2021FA','student'), | |
(100070,'800000828','2021FA','student'), | |
(100070,'800001118','2021FA','student'), | |
(100070,'800001128','2021FA','student'), | |
(100070,'800001199','2021FA','student'), | |
(100070,'800001675','2021FA','student'), | |
(100070,'800002324','2021FA','student'), | |
(100070,'800002927','2021FA','student'), | |
(100071,'800000057','2021FA','student'), | |
(100071,'800000226','2021FA','student'), | |
(100071,'800000310','2021FA','student'), | |
(100071,'800000333','2021FA','student'), | |
(100071,'800000497','2021FA','student'), | |
(100071,'800000915','2021FA','student'), | |
(100071,'800000994','2021FA','instructor'), | |
(100071,'800001011','2021FA','student'), | |
(100071,'800001044','2021FA','student'), | |
(100071,'800002233','2021FA','student'), | |
(100071,'800002322','2021FA','student'), | |
(100071,'800002395','2021FA','student'), | |
(100071,'800002403','2021FA','student'), | |
(100071,'800002493','2021FA','student'), | |
(100071,'800002902','2021FA','instructor'), | |
(100072,'800000177','2021FA','student'), | |
(100072,'800000180','2021FA','student'), | |
(100072,'800000195','2021FA','student'), | |
(100072,'800000486','2021FA','student'), | |
(100072,'800000821','2021FA','student'), | |
(100072,'800001015','2021FA','student'), | |
(100072,'800001098','2021FA','student'), | |
(100072,'800001106','2021FA','student'), | |
(100072,'800001133','2021FA','student'), | |
(100072,'800001819','2021FA','student'), | |
(100072,'800002264','2021FA','student'), | |
(100072,'800002451','2021FA','student'), | |
(100072,'800002768','2021FA','student'), | |
(100073,'800000055','2021FA','student'), | |
(100073,'800000093','2021FA','student'), | |
(100073,'800000766','2021FA','student'), | |
(100073,'800001180','2021FA','student'), | |
(100073,'800001648','2021FA','student'), | |
(100073,'800001852','2021FA','student'), | |
(100073,'800002166','2021FA','student'), | |
(100073,'800002490','2021FA','student'), | |
(100073,'800002559','2021FA','student'), | |
(100073,'800002653','2021FA','student'), | |
(100073,'800002933','2021FA','student'), | |
(100074,'800000116','2021FA','student'), | |
(100074,'800000248','2021FA','student'), | |
(100074,'800000592','2021FA','student'), | |
(100074,'800001189','2021FA','student'), | |
(100074,'800001952','2021FA','student'), | |
(100075,'800000057','2021FA','student'), | |
(100075,'800000246','2021FA','student'), | |
(100075,'800000294','2021FA','student'), | |
(100075,'800000450','2021FA','student'), | |
(100075,'800000719','2021FA','student'), | |
(100075,'800000727','2021FA','student'), | |
(100075,'800000864','2021FA','student'), | |
(100075,'800001276','2021FA','student'), | |
(100075,'800001640','2021FA','student'), | |
(100075,'800001795','2021FA','student'), | |
(100075,'800002165','2021FA','student'), | |
(100075,'800002379','2021FA','student'), | |
(100075,'800002403','2021FA','student'), | |
(100075,'800002465','2021FA','student'), | |
(100075,'800002648','2021FA','instructor'), | |
(100075,'800002719','2021FA','student'), | |
(100075,'800002854','2021FA','student'), | |
(100075,'800002902','2021FA','instructor'), | |
(100076,'800000326','2021FA','student'), | |
(100076,'800000547','2021FA','student'), | |
(100076,'800000896','2021FA','instructor'), | |
(100076,'800001131','2021FA','student'), | |
(100076,'800001296','2021FA','student'), | |
(100076,'800001426','2021FA','student'), | |
(100076,'800001451','2021FA','student'), | |
(100076,'800001814','2021FA','student'), | |
(100076,'800002080','2021FA','student'), | |
(100076,'800002458','2021FA','student'), | |
(100076,'800002603','2021FA','student'), | |
(100076,'800002606','2021FA','student'), | |
(100077,'800000155','2021FA','student'), | |
(100077,'800000261','2021FA','instructor'), | |
(100077,'800001184','2021FA','student'), | |
(100077,'800001424','2021FA','student'), | |
(100077,'800001488','2021FA','student'), | |
(100077,'800002697','2021FA','student'), | |
(100077,'800002838','2021FA','student'), | |
(100078,'800000418','2021FA','student'), | |
(100078,'800000826','2021FA','student'), | |
(100078,'800000853','2021FA','instructor'), | |
(100078,'800001021','2021FA','student'), | |
(100078,'800001303','2021FA','student'), | |
(100078,'800002371','2021FA','student'), | |
(100078,'800002395','2021FA','student'), | |
(100078,'800002609','2021FA','student'), | |
(100078,'800002664','2021FA','student'), | |
(100079,'800000031','2021FA','student'), | |
(100079,'800000489','2021FA','student'), | |
(100079,'800000954','2021FA','instructor'), | |
(100079,'800001232','2021FA','student'), | |
(100079,'800001713','2021FA','student'), | |
(100079,'800001745','2021FA','student'), | |
(100079,'800002087','2021FA','student'), | |
(100079,'800002418','2021FA','student'), | |
(100080,'800000192','2021FA','student'), | |
(100080,'800000270','2021FA','student'), | |
(100080,'800000520','2021FA','student'), | |
(100080,'800000755','2021FA','student'), | |
(100080,'800000827','2021FA','student'), | |
(100080,'800000886','2021FA','student'), | |
(100080,'800001012','2021FA','student'), | |
(100080,'800001777','2021FA','student'), | |
(100080,'800002091','2021FA','student'), | |
(100080,'800002142','2021FA','instructor'), | |
(100080,'800002676','2021FA','student'), | |
(100080,'800002730','2021FA','instructor'), | |
(100080,'800002766','2021FA','student'), | |
(100080,'800002833','2021FA','student'), | |
(100080,'800002911','2021FA','student'), | |
(100081,'800000160','2021FA','student'), | |
(100081,'800000297','2021FA','student'), | |
(100081,'800000327','2021FA','student'), | |
(100081,'800000520','2021FA','student'), | |
(100081,'800000710','2021FA','student'), | |
(100081,'800000853','2021FA','instructor'), | |
(100081,'800001699','2021FA','student'), | |
(100081,'800001933','2021FA','student'), | |
(100081,'800001960','2021FA','student'), | |
(100081,'800002297','2021FA','student'), | |
(100081,'800002515','2021FA','student'), | |
(100081,'800002627','2021FA','student'), | |
(100081,'800002871','2021FA','student'), | |
(100082,'800000137','2021FA','student'), | |
(100082,'800000441','2021FA','student'), | |
(100082,'800000727','2021FA','student'), | |
(100082,'800000987','2021FA','student'), | |
(100082,'800001021','2021FA','student'), | |
(100082,'800001076','2021FA','student'), | |
(100082,'800001263','2021FA','instructor'), | |
(100082,'800001431','2021FA','student'), | |
(100082,'800001644','2021FA','student'), | |
(100082,'800001696','2021FA','student'), | |
(100082,'800001782','2021FA','student'), | |
(100082,'800001796','2021FA','student'), | |
(100082,'800001927','2021FA','student'), | |
(100082,'800002133','2021FA','student'), | |
(100082,'800002444','2021FA','student'), | |
(100082,'800002878','2021FA','student'), | |
(100083,'800000398','2021FA','student'), | |
(100083,'800000403','2021FA','student'), | |
(100083,'800000905','2021FA','student'), | |
(100083,'800000924','2021FA','student'), | |
(100083,'800001554','2021FA','student'), | |
(100083,'800002142','2021FA','instructor'), | |
(100083,'800002172','2021FA','student'), | |
(100083,'800002304','2021FA','student'), | |
(100083,'800002644','2021FA','student'), | |
(100084,'800000137','2021FA','student'), | |
(100084,'800001136','2021FA','instructor'), | |
(100084,'800001695','2021FA','student'), | |
(100084,'800001993','2021FA','student'), | |
(100084,'800002269','2021FA','student'), | |
(100084,'800002790','2021FA','student'), | |
(100085,'800000261','2021FA','instructor'), | |
(100085,'800000821','2021FA','student'), | |
(100085,'800000961','2021FA','student'), | |
(100085,'800001098','2021FA','student'), | |
(100085,'800001198','2021FA','student'), | |
(100085,'800001231','2021FA','student'), | |
(100085,'800001363','2021FA','student'), | |
(100085,'800001771','2021FA','student'), | |
(100085,'800002117','2021FA','student'), | |
(100085,'800002268','2021FA','student'), | |
(100085,'800002730','2021FA','instructor'), | |
(100086,'800000738','2021FA','student'), | |
(100086,'800000809','2021FA','student'), | |
(100086,'800000942','2021FA','student'), | |
(100086,'800001044','2021FA','student'), | |
(100086,'800001054','2021FA','instructor'), | |
(100086,'800001434','2021FA','student'), | |
(100086,'800001817','2021FA','student'), | |
(100086,'800001891','2021FA','student'), | |
(100086,'800002196','2021FA','student'), | |
(100086,'800002403','2021FA','student'), | |
(100086,'800002476','2021FA','student'), | |
(100086,'800002520','2021FA','instructor'), | |
(100086,'800002714','2021FA','student'), | |
(100087,'800000193','2021FA','student'), | |
(100087,'800000394','2021FA','student'), | |
(100087,'800000767','2021FA','student'), | |
(100087,'800001180','2021FA','student'), | |
(100087,'800001239','2021FA','student'), | |
(100087,'800001558','2021FA','instructor'), | |
(100087,'800001613','2021FA','student'), | |
(100087,'800001860','2021FA','student'), | |
(100087,'800002515','2021FA','student'), | |
(100087,'800002622','2021FA','student'), | |
(100088,'800000404','2021FA','student'), | |
(100088,'800000515','2021FA','student'), | |
(100088,'800000768','2021FA','student'), | |
(100088,'800001127','2021FA','student'), | |
(100088,'800001360','2021FA','student'), | |
(100088,'800001374','2021FA','student'), | |
(100088,'800001475','2021FA','student'), | |
(100088,'800001561','2021FA','student'), | |
(100088,'800001687','2021FA','student'), | |
(100088,'800001915','2021FA','student'), | |
(100088,'800001984','2021FA','student'), | |
(100088,'800002312','2021FA','student'), | |
(100088,'800002644','2021FA','student'), | |
(100088,'800002664','2021FA','student'), | |
(100088,'800002786','2021FA','student'), | |
(100088,'800002889','2021FA','student'), | |
(100089,'800000570','2021FA','student'), | |
(100089,'800000705','2021FA','student'), | |
(100089,'800001450','2021FA','student'), | |
(100089,'800001513','2021FA','student'), | |
(100089,'800001986','2021FA','student'), | |
(100089,'800002629','2021FA','student'), | |
(100090,'800000063','2021FA','student'), | |
(100090,'800000721','2021FA','student'), | |
(100090,'800000743','2021FA','student'), | |
(100090,'800001141','2021FA','instructor'), | |
(100090,'800001641','2021FA','student'), | |
(100091,'800000463','2021FA','student'), | |
(100091,'800000622','2021FA','student'), | |
(100091,'800000807','2021FA','student'), | |
(100091,'800001012','2021FA','student'), | |
(100091,'800001499','2021FA','student'), | |
(100091,'800001604','2021FA','instructor'), | |
(100091,'800001787','2021FA','student'), | |
(100091,'800001867','2021FA','instructor'), | |
(100091,'800002004','2021FA','student'), | |
(100091,'800002264','2021FA','student'), | |
(100091,'800002817','2021FA','student'), | |
(100091,'800002932','2021FA','student'), | |
(100092,'800000113','2021FA','student'), | |
(100092,'800000122','2021FA','instructor'), | |
(100092,'800000951','2021FA','student'), | |
(100092,'800001250','2021FA','student'), | |
(100092,'800002160','2021FA','student'), | |
(100092,'800002283','2021FA','instructor'), | |
(100092,'800002810','2021FA','student'), | |
(100092,'800002889','2021FA','student'), | |
(100092,'800002923','2021FA','student'), | |
(100093,'800000554','2021FA','student'), | |
(100093,'800000765','2021FA','student'), | |
(100093,'800000788','2021FA','instructor'), | |
(100093,'800000845','2021FA','student'), | |
(100093,'800001076','2021FA','student'), | |
(100093,'800001257','2021FA','student'), | |
(100093,'800001303','2021FA','student'), | |
(100093,'800001581','2021FA','student'), | |
(100093,'800001867','2021FA','instructor'), | |
(100093,'800002056','2021FA','student'), | |
(100093,'800002090','2021FA','student'), | |
(100093,'800002583','2021FA','student'), | |
(100093,'800002814','2021FA','student'), | |
(100094,'800000097','2021FA','student'), | |
(100094,'800000197','2021FA','student'), | |
(100094,'800000471','2021FA','student'), | |
(100094,'800000625','2021FA','student'), | |
(100094,'800000882','2021FA','student'), | |
(100094,'800000891','2021FA','student'), | |
(100094,'800001115','2021FA','instructor'), | |
(100094,'800001141','2021FA','instructor'), | |
(100094,'800001296','2021FA','student'), | |
(100094,'800001396','2021FA','student'), | |
(100094,'800001715','2021FA','student'), | |
(100094,'800001756','2021FA','student'), | |
(100094,'800002159','2021FA','student'), | |
(100094,'800002163','2021FA','student'), | |
(100095,'800000122','2021FA','instructor'), | |
(100095,'800000627','2021FA','student'), | |
(100095,'800000720','2021FA','student'), | |
(100095,'800000748','2021FA','student'), | |
(100095,'800000778','2021FA','student'), | |
(100095,'800001175','2021FA','instructor'), | |
(100095,'800001367','2021FA','student'), | |
(100095,'800001540','2021FA','student'), | |
(100095,'800002299','2021FA','student'), | |
(100095,'800002438','2021FA','student'), | |
(100095,'800002447','2021FA','student'), | |
(100095,'800002515','2021FA','student'), | |
(100095,'800002589','2021FA','student'), | |
(100095,'800002737','2021FA','student'), | |
(100095,'800002945','2021FA','student'), | |
(100096,'800000273','2021FA','student'), | |
(100096,'800000644','2021FA','student'), | |
(100096,'800000827','2021FA','student'), | |
(100096,'800000920','2021FA','student'), | |
(100096,'800001133','2021FA','student'), | |
(100096,'800001358','2021FA','student'), | |
(100096,'800001707','2021FA','student'), | |
(100096,'800002703','2021FA','student'), | |
(100096,'800002800','2021FA','student'), | |
(100096,'800002930','2021FA','student'), | |
(100097,'800000958','2021FA','instructor'), | |
(100097,'800001133','2021FA','student'), | |
(100097,'800001175','2021FA','instructor'), | |
(100097,'800001324','2021FA','student'), | |
(100097,'800001342','2021FA','student'), | |
(100097,'800001524','2021FA','student'), | |
(100097,'800001625','2021FA','student'), | |
(100097,'800001916','2021FA','student'), | |
(100097,'800002574','2021FA','student'), | |
(100097,'800002583','2021FA','student'), | |
(100098,'800000167','2021FA','student'), | |
(100098,'800000495','2021FA','student'), | |
(100098,'800000748','2021FA','student'), | |
(100098,'800000788','2021FA','instructor'), | |
(100098,'800001115','2021FA','instructor'), | |
(100098,'800001213','2021FA','student'), | |
(100098,'800001363','2021FA','student'), | |
(100098,'800001604','2021FA','instructor'), | |
(100098,'800001841','2021FA','student'), | |
(100098,'800001983','2021FA','student'), | |
(100098,'800002283','2021FA','instructor'), | |
(100098,'800002340','2021FA','student'), | |
(100098,'800002584','2021FA','student'), | |
(100099,'800000213','2021FA','student'), | |
(100099,'800000418','2021FA','student'), | |
(100099,'800000538','2021FA','student'), | |
(100099,'800000641','2021FA','student'), | |
(100099,'800000874','2021FA','student'), | |
(100099,'800001468','2021FA','student'), | |
(100099,'800001503','2021FA','student'), | |
(100099,'800001656','2021FA','instructor'), | |
(100099,'800001684','2021FA','instructor'), | |
(100099,'800001852','2021FA','student'), | |
(100099,'800002121','2021FA','instructor'), | |
(100099,'800002311','2021FA','student'), | |
(100099,'800002355','2021FA','student'), | |
(100100,'800000577','2021FA','student'), | |
(100100,'800001183','2021FA','student'), | |
(100100,'800001551','2021FA','instructor'), | |
(100100,'800001997','2021FA','student'), | |
(100100,'800002001','2021FA','student'), | |
(100100,'800002706','2021FA','instructor'), | |
(100100,'800002953','2021FA','student'), | |
(100101,'800000039','2021FA','student'), | |
(100101,'800000367','2021FA','student'), | |
(100101,'800001154','2021FA','student'), | |
(100101,'800001792','2021FA','student'), | |
(100101,'800001815','2021FA','student'), | |
(100101,'800001857','2021FA','student'), | |
(100101,'800002137','2021FA','student'), | |
(100101,'800002673','2021FA','student'), | |
(100102,'800000672','2021FA','student'), | |
(100102,'800001630','2021FA','student'), | |
(100102,'800002252','2021FA','instructor'), | |
(100102,'800002470','2021FA','student'), | |
(100102,'800002706','2021FA','instructor'), | |
(100102,'800002985','2021FA','student'), | |
(100103,'800000534','2021FA','student'), | |
(100103,'800000568','2021FA','student'), | |
(100103,'800000601','2021FA','instructor'), | |
(100103,'800000615','2021FA','student'), | |
(100103,'800000930','2021FA','student'), | |
(100103,'800001337','2021FA','student'), | |
(100103,'800002029','2021FA','student'), | |
(100103,'800002229','2021FA','student'), | |
(100103,'800002252','2021FA','instructor'), | |
(100103,'800002687','2021FA','student'), | |
(100103,'800002749','2021FA','student'), | |
(100104,'800000007','2021FA','student'), | |
(100104,'800000580','2021FA','student'), | |
(100104,'800001536','2021FA','student'), | |
(100104,'800001754','2021FA','student'), | |
(100104,'800002416','2021FA','student'), | |
(100104,'800002753','2021FA','student'), | |
(100105,'800001226','2021FA','student'), | |
(100105,'800001305','2021FA','student'), | |
(100105,'800001540','2021FA','student'), | |
(100105,'800001599','2021FA','student'), | |
(100105,'800002393','2021FA','student'), | |
(100105,'800002461','2021FA','student'), | |
(100105,'800002464','2021FA','student'), | |
(100105,'800002808','2021FA','student'), | |
(100105,'800002962','2021FA','instructor'), | |
(100106,'800000213','2021FA','student'), | |
(100106,'800000328','2021FA','instructor'), | |
(100106,'800000343','2021FA','student'), | |
(100106,'800000503','2021FA','student'), | |
(100106,'800000687','2021FA','student'), | |
(100106,'800001019','2021FA','student'), | |
(100106,'800001225','2021FA','student'), | |
(100106,'800001239','2021FA','student'), | |
(100106,'800001531','2021FA','student'), | |
(100106,'800001635','2021FA','student'), | |
(100106,'800001653','2021FA','student'), | |
(100106,'800001831','2021FA','student'), | |
(100106,'800001994','2021FA','student'), | |
(100106,'800002017','2021FA','student'), | |
(100106,'800002140','2021FA','student'), | |
(100106,'800002258','2021FA','student'), | |
(100106,'800002463','2021FA','student'), | |
(100106,'800002514','2021FA','student'), | |
(100107,'800000093','2021FA','student'), | |
(100107,'800000215','2021FA','student'), | |
(100107,'800000339','2021FA','student'), | |
(100107,'800000403','2021FA','student'), | |
(100107,'800001474','2021FA','student'), | |
(100107,'800001509','2021FA','student'), | |
(100107,'800001551','2021FA','instructor'), | |
(100107,'800001657','2021FA','student'), | |
(100107,'800002121','2021FA','instructor'), | |
(100107,'800002438','2021FA','student'), | |
(100107,'800002785','2021FA','student'), | |
(100107,'800002923','2021FA','student'), | |
(100108,'800000328','2021FA','instructor'), | |
(100108,'800000712','2021FA','student'), | |
(100108,'800001233','2021FA','student'), | |
(100108,'800001345','2021FA','student'), | |
(100108,'800001585','2021FA','student'), | |
(100108,'800001684','2021FA','instructor'), | |
(100108,'800001814','2021FA','student'), | |
(100108,'800002115','2021FA','student'), | |
(100108,'800002548','2021FA','student'), | |
(100108,'800002605','2021FA','student'), | |
(100108,'800002672','2021FA','student'), | |
(100108,'800002753','2021FA','student'), | |
(100108,'800002791','2021FA','student'), | |
(100108,'800002905','2021FA','student'), | |
(100109,'800000256','2021FA','student'), | |
(100109,'800000458','2021FA','student'), | |
(100109,'800000601','2021FA','instructor'), | |
(100109,'800000717','2021FA','student'), | |
(100109,'800001090','2021FA','student'), | |
(100109,'800001192','2021FA','student'), | |
(100109,'800001230','2021FA','student'), | |
(100109,'800001248','2021FA','student'), | |
(100109,'800001252','2021FA','student'), | |
(100109,'800001343','2021FA','student'), | |
(100109,'800001520','2021FA','student'), | |
(100109,'800002373','2021FA','student'), | |
(100109,'800002924','2021FA','student'), | |
(100109,'800002988','2021FA','student'), | |
(100110,'800001322','2021FA','student'), | |
(100110,'800001573','2021FA','student'), | |
(100110,'800001669','2021FA','instructor'), | |
(100110,'800001692','2021FA','student'), | |
(100110,'800001859','2021FA','student'), | |
(100110,'800002149','2021FA','student'), | |
(100110,'800002152','2021FA','student'), | |
(100110,'800002277','2021FA','student'), | |
(100110,'800002359','2021FA','student'), | |
(100110,'800002616','2021FA','student'), | |
(100110,'800002696','2021FA','instructor'), | |
(100110,'800002994','2021FA','student'), | |
(100111,'800000041','2021FA','student'), | |
(100111,'800000343','2021FA','student'), | |
(100111,'800000346','2021FA','student'), | |
(100111,'800000381','2021FA','student'), | |
(100111,'800000903','2021FA','student'), | |
(100111,'800001316','2021FA','student'), | |
(100111,'800001916','2021FA','student'), | |
(100111,'800001995','2021FA','student'), | |
(100111,'800002205','2021FA','student'), | |
(100111,'800002268','2021FA','student'), | |
(100111,'800002444','2021FA','student'), | |
(100111,'800002471','2021FA','student'), | |
(100112,'800001269','2021FA','instructor'), | |
(100112,'800001283','2021FA','student'), | |
(100112,'800001342','2021FA','student'), | |
(100112,'800001611','2021FA','student'), | |
(100112,'800002315','2021FA','student'), | |
(100112,'800002596','2021FA','student'), | |
(100113,'800000154','2021FA','student'), | |
(100113,'800000940','2021FA','student'), | |
(100113,'800001117','2021FA','student'), | |
(100113,'800001710','2021FA','student'), | |
(100113,'800001787','2021FA','student'), | |
(100113,'800002523','2021FA','student'), | |
(100113,'800002987','2021FA','student'), | |
(100114,'800000192','2021FA','student'), | |
(100114,'800000318','2021FA','instructor'), | |
(100114,'800000318','2021FA','instructor'), | |
(100114,'800000474','2021FA','student'), | |
(100114,'800000579','2021FA','student'), | |
(100114,'800000889','2021FA','student'), | |
(100114,'800000973','2021FA','instructor'), | |
(100114,'800001231','2021FA','student'), | |
(100114,'800001269','2021FA','instructor'), | |
(100114,'800001465','2021FA','instructor'), | |
(100114,'800001612','2021FA','student'), | |
(100114,'800002987','2021FA','student'), | |
(100115,'800000231','2021FA','student'), | |
(100115,'800000577','2021FA','student'), | |
(100115,'800000755','2021FA','student'), | |
(100115,'800000902','2021FA','student'), | |
(100115,'800000957','2021FA','instructor'), | |
(100115,'800001083','2021FA','instructor'), | |
(100115,'800001981','2021FA','student'), | |
(100115,'800002607','2021FA','student'), | |
(100115,'800002617','2021FA','student'), | |
(100116,'800000085','2021FA','student'), | |
(100116,'800000421','2021FA','student'), | |
(100116,'800000645','2021FA','student'), | |
(100116,'800000679','2021FA','student'), | |
(100116,'800000701','2021FA','student'), | |
(100116,'800000768','2021FA','student'), | |
(100116,'800000840','2021FA','student'), | |
(100116,'800001573','2021FA','student'), | |
(100116,'800001872','2021FA','student'), | |
(100116,'800002587','2021FA','student'), | |
(100116,'800002596','2021FA','student'), | |
(100116,'800002609','2021FA','student'), | |
(100117,'800000521','2021FA','student'), | |
(100117,'800000630','2021FA','student'), | |
(100117,'800000904','2021FA','student'), | |
(100117,'800000973','2021FA','instructor'), | |
(100117,'800001669','2021FA','instructor'), | |
(100117,'800001724','2021FA','student'), | |
(100117,'800002299','2021FA','student'), | |
(100117,'800002346','2021FA','student'), | |
(100117,'800002378','2021FA','student'), | |
(100117,'800002417','2021FA','student'), | |
(100117,'800002478','2021FA','student'), | |
(100117,'800002880','2021FA','student'), | |
(100117,'800002948','2021FA','student'), | |
(100118,'800000584','2021FA','student'), | |
(100118,'800000664','2021FA','student'), | |
(100118,'800000903','2021FA','student'), | |
(100118,'800001469','2021FA','student'), | |
(100118,'800001900','2021FA','student'), | |
(100118,'800001989','2021FA','student'), | |
(100118,'800002158','2021FA','instructor'), | |
(100118,'800002257','2021FA','student'), | |
(100118,'800002662','2021FA','student'), | |
(100118,'800002677','2021FA','student'), | |
(100118,'800002854','2021FA','student'), | |
(100119,'800000350','2021FA','student'), | |
(100119,'800000365','2021FA','student'), | |
(100119,'800000821','2021FA','student'), | |
(100119,'800001091','2021FA','student'), | |
(100119,'800001308','2021FA','student'), | |
(100119,'800001989','2021FA','student'), | |
(100119,'800002833','2021FA','student'), | |
(100120,'800000225','2021FA','student'), | |
(100120,'800000957','2021FA','instructor'), | |
(100120,'800001082','2021FA','instructor'), | |
(100120,'800001721','2021FA','student'), | |
(100120,'800001817','2021FA','student'), | |
(100120,'800001987','2021FA','student'), | |
(100120,'800002515','2021FA','student'), | |
(100121,'800000013','2021FA','student'), | |
(100121,'800000406','2021FA','student'), | |
(100121,'800000408','2021FA','instructor'), | |
(100121,'800000419','2021FA','student'), | |
(100121,'800000790','2021FA','student'), | |
(100121,'800000891','2021FA','student'), | |
(100121,'800000950','2021FA','instructor'), | |
(100121,'800001144','2021FA','student'), | |
(100121,'800001371','2021FA','student'), | |
(100121,'800001689','2021FA','student'), | |
(100121,'800001735','2021FA','student'), | |
(100121,'800001932','2021FA','student'), | |
(100121,'800002006','2021FA','student'), | |
(100121,'800002133','2021FA','student'), | |
(100121,'800002314','2021FA','student'), | |
(100121,'800002525','2021FA','student'), | |
(100121,'800002894','2021FA','student'), | |
(100122,'800000309','2021FA','student'), | |
(100122,'800000467','2021FA','instructor'), | |
(100122,'800000691','2021FA','instructor'), | |
(100122,'800000889','2021FA','student'), | |
(100122,'800000911','2021FA','student'), | |
(100122,'800000960','2021FA','student'), | |
(100122,'800001021','2021FA','student'), | |
(100122,'800001085','2021FA','student'), | |
(100122,'800001626','2021FA','student'), | |
(100122,'800001706','2021FA','student'), | |
(100122,'800001996','2021FA','student'), | |
(100122,'800002606','2021FA','student'), | |
(100122,'800002645','2021FA','student'), | |
(100123,'800000365','2021FA','student'), | |
(100123,'800000408','2021FA','instructor'), | |
(100123,'800000461','2021FA','student'), | |
(100123,'800000708','2021FA','student'), | |
(100123,'800001078','2021FA','student'), | |
(100123,'800001132','2021FA','student'), | |
(100123,'800001739','2021FA','instructor'), | |
(100123,'800001817','2021FA','student'), | |
(100123,'800002000','2021FA','instructor'), | |
(100123,'800002197','2021FA','student'), | |
(100124,'800000210','2021FA','student'), | |
(100124,'800000467','2021FA','instructor'), | |
(100124,'800001038','2021FA','student'), | |
(100124,'800001283','2021FA','student'), | |
(100124,'800001309','2021FA','student'), | |
(100124,'800001314','2021FA','student'), | |
(100124,'800001694','2021FA','student'), | |
(100124,'800001730','2021FA','student'), | |
(100124,'800001919','2021FA','student'), | |
(100124,'800001977','2021FA','student'), | |
(100124,'800002000','2021FA','instructor'), | |
(100124,'800002269','2021FA','student'), | |
(100124,'800002463','2021FA','student'), | |
(100124,'800002657','2021FA','student'), | |
(100124,'800002701','2021FA','student'), | |
(100124,'800002770','2021FA','student'), | |
(100124,'800002920','2021FA','student'), | |
(100124,'800002932','2021FA','student'), | |
(100125,'800000106','2021FA','student'), | |
(100125,'800000332','2021FA','student'), | |
(100125,'800000398','2021FA','student'), | |
(100125,'800000411','2021FA','student'), | |
(100125,'800000509','2021FA','student'), | |
(100125,'800000641','2021FA','student'), | |
(100125,'800001612','2021FA','student'), | |
(100125,'800001825','2021FA','instructor'), | |
(100125,'800002089','2021FA','student'), | |
(100125,'800002869','2021FA','student'), | |
(100126,'800000273','2021FA','student'), | |
(100126,'800001019','2021FA','student'), | |
(100126,'800001767','2021FA','student'), | |
(100126,'800001916','2021FA','student'), | |
(100126,'800002249','2021FA','student'), | |
(100126,'800002311','2021FA','student'), | |
(100126,'800002791','2021FA','student'), | |
(100126,'800002803','2021FA','student'), | |
(100126,'800002925','2021FA','student'), | |
(100127,'800000293','2021FA','student'), | |
(100127,'800000580','2021FA','student'), | |
(100127,'800000585','2021FA','student'), | |
(100127,'800000718','2021FA','student'), | |
(100127,'800000799','2021FA','student'), | |
(100127,'800001104','2021FA','student'), | |
(100127,'800001204','2021FA','instructor'), | |
(100127,'800001399','2021FA','student'), | |
(100127,'800001550','2021FA','student'), | |
(100127,'800001751','2021FA','student'), | |
(100127,'800001782','2021FA','student'), | |
(100127,'800001799','2021FA','student'), | |
(100127,'800001825','2021FA','instructor'), | |
(100127,'800001968','2021FA','student'), | |
(100127,'800002133','2021FA','student'), | |
(100127,'800002320','2021FA','student'), | |
(100127,'800002483','2021FA','student'), | |
(100127,'800002622','2021FA','student'), | |
(100127,'800002629','2021FA','student'), | |
(100128,'800000137','2021FA','student'), | |
(100128,'800000393','2021FA','student'), | |
(100128,'800000637','2021FA','student'), | |
(100128,'800000656','2021FA','student'), | |
(100128,'800001371','2021FA','student'), | |
(100128,'800001481','2021FA','student'), | |
(100128,'800001692','2021FA','student'), | |
(100128,'800001941','2021FA','student'), | |
(100128,'800002130','2021FA','instructor'), | |
(100128,'800002301','2021FA','student'), | |
(100128,'800002361','2021FA','student'), | |
(100128,'800002370','2021FA','student'), | |
(100128,'800002449','2021FA','student'), | |
(100128,'800002514','2021FA','student'), | |
(100128,'800002526','2021FA','student'), | |
(100129,'800000348','2021FA','student'), | |
(100129,'800001154','2021FA','student'), | |
(100129,'800001341','2021FA','student'), | |
(100129,'800001552','2021FA','student'), | |
(100129,'800002123','2021FA','student'), | |
(100129,'800002135','2021FA','student'), | |
(100129,'800002184','2021FA','student'), | |
(100129,'800002621','2021FA','student'), | |
(100129,'800002726','2021FA','student'), | |
(100129,'800002727','2021FA','student'), | |
(100130,'800000231','2021FA','student'), | |
(100130,'800000518','2021FA','student'), | |
(100130,'800000634','2021FA','student'), | |
(100130,'800000662','2021FA','student'), | |
(100130,'800000950','2021FA','instructor'), | |
(100130,'800000961','2021FA','student'), | |
(100130,'800001059','2021FA','student'), | |
(100130,'800001248','2021FA','student'), | |
(100130,'800001750','2021FA','student'), | |
(100130,'800001955','2021FA','student'), | |
(100130,'800002026','2021FA','student'), | |
(100130,'800002479','2021FA','student'), | |
(100130,'800002627','2021FA','student'), | |
(100131,'800000754','2021FA','student'), | |
(100131,'800000828','2021FA','student'), | |
(100131,'800001348','2021FA','student'), | |
(100131,'800001748','2021FA','student'), | |
(100131,'800001917','2021FA','student'), | |
(100131,'800002025','2021FA','student'), | |
(100131,'800002074','2021FA','student'), | |
(100131,'800002140','2021FA','student'), | |
(100131,'800002417','2021FA','student'), | |
(100131,'800002619','2021FA','student'), | |
(100131,'800002960','2021FA','student'), | |
(100132,'800000497','2021FA','student'), | |
(100132,'800000622','2021FA','student'), | |
(100132,'800000642','2021FA','student'), | |
(100132,'800001153','2021FA','student'), | |
(100132,'800001192','2021FA','student'), | |
(100132,'800001316','2021FA','student'), | |
(100132,'800001409','2021FA','student'), | |
(100132,'800001545','2021FA','student'), | |
(100132,'800002110','2021FA','instructor'), | |
(100133,'800000467','2021FA','student'), | |
(100133,'800000495','2021FA','student'), | |
(100133,'800000623','2021FA','student'), | |
(100133,'800000989','2021FA','student'), | |
(100133,'800001373','2021FA','student'), | |
(100133,'800001476','2021FA','student'), | |
(100133,'800001715','2021FA','student'), | |
(100133,'800002458','2021FA','student'), | |
(100134,'800000141','2021FA','student'), | |
(100134,'800000801','2021FA','student'), | |
(100134,'800000850','2021FA','student'), | |
(100134,'800001674','2021FA','student'), | |
(100134,'800001991','2021FA','student'), | |
(100134,'800002292','2021FA','student'), | |
(100134,'800002984','2021FA','student'), | |
(100135,'800000886','2021FA','student'), | |
(100135,'800000952','2021FA','student'), | |
(100135,'800001014','2021FA','student'), | |
(100135,'800001180','2021FA','student'), | |
(100135,'800001252','2021FA','student'), | |
(100135,'800001467','2021FA','instructor'), | |
(100135,'800001624','2021FA','instructor'), | |
(100135,'800002209','2021FA','student'), | |
(100135,'800002418','2021FA','student'), | |
(100135,'800002507','2021FA','instructor'), | |
(100135,'800002588','2021FA','student'), | |
(100135,'800002727','2021FA','student'), | |
(100136,'800000049','2021FA','student'), | |
(100136,'800000466','2021FA','student'), | |
(100136,'800000600','2021FA','instructor'), | |
(100136,'800000701','2021FA','student'), | |
(100136,'800000749','2021FA','student'), | |
(100136,'800000819','2021FA','student'), | |
(100136,'800001048','2021FA','student'), | |
(100136,'800001182','2021FA','student'), | |
(100136,'800001496','2021FA','student'), | |
(100136,'800001645','2021FA','student'), | |
(100136,'800002149','2021FA','student'), | |
(100136,'800002257','2021FA','student'), | |
(100136,'800002326','2021FA','student'), | |
(100136,'800002835','2021FA','student'), | |
(100137,'800000139','2021FA','instructor'), | |
(100137,'800000188','2021FA','student'), | |
(100137,'800000461','2021FA','student'), | |
(100137,'800000692','2021FA','student'), | |
(100137,'800000758','2021FA','instructor'), | |
(100137,'800001187','2021FA','student'), | |
(100137,'800001532','2021FA','student'), | |
(100137,'800001586','2021FA','student'), | |
(100137,'800001705','2021FA','student'), | |
(100137,'800002311','2021FA','student'), | |
(100137,'800002984','2021FA','student'), | |
(100138,'800000033','2021FA','student'), | |
(100138,'800000441','2021FA','student'), | |
(100138,'800000570','2021FA','student'), | |
(100138,'800000623','2021FA','student'), | |
(100138,'800000681','2021FA','instructor'), | |
(100138,'800001010','2021FA','student'), | |
(100138,'800001138','2021FA','student'), | |
(100138,'800001277','2021FA','student'), | |
(100138,'800001741','2021FA','student'), | |
(100138,'800001783','2021FA','student'), | |
(100138,'800002300','2021FA','student'), | |
(100138,'800002778','2021FA','student'), | |
(100138,'800002823','2021FA','instructor'), | |
(100139,'800000892','2021FA','student'), | |
(100139,'800001721','2021FA','student'), | |
(100139,'800001956','2021FA','student'), | |
(100139,'800001986','2021FA','student'), | |
(100139,'800002114','2021FA','instructor'), | |
(100139,'800002422','2021FA','student'), | |
(100139,'800002493','2021FA','student'), | |
(100140,'800000044','2021FA','student'), | |
(100140,'800000055','2021FA','student'), | |
(100140,'800000210','2021FA','student'), | |
(100140,'800000632','2021FA','student'), | |
(100140,'800001067','2021FA','student'), | |
(100140,'800001085','2021FA','student'), | |
(100140,'800001144','2021FA','student'), | |
(100140,'800001226','2021FA','student'), | |
(100140,'800001318','2021FA','student'), | |
(100140,'800001424','2021FA','student'), | |
(100140,'800001488','2021FA','student'), | |
(100140,'800001564','2021FA','student'), | |
(100140,'800001624','2021FA','instructor'), | |
(100140,'800001640','2021FA','student'), | |
(100140,'800001767','2021FA','student'), | |
(100140,'800002054','2021FA','student'), | |
(100140,'800002241','2021FA','student'), | |
(100140,'800002695','2021FA','student'), | |
(100141,'800000514','2021FA','student'), | |
(100141,'800000588','2021FA','student'), | |
(100141,'800000840','2021FA','student'), | |
(100141,'800000990','2021FA','student'), | |
(100141,'800000996','2021FA','student'), | |
(100141,'800001148','2021FA','student'), | |
(100141,'800001596','2021FA','student'), | |
(100141,'800001643','2021FA','student'), | |
(100141,'800001687','2021FA','student'), | |
(100141,'800001712','2021FA','student'), | |
(100141,'800001740','2021FA','student'), | |
(100141,'800001779','2021FA','student'), | |
(100141,'800002207','2021FA','student'), | |
(100141,'800002461','2021FA','student'), | |
(100141,'800002638','2021FA','student'), | |
(100141,'800002823','2021FA','instructor'), | |
(100141,'800002911','2021FA','student'), | |
(100142,'800000106','2021FA','student'), | |
(100142,'800000424','2021FA','student'), | |
(100142,'800000486','2021FA','student'), | |
(100142,'800000543','2021FA','student'), | |
(100142,'800000644','2021FA','student'), | |
(100142,'800000936','2021FA','student'), | |
(100142,'800001206','2021FA','student'), | |
(100142,'800001207','2021FA','student'), | |
(100142,'800001308','2021FA','student'), | |
(100142,'800001631','2021FA','student'), | |
(100142,'800002524','2021FA','student'), | |
(100143,'800000330','2021FA','student'), | |
(100143,'800000723','2021FA','student'), | |
(100143,'800001048','2021FA','student'), | |
(100143,'800001127','2021FA','student'), | |
(100143,'800001442','2021FA','student'), | |
(100143,'800001697','2021FA','student'), | |
(100143,'800001782','2021FA','student'), | |
(100143,'800001798','2021FA','student'), | |
(100143,'800002201','2021FA','student'), | |
(100143,'800002257','2021FA','student'), | |
(100143,'800002721','2021FA','instructor'), | |
(100143,'800002814','2021FA','student'), | |
(100143,'800002862','2021FA','student'), | |
(100144,'800000275','2021FA','student'), | |
(100144,'800000592','2021FA','student'), | |
(100144,'800000720','2021FA','student'), | |
(100144,'800000744','2021FA','student'), | |
(100144,'800001332','2021FA','student'), | |
(100144,'800001505','2021FA','student'), | |
(100144,'800001645','2021FA','student'), | |
(100144,'800001695','2021FA','student'), | |
(100144,'800001831','2021FA','student'), | |
(100144,'800002123','2021FA','student'), | |
(100144,'800002338','2021FA','student'), | |
(100144,'800002549','2021FA','student'), | |
(100144,'800002565','2021FA','instructor'), | |
(100144,'800002858','2021FA','instructor'), | |
(100144,'800002956','2021FA','student'), | |
(100145,'800000074','2021FA','student'), | |
(100145,'800000375','2021FA','student'), | |
(100145,'800001270','2021FA','student'), | |
(100145,'800001296','2021FA','student'), | |
(100145,'800001779','2021FA','student'), | |
(100145,'800002574','2021FA','student'), | |
(100145,'800002956','2021FA','student'), | |
(100146,'800000581','2021FA','student'), | |
(100146,'800000754','2021FA','student'), | |
(100146,'800000826','2021FA','student'), | |
(100146,'800001109','2021FA','instructor'), | |
(100146,'800001226','2021FA','student'), | |
(100146,'800001316','2021FA','student'), | |
(100146,'800001943','2021FA','instructor'), | |
(100146,'800002443','2021FA','student'), | |
(100146,'800002719','2021FA','student'), | |
(100147,'800000012','2021FA','student'), | |
(100147,'800000136','2021FA','student'), | |
(100147,'800000914','2021FA','student'), | |
(100147,'800001271','2021FA','student'), | |
(100147,'800001273','2021FA','student'), | |
(100147,'800001699','2021FA','student'), | |
(100147,'800002524','2021FA','student'), | |
(100148,'800000325','2021FA','instructor'), | |
(100148,'800000393','2021FA','student'), | |
(100148,'800000404','2021FA','instructor'), | |
(100148,'800001109','2021FA','instructor'), | |
(100148,'800001315','2021FA','student'), | |
(100148,'800001350','2021FA','student'), | |
(100148,'800001596','2021FA','student'), | |
(100148,'800001683','2021FA','student'), | |
(100148,'800001783','2021FA','student'), | |
(100148,'800002187','2021FA','student'), | |
(100148,'800002604','2021FA','student'), | |
(100148,'800002835','2021FA','student'), | |
(100148,'800002858','2021FA','instructor'), | |
(100149,'800000136','2021FA','student'), | |
(100149,'800000272','2021FA','student'), | |
(100149,'800000502','2021FA','student'), | |
(100149,'800000877','2021FA','student'), | |
(100149,'800001048','2021FA','student'), | |
(100149,'800001297','2021FA','instructor'), | |
(100149,'800001538','2021FA','student'), | |
(100149,'800001713','2021FA','student'), | |
(100149,'800002516','2021FA','student'), | |
(100149,'800002749','2021FA','student'), | |
(100149,'800002803','2021FA','student'), | |
(100149,'800002960','2021FA','student'), | |
(100149,'800002988','2021FA','student'), | |
(100150,'800000085','2021FA','student'), | |
(100150,'800000102','2021FA','student'), | |
(100150,'800000642','2021FA','student'), | |
(100150,'800001094','2021FA','student'), | |
(100150,'800001513','2021FA','student'), | |
(100150,'800001606','2021FA','student'), | |
(100150,'800001943','2021FA','instructor'), | |
(100150,'800002067','2021FA','instructor'), | |
(100150,'800002124','2021FA','student'), | |
(100150,'800002196','2021FA','student'), | |
(100150,'800002565','2021FA','instructor'), | |
(100150,'800002602','2021FA','instructor'), | |
(100150,'800002695','2021FA','student'), | |
(100150,'800002783','2021FA','student'), | |
(100151,'800000038','2021FA','student'), | |
(100151,'800000486','2021FA','student'), | |
(100151,'800000664','2021FA','student'), | |
(100151,'800001205','2021FA','student'), | |
(100151,'800001229','2021FA','student'), | |
(100151,'800002067','2021FA','instructor'), | |
(100151,'800002322','2021FA','student'), | |
(100151,'800002827','2021FA','student'), | |
(100151,'800002911','2021FA','student'), | |
(100151,'800002998','2021FA','student'), | |
(100152,'800000325','2021FA','instructor'), | |
(100152,'800000628','2021FA','student'), | |
(100152,'800000803','2021FA','student'), | |
(100152,'800001090','2021FA','student'), | |
(100152,'800001172','2021FA','student'), | |
(100152,'800001378','2021FA','student'), | |
(100152,'800001528','2021FA','student'), | |
(100152,'800001667','2021FA','student'), | |
(100152,'800001927','2021FA','student'), | |
(100152,'800002253','2021FA','student'), | |
(100152,'800002427','2021FA','student'), | |
(100152,'800002602','2021FA','instructor'), | |
(100152,'800002620','2021FA','student'), | |
(100152,'800002862','2021FA','student'), | |
(100153,'800001428','2021FA','student'), | |
(100153,'800002030','2021FA','student'), | |
(100153,'800002718','2021FA','student'), | |
(100153,'800002815','2021FA','student'), | |
(100153,'800002854','2021FA','student'), | |
(100154,'800000542','2021FA','student'), | |
(100154,'800000652','2021FA','student'), | |
(100154,'800000679','2021FA','student'), | |
(100154,'800000719','2021FA','student'), | |
(100154,'800001034','2021FA','student'), | |
(100154,'800001519','2021FA','student'), | |
(100154,'800001639','2021FA','student'), | |
(100154,'800001783','2021FA','student'), | |
(100154,'800001895','2021FA','student'), | |
(100154,'800002010','2021FA','student'), | |
(100154,'800002229','2021FA','student'), | |
(100154,'800002258','2021FA','student'), | |
(100154,'800002338','2021FA','student'), | |
(100154,'800002389','2021FA','instructor'), | |
(100154,'800002653','2021FA','student'), | |
(100155,'800000284','2021FA','student'), | |
(100155,'800000322','2021FA','student'), | |
(100155,'800000339','2021FA','student'), | |
(100155,'800000706','2021FA','instructor'), | |
(100155,'800001314','2021FA','student'), | |
(100155,'800001325','2021FA','student'), | |
(100155,'800001377','2021FA','student'), | |
(100155,'800001988','2021FA','student'), | |
(100155,'800002018','2021FA','student'), | |
(100155,'800002536','2021FA','student'), | |
(100156,'800000141','2021FA','student'), | |
(100156,'800000148','2021FA','student'), | |
(100156,'800000450','2021FA','student'), | |
(100156,'800000588','2021FA','student'), | |
(100156,'800000666','2021FA','student'), | |
(100156,'800001166','2021FA','student'), | |
(100156,'800001491','2021FA','student'), | |
(100156,'800001861','2021FA','student'), | |
(100156,'800002042','2021FA','student'), | |
(100156,'800002054','2021FA','student'), | |
(100156,'800002374','2021FA','instructor'), | |
(100156,'800002694','2021FA','instructor'), | |
(100156,'800002982','2021FA','student'), | |
(100157,'800000609','2021FA','instructor'), | |
(100157,'800001370','2021FA','student'), | |
(100157,'800001519','2021FA','student'), | |
(100157,'800002207','2021FA','student'), | |
(100157,'800002347','2021FA','instructor'), | |
(100157,'800002981','2021FA','student'), | |
(100158,'800000255','2021FA','student'), | |
(100158,'800000518','2021FA','student'), | |
(100158,'800000564','2021FA','student'), | |
(100158,'800000592','2021FA','student'), | |
(100158,'800000787','2021FA','student'), | |
(100158,'800000944','2021FA','student'), | |
(100158,'800001765','2021FA','student'), | |
(100158,'800001819','2021FA','student'), | |
(100158,'800001841','2021FA','student'), | |
(100158,'800001850','2021FA','student'), | |
(100158,'800001880','2021FA','student'), | |
(100158,'800001939','2021FA','instructor'), | |
(100158,'800001960','2021FA','student'), | |
(100158,'800002347','2021FA','instructor'), | |
(100158,'800002694','2021FA','instructor'), | |
(100158,'800002922','2021FA','student'), | |
(100158,'800002945','2021FA','student'), | |
(100159,'800000390','2021FA','student'), | |
(100159,'800001156','2021FA','student'), | |
(100159,'800002284','2021FA','student'), | |
(100159,'800002595','2021FA','student'), | |
(100160,'800000177','2021FA','student'), | |
(100160,'800000555','2021FA','student'), | |
(100160,'800000597','2021FA','student'), | |
(100160,'800001433','2021FA','student'), | |
(100160,'800001657','2021FA','student'), | |
(100160,'800001939','2021FA','instructor'), | |
(100160,'800002056','2021FA','student'), | |
(100160,'800002404','2021FA','student'), | |
(100161,'800000627','2021FA','student'), | |
(100161,'800000634','2021FA','student'), | |
(100161,'800000871','2021FA','student'), | |
(100161,'800000878','2021FA','student'), | |
(100161,'800001257','2021FA','student'), | |
(100161,'800001561','2021FA','student'), | |
(100161,'800002427','2021FA','student'), | |
(100161,'800002554','2021FA','instructor'), | |
(100161,'800002635','2021FA','student'), | |
(100161,'800002672','2021FA','student'), | |
(100162,'800000007','2021FA','student'), | |
(100162,'800000791','2021FA','student'), | |
(100162,'800001131','2021FA','student'), | |
(100162,'800001311','2021FA','student'), | |
(100162,'800001807','2021FA','instructor'), | |
(100162,'800002554','2021FA','instructor'), | |
(100162,'800002587','2021FA','student'), | |
(100162,'800002619','2021FA','student'), | |
(100163,'800000137','2021FA','student'), | |
(100163,'800000409','2021FA','student'), | |
(100163,'800000575','2021FA','student'), | |
(100163,'800000652','2021FA','student'), | |
(100163,'800000848','2021FA','student'), | |
(100163,'800001846','2021FA','student'), | |
(100163,'800002162','2021FA','student'), | |
(100163,'800002374','2021FA','instructor'), | |
(100163,'800002455','2021FA','student'), | |
(100163,'800002714','2021FA','student'), | |
(100163,'800002760','2021FA','student'), | |
(100163,'800002943','2021FA','student'), | |
(100164,'800000438','2021FA','student'), | |
(100164,'800000478','2021FA','student'), | |
(100164,'800000843','2021FA','student'), | |
(100164,'800000951','2021FA','student'), | |
(100164,'800001106','2021FA','student'), | |
(100164,'800001736','2021FA','instructor'), | |
(100164,'800002201','2021FA','student'), | |
(100164,'800002848','2021FA','student'), | |
(100165,'800000022','2021FA','student'), | |
(100165,'800000394','2021FA','student'), | |
(100165,'800000479','2021FA','student'), | |
(100165,'800000862','2021FA','student'), | |
(100165,'800000999','2021FA','instructor'), | |
(100165,'800001095','2021FA','student'), | |
(100165,'800001272','2021FA','student'), | |
(100165,'800001623','2021FA','student'), | |
(100165,'800001705','2021FA','student'), | |
(100165,'800001917','2021FA','student'), | |
(100165,'800002166','2021FA','student'), | |
(100165,'800002588','2021FA','student'), | |
(100165,'800002652','2021FA','student'), | |
(100165,'800002879','2021FA','student'), | |
(100166,'800000082','2021FA','student'), | |
(100166,'800000099','2021FA','student'), | |
(100166,'800000502','2021FA','student'), | |
(100166,'800000754','2021FA','student'), | |
(100166,'800000841','2021FA','student'), | |
(100166,'800001187','2021FA','student'), | |
(100166,'800001211','2021FA','student'), | |
(100166,'800001494','2021FA','instructor'), | |
(100166,'800001800','2021FA','student'), | |
(100166,'800001850','2021FA','student'), | |
(100166,'800002120','2021FA','student'), | |
(100166,'800002267','2021FA','student'), | |
(100166,'800002600','2021FA','student'), | |
(100166,'800002748','2021FA','student'), | |
(100167,'800000186','2021FA','instructor'), | |
(100167,'800000787','2021FA','student'), | |
(100167,'800000993','2021FA','student'), | |
(100167,'800001318','2021FA','student'), | |
(100167,'800001505','2021FA','student'), | |
(100167,'800002277','2021FA','student'), | |
(100167,'800002945','2021FA','student'), | |
(100168,'800000028','2021FA','student'), | |
(100168,'800000419','2021FA','student'), | |
(100168,'800000534','2021FA','student'), | |
(100168,'800001154','2021FA','student'), | |
(100168,'800001192','2021FA','student'), | |
(100168,'800001260','2021FA','student'), | |
(100168,'800002184','2021FA','student'), | |
(100168,'800002370','2021FA','student'), | |
(100168,'800002778','2021FA','student'), | |
(100169,'800000271','2021FA','student'), | |
(100169,'800000495','2021FA','student'), | |
(100169,'800001138','2021FA','student'), | |
(100169,'800001329','2021FA','student'), | |
(100169,'800001494','2021FA','instructor'), | |
(100169,'800001730','2021FA','student'), | |
(100169,'800002003','2021FA','student'), | |
(100169,'800002732','2021FA','student'), | |
(100170,'800000116','2021FA','student'), | |
(100170,'800000687','2021FA','student'), | |
(100170,'800000761','2021FA','student'), | |
(100170,'800001437','2021FA','instructor'), | |
(100170,'800001795','2021FA','student'), | |
(100170,'800002140','2021FA','student'), | |
(100170,'800002178','2021FA','student'), | |
(100170,'800002299','2021FA','student'), | |
(100171,'800000480','2021FA','student'), | |
(100171,'800000878','2021FA','student'), | |
(100171,'800000898','2021FA','instructor'), | |
(100171,'800000970','2021FA','instructor'), | |
(100171,'800000984','2021FA','student'), | |
(100171,'800001209','2021FA','student'), | |
(100171,'800001304','2021FA','student'), | |
(100171,'800001305','2021FA','student'), | |
(100171,'800001631','2021FA','student'), | |
(100171,'800001987','2021FA','student'), | |
(100171,'800001996','2021FA','student'), | |
(100171,'800002095','2021FA','student'), | |
(100171,'800002861','2021FA','student'), | |
(100171,'800002884','2021FA','student'), | |
(100172,'800000534','2021FA','student'), | |
(100172,'800000570','2021FA','student'), | |
(100172,'800000890','2021FA','student'), | |
(100172,'800000911','2021FA','student'), | |
(100172,'800000932','2021FA','student'), | |
(100172,'800001422','2021FA','student'), | |
(100172,'800001443','2021FA','student'), | |
(100172,'800001748','2021FA','student'), | |
(100172,'800001761','2021FA','student'), | |
(100172,'800001849','2021FA','student'), | |
(100172,'800001967','2021FA','student'), | |
(100172,'800001994','2021FA','student'), | |
(100172,'800002582','2021FA','student'), | |
(100173,'800000186','2021FA','instructor'), | |
(100173,'800000267','2021FA','student'), | |
(100173,'800000356','2021FA','student'), | |
(100173,'800000743','2021FA','student'), | |
(100173,'800000864','2021FA','student'), | |
(100173,'800000898','2021FA','instructor'), | |
(100173,'800001409','2021FA','student'), | |
(100173,'800001864','2021FA','instructor'), | |
(100173,'800001881','2021FA','student'), | |
(100173,'800001976','2021FA','student'), | |
(100173,'800002221','2021FA','student'), | |
(100173,'800002783','2021FA','student'), | |
(100173,'800002817','2021FA','student'), | |
(100174,'800000306','2021FA','student'), | |
(100174,'800000402','2021FA','student'), | |
(100174,'800000577','2021FA','student'), | |
(100174,'800000637','2021FA','student'), | |
(100174,'800000831','2021FA','instructor'), | |
(100174,'800000840','2021FA','student'), | |
(100174,'800000999','2021FA','instructor'), | |
(100174,'800001283','2021FA','student'), | |
(100174,'800001611','2021FA','student'), | |
(100174,'800001773','2021FA','student'), | |
(100174,'800001785','2021FA','student'), | |
(100174,'800001858','2021FA','student'), | |
(100174,'800002115','2021FA','student'), | |
(100174,'800002184','2021FA','student'), | |
(100174,'800002233','2021FA','student'), | |
(100174,'800002352','2021FA','student'), | |
(100174,'800002482','2021FA','student'), | |
(100174,'800002664','2021FA','student'), | |
(100174,'800002915','2021FA','student'), | |
(100174,'800002948','2021FA','student'), | |
(100175,'800000310','2021FA','student'), | |
(100175,'800000421','2021FA','student'), | |
(100175,'800001437','2021FA','instructor'), | |
(100175,'800001586','2021FA','student'), | |
(100175,'800001816','2021FA','student'), | |
(100175,'800001864','2021FA','instructor'), | |
(100175,'800002096','2021FA','instructor'), | |
(100175,'800002629','2021FA','student'), | |
(100176,'800000571','2021FA','student'), | |
(100176,'800000737','2021FA','student'), | |
(100176,'800000910','2021FA','student'), | |
(100176,'800000991','2021FA','student'), | |
(100176,'800001288','2021FA','instructor'), | |
(100176,'800001793','2021FA','student'), | |
(100176,'800001816','2021FA','student'), | |
(100176,'800001817','2021FA','student'), | |
(100176,'800001897','2021FA','instructor'), | |
(100176,'800002202','2021FA','student'), | |
(100176,'800002435','2021FA','student'), | |
(100177,'800000167','2021FA','student'), | |
(100177,'800000445','2021FA','student'), | |
(100177,'800000663','2021FA','student'), | |
(100177,'800000925','2021FA','student'), | |
(100177,'800001505','2021FA','student'), | |
(100177,'800001683','2021FA','student'), | |
(100177,'800002047','2021FA','instructor'), | |
(100177,'800002817','2021FA','student'), | |
(100177,'800002821','2021FA','student'), | |
(100178,'800000557','2021FA','student'), | |
(100178,'800001185','2021FA','student'), | |
(100178,'800001797','2021FA','student'), | |
(100178,'800002047','2021FA','instructor'), | |
(100178,'800002253','2021FA','student'), | |
(100178,'800002297','2021FA','student'), | |
(100178,'800002397','2021FA','student'), | |
(100178,'800002452','2021FA','student'), | |
(100178,'800002693','2021FA','student'), | |
(100178,'800002714','2021FA','student'), | |
(100178,'800002821','2021FA','student'), | |
(100178,'800002921','2021FA','student'), | |
(100178,'800002951','2021FA','instructor'), | |
(100178,'800002985','2021FA','student'), | |
(100179,'800000394','2021FA','student'), | |
(100179,'800000466','2021FA','student'), | |
(100179,'800000540','2021FA','student'), | |
(100179,'800000922','2021FA','student'), | |
(100179,'800001118','2021FA','student'), | |
(100179,'800001213','2021FA','student'), | |
(100179,'800001816','2021FA','student'), | |
(100179,'800001831','2021FA','student'), | |
(100179,'800002257','2021FA','student'), | |
(100179,'800002416','2021FA','student'), | |
(100179,'800002442','2021FA','student'), | |
(100179,'800002951','2021FA','instructor'), | |
(100180,'800000167','2021FA','student'), | |
(100180,'800000226','2021FA','student'), | |
(100180,'800000471','2021FA','student'), | |
(100180,'800000490','2021FA','student'), | |
(100180,'800000801','2021FA','student'), | |
(100180,'800001282','2021FA','student'), | |
(100180,'800002197','2021FA','student'), | |
(100180,'800002375','2021FA','student'), | |
(100180,'800002437','2021FA','instructor'), | |
(100180,'800002437','2021FA','instructor'), | |
(100180,'800002691','2021FA','student'), | |
(100180,'800002749','2021FA','student'), | |
(100181,'800000113','2021FA','student'), | |
(100181,'800000154','2021FA','student'), | |
(100181,'800000233','2021FA','student'), | |
(100181,'800001090','2021FA','student'), | |
(100181,'800001232','2021FA','student'), | |
(100181,'800001332','2021FA','student'), | |
(100181,'800001515','2021FA','instructor'), | |
(100181,'800001515','2021FA','instructor'), | |
(100181,'800001559','2021FA','student'), | |
(100181,'800002113','2021FA','student'), | |
(100182,'800000332','2021FA','student'), | |
(100182,'800000506','2021FA','student'), | |
(100182,'800000602','2021FA','student'), | |
(100182,'800000642','2021FA','student'), | |
(100182,'800001205','2021FA','student'), | |
(100182,'800001581','2021FA','student'), | |
(100182,'800002057','2021FA','instructor'), | |
(100182,'800002137','2021FA','student'), | |
(100182,'800002162','2021FA','student'), | |
(100182,'800002569','2021FA','student'), | |
(100183,'800000189','2021FA','student'), | |
(100183,'800000242','2021FA','student'), | |
(100183,'800000330','2021FA','student'), | |
(100183,'800000367','2021FA','student'), | |
(100183,'800000579','2021FA','student'), | |
(100183,'800000584','2021FA','student'), | |
(100183,'800000611','2021FA','student'), | |
(100183,'800000708','2021FA','student'), | |
(100183,'800001205','2021FA','student'), | |
(100183,'800001626','2021FA','student'), | |
(100183,'800001897','2021FA','instructor'), | |
(100183,'800002057','2021FA','instructor'), | |
(100183,'800002206','2021FA','instructor'), | |
(100183,'800002324','2021FA','student'), | |
(100183,'800002475','2021FA','student'), | |
(100183,'800002677','2021FA','student'), | |
(100184,'800000041','2021FA','student'), | |
(100184,'800000206','2021FA','student'), | |
(100184,'800000241','2021FA','student'), | |
(100184,'800000346','2021FA','student'), | |
(100184,'800000515','2021FA','student'), | |
(100184,'800000642','2021FA','student'), | |
(100184,'800001143','2021FA','student'), | |
(100184,'800001240','2021FA','student'), | |
(100184,'800001661','2021FA','student'), | |
(100184,'800001725','2021FA','student'), | |
(100184,'800001958','2021FA','student'), | |
(100184,'800001969','2021FA','student'), | |
(100184,'800001984','2021FA','student'), | |
(100184,'800002060','2021FA','student'), | |
(100185,'800000682','2021FA','student'), | |
(100185,'800001166','2021FA','student'), | |
(100185,'800001323','2021FA','student'), | |
(100185,'800001337','2021FA','student'), | |
(100185,'800001378','2021FA','student'), | |
(100185,'800001393','2021FA','student'), | |
(100185,'800001434','2021FA','student'), | |
(100185,'800001858','2021FA','student'), | |
(100185,'800002182','2021FA','student'), | |
(100185,'800002890','2021FA','instructor'), | |
(100186,'800000714','2021FA','student'), | |
(100186,'800000889','2021FA','student'), | |
(100186,'800001670','2021FA','student'), | |
(100186,'800001802','2021FA','student'), | |
(100186,'800002246','2021FA','student'), | |
(100187,'800000066','2021FA','student'), | |
(100187,'800000572','2021FA','student'), | |
(100187,'800000630','2021FA','student'), | |
(100187,'800000738','2021FA','student'), | |
(100187,'800000773','2021FA','student'), | |
(100187,'800000924','2021FA','student'), | |
(100187,'800001059','2021FA','student'), | |
(100187,'800001322','2021FA','student'), | |
(100187,'800001402','2021FA','student'), | |
(100187,'800001540','2021FA','student'), | |
(100187,'800001798','2021FA','student'), | |
(100187,'800002009','2021FA','instructor'), | |
(100187,'800002240','2021FA','student'), | |
(100187,'800002803','2021FA','student'), | |
(100187,'800002971','2021FA','student'), | |
(100188,'800000275','2021FA','student'), | |
(100188,'800000306','2021FA','student'), | |
(100188,'800000321','2021FA','student'), | |
(100188,'800000564','2021FA','student'), | |
(100188,'800000763','2021FA','instructor'), | |
(100188,'800000818','2021FA','student'), | |
(100188,'800000925','2021FA','student'), | |
(100188,'800001625','2021FA','student'), | |
(100188,'800001876','2021FA','student'), | |
(100188,'800001976','2021FA','student'), | |
(100188,'800002266','2021FA','student'), | |
(100188,'800002267','2021FA','student'), | |
(100188,'800002303','2021FA','instructor'), | |
(100188,'800002360','2021FA','student'), | |
(100188,'800002900','2021FA','student'), | |
(100188,'800002976','2021FA','student'), | |
(100189,'800000113','2021FA','student'), | |
(100189,'800000616','2021FA','student'), | |
(100189,'800001777','2021FA','student'), | |
(100189,'800001785','2021FA','student'), | |
(100189,'800001797','2021FA','student'), | |
(100189,'800001915','2021FA','student'), | |
(100189,'800002009','2021FA','instructor'), | |
(100189,'800002365','2021FA','student'), | |
(100189,'800002480','2021FA','student'), | |
(100189,'800002921','2021FA','student'), | |
(100190,'800001019','2021FA','student'), | |
(100190,'800001464','2021FA','student'), | |
(100190,'800001675','2021FA','student'), | |
(100190,'800001837','2021FA','student'), | |
(100190,'800001918','2021FA','student'), | |
(100190,'800002201','2021FA','student'), | |
(100190,'800002357','2021FA','student'), | |
(100190,'800002531','2021FA','student'), | |
(100191,'800000611','2021FA','student'), | |
(100191,'800001282','2021FA','student'), | |
(100191,'800001704','2021FA','student'), | |
(100191,'800001706','2021FA','student'), | |
(100191,'800002026','2021FA','student'), | |
(100191,'800002087','2021FA','student'), | |
(100191,'800002239','2021FA','student'), | |
(100191,'800002303','2021FA','instructor'), | |
(100191,'800002869','2021FA','student'), | |
(100191,'800002954','2021FA','instructor'), | |
(100192,'800000488','2021FA','instructor'), | |
(100192,'800000488','2021FA','instructor'), | |
(100192,'800000717','2021FA','student'), | |
(100192,'800001100','2021FA','student'), | |
(100192,'800001439','2021FA','student'), | |
(100192,'800001468','2021FA','student'), | |
(100192,'800002609','2021FA','student'), | |
(100192,'800002693','2021FA','student'), | |
(100192,'800002838','2021FA','student'), | |
(100192,'800002960','2021FA','student'), | |
(100192,'800002991','2021FA','student'), | |
(100193,'800000049','2021FA','student'), | |
(100193,'800000112','2021FA','student'), | |
(100193,'800000635','2021FA','student'), | |
(100193,'800000781','2021FA','student'), | |
(100193,'800000841','2021FA','student'), | |
(100193,'800000876','2021FA','student'), | |
(100193,'800001153','2021FA','student'), | |
(100193,'800001545','2021FA','student'), | |
(100193,'800001824','2021FA','student'), | |
(100193,'800001828','2021FA','instructor'), | |
(100193,'800002207','2021FA','student'), | |
(100193,'800002304','2021FA','student'), | |
(100193,'800002406','2021FA','student'), | |
(100193,'800002549','2021FA','student'), | |
(100193,'800002949','2021FA','student'), | |
(100194,'800000375','2021FA','student'), | |
(100194,'800000763','2021FA','instructor'), | |
(100194,'800001034','2021FA','student'), | |
(100194,'800001302','2021FA','instructor'), | |
(100194,'800001319','2021FA','instructor'), | |
(100194,'800001377','2021FA','student'), | |
(100194,'800001529','2021FA','student'), | |
(100194,'800001546','2021FA','student'), | |
(100194,'800001665','2021FA','student'), | |
(100194,'800002026','2021FA','student'), | |
(100194,'800002355','2021FA','student'), | |
(100194,'800002512','2021FA','instructor'), | |
(100195,'800000082','2021FA','student'), | |
(100195,'800000542','2021FA','student'), | |
(100195,'800000665','2021FA','student'), | |
(100195,'800000705','2021FA','student'), | |
(100195,'800000778','2021FA','student'), | |
(100195,'800001434','2021FA','student'), | |
(100195,'800001572','2021FA','student'), | |
(100195,'800001976','2021FA','student'), | |
(100195,'800002246','2021FA','student'), | |
(100195,'800002262','2021FA','student'), | |
(100195,'800002351','2021FA','student'), | |
(100195,'800002637','2021FA','student'), | |
(100195,'800002692','2021FA','student'), | |
(100195,'800002915','2021FA','student'), | |
(100196,'800000228','2021FA','instructor'), | |
(100196,'800000310','2021FA','student'), | |
(100196,'800000531','2021FA','student'), | |
(100196,'800000878','2021FA','student'), | |
(100196,'800001447','2021FA','student'), | |
(100196,'800001718','2021FA','student'), | |
(100196,'800001768','2021FA','student'), | |
(100196,'800001941','2021FA','student'), | |
(100196,'800002355','2021FA','student'), | |
(100196,'800002768','2021FA','student'), | |
(100196,'800002785','2021FA','student'), | |
(100197,'800000550','2021FA','student'), | |
(100197,'800000607','2021FA','student'), | |
(100197,'800000874','2021FA','student'), | |
(100197,'800000981','2021FA','student'), | |
(100197,'800001117','2021FA','student'), | |
(100197,'800001229','2021FA','student'), | |
(100197,'800001585','2021FA','student'), | |
(100197,'800001639','2021FA','student'), | |
(100197,'800001828','2021FA','instructor'), | |
(100197,'800002249','2021FA','student'), | |
(100197,'800002476','2021FA','student'), | |
(100197,'800002481','2021FA','student'), | |
(100197,'800002609','2021FA','student'), | |
(100197,'800002952','2021FA','student'), | |
(100197,'800002981','2021FA','student'), | |
(100198,'800000537','2021FA','instructor'), | |
(100198,'800000540','2021FA','student'), | |
(100198,'800000747','2021FA','student'), | |
(100198,'800000776','2021FA','student'), | |
(100198,'800000782','2021FA','student'), | |
(100198,'800001372','2021FA','student'), | |
(100198,'800001896','2021FA','student'), | |
(100198,'800002160','2021FA','student'), | |
(100198,'800002662','2021FA','student'), | |
(100198,'800002809','2021FA','student'), | |
(100198,'800002920','2021FA','student'), | |
(100198,'800002929','2021FA','instructor'), | |
(100199,'800000040','2021FA','student'), | |
(100199,'800000086','2021FA','student'), | |
(100199,'800000902','2021FA','student'), | |
(100199,'800001106','2021FA','student'), | |
(100199,'800001412','2021FA','student'), | |
(100199,'800001900','2021FA','student'), | |
(100199,'800001981','2021FA','student'), | |
(100199,'800002791','2021FA','student'), | |
(100199,'800002952','2021FA','student'), | |
(100200,'800000402','2021FA','student'), | |
(100200,'800000991','2021FA','student'), | |
(100200,'800001433','2021FA','student'), | |
(100200,'800001581','2021FA','student'), | |
(100200,'800001630','2021FA','student'), | |
(100200,'800001787','2021FA','student'), | |
(100200,'800001914','2021FA','student'), | |
(100200,'800001941','2021FA','student'), | |
(100200,'800001952','2021FA','student'), | |
(100200,'800002029','2021FA','student'), | |
(100200,'800002762','2021FA','student'), | |
(100200,'800002817','2021FA','student'), | |
(100201,'800000571','2021FA','student'), | |
(100201,'800000801','2021FA','student'), | |
(100201,'800000880','2021FA','student'), | |
(100201,'800000942','2021FA','student'), | |
(100201,'800001491','2021FA','student'), | |
(100201,'800001613','2021FA','student'), | |
(100201,'800002304','2021FA','student'), | |
(100201,'800002782','2021FA','instructor'), | |
(100201,'800002894','2021FA','student'), | |
(100201,'800002929','2021FA','instructor'), | |
(100202,'800000067','2021FA','student'), | |
(100202,'800000764','2021FA','instructor'), | |
(100202,'800001713','2021FA','student'), | |
(100202,'800001789','2021FA','student'), | |
(100202,'800001959','2021FA','instructor'), | |
(100202,'800002011','2021FA','student'), | |
(100202,'800002107','2021FA','student'), | |
(100202,'800002112','2021FA','student'), | |
(100202,'800002365','2021FA','student'), | |
(100202,'800002412','2021FA','student'), | |
(100202,'800002719','2021FA','student'), | |
(100202,'800002760','2021FA','student'), | |
(100203,'800000105','2021FA','student'), | |
(100203,'800000230','2021FA','instructor'), | |
(100203,'800000463','2021FA','student'), | |
(100203,'800000688','2021FA','student'), | |
(100203,'800000709','2021FA','student'), | |
(100203,'800000728','2021FA','student'), | |
(100203,'800000729','2021FA','student'), | |
(100203,'800000743','2021FA','student'), | |
(100203,'800001094','2021FA','student'), | |
(100203,'800001393','2021FA','student'), | |
(100203,'800001509','2021FA','student'), | |
(100203,'800001623','2021FA','student'), | |
(100203,'800002187','2021FA','student'), | |
(100203,'800002605','2021FA','student'), | |
(100204,'800000230','2021FA','instructor'), | |
(100204,'800000317','2021FA','student'), | |
(100204,'800000490','2021FA','student'), | |
(100204,'800000494','2021FA','student'), | |
(100204,'800000672','2021FA','student'), | |
(100204,'800001271','2021FA','student'), | |
(100204,'800001459','2021FA','instructor'), | |
(100204,'800001648','2021FA','student'), | |
(100204,'800001697','2021FA','student'), | |
(100204,'800001712','2021FA','student'), | |
(100204,'800001811','2021FA','student'), | |
(100204,'800002408','2021FA','student'), | |
(100204,'800002480','2021FA','student'), | |
(100204,'800002627','2021FA','student'), | |
(100205,'800000288','2021FA','student'), | |
(100205,'800000514','2021FA','student'), | |
(100205,'800000643','2021FA','student'), | |
(100205,'800000720','2021FA','student'), | |
(100205,'800000938','2021FA','student'), | |
(100205,'800001014','2021FA','student'), | |
(100205,'800001213','2021FA','student'), | |
(100205,'800001712','2021FA','student'), | |
(100205,'800001716','2021FA','student'), | |
(100205,'800001959','2021FA','instructor'), | |
(100205,'800001992','2021FA','student'), | |
(100205,'800002672','2021FA','student'), | |
(100205,'800002676','2021FA','student'), | |
(100205,'800002901','2021FA','student'), | |
(100206,'800000165','2021FA','student'), | |
(100206,'800000662','2021FA','student'), | |
(100206,'800000679','2021FA','student'), | |
(100206,'800001118','2021FA','student'), | |
(100206,'800001181','2021FA','student'), | |
(100206,'800001725','2021FA','student'), | |
(100206,'800002782','2021FA','instructor'), | |
(100207,'800000031','2021FA','student'), | |
(100207,'800000111','2021FA','student'), | |
(100207,'800001096','2021FA','student'), | |
(100207,'800001367','2021FA','student'), | |
(100207,'800001478','2021FA','student'), | |
(100207,'800001605','2021FA','student'), | |
(100207,'800002658','2021FA','student'), | |
(100208,'800000312','2021FA','instructor'), | |
(100208,'800000688','2021FA','student'), | |
(100208,'800000701','2021FA','student'), | |
(100208,'800001058','2021FA','student'), | |
(100208,'800001123','2021FA','student'), | |
(100208,'800001216','2021FA','student'), | |
(100208,'800001550','2021FA','student'), | |
(100208,'800001661','2021FA','student'), | |
(100208,'800002497','2021FA','instructor'), | |
(100208,'800002852','2021FA','student'), | |
(100209,'800000220','2021FA','student'), | |
(100209,'800000242','2021FA','student'), | |
(100209,'800000877','2021FA','student'), | |
(100209,'800001050','2021FA','student'), | |
(100209,'800001337','2021FA','student'), | |
(100209,'800001820','2021FA','student'), | |
(100209,'800002124','2021FA','student'), | |
(100209,'800002269','2021FA','student'), | |
(100209,'800002677','2021FA','student'), | |
(100209,'800002689','2021FA','student'), | |
(100209,'800002736','2021FA','instructor'), | |
(100209,'800002766','2021FA','student'), | |
(100210,'800000033','2021FA','student'), | |
(100210,'800000559','2021FA','instructor'), | |
(100210,'800001341','2021FA','student'), | |
(100210,'800001350','2021FA','student'), | |
(100210,'800001529','2021FA','student'), | |
(100210,'800001665','2021FA','student'), | |
(100210,'800001710','2021FA','student'), | |
(100210,'800002588','2021FA','student'), | |
(100211,'800000332','2021FA','student'), | |
(100211,'800000655','2021FA','student'), | |
(100211,'800000910','2021FA','student'), | |
(100211,'800000925','2021FA','student'), | |
(100211,'800001174','2021FA','student'), | |
(100211,'800001397','2021FA','student'), | |
(100211,'800001586','2021FA','student'), | |
(100211,'800001625','2021FA','student'), | |
(100211,'800001840','2021FA','student'), | |
(100211,'800001865','2021FA','student'), | |
(100211,'800001914','2021FA','student'), | |
(100211,'800002416','2021FA','student'), | |
(100211,'800002821','2021FA','student'), | |
(100211,'800002911','2021FA','student'), | |
(100211,'800002963','2021FA','student'), | |
(100212,'800000273','2021FA','student'), | |
(100212,'800000514','2021FA','student'), | |
(100212,'800000947','2021FA','student'), | |
(100212,'800001214','2021FA','student'), | |
(100212,'800001466','2021FA','student'), | |
(100212,'800001475','2021FA','student'), | |
(100212,'800001610','2021FA','student'), | |
(100212,'800001622','2021FA','student'), | |
(100212,'800001796','2021FA','student'), | |
(100212,'800001876','2021FA','student'), | |
(100212,'800002069','2021FA','instructor'), | |
(100212,'800002219','2021FA','student'), | |
(100212,'800002359','2021FA','student'), | |
(100212,'800002450','2021FA','student'), | |
(100212,'800002481','2021FA','student'), | |
(100212,'800002644','2021FA','student'), | |
(100212,'800002731','2021FA','student'), | |
(100213,'800000112','2021FA','student'), | |
(100213,'800000219','2021FA','student'), | |
(100213,'800000275','2021FA','student'), | |
(100213,'800000550','2021FA','student'), | |
(100213,'800001166','2021FA','student'), | |
(100213,'800001334','2021FA','student'), | |
(100213,'800001509','2021FA','student'), | |
(100213,'800001514','2021FA','instructor'), | |
(100213,'800001792','2021FA','student'), | |
(100213,'800002582','2021FA','student'), | |
(100213,'800002879','2021FA','student'), | |
(100213,'800002949','2021FA','student'), | |
(100214,'800000502','2021FA','student'), | |
(100214,'800000692','2021FA','student'), | |
(100214,'800001094','2021FA','student'), | |
(100214,'800001130','2021FA','student'), | |
(100214,'800001310','2021FA','student'), | |
(100214,'800001976','2021FA','student'), | |
(100214,'800002044','2021FA','student'), | |
(100214,'800002069','2021FA','instructor'), | |
(100214,'800002442','2021FA','student'), | |
(100214,'800002638','2021FA','student'), | |
(100215,'800000632','2021FA','student'), | |
(100215,'800000982','2021FA','instructor'), | |
(100215,'800001064','2021FA','student'), | |
(100215,'800001659','2021FA','student'), | |
(100215,'800001695','2021FA','student'), | |
(100215,'800001769','2021FA','student'), | |
(100215,'800001866','2021FA','student'), | |
(100215,'800002719','2021FA','student'), | |
(100215,'800002838','2021FA','student'), | |
(100216,'800000424','2021FA','student'), | |
(100216,'800001230','2021FA','student'), | |
(100216,'800001231','2021FA','student'), | |
(100216,'800001401','2021FA','student'), | |
(100216,'800001418','2021FA','student'), | |
(100216,'800001554','2021FA','student'), | |
(100216,'800001899','2021FA','student'), | |
(100216,'800002243','2021FA','student'), | |
(100216,'800002736','2021FA','instructor'), | |
(100217,'800000581','2021FA','student'), | |
(100217,'800000660','2021FA','student'), | |
(100217,'800000710','2021FA','student'), | |
(100217,'800000728','2021FA','student'), | |
(100217,'800001477','2021FA','student'), | |
(100217,'800001532','2021FA','student'), | |
(100217,'800001859','2021FA','student'), | |
(100218,'800000421','2021FA','student'), | |
(100218,'800000723','2021FA','student'), | |
(100218,'800000782','2021FA','student'), | |
(100218,'800000841','2021FA','student'), | |
(100218,'800000932','2021FA','student'), | |
(100218,'800001481','2021FA','student'), | |
(100218,'800001750','2021FA','student'), | |
(100218,'800002492','2021FA','student'), | |
(100218,'800002558','2021FA','instructor'), | |
(100219,'800000467','2021FA','student'), | |
(100219,'800001326','2021FA','student'), | |
(100219,'800001988','2021FA','student'), | |
(100219,'800002406','2021FA','student'), | |
(100219,'800002408','2021FA','student'), | |
(100219,'800002871','2021FA','student'), | |
(100220,'800000473','2021FA','student'), | |
(100220,'800000986','2021FA','student'), | |
(100220,'800001287','2021FA','student'), | |
(100220,'800001605','2021FA','student'), | |
(100220,'800001694','2021FA','student'), | |
(100220,'800001707','2021FA','student'), | |
(100220,'800001735','2021FA','student'), | |
(100220,'800001895','2021FA','student'), | |
(100220,'800001962','2021FA','instructor'), | |
(100221,'800000012','2021FA','student'), | |
(100221,'800000288','2021FA','student'), | |
(100221,'800000692','2021FA','student'), | |
(100221,'800001023','2021FA','student'), | |
(100221,'800001186','2021FA','instructor'), | |
(100221,'800001469','2021FA','student'), | |
(100221,'800001574','2021FA','student'), | |
(100221,'800001799','2021FA','student'), | |
(100221,'800001917','2021FA','student'), | |
(100221,'800001933','2021FA','student'), | |
(100221,'800001993','2021FA','student'), | |
(100221,'800002240','2021FA','student'), | |
(100221,'800002289','2021FA','instructor'), | |
(100221,'800002760','2021FA','student'), | |
(100221,'800002790','2021FA','student'), | |
(100222,'800000028','2021FA','student'), | |
(100222,'800000272','2021FA','student'), | |
(100222,'800000362','2021FA','student'), | |
(100222,'800000846','2021FA','student'), | |
(100222,'800001186','2021FA','instructor'), | |
(100222,'800001412','2021FA','student'), | |
(100222,'800001417','2021FA','instructor'), | |
(100222,'800001880','2021FA','student'), | |
(100222,'800001992','2021FA','student'), | |
(100222,'800002134','2021FA','student'), | |
(100222,'800002145','2021FA','student'), | |
(100222,'800002172','2021FA','student'), | |
(100222,'800002422','2021FA','student'), | |
(100222,'800002463','2021FA','student'), | |
(100222,'800002932','2021FA','student'), | |
(100223,'800000069','2021FA','student'), | |
(100223,'800000220','2021FA','student'), | |
(100223,'800000645','2021FA','student'), | |
(100223,'800000747','2021FA','student'), | |
(100223,'800000787','2021FA','student'), | |
(100223,'800001271','2021FA','student'), | |
(100223,'800001420','2021FA','student'), | |
(100223,'800001440','2021FA','student'), | |
(100223,'800001641','2021FA','student'), | |
(100223,'800001659','2021FA','student'), | |
(100223,'800001740','2021FA','student'), | |
(100223,'800001876','2021FA','student'), | |
(100223,'800001914','2021FA','student'), | |
(100223,'800002340','2021FA','student'), | |
(100223,'800002442','2021FA','student'), | |
(100223,'800002766','2021FA','student'), | |
(100223,'800002790','2021FA','student'), | |
(100223,'800002834','2021FA','student'), | |
(100224,'800000052','2021FA','student'), | |
(100224,'800000086','2021FA','student'), | |
(100224,'800000246','2021FA','student'), | |
(100224,'800000444','2021FA','instructor'), | |
(100224,'800001429','2021FA','student'), | |
(100224,'800001769','2021FA','student'), | |
(100224,'800001881','2021FA','student'), | |
(100224,'800002365','2021FA','student'), | |
(100224,'800002387','2021FA','student'), | |
(100224,'800002403','2021FA','student'), | |
(100225,'800000076','2021FA','student'), | |
(100225,'800000147','2021FA','student'), | |
(100225,'800000188','2021FA','student'), | |
(100225,'800000642','2021FA','student'), | |
(100225,'800000747','2021FA','student'), | |
(100225,'800001011','2021FA','student'), | |
(100225,'800001034','2021FA','student'), | |
(100225,'800001104','2021FA','student'), | |
(100225,'800001184','2021FA','student'), | |
(100225,'800001417','2021FA','instructor'), | |
(100225,'800001813','2021FA','student'), | |
(100225,'800002119','2021FA','student'), | |
(100225,'800002185','2021FA','student'), | |
(100225,'800002262','2021FA','student'), | |
(100225,'800002664','2021FA','student'), | |
(100225,'800002814','2021FA','student'), | |
(100225,'800002889','2021FA','student'), | |
(100226,'800000610','2021FA','student'), | |
(100226,'800000781','2021FA','student'), | |
(100226,'800001106','2021FA','student'), | |
(100226,'800001206','2021FA','student'), | |
(100226,'800001230','2021FA','student'), | |
(100226,'800001524','2021FA','student'), | |
(100226,'800001555','2021FA','instructor'), | |
(100226,'800001802','2021FA','student'), | |
(100226,'800001857','2021FA','student'), | |
(100226,'800002140','2021FA','student'), | |
(100226,'800002364','2021FA','student'), | |
(100226,'800002631','2021FA','student'), | |
(100226,'800002830','2021FA','student'), | |
(100226,'800002834','2021FA','student'), | |
(100226,'800002882','2021FA','student'), | |
(100226,'800002927','2021FA','student'), | |
(100227,'800000065','2021FA','student'), | |
(100227,'800000444','2021FA','instructor'), | |
(100227,'800000963','2021FA','student'), | |
(100227,'800000986','2021FA','student'), | |
(100227,'800001528','2021FA','student'), | |
(100227,'800001555','2021FA','instructor'), | |
(100227,'800001584','2021FA','student'), | |
(100227,'800001903','2021FA','student'), | |
(100227,'800001938','2021FA','student'), | |
(100227,'800002289','2021FA','instructor'), | |
(100227,'800002420','2021FA','student'), | |
(100227,'800002482','2021FA','student'), | |
(100227,'800002531','2021FA','student'), | |
(100227,'800002727','2021FA','student'), | |
(100227,'800002884','2021FA','student'), | |
(100227,'800002885','2021FA','student'), | |
(100228,'800000027','2021FA','student'), | |
(100228,'800000060','2021FA','student'), | |
(100228,'800000663','2021FA','student'), | |
(100228,'800000761','2021FA','student'), | |
(100228,'800000822','2021FA','student'), | |
(100228,'800001285','2021FA','student'), | |
(100228,'800001433','2021FA','student'), | |
(100228,'800001592','2021FA','student'), | |
(100228,'800001741','2021FA','student'), | |
(100228,'800001761','2021FA','student'), | |
(100228,'800001802','2021FA','student'), | |
(100228,'800001918','2021FA','student'), | |
(100228,'800001960','2021FA','student'), | |
(100228,'800001962','2021FA','instructor'), | |
(100228,'800001968','2021FA','student'), | |
(100228,'800002010','2021FA','student'), | |
(100228,'800002417','2021FA','student'), | |
(100228,'800002979','2021FA','student'), | |
(100229,'800000031','2021FA','student'), | |
(100229,'800000890','2021FA','student'), | |
(100229,'800000984','2021FA','student'), | |
(100229,'800001025','2021FA','instructor'), | |
(100229,'800002939','2021FA','student'), | |
(100230,'800000056','2021FA','student'), | |
(100230,'800000233','2021FA','student'), | |
(100230,'800000687','2021FA','student'), | |
(100230,'800000809','2021FA','student'), | |
(100230,'800001393','2021FA','student'), | |
(100230,'800002687','2021FA','student'), | |
(100230,'800002920','2021FA','student'), | |
(100231,'800000119','2021FA','instructor'), | |
(100231,'800000776','2021FA','student'), | |
(100231,'800000987','2021FA','student'), | |
(100231,'800001360','2021FA','student'), | |
(100231,'800001439','2021FA','student'), | |
(100231,'800001616','2021FA','student'), | |
(100231,'800001759','2021FA','student'), | |
(100231,'800001800','2021FA','student'), | |
(100231,'800001880','2021FA','student'), | |
(100231,'800001891','2021FA','student'), | |
(100231,'800002005','2021FA','student'), | |
(100231,'800002435','2021FA','student'), | |
(100231,'800002767','2021FA','student'), | |
(100232,'800000097','2021FA','student'), | |
(100232,'800000102','2021FA','student'), | |
(100232,'800000155','2021FA','student'), | |
(100232,'800000219','2021FA','student'), | |
(100232,'800000233','2021FA','student'), | |
(100232,'800000491','2021FA','student'), | |
(100232,'800001332','2021FA','student'), | |
(100232,'800001759','2021FA','student'), | |
(100232,'800001898','2021FA','student'), | |
(100232,'800001900','2021FA','student'), | |
(100232,'800002420','2021FA','student'), | |
(100232,'800002425','2021FA','student'), | |
(100232,'800002475','2021FA','student'), | |
(100232,'800002528','2021FA','student'), | |
(100232,'800002663','2021FA','student'), | |
(100232,'800002718','2021FA','student'), | |
(100233,'800001198','2021FA','student'), | |
(100233,'800001429','2021FA','student'), | |
(100233,'800001476','2021FA','student'), | |
(100233,'800002081','2021FA','student'), | |
(100233,'800002243','2021FA','student'), | |
(100233,'800002479','2021FA','student'), | |
(100233,'800002725','2021FA','instructor'), | |
(100233,'800002838','2021FA','student'), | |
(100233,'800002935','2021FA','instructor'), | |
(100234,'800001067','2021FA','student'), | |
(100234,'800001211','2021FA','student'), | |
(100234,'800001234','2021FA','student'), | |
(100234,'800001345','2021FA','student'), | |
(100234,'800001524','2021FA','student'), | |
(100234,'800001903','2021FA','student'), | |
(100234,'800001920','2021FA','student'), | |
(100234,'800001941','2021FA','student'), | |
(100234,'800002341','2021FA','student'), | |
(100234,'800002657','2021FA','student'), | |
(100234,'800002784','2021FA','student'), | |
(100234,'800002831','2021FA','instructor'), | |
(100235,'800000471','2021FA','student'), | |
(100235,'800000584','2021FA','student'), | |
(100235,'800000848','2021FA','student'), | |
(100235,'800000923','2021FA','student'), | |
(100235,'800001116','2021FA','student'), | |
(100235,'800001550','2021FA','student'), | |
(100235,'800001610','2021FA','student'), | |
(100235,'800001922','2021FA','instructor'), | |
(100235,'800002017','2021FA','student'), | |
(100235,'800002044','2021FA','student'), | |
(100235,'800002414','2021FA','student'), | |
(100235,'800002985','2021FA','student'), | |
(100236,'800000120','2021FA','instructor'), | |
(100236,'800000664','2021FA','student'), | |
(100236,'800000721','2021FA','student'), | |
(100236,'800001154','2021FA','student'), | |
(100236,'800001767','2021FA','student'), | |
(100236,'800002164','2021FA','instructor'), | |
(100236,'800002200','2021FA','student'), | |
(100236,'800002322','2021FA','student'), | |
(100236,'800002483','2021FA','student'), | |
(100236,'800002884','2021FA','student'), | |
(100237,'800001015','2021FA','student'), | |
(100237,'800001609','2021FA','student'), | |
(100237,'800001759','2021FA','student'), | |
(100237,'800002166','2021FA','student'), | |
(100237,'800002211','2021FA','student'), | |
(100237,'800002537','2021FA','student'), | |
(100237,'800002784','2021FA','student'), | |
(100238,'800000425','2021FA','student'), | |
(100238,'800000615','2021FA','student'), | |
(100238,'800000827','2021FA','student'), | |
(100238,'800001064','2021FA','student'), | |
(100238,'800001271','2021FA','student'), | |
(100238,'800001275','2021FA','student'), | |
(100238,'800001324','2021FA','student'), | |
(100238,'800001683','2021FA','student'), | |
(100238,'800001729','2021FA','student'), | |
(100238,'800001777','2021FA','student'), | |
(100238,'800002935','2021FA','instructor'), | |
(100238,'800002981','2021FA','student'), | |
(100239,'800000069','2021FA','student'), | |
(100239,'800000192','2021FA','student'), | |
(100239,'800000431','2021FA','student'), | |
(100239,'800000466','2021FA','student'), | |
(100239,'800000816','2021FA','instructor'), | |
(100239,'800001157','2021FA','student'), | |
(100239,'800001750','2021FA','student'), | |
(100239,'800001866','2021FA','student'), | |
(100239,'800002429','2021FA','student'), | |
(100239,'800002531','2021FA','student'), | |
(100239,'800002809','2021FA','student'), | |
(100239,'800002831','2021FA','instructor'), | |
(100240,'800000177','2021FA','student'), | |
(100240,'800000338','2021FA','student'), | |
(100240,'800000553','2021FA','student'), | |
(100240,'800000671','2021FA','student'), | |
(100240,'800001132','2021FA','student'), | |
(100240,'800001518','2021FA','student'), | |
(100240,'800001519','2021FA','student'), | |
(100240,'800001653','2021FA','student'), | |
(100240,'800002134','2021FA','student'), | |
(100240,'800002182','2021FA','student'), | |
(100240,'800002324','2021FA','student'), | |
(100241,'800000144','2021FA','student'), | |
(100241,'800000390','2021FA','student'), | |
(100241,'800000411','2021FA','student'), | |
(100241,'800000819','2021FA','student'), | |
(100241,'800001102','2021FA','student'), | |
(100241,'800002223','2021FA','instructor'), | |
(100241,'800002223','2021FA','instructor'), | |
(100241,'800002292','2021FA','student'), | |
(100241,'800002582','2021FA','student'), | |
(100241,'800002725','2021FA','instructor'), | |
(100241,'800002867','2021FA','student'), | |
(100242,'800000402','2021FA','student'), | |
(100242,'800000635','2021FA','student'), | |
(100242,'800001355','2021FA','instructor'), | |
(100242,'800001631','2021FA','student'), | |
(100242,'800001967','2021FA','student'), | |
(100243,'800000056','2021FA','student'), | |
(100243,'800000922','2021FA','student'), | |
(100243,'800001164','2021FA','student'), | |
(100243,'800001477','2021FA','student'), | |
(100243,'800001504','2021FA','student'), | |
(100243,'800001733','2021FA','student'), | |
(100243,'800002124','2021FA','student'), | |
(100243,'800002266','2021FA','student'), | |
(100243,'800002379','2021FA','student'), | |
(100243,'800002594','2021FA','student'), | |
(100243,'800002662','2021FA','student'), | |
(100243,'800002921','2021FA','student'), | |
(100244,'800000022','2021FA','student'), | |
(100244,'800000035','2021FA','instructor'), | |
(100244,'800000499','2021FA','student'), | |
(100244,'800001584','2021FA','student'), | |
(100244,'800001849','2021FA','student'), | |
(100244,'800001857','2021FA','student'), | |
(100244,'800002569','2021FA','student'), | |
(100244,'800002737','2021FA','student'), | |
(100244,'800002927','2021FA','student'), | |
(100245,'800000170','2021FA','student'), | |
(100245,'800000403','2021FA','student'), | |
(100245,'800000404','2021FA','student'), | |
(100245,'800000628','2021FA','student'), | |
(100245,'800000798','2021FA','student'), | |
(100245,'800000984','2021FA','student'), | |
(100245,'800001010','2021FA','student'), | |
(100245,'800001477','2021FA','student'), | |
(100245,'800001609','2021FA','student'), | |
(100245,'800001718','2021FA','student'), | |
(100245,'800002072','2021FA','student'), | |
(100245,'800002119','2021FA','student'), | |
(100245,'800002305','2021FA','instructor'), | |
(100245,'800002305','2021FA','instructor'), | |
(100245,'800002528','2021FA','student'), | |
(100245,'800002884','2021FA','student'), | |
(100246,'800000028','2021FA','student'), | |
(100246,'800000596','2021FA','student'), | |
(100246,'800000652','2021FA','student'), | |
(100246,'800001192','2021FA','student'), | |
(100246,'800001740','2021FA','student'), | |
(100246,'800002269','2021FA','student'), | |
(100246,'800002311','2021FA','student'), | |
(100246,'800002539','2021FA','student'), | |
(100246,'800002735','2021FA','instructor'), | |
(100247,'800000603','2021FA','student'), | |
(100247,'800000726','2021FA','student'), | |
(100247,'800001372','2021FA','student'), | |
(100247,'800001570','2021FA','instructor'), | |
(100247,'800001999','2021FA','instructor'), | |
(100247,'800002695','2021FA','student'), | |
(100247,'800002943','2021FA','student'), | |
(100248,'800000255','2021FA','student'), | |
(100248,'800000339','2021FA','student'), | |
(100248,'800000505','2021FA','instructor'), | |
(100248,'800000740','2021FA','student'), | |
(100248,'800000882','2021FA','student'), | |
(100248,'800001323','2021FA','student'), | |
(100248,'800001545','2021FA','student'), | |
(100248,'800001562','2021FA','student'), | |
(100248,'800001570','2021FA','instructor'), | |
(100248,'800001609','2021FA','student'), | |
(100248,'800001662','2021FA','student'), | |
(100248,'800002024','2021FA','student'), | |
(100248,'800002089','2021FA','student'), | |
(100248,'800002365','2021FA','student'), | |
(100248,'800002735','2021FA','instructor'), | |
(100248,'800002949','2021FA','student'), | |
(100249,'800000317','2021FA','student'), | |
(100249,'800000555','2021FA','student'), | |
(100249,'800000566','2021FA','student'), | |
(100249,'800001272','2021FA','student'), | |
(100249,'800001534','2021FA','instructor'), | |
(100249,'800001704','2021FA','student'), | |
(100249,'800001789','2021FA','student'), | |
(100250,'800000359','2021FA','student'), | |
(100250,'800000536','2021FA','instructor'), | |
(100250,'800000803','2021FA','student'), | |
(100250,'800000859','2021FA','student'), | |
(100250,'800001287','2021FA','student'), | |
(100250,'800001475','2021FA','student'), | |
(100250,'800001501','2021FA','student'), | |
(100250,'800001643','2021FA','student'), | |
(100250,'800001678','2021FA','student'), | |
(100250,'800002438','2021FA','student'), | |
(100250,'800002502','2021FA','student'), | |
(100250,'800002834','2021FA','student'), | |
(100251,'800000035','2021FA','instructor'), | |
(100251,'800000064','2021FA','student'), | |
(100251,'800000154','2021FA','student'), | |
(100251,'800001167','2021FA','student'), | |
(100251,'800001745','2021FA','student'), | |
(100251,'800001791','2021FA','student'), | |
(100251,'800001967','2021FA','student'), | |
(100251,'800002080','2021FA','student'), | |
(100251,'800002418','2021FA','student'), | |
(100251,'800002594','2021FA','student'), | |
(100251,'800002915','2021FA','student'), | |
(100252,'800000536','2021FA','instructor'), | |
(100252,'800000944','2021FA','student'), | |
(100252,'800000979','2021FA','student'), | |
(100252,'800001355','2021FA','instructor'), | |
(100252,'800001360','2021FA','student'), | |
(100252,'800001937','2021FA','student'), | |
(100252,'800002162','2021FA','student'), | |
(100252,'800002217','2021FA','student'), | |
(100252,'800002312','2021FA','student'), | |
(100252,'800002365','2021FA','student'), | |
(100252,'800002767','2021FA','student'), | |
(100252,'800002925','2021FA','student'), | |
(100253,'800000060','2021FA','student'), | |
(100253,'800000177','2021FA','student'), | |
(100253,'800000400','2021FA','student'), | |
(100253,'800000546','2021FA','instructor'), | |
(100253,'800000546','2021FA','instructor'), | |
(100253,'800000740','2021FA','student'), | |
(100253,'800000746','2021FA','student'), | |
(100253,'800000850','2021FA','student'), | |
(100253,'800001130','2021FA','student'), | |
(100253,'800001232','2021FA','student'), | |
(100253,'800001416','2021FA','student'), | |
(100253,'800002042','2021FA','student'), | |
(100253,'800002113','2021FA','student'), | |
(100253,'800002318','2021FA','student'), | |
(100254,'800000248','2021FA','student'), | |
(100254,'800000313','2021FA','student'), | |
(100254,'800000431','2021FA','student'), | |
(100254,'800000441','2021FA','student'), | |
(100254,'800000673','2021FA','student'), | |
(100254,'800000738','2021FA','student'), | |
(100254,'800001017','2021FA','student'), | |
(100254,'800001248','2021FA','student'), | |
(100254,'800001251','2021FA','student'), | |
(100254,'800001352','2021FA','instructor'), | |
(100254,'800001630','2021FA','student'), | |
(100254,'800002161','2021FA','student'), | |
(100254,'800002511','2021FA','student'), | |
(100254,'800002613','2021FA','student'), | |
(100254,'800002786','2021FA','student'), | |
(100254,'800002996','2021FA','instructor'), | |
(100255,'800000106','2021FA','student'), | |
(100255,'800000362','2021FA','student'), | |
(100255,'800000610','2021FA','student'), | |
(100255,'800000932','2021FA','student'), | |
(100255,'800001128','2021FA','student'), | |
(100255,'800001348','2021FA','student'), | |
(100255,'800001491','2021FA','student'), | |
(100255,'800001519','2021FA','student'), | |
(100255,'800001803','2021FA','instructor'), | |
(100255,'800002106','2021FA','instructor'), | |
(100255,'800002364','2021FA','student'), | |
(100255,'800002495','2021FA','instructor'), | |
(100255,'800002595','2021FA','student'), | |
(100256,'800000433','2021FA','student'), | |
(100256,'800000887','2021FA','student'), | |
(100256,'800001503','2021FA','student'), | |
(100256,'800001750','2021FA','student'), | |
(100256,'800001960','2021FA','student'), | |
(100256,'800002240','2021FA','student'), | |
(100256,'800002692','2021FA','student'), | |
(100256,'800002830','2021FA','student'), | |
(100256,'800002909','2021FA','instructor'), | |
(100256,'800002996','2021FA','instructor'), | |
(100257,'800000564','2021FA','student'), | |
(100257,'800000714','2021FA','student'), | |
(100257,'800000773','2021FA','student'), | |
(100257,'800000777','2021FA','instructor'), | |
(100257,'800001225','2021FA','student'), | |
(100257,'800002461','2021FA','student'), | |
(100257,'800002599','2021FA','student'), | |
(100257,'800002932','2021FA','student'), | |
(100258,'800000216','2021FA','student'), | |
(100258,'800000299','2021FA','student'), | |
(100258,'800000409','2021FA','student'), | |
(100258,'800000438','2021FA','student'), | |
(100258,'800000571','2021FA','student'), | |
(100258,'800000777','2021FA','instructor'), | |
(100258,'800000782','2021FA','student'), | |
(100258,'800000990','2021FA','student'), | |
(100258,'800001118','2021FA','student'), | |
(100258,'800001217','2021FA','student'), | |
(100258,'800001233','2021FA','student'), | |
(100258,'800001273','2021FA','student'), | |
(100258,'800001803','2021FA','instructor'), | |
(100258,'800001920','2021FA','student'), | |
(100258,'800002106','2021FA','instructor'), | |
(100258,'800002211','2021FA','student'), | |
(100258,'800002594','2021FA','student'), | |
(100258,'800002616','2021FA','student'), | |
(100258,'800002994','2021FA','student'), | |
(100259,'800000458','2021FA','student'), | |
(100259,'800000641','2021FA','student'), | |
(100259,'800000709','2021FA','student'), | |
(100259,'800000881','2021FA','student'), | |
(100259,'800000914','2021FA','student'), | |
(100259,'800001064','2021FA','student'), | |
(100259,'800001078','2021FA','student'), | |
(100259,'800001434','2021FA','student'), | |
(100259,'800001442','2021FA','student'), | |
(100259,'800001614','2021FA','student'), | |
(100259,'800002145','2021FA','student'), | |
(100259,'800002416','2021FA','student'), | |
(100259,'800002742','2021FA','instructor'), | |
(100260,'800000214','2021FA','student'), | |
(100260,'800000346','2021FA','student'), | |
(100260,'800000586','2021FA','student'), | |
(100260,'800000871','2021FA','student'), | |
(100260,'800001187','2021FA','student'), | |
(100260,'800001233','2021FA','student'), | |
(100260,'800001374','2021FA','student'), | |
(100260,'800002267','2021FA','student'), | |
(100260,'800002270','2021FA','student'), | |
(100260,'800002880','2021FA','student'), | |
(100260,'800002963','2021FA','student'), | |
(100261,'800000225','2021FA','student'), | |
(100261,'800000917','2021FA','student'), | |
(100261,'800001059','2021FA','student'), | |
(100261,'800001373','2021FA','student'), | |
(100261,'800001705','2021FA','student'), | |
(100261,'800001981','2021FA','student'), | |
(100261,'800002482','2021FA','student'), | |
(100261,'800002531','2021FA','student'), | |
(100261,'800002655','2021FA','student'), | |
(100261,'800002751','2021FA','instructor'), | |
(100262,'800000173','2021FA','student'), | |
(100262,'800000219','2021FA','student'), | |
(100262,'800000406','2021FA','student'), | |
(100262,'800000480','2021FA','student'), | |
(100262,'800000623','2021FA','student'), | |
(100262,'800000767','2021FA','student'), | |
(100262,'800000808','2021FA','student'), | |
(100262,'800000887','2021FA','student'), | |
(100262,'800000979','2021FA','student'), | |
(100262,'800001526','2021FA','student'), | |
(100262,'800001800','2021FA','student'), | |
(100262,'800002060','2021FA','student'), | |
(100262,'800002833','2021FA','student'), | |
(100263,'800000673','2021FA','student'), | |
(100263,'800000892','2021FA','student'), | |
(100263,'800001561','2021FA','student'), | |
(100263,'800001573','2021FA','student'), | |
(100263,'800001687','2021FA','student'), | |
(100263,'800001730','2021FA','student'), | |
(100263,'800001754','2021FA','student'), | |
(100263,'800001792','2021FA','student'), | |
(100263,'800002033','2021FA','student'), | |
(100263,'800002495','2021FA','instructor'), | |
(100263,'800002751','2021FA','instructor'), | |
(100264,'800000279','2021FA','student'), | |
(100264,'800001042','2021FA','instructor'), | |
(100264,'800001373','2021FA','student'), | |
(100264,'800001666','2021FA','instructor'), | |
(100264,'800001783','2021FA','student'), | |
(100264,'800001798','2021FA','student'), | |
(100264,'800001900','2021FA','student'), | |
(100264,'800002117','2021FA','student'), | |
(100264,'800002156','2021FA','instructor'), | |
(100264,'800002276','2021FA','student'), | |
(100264,'800002516','2021FA','student'), | |
(100264,'800002541','2021FA','student'), | |
(100264,'800002760','2021FA','student'), | |
(100265,'800000047','2021FA','student'), | |
(100265,'800000474','2021FA','student'), | |
(100265,'800000575','2021FA','student'), | |
(100265,'800000845','2021FA','student'), | |
(100265,'800001213','2021FA','student'), | |
(100265,'800001504','2021FA','student'), | |
(100265,'800001683','2021FA','student'), | |
(100265,'800001860','2021FA','student'), | |
(100265,'800002156','2021FA','instructor'), | |
(100265,'800002404','2021FA','student'), | |
(100265,'800002627','2021FA','student'), | |
(100265,'800002915','2021FA','student'), | |
(100266,'800000032','2021FA','student'), | |
(100266,'800000445','2021FA','student'), | |
(100266,'800000712','2021FA','student'), | |
(100266,'800000930','2021FA','student'), | |
(100266,'800001285','2021FA','student'), | |
(100266,'800001475','2021FA','student'), | |
(100266,'800001491','2021FA','student'), | |
(100266,'800001635','2021FA','student'), | |
(100266,'800002120','2021FA','student'), | |
(100266,'800002343','2021FA','student'), | |
(100267,'800000729','2021FA','student'), | |
(100267,'800000986','2021FA','student'), | |
(100267,'800001044','2021FA','student'), | |
(100267,'800001067','2021FA','student'), | |
(100267,'800001184','2021FA','student'), | |
(100267,'800001478','2021FA','student'), | |
(100267,'800001605','2021FA','student'), | |
(100267,'800001955','2021FA','student'), | |
(100267,'800002001','2021FA','student'), | |
(100267,'800002117','2021FA','student'), | |
(100267,'800002120','2021FA','student'), | |
(100267,'800002872','2021FA','student'), | |
(100268,'800000158','2021FA','student'), | |
(100268,'800000577','2021FA','student'), | |
(100268,'800000819','2021FA','student'), | |
(100268,'800001042','2021FA','instructor'), | |
(100268,'800001128','2021FA','student'), | |
(100268,'800001163','2021FA','instructor'), | |
(100268,'800001376','2021FA','instructor'), | |
(100268,'800002025','2021FA','student'), | |
(100268,'800002219','2021FA','student'), | |
(100268,'800002326','2021FA','student'), | |
(100269,'800000074','2021FA','student'), | |
(100269,'800000266','2021FA','instructor'), | |
(100269,'800000417','2021FA','student'), | |
(100269,'800000438','2021FA','student'), | |
(100269,'800000480','2021FA','student'), | |
(100269,'800000740','2021FA','student'), | |
(100269,'800000761','2021FA','student'), | |
(100269,'800000861','2021FA','student'), | |
(100269,'800001222','2021FA','student'), | |
(100269,'800001644','2021FA','student'), | |
(100269,'800001694','2021FA','student'), | |
(100269,'800001824','2021FA','student'), | |
(100269,'800001916','2021FA','student'), | |
(100269,'800002103','2021FA','student'), | |
(100269,'800002352','2021FA','student'), | |
(100269,'800002369','2021FA','student'), | |
(100269,'800002492','2021FA','student'), | |
(100269,'800002516','2021FA','student'), | |
(100269,'800002526','2021FA','student'), | |
(100269,'800002829','2021FA','student'), | |
(100270,'800000322','2021FA','student'), | |
(100270,'800000372','2021FA','student'), | |
(100270,'800000832','2021FA','student'), | |
(100270,'800001532','2021FA','student'), | |
(100270,'800001537','2021FA','student'), | |
(100270,'800001559','2021FA','student'), | |
(100270,'800001849','2021FA','student'), | |
(100270,'800001861','2021FA','student'), | |
(100270,'800001898','2021FA','student'), | |
(100270,'800002102','2021FA','student'), | |
(100270,'800002155','2021FA','student'), | |
(100270,'800002703','2021FA','student'), | |
(100270,'800002967','2021FA','student'), | |
(100271,'800001041','2021FA','instructor'), | |
(100271,'800001078','2021FA','student'), | |
(100271,'800001537','2021FA','student'), | |
(100271,'800002143','2021FA','student'), | |
(100271,'800002490','2021FA','student'), | |
(100271,'800002655','2021FA','student'), | |
(100271,'800002809','2021FA','student'), | |
(100271,'800002836','2021FA','instructor'), | |
(100271,'800002885','2021FA','student'), | |
(100272,'800000362','2021FA','student'), | |
(100272,'800000545','2021FA','student'), | |
(100272,'800000671','2021FA','student'), | |
(100272,'800000790','2021FA','student'), | |
(100272,'800000846','2021FA','student'), | |
(100272,'800001258','2021FA','student'), | |
(100272,'800001661','2021FA','student'), | |
(100272,'800001767','2021FA','student'), | |
(100272,'800001768','2021FA','student'), | |
(100272,'800001835','2021FA','student'), | |
(100272,'800001872','2021FA','student'), | |
(100272,'800002274','2021FA','student'), | |
(100272,'800002710','2021FA','student'), | |
(100272,'800002777','2021FA','student'), | |
(100273,'800000054','2021FA','student'), | |
(100273,'800000159','2021FA','student'), | |
(100273,'800000195','2021FA','student'), | |
(100273,'800000223','2021FA','instructor'), | |
(100273,'800000248','2021FA','student'), | |
(100273,'800000323','2021FA','instructor'), | |
(100273,'800000404','2021FA','student'), | |
(100273,'800000518','2021FA','student'), | |
(100273,'800000852','2021FA','student'), | |
(100273,'800001114','2021FA','student'), | |
(100273,'800001258','2021FA','student'), | |
(100273,'800001561','2021FA','student'), | |
(100273,'800001599','2021FA','student'), | |
(100273,'800001740','2021FA','student'), | |
(100273,'800001898','2021FA','student'), | |
(100273,'800001995','2021FA','student'), | |
(100273,'800002102','2021FA','student'), | |
(100273,'800002274','2021FA','student'), | |
(100273,'800002594','2021FA','student'), | |
(100274,'800000047','2021FA','student'), | |
(100274,'800000215','2021FA','student'), | |
(100274,'800000266','2021FA','instructor'), | |
(100274,'800000630','2021FA','student'), | |
(100274,'800000945','2021FA','student'), | |
(100274,'800001041','2021FA','instructor'), | |
(100274,'800001436','2021FA','student'), | |
(100274,'800001546','2021FA','student'), | |
(100274,'800001667','2021FA','student'), | |
(100274,'800001738','2021FA','student'), | |
(100274,'800001761','2021FA','student'), | |
(100274,'800001837','2021FA','student'), | |
(100274,'800001860','2021FA','student'), | |
(100274,'800001951','2021FA','student'), | |
(100274,'800002033','2021FA','student'), | |
(100274,'800002835','2021FA','student'), | |
(100274,'800002922','2021FA','student'), | |
(100275,'800000387','2021FA','student'), | |
(100275,'800000402','2021FA','student'), | |
(100275,'800000801','2021FA','student'), | |
(100275,'800001314','2021FA','student'), | |
(100275,'800001401','2021FA','student'), | |
(100275,'800001707','2021FA','student'), | |
(100275,'800001813','2021FA','student'), | |
(100275,'800002148','2021FA','student'), | |
(100275,'800002422','2021FA','student'), | |
(100275,'800002900','2021FA','student'), | |
(100276,'800000282','2021FA','student'), | |
(100276,'800000696','2021FA','student'), | |
(100276,'800000952','2021FA','student'), | |
(100276,'800001004','2021FA','student'), | |
(100276,'800001015','2021FA','student'), | |
(100276,'800001304','2021FA','student'), | |
(100276,'800001324','2021FA','student'), | |
(100276,'800001414','2021FA','student'), | |
(100276,'800001710','2021FA','student'), | |
(100276,'800001729','2021FA','student'), | |
(100276,'800002307','2021FA','student'), | |
(100276,'800002371','2021FA','student'), | |
(100276,'800002477','2021FA','student'), | |
(100276,'800002627','2021FA','student'), | |
(100276,'800002758','2021FA','instructor'), | |
(100276,'800002998','2021FA','student'), | |
(100277,'800000027','2021FA','student'), | |
(100277,'800000147','2021FA','student'), | |
(100277,'800000372','2021FA','student'), | |
(100277,'800000375','2021FA','student'), | |
(100277,'800000905','2021FA','student'), | |
(100277,'800000987','2021FA','student'), | |
(100277,'800001077','2021FA','student'), | |
(100277,'800001205','2021FA','student'), | |
(100277,'800001276','2021FA','student'), | |
(100277,'800001662','2021FA','student'), | |
(100277,'800001812','2021FA','instructor'), | |
(100277,'800001901','2021FA','student'), | |
(100277,'800001932','2021FA','student'), | |
(100277,'800002117','2021FA','student'), | |
(100277,'800002576','2021FA','student'), | |
(100278,'800000744','2021FA','student'), | |
(100278,'800000979','2021FA','student'), | |
(100278,'800000986','2021FA','student'), | |
(100278,'800001117','2021FA','student'), | |
(100278,'800001124','2021FA','student'), | |
(100278,'800001418','2021FA','student'), | |
(100278,'800001583','2021FA','student'), | |
(100278,'800001767','2021FA','student'), | |
(100278,'800001773','2021FA','student'), | |
(100278,'800002184','2021FA','student'), | |
(100278,'800002618','2021FA','student'), | |
(100278,'800002888','2021FA','instructor'), | |
(100279,'800000125','2021FA','student'), | |
(100279,'800000400','2021FA','student'), | |
(100279,'800000428','2021FA','student'), | |
(100279,'800000599','2021FA','instructor'), | |
(100279,'800000967','2021FA','instructor'), | |
(100279,'800001248','2021FA','student'), | |
(100279,'800001305','2021FA','student'), | |
(100279,'800001370','2021FA','student'), | |
(100279,'800002317','2021FA','instructor'), | |
(100279,'800002517','2021FA','student'), | |
(100279,'800002539','2021FA','student'), | |
(100279,'800002676','2021FA','student'), | |
(100279,'800002880','2021FA','student'), | |
(100280,'800000038','2021FA','student'), | |
(100280,'800000195','2021FA','student'), | |
(100280,'800000673','2021FA','student'), | |
(100280,'800000967','2021FA','instructor'), | |
(100280,'800001291','2021FA','student'), | |
(100280,'800001773','2021FA','student'), | |
(100280,'800002124','2021FA','student'), | |
(100280,'800002246','2021FA','student'), | |
(100280,'800002727','2021FA','student'), | |
(100281,'800000372','2021FA','student'), | |
(100281,'800000596','2021FA','student'), | |
(100281,'800000761','2021FA','student'), | |
(100281,'800000772','2021FA','student'), | |
(100281,'800000952','2021FA','student'), | |
(100281,'800001277','2021FA','student'), | |
(100281,'800001304','2021FA','student'), | |
(100281,'800001339','2021FA','student'), | |
(100281,'800001937','2021FA','student'), | |
(100281,'800002748','2021FA','student'), | |
(100282,'800000263','2021FA','instructor'), | |
(100282,'800000778','2021FA','student'), | |
(100282,'800000983','2021FA','instructor'), | |
(100282,'800001323','2021FA','student'), | |
(100282,'800001476','2021FA','student'), | |
(100282,'800001488','2021FA','student'), | |
(100282,'800001509','2021FA','student'), | |
(100282,'800001723','2021FA','student'), | |
(100282,'800001733','2021FA','student'), | |
(100282,'800002112','2021FA','student'), | |
(100282,'800002429','2021FA','student'), | |
(100282,'800002470','2021FA','student'), | |
(100282,'800002588','2021FA','student'), | |
(100282,'800002852','2021FA','student'), | |
(100283,'800000060','2021FA','student'), | |
(100283,'800000216','2021FA','student'), | |
(100283,'800000657','2021FA','student'), | |
(100283,'800000769','2021FA','student'), | |
(100283,'800000995','2021FA','student'), | |
(100283,'800001654','2021FA','instructor'), | |
(100284,'800000144','2021FA','student'), | |
(100284,'800000669','2021FA','instructor'), | |
(100284,'800000749','2021FA','student'), | |
(100284,'800000983','2021FA','instructor'), | |
(100284,'800001143','2021FA','student'), | |
(100284,'800001325','2021FA','student'), | |
(100284,'800001488','2021FA','student'), | |
(100284,'800001614','2021FA','student'), | |
(100284,'800002050','2021FA','student'), | |
(100284,'800002207','2021FA','student'), | |
(100284,'800002277','2021FA','student'), | |
(100284,'800002318','2021FA','student'), | |
(100284,'800002888','2021FA','instructor'), | |
(100285,'800000297','2021FA','student'), | |
(100285,'800000463','2021FA','student'), | |
(100285,'800000645','2021FA','student'), | |
(100285,'800000669','2021FA','instructor'), | |
(100285,'800001038','2021FA','student'), | |
(100285,'800001049','2021FA','student'), | |
(100285,'800001725','2021FA','student'), | |
(100285,'800001771','2021FA','student'), | |
(100285,'800001986','2021FA','student'), | |
(100285,'800002091','2021FA','student'), | |
(100285,'800002145','2021FA','student'), | |
(100285,'800002317','2021FA','instructor'), | |
(100285,'800002766','2021FA','student'), | |
(100285,'800002899','2021FA','student'), | |
(100286,'800000008','2021FA','student'), | |
(100286,'800000080','2021FA','student'), | |
(100286,'800000293','2021FA','student'), | |
(100286,'800000762','2021FA','student'), | |
(100286,'800001265','2021FA','instructor'), | |
(100286,'800001304','2021FA','student'), | |
(100286,'800001583','2021FA','student'), | |
(100286,'800001793','2021FA','student'), | |
(100286,'800001895','2021FA','student'), | |
(100286,'800002024','2021FA','student'), | |
(100286,'800002134','2021FA','student'), | |
(100286,'800002148','2021FA','student'), | |
(100286,'800002378','2021FA','student'), | |
(100286,'800002710','2021FA','student'), | |
(100287,'800000004','2021FA','student'), | |
(100287,'800000007','2021FA','student'), | |
(100287,'800000085','2021FA','student'), | |
(100287,'800000376','2021FA','instructor'), | |
(100287,'800000425','2021FA','student'), | |
(100287,'800001138','2021FA','student'), | |
(100287,'800001276','2021FA','student'), | |
(100287,'800001358','2021FA','student'), | |
(100287,'800001507','2021FA','student'), | |
(100287,'800001974','2021FA','student'), | |
(100287,'800002387','2021FA','student'), | |
(100287,'800002476','2021FA','student'), | |
(100288,'800001049','2021FA','student'), | |
(100288,'800001132','2021FA','student'), | |
(100288,'800001164','2021FA','student'), | |
(100288,'800001622','2021FA','student'), | |
(100288,'800001689','2021FA','student'), | |
(100288,'800001746','2021FA','instructor'), | |
(100288,'800001961','2021FA','student'), | |
(100288,'800002501','2021FA','student'), | |
(100288,'800002810','2021FA','student'), | |
(100288,'800002868','2021FA','student'), | |
(100288,'800002925','2021FA','student'), | |
(100289,'800000213','2021FA','student'), | |
(100289,'800000329','2021FA','instructor'), | |
(100289,'800000727','2021FA','student'), | |
(100289,'800000775','2021FA','instructor'), | |
(100289,'800001225','2021FA','student'), | |
(100289,'800001265','2021FA','instructor'), | |
(100289,'800001350','2021FA','student'), | |
(100289,'800001451','2021FA','student'), | |
(100289,'800001697','2021FA','student'), | |
(100289,'800001773','2021FA','student'), | |
(100289,'800002414','2021FA','student'), | |
(100289,'800002596','2021FA','student'), | |
(100289,'800002728','2021FA','instructor'), | |
(100289,'800002731','2021FA','student'), | |
(100290,'800000219','2021FA','student'), | |
(100290,'800000290','2021FA','student'), | |
(100290,'800000585','2021FA','student'), | |
(100290,'800000643','2021FA','student'), | |
(100290,'800000743','2021FA','student'), | |
(100290,'800000998','2021FA','student'), | |
(100290,'800001053','2021FA','student'), | |
(100290,'800001371','2021FA','student'), | |
(100290,'800001832','2021FA','student'), | |
(100290,'800001991','2021FA','student'), | |
(100290,'800002637','2021FA','student'), | |
(100290,'800002783','2021FA','student'), | |
(100290,'800002827','2021FA','student'), | |
(100291,'800000368','2021FA','student'), | |
(100291,'800000641','2021FA','student'), | |
(100291,'800001058','2021FA','student'), | |
(100291,'800001095','2021FA','student'), | |
(100291,'800001876','2021FA','student'), | |
(100291,'800001901','2021FA','student'), | |
(100291,'800002113','2021FA','student'), | |
(100291,'800002490','2021FA','student'), | |
(100291,'800002898','2021FA','student'), | |
(100292,'800000317','2021FA','student'), | |
(100292,'800000714','2021FA','student'), | |
(100292,'800000723','2021FA','student'), | |
(100292,'800001128','2021FA','student'), | |
(100292,'800001130','2021FA','student'), | |
(100292,'800001466','2021FA','student'), | |
(100292,'800001513','2021FA','student'), | |
(100292,'800001746','2021FA','instructor'), | |
(100292,'800002378','2021FA','student'), | |
(100292,'800002414','2021FA','student'), | |
(100293,'800000242','2021FA','student'), | |
(100293,'800000329','2021FA','instructor'), | |
(100293,'800000376','2021FA','instructor'), | |
(100293,'800000688','2021FA','student'), | |
(100293,'800000891','2021FA','student'), | |
(100293,'800001664','2021FA','instructor'), | |
(100293,'800001997','2021FA','student'), | |
(100293,'800002035','2021FA','student'), | |
(100293,'800002429','2021FA','student'), | |
(100294,'800000013','2021FA','student'), | |
(100294,'800000160','2021FA','student'), | |
(100294,'800000233','2021FA','student'), | |
(100294,'800000936','2021FA','student'), | |
(100294,'800001329','2021FA','student'), | |
(100294,'800001631','2021FA','student'), | |
(100294,'800002326','2021FA','student'), | |
(100294,'800002584','2021FA','student'), | |
(100294,'800002691','2021FA','student'), | |
(100295,'800000210','2021FA','student'), | |
(100295,'800000216','2021FA','student'), | |
(100295,'800000625','2021FA','student'), | |
(100295,'800000782','2021FA','student'), | |
(100295,'800000922','2021FA','student'), | |
(100295,'800001123','2021FA','student'), | |
(100295,'800001279','2021FA','student'), | |
(100295,'800001548','2021FA','student'), | |
(100295,'800001789','2021FA','student'), | |
(100295,'800001951','2021FA','student'), | |
(100295,'800002074','2021FA','student'), | |
(100295,'800002473','2021FA','instructor'), | |
(100295,'800002473','2021FA','instructor'), | |
(100295,'800002600','2021FA','student'), | |
(100295,'800002728','2021FA','instructor'), | |
(100295,'800002932','2021FA','student'), | |
(100296,'800000027','2021FA','student'), | |
(100296,'800000059','2021FA','student'), | |
(100296,'800000778','2021FA','student'), | |
(100296,'800001046','2021FA','instructor'), | |
(100296,'800001077','2021FA','student'), | |
(100296,'800001122','2021FA','student'), | |
(100296,'800001343','2021FA','student'), | |
(100296,'800001877','2021FA','student'), | |
(100296,'800002011','2021FA','student'), | |
(100296,'800002737','2021FA','student'), | |
(100297,'800000428','2021FA','student'), | |
(100297,'800000579','2021FA','student'), | |
(100297,'800000664','2021FA','student'), | |
(100297,'800000977','2021FA','student'), | |
(100297,'800001011','2021FA','student'), | |
(100297,'800001016','2021FA','student'), | |
(100297,'800001795','2021FA','student'), | |
(100297,'800001840','2021FA','student'), | |
(100297,'800001865','2021FA','student'), | |
(100297,'800001866','2021FA','student'), | |
(100297,'800002112','2021FA','student'), | |
(100297,'800002165','2021FA','student'), | |
(100297,'800002635','2021FA','student'), | |
(100297,'800002643','2021FA','instructor'), | |
(100297,'800002703','2021FA','student'), | |
(100297,'800002829','2021FA','student'), | |
(100298,'800000069','2021FA','student'), | |
(100298,'800000622','2021FA','student'), | |
(100298,'800001528','2021FA','student'), | |
(100298,'800001890','2021FA','instructor'), | |
(100298,'800002145','2021FA','student'), | |
(100298,'800002613','2021FA','student'), | |
(100298,'800002676','2021FA','student'), | |
(100298,'800002871','2021FA','student'), | |
(100299,'800000214','2021FA','student'), | |
(100299,'800000220','2021FA','student'), | |
(100299,'800000313','2021FA','student'), | |
(100299,'800000479','2021FA','student'), | |
(100299,'800000631','2021FA','student'), | |
(100299,'800001011','2021FA','student'), | |
(100299,'800001206','2021FA','student'), | |
(100299,'800001489','2021FA','instructor'), | |
(100299,'800001616','2021FA','student'), | |
(100299,'800001622','2021FA','student'), | |
(100299,'800001631','2021FA','student'), | |
(100299,'800002403','2021FA','student'), | |
(100299,'800002416','2021FA','student'), | |
(100300,'800000719','2021FA','student'), | |
(100300,'800000835','2021FA','student'), | |
(100300,'800001178','2021FA','instructor'), | |
(100300,'800001190','2021FA','student'), | |
(100300,'800001489','2021FA','instructor'), | |
(100300,'800001820','2021FA','student'), | |
(100300,'800002103','2021FA','student'), | |
(100301,'800000497','2021FA','student'), | |
(100301,'800000737','2021FA','student'), | |
(100301,'800001015','2021FA','student'), | |
(100301,'800001341','2021FA','student'), | |
(100301,'800001531','2021FA','student'), | |
(100301,'800001774','2021FA','student'), | |
(100301,'800001852','2021FA','student'), | |
(100301,'800002090','2021FA','student'), | |
(100301,'800002207','2021FA','student'), | |
(100301,'800002556','2021FA','student'), | |
(100301,'800002613','2021FA','student'), | |
(100301,'800002922','2021FA','student'), | |
(100302,'800000158','2021FA','student'), | |
(100302,'800000173','2021FA','student'), | |
(100302,'800000326','2021FA','student'), | |
(100302,'800001800','2021FA','student'), | |
(100302,'800002081','2021FA','student'), | |
(100302,'800002265','2021FA','instructor'), | |
(100302,'800002265','2021FA','instructor'), | |
(100302,'800002444','2021FA','student'), | |
(100302,'800002493','2021FA','student'), | |
(100302,'800002732','2021FA','student'), | |
(100303,'800000542','2021FA','student'), | |
(100303,'800000597','2021FA','student'), | |
(100303,'800000656','2021FA','student'), | |
(100303,'800000682','2021FA','student'), | |
(100303,'800000769','2021FA','student'), | |
(100303,'800000803','2021FA','student'), | |
(100303,'800000809','2021FA','student'), | |
(100303,'800001124','2021FA','student'), | |
(100303,'800001356','2021FA','instructor'), | |
(100303,'800001386','2021FA','instructor'), | |
(100303,'800001724','2021FA','student'), | |
(100303,'800002404','2021FA','student'), | |
(100303,'800002420','2021FA','student'), | |
(100303,'800002832','2021FA','student'), | |
(100303,'800002933','2021FA','student'), | |
(100304,'800000267','2021FA','student'), | |
(100304,'800000705','2021FA','student'), | |
(100304,'800000778','2021FA','student'), | |
(100304,'800000996','2021FA','student'), | |
(100304,'800001372','2021FA','student'), | |
(100304,'800002315','2021FA','student'), | |
(100304,'800002630','2021FA','student'), | |
(100304,'800002643','2021FA','instructor'), | |
(100304,'800002655','2021FA','student'), | |
(100304,'800002737','2021FA','student'), | |
(100304,'800002861','2021FA','student'), | |
(100305,'800000338','2021FA','student'), | |
(100305,'800000521','2021FA','student'), | |
(100305,'800000808','2021FA','student'), | |
(100305,'800000905','2021FA','student'), | |
(100305,'800000961','2021FA','student'), | |
(100305,'800000998','2021FA','student'), | |
(100305,'800001345','2021FA','student'), | |
(100305,'800001386','2021FA','instructor'), | |
(100305,'800001439','2021FA','student'), | |
(100305,'800001715','2021FA','student'), | |
(100305,'800001896','2021FA','student'), | |
(100305,'800002034','2021FA','student'), | |
(100305,'800002184','2021FA','student'), | |
(100305,'800002185','2021FA','student'), | |
(100305,'800002270','2021FA','student'), | |
(100305,'800002357','2021FA','student'), | |
(100305,'800002477','2021FA','student'), | |
(100305,'800002556','2021FA','student'), | |
(100305,'800002615','2021FA','instructor'), | |
(100305,'800002623','2021FA','student'), | |
(100306,'800000144','2021FA','student'), | |
(100306,'800000154','2021FA','student'), | |
(100306,'800000425','2021FA','student'), | |
(100306,'800000565','2021FA','student'), | |
(100306,'800001674','2021FA','student'), | |
(100306,'800001891','2021FA','student'), | |
(100306,'800002221','2021FA','student'), | |
(100306,'800002262','2021FA','student'), | |
(100306,'800002364','2021FA','student'), | |
(100306,'800002397','2021FA','student'), | |
(100306,'800002452','2021FA','student'), | |
(100306,'800002482','2021FA','student'), | |
(100306,'800002549','2021FA','student'), | |
(100306,'800002615','2021FA','instructor'), | |
(100307,'800000433','2021FA','student'), | |
(100307,'800000911','2021FA','student'), | |
(100307,'800001414','2021FA','student'), | |
(100307,'800001616','2021FA','student'), | |
(100307,'800001811','2021FA','student'), | |
(100307,'800002351','2021FA','student'), | |
(100307,'800002358','2021FA','student'), | |
(100308,'800000357','2021FA','instructor'), | |
(100308,'800000628','2021FA','student'), | |
(100308,'800000646','2021FA','student'), | |
(100308,'800000920','2021FA','student'), | |
(100308,'800001160','2021FA','student'), | |
(100308,'800001233','2021FA','student'), | |
(100308,'800001903','2021FA','student'), | |
(100308,'800002103','2021FA','student'), | |
(100309,'800000012','2021FA','student'), | |
(100309,'800000111','2021FA','student'), | |
(100309,'800000458','2021FA','student'), | |
(100309,'800000710','2021FA','student'), | |
(100309,'800000718','2021FA','student'), | |
(100309,'800000908','2021FA','student'), | |
(100309,'800001106','2021FA','student'), | |
(100309,'800001675','2021FA','student'), | |
(100309,'800001841','2021FA','student'), | |
(100309,'800002746','2021FA','instructor'), | |
(100309,'800002800','2021FA','student'), | |
(100309,'800002963','2021FA','student'), | |
(100310,'800000770','2021FA','student'), | |
(100310,'800000880','2021FA','student'), | |
(100310,'800001426','2021FA','student'), | |
(100310,'800001484','2021FA','student'), | |
(100310,'800001791','2021FA','student'), | |
(100310,'800002438','2021FA','student'), | |
(100310,'800002450','2021FA','student'), | |
(100310,'800002630','2021FA','student'), | |
(100310,'800002777','2021FA','student'), | |
(100311,'800000859','2021FA','student'), | |
(100311,'800000920','2021FA','student'), | |
(100311,'800001422','2021FA','student'), | |
(100311,'800001662','2021FA','student'), | |
(100311,'800001674','2021FA','student'), | |
(100311,'800002217','2021FA','student'), | |
(100311,'800002314','2021FA','student'), | |
(100311,'800002584','2021FA','student'), | |
(100311,'800002974','2021FA','student'), | |
(100312,'800000008','2021FA','student'), | |
(100312,'800000284','2021FA','student'), | |
(100312,'800000506','2021FA','student'), | |
(100312,'800000568','2021FA','student'), | |
(100312,'800000579','2021FA','student'), | |
(100312,'800001363','2021FA','student'), | |
(100312,'800001418','2021FA','student'), | |
(100312,'800001741','2021FA','student'), | |
(100312,'800001950','2021FA','instructor'), | |
(100312,'800002034','2021FA','student'), | |
(100312,'800002035','2021FA','student'), | |
(100312,'800002159','2021FA','student'), | |
(100312,'800002243','2021FA','student'), | |
(100312,'800002352','2021FA','student'), | |
(100312,'800002375','2021FA','student'), | |
(100312,'800002408','2021FA','student'), | |
(100312,'800002829','2021FA','student'), | |
(100312,'800002872','2021FA','student'), | |
(100312,'800002880','2021FA','student'), | |
(100312,'800002926','2021FA','student'), | |
(100313,'800000531','2021FA','student'), | |
(100313,'800001667','2021FA','student'), | |
(100313,'800002141','2021FA','instructor'), | |
(100313,'800002562','2021FA','student'), | |
(100313,'800002737','2021FA','student'), | |
(100314,'800000607','2021FA','student'), | |
(100314,'800000940','2021FA','student'), | |
(100314,'800001310','2021FA','student'), | |
(100314,'800001358','2021FA','student'), | |
(100314,'800001447','2021FA','student'), | |
(100314,'800001504','2021FA','student'), | |
(100314,'800001536','2021FA','student'), | |
(100314,'800001994','2021FA','student'), | |
(100314,'800002004','2021FA','student'), | |
(100314,'800002141','2021FA','instructor'), | |
(100314,'800002171','2021FA','instructor'), | |
(100314,'800002537','2021FA','student'), | |
(100314,'800002901','2021FA','student'), | |
(100315,'800000646','2021FA','student'), | |
(100315,'800000665','2021FA','student'), | |
(100315,'800000721','2021FA','student'), | |
(100315,'800000881','2021FA','student'), | |
(100315,'800001012','2021FA','student'), | |
(100315,'800001100','2021FA','student'), | |
(100315,'800001209','2021FA','student'), | |
(100315,'800001424','2021FA','student'), | |
(100315,'800001606','2021FA','student'), | |
(100315,'800001801','2021FA','student'), | |
(100315,'800001950','2021FA','instructor'), | |
(100315,'800002475','2021FA','student'), | |
(100315,'800002746','2021FA','instructor'), | |
(100316,'800000105','2021FA','student'), | |
(100316,'800000203','2021FA','instructor'), | |
(100316,'800000500','2021FA','student'), | |
(100316,'800000938','2021FA','student'), | |
(100316,'800001378','2021FA','student'), | |
(100316,'800001566','2021FA','student'), | |
(100316,'800001933','2021FA','student'), | |
(100316,'800002171','2021FA','instructor'), | |
(100316,'800002202','2021FA','student'), | |
(100316,'800002731','2021FA','student'), | |
(100316,'800002785','2021FA','student'), | |
(100317,'800000203','2021FA','instructor'), | |
(100317,'800000627','2021FA','student'), | |
(100317,'800001086','2021FA','instructor'), | |
(100317,'800001251','2021FA','student'), | |
(100317,'800001765','2021FA','student'), | |
(100317,'800001813','2021FA','student'), | |
(100317,'800002351','2021FA','instructor'), | |
(100318,'800000623','2021FA','student'), | |
(100318,'800000748','2021FA','student'), | |
(100318,'800000832','2021FA','student'), | |
(100318,'800001209','2021FA','student'), | |
(100318,'800001509','2021FA','student'), | |
(100318,'800001872','2021FA','student'), | |
(100318,'800002923','2021FA','student'), | |
(100319,'800000064','2021FA','student'), | |
(100319,'800000333','2021FA','student'), | |
(100319,'800001199','2021FA','student'), | |
(100319,'800001235','2021FA','instructor'), | |
(100319,'800001326','2021FA','student'), | |
(100319,'800001377','2021FA','student'), | |
(100319,'800001418','2021FA','student'), | |
(100319,'800002021','2021FA','instructor'), | |
(100319,'800002030','2021FA','student'), | |
(100319,'800002523','2021FA','student'), | |
(100319,'800002607','2021FA','student'), | |
(100319,'800002726','2021FA','student'), | |
(100319,'800002872','2021FA','student'), | |
(100320,'800000155','2021FA','student'), | |
(100320,'800000180','2021FA','student'), | |
(100320,'800001029','2021FA','student'), | |
(100320,'800001038','2021FA','student'), | |
(100320,'800001566','2021FA','student'), | |
(100320,'800002447','2021FA','student'), | |
(100320,'800002502','2021FA','student'), | |
(100320,'800002693','2021FA','student'), | |
(100320,'800002893','2021FA','instructor'), | |
(100321,'800000237','2021FA','student'), | |
(100321,'800000297','2021FA','student'), | |
(100321,'800000878','2021FA','student'), | |
(100321,'800001016','2021FA','student'), | |
(100321,'800001077','2021FA','student'), | |
(100321,'800001123','2021FA','student'), | |
(100321,'800001572','2021FA','student'), | |
(100321,'800001967','2021FA','student'), | |
(100321,'800001991','2021FA','student'), | |
(100321,'800002722','2021FA','student'), | |
(100321,'800002920','2021FA','student'), | |
(100322,'800000463','2021FA','student'), | |
(100322,'800000615','2021FA','student'), | |
(100322,'800001326','2021FA','student'), | |
(100322,'800001358','2021FA','student'), | |
(100322,'800001996','2021FA','student'), | |
(100322,'800002077','2021FA','student'), | |
(100322,'800002583','2021FA','student'), | |
(100322,'800002770','2021FA','student'), | |
(100323,'800000038','2021FA','student'), | |
(100323,'800000159','2021FA','student'), | |
(100323,'800000547','2021FA','student'), | |
(100323,'800000947','2021FA','student'), | |
(100323,'800001235','2021FA','instructor'), | |
(100323,'800001272','2021FA','student'), | |
(100323,'800001334','2021FA','student'), | |
(100323,'800001657','2021FA','student'), | |
(100323,'800001713','2021FA','student'), | |
(100323,'800001819','2021FA','student'), | |
(100323,'800001832','2021FA','student'), | |
(100323,'800001984','2021FA','student'), | |
(100323,'800002161','2021FA','student'), | |
(100323,'800002451','2021FA','student'), | |
(100323,'800002465','2021FA','student'), | |
(100324,'800000565','2021FA','student'), | |
(100324,'800000595','2021FA','student'), | |
(100324,'800000799','2021FA','student'), | |
(100324,'800000989','2021FA','student'), | |
(100324,'800001339','2021FA','student'), | |
(100324,'800001399','2021FA','student'), | |
(100324,'800001586','2021FA','student'), | |
(100324,'800002200','2021FA','student'), | |
(100325,'800000206','2021FA','student'), | |
(100325,'800000597','2021FA','student'), | |
(100325,'800000848','2021FA','student'), | |
(100325,'800001171','2021FA','student'), | |
(100325,'800001238','2021FA','student'), | |
(100325,'800001499','2021FA','student'), | |
(100325,'800001732','2021FA','student'), | |
(100325,'800001872','2021FA','student'), | |
(100325,'800001896','2021FA','student'), | |
(100325,'800002371','2021FA','student'), | |
(100325,'800002786','2021FA','student'), | |
(100326,'800000602','2021FA','student'), | |
(100326,'800000656','2021FA','student'), | |
(100326,'800000688','2021FA','student'), | |
(100326,'800000694','2021FA','student'), | |
(100326,'800000702','2021FA','instructor'), | |
(100326,'800000948','2021FA','student'), | |
(100326,'800001513','2021FA','student'), | |
(100326,'800001676','2021FA','instructor'), | |
(100326,'800001678','2021FA','student'), | |
(100326,'800001733','2021FA','student'), | |
(100326,'800001859','2021FA','student'), | |
(100326,'800002221','2021FA','student'), | |
(100326,'800002266','2021FA','student'), | |
(100326,'800002357','2021FA','student'), | |
(100326,'800002387','2021FA','student'), | |
(100326,'800002408','2021FA','student'), | |
(100327,'800000308','2021FA','instructor'), | |
(100327,'800000438','2021FA','student'), | |
(100327,'800002135','2021FA','student'), | |
(100328,'800000803','2021FA','student'), | |
(100328,'800001143','2021FA','student'), | |
(100328,'800001226','2021FA','student'), | |
(100328,'800001323','2021FA','student'), | |
(100328,'800001528','2021FA','student'), | |
(100328,'800001698','2021FA','student'), | |
(100328,'800001989','2021FA','student'), | |
(100328,'800002033','2021FA','student'), | |
(100328,'800002470','2021FA','student'), | |
(100329,'800000064','2021FA','student'), | |
(100329,'800000346','2021FA','student'), | |
(100329,'800000359','2021FA','student'), | |
(100329,'800000553','2021FA','student'), | |
(100329,'800000568','2021FA','student'), | |
(100329,'800000702','2021FA','instructor'), | |
(100329,'800000995','2021FA','student'), | |
(100329,'800001303','2021FA','student'), | |
(100329,'800001816','2021FA','student'), | |
(100329,'800001914','2021FA','student'), | |
(100329,'800002021','2021FA','instructor'), | |
(100329,'800002064','2021FA','student'), | |
(100329,'800002182','2021FA','student'), | |
(100329,'800002800','2021FA','student'), | |
(100329,'800002923','2021FA','student'), | |
(100329,'800002976','2021FA','student'), | |
(100330,'800000033','2021FA','student'), | |
(100330,'800000193','2021FA','student'), | |
(100330,'800000666','2021FA','student'), | |
(100330,'800000738','2021FA','student'), | |
(100330,'800001024','2021FA','instructor'), | |
(100330,'800001123','2021FA','student'), | |
(100330,'800001496','2021FA','student'), | |
(100330,'800002080','2021FA','student'), | |
(100330,'800002371','2021FA','student'), | |
(100330,'800002604','2021FA','student'), | |
(100331,'800000940','2021FA','student'), | |
(100331,'800001095','2021FA','student'), | |
(100331,'800001164','2021FA','student'), | |
(100331,'800002653','2021FA','student'), | |
(100331,'800002857','2021FA','instructor'), | |
(100332,'800000381','2021FA','student'), | |
(100332,'800000494','2021FA','student'), | |
(100332,'800000871','2021FA','student'), | |
(100332,'800001562','2021FA','student'), | |
(100332,'800001567','2021FA','instructor'), | |
(100332,'800001692','2021FA','student'), | |
(100332,'800002050','2021FA','student'), | |
(100332,'800002074','2021FA','student'), | |
(100332,'800002393','2021FA','student'), | |
(100332,'800002948','2021FA','student'), | |
(100333,'800000220','2021FA','student'), | |
(100333,'800000469','2021FA','student'), | |
(100333,'800001116','2021FA','student'), | |
(100333,'800001659','2021FA','student'), | |
(100333,'800001849','2021FA','student'), | |
(100334,'800000167','2021FA','student'), | |
(100334,'800000293','2021FA','student'), | |
(100334,'800000666','2021FA','student'), | |
(100334,'800000852','2021FA','student'), | |
(100334,'800001271','2021FA','student'), | |
(100334,'800002949','2021FA','student'), | |
(100335,'800000011','2021FA','student'), | |
(100335,'800000246','2021FA','student'), | |
(100335,'800000398','2021FA','student'), | |
(100335,'800000451','2021FA','student'), | |
(100335,'800000509','2021FA','student'), | |
(100335,'800000804','2021FA','student'), | |
(100335,'800001131','2021FA','student'), | |
(100335,'800001171','2021FA','student'), | |
(100335,'800001216','2021FA','student'), | |
(100335,'800002095','2021FA','student'), | |
(100335,'800002123','2021FA','student'), | |
(100335,'800002373','2021FA','student'), | |
(100335,'800002985','2021FA','student'), | |
(100336,'800000011','2021FA','student'), | |
(100336,'800000055','2021FA','student'), | |
(100336,'800000616','2021FA','student'), | |
(100336,'800001104','2021FA','student'), | |
(100336,'800001315','2021FA','student'), | |
(100336,'800001474','2021FA','student'), | |
(100336,'800001571','2021FA','student'), | |
(100336,'800002135','2021FA','student'), | |
(100336,'800002143','2021FA','student'), | |
(100336,'800002249','2021FA','student'), | |
(100336,'800002574','2021FA','student'), | |
(100336,'800002697','2021FA','student'), | |
(100336,'800002808','2021FA','student'), | |
(100337,'800000054','2021FA','student'), | |
(100337,'800000490','2021FA','student'), | |
(100337,'800000709','2021FA','student'), | |
(100337,'800000712','2021FA','student'), | |
(100337,'800002087','2021FA','student'), | |
(100337,'800002131','2021FA','instructor'), | |
(100337,'800002361','2021FA','student'), | |
(100337,'800002526','2021FA','student'), | |
(100337,'800002631','2021FA','student'), | |
(100337,'800002663','2021FA','student'), | |
(100337,'800002715','2021FA','student'), | |
(100337,'800002829','2021FA','student'), | |
(100338,'800000067','2021FA','student'), | |
(100338,'800000108','2021FA','student'), | |
(100338,'800000822','2021FA','student'), | |
(100338,'800001031','2021FA','instructor'), | |
(100338,'800001584','2021FA','student'), | |
(100338,'800001641','2021FA','student'), | |
(100338,'800002026','2021FA','student'), | |
(100338,'800002034','2021FA','student'), | |
(100338,'800002062','2021FA','student'), | |
(100338,'800002101','2021FA','student'), | |
(100338,'800002483','2021FA','student'), | |
(100338,'800002620','2021FA','student'), | |
(100338,'800002715','2021FA','student'), | |
(100339,'800000272','2021FA','student'), | |
(100339,'800000581','2021FA','student'), | |
(100339,'800000714','2021FA','student'), | |
(100339,'800001024','2021FA','instructor'), | |
(100339,'800001374','2021FA','student'), | |
(100339,'800001439','2021FA','student'), | |
(100339,'800001468','2021FA','student'), | |
(100339,'800001785','2021FA','student'), | |
(100339,'800002211','2021FA','student'), | |
(100339,'800002419','2021FA','instructor'), | |
(100339,'800002562','2021FA','student'), | |
(100339,'800002658','2021FA','student'), | |
(100339,'800002808','2021FA','student'), | |
(100339,'800002848','2021FA','student'), | |
(100340,'800000189','2021FA','student'), | |
(100340,'800000192','2021FA','student'), | |
(100340,'800000503','2021FA','student'), | |
(100340,'800000744','2021FA','student'), | |
(100340,'800000874','2021FA','student'), | |
(100340,'800000940','2021FA','student'), | |
(100340,'800001031','2021FA','instructor'), | |
(100340,'800001172','2021FA','student'), | |
(100340,'800001420','2021FA','student'), | |
(100340,'800001989','2021FA','student'), | |
(100340,'800002541','2021FA','student'), | |
(100341,'800000007','2021FA','student'), | |
(100341,'800000044','2021FA','student'), | |
(100341,'800000125','2021FA','student'), | |
(100341,'800000231','2021FA','student'), | |
(100341,'800000377','2021FA','instructor'), | |
(100341,'800000944','2021FA','student'), | |
(100341,'800001545','2021FA','student'), | |
(100341,'800001991','2021FA','student'), | |
(100341,'800002182','2021FA','student'), | |
(100341,'800002193','2021FA','instructor'), | |
(100341,'800002268','2021FA','student'), | |
(100341,'800002582','2021FA','student'), | |
(100342,'800000085','2021FA','student'), | |
(100342,'800000377','2021FA','instructor'), | |
(100342,'800000727','2021FA','student'), | |
(100342,'800001496','2021FA','student'), | |
(100342,'800001933','2021FA','student'), | |
(100342,'800002192','2021FA','instructor'), | |
(100342,'800002814','2021FA','student'), | |
(100342,'800002848','2021FA','student'), | |
(100343,'800000255','2021FA','student'), | |
(100343,'800000466','2021FA','student'), | |
(100343,'800000863','2021FA','instructor'), | |
(100343,'800000874','2021FA','student'), | |
(100343,'800000892','2021FA','student'), | |
(100343,'800000993','2021FA','student'), | |
(100343,'800001585','2021FA','student'), | |
(100343,'800001814','2021FA','student'), | |
(100343,'800002088','2021FA','instructor'), | |
(100343,'800002340','2021FA','student'), | |
(100343,'800002882','2021FA','student'), | |
(100343,'800002956','2021FA','student'), | |
(100343,'800002971','2021FA','student'), | |
(100344,'800000330','2021FA','student'), | |
(100344,'800000560','2021FA','instructor'), | |
(100344,'800000675','2021FA','instructor'), | |
(100344,'800000845','2021FA','student'), | |
(100344,'800001478','2021FA','student'), | |
(100344,'800001716','2021FA','student'), | |
(100344,'800001754','2021FA','student'), | |
(100344,'800002029','2021FA','student'), | |
(100344,'800002438','2021FA','student'), | |
(100344,'800002885','2021FA','student'), | |
(100345,'800000008','2021FA','student'), | |
(100345,'800000451','2021FA','student'), | |
(100345,'800000770','2021FA','student'), | |
(100345,'800000850','2021FA','student'), | |
(100345,'800001122','2021FA','student'), | |
(100345,'800001314','2021FA','student'), | |
(100345,'800001424','2021FA','student'), | |
(100345,'800001504','2021FA','student'), | |
(100345,'800002192','2021FA','instructor'), | |
(100345,'800002193','2021FA','instructor'), | |
(100345,'800002258','2021FA','student'), | |
(100345,'800002732','2021FA','student'), | |
(100345,'800002867','2021FA','student'), | |
(100345,'800002927','2021FA','student'), | |
(100346,'800000293','2021FA','student'), | |
(100346,'800000364','2021FA','instructor'), | |
(100346,'800000863','2021FA','instructor'), | |
(100346,'800000945','2021FA','student'), | |
(100346,'800001085','2021FA','student'), | |
(100346,'800001428','2021FA','student'), | |
(100346,'800002984','2021FA','student'), | |
(100347,'800000064','2021FA','student'), | |
(100347,'800000294','2021FA','student'), | |
(100347,'800000403','2021FA','student'), | |
(100347,'800000852','2021FA','student'), | |
(100347,'800000908','2021FA','student'), | |
(100347,'800000961','2021FA','student'), | |
(100347,'800001014','2021FA','student'), | |
(100347,'800001211','2021FA','student'), | |
(100347,'800001250','2021FA','student'), | |
(100347,'800001466','2021FA','student'), | |
(100347,'800001644','2021FA','student'), | |
(100347,'800002270','2021FA','student'), | |
(100348,'800000862','2021FA','student'), | |
(100348,'800001222','2021FA','student'), | |
(100348,'800001409','2021FA','student'), | |
(100348,'800002089','2021FA','student'), | |
(100348,'800002442','2021FA','student'), | |
(100348,'800002829','2021FA','student'), | |
(100348,'800002879','2021FA','student'), | |
(100348,'800002971','2021FA','student'), | |
(100349,'800001325','2021FA','student'), | |
(100349,'800001605','2021FA','student'), | |
(100349,'800002229','2021FA','student'), | |
(100349,'800002425','2021FA','student'), | |
(100350,'800000321','2021FA','student'), | |
(100350,'800000924','2021FA','student'), | |
(100350,'800000996','2021FA','student'), | |
(100350,'800001157','2021FA','student'), | |
(100350,'800001254','2021FA','instructor'), | |
(100350,'800002060','2021FA','student'), | |
(100351,'800000213','2021FA','student'), | |
(100351,'800000364','2021FA','instructor'), | |
(100351,'800000560','2021FA','instructor'), | |
(100351,'800000628','2021FA','student'), | |
(100351,'800000769','2021FA','student'), | |
(100351,'800001076','2021FA','student'), | |
(100351,'800001254','2021FA','instructor'), | |
(100351,'800001861','2021FA','student'), | |
(100351,'800002044','2021FA','student'), | |
(100351,'800002418','2021FA','student'), | |
(100351,'800002452','2021FA','student'), | |
(100351,'800002557','2021FA','student'), | |
(100352,'800000057','2021FA','student'), | |
(100352,'800000607','2021FA','student'), | |
(100352,'800000615','2021FA','student'), | |
(100352,'800000923','2021FA','student'), | |
(100352,'800000944','2021FA','student'), | |
(100352,'800000990','2021FA','student'), | |
(100352,'800001217','2021FA','student'), | |
(100352,'800001264','2021FA','instructor'), | |
(100352,'800001308','2021FA','student'), | |
(100352,'800001451','2021FA','student'), | |
(100352,'800001456','2021FA','instructor'), | |
(100352,'800001721','2021FA','student'), | |
(100352,'800002338','2021FA','student'), | |
(100352,'800002827','2021FA','student'), | |
(100352,'800002974','2021FA','student'), | |
(100353,'800000038','2021FA','student'), | |
(100353,'800000573','2021FA','student'), | |
(100353,'800000807','2021FA','student'), | |
(100353,'800001285','2021FA','student'), | |
(100353,'800001831','2021FA','student'), | |
(100353,'800002785','2021FA','student'), | |
(100353,'800002896','2021FA','student'), | |
(100353,'800002922','2021FA','student'), | |
(100354,'800000807','2021FA','student'), | |
(100354,'800001125','2021FA','instructor'), | |
(100354,'800001207','2021FA','student'), | |
(100354,'800001260','2021FA','student'), | |
(100354,'800001662','2021FA','student'), | |
(100354,'800001783','2021FA','student'), | |
(100354,'800002370','2021FA','student'), | |
(100354,'800002576','2021FA','student'), | |
(100354,'800002673','2021FA','student'), | |
(100354,'800002689','2021FA','student'), | |
(100355,'800000097','2021FA','student'), | |
(100355,'800000241','2021FA','student'), | |
(100355,'800000799','2021FA','student'), | |
(100355,'800001440','2021FA','student'), | |
(100355,'800001665','2021FA','student'), | |
(100355,'800001696','2021FA','student'), | |
(100355,'800001969','2021FA','student'), | |
(100355,'800002147','2021FA','instructor'), | |
(100355,'800002455','2021FA','student'), | |
(100355,'800002825','2021FA','instructor'), | |
(100355,'800002979','2021FA','student'), | |
(100356,'800000127','2021FA','instructor'), | |
(100356,'800000251','2021FA','instructor'), | |
(100356,'800000339','2021FA','student'), | |
(100356,'800000417','2021FA','student'), | |
(100356,'800000930','2021FA','student'), | |
(100356,'800001104','2021FA','student'), | |
(100356,'800001250','2021FA','student'), | |
(100356,'800001483','2021FA','instructor'), | |
(100356,'800001886','2021FA','instructor'), | |
(100356,'800001956','2021FA','student'), | |
(100356,'800002358','2021FA','student'), | |
(100356,'800002501','2021FA','student'), | |
(100357,'800000088','2021FA','student'), | |
(100357,'800000945','2021FA','student'), | |
(100357,'800001096','2021FA','student'), | |
(100357,'800001157','2021FA','student'), | |
(100357,'800001554','2021FA','student'), | |
(100357,'800001765','2021FA','student'), | |
(100357,'800002435','2021FA','student'), | |
(100357,'800002591','2021FA','student'), | |
(100358,'800000008','2021FA','student'), | |
(100358,'800000158','2021FA','student'), | |
(100358,'800000251','2021FA','instructor'), | |
(100358,'800000317','2021FA','student'), | |
(100358,'800001114','2021FA','student'), | |
(100358,'800001171','2021FA','student'), | |
(100358,'800001338','2021FA','student'), | |
(100358,'800001393','2021FA','student'), | |
(100358,'800001456','2021FA','instructor'), | |
(100358,'800001528','2021FA','student'), | |
(100358,'800001940','2021FA','student'), | |
(100358,'800001983','2021FA','student'), | |
(100358,'800002102','2021FA','student'), | |
(100358,'800002111','2021FA','student'), | |
(100358,'800002264','2021FA','student'), | |
(100358,'800002611','2021FA','student'), | |
(100358,'800002815','2021FA','student'), | |
(100358,'800002974','2021FA','student'), | |
(100359,'800000381','2021FA','student'), | |
(100359,'800000773','2021FA','student'), | |
(100359,'800001021','2021FA','student'), | |
(100359,'800001363','2021FA','student'), | |
(100359,'800001483','2021FA','instructor'), | |
(100359,'800002201','2021FA','student'), | |
(100359,'800002408','2021FA','student'), | |
(100359,'800002687','2021FA','student'), | |
(100360,'800000039','2021FA','student'), | |
(100360,'800000102','2021FA','student'), | |
(100360,'800000127','2021FA','instructor'), | |
(100360,'800001016','2021FA','student'), | |
(100360,'800001075','2021FA','student'), | |
(100360,'800001124','2021FA','student'), | |
(100360,'800001342','2021FA','student'), | |
(100360,'800001536','2021FA','student'), | |
(100360,'800002341','2021FA','student'), | |
(100360,'800002541','2021FA','student'), | |
(100360,'800002631','2021FA','student'), | |
(100360,'800002771','2021FA','student'), | |
(100361,'800000500','2021FA','student'), | |
(100361,'800000572','2021FA','student'), | |
(100361,'800000710','2021FA','student'), | |
(100361,'800001044','2021FA','student'), | |
(100361,'800001779','2021FA','student'), | |
(100361,'800001877','2021FA','student'), | |
(100361,'800001992','2021FA','student'), | |
(100361,'800002017','2021FA','student'), | |
(100361,'800002359','2021FA','student'), | |
(100362,'800000296','2021FA','student'), | |
(100362,'800000635','2021FA','student'), | |
(100362,'800000804','2021FA','student'), | |
(100362,'800001094','2021FA','student'), | |
(100362,'800001476','2021FA','student'), | |
(100362,'800001610','2021FA','student'), | |
(100362,'800001841','2021FA','student'), | |
(100362,'800002148','2021FA','student'), | |
(100362,'800002205','2021FA','student'), | |
(100362,'800002351','2021FA','student'), | |
(100362,'800002825','2021FA','instructor'), | |
(100363,'800000108','2021FA','student'), | |
(100363,'800000393','2021FA','student'), | |
(100363,'800000951','2021FA','student'), | |
(100363,'800001216','2021FA','student'), | |
(100363,'800001317','2021FA','instructor'), | |
(100363,'800002200','2021FA','student'), | |
(100363,'800002214','2021FA','student'), | |
(100363,'800002832','2021FA','student'), | |
(100364,'800000555','2021FA','student'), | |
(100364,'800000665','2021FA','student'), | |
(100364,'800000805','2021FA','instructor'), | |
(100364,'800000852','2021FA','student'), | |
(100364,'800000879','2021FA','student'), | |
(100364,'800001131','2021FA','student'), | |
(100364,'800001148','2021FA','student'), | |
(100364,'800001160','2021FA','student'), | |
(100364,'800001287','2021FA','student'), | |
(100364,'800001612','2021FA','student'), | |
(100364,'800001984','2021FA','student'), | |
(100364,'800002081','2021FA','student'), | |
(100364,'800002404','2021FA','student'), | |
(100364,'800002452','2021FA','student'), | |
(100364,'800002695','2021FA','student'), | |
(100365,'800000766','2021FA','student'), | |
(100365,'800000776','2021FA','student'), | |
(100365,'800000805','2021FA','instructor'), | |
(100365,'800000960','2021FA','student'), | |
(100365,'800001454','2021FA','student'), | |
(100365,'800001562','2021FA','student'), | |
(100365,'800001913','2021FA','instructor'), | |
(100365,'800002217','2021FA','student'), | |
(100365,'800002285','2021FA','instructor'), | |
(100365,'800002587','2021FA','student'), | |
(100365,'800002609','2021FA','student'), | |
(100365,'800002748','2021FA','student'), | |
(100366,'800000188','2021FA','student'), | |
(100366,'800000348','2021FA','student'), | |
(100366,'800000798','2021FA','student'), | |
(100366,'800000877','2021FA','student'), | |
(100366,'800001338','2021FA','student'), | |
(100366,'800001520','2021FA','student'), | |
(100366,'800002027','2021FA','student'), | |
(100366,'800002638','2021FA','student'), | |
(100366,'800002881','2021FA','student'), | |
(100367,'800000402','2021FA','student'), | |
(100367,'800000542','2021FA','student'), | |
(100367,'800000568','2021FA','student'), | |
(100367,'800000672','2021FA','student'), | |
(100367,'800000717','2021FA','student'), | |
(100367,'800001811','2021FA','student'), | |
(100367,'800002056','2021FA','student'), | |
(100367,'800002618','2021FA','student'), | |
(100367,'800002693','2021FA','student'), | |
(100367,'800002697','2021FA','student'), | |
(100367,'800002897','2021FA','instructor'), | |
(100367,'800002900','2021FA','student'), | |
(100367,'800002913','2021FA','student'), | |
(100368,'800000979','2021FA','student'), | |
(100368,'800001118','2021FA','student'), | |
(100368,'800001481','2021FA','student'), | |
(100368,'800001741','2021FA','student'), | |
(100368,'800001961','2021FA','student'), | |
(100368,'800002242','2021FA','student'), | |
(100368,'800002285','2021FA','instructor'), | |
(100368,'800002422','2021FA','student'), | |
(100368,'800002458','2021FA','student'), | |
(100368,'800002604','2021FA','student'), | |
(100368,'800002897','2021FA','instructor'), | |
(100368,'800002953','2021FA','student'), | |
(100369,'800000004','2021FA','student'), | |
(100369,'800000102','2021FA','student'), | |
(100369,'800001273','2021FA','student'), | |
(100369,'800001275','2021FA','student'), | |
(100369,'800001317','2021FA','instructor'), | |
(100369,'800001431','2021FA','student'), | |
(100369,'800001771','2021FA','student'), | |
(100369,'800001802','2021FA','student'), | |
(100369,'800001913','2021FA','instructor'), | |
(100369,'800002370','2021FA','student'), | |
(100369,'800002434','2021FA','student'), | |
(100369,'800002447','2021FA','student'), | |
(100369,'800002569','2021FA','student'), | |
(100369,'800002810','2021FA','student'), | |
(100370,'800000356','2021FA','student'), | |
(100370,'800000367','2021FA','student'), | |
(100370,'800000634','2021FA','student'), | |
(100370,'800000754','2021FA','student'), | |
(100370,'800001098','2021FA','student'), | |
(100370,'800001709','2021FA','instructor'), | |
(100370,'800001981','2021FA','student'), | |
(100370,'800002514','2021FA','student'), | |
(100370,'800002801','2021FA','instructor'), | |
(100371,'800000840','2021FA','student'), | |
(100371,'800000993','2021FA','student'), | |
(100371,'800001053','2021FA','student'), | |
(100371,'800001217','2021FA','student'), | |
(100371,'800001840','2021FA','student'), | |
(100371,'800001918','2021FA','student'), | |
(100371,'800002456','2021FA','student'), | |
(100371,'800002596','2021FA','student'), | |
(100371,'800002760','2021FA','student'), | |
(100371,'800002952','2021FA','student'), | |
(100372,'800000369','2021FA','student'), | |
(100372,'800000428','2021FA','student'), | |
(100372,'800000503','2021FA','student'), | |
(100372,'800001114','2021FA','student'), | |
(100372,'800001214','2021FA','student'), | |
(100372,'800001350','2021FA','student'), | |
(100372,'800002241','2021FA','student'), | |
(100372,'800002449','2021FA','student'), | |
(100372,'800002557','2021FA','student'), | |
(100372,'800002631','2021FA','student'), | |
(100373,'800000237','2021FA','student'), | |
(100373,'800000288','2021FA','student'), | |
(100373,'800000580','2021FA','student'), | |
(100373,'800000746','2021FA','student'), | |
(100373,'800000790','2021FA','student'), | |
(100373,'800001571','2021FA','student'), | |
(100373,'800001813','2021FA','student'), | |
(100373,'800001852','2021FA','student'), | |
(100373,'800001997','2021FA','student'), | |
(100373,'800002033','2021FA','student'), | |
(100373,'800002211','2021FA','student'), | |
(100373,'800002463','2021FA','student'), | |
(100373,'800002599','2021FA','student'), | |
(100374,'800000046','2021FA','instructor'), | |
(100374,'800000637','2021FA','student'), | |
(100374,'800000887','2021FA','student'), | |
(100374,'800001421','2021FA','student'), | |
(100374,'800002004','2021FA','student'), | |
(100374,'800002233','2021FA','student'), | |
(100374,'800002586','2021FA','student'), | |
(100374,'800002898','2021FA','student'), | |
(100375,'800000141','2021FA','student'), | |
(100375,'800000632','2021FA','student'), | |
(100375,'800000807','2021FA','student'), | |
(100375,'800000874','2021FA','student'), | |
(100375,'800001034','2021FA','student'), | |
(100375,'800001067','2021FA','student'), | |
(100375,'800001564','2021FA','student'), | |
(100375,'800001723','2021FA','student'), | |
(100375,'800002276','2021FA','student'), | |
(100375,'800002458','2021FA','student'), | |
(100375,'800002551','2021FA','student'), | |
(100375,'800002921','2021FA','student'), | |
(100376,'800000479','2021FA','student'), | |
(100376,'800000749','2021FA','student'), | |
(100376,'800001540','2021FA','student'), | |
(100376,'800001732','2021FA','student'), | |
(100376,'800001745','2021FA','student'), | |
(100376,'800001945','2021FA','instructor'), | |
(100376,'800001958','2021FA','student'), | |
(100376,'800002300','2021FA','student'), | |
(100376,'800002838','2021FA','student'), | |
(100377,'800000365','2021FA','student'), | |
(100377,'800000520','2021FA','student'), | |
(100377,'800000897','2021FA','instructor'), | |
(100377,'800001185','2021FA','student'), | |
(100377,'800001282','2021FA','student'), | |
(100377,'800001431','2021FA','student'), | |
(100377,'800001503','2021FA','student'), | |
(100377,'800001898','2021FA','student'), | |
(100377,'800002427','2021FA','student'), | |
(100378,'800000282','2021FA','student'), | |
(100378,'800000466','2021FA','student'), | |
(100378,'800001017','2021FA','student'), | |
(100378,'800001546','2021FA','student'), | |
(100378,'800001705','2021FA','student'), | |
(100378,'800002005','2021FA','student'), | |
(100378,'800002107','2021FA','student'), | |
(100378,'800002762','2021FA','student'), | |
(100378,'800002815','2021FA','student'), | |
(100379,'800000276','2021FA','instructor'), | |
(100379,'800000313','2021FA','student'), | |
(100379,'800000781','2021FA','student'), | |
(100379,'800001012','2021FA','student'), | |
(100379,'800001945','2021FA','instructor'), | |
(100379,'800002051','2021FA','instructor'), | |
(100379,'800002060','2021FA','student'), | |
(100379,'800002361','2021FA','student'), | |
(100379,'800002375','2021FA','student'), | |
(100379,'800002492','2021FA','student'), | |
(100379,'800002689','2021FA','student'), | |
(100380,'800000046','2021FA','instructor'), | |
(100380,'800000097','2021FA','student'), | |
(100380,'800000271','2021FA','student'), | |
(100380,'800002172','2021FA','student'), | |
(100380,'800002324','2021FA','student'), | |
(100380,'800002417','2021FA','student'), | |
(100380,'800002537','2021FA','student'), | |
(100380,'800002778','2021FA','student'), | |
(100381,'800000255','2021FA','student'), | |
(100381,'800000686','2021FA','instructor'), | |
(100381,'800001166','2021FA','student'), | |
(100381,'800001172','2021FA','student'), | |
(100381,'800001325','2021FA','student'), | |
(100381,'800001501','2021FA','student'), | |
(100381,'800001648','2021FA','student'), | |
(100381,'800002221','2021FA','student'), | |
(100381,'800002911','2021FA','student'), | |
(100382,'800000299','2021FA','student'), | |
(100382,'800000554','2021FA','student'), | |
(100382,'800000588','2021FA','student'), | |
(100382,'800000833','2021FA','instructor'), | |
(100382,'800001010','2021FA','student'), | |
(100382,'800001457','2021FA','instructor'), | |
(100382,'800001473','2021FA','student'), | |
(100382,'800001940','2021FA','student'), | |
(100382,'800002010','2021FA','student'), | |
(100382,'800002051','2021FA','instructor'), | |
(100383,'800000108','2021FA','student'), | |
(100383,'800000354','2021FA','student'), | |
(100383,'800000631','2021FA','student'), | |
(100383,'800000827','2021FA','student'), | |
(100383,'800001184','2021FA','student'), | |
(100383,'800001279','2021FA','student'), | |
(100383,'800001311','2021FA','student'), | |
(100383,'800001898','2021FA','student'), | |
(100384,'800000321','2021FA','student'), | |
(100384,'800000577','2021FA','student'), | |
(100384,'800001239','2021FA','student'), | |
(100384,'800001244','2021FA','student'), | |
(100384,'800001450','2021FA','student'), | |
(100384,'800001457','2021FA','instructor'), | |
(100384,'800001787','2021FA','student'), | |
(100384,'800002622','2021FA','student'), | |
(100385,'800000066','2021FA','student'), | |
(100385,'800000596','2021FA','student'), | |
(100385,'800000660','2021FA','student'), | |
(100385,'800000818','2021FA','student'), | |
(100385,'800000919','2021FA','instructor'), | |
(100385,'800002089','2021FA','student'), | |
(100385,'800002101','2021FA','student'), | |
(100385,'800002434','2021FA','student'), | |
(100385,'800002611','2021FA','student'), | |
(100386,'800000052','2021FA','student'), | |
(100386,'800000121','2021FA','instructor'), | |
(100386,'800000267','2021FA','student'), | |
(100386,'800000615','2021FA','student'), | |
(100386,'800000634','2021FA','student'), | |
(100386,'800000657','2021FA','student'), | |
(100386,'800000737','2021FA','student'), | |
(100386,'800000769','2021FA','student'), | |
(100386,'800000904','2021FA','student'), | |
(100386,'800000960','2021FA','student'), | |
(100386,'800001123','2021FA','student'), | |
(100386,'800001255','2021FA','instructor'), | |
(100386,'800001507','2021FA','student'), | |
(100386,'800001733','2021FA','student'), | |
(100386,'800001765','2021FA','student'), | |
(100386,'800001905','2021FA','student'), | |
(100386,'800001915','2021FA','student'), | |
(100386,'800002132','2021FA','instructor'), | |
(100386,'800002378','2021FA','student'), | |
(100386,'800002777','2021FA','student'), | |
(100386,'800002862','2021FA','student'), | |
(100387,'800001481','2021FA','student'), | |
(100387,'800002657','2021FA','student'), | |
(100388,'800000080','2021FA','student'), | |
(100388,'800000296','2021FA','student'), | |
(100388,'800000952','2021FA','student'), | |
(100388,'800001801','2021FA','student'), | |
(100388,'800001819','2021FA','student'), | |
(100388,'800002178','2021FA','student'), | |
(100388,'800002300','2021FA','student'), | |
(100388,'800002672','2021FA','student'), | |
(100388,'800002945','2021FA','student'), | |
(100389,'800000103','2021FA','instructor'), | |
(100389,'800000398','2021FA','student'), | |
(100389,'800000481','2021FA','instructor'), | |
(100389,'800001127','2021FA','student'), | |
(100389,'800001272','2021FA','student'), | |
(100389,'800001537','2021FA','student'), | |
(100389,'800001675','2021FA','student'), | |
(100389,'800001687','2021FA','student'), | |
(100389,'800002054','2021FA','student'), | |
(100389,'800002343','2021FA','student'), | |
(100389,'800002475','2021FA','student'), | |
(100389,'800002767','2021FA','student'), | |
(100389,'800002930','2021FA','student'), | |
(100390,'800000067','2021FA','student'), | |
(100390,'800000158','2021FA','student'), | |
(100390,'800000299','2021FA','student'), | |
(100390,'800000791','2021FA','student'), | |
(100390,'800000882','2021FA','student'), | |
(100390,'800000919','2021FA','instructor'), | |
(100390,'800001160','2021FA','student'), | |
(100390,'800001443','2021FA','student'), | |
(100390,'800001484','2021FA','student'), | |
(100390,'800001491','2021FA','student'), | |
(100390,'800001657','2021FA','student'), | |
(100390,'800001724','2021FA','student'), | |
(100390,'800001974','2021FA','student'), | |
(100390,'800002043','2021FA','instructor'), | |
(100390,'800002470','2021FA','student'), | |
(100391,'800000047','2021FA','student'), | |
(100391,'800000052','2021FA','student'), | |
(100391,'800000144','2021FA','student'), | |
(100391,'800000514','2021FA','student'), | |
(100391,'800000557','2021FA','student'), | |
(100391,'800000573','2021FA','student'), | |
(100391,'800000990','2021FA','student'), | |
(100391,'800001034','2021FA','student'), | |
(100391,'800001258','2021FA','student'), | |
(100391,'800001503','2021FA','student'), | |
(100391,'800002515','2021FA','student'), | |
(100391,'800002582','2021FA','student'), | |
(100391,'800002584','2021FA','student'), | |
(100392,'800000039','2021FA','student'), | |
(100392,'800000296','2021FA','student'), | |
(100392,'800000573','2021FA','student'), | |
(100392,'800000595','2021FA','student'), | |
(100392,'800000635','2021FA','student'), | |
(100392,'800000762','2021FA','student'), | |
(100392,'800000829','2021FA','instructor'), | |
(100392,'800001192','2021FA','student'), | |
(100392,'800001255','2021FA','instructor'), | |
(100392,'800001917','2021FA','student'), | |
(100392,'800002034','2021FA','student'), | |
(100392,'800002214','2021FA','student'), | |
(100392,'800002248','2021FA','student'), | |
(100392,'800002925','2021FA','student'), | |
(100393,'800000065','2021FA','student'), | |
(100393,'800000478','2021FA','student'), | |
(100393,'800000963','2021FA','student'), | |
(100393,'800001785','2021FA','student'), | |
(100393,'800002006','2021FA','student'), | |
(100393,'800002035','2021FA','student'), | |
(100393,'800002827','2021FA','student'), | |
(100394,'800000111','2021FA','student'), | |
(100394,'800000572','2021FA','student'), | |
(100394,'800002613','2021FA','student'), | |
(100395,'800000103','2021FA','instructor'), | |
(100395,'800000121','2021FA','instructor'), | |
(100395,'800000593','2021FA','student'), | |
(100395,'800000920','2021FA','student'), | |
(100395,'800000932','2021FA','student'), | |
(100395,'800000998','2021FA','student'), | |
(100395,'800001023','2021FA','student'), | |
(100395,'800001225','2021FA','student'), | |
(100395,'800001473','2021FA','student'), | |
(100395,'800001765','2021FA','student'), | |
(100395,'800001968','2021FA','student'), | |
(100395,'800002371','2021FA','student'), | |
(100395,'800002425','2021FA','student'), | |
(100395,'800002715','2021FA','student'), | |
(100396,'800000080','2021FA','student'), | |
(100396,'800000088','2021FA','student'), | |
(100396,'800000116','2021FA','student'), | |
(100396,'800000356','2021FA','student'), | |
(100396,'800000545','2021FA','student'), | |
(100396,'800000804','2021FA','student'), | |
(100396,'800000862','2021FA','student'), | |
(100396,'800001049','2021FA','student'), | |
(100396,'800001692','2021FA','student'), | |
(100396,'800001837','2021FA','student'), | |
(100396,'800002095','2021FA','student'), | |
(100396,'800002197','2021FA','student'), | |
(100396,'800002456','2021FA','student'), | |
(100396,'800002549','2021FA','student'), | |
(100396,'800002555','2021FA','instructor'), | |
(100397,'800000673','2021FA','student'), | |
(100397,'800001277','2021FA','student'), | |
(100397,'800001344','2021FA','instructor'), | |
(100397,'800001623','2021FA','student'), | |
(100397,'800001748','2021FA','student'), | |
(100397,'800002449','2021FA','student'), | |
(100397,'800002832','2021FA','student'), | |
(100397,'800002939','2021FA','student'), | |
(100397,'800002952','2021FA','student'), | |
(100398,'800000195','2021FA','student'), | |
(100398,'800000387','2021FA','student'), | |
(100398,'800000571','2021FA','student'), | |
(100398,'800000881','2021FA','student'), | |
(100398,'800000904','2021FA','student'), | |
(100398,'800001207','2021FA','student'), | |
(100398,'800001231','2021FA','student'), | |
(100398,'800001447','2021FA','student'), | |
(100398,'800001464','2021FA','student'), | |
(100398,'800001721','2021FA','student'), | |
(100398,'800001942','2021FA','instructor'), | |
(100398,'800002018','2021FA','student'), | |
(100398,'800002166','2021FA','student'), | |
(100398,'800002276','2021FA','student'), | |
(100398,'800002320','2021FA','student'), | |
(100398,'800002561','2021FA','student'), | |
(100399,'800000880','2021FA','student'), | |
(100399,'800001429','2021FA','student'), | |
(100399,'800001748','2021FA','student'), | |
(100399,'800001827','2021FA','instructor'), | |
(100399,'800001958','2021FA','student'), | |
(100399,'800002003','2021FA','student'), | |
(100399,'800002434','2021FA','student'), | |
(100399,'800002894','2021FA','student'), | |
(100400,'800000489','2021FA','student'), | |
(100400,'800001566','2021FA','student'), | |
(100400,'800001591','2021FA','student'), | |
(100400,'800001909','2021FA','instructor'), | |
(100400,'800001909','2021FA','instructor'), | |
(100400,'800002091','2021FA','student'), | |
(100400,'800002119','2021FA','student'), | |
(100400,'800002133','2021FA','student'), | |
(100400,'800002181','2021FA','instructor'), | |
(100400,'800002229','2021FA','student'), | |
(100400,'800002315','2021FA','student'), | |
(100400,'800002503','2021FA','student'), | |
(100400,'800002613','2021FA','student'), | |
(100400,'800002652','2021FA','student'), | |
(100401,'800000163','2021FA','instructor'), | |
(100401,'800000719','2021FA','student'), | |
(100401,'800000781','2021FA','student'), | |
(100401,'800000968','2021FA','student'), | |
(100401,'800000991','2021FA','student'), | |
(100401,'800001730','2021FA','student'), | |
(100401,'800002077','2021FA','student'), | |
(100401,'800002196','2021FA','student'), | |
(100402,'800000762','2021FA','student'), | |
(100402,'800001259','2021FA','instructor'), | |
(100402,'800001402','2021FA','student'), | |
(100402,'800001899','2021FA','student'), | |
(100402,'800002869','2021FA','student'), | |
(100403,'800000163','2021FA','instructor'), | |
(100403,'800000923','2021FA','student'), | |
(100403,'800002011','2021FA','student'), | |
(100403,'800002255','2021FA','student'), | |
(100403,'800002393','2021FA','student'), | |
(100403,'800002502','2021FA','student'), | |
(100403,'800002555','2021FA','instructor'), | |
(100403,'800002931','2021FA','instructor'), | |
(100404,'800000369','2021FA','student'), | |
(100404,'800000575','2021FA','student'), | |
(100404,'800000828','2021FA','student'), | |
(100404,'800000938','2021FA','student'), | |
(100404,'800001229','2021FA','student'), | |
(100404,'800001471','2021FA','student'), | |
(100404,'800002255','2021FA','student'), | |
(100404,'800002369','2021FA','student'), | |
(100404,'800002583','2021FA','student'), | |
(100404,'800002661','2021FA','student'), | |
(100404,'800002762','2021FA','student'), | |
(100404,'800002808','2021FA','student'), | |
(100405,'800000406','2021FA','student'), | |
(100405,'800000665','2021FA','student'), | |
(100405,'800000696','2021FA','student'), | |
(100405,'800001308','2021FA','student'), | |
(100405,'800001975','2021FA','instructor'), | |
(100405,'800001997','2021FA','student'), | |
(100405,'800002112','2021FA','student'), | |
(100405,'800002315','2021FA','student'), | |
(100405,'800002318','2021FA','student'), | |
(100405,'800002548','2021FA','student'), | |
(100405,'800002574','2021FA','student'), | |
(100405,'800002607','2021FA','student'), | |
(100406,'800000279','2021FA','student'), | |
(100406,'800000592','2021FA','student'), | |
(100406,'800000725','2021FA','student'), | |
(100406,'800000908','2021FA','student'), | |
(100406,'800001259','2021FA','instructor'), | |
(100406,'800001414','2021FA','student'), | |
(100406,'800001827','2021FA','instructor'), | |
(100406,'800001849','2021FA','student'), | |
(100406,'800001967','2021FA','student'), | |
(100406,'800002024','2021FA','student'), | |
(100406,'800002549','2021FA','student'), | |
(100406,'800002722','2021FA','student'), | |
(100406,'800002832','2021FA','student'), | |
(100407,'800000012','2021FA','student'), | |
(100407,'800000381','2021FA','student'), | |
(100407,'800000723','2021FA','student'), | |
(100407,'800001007','2021FA','instructor'), | |
(100407,'800001095','2021FA','student'), | |
(100407,'800001303','2021FA','student'), | |
(100407,'800002174','2021FA','student'), | |
(100407,'800002785','2021FA','student'), | |
(100407,'800002936','2021FA','instructor'), | |
(100408,'800000093','2021FA','student'), | |
(100408,'800000379','2021FA','instructor'), | |
(100408,'800000522','2021FA','instructor'), | |
(100408,'800000661','2021FA','instructor'), | |
(100408,'800001422','2021FA','student'), | |
(100408,'800001819','2021FA','student'), | |
(100408,'800001858','2021FA','student'), | |
(100408,'800001927','2021FA','student'), | |
(100408,'800002140','2021FA','student'), | |
(100408,'800002655','2021FA','student'), | |
(100408,'800002833','2021FA','student'), | |
(100409,'800000418','2021FA','student'), | |
(100409,'800000534','2021FA','student'), | |
(100409,'800000611','2021FA','student'), | |
(100409,'800000942','2021FA','student'), | |
(100409,'800001372','2021FA','student'), | |
(100409,'800001987','2021FA','student'), | |
(100409,'800002135','2021FA','student'), | |
(100409,'800002174','2021FA','student'), | |
(100409,'800002219','2021FA','student'), | |
(100409,'800002507','2021FA','student'), | |
(100409,'800002808','2021FA','student'), | |
(100409,'800002834','2021FA','student'), | |
(100410,'800000041','2021FA','student'), | |
(100410,'800000086','2021FA','student'), | |
(100410,'800000350','2021FA','student'), | |
(100410,'800000404','2021FA','student'), | |
(100410,'800000522','2021FA','instructor'), | |
(100410,'800000611','2021FA','student'), | |
(100410,'800000663','2021FA','student'), | |
(100410,'800000911','2021FA','student'), | |
(100410,'800001596','2021FA','student'), | |
(100410,'800002379','2021FA','student'), | |
(100410,'800002899','2021FA','student'), | |
(100411,'800000679','2021FA','student'), | |
(100411,'800000938','2021FA','student'), | |
(100411,'800000991','2021FA','student'), | |
(100411,'800001581','2021FA','student'), | |
(100411,'800001707','2021FA','student'), | |
(100411,'800002064','2021FA','student'), | |
(100411,'800002604','2021FA','student'), | |
(100411,'800002939','2021FA','student'), | |
(100412,'800000147','2021FA','student'), | |
(100412,'800000996','2021FA','student'), | |
(100412,'800001481','2021FA','student'), | |
(100412,'800001633','2021FA','student'), | |
(100412,'800002123','2021FA','student'), | |
(100412,'800002196','2021FA','student'), | |
(100412,'800002668','2021FA','instructor'), | |
(100412,'800002809','2021FA','student'), | |
(100412,'800002967','2021FA','student'), | |
(100413,'800000215','2021FA','student'), | |
(100413,'800000948','2021FA','student'), | |
(100413,'800001397','2021FA','student'), | |
(100413,'800001546','2021FA','student'), | |
(100413,'800001613','2021FA','student'), | |
(100413,'800001732','2021FA','student'), | |
(100413,'800002606','2021FA','student'), | |
(100413,'800002987','2021FA','student'), | |
(100414,'800000400','2021FA','student'), | |
(100414,'800000616','2021FA','student'), | |
(100414,'800000791','2021FA','student'), | |
(100414,'800000826','2021FA','student'), | |
(100414,'800001244','2021FA','student'), | |
(100414,'800001315','2021FA','student'), | |
(100414,'800001454','2021FA','student'), | |
(100414,'800001507','2021FA','student'), | |
(100414,'800001651','2021FA','instructor'), | |
(100414,'800001956','2021FA','student'), | |
(100414,'800002004','2021FA','student'), | |
(100414,'800002178','2021FA','student'), | |
(100414,'800002248','2021FA','student'), | |
(100414,'800002835','2021FA','student'), | |
(100414,'800002930','2021FA','student'), | |
(100415,'800000054','2021FA','student'), | |
(100415,'800000451','2021FA','student'), | |
(100415,'800000566','2021FA','student'), | |
(100415,'800000864','2021FA','student'), | |
(100415,'800000942','2021FA','student'), | |
(100415,'800001217','2021FA','student'), | |
(100415,'800001518','2021FA','student'), | |
(100415,'800001643','2021FA','student'), | |
(100415,'800002165','2021FA','student'), | |
(100415,'800002480','2021FA','student'), | |
(100415,'800002830','2021FA','student'), | |
(100416,'800000316','2021FA','student'), | |
(100416,'800000451','2021FA','student'), | |
(100416,'800000886','2021FA','student'), | |
(100416,'800001007','2021FA','instructor'), | |
(100416,'800001102','2021FA','student'), | |
(100416,'800001756','2021FA','student'), | |
(100416,'800002503','2021FA','student'), | |
(100417,'800000818','2021FA','student'), | |
(100417,'800001474','2021FA','student'), | |
(100417,'800001636','2021FA','instructor'), | |
(100417,'800001768','2021FA','student'), | |
(100417,'800002034','2021FA','student'), | |
(100417,'800002149','2021FA','student'), | |
(100417,'800002443','2021FA','student'), | |
(100418,'800000028','2021FA','student'), | |
(100418,'800000116','2021FA','student'), | |
(100418,'800000451','2021FA','student'), | |
(100418,'800000580','2021FA','student'), | |
(100418,'800000768','2021FA','student'), | |
(100418,'800001058','2021FA','student'), | |
(100418,'800001258','2021FA','student'), | |
(100418,'800001904','2021FA','instructor'), | |
(100418,'800002107','2021FA','student'), | |
(100418,'800002435','2021FA','student'), | |
(100418,'800002525','2021FA','student'), | |
(100418,'800002538','2021FA','instructor'), | |
(100418,'800002876','2021FA','instructor'), | |
(100418,'800002899','2021FA','student'), | |
(100418,'800002970','2021FA','instructor'), | |
(100419,'800000105','2021FA','student'), | |
(100419,'800000149','2021FA','instructor'), | |
(100419,'800000192','2021FA','student'), | |
(100419,'800000299','2021FA','student'), | |
(100419,'800000494','2021FA','student'), | |
(100419,'800001484','2021FA','student'), | |
(100419,'800001694','2021FA','student'), | |
(100419,'800001991','2021FA','student'), | |
(100420,'800001181','2021FA','student'), | |
(100420,'800001309','2021FA','student'), | |
(100420,'800001518','2021FA','student'), | |
(100420,'800002241','2021FA','student'), | |
(100420,'800002314','2021FA','student'), | |
(100420,'800002510','2021FA','instructor'), | |
(100420,'800002692','2021FA','student'), | |
(100420,'800002786','2021FA','student'), | |
(100420,'800002970','2021FA','instructor'), | |
(100421,'800000097','2021FA','student'), | |
(100421,'800001420','2021FA','student'), | |
(100421,'800001436','2021FA','student'), | |
(100421,'800002750','2021FA','instructor'), | |
(100422,'800000550','2021FA','student'), | |
(100422,'800001226','2021FA','student'), | |
(100422,'800001251','2021FA','student'), | |
(100422,'800001480','2021FA','student'), | |
(100422,'800001609','2021FA','student'), | |
(100422,'800002204','2021FA','student'), | |
(100422,'800002369','2021FA','student'), | |
(100422,'800002453','2021FA','student'), | |
(100422,'800002510','2021FA','instructor'), | |
(100423,'800000149','2021FA','instructor'), | |
(100423,'800000861','2021FA','student'), | |
(100423,'800001102','2021FA','student'), | |
(100423,'800001167','2021FA','student'), | |
(100423,'800001311','2021FA','student'), | |
(100423,'800001363','2021FA','student'), | |
(100423,'800001439','2021FA','student'), | |
(100423,'800001468','2021FA','student'), | |
(100423,'800001643','2021FA','student'), | |
(100423,'800001988','2021FA','student'), | |
(100423,'800002501','2021FA','student'), | |
(100423,'800002664','2021FA','student'), | |
(100424,'800000332','2021FA','student'), | |
(100424,'800000398','2021FA','student'), | |
(100424,'800001117','2021FA','student'), | |
(100424,'800001285','2021FA','student'), | |
(100424,'800001345','2021FA','student'), | |
(100424,'800001447','2021FA','student'), | |
(100424,'800001529','2021FA','student'), | |
(100424,'800002025','2021FA','student'), | |
(100424,'800002239','2021FA','student'), | |
(100425,'800000489','2021FA','student'), | |
(100425,'800000682','2021FA','student'), | |
(100425,'800000694','2021FA','student'), | |
(100425,'800000820','2021FA','instructor'), | |
(100425,'800000903','2021FA','student'), | |
(100425,'800001348','2021FA','student'), | |
(100425,'800001414','2021FA','student'), | |
(100425,'800001993','2021FA','student'), | |
(100425,'800002524','2021FA','student'), | |
(100425,'800002591','2021FA','student'), | |
(100425,'800002872','2021FA','student'), | |
(100426,'800000489','2021FA','student'), | |
(100426,'800000828','2021FA','student'), | |
(100426,'800001250','2021FA','student'), | |
(100426,'800001549','2021FA','instructor'), | |
(100426,'800001956','2021FA','student'), | |
(100426,'800002072','2021FA','student'), | |
(100426,'800002343','2021FA','student'), | |
(100426,'800002516','2021FA','student'), | |
(100426,'800002538','2021FA','instructor'), | |
(100426,'800002557','2021FA','student'), | |
(100426,'800002750','2021FA','instructor'), | |
(100427,'800000086','2021FA','student'), | |
(100427,'800000273','2021FA','student'), | |
(100427,'800000540','2021FA','student'), | |
(100427,'800000586','2021FA','student'), | |
(100427,'800000820','2021FA','instructor'), | |
(100427,'800001431','2021FA','student'), | |
(100427,'800001696','2021FA','student'), | |
(100427,'800001811','2021FA','student'), | |
(100427,'800001904','2021FA','instructor'), | |
(100427,'800002876','2021FA','instructor'), | |
(100428,'800000125','2021FA','student'), | |
(100428,'800000226','2021FA','student'), | |
(100428,'800000421','2021FA','student'), | |
(100428,'800000616','2021FA','student'), | |
(100428,'800000628','2021FA','student'), | |
(100428,'800000791','2021FA','student'), | |
(100428,'800000864','2021FA','student'), | |
(100428,'800000960','2021FA','student'), | |
(100428,'800001397','2021FA','student'), | |
(100428,'800001504','2021FA','student'), | |
(100429,'800000059','2021FA','student'), | |
(100429,'800000294','2021FA','student'), | |
(100429,'800000350','2021FA','student'), | |
(100429,'800000826','2021FA','student'), | |
(100429,'800000952','2021FA','student'), | |
(100429,'800001114','2021FA','student'), | |
(100429,'800001625','2021FA','student'), | |
(100429,'800002060','2021FA','student'), | |
(100429,'800002832','2021FA','student'), | |
(100430,'800000445','2021FA','student'), | |
(100430,'800000657','2021FA','student'), | |
(100430,'800001214','2021FA','student'), | |
(100430,'800001244','2021FA','student'), | |
(100430,'800001371','2021FA','student'), | |
(100430,'800001801','2021FA','student'), | |
(100430,'800001933','2021FA','student'), | |
(100430,'800002152','2021FA','student'), | |
(100430,'800002250','2021FA','instructor'), | |
(100430,'800002576','2021FA','student'), | |
(100430,'800002903','2021FA','instructor'), | |
(100431,'800000093','2021FA','student'), | |
(100431,'800000112','2021FA','student'), | |
(100431,'800000309','2021FA','student'), | |
(100431,'800000616','2021FA','student'), | |
(100431,'800000625','2021FA','student'), | |
(100431,'800000645','2021FA','student'), | |
(100431,'800000852','2021FA','student'), | |
(100431,'800002217','2021FA','student'), | |
(100431,'800002379','2021FA','student'), | |
(100431,'800002561','2021FA','student'), | |
(100432,'800000271','2021FA','student'), | |
(100432,'800000326','2021FA','student'), | |
(100432,'800000586','2021FA','student'), | |
(100432,'800000672','2021FA','student'), | |
(100432,'800001678','2021FA','student'), | |
(100432,'800001793','2021FA','student'), | |
(100432,'800002064','2021FA','student'), | |
(100432,'800002234','2021FA','instructor'), | |
(100432,'800002242','2021FA','student'), | |
(100432,'800002618','2021FA','student'), | |
(100433,'800000067','2021FA','student'), | |
(100433,'800000382','2021FA','instructor'), | |
(100433,'800000491','2021FA','student'), | |
(100433,'800000762','2021FA','student'), | |
(100433,'800000818','2021FA','student'), | |
(100433,'800000949','2021FA','instructor'), | |
(100433,'800001156','2021FA','student'), | |
(100433,'800001199','2021FA','student'), | |
(100433,'800001367','2021FA','student'), | |
(100433,'800001532','2021FA','student'), | |
(100433,'800001662','2021FA','student'), | |
(100433,'800001696','2021FA','student'), | |
(100433,'800002005','2021FA','student'), | |
(100433,'800002178','2021FA','student'), | |
(100433,'800002274','2021FA','student'), | |
(100434,'800000041','2021FA','student'), | |
(100434,'800000216','2021FA','student'), | |
(100434,'800000497','2021FA','student'), | |
(100434,'800000514','2021FA','student'), | |
(100434,'800000804','2021FA','student'), | |
(100434,'800001520','2021FA','student'), | |
(100434,'800001756','2021FA','student'), | |
(100434,'800001955','2021FA','student'), | |
(100434,'800002020','2021FA','student'), | |
(100434,'800002507','2021FA','student'), | |
(100434,'800002617','2021FA','student'), | |
(100434,'800002953','2021FA','student'), | |
(100435,'800000170','2021FA','student'), | |
(100435,'800000333','2021FA','student'), | |
(100435,'800000425','2021FA','student'), | |
(100435,'800000586','2021FA','student'), | |
(100435,'800000665','2021FA','student'), | |
(100435,'800000729','2021FA','student'), | |
(100435,'800000773','2021FA','student'), | |
(100435,'800001247','2021FA','instructor'), | |
(100435,'800001421','2021FA','student'), | |
(100435,'800001587','2021FA','instructor'), | |
(100435,'800001692','2021FA','student'), | |
(100435,'800002001','2021FA','student'), | |
(100435,'800002691','2021FA','student'), | |
(100435,'800002924','2021FA','student'), | |
(100436,'800000116','2021FA','student'), | |
(100436,'800000450','2021FA','student'), | |
(100436,'800000755','2021FA','student'), | |
(100436,'800001238','2021FA','student'), | |
(100436,'800001612','2021FA','student'), | |
(100436,'800001832','2021FA','student'), | |
(100436,'800001910','2021FA','student'), | |
(100436,'800002089','2021FA','student'), | |
(100436,'800002149','2021FA','student'), | |
(100436,'800002994','2021FA','student'), | |
(100437,'800000925','2021FA','student'), | |
(100437,'800000947','2021FA','student'), | |
(100437,'800001182','2021FA','student'), | |
(100437,'800001738','2021FA','student'), | |
(100437,'800002155','2021FA','student'), | |
(100438,'800000032','2021FA','student'), | |
(100438,'800000165','2021FA','student'), | |
(100438,'800000433','2021FA','student'), | |
(100438,'800000471','2021FA','student'), | |
(100438,'800000494','2021FA','student'), | |
(100438,'800000611','2021FA','student'), | |
(100438,'800000798','2021FA','student'), | |
(100438,'800001021','2021FA','student'), | |
(100438,'800001101','2021FA','instructor'), | |
(100438,'800001239','2021FA','student'), | |
(100438,'800001251','2021FA','student'), | |
(100438,'800001910','2021FA','student'), | |
(100438,'800002234','2021FA','instructor'), | |
(100438,'800002250','2021FA','instructor'), | |
(100438,'800002267','2021FA','student'), | |
(100438,'800002395','2021FA','student'), | |
(100438,'800002771','2021FA','student'), | |
(100438,'800002903','2021FA','instructor'), | |
(100438,'800002917','2021FA','instructor'), | |
(100439,'800000148','2021FA','student'), | |
(100439,'800000165','2021FA','student'), | |
(100439,'800000173','2021FA','student'), | |
(100439,'800000822','2021FA','student'), | |
(100439,'800000880','2021FA','student'), | |
(100439,'800000987','2021FA','student'), | |
(100439,'800001132','2021FA','student'), | |
(100439,'800001225','2021FA','student'), | |
(100439,'800002135','2021FA','student'), | |
(100439,'800002242','2021FA','student'), | |
(100439,'800002517','2021FA','student'), | |
(100439,'800002623','2021FA','student'), | |
(100439,'800002767','2021FA','student'), | |
(100439,'800002882','2021FA','student'), | |
(100440,'800000088','2021FA','student'), | |
(100440,'800000256','2021FA','student'), | |
(100440,'800000288','2021FA','student'), | |
(100440,'800000367','2021FA','student'), | |
(100440,'800000404','2021FA','student'), | |
(100440,'800000461','2021FA','student'), | |
(100440,'800001064','2021FA','student'), | |
(100440,'800001197','2021FA','instructor'), | |
(100440,'800002081','2021FA','student'), | |
(100440,'800002145','2021FA','student'), | |
(100440,'800002481','2021FA','student'), | |
(100440,'800002662','2021FA','student'), | |
(100441,'800000652','2021FA','student'), | |
(100441,'800001100','2021FA','student'), | |
(100441,'800001190','2021FA','student'), | |
(100441,'800001710','2021FA','student'), | |
(100441,'800002119','2021FA','student'), | |
(100441,'800002161','2021FA','student'), | |
(100441,'800002241','2021FA','student'), | |
(100441,'800002663','2021FA','student'), | |
(100441,'800002697','2021FA','student'), | |
(100441,'800002953','2021FA','student'), | |
(100442,'800000159','2021FA','student'), | |
(100442,'800000394','2021FA','student'), | |
(100442,'800000524','2021FA','instructor'), | |
(100442,'800000656','2021FA','student'), | |
(100442,'800001396','2021FA','student'), | |
(100442,'800001678','2021FA','student'), | |
(100442,'800001694','2021FA','student'), | |
(100442,'800001996','2021FA','student'), | |
(100442,'800002169','2021FA','student'), | |
(100442,'800002233','2021FA','student'), | |
(100442,'800002241','2021FA','student'), | |
(100442,'800002412','2021FA','student'), | |
(100442,'800002898','2021FA','student'), | |
(100442,'800002948','2021FA','student'), | |
(100443,'800000056','2021FA','student'), | |
(100443,'800000180','2021FA','student'), | |
(100443,'800000524','2021FA','instructor'), | |
(100443,'800000662','2021FA','student'), | |
(100443,'800000697','2021FA','instructor'), | |
(100443,'800000979','2021FA','student'), | |
(100443,'800001133','2021FA','student'), | |
(100443,'800001197','2021FA','instructor'), | |
(100443,'800001318','2021FA','student'), | |
(100443,'800001480','2021FA','student'), | |
(100443,'800001626','2021FA','student'), | |
(100443,'800001914','2021FA','student'), | |
(100443,'800002465','2021FA','student'), | |
(100443,'800002953','2021FA','student'), | |
(100444,'800000059','2021FA','student'), | |
(100444,'800000553','2021FA','student'), | |
(100444,'800000580','2021FA','student'), | |
(100444,'800000925','2021FA','student'), | |
(100444,'800001187','2021FA','student'), | |
(100444,'800002150','2021FA','instructor'), | |
(100444,'800002150','2021FA','instructor'), | |
(100444,'800002187','2021FA','student'), | |
(100444,'800002200','2021FA','student'), | |
(100445,'800000294','2021FA','student'), | |
(100445,'800000722','2021FA','instructor'), | |
(100445,'800000726','2021FA','student'), | |
(100445,'800000765','2021FA','student'), | |
(100445,'800001180','2021FA','student'), | |
(100445,'800001396','2021FA','student'), | |
(100445,'800001797','2021FA','student'), | |
(100445,'800001850','2021FA','student'), | |
(100445,'800001937','2021FA','student'), | |
(100445,'800002196','2021FA','student'), | |
(100445,'800002406','2021FA','student'), | |
(100445,'800002791','2021FA','student'), | |
(100445,'800002827','2021FA','student'), | |
(100446,'800000033','2021FA','student'), | |
(100446,'800000173','2021FA','student'), | |
(100446,'800000627','2021FA','student'), | |
(100446,'800000722','2021FA','instructor'), | |
(100446,'800000879','2021FA','student'), | |
(100446,'800001157','2021FA','student'), | |
(100446,'800001287','2021FA','student'), | |
(100446,'800001626','2021FA','student'), | |
(100446,'800001835','2021FA','student'), | |
(100446,'800001837','2021FA','student'), | |
(100446,'800002020','2021FA','student'), | |
(100446,'800002248','2021FA','student'), | |
(100446,'800002360','2021FA','student'), | |
(100446,'800002790','2021FA','student'), | |
(100446,'800002868','2021FA','student'), | |
(100446,'800002896','2021FA','student'), | |
(100446,'800002924','2021FA','student'), | |
(100447,'800000646','2021FA','student'), | |
(100447,'800000660','2021FA','student'), | |
(100447,'800000705','2021FA','student'), | |
(100447,'800000862','2021FA','student'), | |
(100447,'800001282','2021FA','student'), | |
(100447,'800001318','2021FA','student'), | |
(100447,'800001442','2021FA','student'), | |
(100447,'800001571','2021FA','student'), | |
(100447,'800001573','2021FA','student'), | |
(100447,'800001670','2021FA','student'), | |
(100447,'800001725','2021FA','student'), | |
(100447,'800001729','2021FA','student'), | |
(100447,'800001917','2021FA','student'), | |
(100447,'800002044','2021FA','student'), | |
(100447,'800002373','2021FA','student'), | |
(100447,'800002650','2021FA','instructor'), | |
(100447,'800002878','2021FA','student'), | |
(100448,'800000343','2021FA','student'), | |
(100448,'800000566','2021FA','student'), | |
(100448,'800000607','2021FA','student'), | |
(100448,'800000614','2021FA','instructor'), | |
(100448,'800001166','2021FA','student'), | |
(100448,'800001322','2021FA','student'), | |
(100448,'800001480','2021FA','student'), | |
(100448,'800001552','2021FA','student'), | |
(100448,'800001614','2021FA','student'), | |
(100448,'800001994','2021FA','student'), | |
(100448,'800002003','2021FA','student'), | |
(100448,'800002072','2021FA','student'), | |
(100448,'800002172','2021FA','student'), | |
(100448,'800002318','2021FA','student'), | |
(100448,'800002394','2021FA','instructor'), | |
(100448,'800002541','2021FA','student'), | |
(100449,'800000193','2021FA','student'), | |
(100449,'800000697','2021FA','instructor'), | |
(100449,'800000981','2021FA','student'), | |
(100449,'800001559','2021FA','student'), | |
(100449,'800001578','2021FA','instructor'), | |
(100449,'800002650','2021FA','instructor'), | |
(100449,'800002784','2021FA','student'), | |
(100450,'800000113','2021FA','student'), | |
(100450,'800000499','2021FA','student'), | |
(100450,'800000634','2021FA','student'), | |
(100450,'800000768','2021FA','student'), | |
(100450,'800001412','2021FA','student'), | |
(100450,'800001578','2021FA','instructor'), | |
(100450,'800001591','2021FA','student'), | |
(100450,'800001645','2021FA','student'), | |
(100450,'800001859','2021FA','student'), | |
(100450,'800001896','2021FA','student'), | |
(100450,'800002101','2021FA','student'), | |
(100450,'800002214','2021FA','student'), | |
(100450,'800002240','2021FA','student'), | |
(100450,'800002427','2021FA','student'), | |
(100451,'800000521','2021FA','student'), | |
(100451,'800000555','2021FA','student'), | |
(100451,'800000679','2021FA','student'), | |
(100451,'800001012','2021FA','student'), | |
(100451,'800001048','2021FA','student'), | |
(100451,'800001064','2021FA','student'), | |
(100451,'800001143','2021FA','student'), | |
(100451,'800002233','2021FA','student'), | |
(100451,'800002251','2021FA','instructor'), | |
(100451,'800002295','2021FA','instructor'), | |
(100451,'800002320','2021FA','student'), | |
(100451,'800002762','2021FA','student'), | |
(100452,'800000165','2021FA','student'), | |
(100452,'800000680','2021FA','instructor'), | |
(100452,'800000846','2021FA','student'), | |
(100452,'800001075','2021FA','student'), | |
(100452,'800001443','2021FA','student'), | |
(100452,'800001895','2021FA','student'), | |
(100452,'800001919','2021FA','student'), | |
(100452,'800001983','2021FA','student'), | |
(100452,'800001986','2021FA','student'), | |
(100452,'800002143','2021FA','student'), | |
(100452,'800002724','2021FA','instructor'), | |
(100453,'800000160','2021FA','student'), | |
(100453,'800000206','2021FA','student'), | |
(100453,'800000708','2021FA','student'), | |
(100453,'800001138','2021FA','student'), | |
(100453,'800001428','2021FA','student'), | |
(100453,'800002338','2021FA','student'), | |
(100453,'800002346','2021FA','student'), | |
(100453,'800002526','2021FA','student'), | |
(100453,'800002589','2021FA','student'), | |
(100454,'800000680','2021FA','instructor'), | |
(100454,'800000915','2021FA','student'), | |
(100454,'800000917','2021FA','student'), | |
(100454,'800001076','2021FA','student'), | |
(100454,'800001229','2021FA','student'), | |
(100454,'800001238','2021FA','student'), | |
(100454,'800001260','2021FA','student'), | |
(100454,'800001334','2021FA','student'), | |
(100454,'800001716','2021FA','student'), | |
(100454,'800001891','2021FA','student'), | |
(100454,'800002020','2021FA','student'), | |
(100454,'800002251','2021FA','instructor'), | |
(100454,'800002430','2021FA','instructor'), | |
(100454,'800002778','2021FA','student'), | |
(100455,'800000068','2021FA','instructor'), | |
(100455,'800000256','2021FA','student'), | |
(100455,'800000491','2021FA','student'), | |
(100455,'800000545','2021FA','student'), | |
(100455,'800000624','2021FA','student'), | |
(100455,'800000747','2021FA','student'), | |
(100455,'800000910','2021FA','student'), | |
(100455,'800001469','2021FA','student'), | |
(100455,'800001531','2021FA','student'), | |
(100455,'800001574','2021FA','student'), | |
(100455,'800002062','2021FA','student'), | |
(100455,'800002312','2021FA','student'), | |
(100455,'800002677','2021FA','student'), | |
(100455,'800002821','2021FA','student'), | |
(100455,'800002943','2021FA','student'), | |
(100456,'800000108','2021FA','student'), | |
(100456,'800000213','2021FA','student'), | |
(100456,'800001019','2021FA','student'), | |
(100456,'800001468','2021FA','student'), | |
(100456,'800001698','2021FA','student'), | |
(100456,'800002137','2021FA','student'), | |
(100456,'800002162','2021FA','student'), | |
(100456,'800002491','2021FA','student'), | |
(100457,'800000068','2021FA','instructor'), | |
(100457,'800000332','2021FA','student'), | |
(100457,'800001190','2021FA','student'), | |
(100457,'800001238','2021FA','student'), | |
(100457,'800001436','2021FA','student'), | |
(100457,'800001630','2021FA','student'), | |
(100457,'800001774','2021FA','student'), | |
(100457,'800001938','2021FA','student'), | |
(100457,'800002175','2021FA','student'), | |
(100457,'800002906','2021FA','instructor'), | |
(100458,'800000049','2021FA','student'), | |
(100458,'800000270','2021FA','student'), | |
(100458,'800000495','2021FA','student'), | |
(100458,'800000571','2021FA','student'), | |
(100458,'800001447','2021FA','student'), | |
(100458,'800001665','2021FA','student'), | |
(100458,'800001880','2021FA','student'), | |
(100458,'800002025','2021FA','student'), | |
(100458,'800002621','2021FA','student'), | |
(100458,'800002770','2021FA','student'), | |
(100459,'800000040','2021FA','student'), | |
(100459,'800000550','2021FA','student'), | |
(100459,'800000932','2021FA','student'), | |
(100459,'800001004','2021FA','student'), | |
(100459,'800001336','2021FA','instructor'), | |
(100459,'800001373','2021FA','student'), | |
(100459,'800001421','2021FA','student'), | |
(100459,'800001450','2021FA','student'), | |
(100459,'800001774','2021FA','student'), | |
(100459,'800001850','2021FA','student'), | |
(100459,'800001881','2021FA','student'), | |
(100459,'800002042','2021FA','student'), | |
(100459,'800002885','2021FA','student'), | |
(100460,'800000136','2021FA','student'), | |
(100460,'800000843','2021FA','student'), | |
(100460,'800001096','2021FA','student'), | |
(100460,'800001251','2021FA','student'), | |
(100460,'800001814','2021FA','student'), | |
(100460,'800002172','2021FA','student'), | |
(100461,'800000418','2021FA','student'), | |
(100461,'800000554','2021FA','student'), | |
(100461,'800000819','2021FA','student'), | |
(100461,'800001214','2021FA','student'), | |
(100461,'800001562','2021FA','student'), | |
(100461,'800001622','2021FA','student'), | |
(100461,'800001813','2021FA','student'), | |
(100461,'800002017','2021FA','student'), | |
(100461,'800002692','2021FA','student'), | |
(100461,'800002724','2021FA','instructor'), | |
(100461,'800002899','2021FA','student'), | |
(100462,'800000225','2021FA','student'), | |
(100462,'800000652','2021FA','student'), | |
(100462,'800000903','2021FA','student'), | |
(100462,'800001098','2021FA','student'), | |
(100462,'800002420','2021FA','student'), | |
(100462,'800002425','2021FA','student'), | |
(100462,'800002594','2021FA','student'), | |
(100462,'800002800','2021FA','student'), | |
(100462,'800002868','2021FA','student'), | |
(100463,'800000326','2021FA','student'), | |
(100463,'800000694','2021FA','student'), | |
(100463,'800001820','2021FA','student'), | |
(100463,'800001910','2021FA','student'), | |
(100463,'800002166','2021FA','student'), | |
(100463,'800002669','2021FA','instructor'), | |
(100463,'800002691','2021FA','student'), | |
(100463,'800002871','2021FA','student'), | |
(100464,'800000564','2021FA','student'), | |
(100464,'800000861','2021FA','student'), | |
(100464,'800000926','2021FA','instructor'), | |
(100464,'800001014','2021FA','student'), | |
(100464,'800001337','2021FA','student'), | |
(100464,'800001433','2021FA','student'), | |
(100464,'800001645','2021FA','student'), | |
(100464,'800001784','2021FA','instructor'), | |
(100464,'800001920','2021FA','student'), | |
(100464,'800002056','2021FA','student'), | |
(100464,'800002209','2021FA','student'), | |
(100464,'800002211','2021FA','student'), | |
(100464,'800002240','2021FA','student'), | |
(100464,'800002605','2021FA','student'), | |
(100464,'800002616','2021FA','student'), | |
(100464,'800002842','2021FA','instructor'), | |
(100464,'800002927','2021FA','student'), | |
(100465,'800000011','2021FA','student'), | |
(100465,'800000180','2021FA','student'), | |
(100465,'800000499','2021FA','student'), | |
(100465,'800000709','2021FA','student'), | |
(100465,'800000768','2021FA','student'), | |
(100465,'800000989','2021FA','student'), | |
(100465,'800001270','2021FA','student'), | |
(100465,'800001910','2021FA','student'), | |
(100465,'800002148','2021FA','student'), | |
(100465,'800002224','2021FA','student'), | |
(100465,'800002815','2021FA','student'), | |
(100465,'800002851','2021FA','instructor'), | |
(100466,'800000278','2021FA','instructor'), | |
(100466,'800000553','2021FA','student'), | |
(100466,'800000595','2021FA','student'), | |
(100466,'800001102','2021FA','student'), | |
(100466,'800001130','2021FA','student'), | |
(100466,'800001167','2021FA','student'), | |
(100466,'800001343','2021FA','student'), | |
(100466,'800001559','2021FA','student'), | |
(100466,'800001800','2021FA','student'), | |
(100466,'800001846','2021FA','student'), | |
(100466,'800001995','2021FA','student'), | |
(100466,'800002175','2021FA','student'), | |
(100466,'800002224','2021FA','student'), | |
(100466,'800002476','2021FA','student'), | |
(100466,'800002507','2021FA','student'), | |
(100466,'800002617','2021FA','student'), | |
(100467,'800000082','2021FA','student'), | |
(100467,'800000148','2021FA','student'), | |
(100467,'800000356','2021FA','student'), | |
(100467,'800000572','2021FA','student'), | |
(100467,'800000636','2021FA','student'), | |
(100467,'800000798','2021FA','student'), | |
(100467,'800000859','2021FA','student'), | |
(100467,'800001440','2021FA','student'), | |
(100467,'800001531','2021FA','student'), | |
(100467,'800001960','2021FA','student'), | |
(100467,'800002174','2021FA','student'), | |
(100467,'800002271','2021FA','instructor'), | |
(100467,'800002842','2021FA','instructor'), | |
(100467,'800002924','2021FA','student'), | |
(100468,'800000362','2021FA','student'), | |
(100468,'800000808','2021FA','student'), | |
(100468,'800000826','2021FA','student'), | |
(100468,'800001257','2021FA','student'), | |
(100468,'800001276','2021FA','student'), | |
(100468,'800001431','2021FA','student'), | |
(100468,'800001653','2021FA','student'), | |
(100468,'800001841','2021FA','student'), | |
(100468,'800001958','2021FA','student'), | |
(100468,'800002217','2021FA','student'), | |
(100468,'800002930','2021FA','student'), | |
(100469,'800000278','2021FA','instructor'), | |
(100469,'800000390','2021FA','student'), | |
(100469,'800001360','2021FA','student'), | |
(100469,'800001464','2021FA','student'), | |
(100469,'800001588','2021FA','student'), | |
(100469,'800001955','2021FA','student'), | |
(100469,'800001983','2021FA','student'), | |
(100469,'800002205','2021FA','student'), | |
(100469,'800002610','2021FA','instructor'), | |
(100469,'800002658','2021FA','student'), | |
(100469,'800002851','2021FA','instructor'), | |
(100470,'800000495','2021FA','student'), | |
(100470,'800000718','2021FA','student'), | |
(100470,'800001222','2021FA','student'), | |
(100470,'800001615','2021FA','instructor'), | |
(100470,'800002169','2021FA','student'), | |
(100470,'800002175','2021FA','student'), | |
(100470,'800002586','2021FA','student'), | |
(100470,'800002599','2021FA','student'), | |
(100471,'800000225','2021FA','student'), | |
(100471,'800001592','2021FA','student'), | |
(100471,'800001670','2021FA','student'), | |
(100471,'800001724','2021FA','student'), | |
(100471,'800001784','2021FA','instructor'), | |
(100471,'800001801','2021FA','student'), | |
(100471,'800002080','2021FA','student'), | |
(100471,'800002271','2021FA','instructor'), | |
(100471,'800002305','2021FA','student'), | |
(100471,'800002420','2021FA','student'), | |
(100471,'800002610','2021FA','instructor'), | |
(100471,'800002652','2021FA','student'), | |
(100472,'800000013','2021FA','student'), | |
(100472,'800000038','2021FA','student'), | |
(100472,'800000637','2021FA','student'), | |
(100472,'800000692','2021FA','student'), | |
(100472,'800000995','2021FA','student'), | |
(100472,'800001029','2021FA','student'), | |
(100472,'800001167','2021FA','student'), | |
(100472,'800001529','2021FA','student'), | |
(100472,'800001640','2021FA','student'), | |
(100472,'800001857','2021FA','student'), | |
(100472,'800001901','2021FA','student'), | |
(100472,'800001978','2021FA','instructor'), | |
(100472,'800002375','2021FA','student'), | |
(100472,'800002478','2021FA','student'), | |
(100472,'800002517','2021FA','student'), | |
(100473,'800000206','2021FA','student'), | |
(100473,'800000892','2021FA','student'), | |
(100473,'800001303','2021FA','student'), | |
(100473,'800001373','2021FA','student'), | |
(100473,'800001450','2021FA','student'), | |
(100473,'800001713','2021FA','student'), | |
(100473,'800001908','2021FA','instructor'), | |
(100473,'800001964','2021FA','instructor'), | |
(100473,'800002163','2021FA','student'), | |
(100473,'800002165','2021FA','student'), | |
(100473,'800002328','2021FA','student'), | |
(100473,'800002960','2021FA','student'), | |
(100474,'800000491','2021FA','student'), | |
(100474,'800000630','2021FA','student'), | |
(100474,'800001230','2021FA','student'), | |
(100474,'800001329','2021FA','student'), | |
(100474,'800001665','2021FA','student'), | |
(100474,'800001885','2021FA','instructor'), | |
(100474,'800001961','2021FA','student'), | |
(100474,'800001995','2021FA','student'), | |
(100474,'800002224','2021FA','student'), | |
(100474,'800002359','2021FA','student'), | |
(100474,'800002449','2021FA','student'), | |
(100474,'800002455','2021FA','student'), | |
(100474,'800002630','2021FA','student'), | |
(100474,'800002689','2021FA','student'), | |
(100474,'800002900','2021FA','student'), | |
(100475,'800000248','2021FA','student'), | |
(100475,'800000772','2021FA','student'), | |
(100475,'800001014','2021FA','student'), | |
(100475,'800001480','2021FA','student'), | |
(100475,'800001552','2021FA','student'), | |
(100475,'800001561','2021FA','student'), | |
(100475,'800002111','2021FA','student'), | |
(100475,'800002163','2021FA','student'), | |
(100475,'800002255','2021FA','student'), | |
(100475,'800002673','2021FA','student'), | |
(100475,'800002710','2021FA','student'), | |
(100475,'800002943','2021FA','student'), | |
(100476,'800000154','2021FA','student'), | |
(100476,'800000343','2021FA','student'), | |
(100476,'800000372','2021FA','student'), | |
(100476,'800000942','2021FA','student'), | |
(100476,'800001050','2021FA','student'), | |
(100476,'800001198','2021FA','student'), | |
(100476,'800001252','2021FA','student'), | |
(100476,'800001591','2021FA','student'), | |
(100476,'800001614','2021FA','student'), | |
(100476,'800001838','2021FA','instructor'), | |
(100476,'800001851','2021FA','instructor'), | |
(100476,'800002169','2021FA','student'), | |
(100476,'800002260','2021FA','instructor'), | |
(100477,'800000515','2021FA','student'), | |
(100477,'800000756','2021FA','instructor'), | |
(100477,'800000832','2021FA','student'), | |
(100477,'800000951','2021FA','student'), | |
(100477,'800001153','2021FA','student'), | |
(100477,'800001526','2021FA','student'), | |
(100477,'800001564','2021FA','student'), | |
(100477,'800001611','2021FA','student'), | |
(100477,'800001885','2021FA','instructor'), | |
(100477,'800002525','2021FA','student'), | |
(100477,'800002778','2021FA','student'), | |
(100478,'800000015','2021FA','instructor'), | |
(100478,'800000031','2021FA','student'), | |
(100478,'800000610','2021FA','student'), | |
(100478,'800000663','2021FA','student'), | |
(100478,'800000762','2021FA','student'), | |
(100478,'800000770','2021FA','student'), | |
(100478,'800000782','2021FA','student'), | |
(100478,'800001185','2021FA','student'), | |
(100478,'800001367','2021FA','student'), | |
(100478,'800001477','2021FA','student'), | |
(100478,'800001519','2021FA','student'), | |
(100478,'800001640','2021FA','student'), | |
(100478,'800002328','2021FA','student'), | |
(100479,'800000054','2021FA','student'), | |
(100479,'800000256','2021FA','student'), | |
(100479,'800000284','2021FA','student'), | |
(100479,'800000489','2021FA','student'), | |
(100479,'800000603','2021FA','student'), | |
(100479,'800002012','2021FA','instructor'), | |
(100479,'800002178','2021FA','student'), | |
(100479,'800002205','2021FA','student'), | |
(100480,'800000592','2021FA','student'), | |
(100480,'800000662','2021FA','student'), | |
(100480,'800000696','2021FA','student'), | |
(100480,'800000841','2021FA','student'), | |
(100480,'800000890','2021FA','student'), | |
(100480,'800001420','2021FA','student'), | |
(100480,'800001777','2021FA','student'), | |
(100480,'800002025','2021FA','student'), | |
(100480,'800002586','2021FA','student'), | |
(100480,'800002814','2021FA','student'), | |
(100481,'800000015','2021FA','instructor'), | |
(100481,'800000293','2021FA','student'), | |
(100481,'800000630','2021FA','student'), | |
(100481,'800001019','2021FA','student'), | |
(100481,'800001122','2021FA','student'), | |
(100481,'800001189','2021FA','student'), | |
(100481,'800001573','2021FA','student'), | |
(100481,'800001641','2021FA','student'), | |
(100481,'800001795','2021FA','student'), | |
(100481,'800001968','2021FA','student'), | |
(100481,'800002012','2021FA','instructor'), | |
(100481,'800002103','2021FA','student'), | |
(100481,'800002134','2021FA','student'), | |
(100481,'800002731','2021FA','student'), | |
(100482,'800000445','2021FA','student'), | |
(100482,'800000756','2021FA','instructor'), | |
(100482,'800001148','2021FA','student'), | |
(100482,'800001171','2021FA','student'), | |
(100482,'800001181','2021FA','student'), | |
(100482,'800001838','2021FA','instructor'), | |
(100482,'800002502','2021FA','student'), | |
(100483,'800000031','2021FA','student'), | |
(100483,'800000047','2021FA','student'), | |
(100483,'800000076','2021FA','student'), | |
(100483,'800000940','2021FA','student'), | |
(100483,'800001313','2021FA','student'), | |
(100483,'800001473','2021FA','student'), | |
(100483,'800001633','2021FA','student'), | |
(100483,'800001768','2021FA','student'), | |
(100483,'800001851','2021FA','instructor'), | |
(100483,'800001877','2021FA','student'), | |
(100483,'800002395','2021FA','student'), | |
(100483,'800002443','2021FA','student'), | |
(100484,'800000499','2021FA','student'), | |
(100484,'800000598','2021FA','instructor'), | |
(100484,'800000636','2021FA','student'), | |
(100484,'800000879','2021FA','student'), | |
(100484,'800001039','2021FA','instructor'), | |
(100484,'800001153','2021FA','student'), | |
(100484,'800001416','2021FA','student'), | |
(100484,'800001536','2021FA','student'), | |
(100484,'800001592','2021FA','student'), | |
(100484,'800001674','2021FA','student'), | |
(100484,'800001896','2021FA','student'), | |
(100484,'800002967','2021FA','student'), | |
(100484,'800002988','2021FA','student'), | |
(100485,'800000243','2021FA','instructor'), | |
(100485,'800000321','2021FA','student'), | |
(100485,'800000486','2021FA','student'), | |
(100485,'800000521','2021FA','student'), | |
(100485,'800000662','2021FA','student'), | |
(100485,'800000718','2021FA','student'), | |
(100485,'800000883','2021FA','instructor'), | |
(100485,'800001017','2021FA','student'), | |
(100485,'800001039','2021FA','instructor'), | |
(100485,'800001313','2021FA','student'), | |
(100485,'800001427','2021FA','instructor'), | |
(100485,'800001520','2021FA','student'), | |
(100485,'800001769','2021FA','student'), | |
(100485,'800002111','2021FA','student'), | |
(100485,'800002239','2021FA','student'), | |
(100485,'800002314','2021FA','student'), | |
(100485,'800002335','2021FA','instructor'), | |
(100485,'800002491','2021FA','student'), | |
(100485,'800002677','2021FA','student'), | |
(100485,'800002879','2021FA','student'), | |
(100486,'800000270','2021FA','student'), | |
(100486,'800000275','2021FA','student'), | |
(100486,'800000309','2021FA','student'), | |
(100486,'800000598','2021FA','instructor'), | |
(100486,'800000727','2021FA','student'), | |
(100486,'800001017','2021FA','student'), | |
(100486,'800001154','2021FA','student'), | |
(100486,'800001484','2021FA','student'), | |
(100486,'800001501','2021FA','student'), | |
(100486,'800001588','2021FA','student'), | |
(100486,'800001865','2021FA','student'), | |
(100486,'800002103','2021FA','student'), | |
(100486,'800002587','2021FA','student'), | |
(100487,'800000214','2021FA','student'), | |
(100487,'800000450','2021FA','student'), | |
(100487,'800001059','2021FA','student'), | |
(100487,'800001181','2021FA','student'), | |
(100487,'800001424','2021FA','student'), | |
(100487,'800001583','2021FA','student'), | |
(100487,'800001927','2021FA','student'), | |
(100487,'800002491','2021FA','student'), | |
(100487,'800002939','2021FA','student'), | |
(100488,'800000056','2021FA','student'), | |
(100488,'800000316','2021FA','student'), | |
(100488,'800000372','2021FA','student'), | |
(100488,'800000406','2021FA','student'), | |
(100488,'800000776','2021FA','student'), | |
(100488,'800001505','2021FA','student'), | |
(100488,'800001546','2021FA','student'), | |
(100488,'800001559','2021FA','student'), | |
(100488,'800002123','2021FA','student'), | |
(100488,'800002274','2021FA','student'), | |
(100488,'800002343','2021FA','student'), | |
(100488,'800002777','2021FA','student'), | |
(100488,'800002783','2021FA','student'), | |
(100488,'800002930','2021FA','student'), | |
(100488,'800002945','2021FA','student'), | |
(100489,'800000106','2021FA','student'), | |
(100489,'800000818','2021FA','student'), | |
(100489,'800000821','2021FA','student'), | |
(100489,'800000883','2021FA','instructor'), | |
(100489,'800000892','2021FA','student'), | |
(100489,'800001050','2021FA','student'), | |
(100489,'800001532','2021FA','student'), | |
(100489,'800001969','2021FA','student'), | |
(100490,'800000241','2021FA','student'), | |
(100490,'800000243','2021FA','instructor'), | |
(100490,'800000880','2021FA','student'), | |
(100490,'800001537','2021FA','student'), | |
(100490,'800001571','2021FA','student'), | |
(100490,'800001606','2021FA','student'), | |
(100490,'800001952','2021FA','student'), | |
(100490,'800002027','2021FA','student'), | |
(100490,'800002072','2021FA','student'), | |
(100490,'800002335','2021FA','instructor'), | |
(100490,'800002661','2021FA','student'), | |
(100490,'800002995','2021FA','instructor'), | |
(100491,'800000864','2021FA','student'), | |
(100491,'800000876','2021FA','student'), | |
(100491,'800001231','2021FA','student'), | |
(100491,'800001427','2021FA','instructor'), | |
(100491,'800001937','2021FA','student'), | |
(100491,'800002030','2021FA','student'), | |
(100491,'800002443','2021FA','student'), | |
(100491,'800002465','2021FA','student'), | |
(100492,'800000076','2021FA','instructor'), | |
(100492,'800000167','2021FA','student'), | |
(100492,'800000310','2021FA','student'), | |
(100492,'800000645','2021FA','student'), | |
(100492,'800001239','2021FA','student'), | |
(100492,'800001697','2021FA','student'), | |
(100492,'800001817','2021FA','student'), | |
(100492,'800001997','2021FA','student'), | |
(100492,'800002024','2021FA','student'), | |
(100492,'800002453','2021FA','student'), | |
(100493,'800000656','2021FA','student'), | |
(100493,'800001751','2021FA','student'), | |
(100493,'800002361','2021FA','student'), | |
(100493,'800002447','2021FA','student'), | |
(100493,'800002559','2021FA','student'), | |
(100493,'800002772','2021FA','instructor'), | |
(100494,'800000144','2021FA','student'), | |
(100494,'800000197','2021FA','student'), | |
(100494,'800000272','2021FA','student'), | |
(100494,'800000717','2021FA','student'), | |
(100494,'800000808','2021FA','student'), | |
(100494,'800001918','2021FA','student'), | |
(100494,'800002412','2021FA','student'), | |
(100494,'800002425','2021FA','student'), | |
(100494,'800002507','2021FA','student'), | |
(100495,'800000646','2021FA','student'), | |
(100495,'800000684','2021FA','instructor'), | |
(100495,'800001016','2021FA','student'), | |
(100495,'800001273','2021FA','student'), | |
(100495,'800001341','2021FA','student'), | |
(100495,'800002687','2021FA','student'), | |
(100495,'800002695','2021FA','student'), | |
(100495,'800002981','2021FA','student'), | |
(100496,'800000313','2021FA','student'), | |
(100496,'800000687','2021FA','student'), | |
(100496,'800001091','2021FA','student'), | |
(100496,'800001187','2021FA','student'), | |
(100496,'800001905','2021FA','student'), | |
(100496,'800002084','2021FA','instructor'), | |
(100496,'800002187','2021FA','student'), | |
(100496,'800002710','2021FA','student'), | |
(100496,'800002921','2021FA','student'), | |
(100497,'800000066','2021FA','student'), | |
(100497,'800000424','2021FA','student'), | |
(100497,'800000515','2021FA','student'), | |
(100497,'800000570','2021FA','student'), | |
(100497,'800000624','2021FA','student'), | |
(100497,'800000791','2021FA','student'), | |
(100497,'800001211','2021FA','student'), | |
(100497,'800001464','2021FA','student'), | |
(100497,'800002062','2021FA','student'), | |
(100497,'800002320','2021FA','student'), | |
(100497,'800002862','2021FA','student'), | |
(100498,'800000039','2021FA','student'), | |
(100498,'800000480','2021FA','student'), | |
(100498,'800000509','2021FA','student'), | |
(100498,'800000922','2021FA','student'), | |
(100498,'800001374','2021FA','student'), | |
(100498,'800001686','2021FA','instructor'), | |
(100498,'800001796','2021FA','student'), | |
(100498,'800002318','2021FA','student'), | |
(100498,'800002328','2021FA','student'), | |
(100498,'800002450','2021FA','student'), | |
(100498,'800002803','2021FA','student'), | |
(100499,'800000409','2021FA','student'), | |
(100499,'800000446','2021FA','instructor'), | |
(100499,'800000588','2021FA','student'), | |
(100499,'800000644','2021FA','student'), | |
(100499,'800000860','2021FA','instructor'), | |
(100499,'800000902','2021FA','student'), | |
(100499,'800000936','2021FA','student'), | |
(100499,'800001096','2021FA','student'), | |
(100499,'800002320','2021FA','student'), | |
(100499,'800002340','2021FA','student'), | |
(100499,'800002618','2021FA','student'), | |
(100499,'800002726','2021FA','student'), | |
(100500,'800000065','2021FA','student'), | |
(100500,'800000400','2021FA','student'), | |
(100500,'800000551','2021FA','instructor'), | |
(100500,'800000573','2021FA','student'), | |
(100500,'800000767','2021FA','student'), | |
(100500,'800001085','2021FA','student'), | |
(100500,'800001309','2021FA','student'), | |
(100500,'800001347','2021FA','instructor'), | |
(100500,'800001725','2021FA','instructor'), | |
(100500,'800001799','2021FA','student'), | |
(100500,'800001881','2021FA','student'), | |
(100500,'800002243','2021FA','student'), | |
(100500,'800002262','2021FA','student'), | |
(100501,'800000210','2021FA','student'), | |
(100501,'800000290','2021FA','student'), | |
(100501,'800000521','2021FA','student'), | |
(100501,'800000673','2021FA','student'), | |
(100501,'800000701','2021FA','student'), | |
(100501,'800000846','2021FA','student'), | |
(100501,'800001416','2021FA','student'), | |
(100501,'800001610','2021FA','student'), | |
(100501,'800001796','2021FA','student'), | |
(100501,'800002030','2021FA','student'), | |
(100501,'800002155','2021FA','student'), | |
(100501,'800002589','2021FA','student'), | |
(100502,'800000074','2021FA','student'), | |
(100502,'800000804','2021FA','student'), | |
(100502,'800000984','2021FA','student'), | |
(100502,'800001004','2021FA','student'), | |
(100502,'800001338','2021FA','student'), | |
(100502,'800001480','2021FA','student'), | |
(100502,'800002224','2021FA','student'), | |
(100502,'800002462','2021FA','instructor'), | |
(100503,'800000039','2021FA','student'), | |
(100503,'800000684','2021FA','instructor'), | |
(100503,'800001045','2021FA','instructor'), | |
(100503,'800001240','2021FA','student'), | |
(100503,'800001347','2021FA','instructor'), | |
(100503,'800002264','2021FA','student'), | |
(100503,'800002341','2021FA','student'), | |
(100503,'800002600','2021FA','student'), | |
(100504,'800000063','2021FA','student'), | |
(100504,'800000723','2021FA','student'), | |
(100504,'800000761','2021FA','student'), | |
(100504,'800000977','2021FA','student'), | |
(100504,'800001216','2021FA','student'), | |
(100504,'800001501','2021FA','student'), | |
(100504,'800001612','2021FA','student'), | |
(100504,'800002003','2021FA','student'), | |
(100504,'800002562','2021FA','student'), | |
(100504,'800002591','2021FA','student'), | |
(100504,'800002905','2021FA','student'), | |
(100505,'800000040','2021FA','student'), | |
(100505,'800000503','2021FA','student'), | |
(100505,'800001469','2021FA','student'), | |
(100505,'800001592','2021FA','student'), | |
(100505,'800001724','2021FA','student'), | |
(100505,'800001725','2021FA','instructor'), | |
(100505,'800001865','2021FA','student'), | |
(100505,'800002221','2021FA','student'), | |
(100505,'800002753','2021FA','student'), | |
(100505,'800002974','2021FA','student'), | |
(100506,'800000160','2021FA','student'), | |
(100506,'800000411','2021FA','student'), | |
(100506,'800001131','2021FA','student'), | |
(100506,'800001143','2021FA','student'), | |
(100506,'800001182','2021FA','student'), | |
(100506,'800001258','2021FA','student'), | |
(100506,'800001370','2021FA','student'), | |
(100506,'800001566','2021FA','student'), | |
(100506,'800001591','2021FA','student'), | |
(100506,'800002054','2021FA','student'), | |
(100506,'800002444','2021FA','student'), | |
(100506,'800002479','2021FA','student'), | |
(100506,'800002561','2021FA','student'), | |
(100506,'800002926','2021FA','student'), | |
(100506,'800002958','2021FA','instructor'), | |
(100507,'800000136','2021FA','student'), | |
(100507,'800000520','2021FA','student'), | |
(100507,'800000984','2021FA','student'), | |
(100507,'800001009','2021FA','instructor'), | |
(100507,'800001183','2021FA','student'), | |
(100507,'800001272','2021FA','student'), | |
(100507,'800001623','2021FA','student'), | |
(100507,'800001785','2021FA','student'), | |
(100507,'800002005','2021FA','student'), | |
(100507,'800002017','2021FA','student'), | |
(100507,'800002768','2021FA','student'), | |
(100507,'800002915','2021FA','student'), | |
(100507,'800002933','2021FA','student'), | |
(100507,'800002963','2021FA','student'), | |
(100507,'800002967','2021FA','student'), | |
(100508,'800000348','2021FA','student'), | |
(100508,'800001044','2021FA','student'), | |
(100508,'800001311','2021FA','student'), | |
(100508,'800001802','2021FA','student'), | |
(100508,'800001820','2021FA','student'), | |
(100508,'800002884','2021FA','student'), | |
(100508,'800002898','2021FA','student'), | |
(100508,'800002976','2021FA','student'), | |
(100509,'800000242','2021FA','student'), | |
(100509,'800000441','2021FA','student'), | |
(100509,'800000467','2021FA','student'), | |
(100509,'800000728','2021FA','student'), | |
(100509,'800000748','2021FA','student'), | |
(100509,'800001156','2021FA','student'), | |
(100509,'800001214','2021FA','student'), | |
(100509,'800001342','2021FA','student'), | |
(100509,'800001798','2021FA','student'), | |
(100509,'800001994','2021FA','student'), | |
(100509,'800002277','2021FA','student'), | |
(100509,'800002971','2021FA','student'), | |
(100509,'800002991','2021FA','student'), | |
(100510,'800000022','2021FA','student'), | |
(100510,'800000055','2021FA','student'), | |
(100510,'800000112','2021FA','student'), | |
(100510,'800000548','2021FA','student'), | |
(100510,'800000624','2021FA','student'), | |
(100510,'800000712','2021FA','student'), | |
(100510,'800000923','2021FA','student'), | |
(100510,'800001189','2021FA','student'), | |
(100510,'800002442','2021FA','student'), | |
(100510,'800002603','2021FA','student'), | |
(100510,'800002655','2021FA','student'), | |
(100510,'800002881','2021FA','student'), | |
(100511,'800000538','2021FA','student'), | |
(100511,'800000772','2021FA','student'), | |
(100511,'800001116','2021FA','student'), | |
(100511,'800001324','2021FA','student'), | |
(100511,'800001915','2021FA','student'), | |
(100511,'800001963','2021FA','instructor'), | |
(100511,'800002062','2021FA','student'), | |
(100511,'800002137','2021FA','student'), | |
(100511,'800002524','2021FA','student'), | |
(100511,'800002771','2021FA','student'), | |
(100511,'800002803','2021FA','student'), | |
(100511,'800002852','2021FA','student'), | |
(100512,'800000011','2021FA','student'), | |
(100512,'800000040','2021FA','student'), | |
(100512,'800000279','2021FA','student'), | |
(100512,'800000348','2021FA','student'), | |
(100512,'800000740','2021FA','student'), | |
(100512,'800001009','2021FA','instructor'), | |
(100512,'800001182','2021FA','student'), | |
(100512,'800001451','2021FA','student'), | |
(100512,'800001879','2021FA','instructor'), | |
(100512,'800001899','2021FA','student'), | |
(100512,'800001989','2021FA','student'), | |
(100512,'800002027','2021FA','student'), | |
(100512,'800002261','2021FA','instructor'), | |
(100512,'800002764','2021FA','instructor'), | |
(100513,'800000367','2021FA','student'), | |
(100513,'800000406','2021FA','student'), | |
(100513,'800000819','2021FA','student'), | |
(100513,'800001116','2021FA','student'), | |
(100513,'800001370','2021FA','student'), | |
(100513,'800001670','2021FA','student'), | |
(100513,'800001879','2021FA','instructor'), | |
(100513,'800002050','2021FA','student'), | |
(100513,'800002214','2021FA','student'), | |
(100513,'800002764','2021FA','instructor'), | |
(100514,'800000365','2021FA','student'), | |
(100514,'800000585','2021FA','student'), | |
(100514,'800000696','2021FA','student'), | |
(100514,'800000712','2021FA','student'), | |
(100514,'800000728','2021FA','student'), | |
(100514,'800000976','2021FA','instructor'), | |
(100514,'800001160','2021FA','student'), | |
(100514,'800001184','2021FA','student'), | |
(100514,'800001338','2021FA','student'), | |
(100514,'800001339','2021FA','student'), | |
(100514,'800001644','2021FA','student'), | |
(100514,'800002305','2021FA','student'), | |
(100515,'800000848','2021FA','student'), | |
(100515,'800001038','2021FA','student'), | |
(100515,'800001507','2021FA','student'), | |
(100515,'800001695','2021FA','student'), | |
(100515,'800001963','2021FA','instructor'), | |
(100515,'800002148','2021FA','student'), | |
(100515,'800002307','2021FA','student'), | |
(100515,'800002536','2021FA','student'), | |
(100515,'800002722','2021FA','student'), | |
(100515,'800002880','2021FA','student'), | |
(100516,'800000066','2021FA','student'), | |
(100516,'800000137','2021FA','student'), | |
(100516,'800000155','2021FA','student'), | |
(100516,'800000326','2021FA','student'), | |
(100516,'800000586','2021FA','student'), | |
(100516,'800000659','2021FA','instructor'), | |
(100516,'800000659','2021FA','instructor'), | |
(100516,'800000902','2021FA','student'), | |
(100516,'800000976','2021FA','instructor'), | |
(100516,'800001641','2021FA','student'), | |
(100516,'800002311','2021FA','student'), | |
(100516,'800002958','2021FA','instructor'), | |
(100517,'800000074','2021FA','student'), | |
(100517,'800000242','2021FA','student'), | |
(100517,'800000843','2021FA','student'), | |
(100517,'800001199','2021FA','student'), | |
(100517,'800001348','2021FA','student'), | |
(100517,'800001405','2021FA','instructor'), | |
(100517,'800001698','2021FA','student'), | |
(100517,'800001840','2021FA','student'), | |
(100517,'800002024','2021FA','instructor'), | |
(100517,'800002503','2021FA','student'), | |
(100517,'800002511','2021FA','student'), | |
(100518,'800000766','2021FA','student'), | |
(100518,'800000882','2021FA','student'), | |
(100518,'800001023','2021FA','student'), | |
(100518,'800001433','2021FA','student'), | |
(100518,'800001977','2021FA','student'), | |
(100518,'800002811','2021FA','instructor'), | |
(100518,'800002920','2021FA','student'), | |
(100519,'800000004','2021FA','student'), | |
(100519,'800000772','2021FA','student'), | |
(100519,'800001318','2021FA','student'), | |
(100519,'800001496','2021FA','student'), | |
(100519,'800001735','2021FA','student'), | |
(100519,'800001940','2021FA','student'), | |
(100519,'800002018','2021FA','student'), | |
(100519,'800002027','2021FA','student'), | |
(100519,'800002569','2021FA','student'), | |
(100519,'800002718','2021FA','student'), | |
(100519,'800002982','2021FA','student'), | |
(100520,'800000059','2021FA','student'), | |
(100520,'800000246','2021FA','student'), | |
(100520,'800000502','2021FA','student'), | |
(100520,'800000766','2021FA','student'), | |
(100520,'800000904','2021FA','student'), | |
(100520,'800000998','2021FA','student'), | |
(100520,'800001420','2021FA','student'), | |
(100520,'800001583','2021FA','student'), | |
(100520,'800002488','2021FA','instructor'), | |
(100521,'800000082','2021FA','student'), | |
(100521,'800000282','2021FA','student'), | |
(100521,'800000306','2021FA','student'), | |
(100521,'800001434','2021FA','student'), | |
(100521,'800001905','2021FA','student'), | |
(100521,'800002015','2021FA','instructor'), | |
(100521,'800002264','2021FA','student'), | |
(100521,'800002464','2021FA','student'), | |
(100521,'800002719','2021FA','student'), | |
(100521,'800002984','2021FA','student'), | |
(100521,'800002991','2021FA','student'), | |
(100522,'800000217','2021FA','instructor'), | |
(100522,'800000217','2021FA','instructor'), | |
(100522,'800000720','2021FA','student'), | |
(100522,'800000910','2021FA','student'), | |
(100522,'800001742','2021FA','instructor'), | |
(100522,'800001941','2021FA','student'), | |
(100522,'800002015','2021FA','instructor'), | |
(100522,'800002718','2021FA','student'), | |
(100523,'800000052','2021FA','student'), | |
(100523,'800001090','2021FA','student'), | |
(100523,'800002161','2021FA','student'), | |
(100523,'800002239','2021FA','student'), | |
(100523,'800002358','2021FA','student'), | |
(100523,'800002606','2021FA','student'), | |
(100523,'800002616','2021FA','student'), | |
(100523,'800002767','2021FA','student'), | |
(100523,'800002768','2021FA','student'), | |
(100523,'800002991','2021FA','student'), | |
(100524,'800000294','2021FA','student'), | |
(100524,'800000945','2021FA','student'), | |
(100524,'800001840','2021FA','student'), | |
(100524,'800002020','2021FA','student'), | |
(100524,'800002488','2021FA','instructor'), | |
(100524,'800002869','2021FA','student'), | |
(100524,'800002878','2021FA','student'), | |
(100524,'800002956','2021FA','student'), | |
(100525,'800000284','2021FA','student'), | |
(100525,'800000356','2021FA','student'), | |
(100525,'800000431','2021FA','student'), | |
(100525,'800000503','2021FA','student'), | |
(100525,'800000506','2021FA','student'), | |
(100525,'800000602','2021FA','student'), | |
(100525,'800001211','2021FA','student'), | |
(100525,'800001374','2021FA','student'), | |
(100525,'800001396','2021FA','student'), | |
(100525,'800001927','2021FA','student'), | |
(100525,'800002124','2021FA','student'), | |
(100525,'800002404','2021FA','student'), | |
(100525,'800002461','2021FA','student'), | |
(100525,'800002809','2021FA','student'), | |
(100526,'800000209','2021FA','instructor'), | |
(100526,'800000573','2021FA','student'), | |
(100526,'800001206','2021FA','student'), | |
(100526,'800001322','2021FA','student'), | |
(100526,'800001361','2021FA','instructor'), | |
(100526,'800001416','2021FA','student'), | |
(100526,'800001574','2021FA','student'), | |
(100526,'800001591','2021FA','student'), | |
(100526,'800001616','2021FA','student'), | |
(100526,'800001801','2021FA','student'), | |
(100526,'800002024','2021FA','student'), | |
(100526,'800002277','2021FA','student'), | |
(100526,'800002503','2021FA','student'), | |
(100526,'800002537','2021FA','student'), | |
(100526,'800002811','2021FA','instructor'), | |
(100527,'800000316','2021FA','student'), | |
(100527,'800000632','2021FA','student'), | |
(100527,'800000835','2021FA','student'), | |
(100527,'800001185','2021FA','student'), | |
(100527,'800001361','2021FA','instructor'), | |
(100527,'800001695','2021FA','student'), | |
(100527,'800001831','2021FA','student'), | |
(100527,'800002024','2021FA','instructor'), | |
(100527,'800002219','2021FA','student'), | |
(100528,'800000484','2021FA','instructor'), | |
(100528,'800000515','2021FA','student'), | |
(100528,'800000636','2021FA','student'), | |
(100528,'800000799','2021FA','student'), | |
(100528,'800000871','2021FA','student'), | |
(100528,'800000882','2021FA','student'), | |
(100528,'800001016','2021FA','student'), | |
(100528,'800001094','2021FA','student'), | |
(100528,'800001233','2021FA','student'), | |
(100528,'800001378','2021FA','student'), | |
(100528,'800001501','2021FA','student'), | |
(100528,'800001633','2021FA','student'), | |
(100528,'800001635','2021FA','student'), | |
(100528,'800002056','2021FA','student'), | |
(100528,'800002090','2021FA','student'), | |
(100528,'800002393','2021FA','student'), | |
(100529,'800000295','2021FA','student'), | |
(100529,'800000469','2021FA','student'), | |
(100529,'800000478','2021FA','student'), | |
(100529,'800000548','2021FA','student'), | |
(100529,'800000582','2021FA','instructor'), | |
(100529,'800000639','2021FA','instructor'), | |
(100529,'800000841','2021FA','student'), | |
(100529,'800001393','2021FA','student'), | |
(100529,'800001625','2021FA','student'), | |
(100529,'800001919','2021FA','student'), | |
(100529,'800002001','2021FA','student'), | |
(100529,'800002326','2021FA','student'), | |
(100529,'800002349','2021FA','instructor'), | |
(100529,'800002422','2021FA','student'), | |
(100529,'800002603','2021FA','student'), | |
(100529,'800002748','2021FA','student'), | |
(100529,'800002899','2021FA','student'), | |
(100530,'800000275','2021FA','student'), | |
(100530,'800000309','2021FA','student'), | |
(100530,'800000333','2021FA','student'), | |
(100530,'800001010','2021FA','student'), | |
(100530,'800001229','2021FA','student'), | |
(100530,'800001329','2021FA','student'), | |
(100531,'800000216','2021FA','student'), | |
(100531,'800000557','2021FA','student'), | |
(100531,'800000607','2021FA','student'), | |
(100531,'800001172','2021FA','student'), | |
(100531,'800001442','2021FA','student'), | |
(100531,'800001499','2021FA','student'), | |
(100531,'800001599','2021FA','student'), | |
(100531,'800001639','2021FA','student'), | |
(100531,'800001843','2021FA','instructor'), | |
(100531,'800001961','2021FA','student'), | |
(100531,'800002557','2021FA','student'), | |
(100531,'800002933','2021FA','student'), | |
(100532,'800000644','2021FA','student'), | |
(100532,'800000646','2021FA','student'), | |
(100532,'800000769','2021FA','student'), | |
(100532,'800001095','2021FA','student'), | |
(100532,'800001390','2021FA','instructor'), | |
(100532,'800001548','2021FA','student'), | |
(100532,'800001687','2021FA','student'), | |
(100532,'800001872','2021FA','student'), | |
(100532,'800002429','2021FA','student'), | |
(100532,'800002492','2021FA','student'), | |
(100532,'800002561','2021FA','student'), | |
(100532,'800002905','2021FA','student'), | |
(100532,'800002926','2021FA','student'), | |
(100533,'800000772','2021FA','student'), | |
(100533,'800001010','2021FA','student'), | |
(100533,'800001390','2021FA','instructor'), | |
(100533,'800001454','2021FA','student'), | |
(100533,'800001815','2021FA','student'), | |
(100533,'800001968','2021FA','student'), | |
(100533,'800002360','2021FA','student'), | |
(100534,'800000105','2021FA','student'), | |
(100534,'800000486','2021FA','student'), | |
(100534,'800000531','2021FA','student'), | |
(100534,'800000603','2021FA','student'), | |
(100534,'800001076','2021FA','student'), | |
(100534,'800001174','2021FA','student'), | |
(100534,'800001273','2021FA','student'), | |
(100534,'800001339','2021FA','student'), | |
(100534,'800001414','2021FA','student'), | |
(100534,'800001526','2021FA','student'), | |
(100534,'800001938','2021FA','student'), | |
(100534,'800001958','2021FA','student'), | |
(100534,'800002174','2021FA','student'), | |
(100534,'800002435','2021FA','student'), | |
(100534,'800002620','2021FA','student'), | |
(100534,'800002769','2021FA','instructor'), | |
(100534,'800002988','2021FA','student'), | |
(100535,'800000299','2021FA','student'), | |
(100535,'800000309','2021FA','student'), | |
(100535,'800000593','2021FA','student'), | |
(100535,'800001370','2021FA','student'), | |
(100535,'800001584','2021FA','student'), | |
(100535,'800001843','2021FA','instructor'), | |
(100535,'800002511','2021FA','student'), | |
(100536,'800000237','2021FA','student'), | |
(100536,'800000267','2021FA','student'), | |
(100536,'800000338','2021FA','student'), | |
(100536,'800000403','2021FA','student'), | |
(100536,'800000491','2021FA','student'), | |
(100536,'800000596','2021FA','student'), | |
(100536,'800000915','2021FA','student'), | |
(100536,'800001321','2021FA','instructor'), | |
(100536,'800001648','2021FA','student'), | |
(100536,'800001751','2021FA','student'), | |
(100536,'800001814','2021FA','student'), | |
(100536,'800002480','2021FA','student'), | |
(100536,'800002635','2021FA','student'), | |
(100537,'800000281','2021FA','instructor'), | |
(100537,'800000494','2021FA','student'), | |
(100537,'800000500','2021FA','student'), | |
(100537,'800000663','2021FA','student'), | |
(100537,'800000862','2021FA','student'), | |
(100537,'800001240','2021FA','student'), | |
(100537,'800001503','2021FA','student'), | |
(100537,'800002087','2021FA','student'), | |
(100537,'800002556','2021FA','student'), | |
(100537,'800002715','2021FA','student'), | |
(100537,'800002982','2021FA','student'), | |
(100538,'800000295','2021FA','student'), | |
(100538,'800000338','2021FA','student'), | |
(100538,'800000520','2021FA','student'), | |
(100538,'800000627','2021FA','student'), | |
(100538,'800000643','2021FA','student'), | |
(100538,'800001412','2021FA','student'), | |
(100538,'800002149','2021FA','student'), | |
(100538,'800002152','2021FA','student'), | |
(100538,'800002771','2021FA','student'), | |
(100538,'800002896','2021FA','student'), | |
(100539,'800000076','2021FA','student'), | |
(100539,'800000354','2021FA','student'), | |
(100539,'800000624','2021FA','student'), | |
(100539,'800001023','2021FA','student'), | |
(100539,'800001183','2021FA','student'), | |
(100539,'800001443','2021FA','student'), | |
(100539,'800001592','2021FA','student'), | |
(100539,'800001761','2021FA','student'), | |
(100539,'800001899','2021FA','student'), | |
(100539,'800001952','2021FA','student'), | |
(100539,'800002312','2021FA','student'), | |
(100539,'800002360','2021FA','student'), | |
(100539,'800002409','2021FA','instructor'), | |
(100539,'800002622','2021FA','student'), | |
(100539,'800002871','2021FA','student'), | |
(100539,'800002882','2021FA','student'), | |
(100540,'800000004','2021FA','student'), | |
(100540,'800000497','2021FA','student'), | |
(100540,'800000588','2021FA','student'), | |
(100540,'800000708','2021FA','student'), | |
(100540,'800001077','2021FA','student'), | |
(100540,'800001484','2021FA','student'), | |
(100540,'800001611','2021FA','student'), | |
(100540,'800001771','2021FA','student'), | |
(100540,'800001824','2021FA','student'), | |
(100540,'800002016','2021FA','instructor'), | |
(100540,'800002453','2021FA','student'), | |
(100540,'800002456','2021FA','student'), | |
(100540,'800002656','2021FA','instructor'), | |
(100541,'800000041','2021FA','student'), | |
(100541,'800000631','2021FA','student'), | |
(100541,'800001160','2021FA','student'), | |
(100541,'800001240','2021FA','student'), | |
(100541,'800001291','2021FA','student'), | |
(100541,'800001474','2021FA','student'), | |
(100541,'800001520','2021FA','student'), | |
(100541,'800001735','2021FA','student'), | |
(100541,'800001754','2021FA','student'), | |
(100541,'800002290','2021FA','instructor'), | |
(100541,'800002314','2021FA','student'), | |
(100541,'800002322','2021FA','student'), | |
(100541,'800002434','2021FA','student'), | |
(100541,'800002589','2021FA','student'), | |
(100541,'800002732','2021FA','student'), | |
(100541,'800002963','2021FA','student'), | |
(100542,'800000653','2021FA','instructor'), | |
(100542,'800000767','2021FA','student'), | |
(100542,'800001334','2021FA','student'), | |
(100542,'800001412','2021FA','student'), | |
(100542,'800001421','2021FA','student'), | |
(100542,'800001735','2021FA','student'), | |
(100542,'800002290','2021FA','instructor'), | |
(100542,'800002450','2021FA','student'), | |
(100543,'800000160','2021FA','student'), | |
(100543,'800000296','2021FA','student'), | |
(100543,'800000425','2021FA','student'), | |
(100543,'800001023','2021FA','student'), | |
(100543,'800001038','2021FA','student'), | |
(100543,'800001696','2021FA','student'), | |
(100543,'800001761','2021FA','student'), | |
(100543,'800001782','2021FA','student'), | |
(100543,'800002364','2021FA','student'), | |
(100543,'800002397','2021FA','student'), | |
(100543,'800002418','2021FA','student'), | |
(100543,'800002688','2021FA','instructor'), | |
(100543,'800002834','2021FA','student'), | |
(100543,'800002923','2021FA','student'), | |
(100544,'800000102','2021FA','student'), | |
(100544,'800000479','2021FA','student'), | |
(100544,'800001124','2021FA','student'), | |
(100544,'800001572','2021FA','student'), | |
(100544,'800001697','2021FA','student'), | |
(100544,'800001865','2021FA','student'), | |
(100544,'800002016','2021FA','instructor'), | |
(100544,'800002275','2021FA','instructor'), | |
(100544,'800002351','2021FA','student'), | |
(100544,'800002397','2021FA','student'), | |
(100544,'800002406','2021FA','student'), | |
(100544,'800002591','2021FA','student'), | |
(100544,'800002872','2021FA','student'), | |
(100545,'800000518','2021FA','student'), | |
(100545,'800000540','2021FA','student'), | |
(100545,'800000584','2021FA','student'), | |
(100545,'800001274','2021FA','instructor'), | |
(100545,'800001689','2021FA','student'), | |
(100545,'800001811','2021FA','student'), | |
(100545,'800002036','2021FA','instructor'), | |
(100545,'800002081','2021FA','student'), | |
(100545,'800002656','2021FA','instructor'), | |
(100546,'800000581','2021FA','student'), | |
(100546,'800000657','2021FA','student'), | |
(100546,'800000692','2021FA','student'), | |
(100546,'800000737','2021FA','student'), | |
(100546,'800000773','2021FA','student'), | |
(100546,'800000787','2021FA','student'), | |
(100546,'800000891','2021FA','student'), | |
(100546,'800000910','2021FA','student'), | |
(100546,'800001049','2021FA','student'), | |
(100546,'800001310','2021FA','student'), | |
(100546,'800001313','2021FA','student'), | |
(100546,'800002010','2021FA','student'), | |
(100546,'800002160','2021FA','student'), | |
(100546,'800002481','2021FA','student'), | |
(100546,'800002559','2021FA','student'), | |
(100546,'800002868','2021FA','student'), | |
(100546,'800002998','2021FA','student'), | |
(100547,'800000438','2021FA','student'), | |
(100547,'800000653','2021FA','instructor'), | |
(100547,'800000660','2021FA','student'), | |
(100547,'800000876','2021FA','student'), | |
(100547,'800000877','2021FA','student'), | |
(100547,'800000931','2021FA','instructor'), | |
(100547,'800002064','2021FA','student'), | |
(100547,'800002202','2021FA','student'), | |
(100547,'800002551','2021FA','student'), | |
(100547,'800002949','2021FA','student'), | |
(100548,'800000411','2021FA','student'), | |
(100548,'800000664','2021FA','student'), | |
(100548,'800001324','2021FA','student'), | |
(100548,'800001768','2021FA','student'), | |
(100548,'800002054','2021FA','student'), | |
(100548,'800002182','2021FA','student'), | |
(100548,'800002453','2021FA','student'), | |
(100548,'800002482','2021FA','student'), | |
(100548,'800002507','2021FA','student'), | |
(100548,'800002689','2021FA','student'), | |
(100549,'800000271','2021FA','student'), | |
(100549,'800000474','2021FA','student'), | |
(100549,'800000622','2021FA','student'), | |
(100549,'800000641','2021FA','student'), | |
(100549,'800001164','2021FA','student'), | |
(100549,'800001443','2021FA','student'), | |
(100549,'800001777','2021FA','student'), | |
(100549,'800001952','2021FA','student'), | |
(100549,'800002204','2021FA','student'), | |
(100549,'800002242','2021FA','student'), | |
(100549,'800002249','2021FA','student'), | |
(100549,'800002338','2021FA','student'), | |
(100549,'800002539','2021FA','student'), | |
(100549,'800002926','2021FA','student'), | |
(100550,'800000480','2021FA','student'), | |
(100550,'800001983','2021FA','student'), | |
(100550,'800002753','2021FA','student'), | |
(100550,'800002955','2021FA','instructor'), | |
(100550,'800002979','2021FA','student'), | |
(100550,'800002982','2021FA','student'), | |
(100551,'800000226','2021FA','student'), | |
(100551,'800000313','2021FA','student'), | |
(100551,'800000597','2021FA','student'), | |
(100551,'800000643','2021FA','student'), | |
(100551,'800000729','2021FA','student'), | |
(100551,'800000770','2021FA','student'), | |
(100551,'800000908','2021FA','student'), | |
(100551,'800001132','2021FA','student'), | |
(100551,'800001144','2021FA','student'), | |
(100551,'800001148','2021FA','student'), | |
(100551,'800001609','2021FA','student'), | |
(100551,'800001712','2021FA','student'), | |
(100551,'800002255','2021FA','student'), | |
(100551,'800002525','2021FA','student'), | |
(100551,'800002618','2021FA','student'), | |
(100551,'800002661','2021FA','student'), | |
(100551,'800002676','2021FA','student'), | |
(100552,'800000010','2021FA','instructor'), | |
(100552,'800000055','2021FA','student'), | |
(100552,'800000193','2021FA','student'), | |
(100552,'800000655','2021FA','student'), | |
(100552,'800001240','2021FA','student'), | |
(100552,'800001252','2021FA','student'), | |
(100552,'800001635','2021FA','student'), | |
(100552,'800002044','2021FA','student'), | |
(100552,'800002366','2021FA','instructor'), | |
(100553,'800000461','2021FA','student'), | |
(100553,'800000710','2021FA','student'), | |
(100553,'800000747','2021FA','student'), | |
(100553,'800000986','2021FA','student'), | |
(100553,'800001397','2021FA','student'), | |
(100553,'800001915','2021FA','student'), | |
(100553,'800001973','2021FA','instructor'), | |
(100553,'800002020','2021FA','student'), | |
(100553,'800002143','2021FA','student'), | |
(100553,'800002161','2021FA','student'), | |
(100553,'800002255','2021FA','student'), | |
(100553,'800002276','2021FA','student'), | |
(100553,'800002541','2021FA','student'), | |
(100553,'800002600','2021FA','student'), | |
(100554,'800000063','2021FA','student'), | |
(100554,'800001004','2021FA','student'), | |
(100554,'800001074','2021FA','student'), | |
(100554,'800001099','2021FA','instructor'), | |
(100554,'800001207','2021FA','student'), | |
(100554,'800001846','2021FA','student'), | |
(100554,'800002493','2021FA','student'), | |
(100554,'800002623','2021FA','student'), | |
(100555,'800000010','2021FA','instructor'), | |
(100555,'800000118','2021FA','instructor'), | |
(100555,'800001490','2021FA','instructor'), | |
(100555,'800001639','2021FA','student'), | |
(100555,'800001787','2021FA','student'), | |
(100555,'800002115','2021FA','student'), | |
(100555,'800002284','2021FA','student'), | |
(100555,'800002592','2021FA','instructor'), | |
(100556,'800000295','2021FA','student'), | |
(100556,'800000418','2021FA','student'), | |
(100556,'800000450','2021FA','student'), | |
(100556,'800000548','2021FA','student'), | |
(100556,'800000879','2021FA','student'), | |
(100556,'800000948','2021FA','student'), | |
(100556,'800001538','2021FA','student'), | |
(100556,'800001699','2021FA','student'), | |
(100556,'800001973','2021FA','instructor'), | |
(100556,'800002366','2021FA','instructor'), | |
(100556,'800002412','2021FA','student'), | |
(100556,'800002599','2021FA','student'), | |
(100556,'800002620','2021FA','student'), | |
(100556,'800002621','2021FA','student'), | |
(100556,'800002867','2021FA','student'), | |
(100557,'800000013','2021FA','student'), | |
(100557,'800000076','2021FA','student'), | |
(100557,'800000384','2021FA','instructor'), | |
(100557,'800000461','2021FA','student'), | |
(100557,'800000948','2021FA','student'), | |
(100557,'800001091','2021FA','student'), | |
(100557,'800001190','2021FA','student'), | |
(100557,'800001454','2021FA','student'), | |
(100557,'800001471','2021FA','student'), | |
(100557,'800001876','2021FA','student'), | |
(100557,'800002301','2021FA','student'), | |
(100557,'800002592','2021FA','instructor'), | |
(100558,'800000214','2021FA','student'), | |
(100558,'800000330','2021FA','student'), | |
(100558,'800000384','2021FA','instructor'), | |
(100558,'800000705','2021FA','student'), | |
(100558,'800000746','2021FA','student'), | |
(100558,'800000835','2021FA','student'), | |
(100558,'800000934','2021FA','instructor'), | |
(100558,'800001017','2021FA','student'), | |
(100558,'800001554','2021FA','student'), | |
(100558,'800001705','2021FA','student'), | |
(100558,'800001773','2021FA','student'), | |
(100558,'800002162','2021FA','student'), | |
(100558,'800002352','2021FA','student'), | |
(100558,'800002645','2021FA','student'), | |
(100559,'800000297','2021FA','student'), | |
(100559,'800000409','2021FA','student'), | |
(100559,'800000469','2021FA','student'), | |
(100559,'800000738','2021FA','student'), | |
(100559,'800001075','2021FA','student'), | |
(100559,'800001099','2021FA','instructor'), | |
(100559,'800001277','2021FA','student'), | |
(100559,'800001613','2021FA','student'), | |
(100559,'800001938','2021FA','student'), | |
(100559,'800001987','2021FA','student'), | |
(100559,'800002169','2021FA','student'), | |
(100559,'800002248','2021FA','student'), | |
(100559,'800002478','2021FA','student'), | |
(100559,'800002878','2021FA','student'), | |
(100560,'800000012','2021FA','student'), | |
(100560,'800000108','2021FA','student'), | |
(100560,'800001098','2021FA','student'), | |
(100560,'800001920','2021FA','student'), | |
(100560,'800002163','2021FA','student'), | |
(100560,'800002749','2021FA','student'), | |
(100561,'800000887','2021FA','student'), | |
(100561,'800001282','2021FA','student'), | |
(100561,'800001350','2021FA','student'), | |
(100561,'800001750','2021FA','student'), | |
(100561,'800001852','2021FA','student'), | |
(100561,'800001862','2021FA','instructor'), | |
(100561,'800001862','2021FA','instructor'), | |
(100561,'800001977','2021FA','student'), | |
(100561,'800002115','2021FA','student'), | |
(100561,'800002307','2021FA','student'), | |
(100562,'800000141','2021FA','student'), | |
(100562,'800000383','2021FA','instructor'), | |
(100562,'800000458','2021FA','student'), | |
(100562,'800001639','2021FA','student'), | |
(100562,'800001661','2021FA','student'), | |
(100562,'800002077','2021FA','student'), | |
(100562,'800002152','2021FA','student'), | |
(100562,'800002901','2021FA','student'), | |
(100562,'800002987','2021FA','student'), | |
(100563,'800000246','2021FA','student'), | |
(100563,'800000441','2021FA','student'), | |
(100563,'800000553','2021FA','student'), | |
(100563,'800000828','2021FA','student'), | |
(100563,'800001085','2021FA','student'), | |
(100563,'800001270','2021FA','student'), | |
(100563,'800001816','2021FA','student'), | |
(100563,'800002523','2021FA','student'), | |
(100563,'800002787','2021FA','instructor'), | |
(100564,'800000350','2021FA','student'), | |
(100564,'800000638','2021FA','instructor'), | |
(100564,'800001053','2021FA','student'), | |
(100564,'800001626','2021FA','student'), | |
(100564,'800001996','2021FA','student'), | |
(100564,'800002378','2021FA','student'), | |
(100565,'800000354','2021FA','student'), | |
(100565,'800000359','2021FA','student'), | |
(100565,'800000368','2021FA','student'), | |
(100565,'800000473','2021FA','student'), | |
(100565,'800001053','2021FA','student'), | |
(100565,'800001100','2021FA','student'), | |
(100565,'800001653','2021FA','student'), | |
(100565,'800001932','2021FA','student'), | |
(100565,'800002050','2021FA','student'), | |
(100565,'800002246','2021FA','student'), | |
(100565,'800002514','2021FA','student'), | |
(100565,'800002732','2021FA','student'), | |
(100566,'800000327','2021FA','student'), | |
(100566,'800000396','2021FA','instructor'), | |
(100566,'800000835','2021FA','student'), | |
(100566,'800000876','2021FA','student'), | |
(100566,'800001232','2021FA','student'), | |
(100566,'800001346','2021FA','instructor'), | |
(100566,'800001499','2021FA','student'), | |
(100566,'800002062','2021FA','student'), | |
(100566,'800002159','2021FA','student'), | |
(100566,'800002307','2021FA','student'), | |
(100566,'800002355','2021FA','student'), | |
(100566,'800002517','2021FA','student'), | |
(100566,'800002536','2021FA','student'), | |
(100566,'800002576','2021FA','student'), | |
(100566,'800002885','2021FA','student'), | |
(100567,'800000396','2021FA','instructor'), | |
(100567,'800000431','2021FA','student'), | |
(100567,'800000887','2021FA','student'), | |
(100567,'800000922','2021FA','student'), | |
(100567,'800000987','2021FA','student'), | |
(100567,'800001310','2021FA','student'), | |
(100567,'800001325','2021FA','student'), | |
(100567,'800001824','2021FA','student'), | |
(100567,'800001993','2021FA','student'), | |
(100567,'800002155','2021FA','student'), | |
(100567,'800002204','2021FA','student'), | |
(100567,'800002305','2021FA','student'), | |
(100567,'800002490','2021FA','student'), | |
(100568,'800000065','2021FA','student'), | |
(100568,'800000215','2021FA','student'), | |
(100568,'800000297','2021FA','student'), | |
(100568,'800000368','2021FA','student'), | |
(100568,'800001002','2021FA','instructor'), | |
(100568,'800001566','2021FA','student'), | |
(100568,'800001829','2021FA','instructor'), | |
(100568,'800001829','2021FA','instructor'), | |
(100568,'800002471','2021FA','student'), | |
(100568,'800002481','2021FA','student'), | |
(100569,'800000088','2021FA','student'), | |
(100569,'800000159','2021FA','student'), | |
(100569,'800000296','2021FA','student'), | |
(100569,'800000725','2021FA','student'), | |
(100569,'800000822','2021FA','student'), | |
(100569,'800001116','2021FA','student'), | |
(100569,'800002087','2021FA','student'), | |
(100569,'800002653','2021FA','student'), | |
(100569,'800002714','2021FA','student'), | |
(100569,'800002984','2021FA','student'), | |
(100570,'800000177','2021FA','student'), | |
(100570,'800000383','2021FA','instructor'), | |
(100570,'800000944','2021FA','student'), | |
(100570,'800001002','2021FA','instructor'), | |
(100570,'800001835','2021FA','student'), | |
(100570,'800002731','2021FA','student'), | |
(100570,'800002900','2021FA','student'), | |
(100570,'800002913','2021FA','student'), | |
(100571,'800000269','2021FA','instructor'), | |
(100571,'800000469','2021FA','student'), | |
(100571,'800001155','2021FA','instructor'), | |
(100571,'800001238','2021FA','student'), | |
(100571,'800001538','2021FA','student'), | |
(100571,'800001659','2021FA','student'), | |
(100571,'800002258','2021FA','student'), | |
(100572,'800000158','2021FA','student'), | |
(100572,'800000170','2021FA','student'), | |
(100572,'800000279','2021FA','student'), | |
(100572,'800000572','2021FA','student'), | |
(100572,'800000631','2021FA','student'), | |
(100572,'800001309','2021FA','student'), | |
(100572,'800001399','2021FA','student'), | |
(100572,'800001718','2021FA','student'), | |
(100572,'800001846','2021FA','student'), | |
(100572,'800001920','2021FA','student'), | |
(100572,'800002101','2021FA','student'), | |
(100572,'800002185','2021FA','student'), | |
(100572,'800002414','2021FA','student'), | |
(100572,'800002477','2021FA','student'), | |
(100572,'800002525','2021FA','student'), | |
(100572,'800002657','2021FA','student'), | |
(100572,'800002926','2021FA','student'), | |
(100572,'800002994','2021FA','student'), | |
(100573,'800000043','2021FA','instructor'), | |
(100573,'800000165','2021FA','student'), | |
(100573,'800000295','2021FA','student'), | |
(100573,'800000798','2021FA','student'), | |
(100573,'800000840','2021FA','student'), | |
(100573,'800001133','2021FA','student'), | |
(100573,'800001518','2021FA','student'), | |
(100573,'800002011','2021FA','student'), | |
(100573,'800002412','2021FA','student'), | |
(100573,'800002535','2021FA','instructor'), | |
(100573,'800002717','2021FA','instructor'), | |
(100573,'800002833','2021FA','student'), | |
(100574,'800000040','2021FA','student'), | |
(100574,'800000069','2021FA','student'), | |
(100574,'800000189','2021FA','student'), | |
(100574,'800000399','2021FA','instructor'), | |
(100574,'800000538','2021FA','student'), | |
(100574,'800000623','2021FA','student'), | |
(100574,'800001554','2021FA','student'), | |
(100574,'800002090','2021FA','student'), | |
(100574,'800002187','2021FA','student'), | |
(100574,'800002848','2021FA','student'), | |
(100575,'800000032','2021FA','student'), | |
(100575,'800000387','2021FA','student'), | |
(100575,'800000478','2021FA','student'), | |
(100575,'800000870','2021FA','instructor'), | |
(100575,'800000963','2021FA','student'), | |
(100575,'800001189','2021FA','student'), | |
(100575,'800001473','2021FA','student'), | |
(100575,'800001496','2021FA','student'), | |
(100575,'800001670','2021FA','student'), | |
(100575,'800001738','2021FA','student'), | |
(100575,'800001778','2021FA','instructor'), | |
(100575,'800001820','2021FA','student'), | |
(100575,'800002557','2021FA','student'), | |
(100575,'800002913','2021FA','student'), | |
(100576,'800000049','2021FA','student'), | |
(100576,'800000069','2021FA','student'), | |
(100576,'800000575','2021FA','student'), | |
(100576,'800001198','2021FA','student'), | |
(100576,'800002327','2021FA','instructor'), | |
(100576,'800002479','2021FA','student'), | |
(100576,'800002714','2021FA','student'), | |
(100576,'800002717','2021FA','instructor'), | |
(100577,'800000343','2021FA','student'), | |
(100577,'800000566','2021FA','student'), | |
(100577,'800000905','2021FA','student'), | |
(100577,'800001127','2021FA','student'), | |
(100577,'800001144','2021FA','student'), | |
(100577,'800001689','2021FA','student'), | |
(100577,'800001732','2021FA','student'), | |
(100577,'800002011','2021FA','student'), | |
(100577,'800002033','2021FA','student'), | |
(100577,'800002297','2021FA','student'), | |
(100577,'800002464','2021FA','student'), | |
(100577,'800002692','2021FA','student'), | |
(100577,'800002701','2021FA','student'), | |
(100577,'800002817','2021FA','student'), | |
(100577,'800002882','2021FA','student'), | |
(100577,'800002898','2021FA','student'), | |
(100578,'800000290','2021FA','instructor'), | |
(100578,'800000671','2021FA','student'), | |
(100578,'800001183','2021FA','student'), | |
(100578,'800001471','2021FA','student'), | |
(100578,'800001860','2021FA','student'), | |
(100578,'800002026','2021FA','student'), | |
(100578,'800002107','2021FA','student'), | |
(100578,'800002155','2021FA','student'), | |
(100578,'800002861','2021FA','student'), | |
(100579,'800000655','2021FA','student'), | |
(100579,'800001428','2021FA','student'), | |
(100579,'800002327','2021FA','instructor'), | |
(100579,'800002485','2021FA','instructor'), | |
(100579,'800002524','2021FA','student'), | |
(100579,'800002998','2021FA','student'), | |
(100580,'800000473','2021FA','student'), | |
(100580,'800000787','2021FA','student'), | |
(100580,'800000870','2021FA','instructor'), | |
(100580,'800000917','2021FA','student'), | |
(100580,'800001279','2021FA','student'), | |
(100580,'800001704','2021FA','student'), | |
(100580,'800001799','2021FA','student'), | |
(100580,'800001877','2021FA','student'), | |
(100580,'800002214','2021FA','student'), | |
(100580,'800002266','2021FA','student'), | |
(100580,'800002305','2021FA','student'), | |
(100580,'800002358','2021FA','student'), | |
(100580,'800002387','2021FA','student'), | |
(100580,'800002663','2021FA','student'), | |
(100580,'800002815','2021FA','student'), | |
(100581,'800000197','2021FA','student'), | |
(100581,'800000290','2021FA','instructor'), | |
(100581,'800000316','2021FA','student'), | |
(100581,'800000375','2021FA','student'), | |
(100581,'800000471','2021FA','student'), | |
(100581,'800000879','2021FA','student'), | |
(100581,'800001148','2021FA','student'), | |
(100581,'800001234','2021FA','student'), | |
(100581,'800001305','2021FA','student'), | |
(100581,'800002005','2021FA','student'), | |
(100581,'800002352','2021FA','student'), | |
(100581,'800002603','2021FA','student'), | |
(100581,'800002889','2021FA','student'), | |
(100581,'800002971','2021FA','student'), | |
(100582,'800000548','2021FA','student'), | |
(100582,'800000557','2021FA','student'), | |
(100582,'800000977','2021FA','student'), | |
(100582,'800001257','2021FA','student'), | |
(100582,'800001466','2021FA','student'), | |
(100582,'800001754','2021FA','student'), | |
(100582,'800002112','2021FA','student'), | |
(100582,'800002551','2021FA','student'), | |
(100582,'800002661','2021FA','student'), | |
(100582,'800002933','2021FA','student'), | |
(100583,'800000387','2021FA','student'), | |
(100583,'800000915','2021FA','student'), | |
(100583,'800000990','2021FA','student'), | |
(100583,'800001526','2021FA','student'), | |
(100583,'800001531','2021FA','student'), | |
(100583,'800001585','2021FA','student'), | |
(100583,'800001683','2021FA','student'), | |
(100583,'800001782','2021FA','student'), | |
(100583,'800001810','2021FA','instructor'), | |
(100583,'800002169','2021FA','student'), | |
(100583,'800002748','2021FA','student'), | |
(100583,'800002835','2021FA','student'), | |
(100583,'800002852','2021FA','student'), | |
(100584,'800000019','2021FA','instructor'), | |
(100584,'800000044','2021FA','student'), | |
(100584,'800000066','2021FA','student'), | |
(100584,'800000780','2021FA','instructor'), | |
(100584,'800000904','2021FA','student'), | |
(100584,'800001382','2021FA','instructor'), | |
(100584,'800001382','2021FA','instructor'), | |
(100584,'800001450','2021FA','student'), | |
(100584,'800001562','2021FA','student'), | |
(100584,'800001850','2021FA','student'), | |
(100584,'800002455','2021FA','student'), | |
(100584,'800002623','2021FA','student'), | |
(100584,'800002673','2021FA','student'), | |
(100585,'800000032','2021FA','student'), | |
(100585,'800000390','2021FA','student'), | |
(100585,'800000859','2021FA','student'), | |
(100585,'800001436','2021FA','student'), | |
(100585,'800001545','2021FA','student'), | |
(100585,'800001716','2021FA','student'), | |
(100585,'800001860','2021FA','student'), | |
(100586,'800000170','2021FA','student'), | |
(100586,'800000208','2021FA','instructor'), | |
(100586,'800000256','2021FA','student'), | |
(100586,'800000502','2021FA','student'), | |
(100586,'800000566','2021FA','student'), | |
(100586,'800000755','2021FA','student'), | |
(100586,'800000774','2021FA','instructor'), | |
(100586,'800000877','2021FA','student'), | |
(100586,'800000911','2021FA','student'), | |
(100586,'800001401','2021FA','student'), | |
(100586,'800001748','2021FA','student'), | |
(100586,'800002200','2021FA','student'), | |
(100586,'800002270','2021FA','student'), | |
(100586,'800002284','2021FA','student'), | |
(100586,'800002301','2021FA','student'), | |
(100586,'800002539','2021FA','student'), | |
(100586,'800002630','2021FA','student'), | |
(100586,'800002894','2021FA','student'), | |
(100587,'800000273','2021FA','student'), | |
(100587,'800000790','2021FA','student'), | |
(100587,'800001313','2021FA','student'), | |
(100587,'800001793','2021FA','student'), | |
(100587,'800001889','2021FA','instructor'), | |
(100587,'800002115','2021FA','student'), | |
(100587,'800002129','2021FA','instructor'), | |
(100587,'800002174','2021FA','student'), | |
(100587,'800002586','2021FA','student'), | |
(100588,'800000173','2021FA','student'), | |
(100588,'800000208','2021FA','instructor'), | |
(100588,'800000531','2021FA','student'), | |
(100588,'800000538','2021FA','student'), | |
(100588,'800000625','2021FA','student'), | |
(100588,'800001283','2021FA','student'), | |
(100588,'800001611','2021FA','student'), | |
(100588,'800002134','2021FA','student'), | |
(100588,'800002304','2021FA','student'), | |
(100588,'800002491','2021FA','student'), | |
(100588,'800002896','2021FA','student'), | |
(100589,'800000007','2021FA','student'), | |
(100589,'800000019','2021FA','instructor'), | |
(100589,'800000672','2021FA','student'), | |
(100589,'800001198','2021FA','student'), | |
(100589,'800001314','2021FA','student'), | |
(100589,'800001360','2021FA','student'), | |
(100589,'800001571','2021FA','student'), | |
(100589,'800001699','2021FA','student'), | |
(100589,'800001718','2021FA','student'), | |
(100589,'800001889','2021FA','instructor'), | |
(100589,'800002035','2021FA','student'), | |
(100589,'800002129','2021FA','instructor'), | |
(100589,'800002451','2021FA','student'), | |
(100589,'800002548','2021FA','student'), | |
(100589,'800002727','2021FA','student'), | |
(100590,'800000136','2021FA','student'), | |
(100590,'800000282','2021FA','student'), | |
(100590,'800001919','2021FA','student'), | |
(100590,'800001992','2021FA','student'), | |
(100590,'800002091','2021FA','student'), | |
(100590,'800002523','2021FA','student'), | |
(100591,'800000861','2021FA','student'), | |
(100591,'800001015','2021FA','student'), | |
(100591,'800001074','2021FA','student'), | |
(100591,'800001397','2021FA','student'), | |
(100591,'800001596','2021FA','student'), | |
(100591,'800001759','2021FA','student'), | |
(100591,'800002111','2021FA','student'), | |
(100591,'800002444','2021FA','student'), | |
(100591,'800002449','2021FA','student'), | |
(100591,'800002605','2021FA','student'), | |
(100591,'800002617','2021FA','student'), | |
(100592,'800000593','2021FA','student'), | |
(100592,'800000603','2021FA','student'), | |
(100592,'800001237','2021FA','instructor'), | |
(100592,'800001343','2021FA','student'), | |
(100592,'800001756','2021FA','student'), | |
(100592,'800002003','2021FA','student'), | |
(100592,'800002357','2021FA','student'), | |
(100592,'800002470','2021FA','student'), | |
(100592,'800002483','2021FA','student'), | |
(100592,'800002493','2021FA','student'), | |
(100592,'800002657','2021FA','student'), | |
(100592,'800002762','2021FA','student'), | |
(100592,'800002979','2021FA','student'), | |
(100593,'800000008','2021FA','student'), | |
(100593,'800000060','2021FA','student'), | |
(100593,'800000282','2021FA','student'), | |
(100593,'800000790','2021FA','student'), | |
(100593,'800000924','2021FA','student'), | |
(100593,'800001499','2021FA','student'), | |
(100593,'800002284','2021FA','student'), | |
(100593,'800002559','2021FA','student'), | |
(100593,'800002867','2021FA','student'), | |
(100594,'800000270','2021FA','student'), | |
(100594,'800000386','2021FA','instructor'), | |
(100594,'800000490','2021FA','student'), | |
(100594,'800000744','2021FA','student'), | |
(100594,'800001144','2021FA','student'), | |
(100594,'800001296','2021FA','student'), | |
(100594,'800001476','2021FA','student'), | |
(100594,'800001644','2021FA','student'), | |
(100594,'800001723','2021FA','student'), | |
(100594,'800002004','2021FA','student'), | |
(100594,'800002006','2021FA','student'), | |
(100594,'800002077','2021FA','student'), | |
(100594,'800002163','2021FA','student'), | |
(100594,'800002536','2021FA','student'), | |
(100594,'800002974','2021FA','student'), | |
(100595,'800000311','2021FA','instructor'), | |
(100595,'800000351','2021FA','instructor'), | |
(100595,'800000547','2021FA','student'), | |
(100595,'800000827','2021FA','student'), | |
(100595,'800000889','2021FA','student'), | |
(100595,'800001091','2021FA','student'), | |
(100595,'800001257','2021FA','student'), | |
(100595,'800001384','2021FA','instructor'), | |
(100595,'800001466','2021FA','student'), | |
(100595,'800001540','2021FA','student'), | |
(100595,'800001932','2021FA','student'), | |
(100595,'800002619','2021FA','student'), | |
(100595,'800002969','2021FA','instructor'), | |
(100596,'800000241','2021FA','student'), | |
(100596,'800000508','2021FA','instructor'), | |
(100596,'800000643','2021FA','student'), | |
(100596,'800000770','2021FA','student'), | |
(100596,'800000843','2021FA','student'), | |
(100596,'800000845','2021FA','student'), | |
(100596,'800000947','2021FA','student'), | |
(100596,'800000980','2021FA','instructor'), | |
(100596,'800001260','2021FA','student'), | |
(100596,'800001338','2021FA','student'), | |
(100596,'800001384','2021FA','instructor'), | |
(100596,'800001572','2021FA','student'), | |
(100596,'800001733','2021FA','student'), | |
(100596,'800002368','2021FA','instructor'), | |
(100596,'800002393','2021FA','student'), | |
(100596,'800002456','2021FA','student'), | |
(100596,'800002622','2021FA','student'), | |
(100596,'800002658','2021FA','student'), | |
(100597,'800000279','2021FA','student'), | |
(100597,'800000295','2021FA','student'), | |
(100597,'800000545','2021FA','student'), | |
(100597,'800000936','2021FA','student'), | |
(100597,'800001057','2021FA','instructor'), | |
(100597,'800001402','2021FA','student'), | |
(100597,'800002175','2021FA','student'), | |
(100597,'800002432','2021FA','instructor'), | |
(100597,'800002456','2021FA','instructor'), | |
(100597,'800002526','2021FA','student'), | |
(100597,'800002617','2021FA','student'), | |
(100598,'800000044','2021FA','student'), | |
(100598,'800000148','2021FA','student'), | |
(100598,'800000237','2021FA','student'), | |
(100598,'800000255','2021FA','student'), | |
(100598,'800001436','2021FA','student'), | |
(100598,'800001451','2021FA','student'), | |
(100598,'800002111','2021FA','student'), | |
(100598,'800002246','2021FA','student'), | |
(100598,'800002456','2021FA','instructor'), | |
(100599,'800000141','2021FA','student'), | |
(100599,'800000189','2021FA','student'), | |
(100599,'800000195','2021FA','student'), | |
(100599,'800000330','2021FA','student'), | |
(100599,'800000390','2021FA','student'), | |
(100599,'800000417','2021FA','student'), | |
(100599,'800000424','2021FA','student'), | |
(100599,'800000508','2021FA','instructor'), | |
(100599,'800000531','2021FA','student'), | |
(100599,'800000674','2021FA','instructor'), | |
(100599,'800000765','2021FA','student'), | |
(100599,'800000968','2021FA','student'), | |
(100599,'800000989','2021FA','student'), | |
(100599,'800001122','2021FA','student'), | |
(100599,'800001430','2021FA','instructor'), | |
(100599,'800001707','2021FA','student'), | |
(100599,'800001791','2021FA','student'), | |
(100599,'800001880','2021FA','student'), | |
(100599,'800001895','2021FA','student'), | |
(100599,'800001937','2021FA','student'), | |
(100599,'800002511','2021FA','student'), | |
(100599,'800002576','2021FA','student'), | |
(100599,'800002611','2021FA','student'), | |
(100599,'800002783','2021FA','student'), | |
(100600,'800000074','2021FA','student'), | |
(100600,'800000229','2021FA','instructor'), | |
(100600,'800000351','2021FA','instructor'), | |
(100600,'800000744','2021FA','student'), | |
(100600,'800001358','2021FA','student'), | |
(100600,'800001394','2021FA','instructor'), | |
(100600,'800001517','2021FA','instructor'), | |
(100600,'800002364','2021FA','student'), | |
(100600,'800002459','2021FA','instructor'), | |
(100600,'800002595','2021FA','student'), | |
(100601,'800000085','2021FA','student'), | |
(100601,'800000099','2021FA','student'), | |
(100601,'800000220','2021FA','student'), | |
(100601,'800000432','2021FA','instructor'), | |
(100601,'800000534','2021FA','student'), | |
(100601,'800000890','2021FA','student'), | |
(100601,'800001074','2021FA','student'), | |
(100601,'800001156','2021FA','student'), | |
(100601,'800001422','2021FA','student'), | |
(100601,'800001524','2021FA','student'), | |
(100601,'800001564','2021FA','student'), | |
(100601,'800001759','2021FA','student'), | |
(100601,'800001793','2021FA','student'), | |
(100601,'800001969','2021FA','student'), | |
(100601,'800002152','2021FA','student'), | |
(100601,'800002209','2021FA','student'), | |
(100601,'800002379','2021FA','student'), | |
(100601,'800002427','2021FA','student'), | |
(100601,'800002459','2021FA','instructor'), | |
(100601,'800002551','2021FA','student'), | |
(100601,'800002753','2021FA','student'), | |
(100601,'800002959','2021FA','instructor'), | |
(100601,'800002959','2021FA','instructor'), | |
(100602,'800000076','2021FA','student'), | |
(100602,'800000099','2021FA','student'), | |
(100602,'800000977','2021FA','student'), | |
(100602,'800001430','2021FA','instructor'), | |
(100602,'800001477','2021FA','student'), | |
(100602,'800002269','2021FA','student'), | |
(100602,'800002417','2021FA','student'), | |
(100603,'800000128','2021FA','instructor'), | |
(100603,'800000219','2021FA','student'), | |
(100603,'800000229','2021FA','instructor'), | |
(100603,'800000270','2021FA','student'), | |
(100603,'800000432','2021FA','instructor'), | |
(100603,'800000666','2021FA','student'), | |
(100603,'800001230','2021FA','student'), | |
(100603,'800001287','2021FA','student'), | |
(100603,'800001422','2021FA','student'), | |
(100603,'800001715','2021FA','student'), | |
(100603,'800001974','2021FA','student'), | |
(100603,'800002528','2021FA','student'), | |
(100603,'800002905','2021FA','student'), | |
(100603,'800002981','2021FA','student'), | |
(100604,'800000657','2021FA','student'), | |
(100604,'800000980','2021FA','instructor'), | |
(100604,'800000995','2021FA','student'), | |
(100604,'800001057','2021FA','instructor'), | |
(100604,'800001172','2021FA','student'), | |
(100604,'800001279','2021FA','student'), | |
(100604,'800001334','2021FA','student'), | |
(100604,'800001440','2021FA','student'), | |
(100604,'800001846','2021FA','student'), | |
(100604,'800001910','2021FA','student'), | |
(100604,'800002095','2021FA','student'), | |
(100604,'800002301','2021FA','student'), | |
(100605,'800000063','2021FA','student'), | |
(100605,'800000405','2021FA','instructor'), | |
(100605,'800000405','2021FA','instructor'), | |
(100605,'800000478','2021FA','student'), | |
(100605,'800000593','2021FA','student'), | |
(100605,'800000631','2021FA','student'), | |
(100605,'800000726','2021FA','student'), | |
(100605,'800001283','2021FA','student'), | |
(100605,'800001316','2021FA','student'), | |
(100605,'800001588','2021FA','student'), | |
(100605,'800001613','2021FA','student'), | |
(100605,'800001797','2021FA','student'), | |
(100605,'800001815','2021FA','student'), | |
(100605,'800001974','2021FA','student'), | |
(100605,'800002006','2021FA','student'), | |
(100605,'800002119','2021FA','student'), | |
(100605,'800002137','2021FA','student'), | |
(100605,'800002722','2021FA','student'), | |
(100605,'800002964','2021FA','instructor'), | |
(100606,'800000231','2021FA','student'), | |
(100606,'800000341','2021FA','instructor'), | |
(100606,'800000452','2021FA','instructor'), | |
(100606,'800001572','2021FA','student'), | |
(100606,'800001969','2021FA','student'), | |
(100606,'800002328','2021FA','student'), | |
(100606,'800002642','2021FA','instructor'), | |
(100606,'800002786','2021FA','student'), | |
(100606,'800002810','2021FA','student'), | |
(100607,'800000061','2021FA','instructor'), | |
(100607,'800000483','2021FA','instructor'), | |
(100607,'800000743','2021FA','student'), | |
(100607,'800000850','2021FA','student'), | |
(100607,'800000945','2021FA','student'), | |
(100607,'800001471','2021FA','student'), | |
(100607,'800001630','2021FA','student'), | |
(100607,'800002355','2021FA','student'), | |
(100607,'800002852','2021FA','student'), | |
(100608,'800000493','2021FA','instructor'), | |
(100608,'800000998','2021FA','student'), | |
(100608,'800001425','2021FA','instructor'), | |
(100608,'800001772','2021FA','instructor'), | |
(100608,'800002329','2021FA','instructor'), | |
(100608,'800002375','2021FA','student'), | |
(100608,'800002395','2021FA','student'), | |
(100608,'800002718','2021FA','student'), | |
(100608,'800002768','2021FA','student'), | |
(100609,'800000061','2021FA','instructor'), | |
(100609,'800000341','2021FA','instructor'), | |
(100609,'800001228','2021FA','instructor'), | |
(100609,'800001277','2021FA','student'), | |
(100609,'800001905','2021FA','student'), | |
(100609,'800002380','2021FA','instructor'), | |
(100609,'800002491','2021FA','student'), | |
(100609,'800002514','2021FA','student'), | |
(100609,'800002824','2021FA','instructor'), | |
(100610,'800000493','2021FA','instructor'), | |
(100610,'800000603','2021FA','student'), | |
(100610,'800000968','2021FA','student'), | |
(100610,'800001341','2021FA','student'), | |
(100610,'800001345','2021FA','student'), | |
(100610,'800001485','2021FA','instructor'), | |
(100610,'800001629','2021FA','instructor'), | |
(100610,'800001769','2021FA','student'), | |
(100610,'800001789','2021FA','student'), | |
(100610,'800001916','2021FA','student'), | |
(100610,'800001987','2021FA','student'), | |
(100610,'800002268','2021FA','student'), | |
(100610,'800002710','2021FA','student'), | |
(100611,'800000428','2021FA','student'), | |
(100611,'800000543','2021FA','student'), | |
(100611,'800000928','2021FA','instructor'), | |
(100611,'800001485','2021FA','instructor'), | |
(100611,'800002299','2021FA','student'), | |
(100611,'800002645','2021FA','student'), | |
(100612,'800000091','2021FA','instructor'), | |
(100612,'800000938','2021FA','student'), | |
(100612,'800000951','2021FA','student'), | |
(100612,'800001180','2021FA','student'), | |
(100612,'800001222','2021FA','student'), | |
(100612,'800001678','2021FA','student'), | |
(100612,'800002502','2021FA','student'), | |
(100612,'800002511','2021FA','student'), | |
(100612,'800002733','2021FA','instructor'), | |
(100612,'800002867','2021FA','student'), | |
(100613,'800000033','2021FA','student'), | |
(100613,'800000359','2021FA','student'), | |
(100613,'800000469','2021FA','student'), | |
(100613,'800000538','2021FA','student'), | |
(100613,'800000740','2021FA','student'), | |
(100613,'800000846','2021FA','student'), | |
(100613,'800001667','2021FA','student'), | |
(100613,'800001723','2021FA','student'), | |
(100613,'800002160','2021FA','student'), | |
(100613,'800002253','2021FA','student'), | |
(100613,'800002380','2021FA','instructor'), | |
(100613,'800002561','2021FA','student'), | |
(100613,'800002663','2021FA','student'), | |
(100613,'800002868','2021FA','student'), | |
(100614,'800000044','2021FA','student'), | |
(100614,'800000145','2021FA','instructor'), | |
(100614,'800000394','2021FA','student'), | |
(100614,'800000636','2021FA','student'), | |
(100614,'800000655','2021FA','student'), | |
(100614,'800001167','2021FA','student'), | |
(100614,'800001217','2021FA','student'), | |
(100614,'800001332','2021FA','student'), | |
(100614,'800001371','2021FA','student'), | |
(100614,'800001399','2021FA','student'), | |
(100614,'800002077','2021FA','student'), | |
(100614,'800002159','2021FA','student'), | |
(100614,'800002165','2021FA','student'), | |
(100614,'800002329','2021FA','instructor'), | |
(100614,'800002478','2021FA','student'), | |
(100614,'800002976','2021FA','student'), | |
(100615,'800000424','2021FA','student'), | |
(100615,'800000597','2021FA','student'), | |
(100615,'800000832','2021FA','student'), | |
(100615,'800000928','2021FA','instructor'), | |
(100615,'800001475','2021FA','student'), | |
(100615,'800001550','2021FA','student'), | |
(100615,'800001585','2021FA','student'), | |
(100615,'800002027','2021FA','student'), | |
(100615,'800002229','2021FA','student'), | |
(100615,'800002733','2021FA','instructor'), | |
(100615,'800002824','2021FA','instructor'), | |
(100615,'800002881','2021FA','student'), | |
(100616,'800000056','2021FA','student'), | |
(100616,'800000113','2021FA','student'), | |
(100616,'800000226','2021FA','student'), | |
(100616,'800000393','2021FA','student'), | |
(100616,'800000473','2021FA','student'), | |
(100616,'800001050','2021FA','student'), | |
(100616,'800001091','2021FA','student'), | |
(100616,'800001130','2021FA','student'), | |
(100616,'800001250','2021FA','student'), | |
(100616,'800001402','2021FA','student'), | |
(100616,'800001421','2021FA','student'), | |
(100616,'800001538','2021FA','student'), | |
(100616,'800001779','2021FA','student'), | |
(100616,'800001955','2021FA','student'), | |
(100616,'800002190','2021FA','instructor'), | |
(100616,'800002304','2021FA','student'), | |
(100616,'800002611','2021FA','student'), | |
(100616,'800002630','2021FA','student'), | |
(100616,'800002644','2021FA','student'), | |
(100616,'800002894','2021FA','student'), | |
(100616,'800002990','2021FA','instructor'), | |
(100617,'800000014','2021FA','instructor'), | |
(100617,'800000300','2021FA','instructor'), | |
(100617,'800000467','2021FA','student'), | |
(100617,'800000509','2021FA','student'), | |
(100617,'800000570','2021FA','student'), | |
(100617,'800000581','2021FA','student'), | |
(100617,'800000660','2021FA','student'), | |
(100617,'800000728','2021FA','student'), | |
(100617,'800000981','2021FA','student'), | |
(100617,'800000996','2021FA','student'), | |
(100617,'800001205','2021FA','student'), | |
(100617,'800001284','2021FA','instructor'), | |
(100617,'800001560','2021FA','instructor'), | |
(100617,'800001795','2021FA','student'), | |
(100617,'800001861','2021FA','student'), | |
(100617,'800002040','2021FA','instructor'), | |
(100618,'800000004','2021FA','student'), | |
(100618,'800000327','2021FA','student'), | |
(100618,'800001075','2021FA','student'), | |
(100618,'800001261','2021FA','instructor'), | |
(100618,'800001409','2021FA','student'), | |
(100618,'800001442','2021FA','student'), | |
(100618,'800001548','2021FA','student'), | |
(100618,'800001564','2021FA','student'), | |
(100618,'800001699','2021FA','student'), | |
(100618,'800001756','2021FA','student'), | |
(100618,'800001797','2021FA','student'), | |
(100618,'800002322','2021FA','student'), | |
(100618,'800002536','2021FA','student'), | |
(100618,'800002697','2021FA','student'), | |
(100618,'800002998','2021FA','student'), | |
(100619,'800000565','2021FA','student'), | |
(100619,'800000644','2021FA','student'), | |
(100619,'800001222','2021FA','student'), | |
(100619,'800001284','2021FA','instructor'), | |
(100619,'800001401','2021FA','student'), | |
(100619,'800001548','2021FA','student'), | |
(100619,'800001574','2021FA','student'), | |
(100619,'800001575','2021FA','instructor'), | |
(100619,'800001590','2021FA','instructor'), | |
(100619,'800001832','2021FA','student'), | |
(100619,'800002528','2021FA','student'), | |
(100619,'800002708','2021FA','instructor'), | |
(100620,'800000354','2021FA','student'), | |
(100620,'800000565','2021FA','student'), | |
(100620,'800000754','2021FA','student'), | |
(100620,'800000890','2021FA','student'), | |
(100620,'800000902','2021FA','student'), | |
(100620,'800001661','2021FA','student'), | |
(100620,'800001791','2021FA','student'), | |
(100620,'800001845','2021FA','instructor'), | |
(100620,'800001951','2021FA','student'), | |
(100620,'800002361','2021FA','student'), | |
(100620,'800002443','2021FA','student'), | |
(100620,'800002777','2021FA','student'), | |
(100620,'800002810','2021FA','student'), | |
(100620,'800002869','2021FA','student'), | |
(100620,'800002905','2021FA','student'), | |
(100621,'800000099','2021FA','student'), | |
(100621,'800000170','2021FA','student'), | |
(100621,'800000231','2021FA','student'), | |
(100621,'800000923','2021FA','student'), | |
(100621,'800001074','2021FA','student'), | |
(100621,'800001244','2021FA','student'), | |
(100621,'800001323','2021FA','student'), | |
(100621,'800001891','2021FA','student'), | |
(100622,'800000020','2021FA','instructor'), | |
(100622,'800000300','2021FA','instructor'), | |
(100622,'800001575','2021FA','instructor'), | |
(100622,'800001698','2021FA','student'), | |
(100622,'800001845','2021FA','instructor'), | |
(100622,'800002465','2021FA','student'), | |
(100622,'800002654','2021FA','instructor'), | |
(100622,'800002901','2021FA','student'), | |
(100622,'800002925','2021FA','student'), | |
(100623,'800000088','2021FA','student'), | |
(100623,'800000159','2021FA','student'), | |
(100623,'800000214','2021FA','student'), | |
(100623,'800000215','2021FA','student'), | |
(100623,'800000316','2021FA','student'), | |
(100623,'800000585','2021FA','student'), | |
(100623,'800001275','2021FA','student'), | |
(100623,'800001426','2021FA','student'), | |
(100623,'800001590','2021FA','instructor'), | |
(100623,'800002040','2021FA','instructor'), | |
(100623,'800002160','2021FA','student'), | |
(100623,'800002197','2021FA','student'), | |
(100623,'800002477','2021FA','student'), | |
(100623,'800002498','2021FA','instructor'), | |
(100623,'800002556','2021FA','student'), | |
(100623,'800002848','2021FA','student'), | |
(100624,'800000180','2021FA','student'), | |
(100624,'800000500','2021FA','student'), | |
(100624,'800000506','2021FA','student'), | |
(100624,'800000518','2021FA','student'), | |
(100624,'800000543','2021FA','student'), | |
(100624,'800000708','2021FA','student'), | |
(100624,'800000721','2021FA','student'), | |
(100624,'800000725','2021FA','student'), | |
(100624,'800001308','2021FA','student'), | |
(100624,'800001706','2021FA','student'), | |
(100624,'800002262','2021FA','student'), | |
(100624,'800002299','2021FA','student'), | |
(100624,'800002551','2021FA','student'), | |
(100624,'800002600','2021FA','student'), | |
(100624,'800002603','2021FA','student'), | |
(100624,'800002691','2021FA','student'), | |
(100624,'800002708','2021FA','instructor'), | |
(100625,'800000433','2021FA','student'), | |
(100625,'800000834','2021FA','instructor'), | |
(100625,'800001124','2021FA','student'), | |
(100625,'800001146','2021FA','instructor'), | |
(100625,'800001729','2021FA','student'), | |
(100625,'800002292','2021FA','student'), | |
(100626,'800000020','2021FA','instructor'), | |
(100626,'800000111','2021FA','student'), | |
(100626,'800000596','2021FA','student'), | |
(100626,'800000803','2021FA','student'), | |
(100626,'800000891','2021FA','student'), | |
(100626,'800001903','2021FA','student'), | |
(100626,'800002638','2021FA','student'), | |
(100626,'800002771','2021FA','student'), | |
(100626,'800002939','2021FA','student'), | |
(100626,'800002990','2021FA','instructor') | |
; | |
/************* sis_acad_careers *************/ | |
create table sis_acad_careers ( | |
acad_career_id varchar(10), | |
description varchar(40), | |
dept_id varchar(5) | |
); | |
insert into sis_acad_careers (acad_career_id, description, dept_id) values | |
('UGRD', 'Undergraduate', 20000), | |
('NDP', 'Non-degree Program', 20000), | |
('ES','Exchange Student',20000), | |
('GRD', 'Graduate School', 30000), | |
('GNDP', 'Graduate School - Non-degree Program', 30000), | |
('SPM', 'School of Policy and Management', 45000), | |
('SB', 'School of Business', 50000), | |
('SCS', 'School of Continuing Studies', 60000) | |
; | |
/************* sis_prog_status *************/ | |
create table sis_prog_status ( | |
prog_status_id varchar(2), | |
description varchar(30) | |
); | |
insert into sis_prog_status (prog_status_id, description) values | |
('AC', 'Active'), | |
('PM', 'Pre-matriculated'), | |
('LA', 'Leave of Absence'), | |
('ES', 'Exchange Student'), | |
('XP', 'Expelled'), | |
('RS', 'Resigned'), | |
('XO', 'Transfered Out'), | |
('CM', 'Completed') | |
; | |
/************* sis_stu_programs *************/ | |
create table sis_stu_programs ( | |
person_id varchar(10), | |
acad_career_id varchar(10), | |
grad_year_expected varchar(10), | |
school_id varchar(10), | |
acad_dept_id varchar(10), | |
prog_status_id varchar(2) | |
); | |
insert into sis_stu_programs (person_id, acad_career_id, grad_year_expected, school_id, acad_dept_id, prog_status_id) values | |
('800000002','UGRD','2025','AS','SOC','LA'), | |
('800000004','UGRD','2022','AS','ENGL','AC'), | |
('800000005','UGRD','2021','AS','GERM','CM'), | |
('800000006','UGRD','2021','AS','ENV','CM'), | |
('800000007','UGRD','2025','AS','PSCI','AC'), | |
('800000008','UGRD','2023','AS','EALC','AC'), | |
('800000011','UGRD','2024','AS','MAT','AC'), | |
('800000012','UGRD','2023','AS','POLI','AC'), | |
('800000013','UGRD','2024','AS','ENGL','AC'), | |
('800000017','UGRD','2021','AS','GSS','CM'), | |
('800000018','UGRD','2021','AS','HUM','CM'), | |
('800000022','UGRD','2024','AS','ROML','AC'), | |
('800000027','UGRD','2022','AS','HIST','AC'), | |
('800000028','UGRD','2023','AS','WRI','AC'), | |
('800000031','UGRD','2023','AS','GERM','AC'), | |
('800000032','UGRD','2022','AS','MAT','AC'), | |
('800000033','ES',NULL,'AS','LIT','ES'), | |
('800000034','UGRD','2021','AS','THEA','CM'), | |
('800000036','UGRD','2025','AS','GSS','LA'), | |
('800000038','UGRD','2025','AS','MAT','AC'), | |
('800000039','GRAD','2025','GRD','GS','AC'), | |
('800000040','UGRD','2023','AS','LING','AC'), | |
('800000041','UGRD','2022','AS','EALC','AC'), | |
('800000042','UGRD','2021','AS','HUM','CM'), | |
('800000044','UGRD','2024','AS','CS','AC'), | |
('800000047','UGRD','2025','AS','LIT','AC'), | |
('800000049','UGRD','2023','AS','ARCH','AC'), | |
('800000052','UGRD','2025','AS','GERM','AC'), | |
('800000054','UGRD','2023','AS','GHP','AC'), | |
('800000055','UGRD','2023','AS','SOC','AC'), | |
('800000056','UGRD','2025','AS','ART','AC'), | |
('800000057','UGRD','2022','AS','GHP','AC'), | |
('800000058','UGRD','2025','AS','ROML','PM'), | |
('800000059','UGRD','2024','AS','SOC','AC'), | |
('800000060','UGRD','2025','AS','ROML','AC'), | |
('800000063','UGRD','2024','AS','STAT','AC'), | |
('800000064','UGRD','2023','AS','APCS','AC'), | |
('800000065','UGRD','2022','AS','SLAV','AC'), | |
('800000066','UGRD','2023','AS','REL','AC'), | |
('800000067','UGRD','2024','AS','GVMT','AC'), | |
('800000069','UGRD','2024','AS','HIST','AC'), | |
('800000070','UGRD','2021','AS','ECOM','CM'), | |
('800000074','UGRD','2025','AS','AAAS','AC'), | |
('800000075','GRAD','2021','GRD','GS','CM'), | |
('800000076','UGRD','2023','AS','PSYC','AC'), | |
('800000078','UGRD','2025','AS','AS','PM'), | |
('800000080','UGRD','2024','AS','GSS','AC'), | |
('800000082','UGRD','2023','AS','PHY','AC'), | |
('800000085','NDP',NULL,'AS','BIOS','AC'), | |
('800000086','SPM','2023','SPM',NULL,'AC'), | |
('800000088','NDP',NULL,'AS','STAT','AC'), | |
('800000093','UGRD','2023','AS','ENV','AC'), | |
('800000094','SCS','2021','SCS',NULL,'CM'), | |
('800000096','UGRD','2021','AS','SLAV','CM'), | |
('800000097','UGRD','2024','AS','SOC','AC'), | |
('800000099','SPM','2022','SPM',NULL,'AC'), | |
('800000102','SPM','2023','SPM',NULL,'AC'), | |
('800000105','UGRD','2023','AS','BPHY','AC'), | |
('800000106','UGRD','2022','AS','CELT','AC'), | |
('800000107','UGRD','2022','AS','MUS','XO'), | |
('800000108','UGRD','2022','AS','APCS','AC'), | |
('800000111','UGRD','2022','AS','CLSS','AC'), | |
('800000112','UGRD','2024','AS','MUS','AC'), | |
('800000113','UGRD','2024','AS','PHIL','AC'), | |
('800000116','UGRD','2025','AS','MCB','AC'), | |
('800000123','UGRD','2021','AS','CPLT','CM'), | |
('800000125','NDP',NULL,'AS','MEDS','AC'), | |
('800000126','UGRD','2021','AS','CELT','CM'), | |
('800000129','UGRD','2021','AS','ENGL','CM'), | |
('800000132','UGRD','2021','AS','MEDS','CM'), | |
('800000136','UGRD','2022','AS','STAT','AC'), | |
('800000137','UGRD','2023','AS','PSYC','AC'), | |
('800000141','UGRD','2022','AS','REL','AC'), | |
('800000143','UGRD','2025','AS','ENGL','PM'), | |
('800000144','UGRD','2023','AS','GHP','AC'), | |
('800000147','UGRD','2025','AS','CHEM','AC'), | |
('800000148','UGRD','2025','AS','GSS','AC'), | |
('800000150','UGRD','2021','AS','REL','CM'), | |
('800000154','UGRD','2022','AS','CS','AC'), | |
('800000155','GRAD','2024','GRD','GS','AC'), | |
('800000157','UGRD','2021','AS','ENGL','CM'), | |
('800000158','UGRD','2023','AS','GVMT','AC'), | |
('800000159','UGRD','2022','AS','ENV','AC'), | |
('800000160','UGRD','2024','AS','MCB','AC'), | |
('800000161','UGRD','2021','AS','MAT','CM'), | |
('800000165','UGRD','2022','AS','HIST','AC'), | |
('800000166','UGRD','2021','AS','CS','CM'), | |
('800000167','UGRD','2023','AS','NELC','AC'), | |
('800000169','UGRD','2021','AS','MEDS','CM'), | |
('800000170','SCS','2025','SCS',NULL,'AC'), | |
('800000172','UGRD','2021','AS','SOC','CM'), | |
('800000173','UGRD','2023','AS','ENV','AC'), | |
('800000177','UGRD','2024','AS','ENG','AC'), | |
('800000178','UGRD','2025','AS','POLI','PM'), | |
('800000180','UGRD','2025','AS','POLI','AC'), | |
('800000181','UGRD','2021','AS','BPHY','CM'), | |
('800000184','UGRD','2021','AS','ROML','CM'), | |
('800000188','UGRD','2022','AS','APHY','AC'), | |
('800000189','UGRD','2023','AS','APCS','AC'), | |
('800000192','UGRD','2023','AS','MES','AC'), | |
('800000193','UGRD','2022','AS','REL','AC'), | |
('800000195','UGRD','2023','AS','GHP','AC'), | |
('800000197','UGRD','2025','AS','SLAV','AC'), | |
('800000198','UGRD','2021','AS','AAAS','CM'), | |
('800000200','UGRD','2021','AS','MEDS','CM'), | |
('800000202','UGRD','2021','AS','MES','CM'), | |
('800000206','UGRD','2022','AS','MES','AC'), | |
('800000210','UGRD','2025','AS','NELC','AC'), | |
('800000211','UGRD','2021','AS','CELT','CM'), | |
('800000212','UGRD','2021','AS','NELC','CM'), | |
('800000213','UGRD','2023','AS','PHY','AC'), | |
('800000214','UGRD','2024','AS','PSYC','AC'), | |
('800000215','UGRD','2024','AS','GERM','AC'), | |
('800000216','UGRD','2023','AS','WRI','AC'), | |
('800000219','UGRD','2022','AS','ASTR','AC'), | |
('800000220','UGRD','2023','AS','APCS','AC'), | |
('800000225','UGRD','2024','AS','ENG','AC'), | |
('800000226','UGRD','2025','AS','ENV','AC'), | |
('800000231','UGRD','2022','AS','HIST','AC'), | |
('800000233','UGRD','2023','AS','MES','AC'), | |
('800000236','UGRD','2022','AS','GHP','XO'), | |
('800000237','GRAD','2023','GRD','GS','AC'), | |
('800000238','UGRD','2021','AS','WRI','CM'), | |
('800000241','UGRD','2025','AS','ENG','AC'), | |
('800000242','NDP',NULL,'AS','MEDS','AC'), | |
('800000246','UGRD','2024','AS','LING','AC'), | |
('800000248','UGRD','2024','AS','CHEM','AC'), | |
('800000255','UGRD','2023','AS','LIT','AC'), | |
('800000256','UGRD','2025','AS','CHEM','AC'), | |
('800000264','UGRD','2021','AS','SOC','CM'), | |
('800000267','UGRD','2024','AS','WRI','AC'), | |
('800000268','UGRD','2025','AS','ARCH','LA'), | |
('800000270','UGRD','2022','AS','REL','AC'), | |
('800000271','UGRD','2022','AS','SAS','AC'), | |
('800000272','UGRD','2023','AS','PHIL','AC'), | |
('800000273','UGRD','2022','AS','BIOS','AC'), | |
('800000275','UGRD','2025','AS','PSYC','AC'), | |
('800000277','UGRD','2021','AS','SAS','CM'), | |
('800000279','UGRD','2022','AS','HUM','AC'), | |
('800000280','UGRD','2021','AS','MAT','CM'), | |
('800000282','UGRD','2022','AS','MES','AC'), | |
('800000284','UGRD','2025','AS','CS','AC'), | |
('800000288','UGRD','2024','AS','POLI','AC'), | |
('800000290','UGRD','2025','AS','SLAV','AC'), | |
('800000291','UGRD','2021','AS','REL','CM'), | |
('800000293','UGRD','2022','AS','HUM','AC'), | |
('800000294','UGRD','2024','AS','ECOM','AC'), | |
('800000295','UGRD','2022','AS','PSYC','AC'), | |
('800000296','UGRD','2025','AS','POLI','AC'), | |
('800000297','UGRD','2025','AS','PSCI','AC'), | |
('800000299','UGRD','2025','AS','APCS','AC'), | |
('800000302','UGRD','2021','AS','CELT','CM'), | |
('800000306','UGRD','2022','AS','ASTR','AC'), | |
('800000309','UGRD','2025','AS','GERM','AC'), | |
('800000310','UGRD','2025','AS','GVMT','AC'), | |
('800000313','UGRD','2023','AS','GVMT','AC'), | |
('800000315','UGRD','2022','AS','HIST','XP'), | |
('800000316','UGRD','2024','AS','ASTR','AC'), | |
('800000317','UGRD','2024','AS','CPLT','AC'), | |
('800000321','UGRD','2022','AS','NELC','AC'), | |
('800000322','UGRD','2023','AS','APHY','AC'), | |
('800000326','UGRD','2024','AS','MES','AC'), | |
('800000327','UGRD','2023','AS','CELT','AC'), | |
('800000330','UGRD','2025','AS','ENG','AC'), | |
('800000332','UGRD','2022','AS','LING','AC'), | |
('800000333','ES',NULL,'AS','THEA','ES'), | |
('800000338','GRAD','2023','GRD','GS','AC'), | |
('800000339','GRAD','2022','GRD','GS','AC'), | |
('800000343','UGRD','2025','AS','CS','AC'), | |
('800000346','UGRD','2025','AS','PHIL','AC'), | |
('800000348','SCS','2023','SCS',NULL,'AC'), | |
('800000350','UGRD','2024','AS','MCB','AC'), | |
('800000354','UGRD','2025','AS','LIT','AC'), | |
('800000356','UGRD','2025','AS','SAS','AC'), | |
('800000359','UGRD','2024','AS','PSCI','AC'), | |
('800000362','UGRD','2023','AS','BIOL','AC'), | |
('800000365','UGRD','2022','AS','AAAS','AC'), | |
('800000367','UGRD','2022','AS','POLI','AC'), | |
('800000368','UGRD','2022','AS','ART','AC'), | |
('800000369','UGRD','2025','AS','STAT','AC'), | |
('800000371','UGRD','2025','AS','POLI','LA'), | |
('800000372','UGRD','2024','AS','WRI','AC'), | |
('800000373','UGRD','2021','AS','MAT','CM'), | |
('800000374','UGRD','2021','AS','THEA','CM'), | |
('800000375','UGRD','2023','AS','CELT','AC'), | |
('800000380','UGRD','2021','AS','PSCI','CM'), | |
('800000381','UGRD','2024','AS','ART','AC'), | |
('800000385','UGRD','2021','AS','EALC','CM'), | |
('800000387','UGRD','2025','AS','MCB','AC'), | |
('800000388','UGRD','2021','AS','ENV','CM'), | |
('800000390','UGRD','2023','AS','ASTR','AC'), | |
('800000393','UGRD','2024','AS','CLSS','AC'), | |
('800000394','UGRD','2025','AS','REL','AC'), | |
('800000398','UGRD','2025','AS','ART','AC'), | |
('800000400','UGRD','2024','AS','GVMT','AC'), | |
('800000402','UGRD','2024','AS','CPLT','AC'), | |
('800000403','UGRD','2023','AS','APCS','AC'), | |
('800000404','UGRD','2024','AS','BIOL','AC'), | |
('800000406','UGRD','2025','AS','GHP','AC'), | |
('800000409','UGRD','2024','AS','CHEM','AC'), | |
('800000410','UGRD','2021','AS','ANTH','CM'), | |
('800000411','UGRD','2023','AS','CHEM','AC'), | |
('800000412','UGRD','2021','AS','ENGL','CM'), | |
('800000417','UGRD','2025','AS','ART','AC'), | |
('800000418','UGRD','2024','AS','MEDS','AC'), | |
('800000419','UGRD','2023','AS','AS','AC'), | |
('800000421','UGRD','2024','AS','CS','AC'), | |
('800000424','UGRD','2023','AS','ENV','AC'), | |
('800000425','UGRD','2023','AS','PSYC','AC'), | |
('800000427','UGRD','2021','AS','AAAS','CM'), | |
('800000428','SB','2025','BUS',NULL,'AC'), | |
('800000429','UGRD','2023','AS','AMAT','XP'), | |
('800000431','UGRD','2024','AS','SOCS','AC'), | |
('800000433','NDP',NULL,'AS','SOCS','AC'), | |
('800000434','UGRD','2021','AS','HIST','CM'), | |
('800000436','UGRD','2021','AS','ECOM','CM'), | |
('800000438','UGRD','2025','AS','GSS','AC'), | |
('800000441','SB','2024','BUS',NULL,'AC'), | |
('800000442','UGRD','2021','AS','PSCI','CM'), | |
('800000445','NDP',NULL,'AS','THEA','AC'), | |
('800000450','UGRD','2022','AS','AAAS','AC'), | |
('800000451','UGRD','2023','AS','ENGL','AC'), | |
('800000458','UGRD','2024','AS','MAT','AC'), | |
('800000461','GRAD','2022','GRD','GS','AC'), | |
('800000463','SB','2023','BUS',NULL,'AC'), | |
('800000464','UGRD','2021','AS','ENG','CM'), | |
('800000466','UGRD','2023','AS','CS','AC'), | |
('800000467','SCS','2023','SCS',NULL,'AC'), | |
('800000469','UGRD','2025','AS','LING','AC'), | |
('800000471','UGRD','2023','AS','AAAS','AC'), | |
('800000473','UGRD','2024','AS','HUM','AC'), | |
('800000474','UGRD','2023','AS','ECOM','AC'), | |
('800000478','UGRD','2022','AS','SLAV','AC'), | |
('800000479','NDP',NULL,'AS','APHY','AC'), | |
('800000480','UGRD','2024','AS','ENG','AC'), | |
('800000485','UGRD','2022','AS','CPLT','RS'), | |
('800000486','UGRD','2023','AS','ARCH','AC'), | |
('800000489','UGRD','2022','AS','PHIL','AC'), | |
('800000490','SCS','2025','SCS',NULL,'AC'), | |
('800000491','UGRD','2024','AS','AMAT','AC'), | |
('800000492','UGRD','2022','AS','MAT','XP'), | |
('800000494','UGRD','2023','AS','CHEM','AC'), | |
('800000495','SCS','2025','SCS',NULL,'AC'), | |
('800000497','UGRD','2023','AS','MAT','AC'), | |
('800000499','UGRD','2025','AS','STAT','AC'), | |
('800000500','UGRD','2023','AS','CPLT','AC'), | |
('800000502','UGRD','2022','AS','STAT','AC'), | |
('800000503','UGRD','2022','AS','APCS','AC'), | |
('800000506','UGRD','2022','AS','EALC','AC'), | |
('800000509','UGRD','2025','AS','MUS','AC'), | |
('800000512','UGRD','2021','AS','APCS','CM'), | |
('800000514','UGRD','2023','AS','PSYC','AC'), | |
('800000515','UGRD','2025','AS','ARCH','AC'), | |
('800000518','UGRD','2024','AS','POLI','AC'), | |
('800000520','UGRD','2025','AS','LIT','AC'), | |
('800000521','UGRD','2022','AS','SLAV','AC'), | |
('800000527','UGRD','2021','AS','GHP','CM'), | |
('800000529','UGRD','2023','AS','BIOS','RS'), | |
('800000531','UGRD','2024','AS','ART','AC'), | |
('800000534','UGRD','2023','AS','ENG','AC'), | |
('800000538','UGRD','2023','AS','PSCI','AC'), | |
('800000539','UGRD','2021','AS','HIST','CM'), | |
('800000540','UGRD','2023','AS','LIT','AC'), | |
('800000542','UGRD','2025','AS','PHIL','AC'), | |
('800000543','UGRD','2023','AS','BIOL','AC'), | |
('800000545','UGRD','2024','AS','ANTH','AC'), | |
('800000547','UGRD','2024','AS','POLI','AC'), | |
('800000548','UGRD','2025','AS','MUS','AC'), | |
('800000549','UGRD','2021','AS','SAS','CM'), | |
('800000550','SB','2023','BUS',NULL,'AC'), | |
('800000553','ES',NULL,'AS','GSS','ES'), | |
('800000554','UGRD','2023','AS','MEDS','AC'), | |
('800000555','UGRD','2025','AS','ARCH','AC'), | |
('800000556','UGRD','2021','AS','PHIL','CM'), | |
('800000557','UGRD','2022','AS','BIOL','AC'), | |
('800000558','UGRD','2021','AS','GVMT','CM'), | |
('800000564','UGRD','2025','AS','APHY','AC'), | |
('800000565','UGRD','2023','AS','MAT','AC'), | |
('800000566','UGRD','2025','AS','AS','AC'), | |
('800000568','UGRD','2025','AS','THEA','AC'), | |
('800000569','UGRD','2021','AS','ENV','CM'), | |
('800000570','UGRD','2023','AS','CS','AC'), | |
('800000571','UGRD','2023','AS','GERM','AC'), | |
('800000572','UGRD','2025','AS','APHY','AC'), | |
('800000573','UGRD','2025','AS','HIST','AC'), | |
('800000574','UGRD','2021','AS','EALC','CM'), | |
('800000575','UGRD','2023','AS','NELC','AC'), | |
('800000576','UGRD','2021','AS','STAT','CM'), | |
('800000577','UGRD','2025','AS','ASTR','AC'), | |
('800000579','UGRD','2023','AS','LING','AC'), | |
('800000580','UGRD','2023','AS','ASTR','AC'), | |
('800000581','UGRD','2022','AS','MUS','AC'), | |
('800000584','UGRD','2022','AS','ASTR','AC'), | |
('800000585','UGRD','2024','AS','GHP','AC'), | |
('800000586','UGRD','2022','AS','CHEM','AC'), | |
('800000588','UGRD','2024','AS','GHP','AC'), | |
('800000590','UGRD','2021','AS','WRI','CM'), | |
('800000591','UGRD','2021','AS','ART','CM'), | |
('800000592','UGRD','2024','AS','ENGL','AC'), | |
('800000593','UGRD','2022','AS','CS','AC'), | |
('800000595','UGRD','2023','AS','GERM','AC'), | |
('800000596','UGRD','2025','AS','ECOM','AC'), | |
('800000597','UGRD','2025','AS','GHP','AC'), | |
('800000602','UGRD','2025','AS','GVMT','AC'), | |
('800000603','UGRD','2025','AS','HUM','AC'), | |
('800000606','UGRD','2021','AS','BIOS','CM'), | |
('800000607','UGRD','2022','AS','LING','AC'), | |
('800000610','UGRD','2024','AS','REL','AC'), | |
('800000611','UGRD','2022','AS','AMAT','AC'), | |
('800000615','UGRD','2024','AS','ASTR','AC'), | |
('800000616','UGRD','2024','AS','ECOM','AC'), | |
('800000621','UGRD','2025','AS','APHY','LA'), | |
('800000622','UGRD','2023','AS','ENGL','AC'), | |
('800000623','UGRD','2025','AS','CPLT','AC'), | |
('800000624','UGRD','2022','AS','STAT','AC'), | |
('800000625','UGRD','2024','AS','CELT','AC'), | |
('800000626','UGRD','2021','AS','AS','CM'), | |
('800000627','UGRD','2022','AS','GVMT','AC'), | |
('800000628','UGRD','2023','AS','BIOL','AC'), | |
('800000630','UGRD','2022','AS','SOC','AC'), | |
('800000631','UGRD','2025','AS','GHP','AC'), | |
('800000632','UGRD','2024','AS','PSCI','AC'), | |
('800000634','UGRD','2024','AS','BPHY','AC'), | |
('800000635','UGRD','2024','AS','SOCS','AC'), | |
('800000636','UGRD','2025','AS','MEDS','AC'), | |
('800000637','UGRD','2024','AS','PSYC','AC'), | |
('800000641','UGRD','2024','AS','GHP','AC'), | |
('800000642','GRAD','2025','GRD','GS','AC'), | |
('800000643','UGRD','2025','AS','HIST','AC'), | |
('800000644','UGRD','2022','AS','CLSS','AC'), | |
('800000645','GRAD','2024','GRD','GS','AC'), | |
('800000646','UGRD','2022','AS','ROML','AC'), | |
('800000652','UGRD','2025','AS','SAS','AC'), | |
('800000655','UGRD','2022','AS','MAT','AC'), | |
('800000656','UGRD','2025','AS','POLI','AC'), | |
('800000657','UGRD','2024','AS','REL','AC'), | |
('800000658','UGRD','2021','AS','PHY','CM'), | |
('800000660','UGRD','2025','AS','APHY','AC'), | |
('800000662','UGRD','2022','AS','ANTH','AC'), | |
('800000663','UGRD','2024','AS','REL','AC'), | |
('800000664','NDP',NULL,'AS','GSS','AC'), | |
('800000665','UGRD','2024','AS','PSYC','AC'), | |
('800000666','UGRD','2022','AS','AMAT','AC'), | |
('800000671','UGRD','2025','AS','GVMT','AC'), | |
('800000672','UGRD','2022','AS','PHY','AC'), | |
('800000673','UGRD','2024','AS','ROML','AC'), | |
('800000676','UGRD','2021','AS','BIOS','CM'), | |
('800000679','UGRD','2024','AS','GSS','AC'), | |
('800000680','UGRD','2021','AS','BIOL','CM'), | |
('800000682','UGRD','2025','AS','POLI','AC'), | |
('800000685','UGRD','2021','AS','AMAT','CM'), | |
('800000687','GNDP',NULL,'GRD','GS','AC'), | |
('800000688','UGRD','2024','AS','AAAS','AC'), | |
('800000692','SCS','2022','SCS',NULL,'AC'), | |
('800000694','UGRD','2022','AS','ARCH','AC'), | |
('800000696','GRAD','2023','GRD','GS','AC'), | |
('800000701','UGRD','2024','AS','BIOS','AC'), | |
('800000703','UGRD','2025','AS','CLSS','LA'), | |
('800000705','UGRD','2025','AS','CS','AC'), | |
('800000707','UGRD','2021','AS','ENG','CM'), | |
('800000708','NDP',NULL,'AS','ENG','AC'), | |
('800000709','UGRD','2023','AS','CELT','AC'), | |
('800000710','UGRD','2025','AS','NELC','AC'), | |
('800000711','UGRD','2021','AS','AS','CM'), | |
('800000712','UGRD','2023','AS','GERM','AC'), | |
('800000714','UGRD','2024','AS','LING','AC'), | |
('800000716','UGRD','2021','AS','CLSS','CM'), | |
('800000717','UGRD','2025','AS','BIOL','AC'), | |
('800000718','UGRD','2025','AS','CPLT','AC'), | |
('800000719','UGRD','2022','AS','ENG','AC'), | |
('800000720','SB','2024','BUS',NULL,'AC'), | |
('800000721','UGRD','2025','AS','APCS','AC'), | |
('800000723','UGRD','2022','AS','SOC','AC'), | |
('800000724','SCS','2021','SCS',NULL,'CM'), | |
('800000725','GNDP',NULL,'GRD','GS','AC'), | |
('800000726','UGRD','2023','AS','AMAT','AC'), | |
('800000727','UGRD','2025','AS','AS','AC'), | |
('800000728','UGRD','2022','AS','GERM','AC'), | |
('800000729','UGRD','2025','AS','GERM','AC'), | |
('800000730','GRAD','2021','GRD','GS','CM'), | |
('800000732','GRAD','2021','GRD','GS','CM'), | |
('800000733','UGRD','2021','AS','POLI','CM'), | |
('800000734','UGRD','2021','AS','APCS','CM'), | |
('800000737','UGRD','2023','AS','SOC','AC'), | |
('800000738','UGRD','2025','AS','GHP','AC'), | |
('800000739','UGRD','2021','AS','CLSS','CM'), | |
('800000740','UGRD','2024','AS','AS','AC'), | |
('800000741','UGRD','2021','AS','MUS','CM'), | |
('800000743','UGRD','2024','AS','CPLT','AC'), | |
('800000744','UGRD','2023','AS','PHY','AC'), | |
('800000746','ES',NULL,'AS','AMAT','ES'), | |
('800000747','UGRD','2023','AS','CS','AC'), | |
('800000748','UGRD','2023','AS','NELC','AC'), | |
('800000749','UGRD','2022','AS','GERM','AC'), | |
('800000754','UGRD','2022','AS','ENV','AC'), | |
('800000755','UGRD','2024','AS','SOC','AC'), | |
('800000759','UGRD','2021','AS','CLSS','CM'), | |
('800000761','UGRD','2023','AS','MEDS','AC'), | |
('800000762','UGRD','2022','AS','ART','AC'), | |
('800000765','UGRD','2023','AS','NELC','AC'), | |
('800000766','UGRD','2022','AS','GERM','AC'), | |
('800000767','UGRD','2025','AS','POLI','AC'), | |
('800000768','SPM','2022','SPM',NULL,'AC'), | |
('800000769','UGRD','2023','AS','WRI','AC'), | |
('800000770','UGRD','2023','AS','PSCI','AC'), | |
('800000772','UGRD','2025','AS','CLSS','AC'), | |
('800000773','UGRD','2024','AS','REL','AC'), | |
('800000776','UGRD','2024','AS','PHIL','AC'), | |
('800000778','UGRD','2024','AS','ENV','AC'), | |
('800000781','SB','2025','BUS',NULL,'AC'), | |
('800000782','UGRD','2024','AS','LIT','AC'), | |
('800000785','UGRD','2025','AS','ENV','XO'), | |
('800000787','UGRD','2024','AS','BIOS','AC'), | |
('800000790','UGRD','2022','AS','WRI','AC'), | |
('800000791','UGRD','2023','AS','LING','AC'), | |
('800000793','UGRD','2021','AS','PSCI','CM'), | |
('800000798','UGRD','2022','AS','BIOS','AC'), | |
('800000799','UGRD','2023','AS','BPHY','AC'), | |
('800000801','UGRD','2024','AS','REL','AC'), | |
('800000803','UGRD','2022','AS','BPHY','AC'), | |
('800000804','UGRD','2023','AS','ROML','AC'), | |
('800000806','UGRD','2025','AS','ENGL','LA'), | |
('800000807','ES',NULL,'AS','CS','ES'), | |
('800000808','UGRD','2022','AS','MEDS','AC'), | |
('800000809','UGRD','2025','AS','ECOM','AC'), | |
('800000811','UGRD','2021','AS','GVMT','CM'), | |
('800000813','UGRD','2023','AS','THEA','XP'), | |
('800000815','UGRD','2021','AS','CELT','CM'), | |
('800000818','UGRD','2023','AS','BPHY','AC'), | |
('800000819','UGRD','2025','AS','BPHY','AC'), | |
('800000821','UGRD','2024','AS','PSYC','AC'), | |
('800000822','SB','2024','BUS',NULL,'AC'), | |
('800000826','UGRD','2022','AS','GSS','AC'), | |
('800000827','UGRD','2022','AS','PHIL','AC'), | |
('800000828','UGRD','2022','AS','CPLT','AC'), | |
('800000830','UGRD','2021','AS','AMAT','CM'), | |
('800000832','SPM','2023','SPM',NULL,'AC'), | |
('800000835','UGRD','2024','AS','HUM','AC'), | |
('800000836','UGRD','2025','AS','SOC','XP'), | |
('800000837','UGRD','2021','AS','CS','CM'), | |
('800000840','UGRD','2022','AS','CHEM','AC'), | |
('800000841','UGRD','2025','AS','MAT','AC'), | |
('800000843','UGRD','2024','AS','ENV','AC'), | |
('800000845','UGRD','2024','AS','PSYC','AC'), | |
('800000846','UGRD','2025','AS','HIST','AC'), | |
('800000847','UGRD','2021','AS','CS','CM'), | |
('800000848','NDP',NULL,'AS','CS','AC'), | |
('800000849','UGRD','2021','AS','ENG','CM'), | |
('800000850','UGRD','2025','AS','AMAT','AC'), | |
('800000852','UGRD','2025','AS','APCS','AC'), | |
('800000855','UGRD','2021','AS','NELC','CM'), | |
('800000859','UGRD','2024','AS','HUM','AC'), | |
('800000861','NDP',NULL,'AS','HIST','AC'), | |
('800000862','UGRD','2025','AS','CHEM','AC'), | |
('800000864','UGRD','2024','AS','EALC','AC'), | |
('800000867','UGRD','2021','AS','SAS','CM'), | |
('800000868','UGRD','2021','AS','APHY','CM'), | |
('800000871','UGRD','2024','AS','BPHY','AC'), | |
('800000874','UGRD','2024','AS','CLSS','AC'), | |
('800000876','UGRD','2025','AS','LIT','AC'), | |
('800000877','UGRD','2022','AS','ROML','AC'), | |
('800000878','UGRD','2025','AS','ECOM','AC'), | |
('800000879','UGRD','2022','AS','THEA','AC'), | |
('800000880','UGRD','2025','AS','SLAV','AC'), | |
('800000881','UGRD','2022','AS','ROML','AC'), | |
('800000882','UGRD','2025','AS','ART','AC'), | |
('800000885','UGRD','2021','AS','GERM','CM'), | |
('800000886','SPM','2022','SPM',NULL,'AC'), | |
('800000887','UGRD','2025','AS','MUS','AC'), | |
('800000889','UGRD','2024','AS','GHP','AC'), | |
('800000890','SCS','2025','SCS',NULL,'AC'), | |
('800000891','UGRD','2022','AS','CPLT','AC'), | |
('800000892','UGRD','2025','AS','ASTR','AC'), | |
('800000896','UGRD','2021','AS','NELC','CM'), | |
('800000900','UGRD','2025','AS','THEA','PM'), | |
('800000902','UGRD','2023','AS','WRI','AC'), | |
('800000903','UGRD','2024','AS','ARCH','AC'), | |
('800000904','UGRD','2025','AS','PSCI','AC'), | |
('800000905','UGRD','2024','AS','MEDS','AC'), | |
('800000907','UGRD','2021','AS','CLSS','CM'), | |
('800000908','UGRD','2024','AS','BIOS','AC'), | |
('800000909','UGRD','2021','AS','APHY','CM'), | |
('800000910','UGRD','2023','AS','MCB','AC'), | |
('800000911','UGRD','2022','AS','PSYC','AC'), | |
('800000914','UGRD','2022','AS','BIOS','AC'), | |
('800000915','UGRD','2022','AS','THEA','AC'), | |
('800000917','UGRD','2024','AS','NELC','AC'), | |
('800000920','UGRD','2022','AS','POLI','AC'), | |
('800000922','UGRD','2022','AS','HUM','AC'), | |
('800000923','UGRD','2022','AS','LING','AC'), | |
('800000924','UGRD','2023','AS','SOC','AC'), | |
('800000925','UGRD','2023','AS','ECOM','AC'), | |
('800000930','UGRD','2023','AS','THEA','AC'), | |
('800000932','ES',NULL,'AS','MUS','ES'), | |
('800000936','SPM','2024','SPM',NULL,'AC'), | |
('800000938','UGRD','2025','AS','HUM','AC'), | |
('800000940','UGRD','2024','AS','APHY','AC'), | |
('800000941','UGRD','2025','AS','GHP','RS'), | |
('800000942','UGRD','2025','AS','EALC','AC'), | |
('800000944','UGRD','2023','AS','PSCI','AC'), | |
('800000945','UGRD','2022','AS','GSS','AC'), | |
('800000947','UGRD','2025','AS','CHEM','AC'), | |
('800000948','UGRD','2022','AS','PHIL','AC'), | |
('800000951','UGRD','2024','AS','BPHY','AC'), | |
('800000952','UGRD','2025','AS','ENGL','AC'), | |
('800000953','UGRD','2021','AS','MAT','CM'), | |
('800000960','UGRD','2025','AS','CLSS','AC'), | |
('800000961','UGRD','2022','AS','ROML','AC'), | |
('800000963','UGRD','2025','AS','HUM','AC'), | |
('800000968','UGRD','2023','AS','MAT','AC'), | |
('800000971','UGRD','2021','AS','ENG','CM'), | |
('800000974','UGRD','2021','AS','GERM','CM'), | |
('800000975','GRAD','2021','GRD','GS','CM'), | |
('800000977','UGRD','2024','AS','APHY','AC'), | |
('800000979','UGRD','2022','AS','GSS','AC'), | |
('800000981','UGRD','2024','AS','AMAT','AC'), | |
('800000984','UGRD','2022','AS','PHIL','AC'), | |
('800000985','UGRD','2021','AS','NELC','CM'), | |
('800000986','UGRD','2025','AS','APHY','AC'), | |
('800000987','UGRD','2024','AS','CPLT','AC'), | |
('800000989','UGRD','2024','AS','APCS','AC'), | |
('800000990','GRAD','2024','GRD','GS','AC'), | |
('800000991','UGRD','2022','AS','AS','AC'), | |
('800000993','UGRD','2024','AS','ENV','AC'), | |
('800000995','UGRD','2025','AS','BIOL','AC'), | |
('800000996','UGRD','2024','AS','HUM','AC'), | |
('800000997','UGRD','2021','AS','CPLT','CM'), | |
('800000998','UGRD','2025','AS','PSYC','AC'), | |
('800001000','UGRD','2021','AS','ANTH','CM'), | |
('800001003','UGRD','2021','AS','CPLT','CM'), | |
('800001004','SPM','2022','SPM',NULL,'AC'), | |
('800001006','UGRD','2021','AS','PSCI','CM'), | |
('800001008','UGRD','2021','AS','THEA','CM'), | |
('800001010','UGRD','2025','AS','REL','AC'), | |
('800001011','UGRD','2022','AS','ROML','AC'), | |
('800001012','UGRD','2025','AS','APHY','AC'), | |
('800001014','UGRD','2025','AS','CHEM','AC'), | |
('800001015','UGRD','2023','AS','THEA','AC'), | |
('800001016','UGRD','2023','AS','ROML','AC'), | |
('800001017','SCS','2024','SCS',NULL,'AC'), | |
('800001019','UGRD','2024','AS','PHIL','AC'), | |
('800001021','UGRD','2023','AS','GERM','AC'), | |
('800001023','NDP',NULL,'AS','GVMT','AC'), | |
('800001029','UGRD','2025','AS','APCS','AC'), | |
('800001030','UGRD','2021','AS','STAT','CM'), | |
('800001034','UGRD','2024','AS','HIST','AC'), | |
('800001036','UGRD','2021','AS','AS','CM'), | |
('800001038','UGRD','2024','AS','PHY','AC'), | |
('800001044','ES',NULL,'AS','PSCI','ES'), | |
('800001047','UGRD','2021','AS','PSCI','CM'), | |
('800001048','UGRD','2023','AS','ENG','AC'), | |
('800001049','SPM','2025','SPM',NULL,'AC'), | |
('800001050','UGRD','2025','AS','ANTH','AC'), | |
('800001053','UGRD','2023','AS','HUM','AC'), | |
('800001058','UGRD','2025','AS','HIST','AC'), | |
('800001059','UGRD','2024','AS','NELC','AC'), | |
('800001061','UGRD','2021','AS','HUM','CM'), | |
('800001063','UGRD','2021','AS','BPHY','CM'), | |
('800001064','SB','2024','BUS',NULL,'AC'), | |
('800001067','UGRD','2025','AS','AAAS','AC'), | |
('800001070','UGRD','2021','AS','BIOS','CM'), | |
('800001073','UGRD','2021','AS','THEA','CM'), | |
('800001074','UGRD','2024','AS','SOCS','AC'), | |
('800001075','UGRD','2024','AS','WRI','AC'), | |
('800001076','UGRD','2022','AS','ENG','AC'), | |
('800001077','UGRD','2025','AS','MEDS','AC'), | |
('800001078','UGRD','2022','AS','MES','AC'), | |
('800001085','UGRD','2025','AS','PHY','AC'), | |
('800001090','UGRD','2022','AS','APCS','AC'), | |
('800001091','UGRD','2024','AS','SLAV','AC'), | |
('800001092','UGRD','2021','AS','STAT','CM'), | |
('800001094','UGRD','2024','AS','EALC','AC'), | |
('800001095','UGRD','2022','AS','AMAT','AC'), | |
('800001096','UGRD','2023','AS','PSCI','AC'), | |
('800001098','UGRD','2022','AS','MUS','AC'), | |
('800001100','UGRD','2024','AS','ENGL','AC'), | |
('800001102','UGRD','2022','AS','ANTH','AC'), | |
('800001104','UGRD','2024','AS','CPLT','AC'), | |
('800001106','UGRD','2023','AS','MCB','AC'), | |
('800001107','UGRD','2021','AS','MCB','CM'), | |
('800001110','GRAD','2021','GRD','GS','CM'), | |
('800001112','UGRD','2021','AS','WRI','CM'), | |
('800001113','UGRD','2021','AS','LING','CM'), | |
('800001114','UGRD','2025','AS','SLAV','AC'), | |
('800001116','UGRD','2022','AS','HUM','AC'), | |
('800001117','UGRD','2023','AS','CPLT','AC'), | |
('800001118','UGRD','2022','AS','GSS','AC'), | |
('800001122','SB','2022','BUS',NULL,'AC'), | |
('800001123','UGRD','2024','AS','ENV','AC'), | |
('800001124','UGRD','2022','AS','BPHY','AC'), | |
('800001127','UGRD','2023','AS','MUS','AC'), | |
('800001128','UGRD','2023','AS','LIT','AC'), | |
('800001129','UGRD','2021','AS','BIOS','CM'), | |
('800001130','UGRD','2024','AS','WRI','AC'), | |
('800001131','NDP',NULL,'AS','MUS','AC'), | |
('800001132','UGRD','2024','AS','BPHY','AC'), | |
('800001133','UGRD','2024','AS','PSYC','AC'), | |
('800001135','UGRD','2021','AS','ART','CM'), | |
('800001138','UGRD','2023','AS','SOCS','AC'), | |
('800001140','UGRD','2021','AS','BIOS','CM'), | |
('800001143','UGRD','2024','AS','ENGL','AC'), | |
('800001144','UGRD','2022','AS','GERM','AC'), | |
('800001148','UGRD','2022','AS','ECOM','AC'), | |
('800001149','UGRD','2021','AS','CELT','CM'), | |
('800001150','UGRD','2021','AS','AAAS','CM'), | |
('800001153','UGRD','2025','AS','BPHY','AC'), | |
('800001154','UGRD','2024','AS','AS','AC'), | |
('800001156','UGRD','2024','AS','MUS','AC'), | |
('800001157','GRAD','2023','GRD','GS','AC'), | |
('800001159','UGRD','2021','AS','MUS','CM'), | |
('800001160','UGRD','2022','AS','ENGL','AC'), | |
('800001164','UGRD','2024','AS','GVMT','AC'), | |
('800001165','UGRD','2021','AS','POLI','CM'), | |
('800001166','UGRD','2023','AS','EALC','AC'), | |
('800001167','UGRD','2023','AS','GERM','AC'), | |
('800001168','UGRD','2021','AS','ASTR','CM'), | |
('800001171','UGRD','2024','AS','MUS','AC'), | |
('800001172','UGRD','2024','AS','HIST','AC'), | |
('800001174','UGRD','2024','AS','LING','AC'), | |
('800001176','UGRD','2021','AS','WRI','CM'), | |
('800001180','UGRD','2025','AS','CS','AC'), | |
('800001181','UGRD','2023','AS','LING','AC'), | |
('800001182','UGRD','2024','AS','PHY','AC'), | |
('800001183','UGRD','2022','AS','ARCH','AC'), | |
('800001184','UGRD','2024','AS','ASTR','AC'), | |
('800001185','UGRD','2022','AS','BPHY','AC'), | |
('800001187','UGRD','2024','AS','HIST','AC'), | |
('800001189','UGRD','2022','AS','CS','AC'), | |
('800001190','UGRD','2025','AS','MES','AC'), | |
('800001192','UGRD','2022','AS','THEA','AC'), | |
('800001195','UGRD','2021','AS','AAAS','CM'), | |
('800001198','UGRD','2023','AS','STAT','AC'), | |
('800001199','UGRD','2025','AS','SOCS','AC'), | |
('800001200','UGRD','2024','AS','CS','XO'), | |
('800001203','UGRD','2025','AS','MEDS','LA'), | |
('800001205','UGRD','2022','AS','AMAT','AC'), | |
('800001206','UGRD','2023','AS','LIT','AC'), | |
('800001207','UGRD','2023','AS','POLI','AC'), | |
('800001208','UGRD','2025','AS','APHY','LA'), | |
('800001209','UGRD','2024','AS','ENG','AC'), | |
('800001211','UGRD','2022','AS','LIT','AC'), | |
('800001213','UGRD','2025','AS','ASTR','AC'), | |
('800001214','UGRD','2024','AS','APHY','AC'), | |
('800001216','UGRD','2024','AS','MAT','AC'), | |
('800001217','UGRD','2022','AS','AS','AC'), | |
('800001220','UGRD','2021','AS','AAAS','CM'), | |
('800001222','UGRD','2023','AS','WRI','AC'), | |
('800001225','UGRD','2022','AS','SLAV','AC'), | |
('800001226','UGRD','2023','AS','WRI','AC'), | |
('800001229','UGRD','2025','AS','GERM','AC'), | |
('800001230','UGRD','2025','AS','HIST','AC'), | |
('800001231','UGRD','2023','AS','HIST','AC'), | |
('800001232','UGRD','2024','AS','CELT','AC'), | |
('800001233','UGRD','2022','AS','SAS','AC'), | |
('800001234','UGRD','2023','AS','GHP','AC'), | |
('800001238','UGRD','2022','AS','EALC','AC'), | |
('800001239','UGRD','2024','AS','SOCS','AC'), | |
('800001240','UGRD','2024','AS','BPHY','AC'), | |
('800001244','UGRD','2024','AS','MEDS','AC'), | |
('800001245','UGRD','2022','AS','ART','XP'), | |
('800001246','UGRD','2021','AS','CS','CM'), | |
('800001248','UGRD','2023','AS','POLI','AC'), | |
('800001250','NDP',NULL,'AS','REL','AC'), | |
('800001251','UGRD','2024','AS','BIOS','AC'), | |
('800001252','UGRD','2024','AS','PSYC','AC'), | |
('800001257','UGRD','2025','AS','REL','AC'), | |
('800001258','UGRD','2023','AS','ARCH','AC'), | |
('800001260','UGRD','2025','AS','ASTR','AC'), | |
('800001262','UGRD','2025','AS','PHY','LA'), | |
('800001270','UGRD','2024','AS','PSCI','AC'), | |
('800001271','UGRD','2022','AS','AMAT','AC'), | |
('800001272','UGRD','2022','AS','SAS','AC'), | |
('800001273','SB','2025','BUS',NULL,'AC'), | |
('800001275','UGRD','2023','AS','ANTH','AC'), | |
('800001276','UGRD','2022','AS','REL','AC'), | |
('800001277','UGRD','2022','AS','SOCS','AC'), | |
('800001279','UGRD','2023','AS','MUS','AC'), | |
('800001280','UGRD','2021','AS','MCB','CM'), | |
('800001282','UGRD','2022','AS','ANTH','AC'), | |
('800001283','ES',NULL,'AS','THEA','ES'), | |
('800001285','UGRD','2023','AS','ASTR','AC'), | |
('800001287','SB','2023','BUS',NULL,'AC'), | |
('800001290','UGRD','2021','AS','ENG','CM'), | |
('800001291','UGRD','2022','AS','AAAS','AC'), | |
('800001296','UGRD','2024','AS','GHP','AC'), | |
('800001303','UGRD','2024','AS','HUM','AC'), | |
('800001304','UGRD','2024','AS','SOCS','AC'), | |
('800001305','UGRD','2024','AS','HUM','AC'), | |
('800001306','UGRD','2021','AS','SLAV','CM'), | |
('800001308','UGRD','2023','AS','GERM','AC'), | |
('800001309','UGRD','2025','AS','APHY','AC'), | |
('800001310','UGRD','2024','AS','ARCH','AC'), | |
('800001311','UGRD','2024','AS','ENG','AC'), | |
('800001313','UGRD','2025','AS','POLI','AC'), | |
('800001314','UGRD','2023','AS','ENGL','AC'), | |
('800001315','UGRD','2024','AS','SAS','AC'), | |
('800001316','UGRD','2024','AS','MCB','AC'), | |
('800001318','UGRD','2024','AS','MEDS','AC'), | |
('800001322','UGRD','2024','AS','LING','AC'), | |
('800001323','UGRD','2023','AS','CHEM','AC'), | |
('800001324','UGRD','2024','AS','ENG','AC'), | |
('800001325','UGRD','2024','AS','AS','AC'), | |
('800001326','UGRD','2025','AS','APCS','AC'), | |
('800001329','UGRD','2023','AS','MCB','AC'), | |
('800001330','GRAD','2021','GRD','GS','CM'), | |
('800001332','UGRD','2023','AS','NELC','AC'), | |
('800001334','UGRD','2025','AS','SOC','AC'), | |
('800001337','UGRD','2024','AS','APCS','AC'), | |
('800001338','SCS','2022','SCS',NULL,'AC'), | |
('800001339','UGRD','2025','AS','EALC','AC'), | |
('800001341','UGRD','2022','AS','POLI','AC'), | |
('800001342','UGRD','2023','AS','GSS','AC'), | |
('800001343','UGRD','2023','AS','NELC','AC'), | |
('800001345','UGRD','2025','AS','CHEM','AC'), | |
('800001348','GRAD','2024','GRD','GS','AC'), | |
('800001350','UGRD','2025','AS','HUM','AC'), | |
('800001351','UGRD','2022','AS','ART','RS'), | |
('800001354','UGRD','2021','AS','AAAS','CM'), | |
('800001358','UGRD','2023','AS','NELC','AC'), | |
('800001360','UGRD','2024','AS','SOC','AC'), | |
('800001363','UGRD','2025','AS','ROML','AC'), | |
('800001367','UGRD','2023','AS','SOC','AC'), | |
('800001369','UGRD','2021','AS','MCB','CM'), | |
('800001370','UGRD','2022','AS','CPLT','AC'), | |
('800001371','UGRD','2023','AS','ECOM','AC'), | |
('800001372','UGRD','2024','AS','HIST','AC'), | |
('800001373','UGRD','2025','AS','CS','AC'), | |
('800001374','UGRD','2025','AS','BIOS','AC'), | |
('800001375','UGRD','2021','AS','SOCS','CM'), | |
('800001377','UGRD','2023','AS','HUM','AC'), | |
('800001378','UGRD','2024','AS','GVMT','AC'), | |
('800001379','UGRD','2021','AS','CS','CM'), | |
('800001381','UGRD','2021','AS','ROML','CM'), | |
('800001383','UGRD','2021','AS','PHIL','CM'), | |
('800001393','UGRD','2025','AS','MUS','AC'), | |
('800001395','UGRD','2021','AS','ANTH','CM'), | |
('800001396','SB','2023','BUS',NULL,'AC'), | |
('800001397','UGRD','2024','AS','BIOL','AC'), | |
('800001399','UGRD','2024','AS','ARCH','AC'), | |
('800001400','UGRD','2021','AS','HUM','CM'), | |
('800001401','UGRD','2023','AS','AS','AC'), | |
('800001402','UGRD','2025','AS','AS','AC'), | |
('800001407','UGRD','2025','AS','CELT','RS'), | |
('800001409','UGRD','2023','AS','PHY','AC'), | |
('800001410','UGRD','2021','AS','SAS','CM'), | |
('800001412','UGRD','2024','AS','LIT','AC'), | |
('800001414','UGRD','2022','AS','MAT','AC'), | |
('800001416','GRAD','2025','GRD','GS','AC'), | |
('800001418','UGRD','2022','AS','PSYC','AC'), | |
('800001420','UGRD','2025','AS','ASTR','AC'), | |
('800001421','UGRD','2025','AS','ART','AC'), | |
('800001422','UGRD','2022','AS','ASTR','AC'), | |
('800001424','GRAD','2022','GRD','GS','AC'), | |
('800001426','UGRD','2025','AS','SOCS','AC'), | |
('800001428','UGRD','2024','AS','AS','AC'), | |
('800001429','UGRD','2025','AS','AMAT','AC'), | |
('800001431','UGRD','2025','AS','BIOL','AC'), | |
('800001432','UGRD','2025','AS','APCS','PM'), | |
('800001433','UGRD','2022','AS','ANTH','AC'), | |
('800001434','UGRD','2024','AS','HIST','AC'), | |
('800001436','SPM','2022','SPM',NULL,'AC'), | |
('800001439','UGRD','2024','AS','GSS','AC'), | |
('800001440','UGRD','2022','AS','LIT','AC'), | |
('800001442','UGRD','2025','AS','ART','AC'), | |
('800001443','UGRD','2023','AS','APCS','AC'), | |
('800001444','UGRD','2021','AS','LIT','CM'), | |
('800001447','UGRD','2025','AS','BIOS','AC'), | |
('800001450','UGRD','2023','AS','SOCS','AC'), | |
('800001451','UGRD','2022','AS','GERM','AC'), | |
('800001454','UGRD','2025','AS','ROML','AC'), | |
('800001462','UGRD','2021','AS','HIST','CM'), | |
('800001463','UGRD','2021','AS','CELT','CM'), | |
('800001464','UGRD','2022','AS','MCB','AC'), | |
('800001466','UGRD','2025','AS','MEDS','AC'), | |
('800001468','NDP',NULL,'AS','MEDS','AC'), | |
('800001469','UGRD','2023','AS','ARCH','AC'), | |
('800001471','UGRD','2022','AS','CELT','AC'), | |
('800001473','UGRD','2022','AS','PHIL','AC'), | |
('800001474','UGRD','2023','AS','ENV','AC'), | |
('800001475','UGRD','2025','AS','GHP','AC'), | |
('800001476','UGRD','2022','AS','CLSS','AC'), | |
('800001477','UGRD','2025','AS','MCB','AC'), | |
('800001478','UGRD','2025','AS','EALC','AC'), | |
('800001479','UGRD','2021','AS','ENV','CM'), | |
('800001480','UGRD','2023','AS','CELT','AC'), | |
('800001481','UGRD','2024','AS','POLI','AC'), | |
('800001484','UGRD','2024','AS','AS','AC'), | |
('800001488','UGRD','2025','AS','EALC','AC'), | |
('800001491','SPM','2023','SPM',NULL,'AC'), | |
('800001492','UGRD','2025','AS','PHIL','PM'), | |
('800001496','SPM','2023','SPM',NULL,'AC'), | |
('800001499','UGRD','2022','AS','LING','AC'), | |
('800001500','UGRD','2021','AS','CELT','CM'), | |
('800001501','UGRD','2024','AS','AMAT','AC'), | |
('800001502','UGRD','2025','AS','SOC','PM'), | |
('800001503','UGRD','2023','AS','MAT','AC'), | |
('800001504','UGRD','2022','AS','THEA','AC'), | |
('800001505','NDP',NULL,'AS','SOCS','AC'), | |
('800001506','UGRD','2021','AS','ENGL','CM'), | |
('800001507','GRAD','2024','GRD','GS','AC'), | |
('800001508','UGRD','2021','AS','AMAT','CM'), | |
('800001509','UGRD','2024','AS','CHEM','AC'), | |
('800001511','UGRD','2021','AS','SOCS','CM'), | |
('800001512','UGRD','2025','AS','EALC','LA'), | |
('800001513','SB','2023','BUS',NULL,'AC'), | |
('800001518','UGRD','2024','AS','BIOS','AC'), | |
('800001519','UGRD','2023','AS','CPLT','AC'), | |
('800001520','GRAD','2025','GRD','GS','AC'), | |
('800001523','UGRD','2021','AS','ROML','CM'), | |
('800001524','UGRD','2025','AS','ASTR','AC'), | |
('800001526','UGRD','2022','AS','POLI','AC'), | |
('800001528','UGRD','2022','AS','STAT','AC'), | |
('800001529','UGRD','2024','AS','PHIL','AC'), | |
('800001531','UGRD','2025','AS','PHIL','AC'), | |
('800001532','UGRD','2024','AS','AAAS','AC'), | |
('800001536','UGRD','2024','AS','POLI','AC'), | |
('800001537','UGRD','2025','AS','SOCS','AC'), | |
('800001538','SCS','2022','SCS',NULL,'AC'), | |
('800001540','UGRD','2023','AS','CELT','AC'), | |
('800001541','UGRD','2021','AS','ART','CM'), | |
('800001542','UGRD','2021','AS','SLAV','CM'), | |
('800001545','UGRD','2025','AS','HUM','AC'), | |
('800001546','UGRD','2023','AS','SAS','AC'), | |
('800001548','UGRD','2022','AS','APHY','AC'), | |
('800001550','UGRD','2022','AS','LING','AC'), | |
('800001552','UGRD','2023','AS','SOC','AC'), | |
('800001554','UGRD','2024','AS','REL','AC'), | |
('800001556','UGRD','2021','AS','CHEM','CM'), | |
('800001559','UGRD','2022','AS','GHP','AC'), | |
('800001561','UGRD','2025','AS','NELC','AC'), | |
('800001562','UGRD','2022','AS','ASTR','AC'), | |
('800001564','ES',NULL,'AS','MES','ES'), | |
('800001566','UGRD','2025','AS','LIT','AC'), | |
('800001569','SPM','2021','SPM',NULL,'CM'), | |
('800001571','GNDP',NULL,'GRD','GS','AC'), | |
('800001572','UGRD','2025','AS','AS','AC'), | |
('800001573','UGRD','2023','AS','CPLT','AC'), | |
('800001574','SCS','2023','SCS',NULL,'AC'), | |
('800001579','GRAD','2021','GRD','GS','CM'), | |
('800001581','UGRD','2022','AS','CHEM','AC'), | |
('800001582','UGRD','2021','AS','MES','CM'), | |
('800001583','UGRD','2025','AS','ECOM','AC'), | |
('800001584','UGRD','2022','AS','BIOL','AC'), | |
('800001585','ES',NULL,'AS','AMAT','ES'), | |
('800001586','SCS','2022','SCS',NULL,'AC'), | |
('800001588','UGRD','2024','AS','PSYC','AC'), | |
('800001589','UGRD','2024','AS','GVMT','XP'), | |
('800001591','UGRD','2025','AS','AMAT','AC'), | |
('800001592','UGRD','2024','AS','BIOL','AC'), | |
('800001593','SCS','2021','SCS',NULL,'CM'), | |
('800001594','UGRD','2021','AS','ENGL','CM'), | |
('800001596','NDP',NULL,'AS','GHP','AC'), | |
('800001599','NDP',NULL,'AS','BIOS','AC'), | |
('800001601','UGRD','2021','AS','GERM','CM'), | |
('800001605','UGRD','2023','AS','APHY','AC'), | |
('800001606','UGRD','2025','AS','GERM','AC'), | |
('800001607','UGRD','2021','AS','STAT','CM'), | |
('800001608','UGRD','2021','AS','PHY','CM'), | |
('800001609','UGRD','2022','AS','STAT','AC'), | |
('800001610','UGRD','2022','AS','PHIL','AC'), | |
('800001611','UGRD','2023','AS','AMAT','AC'), | |
('800001612','UGRD','2023','AS','GVMT','AC'), | |
('800001613','UGRD','2023','AS','MES','AC'), | |
('800001614','UGRD','2023','AS','ECOM','AC'), | |
('800001616','NDP',NULL,'AS','REL','AC'), | |
('800001617','UGRD','2021','AS','ARCH','CM'), | |
('800001619','UGRD','2025','AS','ROML','LA'), | |
('800001620','UGRD','2021','AS','BIOS','CM'), | |
('800001621','UGRD','2021','AS','MCB','CM'), | |
('800001622','UGRD','2025','AS','LIT','AC'), | |
('800001623','UGRD','2022','AS','BPHY','AC'), | |
('800001625','UGRD','2022','AS','CLSS','AC'), | |
('800001626','UGRD','2023','AS','AS','AC'), | |
('800001630','UGRD','2025','AS','SAS','AC'), | |
('800001631','UGRD','2024','AS','GHP','AC'), | |
('800001633','UGRD','2024','AS','SOC','AC'), | |
('800001635','UGRD','2022','AS','PHY','AC'), | |
('800001637','UGRD','2021','AS','CELT','CM'), | |
('800001639','UGRD','2022','AS','ARCH','AC'), | |
('800001640','UGRD','2025','AS','ENG','AC'), | |
('800001641','UGRD','2025','AS','CHEM','AC'), | |
('800001643','UGRD','2023','AS','ENV','AC'), | |
('800001644','UGRD','2025','AS','MEDS','AC'), | |
('800001645','UGRD','2023','AS','BIOS','AC'), | |
('800001646','UGRD','2021','AS','AS','CM'), | |
('800001647','UGRD','2021','AS','CELT','CM'), | |
('800001648','UGRD','2022','AS','GSS','AC'), | |
('800001652','UGRD','2024','AS','BIOL','XO'), | |
('800001653','UGRD','2023','AS','MES','AC'), | |
('800001657','UGRD','2024','AS','GSS','AC'), | |
('800001659','UGRD','2025','AS','CS','AC'), | |
('800001661','ES',NULL,'AS','EALC','ES'), | |
('800001662','UGRD','2025','AS','SLAV','AC'), | |
('800001665','UGRD','2023','AS','NELC','AC'), | |
('800001667','SCS','2025','SCS',NULL,'AC'), | |
('800001670','UGRD','2025','AS','CELT','AC'), | |
('800001671','UGRD','2021','AS','GSS','CM'), | |
('800001673','UGRD','2022','AS','ENV','XO'), | |
('800001674','UGRD','2025','AS','MEDS','AC'), | |
('800001675','UGRD','2025','AS','CLSS','AC'), | |
('800001677','UGRD','2021','AS','SLAV','CM'), | |
('800001678','UGRD','2022','AS','CELT','AC'), | |
('800001679','UGRD','2021','AS','CELT','CM'), | |
('800001680','UGRD','2021','AS','BIOL','CM'), | |
('800001683','UGRD','2025','AS','MUS','AC'), | |
('800001687','SCS','2024','SCS',NULL,'AC'), | |
('800001689','UGRD','2023','AS','AAAS','AC'), | |
('800001691','UGRD','2021','AS','AMAT','CM'), | |
('800001692','UGRD','2025','AS','HUM','AC'), | |
('800001694','UGRD','2023','AS','MES','AC'), | |
('800001695','UGRD','2022','AS','APCS','AC'), | |
('800001696','UGRD','2024','AS','BPHY','AC'), | |
('800001697','UGRD','2025','AS','ART','AC'), | |
('800001698','UGRD','2025','AS','HIST','AC'), | |
('800001699','NDP',NULL,'AS','APCS','AC'), | |
('800001703','UGRD','2021','AS','SOC','CM'), | |
('800001704','UGRD','2024','AS','AAAS','AC'), | |
('800001705','UGRD','2023','AS','LING','AC'), | |
('800001706','NDP',NULL,'AS','GVMT','AC'), | |
('800001707','UGRD','2024','AS','MEDS','AC'), | |
('800001710','UGRD','2023','AS','CHEM','AC'), | |
('800001711','UGRD','2021','AS','WRI','CM'), | |
('800001712','ES',NULL,'AS','MES','ES'), | |
('800001713','UGRD','2025','AS','NELC','AC'), | |
('800001715','SB','2025','BUS',NULL,'AC'), | |
('800001716','ES',NULL,'AS','ASTR','ES'), | |
('800001717','UGRD','2021','AS','ART','CM'), | |
('800001718','UGRD','2025','AS','PHIL','AC'), | |
('800001719','UGRD','2021','AS','MAT','CM'), | |
('800001720','UGRD','2021','AS','APHY','CM'), | |
('800001721','UGRD','2023','AS','BIOL','AC'), | |
('800001723','UGRD','2025','AS','APHY','AC'), | |
('800001724','UGRD','2024','AS','SAS','AC'), | |
('800001725','UGRD','2022','AS','LIT','AC'), | |
('800001729','UGRD','2023','AS','NELC','AC'), | |
('800001730','UGRD','2023','AS','CLSS','AC'), | |
('800001732','UGRD','2025','AS','BIOS','AC'), | |
('800001733','GRAD','2022','GRD','GS','AC'), | |
('800001735','UGRD','2025','AS','AMAT','AC'), | |
('800001738','UGRD','2024','AS','CS','AC'), | |
('800001740','SB','2024','BUS',NULL,'AC'), | |
('800001741','UGRD','2023','AS','AAAS','AC'), | |
('800001743','UGRD','2025','AS','ROML','LA'), | |
('800001744','UGRD','2025','AS','ANTH','LA'), | |
('800001745','UGRD','2025','AS','PSYC','AC'), | |
('800001747','UGRD','2021','AS','EALC','CM'), | |
('800001748','UGRD','2025','AS','SOCS','AC'), | |
('800001750','UGRD','2023','AS','HUM','AC'), | |
('800001751','UGRD','2025','AS','SLAV','AC'), | |
('800001754','UGRD','2025','AS','ECOM','AC'), | |
('800001756','SCS','2024','SCS',NULL,'AC'), | |
('800001759','UGRD','2025','AS','BIOL','AC'), | |
('800001761','UGRD','2025','AS','MUS','AC'), | |
('800001763','UGRD','2021','AS','BIOL','CM'), | |
('800001765','UGRD','2022','AS','ANTH','AC'), | |
('800001766','UGRD','2021','AS','ENGL','CM'), | |
('800001767','UGRD','2025','AS','THEA','AC'), | |
('800001768','UGRD','2025','AS','HUM','AC'), | |
('800001769','UGRD','2024','AS','ARCH','AC'), | |
('800001771','UGRD','2023','AS','BIOL','AC'), | |
('800001773','UGRD','2025','AS','HIST','AC'), | |
('800001774','UGRD','2024','AS','MCB','AC'), | |
('800001777','UGRD','2022','AS','AMAT','AC'), | |
('800001779','UGRD','2022','AS','LING','AC'), | |
('800001782','UGRD','2023','AS','ENG','AC'), | |
('800001783','UGRD','2025','AS','SLAV','AC'), | |
('800001785','UGRD','2022','AS','PSCI','AC'), | |
('800001787','UGRD','2023','AS','MCB','AC'), | |
('800001789','ES',NULL,'AS','MAT','ES'), | |
('800001791','UGRD','2022','AS','REL','AC'), | |
('800001792','UGRD','2025','AS','APHY','AC'), | |
('800001793','UGRD','2024','AS','REL','AC'), | |
('800001794','UGRD','2021','AS','SLAV','CM'), | |
('800001795','GRAD','2024','GRD','GS','AC'), | |
('800001796','UGRD','2025','AS','ENGL','AC'), | |
('800001797','NDP',NULL,'AS','CLSS','AC'), | |
('800001798','UGRD','2022','AS','PSYC','AC'), | |
('800001799','UGRD','2022','AS','EALC','AC'), | |
('800001800','UGRD','2023','AS','MAT','AC'), | |
('800001801','UGRD','2024','AS','THEA','AC'), | |
('800001802','UGRD','2022','AS','APHY','AC'), | |
('800001805','UGRD','2021','AS','MES','CM'), | |
('800001809','UGRD','2021','AS','BPHY','CM'), | |
('800001811','NDP',NULL,'AS','CLSS','AC'), | |
('800001813','UGRD','2022','AS','PHY','AC'), | |
('800001814','UGRD','2023','AS','CHEM','AC'), | |
('800001815','UGRD','2023','AS','CHEM','AC'), | |
('800001816','UGRD','2025','AS','SAS','AC'), | |
('800001817','UGRD','2022','AS','PHY','AC'), | |
('800001818','UGRD','2021','AS','SOC','CM'), | |
('800001819','UGRD','2022','AS','APCS','AC'), | |
('800001820','UGRD','2025','AS','EALC','AC'), | |
('800001824','NDP',NULL,'AS','SOCS','AC'), | |
('800001831','UGRD','2022','AS','MUS','AC'), | |
('800001832','UGRD','2025','AS','ART','AC'), | |
('800001835','UGRD','2024','AS','LING','AC'), | |
('800001837','UGRD','2024','AS','LING','AC'), | |
('800001840','UGRD','2025','AS','APCS','AC'), | |
('800001841','UGRD','2024','AS','ART','AC'), | |
('800001844','UGRD','2021','AS','MES','CM'), | |
('800001846','UGRD','2025','AS','POLI','AC'), | |
('800001849','UGRD','2023','AS','LING','AC'), | |
('800001850','UGRD','2022','AS','CPLT','AC'), | |
('800001852','GRAD','2024','GRD','GS','AC'), | |
('800001853','UGRD','2025','AS','CS','XO'), | |
('800001854','UGRD','2025','AS','ENG','PM'), | |
('800001857','UGRD','2024','AS','CS','AC'), | |
('800001858','SB','2024','BUS',NULL,'AC'), | |
('800001859','UGRD','2023','AS','MES','AC'), | |
('800001860','GRAD','2024','GRD','GS','AC'), | |
('800001861','UGRD','2022','AS','SOCS','AC'), | |
('800001865','UGRD','2022','AS','PHIL','AC'), | |
('800001866','UGRD','2022','AS','GVMT','AC'), | |
('800001869','UGRD','2025','AS','ENV','PM'), | |
('800001870','UGRD','2021','AS','MUS','CM'), | |
('800001872','UGRD','2023','AS','HUM','AC'), | |
('800001876','UGRD','2022','AS','MCB','AC'), | |
('800001877','UGRD','2022','AS','PSCI','AC'), | |
('800001880','UGRD','2023','AS','GERM','AC'), | |
('800001881','UGRD','2023','AS','LING','AC'), | |
('800001882','UGRD','2021','AS','GVMT','CM'), | |
('800001884','UGRD','2021','AS','ANTH','CM'), | |
('800001891','UGRD','2025','AS','MES','AC'), | |
('800001892','UGRD','2021','AS','THEA','CM'), | |
('800001895','UGRD','2025','AS','ENG','AC'), | |
('800001896','UGRD','2025','AS','GHP','AC'), | |
('800001898','UGRD','2024','AS','PHY','AC'), | |
('800001899','UGRD','2022','AS','GERM','AC'), | |
('800001900','UGRD','2022','AS','CPLT','AC'), | |
('800001901','UGRD','2024','AS','CHEM','AC'), | |
('800001903','UGRD','2023','AS','SOC','AC'), | |
('800001905','UGRD','2025','AS','ASTR','AC'), | |
('800001907','UGRD','2021','AS','WRI','CM'), | |
('800001910','UGRD','2025','AS','ARCH','AC'), | |
('800001911','UGRD','2025','AS','AMAT','XP'), | |
('800001912','UGRD','2025','AS','AS','LA'), | |
('800001914','UGRD','2022','AS','HIST','AC'), | |
('800001915','UGRD','2022','AS','WRI','AC'), | |
('800001916','UGRD','2023','AS','ENV','AC'), | |
('800001917','UGRD','2024','AS','MES','AC'), | |
('800001918','UGRD','2025','AS','LIT','AC'), | |
('800001919','UGRD','2025','AS','MUS','AC'), | |
('800001920','UGRD','2025','AS','CELT','AC'), | |
('800001921','UGRD','2021','AS','APHY','CM'), | |
('800001923','UGRD','2021','AS','MAT','CM'), | |
('800001924','UGRD','2021','AS','LING','CM'), | |
('800001926','GRAD','2021','GRD','GS','CM'), | |
('800001927','UGRD','2025','AS','GSS','AC'), | |
('800001928','UGRD','2021','AS','REL','CM'), | |
('800001929','UGRD','2021','AS','LING','CM'), | |
('800001932','UGRD','2025','AS','THEA','AC'), | |
('800001933','GRAD','2025','GRD','GS','AC'), | |
('800001937','UGRD','2025','AS','GVMT','AC'), | |
('800001938','ES',NULL,'AS','APHY','ES'), | |
('800001940','UGRD','2022','AS','ASTR','AC'), | |
('800001941','UGRD','2023','AS','ARCH','AC'), | |
('800001944','UGRD','2021','AS','MUS','CM'), | |
('800001949','UGRD','2021','AS','CELT','CM'), | |
('800001951','UGRD','2023','AS','CPLT','AC'), | |
('800001952','UGRD','2023','AS','ARCH','AC'), | |
('800001954','UGRD','2021','AS','PHY','CM'), | |
('800001955','UGRD','2024','AS','ARCH','AC'), | |
('800001956','UGRD','2024','AS','ANTH','AC'), | |
('800001957','UGRD','2025','AS','ROML','LA'), | |
('800001958','UGRD','2023','AS','PHY','AC'), | |
('800001960','UGRD','2025','AS','ARCH','AC'), | |
('800001961','UGRD','2023','AS','SLAV','AC'), | |
('800001965','UGRD','2025','AS','GSS','LA'), | |
('800001967','UGRD','2024','AS','AAAS','AC'), | |
('800001968','UGRD','2025','AS','STAT','AC'), | |
('800001969','UGRD','2025','AS','HIST','AC'), | |
('800001974','UGRD','2024','AS','PHIL','AC'), | |
('800001976','UGRD','2022','AS','BPHY','AC'), | |
('800001977','UGRD','2023','AS','BIOS','AC'), | |
('800001981','UGRD','2025','AS','LIT','AC'), | |
('800001982','UGRD','2021','AS','ANTH','CM'), | |
('800001983','UGRD','2022','AS','PHY','AC'), | |
('800001984','UGRD','2023','AS','CLSS','AC'), | |
('800001986','UGRD','2025','AS','CPLT','AC'), | |
('800001987','UGRD','2022','AS','SLAV','AC'), | |
('800001988','SCS','2025','SCS',NULL,'AC'), | |
('800001989','UGRD','2024','AS','ART','AC'), | |
('800001990','UGRD','2021','AS','ARCH','CM'), | |
('800001991','UGRD','2023','AS','NELC','AC'), | |
('800001992','UGRD','2024','AS','MAT','AC'), | |
('800001993','UGRD','2022','AS','LIT','AC'), | |
('800001994','UGRD','2024','AS','WRI','AC'), | |
('800001995','UGRD','2025','AS','STAT','AC'), | |
('800001996','SPM','2024','SPM',NULL,'AC'), | |
('800001997','UGRD','2022','AS','AAAS','AC'), | |
('800001998','UGRD','2021','AS','ANTH','CM'), | |
('800002001','UGRD','2022','AS','ECOM','AC'), | |
('800002003','UGRD','2022','AS','EALC','AC'), | |
('800002004','UGRD','2022','AS','CS','AC'), | |
('800002005','UGRD','2022','AS','ENG','AC'), | |
('800002006','UGRD','2023','AS','APHY','AC'), | |
('800002007','UGRD','2021','AS','MCB','CM'), | |
('800002008','UGRD','2021','AS','PSYC','CM'), | |
('800002010','SB','2022','BUS',NULL,'AC'), | |
('800002011','UGRD','2022','AS','PSYC','AC'), | |
('800002014','UGRD','2021','AS','PHIL','CM'), | |
('800002017','NDP',NULL,'AS','BIOL','AC'), | |
('800002018','UGRD','2022','AS','HIST','AC'), | |
('800002020','UGRD','2023','AS','STAT','AC'), | |
('800002024','ES',NULL,'AS','GERM','ES'), | |
('800002025','UGRD','2025','AS','BPHY','AC'), | |
('800002026','UGRD','2022','AS','GSS','AC'), | |
('800002027','UGRD','2024','AS','CPLT','AC'), | |
('800002028','UGRD','2021','AS','APHY','CM'), | |
('800002029','UGRD','2023','AS','AS','AC'), | |
('800002030','UGRD','2024','AS','AS','AC'), | |
('800002031','UGRD','2023','AS','MAT','XO'), | |
('800002032','UGRD','2025','AS','BIOS','LA'), | |
('800002033','UGRD','2023','AS','LING','AC'), | |
('800002034','UGRD','2025','AS','PSYC','AC'), | |
('800002035','UGRD','2024','AS','WRI','AC'), | |
('800002042','UGRD','2024','AS','EALC','AC'), | |
('800002044','UGRD','2023','AS','PSCI','AC'), | |
('800002045','UGRD','2021','AS','AAAS','CM'), | |
('800002050','UGRD','2022','AS','THEA','AC'), | |
('800002052','SCS','2021','SCS',NULL,'CM'), | |
('800002053','UGRD','2021','AS','PSCI','CM'), | |
('800002054','UGRD','2025','AS','PHIL','AC'), | |
('800002056','UGRD','2023','AS','ENG','AC'), | |
('800002060','UGRD','2024','AS','ROML','AC'), | |
('800002062','UGRD','2024','AS','SOCS','AC'), | |
('800002064','UGRD','2024','AS','ROML','AC'), | |
('800002065','UGRD','2021','AS','EALC','CM'), | |
('800002068','UGRD','2021','AS','MCB','CM'), | |
('800002070','UGRD','2021','AS','HUM','CM'), | |
('800002071','UGRD','2021','AS','APHY','CM'), | |
('800002072','GRAD','2025','GRD','GS','AC'), | |
('800002074','UGRD','2024','AS','PSYC','AC'), | |
('800002077','UGRD','2025','AS','SOC','AC'), | |
('800002078','UGRD','2021','AS','APCS','CM'), | |
('800002080','UGRD','2022','AS','SAS','AC'), | |
('800002081','GRAD','2025','GRD','GS','AC'), | |
('800002083','SPM','2021','SPM',NULL,'CM'), | |
('800002086','UGRD','2021','AS','MEDS','CM'), | |
('800002087','GRAD','2025','GRD','GS','AC'), | |
('800002089','UGRD','2025','AS','PHIL','AC'), | |
('800002090','UGRD','2024','AS','MEDS','AC'), | |
('800002091','UGRD','2022','AS','ECOM','AC'), | |
('800002095','UGRD','2025','AS','CS','AC'), | |
('800002097','UGRD','2021','AS','GSS','CM'), | |
('800002101','UGRD','2023','AS','SOC','AC'), | |
('800002102','UGRD','2023','AS','SOC','AC'), | |
('800002103','UGRD','2023','AS','BPHY','AC'), | |
('800002105','UGRD','2021','AS','SOC','CM'), | |
('800002107','UGRD','2025','AS','BPHY','AC'), | |
('800002111','UGRD','2024','AS','HIST','AC'), | |
('800002112','UGRD','2024','AS','GSS','AC'), | |
('800002113','UGRD','2024','AS','ANTH','AC'), | |
('800002115','UGRD','2023','AS','SLAV','AC'), | |
('800002117','UGRD','2024','AS','CLSS','AC'), | |
('800002119','UGRD','2022','AS','ENGL','AC'), | |
('800002120','UGRD','2023','AS','ENV','AC'), | |
('800002123','UGRD','2023','AS','POLI','AC'), | |
('800002124','UGRD','2024','AS','ARCH','AC'), | |
('800002133','UGRD','2022','AS','SLAV','AC'), | |
('800002134','UGRD','2024','AS','CPLT','AC'), | |
('800002135','UGRD','2022','AS','SOCS','AC'), | |
('800002136','UGRD','2021','AS','THEA','CM'), | |
('800002137','UGRD','2023','AS','MES','AC'), | |
('800002138','SPM','2021','SPM',NULL,'CM'), | |
('800002140','UGRD','2025','AS','BIOS','AC'), | |
('800002143','UGRD','2023','AS','CLSS','AC'), | |
('800002145','ES',NULL,'AS','MUS','ES'), | |
('800002146','UGRD','2021','AS','MES','CM'), | |
('800002148','UGRD','2024','AS','PSYC','AC'), | |
('800002149','NDP',NULL,'AS','PSYC','AC'), | |
('800002151','UGRD','2021','AS','SAS','CM'), | |
('800002152','UGRD','2023','AS','PHY','AC'), | |
('800002153','UGRD','2025','AS','ANTH','LA'), | |
('800002154','UGRD','2021','AS','ECOM','CM'), | |
('800002155','UGRD','2025','AS','GSS','AC'), | |
('800002159','UGRD','2024','AS','POLI','AC'), | |
('800002160','UGRD','2023','AS','CLSS','AC'), | |
('800002161','UGRD','2022','AS','PSCI','AC'), | |
('800002162','UGRD','2025','AS','THEA','AC'), | |
('800002163','UGRD','2023','AS','POLI','AC'), | |
('800002165','UGRD','2025','AS','GERM','AC'), | |
('800002166','UGRD','2025','AS','MES','AC'), | |
('800002167','UGRD','2021','AS','ARCH','CM'), | |
('800002169','UGRD','2025','AS','GHP','AC'), | |
('800002172','UGRD','2023','AS','CPLT','AC'), | |
('800002174','UGRD','2025','AS','BIOS','AC'), | |
('800002175','UGRD','2023','AS','ANTH','AC'), | |
('800002177','UGRD','2021','AS','ROML','CM'), | |
('800002178','UGRD','2025','AS','SOC','AC'), | |
('800002179','UGRD','2021','AS','ENGL','CM'), | |
('800002182','UGRD','2025','AS','APCS','AC'), | |
('800002183','UGRD','2021','AS','NELC','CM'), | |
('800002184','UGRD','2024','AS','GSS','AC'), | |
('800002185','UGRD','2025','AS','ENGL','AC'), | |
('800002186','UGRD','2021','AS','STAT','CM'), | |
('800002187','SPM','2022','SPM',NULL,'AC'), | |
('800002195','UGRD','2021','AS','LIT','CM'), | |
('800002196','UGRD','2024','AS','ARCH','AC'), | |
('800002197','UGRD','2022','AS','SLAV','AC'), | |
('800002198','UGRD','2021','AS','ASTR','CM'), | |
('800002199','SPM','2021','SPM',NULL,'CM'), | |
('800002200','UGRD','2024','AS','CPLT','AC'), | |
('800002201','UGRD','2025','AS','MCB','AC'), | |
('800002202','UGRD','2024','AS','EALC','AC'), | |
('800002203','UGRD','2021','AS','ROML','CM'), | |
('800002204','UGRD','2025','AS','ROML','AC'), | |
('800002205','UGRD','2025','AS','NELC','AC'), | |
('800002207','UGRD','2022','AS','STAT','AC'), | |
('800002208','UGRD','2023','AS','SLAV','XP'), | |
('800002209','UGRD','2023','AS','APCS','AC'), | |
('800002211','UGRD','2025','AS','ANTH','AC'), | |
('800002213','UGRD','2021','AS','CS','CM'), | |
('800002214','UGRD','2023','AS','GVMT','AC'), | |
('800002215','UGRD','2021','AS','THEA','CM'), | |
('800002217','UGRD','2025','AS','PSCI','AC'), | |
('800002219','UGRD','2025','AS','PHY','AC'), | |
('800002221','UGRD','2025','AS','CELT','AC'), | |
('800002222','UGRD','2021','AS','MUS','CM'), | |
('800002224','UGRD','2023','AS','WRI','AC'), | |
('800002225','UGRD','2021','AS','LING','CM'), | |
('800002226','UGRD','2021','AS','ENGL','CM'), | |
('800002227','UGRD','2024','AS','ASTR','XO'), | |
('800002228','UGRD','2021','AS','ECOM','CM'), | |
('800002229','UGRD','2022','AS','BPHY','AC'), | |
('800002233','UGRD','2023','AS','LIT','AC'), | |
('800002239','UGRD','2023','AS','GSS','AC'), | |
('800002240','UGRD','2023','AS','WRI','AC'), | |
('800002241','UGRD','2023','AS','SLAV','AC'), | |
('800002242','UGRD','2024','AS','ANTH','AC'), | |
('800002243','UGRD','2024','AS','AS','AC'), | |
('800002244','UGRD','2021','AS','ENV','CM'), | |
('800002246','UGRD','2023','AS','MUS','AC'), | |
('800002248','UGRD','2025','AS','MES','AC'), | |
('800002249','UGRD','2022','AS','LIT','AC'), | |
('800002251','UGRD','2021','AS','ARCH','CM'), | |
('800002253','UGRD','2023','AS','MUS','AC'), | |
('800002255','UGRD','2022','AS','SAS','AC'), | |
('800002257','UGRD','2022','AS','ARCH','AC'), | |
('800002258','SPM','2023','SPM',NULL,'AC'), | |
('800002262','UGRD','2022','AS','ASTR','AC'), | |
('800002263','UGRD','2021','AS','ARCH','CM'), | |
('800002264','UGRD','2025','AS','NELC','AC'), | |
('800002266','UGRD','2022','AS','PHIL','AC'), | |
('800002267','UGRD','2023','AS','ECOM','AC'), | |
('800002268','UGRD','2025','AS','WRI','AC'), | |
('800002269','UGRD','2023','AS','PHIL','AC'), | |
('800002270','UGRD','2024','AS','ANTH','AC'), | |
('800002274','UGRD','2024','AS','CLSS','AC'), | |
('800002276','UGRD','2024','AS','AAAS','AC'), | |
('800002277','UGRD','2024','AS','MAT','AC'), | |
('800002278','SCS','2021','SCS',NULL,'CM'), | |
('800002281','UGRD','2021','AS','ECOM','CM'), | |
('800002284','UGRD','2024','AS','LING','AC'), | |
('800002292','UGRD','2022','AS','ANTH','AC'), | |
('800002293','UGRD','2021','AS','POLI','CM'), | |
('800002297','UGRD','2023','AS','STAT','AC'), | |
('800002299','UGRD','2022','AS','PSYC','AC'), | |
('800002300','UGRD','2022','AS','EALC','AC'), | |
('800002301','UGRD','2022','AS','AAAS','AC'), | |
('800002302','UGRD','2021','AS','MEDS','CM'), | |
('800002304','UGRD','2024','AS','ANTH','AC'), | |
('800002305','UGRD','2023','AS','NELC','AC'), | |
('800002306','UGRD','2021','AS','MUS','CM'), | |
('800002307','NDP',NULL,'AS','MCB','AC'), | |
('800002309','UGRD','2025','AS','BIOS','LA'), | |
('800002310','UGRD','2025','AS','APCS','LA'), | |
('800002311','UGRD','2025','AS','AMAT','AC'), | |
('800002312','SB','2022','BUS',NULL,'AC'), | |
('800002313','UGRD','2021','AS','ARCH','CM'), | |
('800002314','UGRD','2023','AS','SAS','AC'), | |
('800002315','UGRD','2022','AS','ECOM','AC'), | |
('800002316','UGRD','2024','AS','PSCI','RS'), | |
('800002318','UGRD','2022','AS','APHY','AC'), | |
('800002320','UGRD','2024','AS','BIOS','AC'), | |
('800002322','UGRD','2025','AS','MUS','AC'), | |
('800002324','GRAD','2023','GRD','GS','AC'), | |
('800002326','UGRD','2025','AS','SAS','AC'), | |
('800002328','UGRD','2023','AS','ENV','AC'), | |
('800002330','UGRD','2021','AS','BIOL','CM'), | |
('800002331','UGRD','2021','AS','SOCS','CM'), | |
('800002337','UGRD','2021','AS','BIOS','CM'), | |
('800002338','UGRD','2024','AS','THEA','AC'), | |
('800002340','UGRD','2023','AS','ROML','AC'), | |
('800002341','UGRD','2023','AS','BPHY','AC'), | |
('800002342','UGRD','2021','AS','PSCI','CM'), | |
('800002343','UGRD','2024','AS','MCB','AC'), | |
('800002346','UGRD','2022','AS','STAT','AC'), | |
('800002351','UGRD','2024','AS','AMAT','AC'), | |
('800002352','UGRD','2022','AS','LING','AC'), | |
('800002353','UGRD','2021','AS','CLSS','CM'), | |
('800002354','UGRD','2021','AS','STAT','CM'), | |
('800002355','UGRD','2023','AS','ENV','AC'), | |
('800002357','SPM','2025','SPM',NULL,'AC'), | |
('800002358','UGRD','2023','AS','AS','AC'), | |
('800002359','GRAD','2023','GRD','GS','AC'), | |
('800002360','UGRD','2024','AS','WRI','AC'), | |
('800002361','UGRD','2022','AS','MAT','AC'), | |
('800002363','UGRD','2024','AS','NELC','XP'), | |
('800002364','UGRD','2023','AS','MES','AC'), | |
('800002365','UGRD','2023','AS','MAT','AC'), | |
('800002369','UGRD','2022','AS','CS','AC'), | |
('800002370','UGRD','2022','AS','CELT','AC'), | |
('800002371','UGRD','2022','AS','NELC','AC'), | |
('800002373','UGRD','2025','AS','STAT','AC'), | |
('800002375','UGRD','2025','AS','REL','AC'), | |
('800002378','UGRD','2024','AS','MAT','AC'), | |
('800002379','ES',NULL,'AS','SAS','ES'), | |
('800002382','UGRD','2021','AS','ASTR','CM'), | |
('800002384','UGRD','2021','AS','MES','CM'), | |
('800002387','SPM','2022','SPM',NULL,'AC'), | |
('800002388','UGRD','2021','AS','ASTR','CM'), | |
('800002393','UGRD','2022','AS','SOCS','AC'), | |
('800002395','UGRD','2025','AS','ENV','AC'), | |
('800002397','UGRD','2022','AS','MUS','AC'), | |
('800002399','UGRD','2025','AS','WRI','LA'), | |
('800002400','UGRD','2021','AS','GVMT','CM'), | |
('800002401','UGRD','2021','AS','HUM','CM'), | |
('800002403','UGRD','2023','AS','PHIL','AC'), | |
('800002404','UGRD','2023','AS','GHP','AC'), | |
('800002405','UGRD','2021','AS','THEA','CM'), | |
('800002406','UGRD','2023','AS','PSYC','AC'), | |
('800002408','UGRD','2024','AS','ASTR','AC'), | |
('800002410','UGRD','2025','AS','ART','PM'), | |
('800002412','UGRD','2022','AS','BIOS','AC'), | |
('800002414','UGRD','2024','AS','EALC','AC'), | |
('800002416','UGRD','2024','AS','AS','AC'), | |
('800002417','UGRD','2025','AS','GSS','AC'), | |
('800002418','UGRD','2025','AS','PHIL','AC'), | |
('800002420','UGRD','2022','AS','CHEM','AC'), | |
('800002422','UGRD','2025','AS','LING','AC'), | |
('800002425','UGRD','2024','AS','AS','AC'), | |
('800002426','UGRD','2023','AS','ARCH','XO'), | |
('800002427','UGRD','2025','AS','STAT','AC'), | |
('800002428','UGRD','2021','AS','MES','CM'), | |
('800002429','UGRD','2023','AS','MAT','AC'), | |
('800002431','UGRD','2025','AS','GSS','XO'), | |
('800002433','UGRD','2021','AS','BIOL','CM'), | |
('800002434','UGRD','2024','AS','BPHY','AC'), | |
('800002435','UGRD','2022','AS','APCS','AC'), | |
('800002438','UGRD','2022','AS','THEA','AC'), | |
('800002442','UGRD','2022','AS','ENV','AC'), | |
('800002443','UGRD','2022','AS','ASTR','AC'), | |
('800002444','GRAD','2023','GRD','GS','AC'), | |
('800002445','UGRD','2021','AS','EALC','CM'), | |
('800002447','UGRD','2023','AS','ROML','AC'), | |
('800002449','UGRD','2023','AS','GVMT','AC'), | |
('800002450','UGRD','2025','AS','AAAS','AC'), | |
('800002451','UGRD','2025','AS','CELT','AC'), | |
('800002452','NDP',NULL,'AS','THEA','AC'), | |
('800002453','UGRD','2023','AS','ENGL','AC'), | |
('800002455','UGRD','2025','AS','BIOL','AC'), | |
('800002456','UGRD','2024','AS','PHY','AC'), | |
('800002458','UGRD','2023','AS','ROML','AC'), | |
('800002461','UGRD','2024','AS','AMAT','AC'), | |
('800002463','UGRD','2024','AS','HIST','AC'), | |
('800002464','UGRD','2022','AS','ENGL','AC'), | |
('800002465','UGRD','2023','AS','NELC','AC'), | |
('800002469','UGRD','2021','AS','WRI','CM'), | |
('800002470','UGRD','2025','AS','WRI','AC'), | |
('800002471','UGRD','2023','AS','ANTH','AC'), | |
('800002475','UGRD','2025','AS','POLI','AC'), | |
('800002476','ES',NULL,'AS','STAT','ES'), | |
('800002477','UGRD','2022','AS','AS','AC'), | |
('800002478','SPM','2023','SPM',NULL,'AC'), | |
('800002479','UGRD','2022','AS','ASTR','AC'), | |
('800002480','UGRD','2024','AS','AS','AC'), | |
('800002481','UGRD','2023','AS','SLAV','AC'), | |
('800002482','UGRD','2025','AS','HUM','AC'), | |
('800002483','SB','2023','BUS',NULL,'AC'), | |
('800002487','UGRD','2021','AS','AMAT','CM'), | |
('800002490','SCS','2022','SCS',NULL,'AC'), | |
('800002491','UGRD','2024','AS','GSS','AC'), | |
('800002492','UGRD','2025','AS','ANTH','AC'), | |
('800002493','UGRD','2024','AS','ROML','AC'), | |
('800002494','UGRD','2021','AS','HUM','CM'), | |
('800002500','UGRD','2021','AS','PSYC','CM'), | |
('800002501','UGRD','2023','AS','CHEM','AC'), | |
('800002502','UGRD','2025','AS','REL','AC'), | |
('800002503','UGRD','2024','AS','AMAT','AC'), | |
('800002507','UGRD','2022','AS','GERM','AC'), | |
('800002509','UGRD','2021','AS','ANTH','CM'), | |
('800002511','UGRD','2022','AS','AAAS','AC'), | |
('800002514','UGRD','2022','AS','ENGL','AC'), | |
('800002515','NDP',NULL,'AS','GHP','AC'), | |
('800002516','UGRD','2022','AS','PSCI','AC'), | |
('800002517','UGRD','2025','AS','AS','AC'), | |
('800002518','UGRD','2021','AS','STAT','CM'), | |
('800002519','UGRD','2021','AS','APHY','CM'), | |
('800002523','UGRD','2023','AS','BIOL','AC'), | |
('800002524','UGRD','2024','AS','SOCS','AC'), | |
('800002525','UGRD','2025','AS','BIOL','AC'), | |
('800002526','UGRD','2024','AS','ENG','AC'), | |
('800002527','UGRD','2021','AS','GSS','CM'), | |
('800002528','UGRD','2022','AS','PHY','AC'), | |
('800002530','UGRD','2021','AS','LIT','CM'), | |
('800002531','UGRD','2025','AS','MEDS','AC'), | |
('800002533','UGRD','2021','AS','BIOS','CM'), | |
('800002534','UGRD','2021','AS','ART','CM'), | |
('800002536','UGRD','2025','AS','GHP','AC'), | |
('800002537','UGRD','2024','AS','CHEM','AC'), | |
('800002539','UGRD','2023','AS','EALC','AC'), | |
('800002540','UGRD','2021','AS','APCS','CM'), | |
('800002541','UGRD','2023','AS','ART','AC'), | |
('800002543','UGRD','2021','AS','GVMT','CM'), | |
('800002548','UGRD','2022','AS','APHY','AC'), | |
('800002549','UGRD','2024','AS','AAAS','AC'), | |
('800002551','UGRD','2022','AS','SOCS','AC'), | |
('800002553','SPM','2021','SPM',NULL,'CM'), | |
('800002556','UGRD','2025','AS','ENGL','AC'), | |
('800002557','UGRD','2025','AS','MAT','AC'), | |
('800002559','UGRD','2023','AS','THEA','AC'), | |
('800002560','UGRD','2021','AS','CS','CM'), | |
('800002561','UGRD','2024','AS','SOC','AC'), | |
('800002562','UGRD','2024','AS','ENG','AC'), | |
('800002569','UGRD','2025','AS','THEA','AC'), | |
('800002570','UGRD','2021','AS','PHY','CM'), | |
('800002574','UGRD','2022','AS','MUS','AC'), | |
('800002575','UGRD','2021','AS','MAT','CM'), | |
('800002576','UGRD','2022','AS','ECOM','AC'), | |
('800002577','UGRD','2021','AS','ECOM','CM'), | |
('800002578','UGRD','2021','AS','MES','CM'), | |
('800002579','UGRD','2021','AS','ROML','CM'), | |
('800002581','UGRD','2022','AS','THEA','XO'), | |
('800002582','UGRD','2023','AS','ANTH','AC'), | |
('800002583','UGRD','2025','AS','CPLT','AC'), | |
('800002584','UGRD','2025','AS','LIT','AC'), | |
('800002586','UGRD','2025','AS','ROML','AC'), | |
('800002587','UGRD','2025','AS','CHEM','AC'), | |
('800002588','UGRD','2022','AS','APCS','AC'), | |
('800002589','UGRD','2022','AS','BIOL','AC'), | |
('800002591','UGRD','2022','AS','POLI','AC'), | |
('800002594','UGRD','2024','AS','POLI','AC'), | |
('800002595','UGRD','2025','AS','PHIL','AC'), | |
('800002596','SPM','2024','SPM',NULL,'AC'), | |
('800002597','UGRD','2025','AS','PHIL','LA'), | |
('800002598','UGRD','2021','AS','CLSS','CM'), | |
('800002599','UGRD','2022','AS','CPLT','AC'), | |
('800002600','UGRD','2025','AS','BIOL','AC'), | |
('800002603','GRAD','2025','GRD','GS','AC'), | |
('800002604','UGRD','2024','AS','REL','AC'), | |
('800002605','UGRD','2022','AS','ENV','AC'), | |
('800002606','UGRD','2024','AS','ENGL','AC'), | |
('800002607','UGRD','2024','AS','REL','AC'), | |
('800002609','UGRD','2022','AS','CPLT','AC'), | |
('800002611','UGRD','2025','AS','MCB','AC'), | |
('800002613','UGRD','2022','AS','PSCI','AC'), | |
('800002616','UGRD','2023','AS','APHY','AC'), | |
('800002617','UGRD','2024','AS','PHY','AC'), | |
('800002618','UGRD','2024','AS','WRI','AC'), | |
('800002619','UGRD','2023','AS','HIST','AC'), | |
('800002620','ES',NULL,'AS','ECOM','ES'), | |
('800002621','UGRD','2023','AS','BIOS','AC'), | |
('800002622','SB','2024','BUS',NULL,'AC'), | |
('800002623','UGRD','2022','AS','AS','AC'), | |
('800002627','UGRD','2025','AS','MCB','AC'), | |
('800002629','UGRD','2025','AS','ART','AC'), | |
('800002630','UGRD','2023','AS','MES','AC'), | |
('800002631','UGRD','2025','AS','WRI','AC'), | |
('800002634','UGRD','2025','AS','BIOL','PM'), | |
('800002635','UGRD','2022','AS','REL','AC'), | |
('800002637','UGRD','2022','AS','SAS','AC'), | |
('800002638','UGRD','2024','AS','BIOL','AC'), | |
('800002639','UGRD','2021','AS','LIT','CM'), | |
('800002644','ES',NULL,'AS','SOC','ES'), | |
('800002645','UGRD','2024','AS','PSCI','AC'), | |
('800002651','UGRD','2021','AS','PHY','CM'), | |
('800002652','SB','2024','BUS',NULL,'AC'), | |
('800002653','UGRD','2025','AS','APHY','AC'), | |
('800002655','UGRD','2025','AS','SAS','AC'), | |
('800002657','UGRD','2024','AS','THEA','AC'), | |
('800002658','NDP',NULL,'AS','STAT','AC'), | |
('800002659','UGRD','2021','AS','PHY','CM'), | |
('800002660','UGRD','2021','AS','GHP','CM'), | |
('800002661','UGRD','2025','AS','WRI','AC'), | |
('800002662','UGRD','2023','AS','EALC','AC'), | |
('800002663','GRAD','2023','GRD','GS','AC'), | |
('800002664','UGRD','2022','AS','AAAS','AC'), | |
('800002666','UGRD','2021','AS','EALC','CM'), | |
('800002672','UGRD','2025','AS','AMAT','AC'), | |
('800002673','SCS','2025','SCS',NULL,'AC'), | |
('800002675','UGRD','2023','AS','BIOL','XO'), | |
('800002676','UGRD','2023','AS','HIST','AC'), | |
('800002677','UGRD','2022','AS','ENGL','AC'), | |
('800002679','UGRD','2021','AS','ROML','CM'), | |
('800002683','UGRD','2021','AS','ENV','CM'), | |
('800002684','UGRD','2021','AS','SOC','CM'), | |
('800002686','UGRD','2024','AS','LING','XP'), | |
('800002687','UGRD','2025','AS','MCB','AC'), | |
('800002689','UGRD','2024','AS','MES','AC'), | |
('800002691','UGRD','2022','AS','BPHY','AC'), | |
('800002692','UGRD','2022','AS','REL','AC'), | |
('800002693','UGRD','2024','AS','ROML','AC'), | |
('800002695','UGRD','2025','AS','CLSS','AC'), | |
('800002697','UGRD','2022','AS','GHP','AC'), | |
('800002698','UGRD','2021','AS','MEDS','CM'), | |
('800002701','UGRD','2025','AS','ENV','AC'), | |
('800002703','GRAD','2024','GRD','GS','AC'), | |
('800002707','SB','2021','BUS',NULL,'CM'), | |
('800002710','UGRD','2022','AS','BIOS','AC'), | |
('800002711','UGRD','2025','AS','CPLT','LA'), | |
('800002712','UGRD','2021','AS','ART','CM'), | |
('800002713','UGRD','2025','AS','REL','LA'), | |
('800002714','UGRD','2023','AS','GVMT','AC'), | |
('800002715','UGRD','2024','AS','WRI','AC'), | |
('800002718','UGRD','2022','AS','AMAT','AC'), | |
('800002719','UGRD','2023','AS','AMAT','AC'), | |
('800002720','UGRD','2021','AS','MAT','CM'), | |
('800002722','UGRD','2023','AS','SOCS','AC'), | |
('800002723','UGRD','2021','AS','APCS','CM'), | |
('800002726','UGRD','2024','AS','CHEM','AC'), | |
('800002727','UGRD','2024','AS','CS','AC'), | |
('800002729','UGRD','2024','AS','ASTR','RS'), | |
('800002731','UGRD','2025','AS','HIST','AC'), | |
('800002732','UGRD','2023','AS','EALC','AC'), | |
('800002737','SB','2024','BUS',NULL,'AC'), | |
('800002738','GRAD','2021','GRD','GS','CM'), | |
('800002741','UGRD','2021','AS','REL','CM'), | |
('800002743','UGRD','2021','AS','SOCS','CM'), | |
('800002747','UGRD','2021','AS','STAT','CM'), | |
('800002748','UGRD','2023','AS','POLI','AC'), | |
('800002749','UGRD','2025','AS','CLSS','AC'), | |
('800002752','UGRD','2023','AS','ECOM','XO'), | |
('800002753','UGRD','2022','AS','GERM','AC'), | |
('800002756','UGRD','2021','AS','CS','CM'), | |
('800002759','UGRD','2021','AS','GHP','CM'), | |
('800002760','UGRD','2023','AS','SAS','AC'), | |
('800002762','UGRD','2024','AS','PSCI','AC'), | |
('800002766','UGRD','2024','AS','GSS','AC'), | |
('800002767','UGRD','2025','AS','AS','AC'), | |
('800002768','UGRD','2025','AS','ENV','AC'), | |
('800002770','UGRD','2025','AS','SAS','AC'), | |
('800002771','UGRD','2023','AS','ENV','AC'), | |
('800002775','UGRD','2021','AS','MEDS','CM'), | |
('800002776','UGRD','2021','AS','SOC','CM'), | |
('800002777','GRAD','2024','GRD','GS','AC'), | |
('800002778','UGRD','2022','AS','ECOM','AC'), | |
('800002779','UGRD','2021','AS','ASTR','CM'), | |
('800002781','UGRD','2021','AS','AS','CM'), | |
('800002783','UGRD','2024','AS','PSCI','AC'), | |
('800002784','UGRD','2023','AS','ECOM','AC'), | |
('800002785','UGRD','2023','AS','GSS','AC'), | |
('800002786','UGRD','2024','AS','ENG','AC'), | |
('800002788','UGRD','2021','AS','CLSS','CM'), | |
('800002790','UGRD','2025','AS','CLSS','AC'), | |
('800002791','UGRD','2024','AS','MCB','AC'), | |
('800002795','UGRD','2021','AS','MES','CM'), | |
('800002799','UGRD','2021','AS','GVMT','CM'), | |
('800002800','UGRD','2025','AS','EALC','AC'), | |
('800002802','UGRD','2021','AS','LIT','CM'), | |
('800002803','UGRD','2022','AS','THEA','AC'), | |
('800002808','UGRD','2022','AS','ARCH','AC'), | |
('800002809','UGRD','2025','AS','ANTH','AC'), | |
('800002810','UGRD','2023','AS','SOC','AC'), | |
('800002812','UGRD','2025','AS','LING','PM'), | |
('800002813','UGRD','2025','AS','GHP','LA'), | |
('800002814','GRAD','2025','GRD','GS','AC'), | |
('800002815','UGRD','2025','AS','BIOS','AC'), | |
('800002817','UGRD','2025','AS','GVMT','AC'), | |
('800002818','UGRD','2021','AS','STAT','CM'), | |
('800002821','UGRD','2023','AS','ART','AC'), | |
('800002822','UGRD','2025','AS','AAAS','PM'), | |
('800002827','UGRD','2022','AS','CELT','AC'), | |
('800002829','UGRD','2025','AS','SLAV','AC'), | |
('800002830','UGRD','2022','AS','SAS','AC'), | |
('800002832','UGRD','2023','AS','NELC','AC'), | |
('800002833','UGRD','2023','AS','GERM','AC'), | |
('800002834','GRAD','2024','GRD','GS','AC'), | |
('800002835','UGRD','2022','AS','MUS','AC'), | |
('800002838','UGRD','2025','AS','PSYC','AC'), | |
('800002845','UGRD','2021','AS','ECOM','CM'), | |
('800002846','UGRD','2021','AS','POLI','CM'), | |
('800002848','UGRD','2023','AS','SAS','AC'), | |
('800002852','UGRD','2022','AS','PHY','AC'), | |
('800002854','UGRD','2025','AS','BPHY','AC'), | |
('800002861','UGRD','2023','AS','HUM','AC'), | |
('800002862','UGRD','2024','AS','CHEM','AC'), | |
('800002863','UGRD','2025','AS','ANTH','RS'), | |
('800002864','UGRD','2025','AS','ANTH','PM'), | |
('800002865','UGRD','2021','AS','ENGL','CM'), | |
('800002867','GRAD','2022','GRD','GS','AC'), | |
('800002868','UGRD','2024','AS','ROML','AC'), | |
('800002869','UGRD','2025','AS','ASTR','AC'), | |
('800002871','UGRD','2023','AS','ART','AC'), | |
('800002872','UGRD','2022','AS','GVMT','AC'), | |
('800002878','UGRD','2025','AS','ART','AC'), | |
('800002879','UGRD','2022','AS','ASTR','AC'), | |
('800002880','UGRD','2024','AS','ANTH','AC'), | |
('800002881','UGRD','2022','AS','MES','AC'), | |
('800002882','UGRD','2022','AS','SOC','AC'), | |
('800002884','UGRD','2025','AS','CPLT','AC'), | |
('800002885','ES',NULL,'AS','MES','ES'), | |
('800002886','UGRD','2023','AS','CLSS','RS'), | |
('800002889','UGRD','2022','AS','SOCS','AC'), | |
('800002891','UGRD','2021','AS','GSS','CM'), | |
('800002894','UGRD','2025','AS','APCS','AC'), | |
('800002896','UGRD','2024','AS','SAS','AC'), | |
('800002898','UGRD','2024','AS','REL','AC'), | |
('800002899','UGRD','2022','AS','AMAT','AC'), | |
('800002900','UGRD','2023','AS','AAAS','AC'), | |
('800002901','UGRD','2025','AS','BPHY','AC'), | |
('800002904','UGRD','2021','AS','SOC','CM'), | |
('800002905','UGRD','2023','AS','SAS','AC'), | |
('800002911','UGRD','2024','AS','ENG','AC'), | |
('800002913','NDP',NULL,'AS','SOCS','AC'), | |
('800002914','UGRD','2021','AS','SOC','CM'), | |
('800002915','UGRD','2025','AS','LIT','AC'), | |
('800002919','UGRD','2025','AS','MUS','LA'), | |
('800002920','UGRD','2024','AS','PHY','AC'), | |
('800002921','UGRD','2022','AS','SAS','AC'), | |
('800002922','UGRD','2025','AS','PHY','AC'), | |
('800002923','UGRD','2023','AS','LING','AC'), | |
('800002924','UGRD','2025','AS','NELC','AC'), | |
('800002925','UGRD','2024','AS','ENG','AC'), | |
('800002926','UGRD','2024','AS','SLAV','AC'), | |
('800002927','UGRD','2025','AS','ART','AC'), | |
('800002928','UGRD','2021','AS','CELT','CM'), | |
('800002930','UGRD','2023','AS','EALC','AC'), | |
('800002932','UGRD','2022','AS','MUS','AC'), | |
('800002933','UGRD','2025','AS','MES','AC'), | |
('800002939','UGRD','2023','AS','BIOL','AC'), | |
('800002941','UGRD','2021','AS','ENV','CM'), | |
('800002943','UGRD','2024','AS','APHY','AC'), | |
('800002945','UGRD','2024','AS','CLSS','AC'), | |
('800002948','UGRD','2025','AS','ART','AC'), | |
('800002949','UGRD','2025','AS','STAT','AC'), | |
('800002952','UGRD','2022','AS','GERM','AC'), | |
('800002953','UGRD','2022','AS','STAT','AC'), | |
('800002956','UGRD','2025','AS','MEDS','AC'), | |
('800002957','UGRD','2025','AS','SAS','LA'), | |
('800002960','ES',NULL,'AS','ARCH','ES'), | |
('800002963','UGRD','2022','AS','LING','AC'), | |
('800002967','UGRD','2025','AS','ENV','AC'), | |
('800002971','UGRD','2022','AS','SOCS','AC'), | |
('800002972','UGRD','2021','AS','ENG','CM'), | |
('800002974','UGRD','2022','AS','GVMT','AC'), | |
('800002976','UGRD','2025','AS','GSS','AC'), | |
('800002977','UGRD','2021','AS','MCB','CM'), | |
('800002979','UGRD','2024','AS','ENGL','AC'), | |
('800002981','UGRD','2025','AS','LIT','AC'), | |
('800002982','SB','2022','BUS',NULL,'AC'), | |
('800002984','UGRD','2022','AS','GERM','AC'), | |
('800002985','UGRD','2022','AS','ENGL','AC'), | |
('800002987','UGRD','2023','AS','BIOL','AC'), | |
('800002988','UGRD','2022','AS','MEDS','AC'), | |
('800002989','UGRD','2021','AS','BIOL','CM'), | |
('800002991','UGRD','2025','AS','MCB','AC'), | |
('800002993','SB','2021','BUS',NULL,'CM'), | |
('800002994','UGRD','2025','AS','MCB','AC'), | |
('800002998','UGRD','2025','AS','PHY','AC'); | |
commit; |