From 46531b0bdbb65dab7e93fad1c274d4e386d253a5 Mon Sep 17 00:00:00 2001 From: Chad Redman Date: Wed, 1 Sep 2021 00:38:21 -0400 Subject: [PATCH] Round out data and groups for new demo: * Removed grouper-loader.properties from ex201 and ex401 * Empty folder basis:adhoc (for misc groups) * New data and loader jobs - basis:hr:job -> basis:hr:employee:dept (removed student roles) - basis:sis:course (added random course titles, CompSci course somewhat less random) - basis:sis:career - basis:sis:exp_grad_year - basis:sis:prog_status:all:* --- .../conf/grouper-loader.properties | 2 +- .../container_files/seed-data/bootstrap.gsh | 152 +- .../container_files/seed-data/sisData.sql | 29956 +++++++--------- .../container_files/grouper-loader.properties | 93 - .../container_files/grouper-loader.properties | 118 - .../container_files/grouper-loader.properties | 103 - 6 files changed, 12488 insertions(+), 17936 deletions(-) delete mode 100644 ex201/ex201.1.1/container_files/grouper-loader.properties delete mode 100644 ex401/ex401.1.1/container_files/grouper-loader.properties delete mode 100644 full-demo/container_files/grouper-loader.properties diff --git a/base/container_files/conf/grouper-loader.properties b/base/container_files/conf/grouper-loader.properties index bc381b7..2d8cd56 100644 --- a/base/container_files/conf/grouper-loader.properties +++ b/base/container_files/conf/grouper-loader.properties @@ -72,4 +72,4 @@ ldap.demo.tls = false #make the paths fully qualified and not relative to the loader group. loader.ldap.requireTopStemAsStemFromConfigGroup=false -loader.allowStemDisplayNameChangesUnderStems=basis:hr:job, basis:sis:courses \ No newline at end of file +loader.allowStemDisplayNameChangesUnderStems=basis:hr, basis:sis diff --git a/ex101/ex101.1.1/container_files/seed-data/bootstrap.gsh b/ex101/ex101.1.1/container_files/seed-data/bootstrap.gsh index 1cb75fb..07c0b7d 100644 --- a/ex101/ex101.1.1/container_files/seed-data/bootstrap.gsh +++ b/ex101/ex101.1.1/container_files/seed-data/bootstrap.gsh @@ -1,4 +1,4 @@ -gs = GrouperSession.startRootSession(); +GrouperSession gs = GrouperSession.startRootSession(); addRootStem("basis", "basis"); addRootStem("ref", "ref"); addRootStem("app", "app"); @@ -45,45 +45,38 @@ global_deny = addGroup("ref:iam", "global_deny", "global_deny"); -// Dept Loader +// Employee by Dept Loader -def group = new GroupSave(gs).assignName("etc:loader:hr:deptLoader").assignCreateParentStemsIfNotExist(true).assignDisplayName("etc:loader:HR:deptLoader").save() +def group = new GroupSave(gs).assignName("etc:loader:hr:employeeDeptLoader").assignCreateParentStemsIfNotExist(true).assignDisplayName("etc:loader:HR:employeeDeptLoader").save() GroupType loaderType = GroupTypeFinder.find("grouperLoader", false) -group.addType(loaderType) +group.addType(loaderType, false) group.setAttribute(GrouperLoader.GROUPER_LOADER_DB_NAME, "grouper") group.setAttribute(GrouperLoader.GROUPER_LOADER_TYPE, "SQL_GROUP_LIST") group.setAttribute(GrouperLoader.GROUPER_LOADER_SCHEDULE_TYPE, "CRON") group.setAttribute(GrouperLoader.GROUPER_LOADER_QUARTZ_CRON, "0 0 6 * * ?") +group.setAttribute(GrouperLoader.GROUPER_LOADER_GROUPS_LIKE, "basis:hr:employee:dept:%") group.setAttribute(GrouperLoader.GROUPER_LOADER_QUERY, '''SELECT person_id AS subject_id, 'eduLDAP' AS subject_source_id, - concat('basis:hr:job:',D.dept_id,':',role) AS group_name + concat('basis:hr:employee:dept:',D.dept_id,':',role) AS group_name FROM hr_jobs J JOIN hr_positions P ON J.position_id = P.position_id JOIN hr_depts D ON P.dept_id = D.dept_id''') -group.setAttribute(GrouperLoader.GROUPER_LOADER_GROUP_QUERY, '''SELECT DISTINCT concat('basis:hr:job:',D.dept_id,':',role) AS group_name, - concat('basis:Human Resources:Job:',D.name,' (',D.dept_id,'):',D.name, ' ', role) AS group_display_name +group.setAttribute(GrouperLoader.GROUPER_LOADER_GROUP_QUERY, '''SELECT DISTINCT concat('basis:hr:employee:dept:',D.dept_id,':',role) AS group_name, + concat('basis:Human Resources:Employee:Department:',D.name,' (',D.dept_id,'):',D.name, ' ', role) AS group_display_name FROM hr_jobs J JOIN hr_positions P ON J.position_id = P.position_id JOIN hr_depts D ON P.dept_id = D.dept_id''') -//group.setAttribute(GrouperLoader.GROUPER_LOADER_PRIORITY, priority) - -//groupAddType(group.name, "grouperLoader") -//setGroupAttr(group.name, "grouperLoaderDbName", "grouper") -//setGroupAttr(group.name, "grouperLoaderType", "SQL_GROUP_LIST") -//setGroupAttr(group.name, "grouperLoaderScheduleType", "CRON") -//setGroupAttr(group.name, "grouperLoaderQuartzCron", "0 0 6 * * ?") -//setGroupAttr(group.name, "grouperLoaderQuery", "select person_id as subject_id, 'eduLDAP' as subject_source_id, concat('basis:hr:job:', D.dept_id, ':', role) as group_name from hr_jobs J join hr_positions P on J.position_id = P.position_id join hr_depts D on P.dept_id = D.dept_id") -//setGroupAttr(group.name, "grouperLoaderGroupQuery", "select distinct concat('basis:hr:job:', D.dept_id, ':', role) as group_name, concat('basis:Human Resources:Job:', D.name, ' (', D.dept_id, '):', role) as group_display_name from hr_jobs J join hr_positions P on J.position_id = P.position_id join hr_depts D on P.dept_id = D.dept_id") +//group.setAttribute(GrouperLoader.GROUPER_LOADER_PRIORITY, priority) GrouperLoaderType.validateAndScheduleSqlLoad(group, null, false) // This may take a long time GrouperLoader.runJobOnceForGroup(gs, group) -addMember("etc:sysadmingroup", "basis:hr:job:10904:staff") +addMember("etc:sysadmingroup", "basis:hr:employee:dept:10904:staff") @@ -92,20 +85,48 @@ addMember("etc:sysadmingroup", "basis:hr:job:10904:staff") def group = new GroupSave(gs).assignName("etc:loader:sis:courseLoader").assignCreateParentStemsIfNotExist(true).assignDisplayName("etc:loader:Student Information Systems:courseLoader").save() GroupType loaderType = GroupTypeFinder.find("grouperLoader", false) -group.addType(loaderType) +group.addType(loaderType, false) + +group.setAttribute(GrouperLoader.GROUPER_LOADER_DB_NAME, "grouper") +group.setAttribute(GrouperLoader.GROUPER_LOADER_TYPE, "SQL_GROUP_LIST") +group.setAttribute(GrouperLoader.GROUPER_LOADER_SCHEDULE_TYPE, "CRON") +group.setAttribute(GrouperLoader.GROUPER_LOADER_QUARTZ_CRON, "0 0 6 * * ?") +group.setAttribute(GrouperLoader.GROUPER_LOADER_GROUPS_LIKE, "basis:sis:course:%") +group.setAttribute(GrouperLoader.GROUPER_LOADER_QUERY, '''SELECT E.person_id AS subject_id, 'eduLDAP' AS subject_source_id, concat('basis:sis:course:', lower(C.dept_abbr), ':', lower(C.dept_abbr), C.course_num, ':', role) AS group_name + FROM sis_enrollment E + JOIN sis_courses C ON E.course_id = C.course_id + JOIN hr_depts D ON C.dept_id = D.dept_id''') +group.setAttribute(GrouperLoader.GROUPER_LOADER_GROUP_QUERY, '''SELECT DISTINCT concat('basis:sis:course:',lower(C.dept_abbr), ':', lower(C.dept_abbr), C.course_num, ':', role) AS group_name, + concat('basis:Student Information Systems:Courses:', D.name,' (', D.abbrev, '):', C.dept_abbr, C.course_num, ' ', replace(C.title, ':', ' -'), ':', C.dept_abbr, C.course_num, ' ', UPPER(substring(role,1,1)), lower(substring(role,2))) AS group_display_name + FROM sis_enrollment E + JOIN sis_courses C ON E.course_id = C.course_id + JOIN hr_depts D ON C.dept_id = D.dept_id''') + + +GrouperLoaderType.validateAndScheduleSqlLoad(group, null, false) + +// This may take a long time +GrouperLoader.runJobOnceForGroup(gs, group) + + + +// Student Career Loader + +def group = new GroupSave(gs).assignName("etc:loader:sis:studentCareerLoader").assignCreateParentStemsIfNotExist(true).assignDisplayName("etc:loader:Student Information Systems:studentCareerLoader").save() + +GroupType loaderType = GroupTypeFinder.find("grouperLoader", false) +group.addType(loaderType, false) group.setAttribute(GrouperLoader.GROUPER_LOADER_DB_NAME, "grouper") group.setAttribute(GrouperLoader.GROUPER_LOADER_TYPE, "SQL_GROUP_LIST") group.setAttribute(GrouperLoader.GROUPER_LOADER_SCHEDULE_TYPE, "CRON") group.setAttribute(GrouperLoader.GROUPER_LOADER_QUARTZ_CRON, "0 0 6 * * ?") -group.setAttribute(GrouperLoader.GROUPER_LOADER_QUERY, '''select E.person_id as subject_id, 'eduLDAP' as subject_source_id, concat('basis:sis:courses:', lower(C.dept_abbr), ':', lower(C.dept_abbr), C.course_num, ':', 'students') as group_name from sis_enrollment E - join sis_courses C on E.course_id = C.course_id - join hr_depts D on C.dept_id = D.dept_id''') -group.setAttribute(GrouperLoader.GROUPER_LOADER_GROUP_QUERY, '''select distinct concat('basis:sis:courses:', lower(C.dept_abbr), ':', lower(C.dept_abbr), C.course_num, ':', 'students') as group_name, - concat('basis:Student Information Systems:Courses:', D.name, ' (', D.abbrev, '):', C.dept_abbr, C.course_num, ':', C.dept_abbr, C.course_num, ' Students') as group_display_name - from sis_enrollment E - join sis_courses C on E.course_id = C.course_id - join hr_depts D on C.dept_id = D.dept_id''') +group.setAttribute(GrouperLoader.GROUPER_LOADER_GROUPS_LIKE, "basis:sis:career:%") +group.setAttribute(GrouperLoader.GROUPER_LOADER_QUERY, '''select distinct person_id as subject_id, 'eduLDAP' as subject_source_id, concat('basis:sis:career:', lower(acad_career_id), ':', ifnull(grad_year_expected, 'no_year')) as group_name + from sis_stu_programs''') +group.setAttribute(GrouperLoader.GROUPER_LOADER_GROUP_QUERY, '''select distinct concat('basis:sis:career:', lower(P.acad_career_id), ':', ifnull(grad_year_expected, 'no_year')) as group_name, + concat('basis:Student Information Systems:Careers:', C.description, ' (', P.acad_career_id, '):', P.acad_career_id, ' ', ifnull(grad_year_expected, 'No Year')) as group_display_name + from sis_stu_programs P join sis_acad_careers C on P.acad_career_id = C.acad_career_id''') GrouperLoaderType.validateAndScheduleSqlLoad(group, null, false) @@ -115,26 +136,23 @@ GrouperLoader.runJobOnceForGroup(gs, group) -// ITS Ref Loader +// Student Career By Year Loader -def group = new GroupSave(gs).assignName("etc:loader:hr:itsOrgLoader").assignCreateParentStemsIfNotExist(true).assignDisplayExtension("ITS Org Loader").save() +def group = new GroupSave(gs).assignName("etc:loader:sis:studentCareerByGradYearLoader").assignCreateParentStemsIfNotExist(true).assignDisplayName("etc:loader:Student Information Systems:studentCareerByGradYearLoader").save() GroupType loaderType = GroupTypeFinder.find("grouperLoader", false) -group.addType(loaderType) +group.addType(loaderType, false) group.setAttribute(GrouperLoader.GROUPER_LOADER_DB_NAME, "grouper") group.setAttribute(GrouperLoader.GROUPER_LOADER_TYPE, "SQL_GROUP_LIST") group.setAttribute(GrouperLoader.GROUPER_LOADER_SCHEDULE_TYPE, "CRON") group.setAttribute(GrouperLoader.GROUPER_LOADER_QUARTZ_CRON, "0 0 6 * * ?") -group.setAttribute(GrouperLoader.GROUPER_LOADER_QUERY, '''select g.name as subject_identifier, 'g:gsa' as subject_source_id, concat('ref:hr:dept:its:', extension) as group_name from grouper_groups g where name like 'basis:hr:job:109%' ''') -group.setAttribute(GrouperLoader.GROUPER_LOADER_GROUP_QUERY, '''select concat('ref:hr:dept:its:', a.extension) as group_name, - concat('ref:HR:Department:ITS:All ITS ', display_extension) as group_display_name, - concat('All ITS ', lower(display_extension), ' (groups 109xx)') as group_description - from ( - select 'affiliate' as extension, 'Affiliates' as display_extension - union all - select 'staff' as extension, 'Staff' as display_name -) as a''') +group.setAttribute(GrouperLoader.GROUPER_LOADER_GROUPS_LIKE, "basis:sis:exp_grad_year:%") +group.setAttribute(GrouperLoader.GROUPER_LOADER_QUERY, '''select distinct person_id as subject_id, 'eduLDAP' as subject_source_id, concat('basis:sis:exp_grad_year:', ifnull(grad_year_expected, 'no_year')) as group_name + from sis_stu_programs''') +group.setAttribute(GrouperLoader.GROUPER_LOADER_GROUP_QUERY, '''select distinct concat('basis:sis:exp_grad_year:', ifnull(grad_year_expected, 'no_year')) as group_name, + concat('basis:Student Information Systems:Expected Grad Year:', case when grad_year_expected is null then 'No Grad Year' else concat('Class of ', grad_year_expected) end ) as group_display_name + from sis_stu_programs P join sis_acad_careers C on P.acad_career_id = C.acad_career_id''') GrouperLoaderType.validateAndScheduleSqlLoad(group, null, false) @@ -143,6 +161,64 @@ GrouperLoaderType.validateAndScheduleSqlLoad(group, null, false) GrouperLoader.runJobOnceForGroup(gs, group) +// SIS Overall Program Status Loader + +def group = new GroupSave(gs).assignName("etc:loader:sis:overallProgStatusLoader").assignCreateParentStemsIfNotExist(true).assignDisplayName("etc:loader:Student Information Systems:overallProgStatusLoader").save() + +GroupType loaderType = GroupTypeFinder.find("grouperLoader", false) +group.addType(loaderType, false) + +group.setAttribute(GrouperLoader.GROUPER_LOADER_DB_NAME, "grouper") +group.setAttribute(GrouperLoader.GROUPER_LOADER_TYPE, "SQL_GROUP_LIST") +group.setAttribute(GrouperLoader.GROUPER_LOADER_SCHEDULE_TYPE, "CRON") +group.setAttribute(GrouperLoader.GROUPER_LOADER_QUARTZ_CRON, "0 0 6 * * ?") +group.setAttribute(GrouperLoader.GROUPER_LOADER_GROUPS_LIKE, "basis:sis:prog_status:all:%") +group.setAttribute(GrouperLoader.GROUPER_LOADER_QUERY, '''select P.person_id AS subject_id, 'eduLDAP' AS subject_source_id, + concat('basis:sis:prog_status:all:', lower(P.prog_status_id)) AS group_name + from sis_stu_programs P''') +group.setAttribute(GrouperLoader.GROUPER_LOADER_GROUP_QUERY, '''SELECT concat('basis:sis:prog_status:all:',lower(PS.prog_status_id)) AS group_name, + concat('basis:Student Information Systems:Program Status:All by Program Status:', PS.description) AS group_display_name + FROM sis_prog_status PS''') + + +GrouperLoaderType.validateAndScheduleSqlLoad(group, null, false) + +// This may take a long time +GrouperLoader.runJobOnceForGroup(gs, group) + + + +// Ad-hoc group for Transfer Students (just create the ad-hoc folder for now, they will create the group in the UI) + +def adhocStem = new StemSave(gs).assignName("basis:adhoc"). + assignCreateParentStemsIfNotExist(true). + assignDescription("Basis groups not loader jobs; could be a batch job using a web service call, an import from the UI, etc."). + assignDisplayName("basis:Ad Hoc"). + save() + +//import edu.internet2.middleware.grouper.app.grouperTypes.GdgTypeGroupSave +//import edu.internet2.middleware.grouper.app.grouperTypes.GrouperObjectTypesAttributeValue +//import edu.internet2.middleware.grouper.misc.SaveMode +// +// def xferGroup = new GroupSave(gs). +// assignName("basis:adhoc:transfer_students"). +// assignCreateParentStemsIfNotExist(true). +// assignDescription("Students recently transfered to campus, who need access ahead of SIS data being fully updated"). +// assignDisplayName("basis:Ad Hoc:Transfer student"). +// assignTypeOfGroup(TypeOfGroup.group). +// save() +// +// GrouperObjectTypesAttributeValue grouperObjectTypesAttributeValue = new GdgTypeGroupSave(). +// assignGroup(xferGroup). +// assignType("manual"). +// assignDataOwner("Student Information Systems"). +// assignMemberDescription("Recently transfered students, who may not yet be in the SIS database"). +// assignSaveMode(SaveMode.INSERT_OR_UPDATE). +// assignReplaceAllSettings(true). +// save() + + + /* Add groups to global_deny */ GroupFinder.findByName(gs, "ref:iam:global_deny", true).addMember(GroupFinder.findByName(gs, "ref:security:locked_by_ciso", true).toSubject()) diff --git a/ex101/ex101.1.1/container_files/seed-data/sisData.sql b/ex101/ex101.1.1/container_files/seed-data/sisData.sql index 6434e36..021d4df 100644 --- a/ex101/ex101.1.1/container_files/seed-data/sisData.sql +++ b/ex101/ex101.1.1/container_files/seed-data/sisData.sql @@ -119,6 +119,8 @@ insert into hr_depts(dept_id, name, parent_dept_id, abbrev) values ; +/************* hr_orgs *************/ + create table hr_orgs ( dept_id VARCHAR(5) NOT NULL, abbrev VARCHAR(5), @@ -151,6 +153,9 @@ insert into hr_orgs values (90000, 'CIS', 90000, 99999, '9*') ; + +/************* hr_positions *************/ + create table hr_positions ( position_id varchar(5), dept_id varchar(5), @@ -160,6971 +165,3601 @@ create table hr_positions ( 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'), -('10082', '30000', 'student'), -('10083', '30000', 'student'), -('10084', '30000', 'student'), -('10085', '30000', 'student'), -('10086', '30000', 'student'), -('10087', '30000', 'student'), -('10088', '30000', 'student'), -('10089', '30000', 'student'), -('10090', '30000', 'student'), -('10091', '30000', 'student'), -('10092', '30000', 'student'), -('10093', '30000', 'student'), -('10094', '30000', 'student'), -('10095', '30000', 'student'), -('10096', '30000', 'student'), -('10097', '30000', 'student'), -('10098', '30000', 'student'), -('10099', '30000', 'student'), -('10100', '30000', 'student'), -('10101', '30000', 'student'), -('10102', '30000', 'student'), -('10103', '30000', 'student'), -('10104', '30000', 'student'), -('10105', '30000', 'student'), -('10106', '30000', 'student'), -('10107', '30000', 'student'), -('10108', '30000', 'student'), -('10109', '30000', 'student'), -('10110', '30000', 'student'), -('10111', '30000', 'student'), -('10112', '30000', 'student'), -('10113', '30000', 'student'), -('10114', '30000', 'student'), -('10115', '30000', 'student'), -('10116', '30000', 'student'), -('10117', '30000', 'student'), -('10118', '30000', 'student'), -('10119', '30000', 'student'), -('10120', '30000', 'student'), -('10121', '30000', 'student'), -('10122', '30000', 'student'), -('10123', '30000', 'student'), -('10124', '30000', 'student'), -('10125', '30000', 'student'), -('10126', '30000', 'student'), -('10127', '30000', 'student'), -('10128', '30000', 'student'), -('10129', '30000', 'student'), -('10130', '30000', 'student'), -('10131', '30000', 'student'), -('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'), -('10183', '45000', 'student'), -('10184', '45000', 'student'), -('10185', '45000', 'student'), -('10186', '45000', 'student'), -('10187', '45000', 'student'), -('10188', '45000', 'student'), -('10189', '45000', 'student'), -('10190', '45000', 'student'), -('10191', '45000', 'student'), -('10192', '45000', 'student'), -('10193', '45000', 'student'), -('10194', '45000', 'student'), -('10195', '45000', 'student'), -('10196', '45000', 'student'), -('10197', '45000', 'student'), -('10198', '45000', 'student'), -('10199', '45000', 'student'), -('10200', '45000', 'student'), -('10201', '45000', 'student'), -('10202', '45000', 'student'), -('10203', '45000', 'student'), -('10204', '45000', 'student'), -('10205', '45000', 'student'), -('10206', '45000', 'student'), -('10207', '45000', 'student'), -('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'), -('10233', '50000', 'student'), -('10234', '50000', 'student'), -('10235', '50000', 'student'), -('10236', '50000', 'student'), -('10237', '50000', 'student'), -('10238', '50000', 'student'), -('10239', '50000', 'student'), -('10240', '50000', 'student'), -('10241', '50000', 'student'), -('10242', '50000', 'student'), -('10243', '50000', 'student'), -('10244', '50000', 'student'), -('10245', '50000', 'student'), -('10246', '50000', 'student'), -('10247', '50000', 'student'), -('10248', '50000', 'student'), -('10249', '50000', 'student'), -('10250', '50000', 'student'), -('10251', '50000', 'student'), -('10252', '50000', 'student'), -('10253', '50000', 'student'), -('10254', '50000', 'student'), -('10255', '50000', 'student'), -('10256', '50000', 'student'), -('10257', '50000', 'student'), -('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'), -('10291', '60000', 'student'), -('10292', '60000', 'student'), -('10293', '60000', 'student'), -('10294', '60000', 'student'), -('10295', '60000', 'student'), -('10296', '60000', 'student'), -('10297', '60000', 'student'), -('10298', '60000', 'student'), -('10299', '60000', 'student'), -('10300', '60000', 'student'), -('10301', '60000', 'student'), -('10302', '60000', 'student'), -('10303', '60000', 'student'), -('10304', '60000', 'student'), -('10305', '60000', 'student'), -('10306', '60000', 'student'), -('10307', '60000', 'student'), -('10308', '60000', 'student'), -('10309', '60000', 'student'), -('10310', '60000', 'student'), -('10311', '60000', 'student'), -('10312', '60000', 'student'), -('10313', '60000', 'student'), -('10314', '60000', 'student'), -('10315', '60000', 'student'), -('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'), -('10373', '20100', 'student'), -('10374', '20100', 'student'), -('10375', '20100', 'student'), -('10376', '20100', 'student'), -('10377', '20100', 'student'), -('10378', '20100', 'student'), -('10379', '20100', 'student'), -('10380', '20100', 'student'), -('10381', '20100', 'student'), -('10382', '20100', 'student'), -('10383', '20100', 'student'), -('10384', '20100', 'student'), -('10385', '20100', 'student'), -('10386', '20100', 'student'), -('10387', '20100', 'student'), -('10388', '20100', 'student'), -('10389', '20100', 'student'), -('10390', '20100', 'student'), -('10391', '20100', 'student'), -('10392', '20100', 'student'), -('10393', '20100', 'student'), -('10394', '20100', 'student'), -('10395', '20100', 'student'), -('10396', '20100', 'student'), -('10397', '20100', 'student'), -('10398', '20100', 'student'), -('10399', '20100', 'student'), -('10400', '20100', 'student'), -('10401', '20100', 'student'), -('10402', '20100', 'student'), -('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'), -('10419', '20150', 'student'), -('10420', '20150', 'student'), -('10421', '20150', 'student'), -('10422', '20150', 'student'), -('10423', '20150', 'student'), -('10424', '20150', 'student'), -('10425', '20150', 'student'), -('10426', '20150', 'student'), -('10427', '20150', 'student'), -('10428', '20150', 'student'), -('10429', '20150', 'student'), -('10430', '20150', 'student'), -('10431', '20150', 'student'), -('10432', '20150', 'student'), -('10433', '20150', 'student'), -('10434', '20150', 'student'), -('10435', '20150', 'student'), -('10436', '20150', 'student'), -('10437', '20150', 'student'), -('10438', '20150', 'student'), -('10439', '20150', 'student'), -('10440', '20150', 'student'), -('10441', '20150', 'student'), -('10442', '20150', 'student'), -('10443', '20150', 'student'), -('10444', '20150', 'student'), -('10445', '20150', 'student'), -('10446', '20150', 'student'), -('10447', '20150', 'student'), -('10448', '20150', 'student'), -('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'), -('10465', '20200', 'student'), -('10466', '20200', 'student'), -('10467', '20200', 'student'), -('10468', '20200', 'student'), -('10469', '20200', 'student'), -('10470', '20200', 'student'), -('10471', '20200', 'student'), -('10472', '20200', 'student'), -('10473', '20200', 'student'), -('10474', '20200', 'student'), -('10475', '20200', 'student'), -('10476', '20200', 'student'), -('10477', '20200', 'student'), -('10478', '20200', 'student'), -('10479', '20200', 'student'), -('10480', '20200', 'student'), -('10481', '20200', 'student'), -('10482', '20200', 'student'), -('10483', '20200', 'student'), -('10484', '20200', 'student'), -('10485', '20200', 'student'), -('10486', '20200', 'student'), -('10487', '20200', 'student'), -('10488', '20200', 'student'), -('10489', '20200', 'student'), -('10490', '20200', 'student'), -('10491', '20200', 'student'), -('10492', '20200', 'student'), -('10493', '20200', 'student'), -('10494', '20200', 'student'), -('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'), -('10511', '20250', 'student'), -('10512', '20250', 'student'), -('10513', '20250', 'student'), -('10514', '20250', 'student'), -('10515', '20250', 'student'), -('10516', '20250', 'student'), -('10517', '20250', 'student'), -('10518', '20250', 'student'), -('10519', '20250', 'student'), -('10520', '20250', 'student'), -('10521', '20250', 'student'), -('10522', '20250', 'student'), -('10523', '20250', 'student'), -('10524', '20250', 'student'), -('10525', '20250', 'student'), -('10526', '20250', 'student'), -('10527', '20250', 'student'), -('10528', '20250', 'student'), -('10529', '20250', 'student'), -('10530', '20250', 'student'), -('10531', '20250', 'student'), -('10532', '20250', 'student'), -('10533', '20250', 'student'), -('10534', '20250', 'student'), -('10535', '20250', 'student'), -('10536', '20250', 'student'), -('10537', '20250', 'student'), -('10538', '20250', 'student'), -('10539', '20250', 'student'), -('10540', '20250', 'student'), -('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'), -('10557', '20300', 'student'), -('10558', '20300', 'student'), -('10559', '20300', 'student'), -('10560', '20300', 'student'), -('10561', '20300', 'student'), -('10562', '20300', 'student'), -('10563', '20300', 'student'), -('10564', '20300', 'student'), -('10565', '20300', 'student'), -('10566', '20300', 'student'), -('10567', '20300', 'student'), -('10568', '20300', 'student'), -('10569', '20300', 'student'), -('10570', '20300', 'student'), -('10571', '20300', 'student'), -('10572', '20300', 'student'), -('10573', '20300', 'student'), -('10574', '20300', 'student'), -('10575', '20300', 'student'), -('10576', '20300', 'student'), -('10577', '20300', 'student'), -('10578', '20300', 'student'), -('10579', '20300', 'student'), -('10580', '20300', 'student'), -('10581', '20300', 'student'), -('10582', '20300', 'student'), -('10583', '20300', 'student'), -('10584', '20300', 'student'), -('10585', '20300', 'student'), -('10586', '20300', 'student'), -('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'), -('10603', '20350', 'student'), -('10604', '20350', 'student'), -('10605', '20350', 'student'), -('10606', '20350', 'student'), -('10607', '20350', 'student'), -('10608', '20350', 'student'), -('10609', '20350', 'student'), -('10610', '20350', 'student'), -('10611', '20350', 'student'), -('10612', '20350', 'student'), -('10613', '20350', 'student'), -('10614', '20350', 'student'), -('10615', '20350', 'student'), -('10616', '20350', 'student'), -('10617', '20350', 'student'), -('10618', '20350', 'student'), -('10619', '20350', 'student'), -('10620', '20350', 'student'), -('10621', '20350', 'student'), -('10622', '20350', 'student'), -('10623', '20350', 'student'), -('10624', '20350', 'student'), -('10625', '20350', 'student'), -('10626', '20350', 'student'), -('10627', '20350', 'student'), -('10628', '20350', 'student'), -('10629', '20350', 'student'), -('10630', '20350', 'student'), -('10631', '20350', 'student'), -('10632', '20350', 'student'), -('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'), -('10649', '20400', 'student'), -('10650', '20400', 'student'), -('10651', '20400', 'student'), -('10652', '20400', 'student'), -('10653', '20400', 'student'), -('10654', '20400', 'student'), -('10655', '20400', 'student'), -('10656', '20400', 'student'), -('10657', '20400', 'student'), -('10658', '20400', 'student'), -('10659', '20400', 'student'), -('10660', '20400', 'student'), -('10661', '20400', 'student'), -('10662', '20400', 'student'), -('10663', '20400', 'student'), -('10664', '20400', 'student'), -('10665', '20400', 'student'), -('10666', '20400', 'student'), -('10667', '20400', 'student'), -('10668', '20400', 'student'), -('10669', '20400', 'student'), -('10670', '20400', 'student'), -('10671', '20400', 'student'), -('10672', '20400', 'student'), -('10673', '20400', 'student'), -('10674', '20400', 'student'), -('10675', '20400', 'student'), -('10676', '20400', 'student'), -('10677', '20400', 'student'), -('10678', '20400', 'student'), -('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'), -('10695', '20450', 'student'), -('10696', '20450', 'student'), -('10697', '20450', 'student'), -('10698', '20450', 'student'), -('10699', '20450', 'student'), -('10700', '20450', 'student'), -('10701', '20450', 'student'), -('10702', '20450', 'student'), -('10703', '20450', 'student'), -('10704', '20450', 'student'), -('10705', '20450', 'student'), -('10706', '20450', 'student'), -('10707', '20450', 'student'), -('10708', '20450', 'student'), -('10709', '20450', 'student'), -('10710', '20450', 'student'), -('10711', '20450', 'student'), -('10712', '20450', 'student'), -('10713', '20450', 'student'), -('10714', '20450', 'student'), -('10715', '20450', 'student'), -('10716', '20450', 'student'), -('10717', '20450', 'student'), -('10718', '20450', 'student'), -('10719', '20450', 'student'), -('10720', '20450', 'student'), -('10721', '20450', 'student'), -('10722', '20450', 'student'), -('10723', '20450', 'student'), -('10724', '20450', 'student'), -('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'), -('10741', '20500', 'student'), -('10742', '20500', 'student'), -('10743', '20500', 'student'), -('10744', '20500', 'student'), -('10745', '20500', 'student'), -('10746', '20500', 'student'), -('10747', '20500', 'student'), -('10748', '20500', 'student'), -('10749', '20500', 'student'), -('10750', '20500', 'student'), -('10751', '20500', 'student'), -('10752', '20500', 'student'), -('10753', '20500', 'student'), -('10754', '20500', 'student'), -('10755', '20500', 'student'), -('10756', '20500', 'student'), -('10757', '20500', 'student'), -('10758', '20500', 'student'), -('10759', '20500', 'student'), -('10760', '20500', 'student'), -('10761', '20500', 'student'), -('10762', '20500', 'student'), -('10763', '20500', 'student'), -('10764', '20500', 'student'), -('10765', '20500', 'student'), -('10766', '20500', 'student'), -('10767', '20500', 'student'), -('10768', '20500', 'student'), -('10769', '20500', 'student'), -('10770', '20500', 'student'), -('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'), -('10787', '20550', 'student'), -('10788', '20550', 'student'), -('10789', '20550', 'student'), -('10790', '20550', 'student'), -('10791', '20550', 'student'), -('10792', '20550', 'student'), -('10793', '20550', 'student'), -('10794', '20550', 'student'), -('10795', '20550', 'student'), -('10796', '20550', 'student'), -('10797', '20550', 'student'), -('10798', '20550', 'student'), -('10799', '20550', 'student'), -('10800', '20550', 'student'), -('10801', '20550', 'student'), -('10802', '20550', 'student'), -('10803', '20550', 'student'), -('10804', '20550', 'student'), -('10805', '20550', 'student'), -('10806', '20550', 'student'), -('10807', '20550', 'student'), -('10808', '20550', 'student'), -('10809', '20550', 'student'), -('10810', '20550', 'student'), -('10811', '20550', 'student'), -('10812', '20550', 'student'), -('10813', '20550', 'student'), -('10814', '20550', 'student'), -('10815', '20550', 'student'), -('10816', '20550', 'student'), -('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'), -('10833', '20600', 'student'), -('10834', '20600', 'student'), -('10835', '20600', 'student'), -('10836', '20600', 'student'), -('10837', '20600', 'student'), -('10838', '20600', 'student'), -('10839', '20600', 'student'), -('10840', '20600', 'student'), -('10841', '20600', 'student'), -('10842', '20600', 'student'), -('10843', '20600', 'student'), -('10844', '20600', 'student'), -('10845', '20600', 'student'), -('10846', '20600', 'student'), -('10847', '20600', 'student'), -('10848', '20600', 'student'), -('10849', '20600', 'student'), -('10850', '20600', 'student'), -('10851', '20600', 'student'), -('10852', '20600', 'student'), -('10853', '20600', 'student'), -('10854', '20600', 'student'), -('10855', '20600', 'student'), -('10856', '20600', 'student'), -('10857', '20600', 'student'), -('10858', '20600', 'student'), -('10859', '20600', 'student'), -('10860', '20600', 'student'), -('10861', '20600', 'student'), -('10862', '20600', 'student'), -('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'), -('10879', '20650', 'student'), -('10880', '20650', 'student'), -('10881', '20650', 'student'), -('10882', '20650', 'student'), -('10883', '20650', 'student'), -('10884', '20650', 'student'), -('10885', '20650', 'student'), -('10886', '20650', 'student'), -('10887', '20650', 'student'), -('10888', '20650', 'student'), -('10889', '20650', 'student'), -('10890', '20650', 'student'), -('10891', '20650', 'student'), -('10892', '20650', 'student'), -('10893', '20650', 'student'), -('10894', '20650', 'student'), -('10895', '20650', 'student'), -('10896', '20650', 'student'), -('10897', '20650', 'student'), -('10898', '20650', 'student'), -('10899', '20650', 'student'), -('10900', '20650', 'student'), -('10901', '20650', 'student'), -('10902', '20650', 'student'), -('10903', '20650', 'student'), -('10904', '20650', 'student'), -('10905', '20650', 'student'), -('10906', '20650', 'student'), -('10907', '20650', 'student'), -('10908', '20650', 'student'), -('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'), -('10925', '20700', 'student'), -('10926', '20700', 'student'), -('10927', '20700', 'student'), -('10928', '20700', 'student'), -('10929', '20700', 'student'), -('10930', '20700', 'student'), -('10931', '20700', 'student'), -('10932', '20700', 'student'), -('10933', '20700', 'student'), -('10934', '20700', 'student'), -('10935', '20700', 'student'), -('10936', '20700', 'student'), -('10937', '20700', 'student'), -('10938', '20700', 'student'), -('10939', '20700', 'student'), -('10940', '20700', 'student'), -('10941', '20700', 'student'), -('10942', '20700', 'student'), -('10943', '20700', 'student'), -('10944', '20700', 'student'), -('10945', '20700', 'student'), -('10946', '20700', 'student'), -('10947', '20700', 'student'), -('10948', '20700', 'student'), -('10949', '20700', 'student'), -('10950', '20700', 'student'), -('10951', '20700', 'student'), -('10952', '20700', 'student'), -('10953', '20700', 'student'), -('10954', '20700', 'student'), -('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'), -('10971', '20750', 'student'), -('10972', '20750', 'student'), -('10973', '20750', 'student'), -('10974', '20750', 'student'), -('10975', '20750', 'student'), -('10976', '20750', 'student'), -('10977', '20750', 'student'), -('10978', '20750', 'student'), -('10979', '20750', 'student'), -('10980', '20750', 'student'), -('10981', '20750', 'student'), -('10982', '20750', 'student'), -('10983', '20750', 'student'), -('10984', '20750', 'student'), -('10985', '20750', 'student'), -('10986', '20750', 'student'), -('10987', '20750', 'student'), -('10988', '20750', 'student'), -('10989', '20750', 'student'), -('10990', '20750', 'student'), -('10991', '20750', 'student'), -('10992', '20750', 'student'), -('10993', '20750', 'student'), -('10994', '20750', 'student'), -('10995', '20750', 'student'), -('10996', '20750', 'student'), -('10997', '20750', 'student'), -('10998', '20750', 'student'), -('10999', '20750', 'student'), -('11000', '20750', 'student'), -('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'), -('11017', '20800', 'student'), -('11018', '20800', 'student'), -('11019', '20800', 'student'), -('11020', '20800', 'student'), -('11021', '20800', 'student'), -('11022', '20800', 'student'), -('11023', '20800', 'student'), -('11024', '20800', 'student'), -('11025', '20800', 'student'), -('11026', '20800', 'student'), -('11027', '20800', 'student'), -('11028', '20800', 'student'), -('11029', '20800', 'student'), -('11030', '20800', 'student'), -('11031', '20800', 'student'), -('11032', '20800', 'student'), -('11033', '20800', 'student'), -('11034', '20800', 'student'), -('11035', '20800', 'student'), -('11036', '20800', 'student'), -('11037', '20800', 'student'), -('11038', '20800', 'student'), -('11039', '20800', 'student'), -('11040', '20800', 'student'), -('11041', '20800', 'student'), -('11042', '20800', 'student'), -('11043', '20800', 'student'), -('11044', '20800', 'student'), -('11045', '20800', 'student'), -('11046', '20800', 'student'), -('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'), -('11063', '20850', 'student'), -('11064', '20850', 'student'), -('11065', '20850', 'student'), -('11066', '20850', 'student'), -('11067', '20850', 'student'), -('11068', '20850', 'student'), -('11069', '20850', 'student'), -('11070', '20850', 'student'), -('11071', '20850', 'student'), -('11072', '20850', 'student'), -('11073', '20850', 'student'), -('11074', '20850', 'student'), -('11075', '20850', 'student'), -('11076', '20850', 'student'), -('11077', '20850', 'student'), -('11078', '20850', 'student'), -('11079', '20850', 'student'), -('11080', '20850', 'student'), -('11081', '20850', 'student'), -('11082', '20850', 'student'), -('11083', '20850', 'student'), -('11084', '20850', 'student'), -('11085', '20850', 'student'), -('11086', '20850', 'student'), -('11087', '20850', 'student'), -('11088', '20850', 'student'), -('11089', '20850', 'student'), -('11090', '20850', 'student'), -('11091', '20850', 'student'), -('11092', '20850', 'student'), -('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'), -('11109', '20900', 'student'), -('11110', '20900', 'student'), -('11111', '20900', 'student'), -('11112', '20900', 'student'), -('11113', '20900', 'student'), -('11114', '20900', 'student'), -('11115', '20900', 'student'), -('11116', '20900', 'student'), -('11117', '20900', 'student'), -('11118', '20900', 'student'), -('11119', '20900', 'student'), -('11120', '20900', 'student'), -('11121', '20900', 'student'), -('11122', '20900', 'student'), -('11123', '20900', 'student'), -('11124', '20900', 'student'), -('11125', '20900', 'student'), -('11126', '20900', 'student'), -('11127', '20900', 'student'), -('11128', '20900', 'student'), -('11129', '20900', 'student'), -('11130', '20900', 'student'), -('11131', '20900', 'student'), -('11132', '20900', 'student'), -('11133', '20900', 'student'), -('11134', '20900', 'student'), -('11135', '20900', 'student'), -('11136', '20900', 'student'), -('11137', '20900', 'student'), -('11138', '20900', 'student'), -('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'), -('11155', '20950', 'student'), -('11156', '20950', 'student'), -('11157', '20950', 'student'), -('11158', '20950', 'student'), -('11159', '20950', 'student'), -('11160', '20950', 'student'), -('11161', '20950', 'student'), -('11162', '20950', 'student'), -('11163', '20950', 'student'), -('11164', '20950', 'student'), -('11165', '20950', 'student'), -('11166', '20950', 'student'), -('11167', '20950', 'student'), -('11168', '20950', 'student'), -('11169', '20950', 'student'), -('11170', '20950', 'student'), -('11171', '20950', 'student'), -('11172', '20950', 'student'), -('11173', '20950', 'student'), -('11174', '20950', 'student'), -('11175', '20950', 'student'), -('11176', '20950', 'student'), -('11177', '20950', 'student'), -('11178', '20950', 'student'), -('11179', '20950', 'student'), -('11180', '20950', 'student'), -('11181', '20950', 'student'), -('11182', '20950', 'student'), -('11183', '20950', 'student'), -('11184', '20950', 'student'), -('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'), -('11201', '21000', 'student'), -('11202', '21000', 'student'), -('11203', '21000', 'student'), -('11204', '21000', 'student'), -('11205', '21000', 'student'), -('11206', '21000', 'student'), -('11207', '21000', 'student'), -('11208', '21000', 'student'), -('11209', '21000', 'student'), -('11210', '21000', 'student'), -('11211', '21000', 'student'), -('11212', '21000', 'student'), -('11213', '21000', 'student'), -('11214', '21000', 'student'), -('11215', '21000', 'student'), -('11216', '21000', 'student'), -('11217', '21000', 'student'), -('11218', '21000', 'student'), -('11219', '21000', 'student'), -('11220', '21000', 'student'), -('11221', '21000', 'student'), -('11222', '21000', 'student'), -('11223', '21000', 'student'), -('11224', '21000', 'student'), -('11225', '21000', 'student'), -('11226', '21000', 'student'), -('11227', '21000', 'student'), -('11228', '21000', 'student'), -('11229', '21000', 'student'), -('11230', '21000', 'student'), -('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'), -('11247', '21050', 'student'), -('11248', '21050', 'student'), -('11249', '21050', 'student'), -('11250', '21050', 'student'), -('11251', '21050', 'student'), -('11252', '21050', 'student'), -('11253', '21050', 'student'), -('11254', '21050', 'student'), -('11255', '21050', 'student'), -('11256', '21050', 'student'), -('11257', '21050', 'student'), -('11258', '21050', 'student'), -('11259', '21050', 'student'), -('11260', '21050', 'student'), -('11261', '21050', 'student'), -('11262', '21050', 'student'), -('11263', '21050', 'student'), -('11264', '21050', 'student'), -('11265', '21050', 'student'), -('11266', '21050', 'student'), -('11267', '21050', 'student'), -('11268', '21050', 'student'), -('11269', '21050', 'student'), -('11270', '21050', 'student'), -('11271', '21050', 'student'), -('11272', '21050', 'student'), -('11273', '21050', 'student'), -('11274', '21050', 'student'), -('11275', '21050', 'student'), -('11276', '21050', 'student'), -('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'), -('11293', '21100', 'student'), -('11294', '21100', 'student'), -('11295', '21100', 'student'), -('11296', '21100', 'student'), -('11297', '21100', 'student'), -('11298', '21100', 'student'), -('11299', '21100', 'student'), -('11300', '21100', 'student'), -('11301', '21100', 'student'), -('11302', '21100', 'student'), -('11303', '21100', 'student'), -('11304', '21100', 'student'), -('11305', '21100', 'student'), -('11306', '21100', 'student'), -('11307', '21100', 'student'), -('11308', '21100', 'student'), -('11309', '21100', 'student'), -('11310', '21100', 'student'), -('11311', '21100', 'student'), -('11312', '21100', 'student'), -('11313', '21100', 'student'), -('11314', '21100', 'student'), -('11315', '21100', 'student'), -('11316', '21100', 'student'), -('11317', '21100', 'student'), -('11318', '21100', 'student'), -('11319', '21100', 'student'), -('11320', '21100', 'student'), -('11321', '21100', 'student'), -('11322', '21100', 'student'), -('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'), -('11339', '21150', 'student'), -('11340', '21150', 'student'), -('11341', '21150', 'student'), -('11342', '21150', 'student'), -('11343', '21150', 'student'), -('11344', '21150', 'student'), -('11345', '21150', 'student'), -('11346', '21150', 'student'), -('11347', '21150', 'student'), -('11348', '21150', 'student'), -('11349', '21150', 'student'), -('11350', '21150', 'student'), -('11351', '21150', 'student'), -('11352', '21150', 'student'), -('11353', '21150', 'student'), -('11354', '21150', 'student'), -('11355', '21150', 'student'), -('11356', '21150', 'student'), -('11357', '21150', 'student'), -('11358', '21150', 'student'), -('11359', '21150', 'student'), -('11360', '21150', 'student'), -('11361', '21150', 'student'), -('11362', '21150', 'student'), -('11363', '21150', 'student'), -('11364', '21150', 'student'), -('11365', '21150', 'student'), -('11366', '21150', 'student'), -('11367', '21150', 'student'), -('11368', '21150', 'student'), -('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'), -('11385', '21200', 'student'), -('11386', '21200', 'student'), -('11387', '21200', 'student'), -('11388', '21200', 'student'), -('11389', '21200', 'student'), -('11390', '21200', 'student'), -('11391', '21200', 'student'), -('11392', '21200', 'student'), -('11393', '21200', 'student'), -('11394', '21200', 'student'), -('11395', '21200', 'student'), -('11396', '21200', 'student'), -('11397', '21200', 'student'), -('11398', '21200', 'student'), -('11399', '21200', 'student'), -('11400', '21200', 'student'), -('11401', '21200', 'student'), -('11402', '21200', 'student'), -('11403', '21200', 'student'), -('11404', '21200', 'student'), -('11405', '21200', 'student'), -('11406', '21200', 'student'), -('11407', '21200', 'student'), -('11408', '21200', 'student'), -('11409', '21200', 'student'), -('11410', '21200', 'student'), -('11411', '21200', 'student'), -('11412', '21200', 'student'), -('11413', '21200', 'student'), -('11414', '21200', 'student'), -('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'), -('11431', '21250', 'student'), -('11432', '21250', 'student'), -('11433', '21250', 'student'), -('11434', '21250', 'student'), -('11435', '21250', 'student'), -('11436', '21250', 'student'), -('11437', '21250', 'student'), -('11438', '21250', 'student'), -('11439', '21250', 'student'), -('11440', '21250', 'student'), -('11441', '21250', 'student'), -('11442', '21250', 'student'), -('11443', '21250', 'student'), -('11444', '21250', 'student'), -('11445', '21250', 'student'), -('11446', '21250', 'student'), -('11447', '21250', 'student'), -('11448', '21250', 'student'), -('11449', '21250', 'student'), -('11450', '21250', 'student'), -('11451', '21250', 'student'), -('11452', '21250', 'student'), -('11453', '21250', 'student'), -('11454', '21250', 'student'), -('11455', '21250', 'student'), -('11456', '21250', 'student'), -('11457', '21250', 'student'), -('11458', '21250', 'student'), -('11459', '21250', 'student'), -('11460', '21250', 'student'), -('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'), -('11477', '21300', 'student'), -('11478', '21300', 'student'), -('11479', '21300', 'student'), -('11480', '21300', 'student'), -('11481', '21300', 'student'), -('11482', '21300', 'student'), -('11483', '21300', 'student'), -('11484', '21300', 'student'), -('11485', '21300', 'student'), -('11486', '21300', 'student'), -('11487', '21300', 'student'), -('11488', '21300', 'student'), -('11489', '21300', 'student'), -('11490', '21300', 'student'), -('11491', '21300', 'student'), -('11492', '21300', 'student'), -('11493', '21300', 'student'), -('11494', '21300', 'student'), -('11495', '21300', 'student'), -('11496', '21300', 'student'), -('11497', '21300', 'student'), -('11498', '21300', 'student'), -('11499', '21300', 'student'), -('11500', '21300', 'student'), -('11501', '21300', 'student'), -('11502', '21300', 'student'), -('11503', '21300', 'student'), -('11504', '21300', 'student'), -('11505', '21300', 'student'), -('11506', '21300', 'student'), -('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'), -('11523', '21350', 'student'), -('11524', '21350', 'student'), -('11525', '21350', 'student'), -('11526', '21350', 'student'), -('11527', '21350', 'student'), -('11528', '21350', 'student'), -('11529', '21350', 'student'), -('11530', '21350', 'student'), -('11531', '21350', 'student'), -('11532', '21350', 'student'), -('11533', '21350', 'student'), -('11534', '21350', 'student'), -('11535', '21350', 'student'), -('11536', '21350', 'student'), -('11537', '21350', 'student'), -('11538', '21350', 'student'), -('11539', '21350', 'student'), -('11540', '21350', 'student'), -('11541', '21350', 'student'), -('11542', '21350', 'student'), -('11543', '21350', 'student'), -('11544', '21350', 'student'), -('11545', '21350', 'student'), -('11546', '21350', 'student'), -('11547', '21350', 'student'), -('11548', '21350', 'student'), -('11549', '21350', 'student'), -('11550', '21350', 'student'), -('11551', '21350', 'student'), -('11552', '21350', 'student'), -('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'), -('11569', '21400', 'student'), -('11570', '21400', 'student'), -('11571', '21400', 'student'), -('11572', '21400', 'student'), -('11573', '21400', 'student'), -('11574', '21400', 'student'), -('11575', '21400', 'student'), -('11576', '21400', 'student'), -('11577', '21400', 'student'), -('11578', '21400', 'student'), -('11579', '21400', 'student'), -('11580', '21400', 'student'), -('11581', '21400', 'student'), -('11582', '21400', 'student'), -('11583', '21400', 'student'), -('11584', '21400', 'student'), -('11585', '21400', 'student'), -('11586', '21400', 'student'), -('11587', '21400', 'student'), -('11588', '21400', 'student'), -('11589', '21400', 'student'), -('11590', '21400', 'student'), -('11591', '21400', 'student'), -('11592', '21400', 'student'), -('11593', '21400', 'student'), -('11594', '21400', 'student'), -('11595', '21400', 'student'), -('11596', '21400', 'student'), -('11597', '21400', 'student'), -('11598', '21400', 'student'), -('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'), -('11615', '21450', 'student'), -('11616', '21450', 'student'), -('11617', '21450', 'student'), -('11618', '21450', 'student'), -('11619', '21450', 'student'), -('11620', '21450', 'student'), -('11621', '21450', 'student'), -('11622', '21450', 'student'), -('11623', '21450', 'student'), -('11624', '21450', 'student'), -('11625', '21450', 'student'), -('11626', '21450', 'student'), -('11627', '21450', 'student'), -('11628', '21450', 'student'), -('11629', '21450', 'student'), -('11630', '21450', 'student'), -('11631', '21450', 'student'), -('11632', '21450', 'student'), -('11633', '21450', 'student'), -('11634', '21450', 'student'), -('11635', '21450', 'student'), -('11636', '21450', 'student'), -('11637', '21450', 'student'), -('11638', '21450', 'student'), -('11639', '21450', 'student'), -('11640', '21450', 'student'), -('11641', '21450', 'student'), -('11642', '21450', 'student'), -('11643', '21450', 'student'), -('11644', '21450', 'student'), -('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'), -('11661', '21500', 'student'), -('11662', '21500', 'student'), -('11663', '21500', 'student'), -('11664', '21500', 'student'), -('11665', '21500', 'student'), -('11666', '21500', 'student'), -('11667', '21500', 'student'), -('11668', '21500', 'student'), -('11669', '21500', 'student'), -('11670', '21500', 'student'), -('11671', '21500', 'student'), -('11672', '21500', 'student'), -('11673', '21500', 'student'), -('11674', '21500', 'student'), -('11675', '21500', 'student'), -('11676', '21500', 'student'), -('11677', '21500', 'student'), -('11678', '21500', 'student'), -('11679', '21500', 'student'), -('11680', '21500', 'student'), -('11681', '21500', 'student'), -('11682', '21500', 'student'), -('11683', '21500', 'student'), -('11684', '21500', 'student'), -('11685', '21500', 'student'), -('11686', '21500', 'student'), -('11687', '21500', 'student'), -('11688', '21500', 'student'), -('11689', '21500', 'student'), -('11690', '21500', 'student'), -('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'), -('11707', '21550', 'student'), -('11708', '21550', 'student'), -('11709', '21550', 'student'), -('11710', '21550', 'student'), -('11711', '21550', 'student'), -('11712', '21550', 'student'), -('11713', '21550', 'student'), -('11714', '21550', 'student'), -('11715', '21550', 'student'), -('11716', '21550', 'student'), -('11717', '21550', 'student'), -('11718', '21550', 'student'), -('11719', '21550', 'student'), -('11720', '21550', 'student'), -('11721', '21550', 'student'), -('11722', '21550', 'student'), -('11723', '21550', 'student'), -('11724', '21550', 'student'), -('11725', '21550', 'student'), -('11726', '21550', 'student'), -('11727', '21550', 'student'), -('11728', '21550', 'student'), -('11729', '21550', 'student'), -('11730', '21550', 'student'), -('11731', '21550', 'student'), -('11732', '21550', 'student'), -('11733', '21550', 'student'), -('11734', '21550', 'student'), -('11735', '21550', 'student'), -('11736', '21550', 'student'), -('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'), -('11753', '21600', 'student'), -('11754', '21600', 'student'), -('11755', '21600', 'student'), -('11756', '21600', 'student'), -('11757', '21600', 'student'), -('11758', '21600', 'student'), -('11759', '21600', 'student'), -('11760', '21600', 'student'), -('11761', '21600', 'student'), -('11762', '21600', 'student'), -('11763', '21600', 'student'), -('11764', '21600', 'student'), -('11765', '21600', 'student'), -('11766', '21600', 'student'), -('11767', '21600', 'student'), -('11768', '21600', 'student'), -('11769', '21600', 'student'), -('11770', '21600', 'student'), -('11771', '21600', 'student'), -('11772', '21600', 'student'), -('11773', '21600', 'student'), -('11774', '21600', 'student'), -('11775', '21600', 'student'), -('11776', '21600', 'student'), -('11777', '21600', 'student'), -('11778', '21600', 'student'), -('11779', '21600', 'student'), -('11780', '21600', 'student'), -('11781', '21600', 'student'), -('11782', '21600', 'student'), -('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'), -('11799', '21650', 'student'), -('11800', '21650', 'student'), -('11801', '21650', 'student'), -('11802', '21650', 'student'), -('11803', '21650', 'student'), -('11804', '21650', 'student'), -('11805', '21650', 'student'), -('11806', '21650', 'student'), -('11807', '21650', 'student'), -('11808', '21650', 'student'), -('11809', '21650', 'student'), -('11810', '21650', 'student'), -('11811', '21650', 'student'), -('11812', '21650', 'student'), -('11813', '21650', 'student'), -('11814', '21650', 'student'), -('11815', '21650', 'student'), -('11816', '21650', 'student'), -('11817', '21650', 'student'), -('11818', '21650', 'student'), -('11819', '21650', 'student'), -('11820', '21650', 'student'), -('11821', '21650', 'student'), -('11822', '21650', 'student'), -('11823', '21650', 'student'), -('11824', '21650', 'student'), -('11825', '21650', 'student'), -('11826', '21650', 'student'), -('11827', '21650', 'student'), -('11828', '21650', 'student'), -('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'), -('11845', '21700', 'student'), -('11846', '21700', 'student'), -('11847', '21700', 'student'), -('11848', '21700', 'student'), -('11849', '21700', 'student'), -('11850', '21700', 'student'), -('11851', '21700', 'student'), -('11852', '21700', 'student'), -('11853', '21700', 'student'), -('11854', '21700', 'student'), -('11855', '21700', 'student'), -('11856', '21700', 'student'), -('11857', '21700', 'student'), -('11858', '21700', 'student'), -('11859', '21700', 'student'), -('11860', '21700', 'student'), -('11861', '21700', 'student'), -('11862', '21700', 'student'), -('11863', '21700', 'student'), -('11864', '21700', 'student'), -('11865', '21700', 'student'), -('11866', '21700', 'student'), -('11867', '21700', 'student'), -('11868', '21700', 'student'), -('11869', '21700', 'student'), -('11870', '21700', 'student'), -('11871', '21700', 'student'), -('11872', '21700', 'student'), -('11873', '21700', 'student'), -('11874', '21700', 'student'), -('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'), -('11891', '21750', 'student'), -('11892', '21750', 'student'), -('11893', '21750', 'student'), -('11894', '21750', 'student'), -('11895', '21750', 'student'), -('11896', '21750', 'student'), -('11897', '21750', 'student'), -('11898', '21750', 'student'), -('11899', '21750', 'student'), -('11900', '21750', 'student'), -('11901', '21750', 'student'), -('11902', '21750', 'student'), -('11903', '21750', 'student'), -('11904', '21750', 'student'), -('11905', '21750', 'student'), -('11906', '21750', 'student'), -('11907', '21750', 'student'), -('11908', '21750', 'student'), -('11909', '21750', 'student'), -('11910', '21750', 'student'), -('11911', '21750', 'student'), -('11912', '21750', 'student'), -('11913', '21750', 'student'), -('11914', '21750', 'student'), -('11915', '21750', 'student'), -('11916', '21750', 'student'), -('11917', '21750', 'student'), -('11918', '21750', 'student'), -('11919', '21750', 'student'), -('11920', '21750', 'student'), -('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'), -('11937', '21800', 'student'), -('11938', '21800', 'student'), -('11939', '21800', 'student'), -('11940', '21800', 'student'), -('11941', '21800', 'student'), -('11942', '21800', 'student'), -('11943', '21800', 'student'), -('11944', '21800', 'student'), -('11945', '21800', 'student'), -('11946', '21800', 'student'), -('11947', '21800', 'student'), -('11948', '21800', 'student'), -('11949', '21800', 'student'), -('11950', '21800', 'student'), -('11951', '21800', 'student'), -('11952', '21800', 'student'), -('11953', '21800', 'student'), -('11954', '21800', 'student'), -('11955', '21800', 'student'), -('11956', '21800', 'student'), -('11957', '21800', 'student'), -('11958', '21800', 'student'), -('11959', '21800', 'student'), -('11960', '21800', 'student'), -('11961', '21800', 'student'), -('11962', '21800', 'student'), -('11963', '21800', 'student'), -('11964', '21800', 'student'), -('11965', '21800', 'student'), -('11966', '21800', 'student'), -('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'), -('11983', '21850', 'student'), -('11984', '21850', 'student'), -('11985', '21850', 'student'), -('11986', '21850', 'student'), -('11987', '21850', 'student'), -('11988', '21850', 'student'), -('11989', '21850', 'student'), -('11990', '21850', 'student'), -('11991', '21850', 'student'), -('11992', '21850', 'student'), -('11993', '21850', 'student'), -('11994', '21850', 'student'), -('11995', '21850', 'student'), -('11996', '21850', 'student'), -('11997', '21850', 'student'), -('11998', '21850', 'student'), -('11999', '21850', 'student'), -('12000', '21850', 'student'), -('12001', '21850', 'student'), -('12002', '21850', 'student'), -('12003', '21850', 'student'), -('12004', '21850', 'student'), -('12005', '21850', 'student'), -('12006', '21850', 'student'), -('12007', '21850', 'student'), -('12008', '21850', 'student'), -('12009', '21850', 'student'), -('12010', '21850', 'student'), -('12011', '21850', 'student'), -('12012', '21850', 'student'), -('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'), -('12029', '21900', 'student'), -('12030', '21900', 'student'), -('12031', '21900', 'student'), -('12032', '21900', 'student'), -('12033', '21900', 'student'), -('12034', '21900', 'student'), -('12035', '21900', 'student'), -('12036', '21900', 'student'), -('12037', '21900', 'student'), -('12038', '21900', 'student'), -('12039', '21900', 'student'), -('12040', '21900', 'student'), -('12041', '21900', 'student'), -('12042', '21900', 'student'), -('12043', '21900', 'student'), -('12044', '21900', 'student'), -('12045', '21900', 'student'), -('12046', '21900', 'student'), -('12047', '21900', 'student'), -('12048', '21900', 'student'), -('12049', '21900', 'student'), -('12050', '21900', 'student'), -('12051', '21900', 'student'), -('12052', '21900', 'student'), -('12053', '21900', 'student'), -('12054', '21900', 'student'), -('12055', '21900', 'student'), -('12056', '21900', 'student'), -('12057', '21900', 'student'), -('12058', '21900', 'student'), -('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'), -('12075', '21950', 'student'), -('12076', '21950', 'student'), -('12077', '21950', 'student'), -('12078', '21950', 'student'), -('12079', '21950', 'student'), -('12080', '21950', 'student'), -('12081', '21950', 'student'), -('12082', '21950', 'student'), -('12083', '21950', 'student'), -('12084', '21950', 'student'), -('12085', '21950', 'student'), -('12086', '21950', 'student'), -('12087', '21950', 'student'), -('12088', '21950', 'student'), -('12089', '21950', 'student'), -('12090', '21950', 'student'), -('12091', '21950', 'student'), -('12092', '21950', 'student'), -('12093', '21950', 'student'), -('12094', '21950', 'student'), -('12095', '21950', 'student'), -('12096', '21950', 'student'), -('12097', '21950', 'student'), -('12098', '21950', 'student'), -('12099', '21950', 'student'), -('12100', '21950', 'student'), -('12101', '21950', 'student'), -('12102', '21950', 'student'), -('12103', '21950', 'student'), -('12104', '21950', 'student'), -('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'), -('12121', '22000', 'student'), -('12122', '22000', 'student'), -('12123', '22000', 'student'), -('12124', '22000', 'student'), -('12125', '22000', 'student'), -('12126', '22000', 'student'), -('12127', '22000', 'student'), -('12128', '22000', 'student'), -('12129', '22000', 'student'), -('12130', '22000', 'student'), -('12131', '22000', 'student'), -('12132', '22000', 'student'), -('12133', '22000', 'student'), -('12134', '22000', 'student'), -('12135', '22000', 'student'), -('12136', '22000', 'student'), -('12137', '22000', 'student'), -('12138', '22000', 'student'), -('12139', '22000', 'student'), -('12140', '22000', 'student'), -('12141', '22000', 'student'), -('12142', '22000', 'student'), -('12143', '22000', 'student'), -('12144', '22000', 'student'), -('12145', '22000', 'student'), -('12146', '22000', 'student'), -('12147', '22000', 'student'), -('12148', '22000', 'student'), -('12149', '22000', 'student'), -('12150', '22000', 'student'), -('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'), -('12167', '22050', 'student'), -('12168', '22050', 'student'), -('12169', '22050', 'student'), -('12170', '22050', 'student'), -('12171', '22050', 'student'), -('12172', '22050', 'student'), -('12173', '22050', 'student'), -('12174', '22050', 'student'), -('12175', '22050', 'student'), -('12176', '22050', 'student'), -('12177', '22050', 'student'), -('12178', '22050', 'student'), -('12179', '22050', 'student'), -('12180', '22050', 'student'), -('12181', '22050', 'student'), -('12182', '22050', 'student'), -('12183', '22050', 'student'), -('12184', '22050', 'student'), -('12185', '22050', 'student'), -('12186', '22050', 'student'), -('12187', '22050', 'student'), -('12188', '22050', 'student'), -('12189', '22050', 'student'), -('12190', '22050', 'student'), -('12191', '22050', 'student'), -('12192', '22050', 'student'), -('12193', '22050', 'student'), -('12194', '22050', 'student'), -('12195', '22050', 'student'), -('12196', '22050', 'student'), -('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'), -('12213', '22100', 'student'), -('12214', '22100', 'student'), -('12215', '22100', 'student'), -('12216', '22100', 'student'), -('12217', '22100', 'student'), -('12218', '22100', 'student'), -('12219', '22100', 'student'), -('12220', '22100', 'student'), -('12221', '22100', 'student'), -('12222', '22100', 'student'), -('12223', '22100', 'student'), -('12224', '22100', 'student'), -('12225', '22100', 'student'), -('12226', '22100', 'student'), -('12227', '22100', 'student'), -('12228', '22100', 'student'), -('12229', '22100', 'student'), -('12230', '22100', 'student'), -('12231', '22100', 'student'), -('12232', '22100', 'student'), -('12233', '22100', 'student'), -('12234', '22100', 'student'), -('12235', '22100', 'student'), -('12236', '22100', 'student'), -('12237', '22100', 'student'), -('12238', '22100', 'student'), -('12239', '22100', 'student'), -('12240', '22100', 'student'), -('12241', '22100', 'student'), -('12242', '22100', 'student'), -('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'), -('12259', '22150', 'student'), -('12260', '22150', 'student'), -('12261', '22150', 'student'), -('12262', '22150', 'student'), -('12263', '22150', 'student'), -('12264', '22150', 'student'), -('12265', '22150', 'student'), -('12266', '22150', 'student'), -('12267', '22150', 'student'), -('12268', '22150', 'student'), -('12269', '22150', 'student'), -('12270', '22150', 'student'), -('12271', '22150', 'student'), -('12272', '22150', 'student'), -('12273', '22150', 'student'), -('12274', '22150', 'student'), -('12275', '22150', 'student'), -('12276', '22150', 'student'), -('12277', '22150', 'student'), -('12278', '22150', 'student'), -('12279', '22150', 'student'), -('12280', '22150', 'student'), -('12281', '22150', 'student'), -('12282', '22150', 'student'), -('12283', '22150', 'student'), -('12284', '22150', 'student'), -('12285', '22150', 'student'), -('12286', '22150', 'student'), -('12287', '22150', 'student'), -('12288', '22150', 'student'), -('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'), -('12305', '22200', 'student'), -('12306', '22200', 'student'), -('12307', '22200', 'student'), -('12308', '22200', 'student'), -('12309', '22200', 'student'), -('12310', '22200', 'student'), -('12311', '22200', 'student'), -('12312', '22200', 'student'), -('12313', '22200', 'student'), -('12314', '22200', 'student'), -('12315', '22200', 'student'), -('12316', '22200', 'student'), -('12317', '22200', 'student'), -('12318', '22200', 'student'), -('12319', '22200', 'student'), -('12320', '22200', 'student'), -('12321', '22200', 'student'), -('12322', '22200', 'student'), -('12323', '22200', 'student'), -('12324', '22200', 'student'), -('12325', '22200', 'student'), -('12326', '22200', 'student'), -('12327', '22200', 'student'), -('12328', '22200', 'student'), -('12329', '22200', 'student'), -('12330', '22200', 'student'), -('12331', '22200', 'student'), -('12332', '22200', 'student'), -('12333', '22200', 'student'), -('12334', '22200', 'student'), -('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'), -('12351', '22250', 'student'), -('12352', '22250', 'student'), -('12353', '22250', 'student'), -('12354', '22250', 'student'), -('12355', '22250', 'student'), -('12356', '22250', 'student'), -('12357', '22250', 'student'), -('12358', '22250', 'student'), -('12359', '22250', 'student'), -('12360', '22250', 'student'), -('12361', '22250', 'student'), -('12362', '22250', 'student'), -('12363', '22250', 'student'), -('12364', '22250', 'student'), -('12365', '22250', 'student'), -('12366', '22250', 'student'), -('12367', '22250', 'student'), -('12368', '22250', 'student'), -('12369', '22250', 'student'), -('12370', '22250', 'student'), -('12371', '22250', 'student'), -('12372', '22250', 'student'), -('12373', '22250', 'student'), -('12374', '22250', 'student'), -('12375', '22250', 'student'), -('12376', '22250', 'student'), -('12377', '22250', 'student'), -('12378', '22250', 'student'), -('12379', '22250', 'student'), -('12380', '22250', 'student'), -('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'), -('12397', '22300', 'student'), -('12398', '22300', 'student'), -('12399', '22300', 'student'), -('12400', '22300', 'student'), -('12401', '22300', 'student'), -('12402', '22300', 'student'), -('12403', '22300', 'student'), -('12404', '22300', 'student'), -('12405', '22300', 'student'), -('12406', '22300', 'student'), -('12407', '22300', 'student'), -('12408', '22300', 'student'), -('12409', '22300', 'student'), -('12410', '22300', 'student'), -('12411', '22300', 'student'), -('12412', '22300', 'student'), -('12413', '22300', 'student'), -('12414', '22300', 'student'), -('12415', '22300', 'student'), -('12416', '22300', 'student'), -('12417', '22300', 'student'), -('12418', '22300', 'student'), -('12419', '22300', 'student'), -('12420', '22300', 'student'), -('12421', '22300', 'student'), -('12422', '22300', 'student'), -('12423', '22300', 'student'), -('12424', '22300', 'student'), -('12425', '22300', 'student'), -('12426', '22300', 'student'), -('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'), -('12443', '22350', 'student'), -('12444', '22350', 'student'), -('12445', '22350', 'student'), -('12446', '22350', 'student'), -('12447', '22350', 'student'), -('12448', '22350', 'student'), -('12449', '22350', 'student'), -('12450', '22350', 'student'), -('12451', '22350', 'student'), -('12452', '22350', 'student'), -('12453', '22350', 'student'), -('12454', '22350', 'student'), -('12455', '22350', 'student'), -('12456', '22350', 'student'), -('12457', '22350', 'student'), -('12458', '22350', 'student'), -('12459', '22350', 'student'), -('12460', '22350', 'student'), -('12461', '22350', 'student'), -('12462', '22350', 'student'), -('12463', '22350', 'student'), -('12464', '22350', 'student'), -('12465', '22350', 'student'), -('12466', '22350', 'student'), -('12467', '22350', 'student'), -('12468', '22350', 'student'), -('12469', '22350', 'student'), -('12470', '22350', 'student'), -('12471', '22350', 'student'), -('12472', '22350', 'student'), -('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'), -('12489', '22400', 'student'), -('12490', '22400', 'student'), -('12491', '22400', 'student'), -('12492', '22400', 'student'), -('12493', '22400', 'student'), -('12494', '22400', 'student'), -('12495', '22400', 'student'), -('12496', '22400', 'student'), -('12497', '22400', 'student'), -('12498', '22400', 'student'), -('12499', '22400', 'student'), -('12500', '22400', 'student'), -('12501', '22400', 'student'), -('12502', '22400', 'student'), -('12503', '22400', 'student'), -('12504', '22400', 'student'), -('12505', '22400', 'student'), -('12506', '22400', 'student'), -('12507', '22400', 'student'), -('12508', '22400', 'student'), -('12509', '22400', 'student'), -('12510', '22400', 'student'), -('12511', '22400', 'student'), -('12512', '22400', 'student'), -('12513', '22400', 'student'), -('12514', '22400', 'student'), -('12515', '22400', 'student'), -('12516', '22400', 'student'), -('12517', '22400', 'student'), -('12518', '22400', 'student'), -('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'), -('12535', '22450', 'student'), -('12536', '22450', 'student'), -('12537', '22450', 'student'), -('12538', '22450', 'student'), -('12539', '22450', 'student'), -('12540', '22450', 'student'), -('12541', '22450', 'student'), -('12542', '22450', 'student'), -('12543', '22450', 'student'), -('12544', '22450', 'student'), -('12545', '22450', 'student'), -('12546', '22450', 'student'), -('12547', '22450', 'student'), -('12548', '22450', 'student'), -('12549', '22450', 'student'), -('12550', '22450', 'student'), -('12551', '22450', 'student'), -('12552', '22450', 'student'), -('12553', '22450', 'student'), -('12554', '22450', 'student'), -('12555', '22450', 'student'), -('12556', '22450', 'student'), -('12557', '22450', 'student'), -('12558', '22450', 'student'), -('12559', '22450', 'student'), -('12560', '22450', 'student'), -('12561', '22450', 'student'), -('12562', '22450', 'student'), -('12563', '22450', 'student'), -('12564', '22450', 'student'), -('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'), -('12581', '22500', 'student'), -('12582', '22500', 'student'), -('12583', '22500', 'student'), -('12584', '22500', 'student'), -('12585', '22500', 'student'), -('12586', '22500', 'student'), -('12587', '22500', 'student'), -('12588', '22500', 'student'), -('12589', '22500', 'student'), -('12590', '22500', 'student'), -('12591', '22500', 'student'), -('12592', '22500', 'student'), -('12593', '22500', 'student'), -('12594', '22500', 'student'), -('12595', '22500', 'student'), -('12596', '22500', 'student'), -('12597', '22500', 'student'), -('12598', '22500', 'student'), -('12599', '22500', 'student'), -('12600', '22500', 'student'), -('12601', '22500', 'student'), -('12602', '22500', 'student'), -('12603', '22500', 'student'), -('12604', '22500', 'student'), -('12605', '22500', 'student'), -('12606', '22500', 'student'), -('12607', '22500', 'student'), -('12608', '22500', 'student'), -('12609', '22500', 'student'), -('12610', '22500', 'student'), -('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'), -('12627', '22550', 'student'), -('12628', '22550', 'student'), -('12629', '22550', 'student'), -('12630', '22550', 'student'), -('12631', '22550', 'student'), -('12632', '22550', 'student'), -('12633', '22550', 'student'), -('12634', '22550', 'student'), -('12635', '22550', 'student'), -('12636', '22550', 'student'), -('12637', '22550', 'student'), -('12638', '22550', 'student'), -('12639', '22550', 'student'), -('12640', '22550', 'student'), -('12641', '22550', 'student'), -('12642', '22550', 'student'), -('12643', '22550', 'student'), -('12644', '22550', 'student'), -('12645', '22550', 'student'), -('12646', '22550', 'student'), -('12647', '22550', 'student'), -('12648', '22550', 'student'), -('12649', '22550', 'student'), -('12650', '22550', 'student'), -('12651', '22550', 'student'), -('12652', '22550', 'student'), -('12653', '22550', 'student'), -('12654', '22550', 'student'), -('12655', '22550', 'student'), -('12656', '22550', 'student'), -('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'), -('12686', '90100', 'student'), -('12687', '90100', 'student'), -('12688', '90100', 'student'), -('12689', '90100', 'student'), -('12690', '90100', 'student'), -('12691', '90100', 'student'), -('12692', '90100', 'student'), -('12693', '90100', 'student'), -('12694', '90100', 'student'), -('12695', '90100', 'student'), -('12696', '90100', 'student'), -('12697', '90100', 'student'), -('12698', '90100', 'student'), -('12699', '90100', 'student'), -('12700', '90100', 'student'), -('12701', '90100', 'student'), -('12702', '90100', 'student'), -('12703', '90100', 'student'), -('12704', '90100', 'student'), -('12705', '90100', 'student'), -('12706', '90100', 'student'), -('12707', '90100', 'student'), -('12708', '90100', 'student'), -('12709', '90100', 'student'), -('12710', '90100', 'student'), -('12711', '90100', 'student'), -('12712', '90100', 'student'), -('12713', '90100', 'student'), -('12714', '90100', 'student'), -('12715', '90100', 'student'), -('12716', '90100', 'student'), -('12717', '90100', 'student'), -('12718', '90100', 'student'), -('12719', '90100', 'student'), -('12720', '90100', 'student'), -('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'), -('12759', '90200', 'student'), -('12760', '90200', 'student'), -('12761', '90200', 'student'), -('12762', '90200', 'student'), -('12763', '90200', 'student'), -('12764', '90200', 'student'), -('12765', '90200', 'student'), -('12766', '90200', 'student'), -('12767', '90200', 'student'), -('12768', '90200', 'student'), -('12769', '90200', 'student'), -('12770', '90200', 'student'), -('12771', '90200', 'student'), -('12772', '90200', 'student'), -('12773', '90200', 'student'), -('12774', '90200', 'student'), -('12775', '90200', 'student'), -('12776', '90200', 'student'), -('12777', '90200', 'student'), -('12778', '90200', 'student'), -('12779', '90200', 'student'), -('12780', '90200', 'student'), -('12781', '90200', 'student'), -('12782', '90200', 'student'), -('12783', '90200', 'student'), -('12784', '90200', 'student'), -('12785', '90200', 'student'), -('12786', '90200', 'student'), -('12787', '90200', 'student'), -('12788', '90200', 'student'), -('12789', '90200', 'student'), -('12790', '90200', 'student'), -('12791', '90200', 'student'), -('12792', '90200', 'student'), -('12793', '90200', 'student'), -('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'), -('12832', '90300', 'student'), -('12833', '90300', 'student'), -('12834', '90300', 'student'), -('12835', '90300', 'student'), -('12836', '90300', 'student'), -('12837', '90300', 'student'), -('12838', '90300', 'student'), -('12839', '90300', 'student'), -('12840', '90300', 'student'), -('12841', '90300', 'student'), -('12842', '90300', 'student'), -('12843', '90300', 'student'), -('12844', '90300', 'student'), -('12845', '90300', 'student'), -('12846', '90300', 'student'), -('12847', '90300', 'student'), -('12848', '90300', 'student'), -('12849', '90300', 'student'), -('12850', '90300', 'student'), -('12851', '90300', 'student'), -('12852', '90300', 'student'), -('12853', '90300', 'student'), -('12854', '90300', 'student'), -('12855', '90300', 'student'), -('12856', '90300', 'student'), -('12857', '90300', 'student'), -('12858', '90300', 'student'), -('12859', '90300', 'student'), -('12860', '90300', 'student'), -('12861', '90300', 'student'), -('12862', '90300', 'student'), -('12863', '90300', 'student'), -('12864', '90300', 'student'), -('12865', '90300', 'student'), -('12866', '90300', 'student'), -('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') +('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'), -('12703', '800000002'), -('12658', '800000003'), -('11357', '800000004'), -('11505', '800000005'), -('11396', '800000006'), -('11166', '800000007'), -('11209', '800000008'), -('10264', '800000009'), -('12488', '800000010'), -('11808', '800000011'), -('13212', '800000011'), -('12178', '800000012'), -('11368', '800000013'), -('12824', '800000014'), -('12160', '800000015'), -('11972', '800000016'), -('12653', '800000017'), -('11729', '800000018'), -('12626', '800000019'), -('12817', '800000020'), -('12320', '800000022'), -('10146', '800000023'), -('10080', '800000024'), -('13100', '800000026'), -('11620', '800000027'), -('11447', '800000028'), -('10076', '800000029'), -('12809', '800000029'), -('11970', '800000030'), -('11484', '800000031'), -('11821', '800000032'), -('13184', '800000032'), -('12338', '800000033'), -('12696', '800000033'), -('13122', '800000033'), -('12588', '800000034'), -('11195', '800000035'), -('12701', '800000036'), -('10019', '800000037'), -('11804', '800000038'), -('13196', '800000038'), -('10128', '800000039'), -('11758', '800000040'), -('11220', '800000041'), -('11707', '800000042'), -('12577', '800000043'), -('11135', '800000044'), -('10863', '800000045'), -('10153', '800000046'), -('11745', '800000046'), -('11671', '800000047'), -('12890', '800000048'), -('10649', '800000049'), -('12972', '800000051'), -('11498', '800000052'), -('13199', '800000052'), -('11737', '800000053'), -('11529', '800000054'), -('12447', '800000055'), -('10713', '800000056'), -('13177', '800000056'), -('11544', '800000057'), -('12717', '800000058'), -('12444', '800000059'), -('12330', '800000060'), -('12740', '800000061'), -('10864', '800000062'), -('12537', '800000063'), -('10522', '800000064'), -('12371', '800000065'), -('12284', '800000066'), -('11588', '800000067'), -('11925', '800000067'), -('12884', '800000067'), -('12954', '800000067'), -('12071', '800000068'), -('11617', '800000069'), -('11266', '800000070'), -('13023', '800000072'), -('12893', '800000073'), -('10390', '800000074'), -('10113', '800000075'), -('12209', '800000076'), -('12216', '800000076'), -('10362', '800000077'), -('10405', '800000077'), -('12705', '800000078'), -('10144', '800000079'), -('12652', '800000080'), -('10012', '800000081'), -('12133', '800000082'), -('11564', '800000084'), -('10885', '800000085'), -('13226', '800000085'), -('10187', '800000086'), -('11555', '800000087'), -('12539', '800000088'), -('10137', '800000089'), -('10026', '800000090'), -('12747', '800000091'), -('12799', '800000092'), -('11402', '800000093'), -('13167', '800000093'), -('10311', '800000094'), -('11415', '800000095'), -('12358', '800000096'), -('13096', '800000096'), -('12460', '800000097'), -('10365', '800000098'), -('12566', '800000098'), -('10202', '800000099'), -('10368', '800000100'), -('12806', '800000100'), -('12728', '800000101'), -('10190', '800000102'), -('13189', '800000102'), -('11796', '800000103'), -('13003', '800000104'), -('10848', '800000105'), -('10949', '800000106'), -('12847', '800000107'), -('10520', '800000108'), -('10052', '800000109'), -('10050', '800000110'), -('11033', '800000111'), -('12009', '800000112'), -('12096', '800000113'), -('10266', '800000114'), -('11059', '800000115'), -('11952', '800000116'), -('12480', '800000118'), -('11151', '800000119'), -('11152', '800000120'), -('11793', '800000121'), -('10550', '800000122'), -('11080', '800000123'), -('10338', '800000124'), -('11874', '800000125'), -('10947', '800000126'), -('11655', '800000127'), -('12678', '800000128'), -('11367', '800000129'), -('13041', '800000130'), -('11873', '800000132'), -('10820', '800000133'), -('13079', '800000134'), -('10461', '800000135'), -('12535', '800000136'), -('12236', '800000137'), -('12969', '800000138'), -('10736', '800000139'), -('12272', '800000141'), -('10684', '800000142'), -('12779', '800000143'), -('11541', '800000144'), -('12751', '800000145'), -('13149', '800000146'), -('10974', '800000147'), -('12639', '800000148'), -('11936', '800000149'), -('12279', '800000150'), -('12879', '800000151'), -('10278', '800000152'), -('10059', '800000153'), -('11112', '800000154'), -('10083', '800000155'), -('12941', '800000156'), -('11353', '800000157'), -('11584', '800000158'), -('11385', '800000159'), -('11940', '800000160'), -('11806', '800000161'), -('11842', '800000163'), -('11381', '800000164'), -('11616', '800000165'), -('12294', '800000165'), -('11120', '800000166'), -('13210', '800000166'), -('12047', '800000167'), -('10231', '800000168'), -('11852', '800000169'), -('10315', '800000170'), -('13046', '800000171'), -('12470', '800000172'), -('11400', '800000173'), -('12614', '800000174'), -('12903', '800000175'), -('10407', '800000176'), -('11307', '800000177'), -('12838', '800000178'), -('12187', '800000180'), -('10852', '800000181'), -('12155', '800000182'), -('10173', '800000183'), -('12319', '800000184'), -('10872', '800000186'), -('10316', '800000187'), -('10621', '800000188'), -('13203', '800000188'), -('10529', '800000189'), -('10322', '800000190'), -('13047', '800000191'), -('11892', '800000192'), -('12393', '800000192'), -('12271', '800000193'), -('10590', '800000194'), -('11528', '800000195'), -('13209', '800000195'), -('11515', '800000196'), -('12361', '800000197'), -('10377', '800000198'), -('12975', '800000199'), -('11845', '800000200'), -('11466', '800000201'), -('11914', '800000202'), -('10336', '800000203'), -('11472', '800000203'), -('12916', '800000204'), -('13031', '800000205'), -('11903', '800000206'), -('13215', '800000206'), -('10180', '800000207'), -('12620', '800000208'), -('12341', '800000209'), -('12042', '800000210'), -('10951', '800000211'), -('12041', '800000212'), -('12128', '800000213'), -('12229', '800000214'), -('11500', '800000215'), -('13232', '800000215'), -('11455', '800000216'), -('12342', '800000217'), -('11603', '800000218'), -('10768', '800000219'), -('10518', '800000220'), -('13017', '800000221'), -('13054', '800000222'), -('10033', '800000223'), -('11290', '800000223'), -('10072', '800000224'), -('11319', '800000225'), -('11397', '800000226'), -('13032', '800000227'), -('10963', '800000228'), -('12668', '800000229'), -('11016', '800000230'), -('11624', '800000231'), -('10911', '800000232'), -('11915', '800000233'), -('13092', '800000234'), -('13059', '800000235'), -('12694', '800000236'), -('10111', '800000237'), -('11436', '800000238'), -('11051', '800000239'), -('12519', '800000240'), -('11306', '800000241'), -('11847', '800000242'), -('12211', '800000243'), -('12868', '800000244'), -('10730', '800000245'), -('11773', '800000246'), -('13176', '800000246'), -('13045', '800000247'), -('13150', '800000247'), -('10999', '800000248'), -('11967', '800000249'), -('11656', '800000251'), -('13102', '800000252'), -('10409', '800000253'), -('12734', '800000254'), -('11669', '800000255'), -('11000', '800000256'), -('12248', '800000257'), -('12813', '800000257'), -('11876', '800000258'), -('12063', '800000260'), -('10503', '800000261'), -('10225', '800000262'), -('11329', '800000263'), -('12448', '800000264'), -('13195', '800000264'), -('11787', '800000265'), -('11285', '800000266'), -('11449', '800000267'), -('12686', '800000268'), -('12525', '800000269'), -('12276', '800000270'), -('13173', '800000270'), -('12514', '800000271'), -('12088', '800000272'), -('10898', '800000273'), -('13073', '800000274'), -('12238', '800000275'), -('11743', '800000276'), -('12489', '800000277'), -('12120', '800000278'), -('11715', '800000279'), -('11825', '800000280'), -('12388', '800000281'), -('11908', '800000282'), -('11121', '800000284'), -('13026', '800000287'), -('12172', '800000288'), -('12822', '800000289'), -('12378', '800000290'), -('12578', '800000290'), -('12265', '800000291'), -('11726', '800000293'), -('11273', '800000294'), -('12223', '800000295'), -('12174', '800000296'), -('11156', '800000297'), -('13042', '800000298'), -('10537', '800000299'), -('12823', '800000300'), -('12940', '800000301'), -('10943', '800000302'), -('12983', '800000303'), -('13022', '800000305'), -('10749', '800000306'), -('12523', '800000307'), -('11517', '800000308'), -('11477', '800000309'), -('11575', '800000310'), -('12680', '800000311'), -('11008', '800000312'), -('11595', '800000313'), -('13012', '800000314'), -('13067', '800000314'), -('12709', '800000315'), -('10752', '800000316'), -('11086', '800000317'), -('13164', '800000317'), -('10642', '800000318'), -('11050', '800000318'), -('11786', '800000318'), -('10049', '800000319'), -('12056', '800000321'), -('10628', '800000322'), -('11287', '800000323'), -('11833', '800000324'), -('10778', '800000325'), -('11909', '800000326'), -('10936', '800000327'), -('10601', '800000328'), -('11382', '800000329'), -('11305', '800000330'), -('10913', '800000331'), -('11754', '800000332'), -('12840', '800000333'), -('10822', '800000334'), -('10074', '800000336'), -('10367', '800000337'), -('10115', '800000338'), -('10131', '800000339'), -('13019', '800000340'), -('12742', '800000341'), -('12948', '800000341'), -('10361', '800000342'), -('11114', '800000343'), -('13025', '800000344'), -('13072', '800000345'), -('12087', '800000346'), -('12202', '800000347'), -('10305', '800000348'), -('10286', '800000349'), -('11963', '800000350'), -('12671', '800000351'), -('11004', '800000352'), -('12955', '800000353'), -('13108', '800000353'), -('11674', '800000354'), -('11370', '800000355'), -('12493', '800000356'), -('11476', '800000357'), -('10321', '800000358'), -('11181', '800000359'), -('11187', '800000360'), -('13120', '800000361'), -('10806', '800000362'), -('12917', '800000363'), -('11607', '800000364'), -('10401', '800000365'), -('10287', '800000366'), -('12190', '800000367'), -('10701', '800000368'), -('12541', '800000369'), -('11462', '800000370'), -('12760', '800000371'), -('11460', '800000372'), -('11828', '800000373'), -('12600', '800000374'), -('10930', '800000375'), -('11377', '800000376'), -('13154', '800000376'), -('11605', '800000377'), -('12991', '800000378'), -('11887', '800000379'), -('11182', '800000380'), -('10702', '800000381'), -('11974', '800000382'), -('12877', '800000382'), -('12528', '800000383'), -('10027', '800000384'), -('11278', '800000384'), -('12486', '800000384'), -('11211', '800000385'), -('12685', '800000386'), -('13095', '800000386'), -('11961', '800000387'), -('11406', '800000388'), -('13119', '800000389'), -('10764', '800000390'), -('11042', '800000393'), -('12268', '800000394'), -('12957', '800000395'), -('12527', '800000396'), -('10271', '800000397'), -('10712', '800000398'), -('12572', '800000399'), -('11569', '800000400'), -('12875', '800000401'), -('11064', '800000402'), -('10516', '800000403'), -('10780', '800000404'), -('10807', '800000404'), -('12741', '800000405'), -('11527', '800000406'), -('12730', '800000407'), -('10685', '800000408'), -('10972', '800000409'), -('10489', '800000410'), -('10976', '800000411'), -('11354', '800000412'), -('11188', '800000413'), -('10062', '800000414'), -('12292', '800000415'), -('11231', '800000416'), -('10723', '800000417'), -('13202', '800000417'), -('11851', '800000418'), -('10444', '800000419'), -('11131', '800000421'), -('10213', '800000423'), -('11390', '800000424'), -('12222', '800000425'), -('10276', '800000426'), -('10394', '800000427'), -('10234', '800000428'), -('12775', '800000429'), -('12996', '800000430'), -('12412', '800000431'), -('12672', '800000432'), -('12407', '800000433'), -('13182', '800000433'), -('11628', '800000434'), -('10149', '800000435'), -('11261', '800000436'), -('10051', '800000437'), -('12629', '800000438'), -('11748', '800000439'), -('12867', '800000440'), -('10247', '800000441'), -('11180', '800000442'), -('10139', '800000443'), -('11102', '800000444'), -('12594', '800000445'), -('12249', '800000446'), -('12915', '800000447'), -('11697', '800000448'), -('11789', '800000449'), -('10402', '800000450'), -('11339', '800000451'), -('12758', '800000452'), -('12290', '800000454'), -('11190', '800000455'), -('13159', '800000456'), -('10063', '800000457'), -('11824', '800000458'), -('13175', '800000458'), -('10232', '800000459'), -('10960', '800000460'), -('10086', '800000461'), -('10169', '800000462'), -('10257', '800000463'), -('11314', '800000464'), -('11371', '800000465'), -('11111', '800000466'), -('10304', '800000467'), -('10692', '800000467'), -('10633', '800000468'), -('11766', '800000469'), -('12335', '800000470'), -('10397', '800000471'), -('12914', '800000472'), -('13138', '800000472'), -('11725', '800000473'), -('11250', '800000474'), -('10404', '800000475'), -('11554', '800000477'), -('12359', '800000478'), -('10608', '800000479'), -('11301', '800000480'), -('11790', '800000481'), -('10406', '800000482'), -('13109', '800000482'), -('12757', '800000483'), -('12391', '800000484'), -('12763', '800000485'), -('10673', '800000486'), -('11233', '800000487'), -('10965', '800000488'), -('12091', '800000489'), -('10291', '800000490'), -('10571', '800000491'), -('12769', '800000492'), -('12752', '800000493'), -('10983', '800000494'), -('10299', '800000495'), -('12721', '800000496'), -('11807', '800000497'), -('10222', '800000498'), -('12561', '800000499'), -('11085', '800000500'), -('11695', '800000501'), -('12553', '800000502'), -('10521', '800000503'), -('10163', '800000504'), -('11191', '800000505'), -('11222', '800000506'), -('10004', '800000507'), -('12681', '800000508'), -('11989', '800000509'), -('13207', '800000509'), -('12944', '800000510'), -('10412', '800000511'), -('10540', '800000512'), -('10008', '800000513'), -('12235', '800000514'), -('10667', '800000515'), -('12953', '800000516'), -('12965', '800000517'), -('12173', '800000518'), -('11923', '800000519'), -('11666', '800000520'), -('12352', '800000521'), -('10152', '800000522'), -('11882', '800000522'), -('13044', '800000523'), -('13111', '800000523'), -('12019', '800000524'), -('10168', '800000525'), -('12892', '800000526'), -('11537', '800000527'), -('12778', '800000529'), -('11235', '800000530'), -('10699', '800000531'), -('12336', '800000532'), -('12062', '800000533'), -('11299', '800000534'), -('10333', '800000535'), -('11196', '800000536'), -('11013', '800000537'), -('11172', '800000538'), -('11615', '800000539'), -('11673', '800000540'), -('13057', '800000541'), -('12100', '800000542'), -('10800', '800000543'), -('10220', '800000544'), -('10475', '800000545'), -('11243', '800000546'), -('13001', '800000546'), -('12195', '800000547'), -('11993', '800000548'), -('12518', '800000549'), -('10242', '800000550'), -('11880', '800000551'), -('12255', '800000551'), -('11232', '800000552'), -('12715', '800000553'), -('11853', '800000554'), -('10676', '800000555'), -('12103', '800000556'), -('10801', '800000557'), -('11581', '800000558'), -('11057', '800000559'), -('11610', '800000560'), -('12613', '800000561'), -('10681', '800000562'), -('10269', '800000563'), -('10629', '800000564'), -('11805', '800000565'), -('10419', '800000566'), -('12961', '800000567'), -('12583', '800000568'), -('11398', '800000569'), -('11126', '800000570'), -('11506', '800000571'), -('10613', '800000572'), -('13183', '800000572'), -('11630', '800000573'), -('11206', '800000574'), -('12032', '800000575'), -('12544', '800000576'), -('10746', '800000577'), -('12907', '800000578'), -('11782', '800000579'), -('10747', '800000580'), -('11995', '800000581'), -('12387', '800000582'), -('12904', '800000583'), -('10750', '800000584'), -('11542', '800000585'), -('10978', '800000586'), -('13009', '800000587'), -('11530', '800000588'), -('13131', '800000589'), -('11452', '800000590'), -('10703', '800000591'), -('11362', '800000592'), -('11123', '800000593'), -('13098', '800000594'), -('11497', '800000595'), -('11272', '800000596'), -('11552', '800000597'), -('12210', '800000598'), -('11331', '800000599'), -('10739', '800000600'), -('10594', '800000601'), -('11578', '800000602'), -('11714', '800000603'), -('10013', '800000604'), -('13084', '800000605'), -('10895', '800000606'), -('11769', '800000607'), -('10068', '800000608'), -('10826', '800000609'), -('12273', '800000610'), -('10585', '800000611'), -('12569', '800000612'), -('12020', '800000614'), -('10754', '800000615'), -('11265', '800000616'), -('11280', '800000617'), -('11650', '800000618'), -('13070', '800000619'), -('10455', '800000620'), -('12768', '800000621'), -('11347', '800000622'), -('11077', '800000623'), -('12536', '800000624'), -('10927', '800000625'), -('10448', '800000626'), -('11598', '800000627'), -('10810', '800000628'), -('13158', '800000629'), -('12455', '800000630'), -('11535', '800000631'), -('11157', '800000632'), -('10349', '800000633'), -('10838', '800000634'), -('12423', '800000635'), -('11856', '800000636'), -('12215', '800000637'), -('12534', '800000638'), -('12389', '800000639'), -('13145', '800000640'), -('11536', '800000641'), -('10099', '800000642'), -('11618', '800000643'), -('11023', '800000644'), -('10122', '800000645'), -('12315', '800000646'), -('12802', '800000647'), -('13088', '800000648'), -('12107', '800000649'), -('11742', '800000651'), -('12492', '800000652'), -('12437', '800000653'), -('12964', '800000654'), -('11817', '800000655'), -('12191', '800000656'), -('12285', '800000657'), -('12122', '800000658'), -('12303', '800000659'), -('10610', '800000660'), -('11883', '800000661'), -('10485', '800000662'), -('12269', '800000663'), -('12655', '800000664'), -('12230', '800000665'), -('10560', '800000666'), -('11463', '800000667'), -('10002', '800000668'), -('11333', '800000669'), -('11571', '800000671'), -('12147', '800000672'), -('12333', '800000673'), -('12673', '800000674'), -('11609', '800000675'), -('10879', '800000676'), -('11693', '800000678'), -('12643', '800000679'), -('10804', '800000680'), -('12065', '800000680'), -('10740', '800000681'), -('12179', '800000682'), -('11006', '800000683'), -('12251', '800000684'), -('10558', '800000685'), -('11750', '800000686'), -('10112', '800000687'), -('10375', '800000688'), -('10912', '800000689'), -('13113', '800000690'), -('10689', '800000691'), -('10298', '800000692'), -('10587', '800000693'), -('10672', '800000694'), -('12657', '800000695'), -('10102', '800000696'), -('12027', '800000697'), -('12013', '800000698'), -('12247', '800000699'), -('10143', '800000700'), -('10904', '800000701'), -('11522', '800000702'), -('12761', '800000703'), -('10588', '800000704'), -('11116', '800000705'), -('10823', '800000706'), -('11296', '800000707'), -('11311', '800000708'), -('10950', '800000709'), -('12038', '800000710'), -('10433', '800000711'), -('11501', '800000712'), -('13048', '800000713'), -('11780', '800000714'), -('11045', '800000716'), -('10791', '800000717'), -('11092', '800000718'), -('11302', '800000719'), -('10245', '800000720'), -('10532', '800000721'), -('12021', '800000722'), -('12464', '800000723'), -('10307', '800000724'), -('10097', '800000725'), -('10575', '800000726'), -('10446', '800000727'), -('11489', '800000728'), -('11479', '800000729'), -('10095', '800000730'), -('10353', '800000731'), -('10108', '800000732'), -('12171', '800000733'), -('10526', '800000734'), -('13027', '800000736'), -('12454', '800000737'), -('11549', '800000738'), -('11035', '800000739'), -('10422', '800000740'), -('11991', '800000741'), -('11649', '800000742'), -('11079', '800000743'), -('12138', '800000744'), -('10224', '800000745'), -('12842', '800000746'), -('11134', '800000747'), -('12029', '800000748'), -('11478', '800000749'), -('12340', '800000750'), -('10288', '800000752'), -('12245', '800000753'), -('11408', '800000754'), -('12469', '800000755'), -('13160', '800000755'), -('12164', '800000756'), -('10734', '800000758'), -('11022', '800000759'), -('11864', '800000761'), -('10697', '800000762'), -('10970', '800000763'), -('11011', '800000764'), -('12053', '800000765'), -('11483', '800000766'), -('12168', '800000767'), -('10193', '800000768'), -('11444', '800000769'), -('11161', '800000770'), -('10208', '800000771'), -('11021', '800000772'), -('12266', '800000773'), -('12625', '800000774'), -('11380', '800000775'), -('12083', '800000776'), -('11244', '800000777'), -('11414', '800000778'), -('10177', '800000779'), -('12291', '800000780'), -('12621', '800000780'), -('10241', '800000781'), -('11677', '800000782'), -('10025', '800000783'), -('10209', '800000784'), -('12833', '800000785'), -('11277', '800000786'), -('10905', '800000787'), -('13074', '800000787'), -('10548', '800000788'), -('13056', '800000789'), -('11453', '800000790'), -('11764', '800000791'), -('11177', '800000793'), -('11326', '800000794'), -('11921', '800000795'), -('12293', '800000796'), -('12803', '800000797'), -('10903', '800000798'), -('10839', '800000799'), -('10032', '800000800'), -('12267', '800000801'), -('10860', '800000803'), -('12314', '800000804'), -('11699', '800000805'), -('12854', '800000806'), -('12711', '800000807'), -('11861', '800000808'), -('11251', '800000809'), -('11585', '800000811'), -('12878', '800000812'), -('12863', '800000813'), -('13186', '800000813'), -('12980', '800000814'), -('10948', '800000815'), -('11153', '800000816'), -('12154', '800000817'), -('10842', '800000818'), -('10854', '800000819'), -('11935', '800000820'), -('12224', '800000821'), -('10239', '800000822'), -('11142', '800000823'), -('10160', '800000824'), -('13156', '800000825'), -('12632', '800000826'), -('12887', '800000826'), -('12080', '800000827'), -('11084', '800000828'), -('11794', '800000829'), -('10583', '800000830'), -('10878', '800000831'), -('10195', '800000832'), -('10029', '800000833'), -('11751', '800000833'), -('11094', '800000834'), -('12819', '800000834'), -('11736', '800000835'), -('12786', '800000836'), -('11137', '800000837'), -('12243', '800000838'), -('12931', '800000839'), -('10990', '800000840'), -('11802', '800000841'), -('11369', '800000842'), -('11413', '800000843'), -('11647', '800000844'), -('12240', '800000845'), -('11625', '800000846'), -('11129', '800000847'), -('13168', '800000847'), -('11110', '800000848'), -('11310', '800000849'), -('10577', '800000850'), -('10071', '800000851'), -('10533', '800000852'), -('10507', '800000853'), -('12987', '800000854'), -('12048', '800000855'), -('13018', '800000857'), -('11730', '800000859'), -('12256', '800000860'), -('11642', '800000861'), -('10995', '800000862'), -('13190', '800000862'), -('11606', '800000863'), -('11215', '800000864'), -('10345', '800000866'), -('12507', '800000867'), -('10627', '800000868'), -('12725', '800000869'), -('12571', '800000870'), -('10849', '800000871'), -('12889', '800000872'), -('12880', '800000873'), -('11031', '800000874'), -('12109', '800000875'), -('11664', '800000876'), -('12326', '800000877'), -('11269', '800000878'), -('12608', '800000879'), -('12369', '800000880'), -('12334', '800000881'), -('13204', '800000881'), -('10722', '800000882'), -('12212', '800000883'), -('11487', '800000885'), -('10184', '800000886'), -('11999', '800000887'), -('11538', '800000889'), -('10310', '800000890'), -('11068', '800000891'), -('13187', '800000891'), -('10743', '800000892'), -('12968', '800000893'), -('11417', '800000895'), -('10457', '800000896'), -('12035', '800000896'), -('11747', '800000897'), -('10871', '800000898'), -('10210', '800000899'), -('12857', '800000900'), -('10221', '800000901'), -('11448', '800000902'), -('10662', '800000903'), -('11178', '800000904'), -('11867', '800000905'), -('11018', '800000907'), -('10892', '800000908'), -('10612', '800000909'), -('11943', '800000910'), -('12242', '800000911'), -('11877', '800000912'), -('10331', '800000913'), -('10908', '800000914'), -('12592', '800000915'), -('11465', '800000916'), -('12049', '800000917'), -('12874', '800000918'), -('11795', '800000919'), -('12176', '800000920'), -('11461', '800000921'), -('11713', '800000922'), -('11778', '800000923'), -('12450', '800000924'), -('11257', '800000925'), -('12114', '800000926'), -('12919', '800000927'), -('12754', '800000928'), -('12949', '800000929'), -('12587', '800000930'), -('12436', '800000931'), -('12789', '800000932'), -('10034', '800000933'), -('12487', '800000934'), -('12970', '800000935'), -('10203', '800000936'), -('11557', '800000937'), -('11731', '800000938'), -('13028', '800000939'), -('10609', '800000940'), -('12773', '800000941'), -('11207', '800000942'), -('11163', '800000944'), -('12645', '800000945'), -('10410', '800000946'), -('10977', '800000947'), -('12089', '800000948'), -('11977', '800000949'), -('10691', '800000950'), -('10836', '800000951'), -('13169', '800000951'), -('11342', '800000952'), -('11801', '800000953'), -('10501', '800000954'), -('13148', '800000955'), -('10317', '800000956'), -('10648', '800000957'), -('10552', '800000958'), -('13097', '800000959'), -('11025', '800000960'), -('12317', '800000961'), -('10259', '800000962'), -('11727', '800000963'), -('10634', '800000964'), -('12735', '800000965'), -('11335', '800000967'), -('11803', '800000968'), -('10283', '800000969'), -('10870', '800000970'), -('13049', '800000970'), -('11320', '800000971'), -('12973', '800000972'), -('10641', '800000973'), -('11492', '800000974'), -('10092', '800000975'), -('12299', '800000976'), -('10614', '800000977'), -('12616', '800000978'), -('12649', '800000979'), -('12676', '800000980'), -('10576', '800000981'), -('11058', '800000982'), -('11334', '800000983'), -('12102', '800000984'), -('12040', '800000985'), -('10626', '800000986'), -('11070', '800000987'), -('12661', '800000988'), -('10539', '800000989'), -('10123', '800000990'), -('10441', '800000991'), -('10348', '800000992'), -('11405', '800000993'), -('10460', '800000994'), -('10816', '800000995'), -('13220', '800000995'), -('11728', '800000996'), -('11075', '800000997'), -('12233', '800000998'), -('10873', '800000999'), -('10477', '800001000'), -('12477', '800001001'), -('12531', '800001002'), -('11074', '800001003'), -('10192', '800001004'), -('11185', '800001005'), -('11176', '800001006'), -('11884', '800001007'), -('12590', '800001008'), -('12302', '800001009'), -('12259', '800001010'), -('12316', '800001011'), -('10620', '800001012'), -('13080', '800001013'), -('10973', '800001014'), -('12606', '800001015'), -('12324', '800001016'), -('10294', '800001017'), -('12099', '800001019'), -('11504', '800001021'), -('13053', '800001022'), -('11577', '800001023'), -('11562', '800001024'), -('11108', '800001025'), -('13103', '800001026'), -('10069', '800001027'), -('11783', '800001028'), -('10515', '800001029'), -('12547', '800001030'), -('11563', '800001031'), -('12381', '800001032'), -('10014', '800001033'), -('11626', '800001034'), -('10866', '800001035'), -('10428', '800001036'), -('13231', '800001036'), -('12894', '800001037'), -('12125', '800001038'), -('12206', '800001039'), -('11418', '800001040'), -('11284', '800001041'), -('11288', '800001042'), -('10454', '800001043'), -('12710', '800001044'), -('12258', '800001045'), -('11378', '800001046'), -('11179', '800001047'), -('11304', '800001048'), -('10183', '800001049'), -('10470', '800001050'), -('10057', '800001051'), -('12520', '800001052'), -('11716', '800001053'), -('10504', '800001054'), -('10067', '800001055'), -('11103', '800001056'), -('12666', '800001057'), -('11638', '800001058'), -('12036', '800001059'), -('13039', '800001060'), -('11710', '800001061'), -('11052', '800001062'), -('10833', '800001063'), -('10240', '800001064'), -('10036', '800001065'), -('11553', '800001066'), -('10376', '800001067'), -('12988', '800001068'), -('10370', '800001069'), -('10906', '800001070'), -('12664', '800001071'), -('10075', '800001072'), -('12605', '800001073'), -('12404', '800001074'), -('11432', '800001075'), -('11297', '800001076'), -('11870', '800001077'), -('11891', '800001078'), -('10175', '800001079'), -('12430', '800001079'), -('12199', '800001080'), -('12997', '800001081'), -('10645', '800001082'), -('10647', '800001083'), -('10350', '800001084'), -('12121', '800001085'), -('11471', '800001086'), -('10728', '800001087'), -('12990', '800001089'), -('10528', '800001090'), -('12365', '800001091'), -('12552', '800001092'), -('12945', '800001093'), -('11218', '800001094'), -('10564', '800001095'), -('11165', '800001096'), -('11467', '800001097'), -('12008', '800001098'), -('11095', '800001099'), -('12483', '800001099'), -('11340', '800001100'), -('11980', '800001101'), -('13146', '800001101'), -('10469', '800001102'), -('10229', '800001103'), -('10957', '800001103'), -('11066', '800001104'), -('12976', '800001105'), -('11937', '800001106'), -('11964', '800001107'), -('10329', '800001108'), -('10777', '800001109'), -('10129', '800001110'), -('12937', '800001111'), -('11446', '800001112'), -('11771', '800001113'), -('12360', '800001114'), -('10555', '800001115'), -('11722', '800001116'), -('11071', '800001117'), -('12656', '800001118'), -('12926', '800001119'), -('12935', '800001120'), -('12897', '800001121'), -('10252', '800001122'), -('11393', '800001123'), -('10843', '800001124'), -('11652', '800001125'), -('10914', '800001126'), -('12003', '800001127'), -('11670', '800001128'), -('10542', '800001129'), -('10896', '800001129'), -('11438', '800001130'), -('12002', '800001131'), -('10840', '800001132'), -('12228', '800001133'), -('13143', '800001134'), -('10710', '800001135'), -('10502', '800001136'), -('12888', '800001137'), -('12420', '800001138'), -('13136', '800001139'), -('10883', '800001140'), -('10554', '800001141'), -('13066', '800001142'), -('11351', '800001143'), -('11480', '800001144'), -('10335', '800001145'), -('11784', '800001145'), -('12826', '800001146'), -('13099', '800001147'), -('11271', '800001148'), -('10941', '800001149'), -('10374', '800001150'), -('11829', '800001151'), -('12943', '800001152'), -('10858', '800001153'), -('10421', '800001154'), -('12529', '800001155'), -('12004', '800001156'), -('10114', '800001157'), -('12665', '800001158'), -('11987', '800001159'), -('11348', '800001160'), -('10818', '800001161'), -('11283', '800001163'), -('11597', '800001164'), -('12184', '800001165'), -('11201', '800001166'), -('11486', '800001167'), -('10765', '800001168'), -('11703', '800001169'), -('13114', '800001170'), -('11988', '800001171'), -('11639', '800001172'), -('11775', '800001174'), -('10556', '800001175'), -('11441', '800001176'), -('11426', '800001178'), -('13024', '800001179'), -('11115', '800001180'), -('11757', '800001181'), -('12134', '800001182'), -('10670', '800001183'), -('10757', '800001184'), -('10841', '800001185'), -('11105', '800001186'), -('11623', '800001187'), -('10021', '800001188'), -('11128', '800001189'), -('11896', '800001190'), -('13228', '800001190'), -('13068', '800001191'), -('12601', '800001192'), -('12913', '800001193'), -('10138', '800001194'), -('10393', '800001195'), -('13081', '800001196'), -('12023', '800001197'), -('12551', '800001198'), -('12424', '800001199'), -('12790', '800001200'), -('12727', '800001201'), -('13153', '800001202'), -('12848', '800001203'), -('10686', '800001204'), -('10572', '800001205'), -('11662', '800001206'), -('12177', '800001207'), -('12853', '800001208'), -('11312', '800001209'), -('12994', '800001210'), -('11682', '800001211'), -('10769', '800001213'), -('10624', '800001214'), -('10867', '800001215'), -('11812', '800001216'), -('10438', '800001217'), -('10003', '800001218'), -('13094', '800001219'), -('10384', '800001220'), -('12984', '800001221'), -('11431', '800001222'), -('12372', '800001225'), -('11435', '800001226'), -('13110', '800001227'), -('12744', '800001228'), -('11495', '800001229'), -('11636', '800001230'), -('11627', '800001231'), -('10942', '800001232'), -('12504', '800001233'), -('11548', '800001234'), -('11520', '800001235'), -('12622', '800001237'), -('11202', '800001238'), -('12408', '800001239'), -('10846', '800001240'), -('10158', '800001241'), -('11509', '800001243'), -('11868', '800001244'), -('12708', '800001245'), -('13170', '800001245'), -('11109', '800001246'), -('11738', '800001247'), -('11975', '800001247'), -('12169', '800001248'), -('10357', '800001249'), -('12260', '800001250'), -('10886', '800001251'), -('12221', '800001252'), -('11926', '800001253'), -('11608', '800001254'), -('11791', '800001255'), -('13129', '800001256'), -('12286', '800001257'), -('10658', '800001258'), -('11844', '800001259'), -('10761', '800001260'), -('12064', '800001261'), -('12831', '800001261'), -('12782', '800001262'), -('10154', '800001263'), -('10508', '800001263'), -('11653', '800001264'), -('11375', '800001265'), -('13127', '800001266'), -('12906', '800001267'), -('10639', '800001269'), -('11167', '800001270'), -('10568', '800001271'), -('12073', '800001271'), -('12490', '800001272'), -('10251', '800001273'), -('12440', '800001274'), -('10487', '800001275'), -('12287', '800001276'), -('12422', '800001277'), -('11997', '800001279'), -('11946', '800001280'), -('10478', '800001282'), -('12785', '800001283'), -('12821', '800001284'), -('10766', '800001285'), -('10372', '800001286'), -('10244', '800001287'), -('10920', '800001288'), -('12886', '800001289'), -('11313', '800001290'), -('10378', '800001291'), -('13051', '800001292'), -('12473', '800001293'), -('11922', '800001294'), -('10289', '800001295'), -('11524', '800001296'), -('10779', '800001297'), -('13038', '800001298'), -('13134', '800001299'), -('10147', '800001300'), -('13040', '800001301'), -('10969', '800001302'), -('11721', '800001303'), -('13162', '800001303'), -('12399', '800001304'), -('11711', '800001305'), -('12374', '800001306'), -('10024', '800001307'), -('11488', '800001308'), -('10630', '800001309'), -('10657', '800001310'), -('11321', '800001311'), -('12898', '800001312'), -('12170', '800001313'), -('11349', '800001314'), -('12503', '800001315'), -('11965', '800001316'), -('11706', '800001317'), -('11859', '800001318'), -('10967', '800001319'), -('12977', '800001320'), -('12392', '800001321'), -('12971', '800001321'), -('11772', '800001322'), -('10997', '800001323'), -('11308', '800001324'), -('10427', '800001325'), -('10512', '800001326'), -('10151', '800001328'), -('11948', '800001329'), -('10103', '800001330'), -('12959', '800001331'), -('12052', '800001332'), -('13227', '800001332'), -('10005', '800001333'), -('12456', '800001334'), -('13137', '800001335'), -('12066', '800001336'), -('10511', '800001337'), -('10312', '800001338'), -('11224', '800001339'), -('12952', '800001340'), -('12188', '800001341'), -('12654', '800001342'), -('12046', '800001343'), -('11841', '800001344'), -('10991', '800001345'), -('12530', '800001346'), -('12250', '800001347'), -('10125', '800001348'), -('11712', '800001350'), -('12692', '800001351'), -('11246', '800001352'), -('12729', '800001353'), -('10391', '800001354'), -('11198', '800001355'), -('11427', '800001356'), -('11144', '800001357'), -('12055', '800001358'), -('11143', '800001359'), -('12461', '800001360'), -('12347', '800001361'), -('13010', '800001361'), -('11969', '800001362'), -('12325', '800001363'), -('10039', '800001364'), -('12951', '800001366'), -('12457', '800001367'), -('10267', '800001368'), -('11941', '800001369'), -('11063', '800001370'), -('11267', '800001371'), -('11644', '800001372'), -('11136', '800001373'), -('10884', '800001374'), -('12418', '800001375'), -('11291', '800001376'), -('11719', '800001377'), -('11573', '800001378'), -('11119', '800001379'), -('12660', '800001380'), -('12331', '800001381'), -('12618', '800001382'), -('12090', '800001383'), -('12677', '800001384'), -('11741', '800001385'), -('10043', '800001386'), -('11423', '800001386'), -('12902', '800001387'), -('12060', '800001388'), -('10725', '800001389'), -('12396', '800001390'), -('11416', '800001391'), -('12000', '800001393'), -('12684', '800001394'), -('10490', '800001395'), -('10238', '800001396'), -('10808', '800001397'), -('11282', '800001398'), -('10669', '800001399'), -('11709', '800001400'), -('10420', '800001401'), -('10439', '800001402'), -('12108', '800001403'), -('12732', '800001404'), -('12343', '800001405'), -('10285', '800001406'), -('12839', '800001407'), -('11602', '800001408'), -('12137', '800001409'), -('12517', '800001410'), -('10545', '800001411'), -('11688', '800001412'), -('10273', '800001413'), -('11512', '800001413'), -('11815', '800001414'), -('12522', '800001415'), -('10121', '800001416'), -('11101', '800001417'), -('12239', '800001418'), -('11098', '800001419'), -('10745', '800001420'), -('10698', '800001421'), -('10751', '800001422'), -('10048', '800001423'), -('10094', '800001424'), -('12753', '800001425'), -('12419', '800001426'), -('12205', '800001427'), -('10424', '800001428'), -('10574', '800001429'), -('12669', '800001430'), -('10814', '800001431'), -('12793', '800001432'), -('10482', '800001433'), -('11637', '800001434'), -('13197', '800001434'), -('10171', '800001435'), -('10188', '800001436'), -('10876', '800001437'), -('12641', '800001439'), -('11661', '800001440'), -('11372', '800001441'), -('10718', '800001442'), -('10534', '800001443'), -('11684', '800001444'), -('13217', '800001444'), -('11428', '800001445'), -('13160', '800001446'), -('10881', '800001447'), -('12105', '800001448'), -('12415', '800001450'), -('11499', '800001451'), -('10047', '800001453'), -('12329', '800001454'), -('11691', '800001455'), -('11657', '800001456'), -('11752', '800001457'), -('10216', '800001458'), -('11009', '800001459'), -('12891', '800001460'), -('11968', '800001461'), -('11631', '800001462'), -('10945', '800001463'), -('11959', '800001464'), -('10646', '800001465'), -('11865', '800001466'), -('10733', '800001467'), -('11848', '800001468'), -('10663', '800001469'), -('10358', '800001470'), -('10944', '800001471'), -('10680', '800001472'), -('12097', '800001473'), -('11391', '800001474'), -('11525', '800001475'), -('11017', '800001476'), -('11966', '800001477'), -('11210', '800001478'), -('11401', '800001479'), -('10953', '800001480'), -('12181', '800001481'), -('13118', '800001482'), -('11651', '800001483'), -('10436', '800001484'), -('10022', '800001485'), -('12755', '800001485'), -('10591', '800001486'), -('11203', '800001488'), -('11422', '800001489'), -('12481', '800001490'), -('10199', '800001491'), -('12781', '800001492'), -('13090', '800001493'), -('10869', '800001494'), -('12807', '800001495'), -('10201', '800001496'), -('10054', '800001497'), -('11507', '800001498'), -('11759', '800001499'), -('10952', '800001500'), -('13214', '800001500'), -('10584', '800001501'), -('12783', '800001502'), -('11823', '800001503'), -('12591', '800001504'), -('12414', '800001505'), -('11358', '800001506'), -('10098', '800001507'), -('10557', '800001508'), -('10975', '800001509'), -('10155', '800001510'), -('12402', '800001511'), -('12777', '800001512'), -('10235', '800001513'), -('11062', '800001514'), -('10923', '800001515'), -('10162', '800001516'), -('12683', '800001517'), -('10894', '800001518'), -('11088', '800001519'), -('10117', '800001520'), -('12909', '800001521'), -('10280', '800001522'), -('12309', '800001523'), -('10744', '800001524'), -('11048', '800001525'), -('11971', '800001525'), -('12167', '800001526'), -('13064', '800001527'), -('12550', '800001528'), -('12098', '800001529'), -('12797', '800001530'), -('12079', '800001531'), -('10379', '800001532'), -('10727', '800001533'), -('11192', '800001534'), -('10150', '800001535'), -('12182', '800001536'), -('12410', '800001537'), -('10302', '800001538'), -('12905', '800001539'), -('10934', '800001540'), -('10716', '800001541'), -('12353', '800001542'), -('10326', '800001543'), -('10543', '800001544'), -('11708', '800001545'), -('12502', '800001546'), -('12615', '800001547'), -('10617', '800001548'), -('11932', '800001549'), -('11756', '800001550'), -('10599', '800001551'), -('12471', '800001552'), -('13200', '800001552'), -('12873', '800001553'), -('12270', '800001554'), -('10010', '800001555'), -('11106', '800001555'), -('10994', '800001556'), -('10132', '800001557'), -('10510', '800001558'), -('11546', '800001559'), -('12827', '800001560'), -('12054', '800001561'), -('10770', '800001562'), -('11924', '800001563'), -('12688', '800001564'), -('13021', '800001565'), -('11685', '800001566'), -('11559', '800001567'), -('10217', '800001568'), -('10200', '800001569'), -('11197', '800001570'), -('10130', '800001571'), -('10437', '800001572'), -('11073', '800001573'), -('10293', '800001574'), -('13181', '800001574'), -('12829', '800001575'), -('10819', '800001576'), -('12476', '800001577'), -('12025', '800001578'), -('10084', '800001579'), -('10989', '800001581'), -('11907', '800001582'), -('11275', '800001583'), -('10809', '800001584'), -('12695', '800001585'), -('10301', '800001586'), -('11982', '800001587'), -('12910', '800001587'), -('12218', '800001588'), -('12700', '800001589'), -('12818', '800001590'), -('10566', '800001591'), -('10792', '800001592'), -('10313', '800001593'), -('11324', '800001594'), -('11360', '800001594'), -('10359', '800001595'), -('11523', '800001596'), -('11599', '800001597'), -('12870', '800001598'), -('10901', '800001599'), -('11698', '800001600'), -('11490', '800001601'), -('12960', '800001602'), -('10453', '800001603'), -('10553', '800001604'), -('10625', '800001605'), -('11491', '800001606'), -('12556', '800001607'), -('12129', '800001608'), -('12560', '800001609'), -('12076', '800001610'), -('10580', '800001611'), -('11590', '800001612'), -('11904', '800001613'), -('11254', '800001614'), -('11003', '800001615'), -('12116', '800001615'), -('12275', '800001616'), -('10652', '800001617'), -('10363', '800001618'), -('12845', '800001619'), -('10880', '800001620'), -('11962', '800001621'), -('11663', '800001622'), -('10862', '800001623'), -('10735', '800001624'), -('11039', '800001625'), -('10423', '800001626'), -('11879', '800001627'), -('10772', '800001628'), -('12300', '800001628'), -('12743', '800001629'), -('12494', '800001630'), -('11551', '800001631'), -('12724', '800001632'), -('12452', '800001633'), -('12722', '800001634'), -('12131', '800001635'), -('11889', '800001636'), -('10931', '800001637'), -('12993', '800001638'), -('10678', '800001639'), -('11317', '800001640'), -('10985', '800001641'), -('12016', '800001642'), -('11387', '800001643'), -('11854', '800001644'), -('10902', '800001645'), -('10442', '800001646'), -('10929', '800001647'), -('12640', '800001648'), -('12974', '800001649'), -('11886', '800001651'), -('12706', '800001652'), -('11918', '800001653'), -('11330', '800001654'), -('10223', '800001655'), -('10602', '800001656'), -('12647', '800001657'), -('10142', '800001658'), -('11117', '800001659'), -('12766', '800001661'), -('12373', '800001662'), -('10366', '800001663'), -('11383', '800001664'), -('12033', '800001665'), -('11289', '800001666'), -('10306', '800001667'), -('13166', '800001667'), -('10044', '800001669'), -('10640', '800001669'), -('10926', '800001670'), -('12630', '800001671'), -('10369', '800001672'), -('12702', '800001673'), -('11850', '800001674'), -('11041', '800001675'), -('11519', '800001676'), -('12377', '800001677'), -('10939', '800001678'), -('10938', '800001679'), -('10789', '800001680'), -('10694', '800001681'), -('13128', '800001682'), -('12011', '800001683'), -('10598', '800001684'), -('11516', '800001685'), -('12254', '800001686'), -('10297', '800001687'), -('10341', '800001688'), -('10395', '800001689'), -('10589', '800001690'), -('10579', '800001691'), -('11718', '800001692'), -('10344', '800001693'), -('11916', '800001694'), -('10536', '800001695'), -('10844', '800001696'), -('10695', '800001697'), -('11632', '800001698'), -('10535', '800001699'), -('12663', '800001699'), -('12911', '800001699'), -('13139', '800001700'), -('13086', '800001701'), -('10592', '800001702'), -('12445', '800001703'), -('10373', '800001704'), -('11770', '800001705'), -('11572', '800001706'), -('11863', '800001707'), -('10157', '800001708'), -('11701', '800001709'), -('10982', '800001710'), -('11454', '800001711'), -('12713', '800001712'), -('12050', '800001713'), -('12908', '800001714'), -('10254', '800001715'), -('12852', '800001716'), -('10709', '800001717'), -('12092', '800001718'), -('11820', '800001719'), -('10616', '800001720'), -('10794', '800001721'), -('12795', '800001722'), -('10607', '800001723'), -('12495', '800001724'), -('11681', '800001725'), -('12257', '800001725'), -('11328', '800001726'), -('10418', '800001727'), -('12039', '800001729'), -('11027', '800001730'), -('12918', '800001731'), -('10887', '800001732'), -('10100', '800001733'), -('10562', '800001735'), -('10825', '800001736'), -('10411', '800001737'), -('11138', '800001738'), -('10693', '800001739'), -('10246', '800001740'), -('10383', '800001741'), -('12349', '800001742'), -('12693', '800001743'), -('12836', '800001744'), -('12226', '800001745'), -('11376', '800001746'), -('11229', '800001747'), -('12401', '800001748'), -('13201', '800001748'), -('11734', '800001750'), -('12362', '800001751'), -('11785', '800001752'), -('12017', '800001752'), -('10133', '800001753'), -('11276', '800001754'), -('12804', '800001755'), -('10314', '800001756'), -('12337', '800001757'), -('10637', '800001758'), -('10793', '800001759'), -('10226', '800001760'), -('11983', '800001761'), -('11832', '800001762'), -('10803', '800001763'), -('10417', '800001764'), -('10473', '800001765'), -('11352', '800001766'), -('12603', '800001767'), -('11724', '800001768'), -('10655', '800001769'), -('12995', '800001770'), -('10813', '800001771'), -('12746', '800001772'), -('12923', '800001772'), -('11634', '800001773'), -('13211', '800001773'), -('11945', '800001774'), -('13132', '800001775'), -('10020', '800001776'), -('10567', '800001777'), -('12573', '800001778'), -('11781', '800001779'), -('10040', '800001780'), -('10214', '800001781'), -('11298', '800001782'), -('12380', '800001783'), -('12118', '800001784'), -('11171', '800001785'), -('13151', '800001786'), -('11960', '800001787'), -('10056', '800001788'), -('12697', '800001789'), -('12925', '800001790'), -('12280', '800001791'), -('10611', '800001792'), -('12281', '800001793'), -('12375', '800001794'), -('10126', '800001795'), -('11341', '800001796'), -('11036', '800001797'), -('13218', '800001797'), -('12225', '800001798'), -('11213', '800001799'), -('11800', '800001800'), -('12607', '800001801'), -('10615', '800001802'), -('11237', '800001803'), -('12568', '800001804'), -('11906', '800001805'), -('10018', '800001806'), -('10827', '800001807'), -('10017', '800001808'), -('10850', '800001809'), -('12617', '800001810'), -('11044', '800001811'), -('11337', '800001812'), -('12142', '800001813'), -('10987', '800001814'), -('10993', '800001815'), -('12501', '800001816'), -('12124', '800001817'), -('12465', '800001818'), -('10513', '800001819'), -('11226', '800001820'), -('13121', '800001821'), -('11645', '800001822'), -('12872', '800001823'), -('12397', '800001824'), -('10687', '800001825'), -('12950', '800001826'), -('11840', '800001827'), -('10966', '800001828'), -('12532', '800001829'), -('12896', '800001830'), -('12001', '800001831'), -('10705', '800001832'), -('13152', '800001833'), -('11753', '800001835'), -('12992', '800001836'), -('11765', '800001837'), -('12161', '800001838'), -('10523', '800001840'), -('10696', '800001841'), -('10011', '800001842'), -('12390', '800001843'), -('11895', '800001844'), -('12815', '800001845'), -('12193', '800001846'), -('12938', '800001847'), -('11885', '800001848'), -('11767', '800001849'), -('11089', '800001850'), -('12157', '800001851'), -('10087', '800001852'), -('12762', '800001853'), -('12714', '800001854'), -('11186', '800001855'), -('10281', '800001856'), -('11125', '800001857'), -('10236', '800001858'), -('11905', '800001859'), -('10106', '800001860'), -('13185', '800001860'), -('12405', '800001861'), -('12526', '800001862'), -('13144', '800001863'), -('10877', '800001864'), -('12101', '800001865'), -('11596', '800001866'), -('10551', '800001867'), -('10679', '800001868'), -('12712', '800001869'), -('12007', '800001870'), -('12738', '800001871'), -('11732', '800001872'), -('13076', '800001874'), -('12985', '800001875'), -('11951', '800001876'), -('11159', '800001877'), -('12201', '800001878'), -('12298', '800001879'), -('11503', '800001880'), -('11761', '800001881'), -('11593', '800001882'), -('11047', '800001883'), -('10491', '800001884'), -('12158', '800001885'), -('11658', '800001886'), -('13008', '800001887'), -('12869', '800001888'), -('12619', '800001889'), -('10007', '800001890'), -('11424', '800001890'), -('11899', '800001891'), -('12609', '800001892'), -('11613', '800001893'), -('11295', '800001895'), -('11543', '800001896'), -('10924', '800001897'), -('12148', '800001898'), -('11481', '800001899'), -('11078', '800001900'), -('10996', '800001901'), -('10265', '800001902'), -('12462', '800001903'), -('11929', '800001904'), -('10762', '800001905'), -('10215', '800001906'), -('11434', '800001907'), -('12159', '800001908'), -('11835', '800001909'), -('10659', '800001910'), -('12788', '800001911'), -('12851', '800001912'), -('11702', '800001913'), -('11621', '800001914'), -('11445', '800001915'), -('13205', '800001915'), -('11399', '800001916'), -('11917', '800001917'), -('11687', '800001918'), -('12005', '800001919'), -('10933', '800001920'), -('10619', '800001921'), -('11149', '800001922'), -('11814', '800001923'), -('11777', '800001924'), -('13233', '800001924'), -('10120', '800001926'), -('13191', '800001926'), -('12634', '800001927'), -('12282', '800001928'), -('11763', '800001929'), -('12385', '800001930'), -('12586', '800001932'), -('10091', '800001933'), -('10064', '800001934'), -('12244', '800001935'), -('10041', '800001936'), -('11591', '800001937'), -('12834', '800001938'), -('10824', '800001939'), -('10760', '800001940'), -('10650', '800001941'), -('11843', '800001942'), -('10786', '800001943'), -('11986', '800001944'), -('13229', '800001944'), -('11746', '800001945'), -('10042', '800001946'), -('11323', '800001947'), -('10319', '800001948'), -('10928', '800001949'), -('11470', '800001950'), -('11069', '800001951'), -('10661', '800001952'), -('12798', '800001953'), -('12135', '800001954'), -('10671', '800001955'), -('10481', '800001956'), -('12764', '800001957'), -('12127', '800001958'), -('11007', '800001959'), -('10282', '800001960'), -('10665', '800001960'), -('13219', '800001960'), -('12354', '800001961'), -('11107', '800001962'), -('12296', '800001963'), -('12165', '800001964'), -('12858', '800001965'), -('12794', '800001966'), -('10400', '800001967'), -('12558', '800001968'), -('11641', '800001969'), -('12808', '800001970'), -('10009', '800001971'), -('12979', '800001972'), -('12484', '800001973'), -('12104', '800001974'), -('11838', '800001975'), -('10847', '800001976'), -('10897', '800001977'), -('13180', '800001977'), -('12111', '800001978'), -('11513', '800001979'), -('11668', '800001981'), -('10472', '800001982'), -('12143', '800001983'), -('11026', '800001984'), -('10351', '800001985'), -('11076', '800001986'), -('12367', '800001987'), -('10295', '800001988'), -('10717', '800001989'), -('10675', '800001990'), -('12037', '800001991'), -('11822', '800001992'), -('11690', '800001993'), -('11439', '800001994'), -('12562', '800001995'), -('10204', '800001996'), -('10382', '800001997'), -('10479', '800001998'), -('11200', '800001999'), -('10688', '800002000'), -('11262', '800002001'), -('11141', '800002002'), -('11221', '800002003'), -('11113', '800002004'), -('11318', '800002005'), -('10631', '800002006'), -('11958', '800002007'), -('12231', '800002008'), -('10961', '800002009'), -('10248', '800002010'), -('12214', '800002011'), -('12162', '800002012'), -('13157', '800002013'), -('12093', '800002014'), -('12350', '800002015'), -('12442', '800002016'), -('10811', '800002017'), -('13224', '800002017'), -('11635', '800002018'), -('12726', '800002019'), -('12557', '800002020'), -('11518', '800002021'), -('12885', '800002022'), -('10459', '800002023'), -('12805', '800002023'), -('12345', '800002024'), -('12792', '800002024'), -('10845', '800002025'), -('12642', '800002026'), -('11065', '800002027'), -('10603', '800002028'), -('10447', '800002029'), -('10434', '800002030'), -('12776', '800002031'), -('12767', '800002032'), -('11779', '800002033'), -('12217', '800002034'), -('13163', '800002034'), -('11442', '800002035'), -('12439', '800002036'), -('11739', '800002038'), -('10218', '800002039'), -('12825', '800002040'), -('10145', '800002041'), -('11223', '800002042'), -('11792', '800002043'), -('11155', '800002044'), -('10398', '800002045'), -('10916', '800002047'), -('11508', '800002048'), -('10176', '800002049'), -('12602', '800002050'), -('11744', '800002051'), -('10292', '800002052'), -('11164', '800002053'), -('12095', '800002054'), -('11300', '800002056'), -('10922', '800002057'), -('10414', '800002059'), -('12313', '800002060'), -('13101', '800002061'), -('12406', '800002062'), -('10261', '800002063'), -('12323', '800002064'), -('11230', '800002065'), -('10682', '800002066'), -('10784', '800002067'), -('11939', '800002068'), -('11055', '800002069'), -('11723', '800002070'), -('10623', '800002071'), -('10085', '800002072'), -('10452', '800002073'), -('12220', '800002074'), -('10327', '800002075'), -('12900', '800002076'), -('12459', '800002077'), -('10517', '800002078'), -('10268', '800002079'), -('12513', '800002080'), -('10107', '800002081'), -('12570', '800002082'), -('10198', '800002083'), -('12252', '800002084'), -('10865', '800002085'), -('11862', '800002086'), -('10119', '800002087'), -('11614', '800002088'), -('12084', '800002089'), -('11869', '800002090'), -('11260', '800002091'), -('12800', '800002093'), -('12801', '800002094'), -('11132', '800002095'), -('10874', '800002096'), -('12636', '800002097'), -('12883', '800002098'), -('10771', '800002099'), -('12451', '800002101'), -('12443', '800002102'), -('10835', '800002103'), -('10058', '800002104'), -('12463', '800002105'), -('11245', '800002106'), -('10856', '800002107'), -('10340', '800002108'), -('12946', '800002108'), -('10070', '800002109'), -('12386', '800002109'), -('10731', '800002110'), -('11619', '800002111'), -('13174', '800002111'), -('12637', '800002112'), -('10484', '800002113'), -('10737', '800002114'), -('12356', '800002115'), -('13188', '800002115'), -('12930', '800002116'), -('11020', '800002117'), -('12871', '800002118'), -('11365', '800002119'), -('11410', '800002120'), -('10600', '800002121'), -('12431', '800002122'), -('12183', '800002123'), -('10654', '800002124'), -('13083', '800002125'), -('13078', '800002126'), -('10001', '800002127'), -('10325', '800002128'), -('12623', '800002129'), -('10690', '800002130'), -('11566', '800002131'), -('11797', '800002132'), -('12351', '800002133'), -('11083', '800002134'), -('12426', '800002135'), -('12589', '800002136'), -('11912', '800002137'), -('10207', '800002138'), -('10275', '800002139'), -('10893', '800002140'), -('11469', '800002141'), -('10509', '800002142'), -('11034', '800002143'), -('10136', '800002144'), -('12841', '800002145'), -('11900', '800002146'), -('11654', '800002147'), -('13062', '800002147'), -('12234', '800002148'), -('12227', '800002149'), -('12022', '800002150'), -('12515', '800002151'), -('12132', '800002152'), -('12687', '800002153'), -('11259', '800002154'), -('12648', '800002155'), -('13221', '800002155'), -('11292', '800002156'), -('10318', '800002157'), -('10643', '800002158'), -('12180', '800002159'), -('11019', '800002160'), -('11169', '800002161'), -('12604', '800002162'), -('12175', '800002163'), -('11145', '800002164'), -('11502', '800002165'), -('11919', '800002166'), -('10651', '800002167'), -('11692', '800002168'), -('11539', '800002169'), -('13006', '800002170'), -('11473', '800002171'), -('11090', '800002172'), -('12986', '800002173'), -('10899', '800002174'), -('10474', '800002175'), -('12922', '800002176'), -('12328', '800002177'), -('12467', '800002178'), -('11346', '800002179'), -('10320', '800002180'), -('11837', '800002181'), -('10519', '800002182'), -('12031', '800002183'), -('12627', '800002184'), -('11343', '800002185'), -('12554', '800002186'), -('10186', '800002187'), -('12924', '800002188'), -('10408', '800002189'), -('12828', '800002190'), -('12197', '800002191'), -('11612', '800002192'), -('11611', '800002193'), -('12999', '800002193'), -('13005', '800002194'), -('11678', '800002195'), -('10660', '800002196'), -('12355', '800002197'), -('10741', '800002198'), -('10185', '800002199'), -('11067', '800002200'), -('11957', '800002201'), -('11227', '800002202'), -('12305', '800002203'), -('12311', '800002204'), -('12058', '800002205'), -('10918', '800002206'), -('11878', '800002206'), -('12549', '800002207'), -('12784', '800002208'), -('10531', '800002209'), -('13117', '800002210'), -('10468', '800002211'), -('11124', '800002213'), -('11579', '800002214'), -('12595', '800002215'), -('10270', '800002216'), -('13130', '800002216'), -('11160', '800002217'), -('10449', '800002218'), -('12141', '800002219'), -('11694', '800002220'), -('10937', '800002221'), -('11994', '800002222'), -('11150', '800002223'), -('11451', '800002224'), -('11768', '800002225'), -('11350', '800002226'), -('12759', '800002227'), -('11247', '800002228'), -('10834', '800002229'), -('13165', '800002229'), -('10495', '800002230'), -('11373', '800002231'), -('13106', '800002232'), -('11676', '800002233'), -('13198', '800002233'), -('11978', '800002234'), -('12963', '800002235'), -('12989', '800002237'), -('12246', '800002238'), -('12644', '800002239'), -('11456', '800002240'), -('12379', '800002241'), -('10467', '800002242'), -('10440', '800002243'), -('11412', '800002244'), -('12014', '800002245'), -('11996', '800002246'), -('13124', '800002247'), -('11898', '800002248'), -('11665', '800002249'), -('11976', '800002250'), -('10666', '800002251'), -('12067', '800002251'), -('12110', '800002251'), -('10593', '800002252'), -('11985', '800002253'), -('12505', '800002255'), -('12736', '800002256'), -('10656', '800002257'), -('10189', '800002258'), -('10346', '800002259'), -('12166', '800002260'), -('12297', '800002261'), -('10742', '800002262'), -('10653', '800002263'), -('13171', '800002263'), -('12044', '800002264'), -('11421', '800002265'), -('12077', '800002266'), -('11274', '800002267'), -('11440', '800002268'), -('12081', '800002269'), -('12521', '800002269'), -('10471', '800002270'), -('12117', '800002271'), -('12942', '800002272'), -('12981', '800002273'), -('11024', '800002274'), -('12434', '800002275'), -('10381', '800002276'), -('11816', '800002277'), -('10296', '800002278'), -('10352', '800002280'), -('11258', '800002281'), -('11420', '800002282'), -('10549', '800002283'), -('11776', '800002284'), -('11700', '800002285'), -('11604', '800002286'), -('11511', '800002287'), -('13029', '800002288'), -('11099', '800002289'), -('12433', '800002290'), -('13052', '800002291'), -('10480', '800002292'), -('12189', '800002293'), -('10262', '800002294'), -('12068', '800002295'), -('12106', '800002295'), -('10028', '800002296'), -('12546', '800002297'), -('12810', '800002298'), -('12213', '800002299'), -('11225', '800002300'), -('10385', '800002301'), -('11866', '800002302'), -('10962', '800002303'), -('10492', '800002304'), -('11194', '800002305'), -('12045', '800002305'), -('11984', '800002306'), -('11956', '800002307'), -('10066', '800002308'), -('12866', '800002309'), -('13192', '800002309'), -('12850', '800002310'), -('10570', '800002311'), -('10253', '800002312'), -('10668', '800002313'), -('12509', '800002314'), -('11256', '800002315'), -('12699', '800002316'), -('11336', '800002317'), -('10604', '800002318'), -('10161', '800002319'), -('10889', '800002320'), -('13193', '800002320'), -('12006', '800002322'), -('13116', '800002323'), -('10104', '800002324'), -('13216', '800002324'), -('12475', '800002325'), -('12506', '800002326'), -('10910', '800002327'), -('12575', '800002327'), -('11407', '800002328'), -('12750', '800002329'), -('10815', '800002330'), -('12411', '800002331'), -('10170', '800002332'), -('10277', '800002333'), -('11327', '800002334'), -('12203', '800002335'), -('10891', '800002337'), -('12585', '800002338'), -('10324', '800002339'), -('12318', '800002340'), -('10859', '800002341'), -('11183', '800002342'), -('11950', '800002343'), -('12428', '800002343'), -('12956', '800002343'), -('13030', '800002344'), -('12382', '800002345'), -('12564', '800002346'), -('10830', '800002347'), -('12921', '800002347'), -('12901', '800002348'), -('12395', '800002349'), -('12929', '800002350'), -('10559', '800002351'), -('11474', '800002351'), -('11774', '800002352'), -('11046', '800002353'), -('12540', '800002354'), -('11409', '800002355'), -('12339', '800002356'), -('10196', '800002357'), -('10006', '800002358'), -('10432', '800002358'), -('10101', '800002359'), -('11437', '800002360'), -('13161', '800002360'), -('11826', '800002361'), -('12659', '800002362'), -('12719', '800002363'), -('11913', '800002364'), -('11810', '800002365'), -('12485', '800002366'), -('11696', '800002367'), -('12675', '800002368'), -('11122', '800002369'), -('10932', '800002370'), -('12051', '800002371'), -('13036', '800002372'), -('12555', '800002373'), -('10828', '800002374'), -('12261', '800002375'), -('13033', '800002376'), -('13069', '800002377'), -('11813', '800002378'), -('12707', '800002379'), -('12756', '800002380'), -('10758', '800002382'), -('12982', '800002383'), -('11920', '800002384'), -('13085', '800002385'), -('13123', '800002386'), -('10206', '800002387'), -('10763', '800002388'), -('10832', '800002389'), -('11140', '800002389'), -('12967', '800002390'), -('13093', '800002391'), -('10546', '800002392'), -('12417', '800002393'), -('12024', '800002394'), -('11388', '800002395'), -('10773', '800002396'), -('10821', '800002396'), -('11992', '800002397'), -('10364', '800002398'), -('12846', '800002399'), -('11594', '800002400'), -('11720', '800002401'), -('10038', '800002402'), -('12094', '800002403'), -('13172', '800002403'), -('11533', '800002404'), -('12598', '800002405'), -('12241', '800002406'), -('12026', '800002407'), -('10759', '800002408'), -('12435', '800002409'), -('12837', '800002410'), -('13135', '800002411'), -('10907', '800002412'), -('10456', '800002413'), -('11219', '800002414'), -('12611', '800002415'), -('10431', '800002416'), -('12633', '800002417'), -('12086', '800002418'), -('11561', '800002419'), -('10979', '800002420'), -('13065', '800002421'), -('11762', '800002422'), -('10135', '800002423'), -('10443', '800002425'), -('12864', '800002426'), -('12543', '800002427'), -('11901', '800002428'), -('11799', '800002429'), -('12072', '800002430'), -('12787', '800002431'), -('12674', '800002432'), -('10790', '800002433'), -('10861', '800002434'), -('10530', '800002435'), -('11648', '800002436'), -('10915', '800002437'), -('11419', '800002437'), -('13035', '800002437'), -('12582', '800002438'), -('11049', '800002439'), -('10023', '800002441'), -('11392', '800002442'), -('10767', '800002443'), -('10124', '800002444'), -('11205', '800002445'), -('12306', '800002447'), -('10031', '800002448'), -('11583', '800002449'), -('10388', '800002450'), -('10940', '800002451'), -('12581', '800002452'), -('11361', '800002453'), -('10081', '800002454'), -('10788', '800002455'), -('12130', '800002456'), -('12667', '800002456'), -('10541', '800002457'), -('12332', '800002458'), -('13179', '800002458'), -('12670', '800002459'), -('13104', '800002460'), -('10578', '800002461'), -('12253', '800002462'), -('11643', '800002463'), -('11345', '800002464'), -('12030', '800002465'), -('13007', '800002466'), -('10078', '800002467'), -('11457', '800002469'), -('13222', '800002469'), -('11450', '800002470'), -('10465', '800002471'), -('10909', '800002472'), -('11379', '800002473'), -('10403', '800002474'), -('12196', '800002475'), -('12690', '800002476'), -('10429', '800002477'), -('10194', '800002478'), -('10753', '800002479'), -('10445', '800002480'), -('12357', '800002481'), -('13208', '800002481'), -('11735', '800002482'), -('10249', '800002483'), -('10172', '800002484'), -('10330', '800002485'), -('12574', '800002485'), -('11093', '800002486'), -('10563', '800002487'), -('12344', '800002488'), -('11005', '800002489'), -('10303', '800002490'), -('12631', '800002491'), -('10488', '800002492'), -('12312', '800002493'), -('11717', '800002494'), -('11241', '800002495'), -('12928', '800002496'), -('11014', '800002497'), -('12820', '800002498'), -('10140', '800002499'), -('12232', '800002500'), -('10980', '800002501'), -('12278', '800002502'), -('10581', '800002503'), -('10413', '800002504'), -('10498', '800002505'), -('13142', '800002506'), -('10732', '800002507'), -('11496', '800002507'), -('10181', '800002508'), -('10483', '800002509'), -('11928', '800002510'), -('10389', '800002511'), -('10964', '800002512'), -('10179', '800002513'), -('11366', '800002514'), -('11545', '800002515'), -('11162', '800002516'), -('10435', '800002517'), -('12559', '800002518'), -('10632', '800002519'), -('10219', '800002520'), -('10505', '800002520'), -('10636', '800002522'), -('10787', '800002523'), -('12409', '800002524'), -('10797', '800002525'), -('11322', '800002526'), -('10073', '800002527'), -('12635', '800002527'), -('13223', '800002527'), -('12144', '800002528'), -('12429', '800002529'), -('11689', '800002530'), -('11857', '800002531'), -('10053', '800002532'), -('10888', '800002533'), -('10706', '800002534'), -('12580', '800002535'), -('11532', '800002536'), -('10998', '800002537'), -('13213', '800002537'), -('11933', '800002538'), -('11204', '800002539'), -('10514', '800002540'), -('10721', '800002541'), -('13034', '800002542'), -('11570', '800002543'), -('11558', '800002545'), -('11875', '800002546'), -('12920', '800002547'), -('10622', '800002548'), -('10396', '800002549'), -('12978', '800002550'), -('12403', '800002551'), -('12612', '800002552'), -('10191', '800002553'), -('10829', '800002554'), -('11836', '800002555'), -('11355', '800002556'), -('11809', '800002557'), -('11061', '800002558'), -('12597', '800002559'), -('13230', '800002559'), -('11133', '800002560'), -('12468', '800002561'), -('11293', '800002562'), -('13141', '800002563'), -('10035', '800002564'), -('10781', '800002565'), -('10258', '800002566'), -('10958', '800002567'), -('12593', '800002569'), -('12139', '800002570'), -('10227', '800002571'), -('11740', '800002572'), -('11788', '800002573'), -('12012', '800002574'), -('11827', '800002575'), -('11270', '800002576'), -('11264', '800002577'), -('11902', '800002578'), -('12310', '800002579'), -('10339', '800002580'), -('12860', '800002581'), -('10486', '800002582'), -('11081', '800002583'), -('11686', '800002584'), -('10272', '800002585'), -('12308', '800002586'), -('10971', '800002587'), -('13234', '800002587'), -('10524', '800002588'), -('10796', '800002589'), -('13091', '800002590'), -('12185', '800002591'), -('12479', '800002592'), -('11002', '800002593'), -('12192', '800002594'), -('12078', '800002595'), -('10205', '800002596'), -('12862', '800002597'), -('11029', '800002598'), -('11087', '800002599'), -('10799', '800002600'), -('10683', '800002601'), -('10783', '800002602'), -('10116', '800002603'), -('12283', '800002604'), -('11394', '800002605'), -('11359', '800002606'), -('12263', '800002607'), -('10159', '800002608'), -('11082', '800002609'), -('12119', '800002610'), -('11953', '800002611'), -('11234', '800002612'), -('11168', '800002613'), -('10141', '800002614'), -('11425', '800002615'), -('10618', '800002616'), -('12145', '800002617'), -('11458', '800002618'), -('11633', '800002619'), -('12772', '800002620'), -('10900', '800002621'), -('10250', '800002622'), -('10425', '800002623'), -('12912', '800002625'), -('10868', '800002626'), -('13043', '800002626'), -('11954', '800002627'), -('10956', '800002628'), -('10711', '800002629'), -('11893', '800002630'), -('11443', '800002631'), -('12432', '800002632'), -('12932', '800002632'), -('10166', '800002633'), -('12765', '800002634'), -('12274', '800002635'), -('10726', '800002636'), -('12508', '800002637'), -('10805', '800002638'), -('11675', '800002639'), -('12061', '800002641'), -('12748', '800002642'), -('11429', '800002643'), -('12958', '800002643'), -('12832', '800002644'), -('11175', '800002645'), -('12059', '800002646'), -('10290', '800002647'), -('10464', '800002648'), -('12934', '800002649'), -('12028', '800002650'), -('13058', '800002650'), -('12150', '800002651'), -('10237', '800002652'), -('10606', '800002653'), -('12830', '800002654'), -('12510', '800002655'), -('12441', '800002656'), -('12599', '800002657'), -('12548', '800002658'), -('12146', '800002659'), -('11526', '800002660'), -('11433', '800002661'), -('11208', '800002662'), -('10096', '800002663'), -('10380', '800002664'), -('13075', '800002665'), -('11212', '800002666'), -('13000', '800002667'), -('11888', '800002668'), -('12112', '800002669'), -('11556', '800002670'), -('12939', '800002671'), -('10569', '800002672'), -('10300', '800002673'), -('12718', '800002675'), -('11629', '800002676'), -('11363', '800002677'), -('12153', '800002678'), -('12327', '800002679'), -('10228', '800002681'), -('12015', '800002682'), -('11395', '800002683'), -('12466', '800002684'), -('12881', '800002685'), -('12843', '800002686'), -('11949', '800002687'), -('12438', '800002688'), -('11897', '800002689'), -('13071', '800002690'), -('10853', '800002691'), -('12277', '800002692'), -('12322', '800002693'), -('10831', '800002694'), -('11040', '800002695'), -('10644', '800002696'), -('11550', '800002697'), -('11849', '800002698'), -('10061', '800002699'), -('10065', '800002700'), -('11403', '800002701'), -('12524', '800002702'), -('10089', '800002703'), -('11279', '800002704'), -('10354', '800002705'), -('10596', '800002706'), -('10233', '800002707'), -('12812', '800002708'), -('11236', '800002709'), -('10890', '800002710'), -('12704', '800002711'), -('10707', '800002712'), -('12856', '800002713'), -('11592', '800002714'), -('11459', '800002715'), -('13063', '800002716'), -('12579', '800002717'), -('10565', '800002718'), -('10582', '800002719'), -('11811', '800002720'), -('10785', '800002721'), -('12400', '800002722'), -('10525', '800002723'), -('12070', '800002724'), -('11148', '800002725'), -('10988', '800002726'), -('11118', '800002727'), -('11384', '800002728'), -('12774', '800002729'), -('10506', '800002730'), -('11622', '800002731'), -('11217', '800002732'), -('12749', '800002733'), -('13155', '800002734'), -('11193', '800002735'), -('11060', '800002736'), -('10243', '800002737'), -('10082', '800002738'), -('12264', '800002741'), -('11240', '800002742'), -('12425', '800002743'), -('10015', '800002744'), -('11475', '800002746'), -('13015', '800002746'), -('12563', '800002747'), -('12194', '800002748'), -('11032', '800002749'), -('11931', '800002750'), -('10499', '800002751'), -('11242', '800002751'), -('12849', '800002752'), -('11494', '800002753'), -('13125', '800002754'), -('11130', '800002756'), -('12811', '800002757'), -('11332', '800002758'), -('11540', '800002759'), -('12491', '800002760'), -('11374', '800002761'), -('11170', '800002762'), -('10284', '800002763'), -('10500', '800002764'), -('12295', '800002764'), -('12018', '800002765'), -('12628', '800002766'), -('10430', '800002767'), -('13194', '800002767'), -('11411', '800002768'), -('12394', '800002769'), -('12498', '800002770'), -('11389', '800002771'), -('12207', '800002772'), -('10332', '800002773'), -('10955', '800002774'), -('11846', '800002775'), -('12449', '800002776'), -('10105', '800002777'), -('11268', '800002778'), -('10756', '800002779'), -('11834', '800002780'), -('10426', '800002781'), -('11015', '800002782'), -('11174', '800002783'), -('11248', '800002784'), -('12651', '800002785'), -('11294', '800002786'), -('12533', '800002787'), -('11038', '800002788'), -('11001', '800002789'), -('11028', '800002790'), -('11955', '800002791'), -('11189', '800002793'), -('10212', '800002794'), -('11911', '800002795'), -('12198', '800002796'), -('10451', '800002797'), -('12662', '800002797'), -('13060', '800002798'), -('11574', '800002799'), -('11214', '800002800'), -('11704', '800002801'), -('11679', '800002802'), -('12596', '800002803'), -('10775', '800002804'), -('11096', '800002805'), -('12152', '800002806'), -('12882', '800002807'), -('10677', '800002808'), -('13225', '800002808'), -('10466', '800002809'), -('12446', '800002810'), -('12348', '800002811'), -('12855', '800002812'), -('12691', '800002813'), -('10127', '800002814'), -('10882', '800002815'), -('12624', '800002816'), -('11589', '800002817'), -('12538', '800002818'), -('11831', '800002819'), -('10274', '800002820'), -('10714', '800002821'), -('12716', '800002822'), -('10738', '800002823'), -('12739', '800002824'), -('11659', '800002825'), -('10935', '800002827'), -('11600', '800002827'), -('10030', '800002828'), -('12363', '800002829'), -('12500', '800002830'), -('11147', '800002831'), -('12034', '800002832'), -('11493', '800002833'), -('10109', '800002834'), -('13206', '800002834'), -('12010', '800002835'), -('11286', '800002836'), -('10356', '800002837'), -('12237', '800002838'), -('10496', '800002839'), -('13011', '800002840'), -('13037', '800002841'), -('12115', '800002842'), -('13016', '800002843'), -('13013', '800002844'), -('11253', '800002845'), -('12186', '800002846'), -('10164', '800002847'), -('12512', '800002848'), -('12427', '800002849'), -('12899', '800002850'), -('12113', '800002851'), -('12123', '800002852'), -('12384', '800002853'), -('10855', '800002854'), -('10729', '800002855'), -('13089', '800002856'), -('11567', '800002857'), -('10782', '800002858'), -('12731', '800002859'), -('10342', '800002860'), -('11733', '800002861'), -('10992', '800002862'), -('12770', '800002863'), -('12791', '800002864'), -('11344', '800002865'), -('12796', '800002866'), -('10088', '800002867'), -('12307', '800002868'), -('10755', '800002869'), -('12567', '800002870'), -('10720', '800002871'), -('11587', '800002872'), -('10462', '800002873'), -('13050', '800002874'), -('10337', '800002875'), -('11927', '800002876'), -('10016', '800002877'), -('10079', '800002877'), -('10724', '800002878'), -('10748', '800002879'), -('10493', '800002880'), -('11910', '800002881'), -('12453', '800002882'), -('10174', '800002883'), -('11091', '800002884'), -('12835', '800002885'), -('12861', '800002886'), -('12733', '800002887'), -('11338', '800002888'), -('12398', '800002889'), -('10037', '800002890'), -('10921', '800002890'), -('12650', '800002891'), -('10360', '800002892'), -('11514', '800002893'), -('10527', '800002894'), -('13126', '800002895'), -('12496', '800002896'), -('11705', '800002897'), -('12262', '800002898'), -('10586', '800002899'), -('10399', '800002900'), -('10857', '800002901'), -('10463', '800002902'), -('11981', '800002903'), -('12472', '800002904'), -('12511', '800002905'), -('12069', '800002906'), -('12156', '800002907'), -('10060', '800002908'), -('11238', '800002909'), -('10323', '800002910'), -('11309', '800002911'), -('10182', '800002912'), -('12421', '800002913'), -('12458', '800002914'), -('11672', '800002915'), -('10497', '800002916'), -('11979', '800002917'), -('12780', '800002919'), -('12136', '800002920'), -('12499', '800002921'), -('12149', '800002922'), -('11755', '800002923'), -('12043', '800002924'), -('11315', '800002925'), -('12370', '800002926'), -('10708', '800002927'), -('10946', '800002928'), -('11010', '800002929'), -('11216', '800002930'), -('11839', '800002931'), -('11990', '800002932'), -('11894', '800002933'), -('11154', '800002935'), -('11881', '800002936'), -('13133', '800002937'), -('10211', '800002938'), -('10795', '800002939'), -('12474', '800002940'), -('11404', '800002941'), -('13140', '800002942'), -('10605', '800002943'), -('11043', '800002945'), -('10260', '800002947'), -('10715', '800002948'), -('12545', '800002949'), -('10959', '800002950'), -('10919', '800002951'), -('11485', '800002952'), -('12542', '800002953'), -('10968', '800002954'), -('12482', '800002955'), -('11871', '800002956'), -('12859', '800002957'), -('12304', '800002958'), -('10347', '800002959'), -('12682', '800002959'), -('13082', '800002959'), -('12720', '800002960'), -('10343', '800002961'), -('10597', '800002962'), -('11760', '800002963'), -('12745', '800002964'), -('11646', '800002965'), -('13014', '800002966'), -('11386', '800002967'), -('12998', '800002968'), -('12679', '800002969'), -('12737', '800002969'), -('11934', '800002970'), -('12413', '800002971'), -('11303', '800002972'), -('11139', '800002973'), -('11580', '800002974'), -('10638', '800002975'), -('12638', '800002976'), -('11947', '800002977'), -('11830', '800002978'), -('13061', '800002978'), -('11356', '800002979'), -('13105', '800002980'), -('11667', '800002981'), -('10255', '800002982'), -('10817', '800002983'), -('11482', '800002984'), -('11364', '800002985'), -('12478', '800002986'), -('10802', '800002987'), -('11872', '800002988'), -('13178', '800002988'), -('10798', '800002989'), -('12814', '800002990'), -('11944', '800002991'), -('10416', '800002992'), -('12200', '800002992'), -('10256', '800002993'), -('11942', '800002994'), -('12204', '800002995'), -('11239', '800002996'), -('11053', '800002997'), -('12126', '800002998'), -('13077', '800002999') +('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), - course_name varchar(64) + title varchar(200) ); alter table sis_courses add primary key (course_id); -insert into sis_courses (course_id, dept_id, dept_abbr, course_num, course_name) values -(100000, '30000', 'GS', '101', '???'), -(100001, '30000', 'GS', '110', '???'), -(100002, '30000', 'GS', '120', '???'), -(100003, '30000', 'GS', '150', '???'), -(100004, '30000', 'GS', '201', '???'), -(100005, '30000', 'GS', '210', '???'), -(100006, '30000', 'GS', '220', '???'), -(100007, '30000', 'GS', '250', '???'), -(100008, '30000', 'GS', '301', '???'), -(100009, '30000', 'GS', '350', '???'), -(100010, '30000', 'GS', '399', '???'), -(100011, '45000', 'SPM', '101', '???'), -(100012, '45000', 'SPM', '110', '???'), -(100013, '45000', 'SPM', '120', '???'), -(100014, '45000', 'SPM', '150', '???'), -(100015, '45000', 'SPM', '201', '???'), -(100016, '45000', 'SPM', '210', '???'), -(100017, '45000', 'SPM', '220', '???'), -(100018, '45000', 'SPM', '250', '???'), -(100019, '45000', 'SPM', '301', '???'), -(100020, '45000', 'SPM', '350', '???'), -(100021, '45000', 'SPM', '399', '???'), -(100022, '50000', 'BUS', '101', '???'), -(100023, '50000', 'BUS', '110', '???'), -(100024, '50000', 'BUS', '120', '???'), -(100025, '50000', 'BUS', '150', '???'), -(100026, '50000', 'BUS', '201', '???'), -(100027, '50000', 'BUS', '210', '???'), -(100028, '50000', 'BUS', '220', '???'), -(100029, '50000', 'BUS', '250', '???'), -(100030, '50000', 'BUS', '301', '???'), -(100031, '50000', 'BUS', '350', '???'), -(100032, '50000', 'BUS', '399', '???'), -(100033, '60000', 'SCS', '101', '???'), -(100034, '60000', 'SCS', '110', '???'), -(100035, '60000', 'SCS', '120', '???'), -(100036, '60000', 'SCS', '150', '???'), -(100037, '60000', 'SCS', '201', '???'), -(100038, '60000', 'SCS', '210', '???'), -(100039, '60000', 'SCS', '220', '???'), -(100040, '60000', 'SCS', '250', '???'), -(100041, '60000', 'SCS', '301', '???'), -(100042, '60000', 'SCS', '350', '???'), -(100043, '60000', 'SCS', '399', '???'), -(100044, '20100', 'AAAS', '101', '???'), -(100045, '20100', 'AAAS', '110', '???'), -(100046, '20100', 'AAAS', '120', '???'), -(100047, '20100', 'AAAS', '150', '???'), -(100048, '20100', 'AAAS', '201', '???'), -(100049, '20100', 'AAAS', '210', '???'), -(100050, '20100', 'AAAS', '220', '???'), -(100051, '20100', 'AAAS', '250', '???'), -(100052, '20100', 'AAAS', '301', '???'), -(100053, '20100', 'AAAS', '350', '???'), -(100054, '20100', 'AAAS', '399', '???'), -(100055, '20150', 'AS', '101', '???'), -(100056, '20150', 'AS', '110', '???'), -(100057, '20150', 'AS', '120', '???'), -(100058, '20150', 'AS', '150', '???'), -(100059, '20150', 'AS', '201', '???'), -(100060, '20150', 'AS', '210', '???'), -(100061, '20150', 'AS', '220', '???'), -(100062, '20150', 'AS', '250', '???'), -(100063, '20150', 'AS', '301', '???'), -(100064, '20150', 'AS', '350', '???'), -(100065, '20150', 'AS', '399', '???'), -(100066, '20200', 'ANTH', '101', '???'), -(100067, '20200', 'ANTH', '110', '???'), -(100068, '20200', 'ANTH', '120', '???'), -(100069, '20200', 'ANTH', '150', '???'), -(100070, '20200', 'ANTH', '201', '???'), -(100071, '20200', 'ANTH', '210', '???'), -(100072, '20200', 'ANTH', '220', '???'), -(100073, '20200', 'ANTH', '250', '???'), -(100074, '20200', 'ANTH', '301', '???'), -(100075, '20200', 'ANTH', '350', '???'), -(100076, '20200', 'ANTH', '399', '???'), -(100077, '20250', 'APCS', '101', '???'), -(100078, '20250', 'APCS', '110', '???'), -(100079, '20250', 'APCS', '120', '???'), -(100080, '20250', 'APCS', '150', '???'), -(100081, '20250', 'APCS', '201', '???'), -(100082, '20250', 'APCS', '210', '???'), -(100083, '20250', 'APCS', '220', '???'), -(100084, '20250', 'APCS', '250', '???'), -(100085, '20250', 'APCS', '301', '???'), -(100086, '20250', 'APCS', '350', '???'), -(100087, '20250', 'APCS', '399', '???'), -(100088, '20300', 'AMAT', '101', '???'), -(100089, '20300', 'AMAT', '110', '???'), -(100090, '20300', 'AMAT', '120', '???'), -(100091, '20300', 'AMAT', '150', '???'), -(100092, '20300', 'AMAT', '201', '???'), -(100093, '20300', 'AMAT', '210', '???'), -(100094, '20300', 'AMAT', '220', '???'), -(100095, '20300', 'AMAT', '250', '???'), -(100096, '20300', 'AMAT', '301', '???'), -(100097, '20300', 'AMAT', '350', '???'), -(100098, '20300', 'AMAT', '399', '???'), -(100099, '20350', 'APHY', '101', '???'), -(100100, '20350', 'APHY', '110', '???'), -(100101, '20350', 'APHY', '120', '???'), -(100102, '20350', 'APHY', '150', '???'), -(100103, '20350', 'APHY', '201', '???'), -(100104, '20350', 'APHY', '210', '???'), -(100105, '20350', 'APHY', '220', '???'), -(100106, '20350', 'APHY', '250', '???'), -(100107, '20350', 'APHY', '301', '???'), -(100108, '20350', 'APHY', '350', '???'), -(100109, '20350', 'APHY', '399', '???'), -(100110, '20400', 'ARCH', '101', '???'), -(100111, '20400', 'ARCH', '110', '???'), -(100112, '20400', 'ARCH', '120', '???'), -(100113, '20400', 'ARCH', '150', '???'), -(100114, '20400', 'ARCH', '201', '???'), -(100115, '20400', 'ARCH', '210', '???'), -(100116, '20400', 'ARCH', '220', '???'), -(100117, '20400', 'ARCH', '250', '???'), -(100118, '20400', 'ARCH', '301', '???'), -(100119, '20400', 'ARCH', '350', '???'), -(100120, '20400', 'ARCH', '399', '???'), -(100121, '20450', 'ART', '101', '???'), -(100122, '20450', 'ART', '110', '???'), -(100123, '20450', 'ART', '120', '???'), -(100124, '20450', 'ART', '150', '???'), -(100125, '20450', 'ART', '201', '???'), -(100126, '20450', 'ART', '210', '???'), -(100127, '20450', 'ART', '220', '???'), -(100128, '20450', 'ART', '250', '???'), -(100129, '20450', 'ART', '301', '???'), -(100130, '20450', 'ART', '350', '???'), -(100131, '20450', 'ART', '399', '???'), -(100132, '20500', 'ASTR', '101', '???'), -(100133, '20500', 'ASTR', '110', '???'), -(100134, '20500', 'ASTR', '120', '???'), -(100135, '20500', 'ASTR', '150', '???'), -(100136, '20500', 'ASTR', '201', '???'), -(100137, '20500', 'ASTR', '210', '???'), -(100138, '20500', 'ASTR', '220', '???'), -(100139, '20500', 'ASTR', '250', '???'), -(100140, '20500', 'ASTR', '301', '???'), -(100141, '20500', 'ASTR', '350', '???'), -(100142, '20500', 'ASTR', '399', '???'), -(100143, '20550', 'BIOL', '101', '???'), -(100144, '20550', 'BIOL', '110', '???'), -(100145, '20550', 'BIOL', '120', '???'), -(100146, '20550', 'BIOL', '150', '???'), -(100147, '20550', 'BIOL', '201', '???'), -(100148, '20550', 'BIOL', '210', '???'), -(100149, '20550', 'BIOL', '220', '???'), -(100150, '20550', 'BIOL', '250', '???'), -(100151, '20550', 'BIOL', '301', '???'), -(100152, '20550', 'BIOL', '350', '???'), -(100153, '20550', 'BIOL', '399', '???'), -(100154, '20600', 'BPHY', '101', '???'), -(100155, '20600', 'BPHY', '110', '???'), -(100156, '20600', 'BPHY', '120', '???'), -(100157, '20600', 'BPHY', '150', '???'), -(100158, '20600', 'BPHY', '201', '???'), -(100159, '20600', 'BPHY', '210', '???'), -(100160, '20600', 'BPHY', '220', '???'), -(100161, '20600', 'BPHY', '250', '???'), -(100162, '20600', 'BPHY', '301', '???'), -(100163, '20600', 'BPHY', '350', '???'), -(100164, '20600', 'BPHY', '399', '???'), -(100165, '20650', 'BIOS', '101', '???'), -(100166, '20650', 'BIOS', '110', '???'), -(100167, '20650', 'BIOS', '120', '???'), -(100168, '20650', 'BIOS', '150', '???'), -(100169, '20650', 'BIOS', '201', '???'), -(100170, '20650', 'BIOS', '210', '???'), -(100171, '20650', 'BIOS', '220', '???'), -(100172, '20650', 'BIOS', '250', '???'), -(100173, '20650', 'BIOS', '301', '???'), -(100174, '20650', 'BIOS', '350', '???'), -(100175, '20650', 'BIOS', '399', '???'), -(100176, '20700', 'CELT', '101', '???'), -(100177, '20700', 'CELT', '110', '???'), -(100178, '20700', 'CELT', '120', '???'), -(100179, '20700', 'CELT', '150', '???'), -(100180, '20700', 'CELT', '201', '???'), -(100181, '20700', 'CELT', '210', '???'), -(100182, '20700', 'CELT', '220', '???'), -(100183, '20700', 'CELT', '250', '???'), -(100184, '20700', 'CELT', '301', '???'), -(100185, '20700', 'CELT', '350', '???'), -(100186, '20700', 'CELT', '399', '???'), -(100187, '20750', 'CHEM', '101', '???'), -(100188, '20750', 'CHEM', '110', '???'), -(100189, '20750', 'CHEM', '120', '???'), -(100190, '20750', 'CHEM', '150', '???'), -(100191, '20750', 'CHEM', '201', '???'), -(100192, '20750', 'CHEM', '210', '???'), -(100193, '20750', 'CHEM', '220', '???'), -(100194, '20750', 'CHEM', '250', '???'), -(100195, '20750', 'CHEM', '301', '???'), -(100196, '20750', 'CHEM', '350', '???'), -(100197, '20750', 'CHEM', '399', '???'), -(100198, '20800', 'CLSS', '101', '???'), -(100199, '20800', 'CLSS', '110', '???'), -(100200, '20800', 'CLSS', '120', '???'), -(100201, '20800', 'CLSS', '150', '???'), -(100202, '20800', 'CLSS', '201', '???'), -(100203, '20800', 'CLSS', '210', '???'), -(100204, '20800', 'CLSS', '220', '???'), -(100205, '20800', 'CLSS', '250', '???'), -(100206, '20800', 'CLSS', '301', '???'), -(100207, '20800', 'CLSS', '350', '???'), -(100208, '20800', 'CLSS', '399', '???'), -(100209, '20850', 'CPLT', '101', '???'), -(100210, '20850', 'CPLT', '110', '???'), -(100211, '20850', 'CPLT', '120', '???'), -(100212, '20850', 'CPLT', '150', '???'), -(100213, '20850', 'CPLT', '201', '???'), -(100214, '20850', 'CPLT', '210', '???'), -(100215, '20850', 'CPLT', '220', '???'), -(100216, '20850', 'CPLT', '250', '???'), -(100217, '20850', 'CPLT', '301', '???'), -(100218, '20850', 'CPLT', '350', '???'), -(100219, '20850', 'CPLT', '399', '???'), -(100220, '20900', 'CS', '101', '???'), -(100221, '20900', 'CS', '110', '???'), -(100222, '20900', 'CS', '120', '???'), -(100223, '20900', 'CS', '150', '???'), -(100224, '20900', 'CS', '201', '???'), -(100225, '20900', 'CS', '210', '???'), -(100226, '20900', 'CS', '220', '???'), -(100227, '20900', 'CS', '250', '???'), -(100228, '20900', 'CS', '301', '???'), -(100229, '20900', 'CS', '350', '???'), -(100230, '20900', 'CS', '399', '???'), -(100231, '20950', 'PSCI', '101', '???'), -(100232, '20950', 'PSCI', '110', '???'), -(100233, '20950', 'PSCI', '120', '???'), -(100234, '20950', 'PSCI', '150', '???'), -(100235, '20950', 'PSCI', '201', '???'), -(100236, '20950', 'PSCI', '210', '???'), -(100237, '20950', 'PSCI', '220', '???'), -(100238, '20950', 'PSCI', '250', '???'), -(100239, '20950', 'PSCI', '301', '???'), -(100240, '20950', 'PSCI', '350', '???'), -(100241, '20950', 'PSCI', '399', '???'), -(100242, '21000', 'EALC', '101', '???'), -(100243, '21000', 'EALC', '110', '???'), -(100244, '21000', 'EALC', '120', '???'), -(100245, '21000', 'EALC', '150', '???'), -(100246, '21000', 'EALC', '201', '???'), -(100247, '21000', 'EALC', '210', '???'), -(100248, '21000', 'EALC', '220', '???'), -(100249, '21000', 'EALC', '250', '???'), -(100250, '21000', 'EALC', '301', '???'), -(100251, '21000', 'EALC', '350', '???'), -(100252, '21000', 'EALC', '399', '???'), -(100253, '21050', 'ECOM', '101', '???'), -(100254, '21050', 'ECOM', '110', '???'), -(100255, '21050', 'ECOM', '120', '???'), -(100256, '21050', 'ECOM', '150', '???'), -(100257, '21050', 'ECOM', '201', '???'), -(100258, '21050', 'ECOM', '210', '???'), -(100259, '21050', 'ECOM', '220', '???'), -(100260, '21050', 'ECOM', '250', '???'), -(100261, '21050', 'ECOM', '301', '???'), -(100262, '21050', 'ECOM', '350', '???'), -(100263, '21050', 'ECOM', '399', '???'), -(100264, '21100', 'ENG', '101', '???'), -(100265, '21100', 'ENG', '110', '???'), -(100266, '21100', 'ENG', '120', '???'), -(100267, '21100', 'ENG', '150', '???'), -(100268, '21100', 'ENG', '201', '???'), -(100269, '21100', 'ENG', '210', '???'), -(100270, '21100', 'ENG', '220', '???'), -(100271, '21100', 'ENG', '250', '???'), -(100272, '21100', 'ENG', '301', '???'), -(100273, '21100', 'ENG', '350', '???'), -(100274, '21100', 'ENG', '399', '???'), -(100275, '21150', 'ENGL', '101', '???'), -(100276, '21150', 'ENGL', '110', '???'), -(100277, '21150', 'ENGL', '120', '???'), -(100278, '21150', 'ENGL', '150', '???'), -(100279, '21150', 'ENGL', '201', '???'), -(100280, '21150', 'ENGL', '210', '???'), -(100281, '21150', 'ENGL', '220', '???'), -(100282, '21150', 'ENGL', '250', '???'), -(100283, '21150', 'ENGL', '301', '???'), -(100284, '21150', 'ENGL', '350', '???'), -(100285, '21150', 'ENGL', '399', '???'), -(100286, '21200', 'ENV', '101', '???'), -(100287, '21200', 'ENV', '110', '???'), -(100288, '21200', 'ENV', '120', '???'), -(100289, '21200', 'ENV', '150', '???'), -(100290, '21200', 'ENV', '201', '???'), -(100291, '21200', 'ENV', '210', '???'), -(100292, '21200', 'ENV', '220', '???'), -(100293, '21200', 'ENV', '250', '???'), -(100294, '21200', 'ENV', '301', '???'), -(100295, '21200', 'ENV', '350', '???'), -(100296, '21200', 'ENV', '399', '???'), -(100297, '21250', 'WRI', '101', '???'), -(100298, '21250', 'WRI', '110', '???'), -(100299, '21250', 'WRI', '120', '???'), -(100300, '21250', 'WRI', '150', '???'), -(100301, '21250', 'WRI', '201', '???'), -(100302, '21250', 'WRI', '210', '???'), -(100303, '21250', 'WRI', '220', '???'), -(100304, '21250', 'WRI', '250', '???'), -(100305, '21250', 'WRI', '301', '???'), -(100306, '21250', 'WRI', '350', '???'), -(100307, '21250', 'WRI', '399', '???'), -(100308, '21300', 'GERM', '101', '???'), -(100309, '21300', 'GERM', '110', '???'), -(100310, '21300', 'GERM', '120', '???'), -(100311, '21300', 'GERM', '150', '???'), -(100312, '21300', 'GERM', '201', '???'), -(100313, '21300', 'GERM', '210', '???'), -(100314, '21300', 'GERM', '220', '???'), -(100315, '21300', 'GERM', '250', '???'), -(100316, '21300', 'GERM', '301', '???'), -(100317, '21300', 'GERM', '350', '???'), -(100318, '21300', 'GERM', '399', '???'), -(100319, '21350', 'GHP', '101', '???'), -(100320, '21350', 'GHP', '110', '???'), -(100321, '21350', 'GHP', '120', '???'), -(100322, '21350', 'GHP', '150', '???'), -(100323, '21350', 'GHP', '201', '???'), -(100324, '21350', 'GHP', '210', '???'), -(100325, '21350', 'GHP', '220', '???'), -(100326, '21350', 'GHP', '250', '???'), -(100327, '21350', 'GHP', '301', '???'), -(100328, '21350', 'GHP', '350', '???'), -(100329, '21350', 'GHP', '399', '???'), -(100330, '21400', 'GVMT', '101', '???'), -(100331, '21400', 'GVMT', '110', '???'), -(100332, '21400', 'GVMT', '120', '???'), -(100333, '21400', 'GVMT', '150', '???'), -(100334, '21400', 'GVMT', '201', '???'), -(100335, '21400', 'GVMT', '210', '???'), -(100336, '21400', 'GVMT', '220', '???'), -(100337, '21400', 'GVMT', '250', '???'), -(100338, '21400', 'GVMT', '301', '???'), -(100339, '21400', 'GVMT', '350', '???'), -(100340, '21400', 'GVMT', '399', '???'), -(100341, '21450', 'HIST', '101', '???'), -(100342, '21450', 'HIST', '110', '???'), -(100343, '21450', 'HIST', '120', '???'), -(100344, '21450', 'HIST', '150', '???'), -(100345, '21450', 'HIST', '201', '???'), -(100346, '21450', 'HIST', '210', '???'), -(100347, '21450', 'HIST', '220', '???'), -(100348, '21450', 'HIST', '250', '???'), -(100349, '21450', 'HIST', '301', '???'), -(100350, '21450', 'HIST', '350', '???'), -(100351, '21450', 'HIST', '399', '???'), -(100352, '21500', 'LIT', '101', '???'), -(100353, '21500', 'LIT', '110', '???'), -(100354, '21500', 'LIT', '120', '???'), -(100355, '21500', 'LIT', '150', '???'), -(100356, '21500', 'LIT', '201', '???'), -(100357, '21500', 'LIT', '210', '???'), -(100358, '21500', 'LIT', '220', '???'), -(100359, '21500', 'LIT', '250', '???'), -(100360, '21500', 'LIT', '301', '???'), -(100361, '21500', 'LIT', '350', '???'), -(100362, '21500', 'LIT', '399', '???'), -(100363, '21550', 'HUM', '101', '???'), -(100364, '21550', 'HUM', '110', '???'), -(100365, '21550', 'HUM', '120', '???'), -(100366, '21550', 'HUM', '150', '???'), -(100367, '21550', 'HUM', '201', '???'), -(100368, '21550', 'HUM', '210', '???'), -(100369, '21550', 'HUM', '220', '???'), -(100370, '21550', 'HUM', '250', '???'), -(100371, '21550', 'HUM', '301', '???'), -(100372, '21550', 'HUM', '350', '???'), -(100373, '21550', 'HUM', '399', '???'), -(100374, '21600', 'LING', '101', '???'), -(100375, '21600', 'LING', '110', '???'), -(100376, '21600', 'LING', '120', '???'), -(100377, '21600', 'LING', '150', '???'), -(100378, '21600', 'LING', '201', '???'), -(100379, '21600', 'LING', '210', '???'), -(100380, '21600', 'LING', '220', '???'), -(100381, '21600', 'LING', '250', '???'), -(100382, '21600', 'LING', '301', '???'), -(100383, '21600', 'LING', '350', '???'), -(100384, '21600', 'LING', '399', '???'), -(100385, '21650', 'MAT', '101', '???'), -(100386, '21650', 'MAT', '110', '???'), -(100387, '21650', 'MAT', '120', '???'), -(100388, '21650', 'MAT', '150', '???'), -(100389, '21650', 'MAT', '201', '???'), -(100390, '21650', 'MAT', '210', '???'), -(100391, '21650', 'MAT', '220', '???'), -(100392, '21650', 'MAT', '250', '???'), -(100393, '21650', 'MAT', '301', '???'), -(100394, '21650', 'MAT', '350', '???'), -(100395, '21650', 'MAT', '399', '???'), -(100396, '21700', 'MEDS', '101', '???'), -(100397, '21700', 'MEDS', '110', '???'), -(100398, '21700', 'MEDS', '120', '???'), -(100399, '21700', 'MEDS', '150', '???'), -(100400, '21700', 'MEDS', '201', '???'), -(100401, '21700', 'MEDS', '210', '???'), -(100402, '21700', 'MEDS', '220', '???'), -(100403, '21700', 'MEDS', '250', '???'), -(100404, '21700', 'MEDS', '301', '???'), -(100405, '21700', 'MEDS', '350', '???'), -(100406, '21700', 'MEDS', '399', '???'), -(100407, '21750', 'MES', '101', '???'), -(100408, '21750', 'MES', '110', '???'), -(100409, '21750', 'MES', '120', '???'), -(100410, '21750', 'MES', '150', '???'), -(100411, '21750', 'MES', '201', '???'), -(100412, '21750', 'MES', '210', '???'), -(100413, '21750', 'MES', '220', '???'), -(100414, '21750', 'MES', '250', '???'), -(100415, '21750', 'MES', '301', '???'), -(100416, '21750', 'MES', '350', '???'), -(100417, '21750', 'MES', '399', '???'), -(100418, '21800', 'MCB', '101', '???'), -(100419, '21800', 'MCB', '110', '???'), -(100420, '21800', 'MCB', '120', '???'), -(100421, '21800', 'MCB', '150', '???'), -(100422, '21800', 'MCB', '201', '???'), -(100423, '21800', 'MCB', '210', '???'), -(100424, '21800', 'MCB', '220', '???'), -(100425, '21800', 'MCB', '250', '???'), -(100426, '21800', 'MCB', '301', '???'), -(100427, '21800', 'MCB', '350', '???'), -(100428, '21800', 'MCB', '399', '???'), -(100429, '21850', 'MUS', '101', '???'), -(100430, '21850', 'MUS', '110', '???'), -(100431, '21850', 'MUS', '120', '???'), -(100432, '21850', 'MUS', '150', '???'), -(100433, '21850', 'MUS', '201', '???'), -(100434, '21850', 'MUS', '210', '???'), -(100435, '21850', 'MUS', '220', '???'), -(100436, '21850', 'MUS', '250', '???'), -(100437, '21850', 'MUS', '301', '???'), -(100438, '21850', 'MUS', '350', '???'), -(100439, '21850', 'MUS', '399', '???'), -(100440, '21900', 'NELC', '101', '???'), -(100441, '21900', 'NELC', '110', '???'), -(100442, '21900', 'NELC', '120', '???'), -(100443, '21900', 'NELC', '150', '???'), -(100444, '21900', 'NELC', '201', '???'), -(100445, '21900', 'NELC', '210', '???'), -(100446, '21900', 'NELC', '220', '???'), -(100447, '21900', 'NELC', '250', '???'), -(100448, '21900', 'NELC', '301', '???'), -(100449, '21900', 'NELC', '350', '???'), -(100450, '21900', 'NELC', '399', '???'), -(100451, '21950', 'PHIL', '101', '???'), -(100452, '21950', 'PHIL', '110', '???'), -(100453, '21950', 'PHIL', '120', '???'), -(100454, '21950', 'PHIL', '150', '???'), -(100455, '21950', 'PHIL', '201', '???'), -(100456, '21950', 'PHIL', '210', '???'), -(100457, '21950', 'PHIL', '220', '???'), -(100458, '21950', 'PHIL', '250', '???'), -(100459, '21950', 'PHIL', '301', '???'), -(100460, '21950', 'PHIL', '350', '???'), -(100461, '21950', 'PHIL', '399', '???'), -(100462, '22000', 'PHY', '101', '???'), -(100463, '22000', 'PHY', '110', '???'), -(100464, '22000', 'PHY', '120', '???'), -(100465, '22000', 'PHY', '150', '???'), -(100466, '22000', 'PHY', '201', '???'), -(100467, '22000', 'PHY', '210', '???'), -(100468, '22000', 'PHY', '220', '???'), -(100469, '22000', 'PHY', '250', '???'), -(100470, '22000', 'PHY', '301', '???'), -(100471, '22000', 'PHY', '350', '???'), -(100472, '22000', 'PHY', '399', '???'), -(100473, '22050', 'POLI', '101', '???'), -(100474, '22050', 'POLI', '110', '???'), -(100475, '22050', 'POLI', '120', '???'), -(100476, '22050', 'POLI', '150', '???'), -(100477, '22050', 'POLI', '201', '???'), -(100478, '22050', 'POLI', '210', '???'), -(100479, '22050', 'POLI', '220', '???'), -(100480, '22050', 'POLI', '250', '???'), -(100481, '22050', 'POLI', '301', '???'), -(100482, '22050', 'POLI', '350', '???'), -(100483, '22050', 'POLI', '399', '???'), -(100484, '22100', 'PSYC', '101', '???'), -(100485, '22100', 'PSYC', '110', '???'), -(100486, '22100', 'PSYC', '120', '???'), -(100487, '22100', 'PSYC', '150', '???'), -(100488, '22100', 'PSYC', '201', '???'), -(100489, '22100', 'PSYC', '210', '???'), -(100490, '22100', 'PSYC', '220', '???'), -(100491, '22100', 'PSYC', '250', '???'), -(100492, '22100', 'PSYC', '301', '???'), -(100493, '22100', 'PSYC', '350', '???'), -(100494, '22100', 'PSYC', '399', '???'), -(100495, '22150', 'REL', '101', '???'), -(100496, '22150', 'REL', '110', '???'), -(100497, '22150', 'REL', '120', '???'), -(100498, '22150', 'REL', '150', '???'), -(100499, '22150', 'REL', '201', '???'), -(100500, '22150', 'REL', '210', '???'), -(100501, '22150', 'REL', '220', '???'), -(100502, '22150', 'REL', '250', '???'), -(100503, '22150', 'REL', '301', '???'), -(100504, '22150', 'REL', '350', '???'), -(100505, '22150', 'REL', '399', '???'), -(100506, '22200', 'ROML', '101', '???'), -(100507, '22200', 'ROML', '110', '???'), -(100508, '22200', 'ROML', '120', '???'), -(100509, '22200', 'ROML', '150', '???'), -(100510, '22200', 'ROML', '201', '???'), -(100511, '22200', 'ROML', '210', '???'), -(100512, '22200', 'ROML', '220', '???'), -(100513, '22200', 'ROML', '250', '???'), -(100514, '22200', 'ROML', '301', '???'), -(100515, '22200', 'ROML', '350', '???'), -(100516, '22200', 'ROML', '399', '???'), -(100517, '22250', 'SLAV', '101', '???'), -(100518, '22250', 'SLAV', '110', '???'), -(100519, '22250', 'SLAV', '120', '???'), -(100520, '22250', 'SLAV', '150', '???'), -(100521, '22250', 'SLAV', '201', '???'), -(100522, '22250', 'SLAV', '210', '???'), -(100523, '22250', 'SLAV', '220', '???'), -(100524, '22250', 'SLAV', '250', '???'), -(100525, '22250', 'SLAV', '301', '???'), -(100526, '22250', 'SLAV', '350', '???'), -(100527, '22250', 'SLAV', '399', '???'), -(100528, '22300', 'SOCS', '101', '???'), -(100529, '22300', 'SOCS', '110', '???'), -(100530, '22300', 'SOCS', '120', '???'), -(100531, '22300', 'SOCS', '150', '???'), -(100532, '22300', 'SOCS', '201', '???'), -(100533, '22300', 'SOCS', '210', '???'), -(100534, '22300', 'SOCS', '220', '???'), -(100535, '22300', 'SOCS', '250', '???'), -(100536, '22300', 'SOCS', '301', '???'), -(100537, '22300', 'SOCS', '350', '???'), -(100538, '22300', 'SOCS', '399', '???'), -(100539, '22350', 'SOC', '101', '???'), -(100540, '22350', 'SOC', '110', '???'), -(100541, '22350', 'SOC', '120', '???'), -(100542, '22350', 'SOC', '150', '???'), -(100543, '22350', 'SOC', '201', '???'), -(100544, '22350', 'SOC', '210', '???'), -(100545, '22350', 'SOC', '220', '???'), -(100546, '22350', 'SOC', '250', '???'), -(100547, '22350', 'SOC', '301', '???'), -(100548, '22350', 'SOC', '350', '???'), -(100549, '22350', 'SOC', '399', '???'), -(100550, '22400', 'SAS', '101', '???'), -(100551, '22400', 'SAS', '110', '???'), -(100552, '22400', 'SAS', '120', '???'), -(100553, '22400', 'SAS', '150', '???'), -(100554, '22400', 'SAS', '201', '???'), -(100555, '22400', 'SAS', '210', '???'), -(100556, '22400', 'SAS', '220', '???'), -(100557, '22400', 'SAS', '250', '???'), -(100558, '22400', 'SAS', '301', '???'), -(100559, '22400', 'SAS', '350', '???'), -(100560, '22400', 'SAS', '399', '???'), -(100561, '22450', 'STAT', '101', '???'), -(100562, '22450', 'STAT', '110', '???'), -(100563, '22450', 'STAT', '120', '???'), -(100564, '22450', 'STAT', '150', '???'), -(100565, '22450', 'STAT', '201', '???'), -(100566, '22450', 'STAT', '210', '???'), -(100567, '22450', 'STAT', '220', '???'), -(100568, '22450', 'STAT', '250', '???'), -(100569, '22450', 'STAT', '301', '???'), -(100570, '22450', 'STAT', '350', '???'), -(100571, '22450', 'STAT', '399', '???'), -(100572, '22500', 'THEA', '101', '???'), -(100573, '22500', 'THEA', '110', '???'), -(100574, '22500', 'THEA', '120', '???'), -(100575, '22500', 'THEA', '150', '???'), -(100576, '22500', 'THEA', '201', '???'), -(100577, '22500', 'THEA', '210', '???'), -(100578, '22500', 'THEA', '220', '???'), -(100579, '22500', 'THEA', '250', '???'), -(100580, '22500', 'THEA', '301', '???'), -(100581, '22500', 'THEA', '350', '???'), -(100582, '22500', 'THEA', '399', '???'), -(100583, '22550', 'GSS', '101', '???'), -(100584, '22550', 'GSS', '110', '???'), -(100585, '22550', 'GSS', '120', '???'), -(100586, '22550', 'GSS', '150', '???'), -(100587, '22550', 'GSS', '201', '???'), -(100588, '22550', 'GSS', '210', '???'), -(100589, '22550', 'GSS', '220', '???'), -(100590, '22550', 'GSS', '250', '???'), -(100591, '22550', 'GSS', '301', '???'), -(100592, '22550', 'GSS', '350', '???'), -(100593, '22550', 'GSS', '399', '???'), -(100594, '90100', 'ICFE', '101', '???'), -(100595, '90100', 'ICFE', '110', '???'), -(100596, '90100', 'ICFE', '120', '???'), -(100597, '90100', 'ICFE', '150', '???'), -(100598, '90100', 'ICFE', '201', '???'), -(100599, '90100', 'ICFE', '210', '???'), -(100600, '90100', 'ICFE', '220', '???'), -(100601, '90100', 'ICFE', '250', '???'), -(100602, '90100', 'ICFE', '301', '???'), -(100603, '90100', 'ICFE', '350', '???'), -(100604, '90100', 'ICFE', '399', '???'), -(100605, '90200', 'ISSR', '101', '???'), -(100606, '90200', 'ISSR', '110', '???'), -(100607, '90200', 'ISSR', '120', '???'), -(100608, '90200', 'ISSR', '150', '???'), -(100609, '90200', 'ISSR', '201', '???'), -(100610, '90200', 'ISSR', '210', '???'), -(100611, '90200', 'ISSR', '220', '???'), -(100612, '90200', 'ISSR', '250', '???'), -(100613, '90200', 'ISSR', '301', '???'), -(100614, '90200', 'ISSR', '350', '???'), -(100615, '90200', 'ISSR', '399', '???'), -(100616, '90300', 'RCWS', '101', '???'), -(100617, '90300', 'RCWS', '110', '???'), -(100618, '90300', 'RCWS', '120', '???'), -(100619, '90300', 'RCWS', '150', '???'), -(100620, '90300', 'RCWS', '201', '???'), -(100621, '90300', 'RCWS', '210', '???'), -(100622, '90300', 'RCWS', '220', '???'), -(100623, '90300', 'RCWS', '250', '???'), -(100624, '90300', 'RCWS', '301', '???'), -(100625, '90300', 'RCWS', '350', '???'), -(100626, '90300', 'RCWS', '399', '???') +/** + * 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), @@ -7134,9093 +3769,7130 @@ create table sis_enrollment ( insert into sis_enrollment (course_id, person_id, term, role) values -('100552', '800000010', '2021FA', ',faculty'), -('100555', '800000010', '2021FA', ',faculty'), -('100617', '800000014', '2021FA', ',faculty'), -('100478', '800000015', '2021FA', ',faculty'), -('100481', '800000015', '2021FA', ',faculty'), -('100584', '800000019', '2021FA', ',faculty'), -('100589', '800000019', '2021FA', ',faculty'), -('100622', '800000020', '2021FA', ',faculty'), -('100626', '800000020', '2021FA', ',faculty'), -('100007', '800000024', '2021FA', ',faculty'), -('100010', '800000029', '2021FA', ',faculty'), -('100244', '800000035', '2021FA', ',faculty'), -('100251', '800000035', '2021FA', ',faculty'), -('100573', '800000043', '2021FA', ',faculty'), -('100374', '800000046', '2021FA', ',faculty'), -('100380', '800000046', '2021FA', ',faculty'), -('100607', '800000061', '2021FA', ',faculty'), -('100609', '800000061', '2021FA', ',faculty'), -('100455', '800000068', '2021FA', ',faculty'), -('100457', '800000068', '2021FA', ',faculty'), -('100492', '800000076', '2021FA', ',faculty'), -('100612', '800000091', '2021FA', ',faculty'), -('100045', '800000098', '2021FA', ',faculty'), -('100053', '800000098', '2021FA', ',faculty'), -('100047', '800000100', '2021FA', ',faculty'), -('100052', '800000100', '2021FA', ',faculty'), -('100389', '800000103', '2021FA', ',faculty'), -('100395', '800000103', '2021FA', ',faculty'), -('100555', '800000118', '2021FA', ',faculty'), -('100231', '800000119', '2021FA', ',faculty'), -('100236', '800000120', '2021FA', ',faculty'), -('100386', '800000121', '2021FA', ',faculty'), -('100395', '800000121', '2021FA', ',faculty'), -('100092', '800000122', '2021FA', ',faculty'), -('100095', '800000122', '2021FA', ',faculty'), -('100356', '800000127', '2021FA', ',faculty'), -('100360', '800000127', '2021FA', ',faculty'), -('100603', '800000128', '2021FA', ',faculty'), -('100137', '800000139', '2021FA', ',faculty'), -('100614', '800000145', '2021FA', ',faculty'), -('100419', '800000149', '2021FA', ',faculty'), -('100423', '800000149', '2021FA', ',faculty'), -('100401', '800000163', '2021FA', ',faculty'), -('100403', '800000163', '2021FA', ',faculty'), -('100167', '800000186', '2021FA', ',faculty'), -('100173', '800000186', '2021FA', ',faculty'), -('100316', '800000203', '2021FA', ',faculty'), -('100317', '800000203', '2021FA', ',faculty'), -('100012', '800000207', '2021FA', ',faculty'), -('100012', '800000207', '2021FA', ',faculty'), -('100586', '800000208', '2021FA', ',faculty'), -('100588', '800000208', '2021FA', ',faculty'), -('100526', '800000209', '2021FA', ',faculty'), -('100522', '800000217', '2021FA', ',faculty'), -('100522', '800000217', '2021FA', ',faculty'), -('100273', '800000223', '2021FA', ',faculty'), -('100006', '800000224', '2021FA', ',faculty'), -('100196', '800000228', '2021FA', ',faculty'), -('100600', '800000229', '2021FA', ',faculty'), -('100603', '800000229', '2021FA', ',faculty'), -('100203', '800000230', '2021FA', ',faculty'), -('100204', '800000230', '2021FA', ',faculty'), -('100485', '800000243', '2021FA', ',faculty'), -('100490', '800000243', '2021FA', ',faculty'), -('100356', '800000251', '2021FA', ',faculty'), -('100358', '800000251', '2021FA', ',faculty'), -('100056', '800000253', '2021FA', ',faculty'), -('100061', '800000253', '2021FA', ',faculty'), -('100077', '800000261', '2021FA', ',faculty'), -('100085', '800000261', '2021FA', ',faculty'), -('100025', '800000262', '2021FA', ',faculty'), -('100282', '800000263', '2021FA', ',faculty'), -('100269', '800000266', '2021FA', ',faculty'), -('100274', '800000266', '2021FA', ',faculty'), -('100571', '800000269', '2021FA', ',faculty'), -('100379', '800000276', '2021FA', ',faculty'), -('100466', '800000278', '2021FA', ',faculty'), -('100469', '800000278', '2021FA', ',faculty'), -('100537', '800000281', '2021FA', ',faculty'), -('100578', '800000290', '2021FA', ',faculty'), -('100581', '800000290', '2021FA', ',faculty'), -('100617', '800000300', '2021FA', ',faculty'), -('100622', '800000300', '2021FA', ',faculty'), -('100327', '800000308', '2021FA', ',faculty'), -('100595', '800000311', '2021FA', ',faculty'), -('100208', '800000312', '2021FA', ',faculty'), -('100114', '800000318', '2021FA', ',faculty'), -('100114', '800000318', '2021FA', ',faculty'), -('100273', '800000323', '2021FA', ',faculty'), -('100148', '800000325', '2021FA', ',faculty'), -('100152', '800000325', '2021FA', ',faculty'), -('100106', '800000328', '2021FA', ',faculty'), -('100108', '800000328', '2021FA', ',faculty'), -('100289', '800000329', '2021FA', ',faculty'), -('100293', '800000329', '2021FA', ',faculty'), -('100005', '800000336', '2021FA', ',faculty'), -('100046', '800000337', '2021FA', ',faculty'), -('100606', '800000341', '2021FA', ',faculty'), -('100609', '800000341', '2021FA', ',faculty'), -('100033', '800000349', '2021FA', ',faculty'), -('100039', '800000349', '2021FA', ',faculty'), -('100595', '800000351', '2021FA', ',faculty'), -('100600', '800000351', '2021FA', ',faculty'), -('100308', '800000357', '2021FA', ',faculty'), -('100346', '800000364', '2021FA', ',faculty'), -('100351', '800000364', '2021FA', ',faculty'), -('100033', '800000366', '2021FA', ',faculty'), -('100038', '800000366', '2021FA', ',faculty'), -('100287', '800000376', '2021FA', ',faculty'), -('100293', '800000376', '2021FA', ',faculty'), -('100341', '800000377', '2021FA', ',faculty'), -('100342', '800000377', '2021FA', ',faculty'), -('100408', '800000379', '2021FA', ',faculty'), -('100433', '800000382', '2021FA', ',faculty'), -('100562', '800000383', '2021FA', ',faculty'), -('100570', '800000383', '2021FA', ',faculty'), -('100557', '800000384', '2021FA', ',faculty'), -('100558', '800000384', '2021FA', ',faculty'), -('100594', '800000386', '2021FA', ',faculty'), -('100566', '800000396', '2021FA', ',faculty'), -('100567', '800000396', '2021FA', ',faculty'), -('100574', '800000399', '2021FA', ',faculty'), -('100148', '800000404', '2021FA', ',faculty'), -('100605', '800000405', '2021FA', ',faculty'), -('100605', '800000405', '2021FA', ',faculty'), -('100121', '800000408', '2021FA', ',faculty'), -('100123', '800000408', '2021FA', ',faculty'), -('100601', '800000432', '2021FA', ',faculty'), -('100603', '800000432', '2021FA', ',faculty'), -('100224', '800000444', '2021FA', ',faculty'), -('100227', '800000444', '2021FA', ',faculty'), -('100499', '800000446', '2021FA', ',faculty'), -('100606', '800000452', '2021FA', ',faculty'), -('100026', '800000459', '2021FA', ',faculty'), -('100122', '800000467', '2021FA', ',faculty'), -('100124', '800000467', '2021FA', ',faculty'), -('100389', '800000481', '2021FA', ',faculty'), -('100607', '800000483', '2021FA', ',faculty'), -('100528', '800000484', '2021FA', ',faculty'), -('100192', '800000488', '2021FA', ',faculty'), -('100192', '800000488', '2021FA', ',faculty'), -('100608', '800000493', '2021FA', ',faculty'), -('100610', '800000493', '2021FA', ',faculty'), -('100248', '800000505', '2021FA', ',faculty'), -('100596', '800000508', '2021FA', ',faculty'), -('100599', '800000508', '2021FA', ',faculty'), -('100058', '800000511', '2021FA', ',faculty'), -('100408', '800000522', '2021FA', ',faculty'), -('100410', '800000522', '2021FA', ',faculty'), -('100442', '800000524', '2021FA', ',faculty'), -('100443', '800000524', '2021FA', ',faculty'), -('100250', '800000536', '2021FA', ',faculty'), -('100252', '800000536', '2021FA', ',faculty'), -('100198', '800000537', '2021FA', ',faculty'), -('100253', '800000546', '2021FA', ',faculty'), -('100253', '800000546', '2021FA', ',faculty'), -('100500', '800000551', '2021FA', ',faculty'), -('100210', '800000559', '2021FA', ',faculty'), -('100344', '800000560', '2021FA', ',faculty'), -('100351', '800000560', '2021FA', ',faculty'), -('100529', '800000582', '2021FA', ',faculty'), -('100484', '800000598', '2021FA', ',faculty'), -('100486', '800000598', '2021FA', ',faculty'), -('100279', '800000599', '2021FA', ',faculty'), -('100136', '800000600', '2021FA', ',faculty'), -('100103', '800000601', '2021FA', ',faculty'), -('100109', '800000601', '2021FA', ',faculty'), -('100157', '800000609', '2021FA', ',faculty'), -('100448', '800000614', '2021FA', ',faculty'), -('100067', '800000620', '2021FA', ',faculty'), -('100070', '800000620', '2021FA', ',faculty'), -('100564', '800000638', '2021FA', ',faculty'), -('100529', '800000639', '2021FA', ',faculty'), -('100542', '800000653', '2021FA', ',faculty'), -('100547', '800000653', '2021FA', ',faculty'), -('100516', '800000659', '2021FA', ',faculty'), -('100516', '800000659', '2021FA', ',faculty'), -('100408', '800000661', '2021FA', ',faculty'), -('100284', '800000669', '2021FA', ',faculty'), -('100285', '800000669', '2021FA', ',faculty'), -('100599', '800000674', '2021FA', ',faculty'), -('100344', '800000675', '2021FA', ',faculty'), -('100452', '800000680', '2021FA', ',faculty'), -('100454', '800000680', '2021FA', ',faculty'), -('100138', '800000681', '2021FA', ',faculty'), -('100495', '800000684', '2021FA', ',faculty'), -('100503', '800000684', '2021FA', ',faculty'), -('100381', '800000686', '2021FA', ',faculty'), -('100122', '800000691', '2021FA', ',faculty'), -('100443', '800000697', '2021FA', ',faculty'), -('100449', '800000697', '2021FA', ',faculty'), -('100326', '800000702', '2021FA', ',faculty'), -('100329', '800000702', '2021FA', ',faculty'), -('100155', '800000706', '2021FA', ',faculty'), -('100445', '800000722', '2021FA', ',faculty'), -('100446', '800000722', '2021FA', ',faculty'), -('100025', '800000745', '2021FA', ',faculty'), -('100033', '800000752', '2021FA', ',faculty'), -('100477', '800000756', '2021FA', ',faculty'), -('100482', '800000756', '2021FA', ',faculty'), -('100137', '800000758', '2021FA', ',faculty'), -('100188', '800000763', '2021FA', ',faculty'), -('100194', '800000763', '2021FA', ',faculty'), -('100202', '800000764', '2021FA', ',faculty'), -('100586', '800000774', '2021FA', ',faculty'), -('100289', '800000775', '2021FA', ',faculty'), -('100257', '800000777', '2021FA', ',faculty'), -('100258', '800000777', '2021FA', ',faculty'), -('100018', '800000779', '2021FA', ',faculty'), -('100584', '800000780', '2021FA', ',faculty'), -('100093', '800000788', '2021FA', ',faculty'), -('100098', '800000788', '2021FA', ',faculty'), -('100364', '800000805', '2021FA', ',faculty'), -('100365', '800000805', '2021FA', ',faculty'), -('100239', '800000816', '2021FA', ',faculty'), -('100425', '800000820', '2021FA', ',faculty'), -('100427', '800000820', '2021FA', ',faculty'), -('100392', '800000829', '2021FA', ',faculty'), -('100174', '800000831', '2021FA', ',faculty'), -('100382', '800000833', '2021FA', ',faculty'), -('100625', '800000834', '2021FA', ',faculty'), -('100078', '800000853', '2021FA', ',faculty'), -('100081', '800000853', '2021FA', ',faculty'), -('100499', '800000860', '2021FA', ',faculty'), -('100343', '800000863', '2021FA', ',faculty'), -('100346', '800000863', '2021FA', ',faculty'), -('100575', '800000870', '2021FA', ',faculty'), -('100580', '800000870', '2021FA', ',faculty'), -('100485', '800000883', '2021FA', ',faculty'), -('100489', '800000883', '2021FA', ',faculty'), -('100066', '800000896', '2021FA', ',faculty'), -('100076', '800000896', '2021FA', ',faculty'), -('100377', '800000897', '2021FA', ',faculty'), -('100171', '800000898', '2021FA', ',faculty'), -('100173', '800000898', '2021FA', ',faculty'), -('100385', '800000919', '2021FA', ',faculty'), -('100390', '800000919', '2021FA', ',faculty'), -('100464', '800000926', '2021FA', ',faculty'), -('100611', '800000928', '2021FA', ',faculty'), -('100615', '800000928', '2021FA', ',faculty'), -('100547', '800000931', '2021FA', ',faculty'), -('100558', '800000934', '2021FA', ',faculty'), -('100062', '800000946', '2021FA', ',faculty'), -('100063', '800000946', '2021FA', ',faculty'), -('100433', '800000949', '2021FA', ',faculty'), -('100121', '800000950', '2021FA', ',faculty'), -('100130', '800000950', '2021FA', ',faculty'), -('100079', '800000954', '2021FA', ',faculty'), -('100115', '800000957', '2021FA', ',faculty'), -('100120', '800000957', '2021FA', ',faculty'), -('100097', '800000958', '2021FA', ',faculty'), -('100279', '800000967', '2021FA', ',faculty'), -('100280', '800000967', '2021FA', ',faculty'), -('100043', '800000969', '2021FA', ',faculty'), -('100043', '800000969', '2021FA', ',faculty'), -('100171', '800000970', '2021FA', ',faculty'), -('100114', '800000973', '2021FA', ',faculty'), -('100117', '800000973', '2021FA', ',faculty'), -('100514', '800000976', '2021FA', ',faculty'), -('100516', '800000976', '2021FA', ',faculty'), -('100596', '800000980', '2021FA', ',faculty'), -('100604', '800000980', '2021FA', ',faculty'), -('100215', '800000982', '2021FA', ',faculty'), -('100282', '800000983', '2021FA', ',faculty'), -('100284', '800000983', '2021FA', ',faculty'), -('100069', '800000994', '2021FA', ',faculty'), -('100071', '800000994', '2021FA', ',faculty'), -('100165', '800000999', '2021FA', ',faculty'), -('100174', '800000999', '2021FA', ',faculty'), -('100568', '800001002', '2021FA', ',faculty'), -('100570', '800001002', '2021FA', ',faculty'), -('100407', '800001007', '2021FA', ',faculty'), -('100416', '800001007', '2021FA', ',faculty'), -('100507', '800001009', '2021FA', ',faculty'), -('100512', '800001009', '2021FA', ',faculty'), -('100330', '800001024', '2021FA', ',faculty'), -('100339', '800001024', '2021FA', ',faculty'), -('100229', '800001025', '2021FA', ',faculty'), -('100338', '800001031', '2021FA', ',faculty'), -('100340', '800001031', '2021FA', ',faculty'), -('100484', '800001039', '2021FA', ',faculty'), -('100485', '800001039', '2021FA', ',faculty'), -('100271', '800001041', '2021FA', ',faculty'), -('100274', '800001041', '2021FA', ',faculty'), -('100264', '800001042', '2021FA', ',faculty'), -('100268', '800001042', '2021FA', ',faculty'), -('100503', '800001045', '2021FA', ',faculty'), -('100296', '800001046', '2021FA', ',faculty'), -('100086', '800001054', '2021FA', ',faculty'), -('100597', '800001057', '2021FA', ',faculty'), -('100604', '800001057', '2021FA', ',faculty'), -('100053', '800001069', '2021FA', ',faculty'), -('100054', '800001069', '2021FA', ',faculty'), -('100002', '800001072', '2021FA', ',faculty'), -('100003', '800001072', '2021FA', ',faculty'), -('100011', '800001079', '2021FA', ',faculty'), -('100120', '800001082', '2021FA', ',faculty'), -('100115', '800001083', '2021FA', ',faculty'), -('100317', '800001086', '2021FA', ',faculty'), -('100554', '800001099', '2021FA', ',faculty'), -('100559', '800001099', '2021FA', ',faculty'), -('100438', '800001101', '2021FA', ',faculty'), -('100024', '800001103', '2021FA', ',faculty'), -('100025', '800001103', '2021FA', ',faculty'), -('100146', '800001109', '2021FA', ',faculty'), -('100148', '800001109', '2021FA', ',faculty'), -('100094', '800001115', '2021FA', ',faculty'), -('100098', '800001115', '2021FA', ',faculty'), -('100354', '800001125', '2021FA', ',faculty'), -('100084', '800001136', '2021FA', ',faculty'), -('100090', '800001141', '2021FA', ',faculty'), -('100094', '800001141', '2021FA', ',faculty'), -('100625', '800001146', '2021FA', ',faculty'), -('100571', '800001155', '2021FA', ',faculty'), -('100268', '800001163', '2021FA', ',faculty'), -('100095', '800001175', '2021FA', ',faculty'), -('100097', '800001175', '2021FA', ',faculty'), -('100300', '800001178', '2021FA', ',faculty'), -('100221', '800001186', '2021FA', ',faculty'), -('100222', '800001186', '2021FA', ',faculty'), -('100440', '800001197', '2021FA', ',faculty'), -('100443', '800001197', '2021FA', ',faculty'), -('100127', '800001204', '2021FA', ',faculty'), -('100609', '800001228', '2021FA', ',faculty'), -('100319', '800001235', '2021FA', ',faculty'), -('100323', '800001235', '2021FA', ',faculty'), -('100592', '800001237', '2021FA', ',faculty'), -('100435', '800001247', '2021FA', ',faculty'), -('100350', '800001254', '2021FA', ',faculty'), -('100351', '800001254', '2021FA', ',faculty'), -('100386', '800001255', '2021FA', ',faculty'), -('100392', '800001255', '2021FA', ',faculty'), -('100402', '800001259', '2021FA', ',faculty'), -('100406', '800001259', '2021FA', ',faculty'), -('100618', '800001261', '2021FA', ',faculty'), -('100082', '800001263', '2021FA', ',faculty'), -('100352', '800001264', '2021FA', ',faculty'), -('100286', '800001265', '2021FA', ',faculty'), -('100289', '800001265', '2021FA', ',faculty'), -('100112', '800001269', '2021FA', ',faculty'), -('100114', '800001269', '2021FA', ',faculty'), -('100545', '800001274', '2021FA', ',faculty'), -('100617', '800001284', '2021FA', ',faculty'), -('100619', '800001284', '2021FA', ',faculty'), -('100048', '800001286', '2021FA', ',faculty'), -('100053', '800001286', '2021FA', ',faculty'), -('100176', '800001288', '2021FA', ',faculty'), -('100035', '800001295', '2021FA', ',faculty'), -('100036', '800001295', '2021FA', ',faculty'), -('100149', '800001297', '2021FA', ',faculty'), -('100194', '800001302', '2021FA', ',faculty'), -('100363', '800001317', '2021FA', ',faculty'), -('100369', '800001317', '2021FA', ',faculty'), -('100194', '800001319', '2021FA', ',faculty'), -('100536', '800001321', '2021FA', ',faculty'), -('100459', '800001336', '2021FA', ',faculty'), -('100397', '800001344', '2021FA', ',faculty'), -('100566', '800001346', '2021FA', ',faculty'), -('100500', '800001347', '2021FA', ',faculty'), -('100503', '800001347', '2021FA', ',faculty'), -('100254', '800001352', '2021FA', ',faculty'), -('100242', '800001355', '2021FA', ',faculty'), -('100252', '800001355', '2021FA', ',faculty'), -('100303', '800001356', '2021FA', ',faculty'), -('100526', '800001361', '2021FA', ',faculty'), -('100527', '800001361', '2021FA', ',faculty'), -('100268', '800001376', '2021FA', ',faculty'), -('100584', '800001382', '2021FA', ',faculty'), -('100584', '800001382', '2021FA', ',faculty'), -('100595', '800001384', '2021FA', ',faculty'), -('100596', '800001384', '2021FA', ',faculty'), -('100303', '800001386', '2021FA', ',faculty'), -('100305', '800001386', '2021FA', ',faculty'), -('100532', '800001390', '2021FA', ',faculty'), -('100533', '800001390', '2021FA', ',faculty'), -('100600', '800001394', '2021FA', ',faculty'), -('100517', '800001405', '2021FA', ',faculty'), -('100040', '800001406', '2021FA', ',faculty'), -('100222', '800001417', '2021FA', ',faculty'), -('100225', '800001417', '2021FA', ',faculty'), -('100608', '800001425', '2021FA', ',faculty'), -('100485', '800001427', '2021FA', ',faculty'), -('100491', '800001427', '2021FA', ',faculty'), -('100599', '800001430', '2021FA', ',faculty'), -('100602', '800001430', '2021FA', ',faculty'), -('100170', '800001437', '2021FA', ',faculty'), -('100175', '800001437', '2021FA', ',faculty'), -('100352', '800001456', '2021FA', ',faculty'), -('100358', '800001456', '2021FA', ',faculty'), -('100382', '800001457', '2021FA', ',faculty'), -('100384', '800001457', '2021FA', ',faculty'), -('100204', '800001459', '2021FA', ',faculty'), -('100114', '800001465', '2021FA', ',faculty'), -('100135', '800001467', '2021FA', ',faculty'), -('100356', '800001483', '2021FA', ',faculty'), -('100359', '800001483', '2021FA', ',faculty'), -('100610', '800001485', '2021FA', ',faculty'), -('100611', '800001485', '2021FA', ',faculty'), -('100299', '800001489', '2021FA', ',faculty'), -('100300', '800001489', '2021FA', ',faculty'), -('100555', '800001490', '2021FA', ',faculty'), -('100166', '800001494', '2021FA', ',faculty'), -('100169', '800001494', '2021FA', ',faculty'), -('100213', '800001514', '2021FA', ',faculty'), -('100181', '800001515', '2021FA', ',faculty'), -('100181', '800001515', '2021FA', ',faculty'), -('100600', '800001517', '2021FA', ',faculty'), -('100249', '800001534', '2021FA', ',faculty'), -('100426', '800001549', '2021FA', ',faculty'), -('100100', '800001551', '2021FA', ',faculty'), -('100107', '800001551', '2021FA', ',faculty'), -('100226', '800001555', '2021FA', ',faculty'), -('100227', '800001555', '2021FA', ',faculty'), -('100087', '800001558', '2021FA', ',faculty'), -('100617', '800001560', '2021FA', ',faculty'), -('100332', '800001567', '2021FA', ',faculty'), -('100247', '800001570', '2021FA', ',faculty'), -('100248', '800001570', '2021FA', ',faculty'), -('100619', '800001575', '2021FA', ',faculty'), -('100622', '800001575', '2021FA', ',faculty'), -('100449', '800001578', '2021FA', ',faculty'), -('100450', '800001578', '2021FA', ',faculty'), -('100435', '800001587', '2021FA', ',faculty'), -('100619', '800001590', '2021FA', ',faculty'), -('100623', '800001590', '2021FA', ',faculty'), -('100091', '800001604', '2021FA', ',faculty'), -('100098', '800001604', '2021FA', ',faculty'), -('100470', '800001615', '2021FA', ',faculty'), -('100135', '800001624', '2021FA', ',faculty'), -('100140', '800001624', '2021FA', ',faculty'), -('100610', '800001629', '2021FA', ',faculty'), -('100417', '800001636', '2021FA', ',faculty'), -('100414', '800001651', '2021FA', ',faculty'), -('100283', '800001654', '2021FA', ',faculty'), -('100027', '800001655', '2021FA', ',faculty'), -('100099', '800001656', '2021FA', ',faculty'), -('100048', '800001663', '2021FA', ',faculty'), -('100048', '800001663', '2021FA', ',faculty'), -('100293', '800001664', '2021FA', ',faculty'), -('100264', '800001666', '2021FA', ',faculty'), -('100110', '800001669', '2021FA', ',faculty'), -('100117', '800001669', '2021FA', ',faculty'), -('100048', '800001672', '2021FA', ',faculty'), -('100326', '800001676', '2021FA', ',faculty'), -('100099', '800001684', '2021FA', ',faculty'), -('100108', '800001684', '2021FA', ',faculty'), -('100498', '800001686', '2021FA', ',faculty'), -('100370', '800001709', '2021FA', ',faculty'), -('100500', '800001725', '2021FA', ',faculty'), -('100505', '800001725', '2021FA', ',faculty'), -('100062', '800001727', '2021FA', ',faculty'), -('100065', '800001727', '2021FA', ',faculty'), -('100164', '800001736', '2021FA', ',faculty'), -('100055', '800001737', '2021FA', ',faculty'), -('100061', '800001737', '2021FA', ',faculty'), -('100123', '800001739', '2021FA', ',faculty'), -('100522', '800001742', '2021FA', ',faculty'), -('100288', '800001746', '2021FA', ',faculty'), -('100292', '800001746', '2021FA', ',faculty'), -('100025', '800001760', '2021FA', ',faculty'), -('100030', '800001760', '2021FA', ',faculty'), -('100060', '800001764', '2021FA', ',faculty'), -('100608', '800001772', '2021FA', ',faculty'), -('100575', '800001778', '2021FA', ',faculty'), -('100464', '800001784', '2021FA', ',faculty'), -('100471', '800001784', '2021FA', ',faculty'), -('100255', '800001803', '2021FA', ',faculty'), -('100258', '800001803', '2021FA', ',faculty'), -('100162', '800001807', '2021FA', ',faculty'), -('100583', '800001810', '2021FA', ',faculty'), -('100277', '800001812', '2021FA', ',faculty'), -('100125', '800001825', '2021FA', ',faculty'), -('100127', '800001825', '2021FA', ',faculty'), -('100399', '800001827', '2021FA', ',faculty'), -('100406', '800001827', '2021FA', ',faculty'), -('100193', '800001828', '2021FA', ',faculty'), -('100197', '800001828', '2021FA', ',faculty'), -('100568', '800001829', '2021FA', ',faculty'), -('100568', '800001829', '2021FA', ',faculty'), -('100476', '800001838', '2021FA', ',faculty'), -('100482', '800001838', '2021FA', ',faculty'), -('100531', '800001843', '2021FA', ',faculty'), -('100535', '800001843', '2021FA', ',faculty'), -('100620', '800001845', '2021FA', ',faculty'), -('100622', '800001845', '2021FA', ',faculty'), -('100476', '800001851', '2021FA', ',faculty'), -('100483', '800001851', '2021FA', ',faculty'), -('100038', '800001856', '2021FA', ',faculty'), -('100042', '800001856', '2021FA', ',faculty'), -('100561', '800001862', '2021FA', ',faculty'), -('100561', '800001862', '2021FA', ',faculty'), -('100173', '800001864', '2021FA', ',faculty'), -('100175', '800001864', '2021FA', ',faculty'), -('100091', '800001867', '2021FA', ',faculty'), -('100093', '800001867', '2021FA', ',faculty'), -('100512', '800001879', '2021FA', ',faculty'), -('100513', '800001879', '2021FA', ',faculty'), -('100474', '800001885', '2021FA', ',faculty'), -('100477', '800001885', '2021FA', ',faculty'), -('100356', '800001886', '2021FA', ',faculty'), -('100587', '800001889', '2021FA', ',faculty'), -('100589', '800001889', '2021FA', ',faculty'), -('100298', '800001890', '2021FA', ',faculty'), -('100176', '800001897', '2021FA', ',faculty'), -('100183', '800001897', '2021FA', ',faculty'), -('100418', '800001904', '2021FA', ',faculty'), -('100427', '800001904', '2021FA', ',faculty'), -('100473', '800001908', '2021FA', ',faculty'), -('100400', '800001909', '2021FA', ',faculty'), -('100400', '800001909', '2021FA', ',faculty'), -('100365', '800001913', '2021FA', ',faculty'), -('100369', '800001913', '2021FA', ',faculty'), -('100235', '800001922', '2021FA', ',faculty'), -('100158', '800001939', '2021FA', ',faculty'), -('100160', '800001939', '2021FA', ',faculty'), -('100398', '800001942', '2021FA', ',faculty'), -('100146', '800001943', '2021FA', ',faculty'), -('100150', '800001943', '2021FA', ',faculty'), -('100376', '800001945', '2021FA', ',faculty'), -('100379', '800001945', '2021FA', ',faculty'), -('100312', '800001950', '2021FA', ',faculty'), -('100315', '800001950', '2021FA', ',faculty'), -('100202', '800001959', '2021FA', ',faculty'), -('100205', '800001959', '2021FA', ',faculty'), -('100039', '800001960', '2021FA', ',faculty'), -('100041', '800001960', '2021FA', ',faculty'), -('100220', '800001962', '2021FA', ',faculty'), -('100228', '800001962', '2021FA', ',faculty'), -('100511', '800001963', '2021FA', ',faculty'), -('100515', '800001963', '2021FA', ',faculty'), -('100473', '800001964', '2021FA', ',faculty'), -('100553', '800001973', '2021FA', ',faculty'), -('100556', '800001973', '2021FA', ',faculty'), -('100405', '800001975', '2021FA', ',faculty'), -('100472', '800001978', '2021FA', ',faculty'), -('100247', '800001999', '2021FA', ',faculty'), -('100123', '800002000', '2021FA', ',faculty'), -('100124', '800002000', '2021FA', ',faculty'), -('100187', '800002009', '2021FA', ',faculty'), -('100189', '800002009', '2021FA', ',faculty'), -('100479', '800002012', '2021FA', ',faculty'), -('100481', '800002012', '2021FA', ',faculty'), -('100521', '800002015', '2021FA', ',faculty'), -('100522', '800002015', '2021FA', ',faculty'), -('100540', '800002016', '2021FA', ',faculty'), -('100544', '800002016', '2021FA', ',faculty'), -('100319', '800002021', '2021FA', ',faculty'), -('100329', '800002021', '2021FA', ',faculty'), -('100517', '800002024', '2021FA', ',faculty'), -('100527', '800002024', '2021FA', ',faculty'), -('100545', '800002036', '2021FA', ',faculty'), -('100617', '800002040', '2021FA', ',faculty'), -('100623', '800002040', '2021FA', ',faculty'), -('100390', '800002043', '2021FA', ',faculty'), -('100177', '800002047', '2021FA', ',faculty'), -('100178', '800002047', '2021FA', ',faculty'), -('100019', '800002049', '2021FA', ',faculty'), -('100379', '800002051', '2021FA', ',faculty'), -('100382', '800002051', '2021FA', ',faculty'), -('100182', '800002057', '2021FA', ',faculty'), -('100183', '800002057', '2021FA', ',faculty'), -('100057', '800002059', '2021FA', ',faculty'), -('100058', '800002059', '2021FA', ',faculty'), -('100150', '800002067', '2021FA', ',faculty'), -('100151', '800002067', '2021FA', ',faculty'), -('100212', '800002069', '2021FA', ',faculty'), -('100214', '800002069', '2021FA', ',faculty'), -('100496', '800002084', '2021FA', ',faculty'), -('100343', '800002088', '2021FA', ',faculty'), -('100175', '800002096', '2021FA', ',faculty'), -('100255', '800002106', '2021FA', ',faculty'), -('100258', '800002106', '2021FA', ',faculty'), -('100132', '800002110', '2021FA', ',faculty'), -('100139', '800002114', '2021FA', ',faculty'), -('100099', '800002121', '2021FA', ',faculty'), -('100107', '800002121', '2021FA', ',faculty'), -('100587', '800002129', '2021FA', ',faculty'), -('100589', '800002129', '2021FA', ',faculty'), -('100128', '800002130', '2021FA', ',faculty'), -('100337', '800002131', '2021FA', ',faculty'), -('100386', '800002132', '2021FA', ',faculty'), -('100313', '800002141', '2021FA', ',faculty'), -('100314', '800002141', '2021FA', ',faculty'), -('100080', '800002142', '2021FA', ',faculty'), -('100083', '800002142', '2021FA', ',faculty'), -('100355', '800002147', '2021FA', ',faculty'), -('100444', '800002150', '2021FA', ',faculty'), -('100444', '800002150', '2021FA', ',faculty'), -('100264', '800002156', '2021FA', ',faculty'), -('100265', '800002156', '2021FA', ',faculty'), -('100118', '800002158', '2021FA', ',faculty'), -('100236', '800002164', '2021FA', ',faculty'), -('100314', '800002171', '2021FA', ',faculty'), -('100316', '800002171', '2021FA', ',faculty'), -('100400', '800002181', '2021FA', ',faculty'), -('100616', '800002190', '2021FA', ',faculty'), -('100342', '800002192', '2021FA', ',faculty'), -('100345', '800002192', '2021FA', ',faculty'), -('100341', '800002193', '2021FA', ',faculty'), -('100345', '800002193', '2021FA', ',faculty'), -('100183', '800002206', '2021FA', ',faculty'), -('100241', '800002223', '2021FA', ',faculty'), -('100241', '800002223', '2021FA', ',faculty'), -('100432', '800002234', '2021FA', ',faculty'), -('100438', '800002234', '2021FA', ',faculty'), -('100430', '800002250', '2021FA', ',faculty'), -('100438', '800002250', '2021FA', ',faculty'), -('100451', '800002251', '2021FA', ',faculty'), -('100454', '800002251', '2021FA', ',faculty'), -('100102', '800002252', '2021FA', ',faculty'), -('100103', '800002252', '2021FA', ',faculty'), -('100476', '800002260', '2021FA', ',faculty'), -('100512', '800002261', '2021FA', ',faculty'), -('100302', '800002265', '2021FA', ',faculty'), -('100302', '800002265', '2021FA', ',faculty'), -('100467', '800002271', '2021FA', ',faculty'), -('100471', '800002271', '2021FA', ',faculty'), -('100544', '800002275', '2021FA', ',faculty'), -('100092', '800002283', '2021FA', ',faculty'), -('100098', '800002283', '2021FA', ',faculty'), -('100365', '800002285', '2021FA', ',faculty'), -('100368', '800002285', '2021FA', ',faculty'), -('100221', '800002289', '2021FA', ',faculty'), -('100227', '800002289', '2021FA', ',faculty'), -('100541', '800002290', '2021FA', ',faculty'), -('100542', '800002290', '2021FA', ',faculty'), -('100451', '800002295', '2021FA', ',faculty'), -('100188', '800002303', '2021FA', ',faculty'), -('100191', '800002303', '2021FA', ',faculty'), -('100245', '800002305', '2021FA', ',faculty'), -('100245', '800002305', '2021FA', ',faculty'), -('100279', '800002317', '2021FA', ',faculty'), -('100285', '800002317', '2021FA', ',faculty'), -('100576', '800002327', '2021FA', ',faculty'), -('100579', '800002327', '2021FA', ',faculty'), -('100608', '800002329', '2021FA', ',faculty'), -('100614', '800002329', '2021FA', ',faculty'), -('100485', '800002335', '2021FA', ',faculty'), -('100490', '800002335', '2021FA', ',faculty'), -('100157', '800002347', '2021FA', ',faculty'), -('100158', '800002347', '2021FA', ',faculty'), -('100529', '800002349', '2021FA', ',faculty'), -('100317', '800002351', '2021FA', ',faculty'), -('100552', '800002366', '2021FA', ',faculty'), -('100556', '800002366', '2021FA', ',faculty'), -('100596', '800002368', '2021FA', ',faculty'), -('100156', '800002374', '2021FA', ',faculty'), -('100163', '800002374', '2021FA', ',faculty'), -('100609', '800002380', '2021FA', ',faculty'), -('100613', '800002380', '2021FA', ',faculty'), -('100154', '800002389', '2021FA', ',faculty'), -('100448', '800002394', '2021FA', ',faculty'), -('100047', '800002398', '2021FA', ',faculty'), -('100048', '800002398', '2021FA', ',faculty'), -('100539', '800002409', '2021FA', ',faculty'), -('100068', '800002413', '2021FA', ',faculty'), -('100339', '800002419', '2021FA', ',faculty'), -('100454', '800002430', '2021FA', ',faculty'), -('100597', '800002432', '2021FA', ',faculty'), -('100180', '800002437', '2021FA', ',faculty'), -('100180', '800002437', '2021FA', ',faculty'), -('100008', '800002454', '2021FA', ',faculty'), -('100597', '800002456', '2021FA', ',faculty'), -('100598', '800002456', '2021FA', ',faculty'), -('100600', '800002459', '2021FA', ',faculty'), -('100601', '800002459', '2021FA', ',faculty'), -('100502', '800002462', '2021FA', ',faculty'), -('100001', '800002467', '2021FA', ',faculty'), -('100295', '800002473', '2021FA', ',faculty'), -('100295', '800002473', '2021FA', ',faculty'), -('100579', '800002485', '2021FA', ',faculty'), -('100520', '800002488', '2021FA', ',faculty'), -('100524', '800002488', '2021FA', ',faculty'), -('100255', '800002495', '2021FA', ',faculty'), -('100263', '800002495', '2021FA', ',faculty'), -('100208', '800002497', '2021FA', ',faculty'), -('100623', '800002498', '2021FA', ',faculty'), -('100058', '800002504', '2021FA', ',faculty'), -('100059', '800002504', '2021FA', ',faculty'), -('100135', '800002507', '2021FA', ',faculty'), -('100012', '800002508', '2021FA', ',faculty'), -('100420', '800002510', '2021FA', ',faculty'), -('100422', '800002510', '2021FA', ',faculty'), -('100194', '800002512', '2021FA', ',faculty'), -('100019', '800002513', '2021FA', ',faculty'), -('100086', '800002520', '2021FA', ',faculty'), -('100007', '800002527', '2021FA', ',faculty'), -('100573', '800002535', '2021FA', ',faculty'), -('100418', '800002538', '2021FA', ',faculty'), -('100426', '800002538', '2021FA', ',faculty'), -('100161', '800002554', '2021FA', ',faculty'), -('100162', '800002554', '2021FA', ',faculty'), -('100396', '800002555', '2021FA', ',faculty'), -('100403', '800002555', '2021FA', ',faculty'), -('100218', '800002558', '2021FA', ',faculty'), -('100144', '800002565', '2021FA', ',faculty'), -('100150', '800002565', '2021FA', ',faculty'), -('100030', '800002571', '2021FA', ',faculty'), -('100555', '800002592', '2021FA', ',faculty'), -('100557', '800002592', '2021FA', ',faculty'), -('100150', '800002602', '2021FA', ',faculty'), -('100152', '800002602', '2021FA', ',faculty'), -('100469', '800002610', '2021FA', ',faculty'), -('100471', '800002610', '2021FA', ',faculty'), -('100305', '800002615', '2021FA', ',faculty'), -('100306', '800002615', '2021FA', ',faculty'), -('100606', '800002642', '2021FA', ',faculty'), -('100297', '800002643', '2021FA', ',faculty'), -('100304', '800002643', '2021FA', ',faculty'), -('100033', '800002647', '2021FA', ',faculty'), -('100075', '800002648', '2021FA', ',faculty'), -('100447', '800002650', '2021FA', ',faculty'), -('100449', '800002650', '2021FA', ',faculty'), -('100622', '800002654', '2021FA', ',faculty'), -('100540', '800002656', '2021FA', ',faculty'), -('100545', '800002656', '2021FA', ',faculty'), -('100412', '800002668', '2021FA', ',faculty'), -('100463', '800002669', '2021FA', ',faculty'), -('100029', '800002681', '2021FA', ',faculty'), -('100030', '800002681', '2021FA', ',faculty'), -('100543', '800002688', '2021FA', ',faculty'), -('100156', '800002694', '2021FA', ',faculty'), -('100158', '800002694', '2021FA', ',faculty'), -('100110', '800002696', '2021FA', ',faculty'), -('100100', '800002706', '2021FA', ',faculty'), -('100102', '800002706', '2021FA', ',faculty'), -('100619', '800002708', '2021FA', ',faculty'), -('100624', '800002708', '2021FA', ',faculty'), -('100573', '800002717', '2021FA', ',faculty'), -('100576', '800002717', '2021FA', ',faculty'), -('100143', '800002721', '2021FA', ',faculty'), -('100452', '800002724', '2021FA', ',faculty'), -('100461', '800002724', '2021FA', ',faculty'), -('100233', '800002725', '2021FA', ',faculty'), -('100241', '800002725', '2021FA', ',faculty'), -('100289', '800002728', '2021FA', ',faculty'), -('100295', '800002728', '2021FA', ',faculty'), -('100080', '800002730', '2021FA', ',faculty'), -('100085', '800002730', '2021FA', ',faculty'), -('100612', '800002733', '2021FA', ',faculty'), -('100615', '800002733', '2021FA', ',faculty'), -('100246', '800002735', '2021FA', ',faculty'), -('100248', '800002735', '2021FA', ',faculty'), -('100209', '800002736', '2021FA', ',faculty'), -('100216', '800002736', '2021FA', ',faculty'), -('100259', '800002742', '2021FA', ',faculty'), -('100309', '800002746', '2021FA', ',faculty'), -('100315', '800002746', '2021FA', ',faculty'), -('100421', '800002750', '2021FA', ',faculty'), -('100426', '800002750', '2021FA', ',faculty'), -('100261', '800002751', '2021FA', ',faculty'), -('100263', '800002751', '2021FA', ',faculty'), -('100276', '800002758', '2021FA', ',faculty'), -('100035', '800002763', '2021FA', ',faculty'), -('100512', '800002764', '2021FA', ',faculty'), -('100513', '800002764', '2021FA', ',faculty'), -('100534', '800002769', '2021FA', ',faculty'), -('100493', '800002772', '2021FA', ',faculty'), -('100201', '800002782', '2021FA', ',faculty'), -('100206', '800002782', '2021FA', ',faculty'), -('100563', '800002787', '2021FA', ',faculty'), -('100370', '800002801', '2021FA', ',faculty'), -('100518', '800002811', '2021FA', ',faculty'), -('100526', '800002811', '2021FA', ',faculty'), -('100138', '800002823', '2021FA', ',faculty'), -('100141', '800002823', '2021FA', ',faculty'), -('100609', '800002824', '2021FA', ',faculty'), -('100615', '800002824', '2021FA', ',faculty'), -('100355', '800002825', '2021FA', ',faculty'), -('100362', '800002825', '2021FA', ',faculty'), -('100234', '800002831', '2021FA', ',faculty'), -('100239', '800002831', '2021FA', ',faculty'), -('100271', '800002836', '2021FA', ',faculty'), -('100464', '800002842', '2021FA', ',faculty'), -('100467', '800002842', '2021FA', ',faculty'), -('100465', '800002851', '2021FA', ',faculty'), -('100469', '800002851', '2021FA', ',faculty'), -('100331', '800002857', '2021FA', ',faculty'), -('100144', '800002858', '2021FA', ',faculty'), -('100148', '800002858', '2021FA', ',faculty'), -('100069', '800002873', '2021FA', ',faculty'), -('100418', '800002876', '2021FA', ',faculty'), -('100427', '800002876', '2021FA', ',faculty'), -('100002', '800002877', '2021FA', ',faculty'), -('100004', '800002877', '2021FA', ',faculty'), -('100014', '800002883', '2021FA', ',faculty'), -('100018', '800002883', '2021FA', ',faculty'), -('100278', '800002888', '2021FA', ',faculty'), -('100284', '800002888', '2021FA', ',faculty'), -('100185', '800002890', '2021FA', ',faculty'), -('100320', '800002893', '2021FA', ',faculty'), -('100367', '800002897', '2021FA', ',faculty'), -('100368', '800002897', '2021FA', ',faculty'), -('100071', '800002902', '2021FA', ',faculty'), -('100075', '800002902', '2021FA', ',faculty'), -('100430', '800002903', '2021FA', ',faculty'), -('100438', '800002903', '2021FA', ',faculty'), -('100457', '800002906', '2021FA', ',faculty'), -('100256', '800002909', '2021FA', ',faculty'), -('100015', '800002912', '2021FA', ',faculty'), -('100019', '800002912', '2021FA', ',faculty'), -('100438', '800002917', '2021FA', ',faculty'), -('100198', '800002929', '2021FA', ',faculty'), -('100201', '800002929', '2021FA', ',faculty'), -('100403', '800002931', '2021FA', ',faculty'), -('100233', '800002935', '2021FA', ',faculty'), -('100238', '800002935', '2021FA', ',faculty'), -('100407', '800002936', '2021FA', ',faculty'), -('100178', '800002951', '2021FA', ',faculty'), -('100179', '800002951', '2021FA', ',faculty'), -('100191', '800002954', '2021FA', ',faculty'), -('100550', '800002955', '2021FA', ',faculty'), -('100506', '800002958', '2021FA', ',faculty'), -('100516', '800002958', '2021FA', ',faculty'), -('100601', '800002959', '2021FA', ',faculty'), -('100601', '800002959', '2021FA', ',faculty'), -('100105', '800002962', '2021FA', ',faculty'), -('100605', '800002964', '2021FA', ',faculty'), -('100595', '800002969', '2021FA', ',faculty'), -('100418', '800002970', '2021FA', ',faculty'), -('100420', '800002970', '2021FA', ',faculty'), -('100616', '800002990', '2021FA', ',faculty'), -('100626', '800002990', '2021FA', ',faculty'), -('100062', '800002992', '2021FA', ',faculty'), -('100490', '800002995', '2021FA', ',faculty'), -('100254', '800002996', '2021FA', ',faculty'), -('100256', '800002996', '2021FA', ',faculty'), -('100150', '800000002', '2021FA', ',student'), -('100296', '800000002', '2021FA', ',student'), -('100394', '800000002', '2021FA', ',student'), -('100532', '800000002', '2021FA', ',student'), -('100604', '800000002', '2021FA', ',student'), -('100287', '800000004', '2021FA', ',student'), -('100369', '800000004', '2021FA', ',student'), -('100519', '800000004', '2021FA', ',student'), -('100540', '800000004', '2021FA', ',student'), -('100618', '800000004', '2021FA', ',student'), -('100098', '800000005', '2021FA', ',student'), -('100226', '800000005', '2021FA', ',student'), -('100325', '800000005', '2021FA', ',student'), -('100366', '800000005', '2021FA', ',student'), -('100403', '800000005', '2021FA', ',student'), -('100053', '800000006', '2021FA', ',student'), -('100346', '800000006', '2021FA', ',student'), -('100485', '800000006', '2021FA', ',student'), -('100571', '800000006', '2021FA', ',student'), -('100579', '800000006', '2021FA', ',student'), -('100104', '800000007', '2021FA', ',student'), -('100162', '800000007', '2021FA', ',student'), -('100287', '800000007', '2021FA', ',student'), -('100341', '800000007', '2021FA', ',student'), -('100589', '800000007', '2021FA', ',student'), -('100286', '800000008', '2021FA', ',student'), -('100312', '800000008', '2021FA', ',student'), -('100345', '800000008', '2021FA', ',student'), -('100358', '800000008', '2021FA', ',student'), -('100593', '800000008', '2021FA', ',student'), -('100004', '800000011', '2021FA', ',student'), -('100335', '800000011', '2021FA', ',student'), -('100336', '800000011', '2021FA', ',student'), -('100465', '800000011', '2021FA', ',student'), -('100512', '800000011', '2021FA', ',student'), -('100147', '800000012', '2021FA', ',student'), -('100221', '800000012', '2021FA', ',student'), -('100309', '800000012', '2021FA', ',student'), -('100407', '800000012', '2021FA', ',student'), -('100560', '800000012', '2021FA', ',student'), -('100057', '800000013', '2021FA', ',student'), -('100121', '800000013', '2021FA', ',student'), -('100294', '800000013', '2021FA', ',student'), -('100472', '800000013', '2021FA', ',student'), -('100557', '800000013', '2021FA', ',student'), -('100027', '800000017', '2021FA', ',student'), -('100266', '800000017', '2021FA', ',student'), -('100358', '800000017', '2021FA', ',student'), -('100503', '800000017', '2021FA', ',student'), -('100590', '800000017', '2021FA', ',student'), -('100089', '800000018', '2021FA', ',student'), -('100287', '800000018', '2021FA', ',student'), -('100296', '800000018', '2021FA', ',student'), -('100566', '800000018', '2021FA', ',student'), -('100615', '800000018', '2021FA', ',student'), -('100032', '800000022', '2021FA', ',student'), -('100061', '800000022', '2021FA', ',student'), -('100165', '800000022', '2021FA', ',student'), -('100244', '800000022', '2021FA', ',student'), -('100510', '800000022', '2021FA', ',student'), -('100032', '800000027', '2021FA', ',student'), -('100062', '800000027', '2021FA', ',student'), -('100228', '800000027', '2021FA', ',student'), -('100277', '800000027', '2021FA', ',student'), -('100296', '800000027', '2021FA', ',student'), -('100024', '800000028', '2021FA', ',student'), -('100168', '800000028', '2021FA', ',student'), -('100222', '800000028', '2021FA', ',student'), -('100246', '800000028', '2021FA', ',student'), -('100418', '800000028', '2021FA', ',student'), -('100079', '800000031', '2021FA', ',student'), -('100207', '800000031', '2021FA', ',student'), -('100229', '800000031', '2021FA', ',student'), -('100478', '800000031', '2021FA', ',student'), -('100483', '800000031', '2021FA', ',student'), -('100064', '800000032', '2021FA', ',student'), -('100266', '800000032', '2021FA', ',student'), -('100438', '800000032', '2021FA', ',student'), -('100575', '800000032', '2021FA', ',student'), -('100585', '800000032', '2021FA', ',student'), -('100138', '800000033', '2021FA', ',student'), -('100210', '800000033', '2021FA', ',student'), -('100330', '800000033', '2021FA', ',student'), -('100446', '800000033', '2021FA', ',student'), -('100613', '800000033', '2021FA', ',student'), -('100083', '800000034', '2021FA', ',student'), -('100111', '800000034', '2021FA', ',student'), -('100235', '800000034', '2021FA', ',student'), -('100589', '800000034', '2021FA', ',student'), -('100614', '800000034', '2021FA', ',student'), -('100145', '800000036', '2021FA', ',student'), -('100360', '800000036', '2021FA', ',student'), -('100565', '800000036', '2021FA', ',student'), -('100587', '800000036', '2021FA', ',student'), -('100592', '800000036', '2021FA', ',student'), -('100151', '800000038', '2021FA', ',student'), -('100280', '800000038', '2021FA', ',student'), -('100323', '800000038', '2021FA', ',student'), -('100353', '800000038', '2021FA', ',student'), -('100472', '800000038', '2021FA', ',student'), -('100101', '800000039', '2021FA', ',student'), -('100360', '800000039', '2021FA', ',student'), -('100392', '800000039', '2021FA', ',student'), -('100498', '800000039', '2021FA', ',student'), -('100503', '800000039', '2021FA', ',student'), -('100199', '800000040', '2021FA', ',student'), -('100459', '800000040', '2021FA', ',student'), -('100505', '800000040', '2021FA', ',student'), -('100512', '800000040', '2021FA', ',student'), -('100574', '800000040', '2021FA', ',student'), -('100111', '800000041', '2021FA', ',student'), -('100184', '800000041', '2021FA', ',student'), -('100410', '800000041', '2021FA', ',student'), -('100434', '800000041', '2021FA', ',student'), -('100541', '800000041', '2021FA', ',student'), -('100030', '800000042', '2021FA', ',student'), -('100123', '800000042', '2021FA', ',student'), -('100128', '800000042', '2021FA', ',student'), -('100211', '800000042', '2021FA', ',student'), -('100322', '800000042', '2021FA', ',student'), -('100140', '800000044', '2021FA', ',student'), -('100341', '800000044', '2021FA', ',student'), -('100584', '800000044', '2021FA', ',student'), -('100598', '800000044', '2021FA', ',student'), -('100614', '800000044', '2021FA', ',student'), -('100028', '800000047', '2021FA', ',student'), -('100265', '800000047', '2021FA', ',student'), -('100274', '800000047', '2021FA', ',student'), -('100391', '800000047', '2021FA', ',student'), -('100483', '800000047', '2021FA', ',student'), -('100058', '800000049', '2021FA', ',student'), -('100136', '800000049', '2021FA', ',student'), -('100193', '800000049', '2021FA', ',student'), -('100458', '800000049', '2021FA', ',student'), -('100576', '800000049', '2021FA', ',student'), -('100038', '800000052', '2021FA', ',student'), -('100224', '800000052', '2021FA', ',student'), -('100386', '800000052', '2021FA', ',student'), -('100391', '800000052', '2021FA', ',student'), -('100523', '800000052', '2021FA', ',student'), -('100048', '800000054', '2021FA', ',student'), -('100273', '800000054', '2021FA', ',student'), -('100337', '800000054', '2021FA', ',student'), -('100415', '800000054', '2021FA', ',student'), -('100479', '800000054', '2021FA', ',student'), -('100073', '800000055', '2021FA', ',student'), -('100140', '800000055', '2021FA', ',student'), -('100336', '800000055', '2021FA', ',student'), -('100510', '800000055', '2021FA', ',student'), -('100552', '800000055', '2021FA', ',student'), -('100230', '800000056', '2021FA', ',student'), -('100243', '800000056', '2021FA', ',student'), -('100443', '800000056', '2021FA', ',student'), -('100488', '800000056', '2021FA', ',student'), -('100616', '800000056', '2021FA', ',student'), -('100039', '800000057', '2021FA', ',student'), -('100065', '800000057', '2021FA', ',student'), -('100071', '800000057', '2021FA', ',student'), -('100075', '800000057', '2021FA', ',student'), -('100352', '800000057', '2021FA', ',student'), -('100094', '800000058', '2021FA', ',student'), -('100164', '800000058', '2021FA', ',student'), -('100171', '800000058', '2021FA', ',student'), -('100243', '800000058', '2021FA', ',student'), -('100507', '800000058', '2021FA', ',student'), -('100037', '800000059', '2021FA', ',student'), -('100296', '800000059', '2021FA', ',student'), -('100429', '800000059', '2021FA', ',student'), -('100444', '800000059', '2021FA', ',student'), -('100520', '800000059', '2021FA', ',student'), -('100026', '800000060', '2021FA', ',student'), -('100228', '800000060', '2021FA', ',student'), -('100253', '800000060', '2021FA', ',student'), -('100283', '800000060', '2021FA', ',student'), -('100593', '800000060', '2021FA', ',student'), -('100058', '800000063', '2021FA', ',student'), -('100090', '800000063', '2021FA', ',student'), -('100504', '800000063', '2021FA', ',student'), -('100554', '800000063', '2021FA', ',student'), -('100605', '800000063', '2021FA', ',student'), -('100053', '800000064', '2021FA', ',student'), -('100251', '800000064', '2021FA', ',student'), -('100319', '800000064', '2021FA', ',student'), -('100329', '800000064', '2021FA', ',student'), -('100347', '800000064', '2021FA', ',student'), -('100019', '800000065', '2021FA', ',student'), -('100227', '800000065', '2021FA', ',student'), -('100393', '800000065', '2021FA', ',student'), -('100500', '800000065', '2021FA', ',student'), -('100568', '800000065', '2021FA', ',student'), -('100187', '800000066', '2021FA', ',student'), -('100385', '800000066', '2021FA', ',student'), -('100497', '800000066', '2021FA', ',student'), -('100516', '800000066', '2021FA', ',student'), -('100584', '800000066', '2021FA', ',student'), -('100001', '800000067', '2021FA', ',student'), -('100202', '800000067', '2021FA', ',student'), -('100338', '800000067', '2021FA', ',student'), -('100390', '800000067', '2021FA', ',student'), -('100433', '800000067', '2021FA', ',student'), -('100223', '800000069', '2021FA', ',student'), -('100239', '800000069', '2021FA', ',student'), -('100298', '800000069', '2021FA', ',student'), -('100574', '800000069', '2021FA', ',student'), -('100576', '800000069', '2021FA', ',student'), -('100058', '800000070', '2021FA', ',student'), -('100173', '800000070', '2021FA', ',student'), -('100199', '800000070', '2021FA', ',student'), -('100450', '800000070', '2021FA', ',student'), -('100578', '800000070', '2021FA', ',student'), -('100145', '800000074', '2021FA', ',student'), -('100269', '800000074', '2021FA', ',student'), -('100502', '800000074', '2021FA', ',student'), -('100517', '800000074', '2021FA', ',student'), -('100600', '800000074', '2021FA', ',student'), -('100110', '800000075', '2021FA', ',student'), -('100208', '800000075', '2021FA', ',student'), -('100231', '800000075', '2021FA', ',student'), -('100233', '800000075', '2021FA', ',student'), -('100339', '800000075', '2021FA', ',student'), -('100225', '800000076', '2021FA', ',student'), -('100483', '800000076', '2021FA', ',student'), -('100539', '800000076', '2021FA', ',student'), -('100557', '800000076', '2021FA', ',student'), -('100602', '800000076', '2021FA', ',student'), -('100000', '800000078', '2021FA', ',student'), -('100252', '800000078', '2021FA', ',student'), -('100360', '800000078', '2021FA', ',student'), -('100446', '800000078', '2021FA', ',student'), -('100518', '800000078', '2021FA', ',student'), -('100013', '800000080', '2021FA', ',student'), -('100052', '800000080', '2021FA', ',student'), -('100286', '800000080', '2021FA', ',student'), -('100388', '800000080', '2021FA', ',student'), -('100396', '800000080', '2021FA', ',student'), -('100044', '800000082', '2021FA', ',student'), -('100166', '800000082', '2021FA', ',student'), -('100195', '800000082', '2021FA', ',student'), -('100467', '800000082', '2021FA', ',student'), -('100521', '800000082', '2021FA', ',student'), -('100116', '800000085', '2021FA', ',student'), -('100150', '800000085', '2021FA', ',student'), -('100287', '800000085', '2021FA', ',student'), -('100342', '800000085', '2021FA', ',student'), -('100601', '800000085', '2021FA', ',student'), -('100068', '800000086', '2021FA', ',student'), -('100199', '800000086', '2021FA', ',student'), -('100224', '800000086', '2021FA', ',student'), -('100410', '800000086', '2021FA', ',student'), -('100427', '800000086', '2021FA', ',student'), -('100357', '800000088', '2021FA', ',student'), -('100396', '800000088', '2021FA', ',student'), -('100440', '800000088', '2021FA', ',student'), -('100569', '800000088', '2021FA', ',student'), -('100623', '800000088', '2021FA', ',student'), -('100023', '800000093', '2021FA', ',student'), -('100073', '800000093', '2021FA', ',student'), -('100107', '800000093', '2021FA', ',student'), -('100408', '800000093', '2021FA', ',student'), -('100431', '800000093', '2021FA', ',student'), -('100062', '800000094', '2021FA', ',student'), -('100121', '800000094', '2021FA', ',student'), -('100135', '800000094', '2021FA', ',student'), -('100290', '800000094', '2021FA', ',student'), -('100402', '800000094', '2021FA', ',student'), -('100077', '800000096', '2021FA', ',student'), -('100103', '800000096', '2021FA', ',student'), -('100171', '800000096', '2021FA', ',student'), -('100355', '800000096', '2021FA', ',student'), -('100605', '800000096', '2021FA', ',student'), -('100094', '800000097', '2021FA', ',student'), -('100232', '800000097', '2021FA', ',student'), -('100355', '800000097', '2021FA', ',student'), -('100380', '800000097', '2021FA', ',student'), -('100421', '800000097', '2021FA', ',student'), -('100009', '800000099', '2021FA', ',student'), -('100166', '800000099', '2021FA', ',student'), -('100601', '800000099', '2021FA', ',student'), -('100602', '800000099', '2021FA', ',student'), -('100621', '800000099', '2021FA', ',student'), -('100150', '800000102', '2021FA', ',student'), -('100232', '800000102', '2021FA', ',student'), -('100360', '800000102', '2021FA', ',student'), -('100369', '800000102', '2021FA', ',student'), -('100544', '800000102', '2021FA', ',student'), -('100065', '800000105', '2021FA', ',student'), -('100203', '800000105', '2021FA', ',student'), -('100316', '800000105', '2021FA', ',student'), -('100419', '800000105', '2021FA', ',student'), -('100534', '800000105', '2021FA', ',student'), -('100030', '800000106', '2021FA', ',student'), -('100125', '800000106', '2021FA', ',student'), -('100142', '800000106', '2021FA', ',student'), -('100255', '800000106', '2021FA', ',student'), -('100489', '800000106', '2021FA', ',student'), -('100314', '800000107', '2021FA', ',student'), -('100422', '800000107', '2021FA', ',student'), -('100430', '800000107', '2021FA', ',student'), -('100478', '800000107', '2021FA', ',student'), -('100588', '800000107', '2021FA', ',student'), -('100338', '800000108', '2021FA', ',student'), -('100363', '800000108', '2021FA', ',student'), -('100383', '800000108', '2021FA', ',student'), -('100456', '800000108', '2021FA', ',student'), -('100560', '800000108', '2021FA', ',student'), -('100053', '800000111', '2021FA', ',student'), -('100207', '800000111', '2021FA', ',student'), -('100309', '800000111', '2021FA', ',student'), -('100394', '800000111', '2021FA', ',student'), -('100626', '800000111', '2021FA', ',student'), -('100017', '800000112', '2021FA', ',student'), -('100193', '800000112', '2021FA', ',student'), -('100213', '800000112', '2021FA', ',student'), -('100431', '800000112', '2021FA', ',student'), -('100510', '800000112', '2021FA', ',student'), -('100092', '800000113', '2021FA', ',student'), -('100181', '800000113', '2021FA', ',student'), -('100189', '800000113', '2021FA', ',student'), -('100450', '800000113', '2021FA', ',student'), -('100616', '800000113', '2021FA', ',student'), -('100074', '800000116', '2021FA', ',student'), -('100170', '800000116', '2021FA', ',student'), -('100396', '800000116', '2021FA', ',student'), -('100418', '800000116', '2021FA', ',student'), -('100436', '800000116', '2021FA', ',student'), -('100014', '800000123', '2021FA', ',student'), -('100073', '800000123', '2021FA', ',student'), -('100102', '800000123', '2021FA', ',student'), -('100295', '800000123', '2021FA', ',student'), -('100554', '800000123', '2021FA', ',student'), -('100048', '800000125', '2021FA', ',student'), -('100069', '800000125', '2021FA', ',student'), -('100279', '800000125', '2021FA', ',student'), -('100341', '800000125', '2021FA', ',student'), -('100428', '800000125', '2021FA', ',student'), -('100180', '800000126', '2021FA', ',student'), -('100240', '800000126', '2021FA', ',student'), -('100249', '800000126', '2021FA', ',student'), -('100501', '800000126', '2021FA', ',student'), -('100600', '800000126', '2021FA', ',student'), -('100182', '800000129', '2021FA', ',student'), -('100265', '800000129', '2021FA', ',student'), -('100353', '800000129', '2021FA', ',student'), -('100465', '800000129', '2021FA', ',student'), -('100487', '800000129', '2021FA', ',student'), -('100239', '800000132', '2021FA', ',student'), -('100275', '800000132', '2021FA', ',student'), -('100320', '800000132', '2021FA', ',student'), -('100489', '800000132', '2021FA', ',student'), -('100609', '800000132', '2021FA', ',student'), -('100147', '800000136', '2021FA', ',student'), -('100149', '800000136', '2021FA', ',student'), -('100460', '800000136', '2021FA', ',student'), -('100507', '800000136', '2021FA', ',student'), -('100590', '800000136', '2021FA', ',student'), -('100082', '800000137', '2021FA', ',student'), -('100084', '800000137', '2021FA', ',student'), -('100128', '800000137', '2021FA', ',student'), -('100163', '800000137', '2021FA', ',student'), -('100516', '800000137', '2021FA', ',student'), -('100134', '800000141', '2021FA', ',student'), -('100156', '800000141', '2021FA', ',student'), -('100375', '800000141', '2021FA', ',student'), -('100562', '800000141', '2021FA', ',student'), -('100599', '800000141', '2021FA', ',student'), -('100012', '800000143', '2021FA', ',student'), -('100107', '800000143', '2021FA', ',student'), -('100347', '800000143', '2021FA', ',student'), -('100459', '800000143', '2021FA', ',student'), -('100532', '800000143', '2021FA', ',student'), -('100241', '800000144', '2021FA', ',student'), -('100284', '800000144', '2021FA', ',student'), -('100306', '800000144', '2021FA', ',student'), -('100391', '800000144', '2021FA', ',student'), -('100494', '800000144', '2021FA', ',student'), -('100043', '800000147', '2021FA', ',student'), -('100061', '800000147', '2021FA', ',student'), -('100225', '800000147', '2021FA', ',student'), -('100277', '800000147', '2021FA', ',student'), -('100412', '800000147', '2021FA', ',student'), -('100060', '800000148', '2021FA', ',student'), -('100156', '800000148', '2021FA', ',student'), -('100439', '800000148', '2021FA', ',student'), -('100467', '800000148', '2021FA', ',student'), -('100598', '800000148', '2021FA', ',student'), -('100116', '800000150', '2021FA', ',student'), -('100342', '800000150', '2021FA', ',student'), -('100443', '800000150', '2021FA', ',student'), -('100478', '800000150', '2021FA', ',student'), -('100563', '800000150', '2021FA', ',student'), -('100113', '800000154', '2021FA', ',student'), -('100181', '800000154', '2021FA', ',student'), -('100251', '800000154', '2021FA', ',student'), -('100306', '800000154', '2021FA', ',student'), -('100476', '800000154', '2021FA', ',student'), -('100050', '800000155', '2021FA', ',student'), -('100077', '800000155', '2021FA', ',student'), -('100232', '800000155', '2021FA', ',student'), -('100320', '800000155', '2021FA', ',student'), -('100516', '800000155', '2021FA', ',student'), -('100002', '800000157', '2021FA', ',student'), -('100294', '800000157', '2021FA', ',student'), -('100400', '800000157', '2021FA', ',student'), -('100571', '800000157', '2021FA', ',student'), -('100602', '800000157', '2021FA', ',student'), -('100268', '800000158', '2021FA', ',student'), -('100302', '800000158', '2021FA', ',student'), -('100358', '800000158', '2021FA', ',student'), -('100390', '800000158', '2021FA', ',student'), -('100572', '800000158', '2021FA', ',student'), -('100273', '800000159', '2021FA', ',student'), -('100323', '800000159', '2021FA', ',student'), -('100442', '800000159', '2021FA', ',student'), -('100569', '800000159', '2021FA', ',student'), -('100623', '800000159', '2021FA', ',student'), -('100081', '800000160', '2021FA', ',student'), -('100294', '800000160', '2021FA', ',student'), -('100453', '800000160', '2021FA', ',student'), -('100506', '800000160', '2021FA', ',student'), -('100543', '800000160', '2021FA', ',student'), -('100037', '800000161', '2021FA', ',student'), -('100109', '800000161', '2021FA', ',student'), -('100159', '800000161', '2021FA', ',student'), -('100365', '800000161', '2021FA', ',student'), -('100558', '800000161', '2021FA', ',student'), -('100206', '800000165', '2021FA', ',student'), -('100438', '800000165', '2021FA', ',student'), -('100439', '800000165', '2021FA', ',student'), -('100452', '800000165', '2021FA', ',student'), -('100573', '800000165', '2021FA', ',student'), -('100141', '800000166', '2021FA', ',student'), -('100186', '800000166', '2021FA', ',student'), -('100366', '800000166', '2021FA', ',student'), -('100493', '800000166', '2021FA', ',student'), -('100604', '800000166', '2021FA', ',student'), -('100098', '800000167', '2021FA', ',student'), -('100177', '800000167', '2021FA', ',student'), -('100180', '800000167', '2021FA', ',student'), -('100334', '800000167', '2021FA', ',student'), -('100492', '800000167', '2021FA', ',student'), -('100077', '800000169', '2021FA', ',student'), -('100278', '800000169', '2021FA', ',student'), -('100355', '800000169', '2021FA', ',student'), -('100460', '800000169', '2021FA', ',student'), -('100501', '800000169', '2021FA', ',student'), -('100245', '800000170', '2021FA', ',student'), -('100435', '800000170', '2021FA', ',student'), -('100572', '800000170', '2021FA', ',student'), -('100586', '800000170', '2021FA', ',student'), -('100621', '800000170', '2021FA', ',student'), -('100014', '800000172', '2021FA', ',student'), -('100277', '800000172', '2021FA', ',student'), -('100387', '800000172', '2021FA', ',student'), -('100557', '800000172', '2021FA', ',student'), -('100587', '800000172', '2021FA', ',student'), -('100262', '800000173', '2021FA', ',student'), -('100302', '800000173', '2021FA', ',student'), -('100439', '800000173', '2021FA', ',student'), -('100446', '800000173', '2021FA', ',student'), -('100588', '800000173', '2021FA', ',student'), -('100072', '800000177', '2021FA', ',student'), -('100160', '800000177', '2021FA', ',student'), -('100240', '800000177', '2021FA', ',student'), -('100253', '800000177', '2021FA', ',student'), -('100570', '800000177', '2021FA', ',student'), -('100098', '800000178', '2021FA', ',student'), -('100161', '800000178', '2021FA', ',student'), -('100276', '800000178', '2021FA', ',student'), -('100426', '800000178', '2021FA', ',student'), -('100480', '800000178', '2021FA', ',student'), -('100072', '800000180', '2021FA', ',student'), -('100320', '800000180', '2021FA', ',student'), -('100443', '800000180', '2021FA', ',student'), -('100465', '800000180', '2021FA', ',student'), -('100624', '800000180', '2021FA', ',student'), -('100017', '800000181', '2021FA', ',student'), -('100219', '800000181', '2021FA', ',student'), -('100280', '800000181', '2021FA', ',student'), -('100462', '800000181', '2021FA', ',student'), -('100511', '800000181', '2021FA', ',student'), -('100249', '800000184', '2021FA', ',student'), -('100379', '800000184', '2021FA', ',student'), -('100401', '800000184', '2021FA', ',student'), -('100433', '800000184', '2021FA', ',student'), -('100612', '800000184', '2021FA', ',student'), -('100068', '800000188', '2021FA', ',student'), -('100070', '800000188', '2021FA', ',student'), -('100137', '800000188', '2021FA', ',student'), -('100225', '800000188', '2021FA', ',student'), -('100366', '800000188', '2021FA', ',student'), -('100034', '800000189', '2021FA', ',student'), -('100183', '800000189', '2021FA', ',student'), -('100340', '800000189', '2021FA', ',student'), -('100574', '800000189', '2021FA', ',student'), -('100599', '800000189', '2021FA', ',student'), -('100080', '800000192', '2021FA', ',student'), -('100114', '800000192', '2021FA', ',student'), -('100239', '800000192', '2021FA', ',student'), -('100340', '800000192', '2021FA', ',student'), -('100419', '800000192', '2021FA', ',student'), -('100042', '800000193', '2021FA', ',student'), -('100087', '800000193', '2021FA', ',student'), -('100330', '800000193', '2021FA', ',student'), -('100449', '800000193', '2021FA', ',student'), -('100552', '800000193', '2021FA', ',student'), -('100072', '800000195', '2021FA', ',student'), -('100273', '800000195', '2021FA', ',student'), -('100280', '800000195', '2021FA', ',student'), -('100398', '800000195', '2021FA', ',student'), -('100599', '800000195', '2021FA', ',student'), -('100012', '800000197', '2021FA', ',student'), -('100027', '800000197', '2021FA', ',student'), -('100094', '800000197', '2021FA', ',student'), -('100494', '800000197', '2021FA', ',student'), -('100581', '800000197', '2021FA', ',student'), -('100184', '800000198', '2021FA', ',student'), -('100334', '800000198', '2021FA', ',student'), -('100344', '800000198', '2021FA', ',student'), -('100448', '800000198', '2021FA', ',student'), -('100514', '800000198', '2021FA', ',student'), -('100200', '800000200', '2021FA', ',student'), -('100222', '800000200', '2021FA', ',student'), -('100300', '800000200', '2021FA', ',student'), -('100355', '800000200', '2021FA', ',student'), -('100545', '800000200', '2021FA', ',student'), -('100293', '800000202', '2021FA', ',student'), -('100342', '800000202', '2021FA', ',student'), -('100439', '800000202', '2021FA', ',student'), -('100529', '800000202', '2021FA', ',student'), -('100539', '800000202', '2021FA', ',student'), -('100041', '800000206', '2021FA', ',student'), -('100184', '800000206', '2021FA', ',student'), -('100325', '800000206', '2021FA', ',student'), -('100453', '800000206', '2021FA', ',student'), -('100473', '800000206', '2021FA', ',student'), -('100003', '800000210', '2021FA', ',student'), -('100124', '800000210', '2021FA', ',student'), -('100140', '800000210', '2021FA', ',student'), -('100295', '800000210', '2021FA', ',student'), -('100501', '800000210', '2021FA', ',student'), -('100010', '800000211', '2021FA', ',student'), -('100046', '800000211', '2021FA', ',student'), -('100295', '800000211', '2021FA', ',student'), -('100327', '800000211', '2021FA', ',student'), -('100584', '800000211', '2021FA', ',student'), -('100227', '800000212', '2021FA', ',student'), -('100268', '800000212', '2021FA', ',student'), -('100355', '800000212', '2021FA', ',student'), -('100407', '800000212', '2021FA', ',student'), -('100444', '800000212', '2021FA', ',student'), -('100099', '800000213', '2021FA', ',student'), -('100106', '800000213', '2021FA', ',student'), -('100289', '800000213', '2021FA', ',student'), -('100351', '800000213', '2021FA', ',student'), -('100456', '800000213', '2021FA', ',student'), -('100260', '800000214', '2021FA', ',student'), -('100299', '800000214', '2021FA', ',student'), -('100487', '800000214', '2021FA', ',student'), -('100558', '800000214', '2021FA', ',student'), -('100623', '800000214', '2021FA', ',student'), -('100107', '800000215', '2021FA', ',student'), -('100274', '800000215', '2021FA', ',student'), -('100413', '800000215', '2021FA', ',student'), -('100568', '800000215', '2021FA', ',student'), -('100623', '800000215', '2021FA', ',student'), -('100258', '800000216', '2021FA', ',student'), -('100283', '800000216', '2021FA', ',student'), -('100295', '800000216', '2021FA', ',student'), -('100434', '800000216', '2021FA', ',student'), -('100531', '800000216', '2021FA', ',student'), -('100213', '800000219', '2021FA', ',student'), -('100232', '800000219', '2021FA', ',student'), -('100262', '800000219', '2021FA', ',student'), -('100290', '800000219', '2021FA', ',student'), -('100603', '800000219', '2021FA', ',student'), -('100209', '800000220', '2021FA', ',student'), -('100223', '800000220', '2021FA', ',student'), -('100299', '800000220', '2021FA', ',student'), -('100333', '800000220', '2021FA', ',student'), -('100601', '800000220', '2021FA', ',student'), -('100040', '800000225', '2021FA', ',student'), -('100120', '800000225', '2021FA', ',student'), -('100261', '800000225', '2021FA', ',student'), -('100462', '800000225', '2021FA', ',student'), -('100471', '800000225', '2021FA', ',student'), -('100071', '800000226', '2021FA', ',student'), -('100180', '800000226', '2021FA', ',student'), -('100428', '800000226', '2021FA', ',student'), -('100551', '800000226', '2021FA', ',student'), -('100616', '800000226', '2021FA', ',student'), -('100115', '800000231', '2021FA', ',student'), -('100130', '800000231', '2021FA', ',student'), -('100341', '800000231', '2021FA', ',student'), -('100606', '800000231', '2021FA', ',student'), -('100621', '800000231', '2021FA', ',student'), -('100066', '800000233', '2021FA', ',student'), -('100181', '800000233', '2021FA', ',student'), -('100230', '800000233', '2021FA', ',student'), -('100232', '800000233', '2021FA', ',student'), -('100294', '800000233', '2021FA', ',student'), -('100045', '800000236', '2021FA', ',student'), -('100133', '800000236', '2021FA', ',student'), -('100157', '800000236', '2021FA', ',student'), -('100340', '800000236', '2021FA', ',student'), -('100611', '800000236', '2021FA', ',student'), -('100005', '800000237', '2021FA', ',student'), -('100321', '800000237', '2021FA', ',student'), -('100373', '800000237', '2021FA', ',student'), -('100536', '800000237', '2021FA', ',student'), -('100598', '800000237', '2021FA', ',student'), -('100129', '800000238', '2021FA', ',student'), -('100151', '800000238', '2021FA', ',student'), -('100320', '800000238', '2021FA', ',student'), -('100370', '800000238', '2021FA', ',student'), -('100598', '800000238', '2021FA', ',student'), -('100019', '800000241', '2021FA', ',student'), -('100184', '800000241', '2021FA', ',student'), -('100355', '800000241', '2021FA', ',student'), -('100490', '800000241', '2021FA', ',student'), -('100596', '800000241', '2021FA', ',student'), -('100183', '800000242', '2021FA', ',student'), -('100209', '800000242', '2021FA', ',student'), -('100293', '800000242', '2021FA', ',student'), -('100509', '800000242', '2021FA', ',student'), -('100517', '800000242', '2021FA', ',student'), -('100075', '800000246', '2021FA', ',student'), -('100224', '800000246', '2021FA', ',student'), -('100335', '800000246', '2021FA', ',student'), -('100520', '800000246', '2021FA', ',student'), -('100563', '800000246', '2021FA', ',student'), -('100057', '800000248', '2021FA', ',student'), -('100074', '800000248', '2021FA', ',student'), -('100254', '800000248', '2021FA', ',student'), -('100273', '800000248', '2021FA', ',student'), -('100475', '800000248', '2021FA', ',student'), -('100158', '800000255', '2021FA', ',student'), -('100248', '800000255', '2021FA', ',student'), -('100343', '800000255', '2021FA', ',student'), -('100381', '800000255', '2021FA', ',student'), -('100598', '800000255', '2021FA', ',student'), -('100109', '800000256', '2021FA', ',student'), -('100440', '800000256', '2021FA', ',student'), -('100455', '800000256', '2021FA', ',student'), -('100479', '800000256', '2021FA', ',student'), -('100586', '800000256', '2021FA', ',student'), -('100114', '800000264', '2021FA', ',student'), -('100213', '800000264', '2021FA', ',student'), -('100404', '800000264', '2021FA', ',student'), -('100412', '800000264', '2021FA', ',student'), -('100560', '800000264', '2021FA', ',student'), -('100037', '800000267', '2021FA', ',student'), -('100173', '800000267', '2021FA', ',student'), -('100304', '800000267', '2021FA', ',student'), -('100386', '800000267', '2021FA', ',student'), -('100536', '800000267', '2021FA', ',student'), -('100009', '800000268', '2021FA', ',student'), -('100039', '800000268', '2021FA', ',student'), -('100248', '800000268', '2021FA', ',student'), -('100299', '800000268', '2021FA', ',student'), -('100352', '800000268', '2021FA', ',student'), -('100080', '800000270', '2021FA', ',student'), -('100458', '800000270', '2021FA', ',student'), -('100486', '800000270', '2021FA', ',student'), -('100594', '800000270', '2021FA', ',student'), -('100603', '800000270', '2021FA', ',student'), -('100068', '800000271', '2021FA', ',student'), -('100169', '800000271', '2021FA', ',student'), -('100380', '800000271', '2021FA', ',student'), -('100432', '800000271', '2021FA', ',student'), -('100549', '800000271', '2021FA', ',student'), -('100048', '800000272', '2021FA', ',student'), -('100149', '800000272', '2021FA', ',student'), -('100222', '800000272', '2021FA', ',student'), -('100339', '800000272', '2021FA', ',student'), -('100494', '800000272', '2021FA', ',student'), -('100096', '800000273', '2021FA', ',student'), -('100126', '800000273', '2021FA', ',student'), -('100212', '800000273', '2021FA', ',student'), -('100427', '800000273', '2021FA', ',student'), -('100587', '800000273', '2021FA', ',student'), -('100144', '800000275', '2021FA', ',student'), -('100188', '800000275', '2021FA', ',student'), -('100213', '800000275', '2021FA', ',student'), -('100486', '800000275', '2021FA', ',student'), -('100530', '800000275', '2021FA', ',student'), -('100057', '800000277', '2021FA', ',student'), -('100083', '800000277', '2021FA', ',student'), -('100206', '800000277', '2021FA', ',student'), -('100278', '800000277', '2021FA', ',student'), -('100325', '800000277', '2021FA', ',student'), -('100264', '800000279', '2021FA', ',student'), -('100406', '800000279', '2021FA', ',student'), -('100512', '800000279', '2021FA', ',student'), -('100572', '800000279', '2021FA', ',student'), -('100597', '800000279', '2021FA', ',student'), -('100155', '800000280', '2021FA', ',student'), -('100285', '800000280', '2021FA', ',student'), -('100324', '800000280', '2021FA', ',student'), -('100359', '800000280', '2021FA', ',student'), -('100555', '800000280', '2021FA', ',student'), -('100276', '800000282', '2021FA', ',student'), -('100378', '800000282', '2021FA', ',student'), -('100521', '800000282', '2021FA', ',student'), -('100590', '800000282', '2021FA', ',student'), -('100593', '800000282', '2021FA', ',student'), -('100068', '800000284', '2021FA', ',student'), -('100155', '800000284', '2021FA', ',student'), -('100312', '800000284', '2021FA', ',student'), -('100479', '800000284', '2021FA', ',student'), -('100525', '800000284', '2021FA', ',student'), -('100034', '800000288', '2021FA', ',student'), -('100205', '800000288', '2021FA', ',student'), -('100221', '800000288', '2021FA', ',student'), -('100373', '800000288', '2021FA', ',student'), -('100440', '800000288', '2021FA', ',student'), -('100013', '800000290', '2021FA', ',student'), -('100016', '800000290', '2021FA', ',student'), -('100043', '800000290', '2021FA', ',student'), -('100290', '800000290', '2021FA', ',student'), -('100501', '800000290', '2021FA', ',student'), -('100111', '800000291', '2021FA', ',student'), -('100133', '800000291', '2021FA', ',student'), -('100218', '800000291', '2021FA', ',student'), -('100223', '800000291', '2021FA', ',student'), -('100342', '800000291', '2021FA', ',student'), -('100127', '800000293', '2021FA', ',student'), -('100286', '800000293', '2021FA', ',student'), -('100334', '800000293', '2021FA', ',student'), -('100346', '800000293', '2021FA', ',student'), -('100481', '800000293', '2021FA', ',student'), -('100075', '800000294', '2021FA', ',student'), -('100347', '800000294', '2021FA', ',student'), -('100429', '800000294', '2021FA', ',student'), -('100445', '800000294', '2021FA', ',student'), -('100524', '800000294', '2021FA', ',student'), -('100529', '800000295', '2021FA', ',student'), -('100538', '800000295', '2021FA', ',student'), -('100556', '800000295', '2021FA', ',student'), -('100573', '800000295', '2021FA', ',student'), -('100597', '800000295', '2021FA', ',student'), -('100362', '800000296', '2021FA', ',student'), -('100388', '800000296', '2021FA', ',student'), -('100392', '800000296', '2021FA', ',student'), -('100543', '800000296', '2021FA', ',student'), -('100569', '800000296', '2021FA', ',student'), -('100081', '800000297', '2021FA', ',student'), -('100285', '800000297', '2021FA', ',student'), -('100321', '800000297', '2021FA', ',student'), -('100559', '800000297', '2021FA', ',student'), -('100568', '800000297', '2021FA', ',student'), -('100258', '800000299', '2021FA', ',student'), -('100382', '800000299', '2021FA', ',student'), -('100390', '800000299', '2021FA', ',student'), -('100419', '800000299', '2021FA', ',student'), -('100535', '800000299', '2021FA', ',student'), -('100167', '800000302', '2021FA', ',student'), -('100305', '800000302', '2021FA', ',student'), -('100312', '800000302', '2021FA', ',student'), -('100505', '800000302', '2021FA', ',student'), -('100531', '800000302', '2021FA', ',student'), -('100011', '800000306', '2021FA', ',student'), -('100069', '800000306', '2021FA', ',student'), -('100174', '800000306', '2021FA', ',student'), -('100188', '800000306', '2021FA', ',student'), -('100521', '800000306', '2021FA', ',student'), -('100122', '800000309', '2021FA', ',student'), -('100431', '800000309', '2021FA', ',student'), -('100486', '800000309', '2021FA', ',student'), -('100530', '800000309', '2021FA', ',student'), -('100535', '800000309', '2021FA', ',student'), -('100047', '800000310', '2021FA', ',student'), -('100071', '800000310', '2021FA', ',student'), -('100175', '800000310', '2021FA', ',student'), -('100196', '800000310', '2021FA', ',student'), -('100492', '800000310', '2021FA', ',student'), -('100254', '800000313', '2021FA', ',student'), -('100299', '800000313', '2021FA', ',student'), -('100379', '800000313', '2021FA', ',student'), -('100496', '800000313', '2021FA', ',student'), -('100551', '800000313', '2021FA', ',student'), -('100075', '800000315', '2021FA', ',student'), -('100107', '800000315', '2021FA', ',student'), -('100198', '800000315', '2021FA', ',student'), -('100426', '800000315', '2021FA', ',student'), -('100520', '800000315', '2021FA', ',student'), -('100416', '800000316', '2021FA', ',student'), -('100488', '800000316', '2021FA', ',student'), -('100527', '800000316', '2021FA', ',student'), -('100581', '800000316', '2021FA', ',student'), -('100623', '800000316', '2021FA', ',student'), -('100025', '800000317', '2021FA', ',student'), -('100204', '800000317', '2021FA', ',student'), -('100249', '800000317', '2021FA', ',student'), -('100292', '800000317', '2021FA', ',student'), -('100358', '800000317', '2021FA', ',student'), -('100067', '800000321', '2021FA', ',student'), -('100188', '800000321', '2021FA', ',student'), -('100350', '800000321', '2021FA', ',student'), -('100384', '800000321', '2021FA', ',student'), -('100485', '800000321', '2021FA', ',student'), -('100011', '800000322', '2021FA', ',student'), -('100018', '800000322', '2021FA', ',student'), -('100055', '800000322', '2021FA', ',student'), -('100155', '800000322', '2021FA', ',student'), -('100270', '800000322', '2021FA', ',student'), -('100076', '800000326', '2021FA', ',student'), -('100302', '800000326', '2021FA', ',student'), -('100432', '800000326', '2021FA', ',student'), -('100463', '800000326', '2021FA', ',student'), -('100516', '800000326', '2021FA', ',student'), -('100044', '800000327', '2021FA', ',student'), -('100056', '800000327', '2021FA', ',student'), -('100081', '800000327', '2021FA', ',student'), -('100566', '800000327', '2021FA', ',student'), -('100618', '800000327', '2021FA', ',student'), -('100143', '800000330', '2021FA', ',student'), -('100183', '800000330', '2021FA', ',student'), -('100344', '800000330', '2021FA', ',student'), -('100558', '800000330', '2021FA', ',student'), -('100599', '800000330', '2021FA', ',student'), -('100125', '800000332', '2021FA', ',student'), -('100182', '800000332', '2021FA', ',student'), -('100211', '800000332', '2021FA', ',student'), -('100424', '800000332', '2021FA', ',student'), -('100457', '800000332', '2021FA', ',student'), -('100062', '800000333', '2021FA', ',student'), -('100071', '800000333', '2021FA', ',student'), -('100319', '800000333', '2021FA', ',student'), -('100435', '800000333', '2021FA', ',student'), -('100530', '800000333', '2021FA', ',student'), -('100034', '800000338', '2021FA', ',student'), -('100240', '800000338', '2021FA', ',student'), -('100305', '800000338', '2021FA', ',student'), -('100536', '800000338', '2021FA', ',student'), -('100538', '800000338', '2021FA', ',student'), -('100014', '800000339', '2021FA', ',student'), -('100107', '800000339', '2021FA', ',student'), -('100155', '800000339', '2021FA', ',student'), -('100248', '800000339', '2021FA', ',student'), -('100356', '800000339', '2021FA', ',student'), -('100106', '800000343', '2021FA', ',student'), -('100111', '800000343', '2021FA', ',student'), -('100448', '800000343', '2021FA', ',student'), -('100476', '800000343', '2021FA', ',student'), -('100577', '800000343', '2021FA', ',student'), -('100005', '800000346', '2021FA', ',student'), -('100111', '800000346', '2021FA', ',student'), -('100184', '800000346', '2021FA', ',student'), -('100260', '800000346', '2021FA', ',student'), -('100329', '800000346', '2021FA', ',student'), -('100011', '800000348', '2021FA', ',student'), -('100129', '800000348', '2021FA', ',student'), -('100366', '800000348', '2021FA', ',student'), -('100508', '800000348', '2021FA', ',student'), -('100512', '800000348', '2021FA', ',student'), -('100056', '800000350', '2021FA', ',student'), -('100119', '800000350', '2021FA', ',student'), -('100410', '800000350', '2021FA', ',student'), -('100429', '800000350', '2021FA', ',student'), -('100564', '800000350', '2021FA', ',student'), -('100010', '800000354', '2021FA', ',student'), -('100383', '800000354', '2021FA', ',student'), -('100539', '800000354', '2021FA', ',student'), -('100565', '800000354', '2021FA', ',student'), -('100620', '800000354', '2021FA', ',student'), -('100173', '800000356', '2021FA', ',student'), -('100370', '800000356', '2021FA', ',student'), -('100396', '800000356', '2021FA', ',student'), -('100467', '800000356', '2021FA', ',student'), -('100525', '800000356', '2021FA', ',student'), -('100001', '800000359', '2021FA', ',student'), -('100250', '800000359', '2021FA', ',student'), -('100329', '800000359', '2021FA', ',student'), -('100565', '800000359', '2021FA', ',student'), -('100613', '800000359', '2021FA', ',student'), -('100052', '800000362', '2021FA', ',student'), -('100222', '800000362', '2021FA', ',student'), -('100255', '800000362', '2021FA', ',student'), -('100272', '800000362', '2021FA', ',student'), -('100468', '800000362', '2021FA', ',student'), -('100031', '800000365', '2021FA', ',student'), -('100119', '800000365', '2021FA', ',student'), -('100123', '800000365', '2021FA', ',student'), -('100377', '800000365', '2021FA', ',student'), -('100514', '800000365', '2021FA', ',student'), -('100101', '800000367', '2021FA', ',student'), -('100183', '800000367', '2021FA', ',student'), -('100370', '800000367', '2021FA', ',student'), -('100440', '800000367', '2021FA', ',student'), -('100513', '800000367', '2021FA', ',student'), -('100022', '800000368', '2021FA', ',student'), -('100036', '800000368', '2021FA', ',student'), -('100291', '800000368', '2021FA', ',student'), -('100565', '800000368', '2021FA', ',student'), -('100568', '800000368', '2021FA', ',student'), -('100009', '800000369', '2021FA', ',student'), -('100013', '800000369', '2021FA', ',student'), -('100062', '800000369', '2021FA', ',student'), -('100372', '800000369', '2021FA', ',student'), -('100404', '800000369', '2021FA', ',student'), -('100170', '800000371', '2021FA', ',student'), -('100329', '800000371', '2021FA', ',student'), -('100464', '800000371', '2021FA', ',student'), -('100492', '800000371', '2021FA', ',student'), -('100622', '800000371', '2021FA', ',student'), -('100270', '800000372', '2021FA', ',student'), -('100277', '800000372', '2021FA', ',student'), -('100281', '800000372', '2021FA', ',student'), -('100476', '800000372', '2021FA', ',student'), -('100488', '800000372', '2021FA', ',student'), -('100073', '800000373', '2021FA', ',student'), -('100117', '800000373', '2021FA', ',student'), -('100200', '800000373', '2021FA', ',student'), -('100346', '800000373', '2021FA', ',student'), -('100570', '800000373', '2021FA', ',student'), -('100095', '800000374', '2021FA', ',student'), -('100138', '800000374', '2021FA', ',student'), -('100289', '800000374', '2021FA', ',student'), -('100340', '800000374', '2021FA', ',student'), -('100527', '800000374', '2021FA', ',student'), -('100000', '800000375', '2021FA', ',student'), -('100145', '800000375', '2021FA', ',student'), -('100194', '800000375', '2021FA', ',student'), -('100277', '800000375', '2021FA', ',student'), -('100581', '800000375', '2021FA', ',student'), -('100082', '800000380', '2021FA', ',student'), -('100173', '800000380', '2021FA', ',student'), -('100223', '800000380', '2021FA', ',student'), -('100468', '800000380', '2021FA', ',student'), -('100591', '800000380', '2021FA', ',student'), -('100004', '800000381', '2021FA', ',student'), -('100111', '800000381', '2021FA', ',student'), -('100332', '800000381', '2021FA', ',student'), -('100359', '800000381', '2021FA', ',student'), -('100407', '800000381', '2021FA', ',student'), -('100223', '800000385', '2021FA', ',student'), -('100270', '800000385', '2021FA', ',student'), -('100295', '800000385', '2021FA', ',student'), -('100583', '800000385', '2021FA', ',student'), -('100589', '800000385', '2021FA', ',student'), -('100059', '800000387', '2021FA', ',student'), -('100275', '800000387', '2021FA', ',student'), -('100398', '800000387', '2021FA', ',student'), -('100575', '800000387', '2021FA', ',student'), -('100583', '800000387', '2021FA', ',student'), -('100274', '800000388', '2021FA', ',student'), -('100290', '800000388', '2021FA', ',student'), -('100443', '800000388', '2021FA', ',student'), -('100473', '800000388', '2021FA', ',student'), -('100496', '800000388', '2021FA', ',student'), -('100159', '800000390', '2021FA', ',student'), -('100241', '800000390', '2021FA', ',student'), -('100469', '800000390', '2021FA', ',student'), -('100585', '800000390', '2021FA', ',student'), -('100599', '800000390', '2021FA', ',student'), -('100015', '800000393', '2021FA', ',student'), -('100128', '800000393', '2021FA', ',student'), -('100148', '800000393', '2021FA', ',student'), -('100363', '800000393', '2021FA', ',student'), -('100616', '800000393', '2021FA', ',student'), -('100087', '800000394', '2021FA', ',student'), -('100165', '800000394', '2021FA', ',student'), -('100179', '800000394', '2021FA', ',student'), -('100442', '800000394', '2021FA', ',student'), -('100614', '800000394', '2021FA', ',student'), -('100083', '800000398', '2021FA', ',student'), -('100125', '800000398', '2021FA', ',student'), -('100335', '800000398', '2021FA', ',student'), -('100389', '800000398', '2021FA', ',student'), -('100424', '800000398', '2021FA', ',student'), -('100019', '800000400', '2021FA', ',student'), -('100253', '800000400', '2021FA', ',student'), -('100279', '800000400', '2021FA', ',student'), -('100414', '800000400', '2021FA', ',student'), -('100500', '800000400', '2021FA', ',student'), -('100174', '800000402', '2021FA', ',student'), -('100200', '800000402', '2021FA', ',student'), -('100242', '800000402', '2021FA', ',student'), -('100275', '800000402', '2021FA', ',student'), -('100367', '800000402', '2021FA', ',student'), -('100083', '800000403', '2021FA', ',student'), -('100107', '800000403', '2021FA', ',student'), -('100245', '800000403', '2021FA', ',student'), -('100347', '800000403', '2021FA', ',student'), -('100536', '800000403', '2021FA', ',student'), -('100088', '800000404', '2021FA', ',student'), -('100245', '800000404', '2021FA', ',student'), -('100273', '800000404', '2021FA', ',student'), -('100410', '800000404', '2021FA', ',student'), -('100440', '800000404', '2021FA', ',student'), -('100121', '800000406', '2021FA', ',student'), -('100262', '800000406', '2021FA', ',student'), -('100405', '800000406', '2021FA', ',student'), -('100488', '800000406', '2021FA', ',student'), -('100513', '800000406', '2021FA', ',student'), -('100006', '800000409', '2021FA', ',student'), -('100163', '800000409', '2021FA', ',student'), -('100258', '800000409', '2021FA', ',student'), -('100499', '800000409', '2021FA', ',student'), -('100559', '800000409', '2021FA', ',student'), -('100144', '800000410', '2021FA', ',student'), -('100275', '800000410', '2021FA', ',student'), -('100449', '800000410', '2021FA', ',student'), -('100477', '800000410', '2021FA', ',student'), -('100614', '800000410', '2021FA', ',student'), -('100059', '800000411', '2021FA', ',student'), -('100125', '800000411', '2021FA', ',student'), -('100241', '800000411', '2021FA', ',student'), -('100506', '800000411', '2021FA', ',student'), -('100548', '800000411', '2021FA', ',student'), -('100058', '800000412', '2021FA', ',student'), -('100096', '800000412', '2021FA', ',student'), -('100169', '800000412', '2021FA', ',student'), -('100179', '800000412', '2021FA', ',student'), -('100526', '800000412', '2021FA', ',student'), -('100022', '800000417', '2021FA', ',student'), -('100042', '800000417', '2021FA', ',student'), -('100269', '800000417', '2021FA', ',student'), -('100356', '800000417', '2021FA', ',student'), -('100599', '800000417', '2021FA', ',student'), -('100078', '800000418', '2021FA', ',student'), -('100099', '800000418', '2021FA', ',student'), -('100409', '800000418', '2021FA', ',student'), -('100461', '800000418', '2021FA', ',student'), -('100556', '800000418', '2021FA', ',student'), -('100011', '800000419', '2021FA', ',student'), -('100024', '800000419', '2021FA', ',student'), -('100028', '800000419', '2021FA', ',student'), -('100121', '800000419', '2021FA', ',student'), -('100168', '800000419', '2021FA', ',student'), -('100025', '800000421', '2021FA', ',student'), -('100116', '800000421', '2021FA', ',student'), -('100175', '800000421', '2021FA', ',student'), -('100218', '800000421', '2021FA', ',student'), -('100428', '800000421', '2021FA', ',student'), -('100142', '800000424', '2021FA', ',student'), -('100216', '800000424', '2021FA', ',student'), -('100497', '800000424', '2021FA', ',student'), -('100599', '800000424', '2021FA', ',student'), -('100615', '800000424', '2021FA', ',student'), -('100238', '800000425', '2021FA', ',student'), -('100287', '800000425', '2021FA', ',student'), -('100306', '800000425', '2021FA', ',student'), -('100435', '800000425', '2021FA', ',student'), -('100543', '800000425', '2021FA', ',student'), -('100127', '800000427', '2021FA', ',student'), -('100359', '800000427', '2021FA', ',student'), -('100443', '800000427', '2021FA', ',student'), -('100447', '800000427', '2021FA', ',student'), -('100527', '800000427', '2021FA', ',student'), -('100059', '800000428', '2021FA', ',student'), -('100279', '800000428', '2021FA', ',student'), -('100297', '800000428', '2021FA', ',student'), -('100372', '800000428', '2021FA', ',student'), -('100611', '800000428', '2021FA', ',student'), -('100065', '800000429', '2021FA', ',student'), -('100078', '800000429', '2021FA', ',student'), -('100288', '800000429', '2021FA', ',student'), -('100365', '800000429', '2021FA', ',student'), -('100484', '800000429', '2021FA', ',student'), -('100031', '800000431', '2021FA', ',student'), -('100239', '800000431', '2021FA', ',student'), -('100254', '800000431', '2021FA', ',student'), -('100525', '800000431', '2021FA', ',student'), -('100567', '800000431', '2021FA', ',student'), -('100039', '800000433', '2021FA', ',student'), -('100256', '800000433', '2021FA', ',student'), -('100307', '800000433', '2021FA', ',student'), -('100438', '800000433', '2021FA', ',student'), -('100625', '800000433', '2021FA', ',student'), -('100139', '800000434', '2021FA', ',student'), -('100173', '800000434', '2021FA', ',student'), -('100229', '800000434', '2021FA', ',student'), -('100410', '800000434', '2021FA', ',student'), -('100588', '800000434', '2021FA', ',student'), -('100157', '800000436', '2021FA', ',student'), -('100242', '800000436', '2021FA', ',student'), -('100438', '800000436', '2021FA', ',student'), -('100454', '800000436', '2021FA', ',student'), -('100549', '800000436', '2021FA', ',student'), -('100164', '800000438', '2021FA', ',student'), -('100258', '800000438', '2021FA', ',student'), -('100269', '800000438', '2021FA', ',student'), -('100327', '800000438', '2021FA', ',student'), -('100547', '800000438', '2021FA', ',student'), -('100082', '800000441', '2021FA', ',student'), -('100138', '800000441', '2021FA', ',student'), -('100254', '800000441', '2021FA', ',student'), -('100509', '800000441', '2021FA', ',student'), -('100563', '800000441', '2021FA', ',student'), -('100228', '800000442', '2021FA', ',student'), -('100376', '800000442', '2021FA', ',student'), -('100416', '800000442', '2021FA', ',student'), -('100571', '800000442', '2021FA', ',student'), -('100583', '800000442', '2021FA', ',student'), -('100027', '800000445', '2021FA', ',student'), -('100177', '800000445', '2021FA', ',student'), -('100266', '800000445', '2021FA', ',student'), -('100430', '800000445', '2021FA', ',student'), -('100482', '800000445', '2021FA', ',student'), -('100075', '800000450', '2021FA', ',student'), -('100156', '800000450', '2021FA', ',student'), -('100436', '800000450', '2021FA', ',student'), -('100487', '800000450', '2021FA', ',student'), -('100556', '800000450', '2021FA', ',student'), -('100335', '800000451', '2021FA', ',student'), -('100345', '800000451', '2021FA', ',student'), -('100415', '800000451', '2021FA', ',student'), -('100416', '800000451', '2021FA', ',student'), -('100418', '800000451', '2021FA', ',student'), -('100038', '800000458', '2021FA', ',student'), -('100109', '800000458', '2021FA', ',student'), -('100259', '800000458', '2021FA', ',student'), -('100309', '800000458', '2021FA', ',student'), -('100562', '800000458', '2021FA', ',student'), -('100123', '800000461', '2021FA', ',student'), -('100137', '800000461', '2021FA', ',student'), -('100440', '800000461', '2021FA', ',student'), -('100553', '800000461', '2021FA', ',student'), -('100557', '800000461', '2021FA', ',student'), -('100038', '800000463', '2021FA', ',student'), -('100091', '800000463', '2021FA', ',student'), -('100203', '800000463', '2021FA', ',student'), -('100285', '800000463', '2021FA', ',student'), -('100322', '800000463', '2021FA', ',student'), -('100122', '800000464', '2021FA', ',student'), -('100227', '800000464', '2021FA', ',student'), -('100471', '800000464', '2021FA', ',student'), -('100521', '800000464', '2021FA', ',student'), -('100597', '800000464', '2021FA', ',student'), -('100136', '800000466', '2021FA', ',student'), -('100179', '800000466', '2021FA', ',student'), -('100239', '800000466', '2021FA', ',student'), -('100343', '800000466', '2021FA', ',student'), -('100378', '800000466', '2021FA', ',student'), -('100012', '800000467', '2021FA', ',student'), -('100133', '800000467', '2021FA', ',student'), -('100219', '800000467', '2021FA', ',student'), -('100509', '800000467', '2021FA', ',student'), -('100617', '800000467', '2021FA', ',student'), -('100333', '800000469', '2021FA', ',student'), -('100529', '800000469', '2021FA', ',student'), -('100559', '800000469', '2021FA', ',student'), -('100571', '800000469', '2021FA', ',student'), -('100613', '800000469', '2021FA', ',student'), -('100094', '800000471', '2021FA', ',student'), -('100180', '800000471', '2021FA', ',student'), -('100235', '800000471', '2021FA', ',student'), -('100438', '800000471', '2021FA', ',student'), -('100581', '800000471', '2021FA', ',student'), -('100032', '800000473', '2021FA', ',student'), -('100220', '800000473', '2021FA', ',student'), -('100565', '800000473', '2021FA', ',student'), -('100580', '800000473', '2021FA', ',student'), -('100616', '800000473', '2021FA', ',student'), -('100006', '800000474', '2021FA', ',student'), -('100053', '800000474', '2021FA', ',student'), -('100114', '800000474', '2021FA', ',student'), -('100265', '800000474', '2021FA', ',student'), -('100549', '800000474', '2021FA', ',student'), -('100164', '800000478', '2021FA', ',student'), -('100393', '800000478', '2021FA', ',student'), -('100529', '800000478', '2021FA', ',student'), -('100575', '800000478', '2021FA', ',student'), -('100605', '800000478', '2021FA', ',student'), -('100027', '800000479', '2021FA', ',student'), -('100165', '800000479', '2021FA', ',student'), -('100299', '800000479', '2021FA', ',student'), -('100376', '800000479', '2021FA', ',student'), -('100544', '800000479', '2021FA', ',student'), -('100171', '800000480', '2021FA', ',student'), -('100262', '800000480', '2021FA', ',student'), -('100269', '800000480', '2021FA', ',student'), -('100498', '800000480', '2021FA', ',student'), -('100550', '800000480', '2021FA', ',student'), -('100137', '800000485', '2021FA', ',student'), -('100196', '800000485', '2021FA', ',student'), -('100227', '800000485', '2021FA', ',student'), -('100435', '800000485', '2021FA', ',student'), -('100481', '800000485', '2021FA', ',student'), -('100072', '800000486', '2021FA', ',student'), -('100142', '800000486', '2021FA', ',student'), -('100151', '800000486', '2021FA', ',student'), -('100485', '800000486', '2021FA', ',student'), -('100534', '800000486', '2021FA', ',student'), -('100079', '800000489', '2021FA', ',student'), -('100400', '800000489', '2021FA', ',student'), -('100425', '800000489', '2021FA', ',student'), -('100426', '800000489', '2021FA', ',student'), -('100479', '800000489', '2021FA', ',student'), -('100050', '800000490', '2021FA', ',student'), -('100180', '800000490', '2021FA', ',student'), -('100204', '800000490', '2021FA', ',student'), -('100337', '800000490', '2021FA', ',student'), -('100594', '800000490', '2021FA', ',student'), -('100232', '800000491', '2021FA', ',student'), -('100433', '800000491', '2021FA', ',student'), -('100455', '800000491', '2021FA', ',student'), -('100474', '800000491', '2021FA', ',student'), -('100536', '800000491', '2021FA', ',student'), -('100086', '800000492', '2021FA', ',student'), -('100101', '800000492', '2021FA', ',student'), -('100125', '800000492', '2021FA', ',student'), -('100295', '800000492', '2021FA', ',student'), -('100581', '800000492', '2021FA', ',student'), -('100204', '800000494', '2021FA', ',student'), -('100332', '800000494', '2021FA', ',student'), -('100419', '800000494', '2021FA', ',student'), -('100438', '800000494', '2021FA', ',student'), -('100537', '800000494', '2021FA', ',student'), -('100098', '800000495', '2021FA', ',student'), -('100133', '800000495', '2021FA', ',student'), -('100169', '800000495', '2021FA', ',student'), -('100458', '800000495', '2021FA', ',student'), -('100470', '800000495', '2021FA', ',student'), -('100071', '800000497', '2021FA', ',student'), -('100132', '800000497', '2021FA', ',student'), -('100301', '800000497', '2021FA', ',student'), -('100434', '800000497', '2021FA', ',student'), -('100540', '800000497', '2021FA', ',student'), -('100067', '800000499', '2021FA', ',student'), -('100244', '800000499', '2021FA', ',student'), -('100450', '800000499', '2021FA', ',student'), -('100465', '800000499', '2021FA', ',student'), -('100484', '800000499', '2021FA', ',student'), -('100045', '800000500', '2021FA', ',student'), -('100316', '800000500', '2021FA', ',student'), -('100361', '800000500', '2021FA', ',student'), -('100537', '800000500', '2021FA', ',student'), -('100624', '800000500', '2021FA', ',student'), -('100149', '800000502', '2021FA', ',student'), -('100166', '800000502', '2021FA', ',student'), -('100214', '800000502', '2021FA', ',student'), -('100520', '800000502', '2021FA', ',student'), -('100586', '800000502', '2021FA', ',student'), -('100106', '800000503', '2021FA', ',student'), -('100340', '800000503', '2021FA', ',student'), -('100372', '800000503', '2021FA', ',student'), -('100505', '800000503', '2021FA', ',student'), -('100525', '800000503', '2021FA', ',student'), -('100067', '800000506', '2021FA', ',student'), -('100182', '800000506', '2021FA', ',student'), -('100312', '800000506', '2021FA', ',student'), -('100525', '800000506', '2021FA', ',student'), -('100624', '800000506', '2021FA', ',student'), -('100013', '800000509', '2021FA', ',student'), -('100125', '800000509', '2021FA', ',student'), -('100335', '800000509', '2021FA', ',student'), -('100498', '800000509', '2021FA', ',student'), -('100617', '800000509', '2021FA', ',student'), -('100148', '800000512', '2021FA', ',student'), -('100267', '800000512', '2021FA', ',student'), -('100328', '800000512', '2021FA', ',student'), -('100433', '800000512', '2021FA', ',student'), -('100521', '800000512', '2021FA', ',student'), -('100141', '800000514', '2021FA', ',student'), -('100205', '800000514', '2021FA', ',student'), -('100212', '800000514', '2021FA', ',student'), -('100391', '800000514', '2021FA', ',student'), -('100434', '800000514', '2021FA', ',student'), -('100088', '800000515', '2021FA', ',student'), -('100184', '800000515', '2021FA', ',student'), -('100477', '800000515', '2021FA', ',student'), -('100497', '800000515', '2021FA', ',student'), -('100528', '800000515', '2021FA', ',student'), -('100130', '800000518', '2021FA', ',student'), -('100158', '800000518', '2021FA', ',student'), -('100273', '800000518', '2021FA', ',student'), -('100545', '800000518', '2021FA', ',student'), -('100624', '800000518', '2021FA', ',student'), -('100080', '800000520', '2021FA', ',student'), -('100081', '800000520', '2021FA', ',student'), -('100377', '800000520', '2021FA', ',student'), -('100507', '800000520', '2021FA', ',student'), -('100538', '800000520', '2021FA', ',student'), -('100117', '800000521', '2021FA', ',student'), -('100305', '800000521', '2021FA', ',student'), -('100451', '800000521', '2021FA', ',student'), -('100485', '800000521', '2021FA', ',student'), -('100501', '800000521', '2021FA', ',student'), -('100029', '800000527', '2021FA', ',student'), -('100060', '800000527', '2021FA', ',student'), -('100166', '800000527', '2021FA', ',student'), -('100169', '800000527', '2021FA', ',student'), -('100548', '800000527', '2021FA', ',student'), -('100062', '800000529', '2021FA', ',student'), -('100171', '800000529', '2021FA', ',student'), -('100197', '800000529', '2021FA', ',student'), -('100508', '800000529', '2021FA', ',student'), -('100586', '800000529', '2021FA', ',student'), -('100196', '800000531', '2021FA', ',student'), -('100313', '800000531', '2021FA', ',student'), -('100534', '800000531', '2021FA', ',student'), -('100588', '800000531', '2021FA', ',student'), -('100599', '800000531', '2021FA', ',student'), -('100103', '800000534', '2021FA', ',student'), -('100168', '800000534', '2021FA', ',student'), -('100172', '800000534', '2021FA', ',student'), -('100409', '800000534', '2021FA', ',student'), -('100601', '800000534', '2021FA', ',student'), -('100099', '800000538', '2021FA', ',student'), -('100511', '800000538', '2021FA', ',student'), -('100574', '800000538', '2021FA', ',student'), -('100588', '800000538', '2021FA', ',student'), -('100613', '800000538', '2021FA', ',student'), -('100001', '800000539', '2021FA', ',student'), -('100104', '800000539', '2021FA', ',student'), -('100351', '800000539', '2021FA', ',student'), -('100481', '800000539', '2021FA', ',student'), -('100539', '800000539', '2021FA', ',student'), -('100066', '800000540', '2021FA', ',student'), -('100179', '800000540', '2021FA', ',student'), -('100198', '800000540', '2021FA', ',student'), -('100427', '800000540', '2021FA', ',student'), -('100545', '800000540', '2021FA', ',student'), -('100038', '800000542', '2021FA', ',student'), -('100154', '800000542', '2021FA', ',student'), -('100195', '800000542', '2021FA', ',student'), -('100303', '800000542', '2021FA', ',student'), -('100367', '800000542', '2021FA', ',student'), -('100046', '800000543', '2021FA', ',student'), -('100064', '800000543', '2021FA', ',student'), -('100142', '800000543', '2021FA', ',student'), -('100611', '800000543', '2021FA', ',student'), -('100624', '800000543', '2021FA', ',student'), -('100039', '800000545', '2021FA', ',student'), -('100272', '800000545', '2021FA', ',student'), -('100396', '800000545', '2021FA', ',student'), -('100455', '800000545', '2021FA', ',student'), -('100597', '800000545', '2021FA', ',student'), -('100026', '800000547', '2021FA', ',student'), -('100056', '800000547', '2021FA', ',student'), -('100076', '800000547', '2021FA', ',student'), -('100323', '800000547', '2021FA', ',student'), -('100595', '800000547', '2021FA', ',student'), -('100032', '800000548', '2021FA', ',student'), -('100510', '800000548', '2021FA', ',student'), -('100529', '800000548', '2021FA', ',student'), -('100556', '800000548', '2021FA', ',student'), -('100582', '800000548', '2021FA', ',student'), -('100071', '800000549', '2021FA', ',student'), -('100331', '800000549', '2021FA', ',student'), -('100369', '800000549', '2021FA', ',student'), -('100425', '800000549', '2021FA', ',student'), -('100478', '800000549', '2021FA', ',student'), -('100005', '800000550', '2021FA', ',student'), -('100197', '800000550', '2021FA', ',student'), -('100213', '800000550', '2021FA', ',student'), -('100422', '800000550', '2021FA', ',student'), -('100459', '800000550', '2021FA', ',student'), -('100240', '800000553', '2021FA', ',student'), -('100329', '800000553', '2021FA', ',student'), -('100444', '800000553', '2021FA', ',student'), -('100466', '800000553', '2021FA', ',student'), -('100563', '800000553', '2021FA', ',student'), -('100029', '800000554', '2021FA', ',student'), -('100068', '800000554', '2021FA', ',student'), -('100093', '800000554', '2021FA', ',student'), -('100382', '800000554', '2021FA', ',student'), -('100461', '800000554', '2021FA', ',student'), -('100026', '800000555', '2021FA', ',student'), -('100160', '800000555', '2021FA', ',student'), -('100249', '800000555', '2021FA', ',student'), -('100364', '800000555', '2021FA', ',student'), -('100451', '800000555', '2021FA', ',student'), -('100197', '800000556', '2021FA', ',student'), -('100202', '800000556', '2021FA', ',student'), -('100307', '800000556', '2021FA', ',student'), -('100475', '800000556', '2021FA', ',student'), -('100535', '800000556', '2021FA', ',student'), -('100012', '800000557', '2021FA', ',student'), -('100178', '800000557', '2021FA', ',student'), -('100391', '800000557', '2021FA', ',student'), -('100531', '800000557', '2021FA', ',student'), -('100582', '800000557', '2021FA', ',student'), -('100234', '800000558', '2021FA', ',student'), -('100393', '800000558', '2021FA', ',student'), -('100523', '800000558', '2021FA', ',student'), -('100549', '800000558', '2021FA', ',student'), -('100607', '800000558', '2021FA', ',student'), -('100069', '800000564', '2021FA', ',student'), -('100158', '800000564', '2021FA', ',student'), -('100188', '800000564', '2021FA', ',student'), -('100257', '800000564', '2021FA', ',student'), -('100464', '800000564', '2021FA', ',student'), -('100062', '800000565', '2021FA', ',student'), -('100306', '800000565', '2021FA', ',student'), -('100324', '800000565', '2021FA', ',student'), -('100619', '800000565', '2021FA', ',student'), -('100620', '800000565', '2021FA', ',student'), -('100249', '800000566', '2021FA', ',student'), -('100415', '800000566', '2021FA', ',student'), -('100448', '800000566', '2021FA', ',student'), -('100577', '800000566', '2021FA', ',student'), -('100586', '800000566', '2021FA', ',student'), -('100013', '800000568', '2021FA', ',student'), -('100103', '800000568', '2021FA', ',student'), -('100312', '800000568', '2021FA', ',student'), -('100329', '800000568', '2021FA', ',student'), -('100367', '800000568', '2021FA', ',student'), -('100065', '800000569', '2021FA', ',student'), -('100166', '800000569', '2021FA', ',student'), -('100384', '800000569', '2021FA', ',student'), -('100456', '800000569', '2021FA', ',student'), -('100468', '800000569', '2021FA', ',student'), -('100089', '800000570', '2021FA', ',student'), -('100138', '800000570', '2021FA', ',student'), -('100172', '800000570', '2021FA', ',student'), -('100497', '800000570', '2021FA', ',student'), -('100617', '800000570', '2021FA', ',student'), -('100176', '800000571', '2021FA', ',student'), -('100201', '800000571', '2021FA', ',student'), -('100258', '800000571', '2021FA', ',student'), -('100398', '800000571', '2021FA', ',student'), -('100458', '800000571', '2021FA', ',student'), -('100187', '800000572', '2021FA', ',student'), -('100361', '800000572', '2021FA', ',student'), -('100394', '800000572', '2021FA', ',student'), -('100467', '800000572', '2021FA', ',student'), -('100572', '800000572', '2021FA', ',student'), -('100353', '800000573', '2021FA', ',student'), -('100391', '800000573', '2021FA', ',student'), -('100392', '800000573', '2021FA', ',student'), -('100500', '800000573', '2021FA', ',student'), -('100526', '800000573', '2021FA', ',student'), -('100047', '800000574', '2021FA', ',student'), -('100295', '800000574', '2021FA', ',student'), -('100416', '800000574', '2021FA', ',student'), -('100431', '800000574', '2021FA', ',student'), -('100601', '800000574', '2021FA', ',student'), -('100069', '800000575', '2021FA', ',student'), -('100163', '800000575', '2021FA', ',student'), -('100265', '800000575', '2021FA', ',student'), -('100404', '800000575', '2021FA', ',student'), -('100576', '800000575', '2021FA', ',student'), -('100244', '800000576', '2021FA', ',student'), -('100315', '800000576', '2021FA', ',student'), -('100369', '800000576', '2021FA', ',student'), -('100382', '800000576', '2021FA', ',student'), -('100575', '800000576', '2021FA', ',student'), -('100100', '800000577', '2021FA', ',student'), -('100115', '800000577', '2021FA', ',student'), -('100174', '800000577', '2021FA', ',student'), -('100268', '800000577', '2021FA', ',student'), -('100384', '800000577', '2021FA', ',student'), -('100051', '800000579', '2021FA', ',student'), -('100114', '800000579', '2021FA', ',student'), -('100183', '800000579', '2021FA', ',student'), -('100297', '800000579', '2021FA', ',student'), -('100312', '800000579', '2021FA', ',student'), -('100104', '800000580', '2021FA', ',student'), -('100127', '800000580', '2021FA', ',student'), -('100373', '800000580', '2021FA', ',student'), -('100418', '800000580', '2021FA', ',student'), -('100444', '800000580', '2021FA', ',student'), -('100146', '800000581', '2021FA', ',student'), -('100217', '800000581', '2021FA', ',student'), -('100339', '800000581', '2021FA', ',student'), -('100546', '800000581', '2021FA', ',student'), -('100617', '800000581', '2021FA', ',student'), -('100069', '800000584', '2021FA', ',student'), -('100118', '800000584', '2021FA', ',student'), -('100183', '800000584', '2021FA', ',student'), -('100235', '800000584', '2021FA', ',student'), -('100545', '800000584', '2021FA', ',student'), -('100045', '800000585', '2021FA', ',student'), -('100127', '800000585', '2021FA', ',student'), -('100290', '800000585', '2021FA', ',student'), -('100514', '800000585', '2021FA', ',student'), -('100623', '800000585', '2021FA', ',student'), -('100260', '800000586', '2021FA', ',student'), -('100427', '800000586', '2021FA', ',student'), -('100432', '800000586', '2021FA', ',student'), -('100435', '800000586', '2021FA', ',student'), -('100516', '800000586', '2021FA', ',student'), -('100141', '800000588', '2021FA', ',student'), -('100156', '800000588', '2021FA', ',student'), -('100382', '800000588', '2021FA', ',student'), -('100499', '800000588', '2021FA', ',student'), -('100540', '800000588', '2021FA', ',student'), -('100024', '800000590', '2021FA', ',student'), -('100323', '800000590', '2021FA', ',student'), -('100356', '800000590', '2021FA', ',student'), -('100447', '800000590', '2021FA', ',student'), -('100549', '800000590', '2021FA', ',student'), -('100102', '800000591', '2021FA', ',student'), -('100229', '800000591', '2021FA', ',student'), -('100237', '800000591', '2021FA', ',student'), -('100453', '800000591', '2021FA', ',student'), -('100476', '800000591', '2021FA', ',student'), -('100074', '800000592', '2021FA', ',student'), -('100144', '800000592', '2021FA', ',student'), -('100158', '800000592', '2021FA', ',student'), -('100406', '800000592', '2021FA', ',student'), -('100480', '800000592', '2021FA', ',student'), -('100021', '800000593', '2021FA', ',student'), -('100395', '800000593', '2021FA', ',student'), -('100535', '800000593', '2021FA', ',student'), -('100592', '800000593', '2021FA', ',student'), -('100605', '800000593', '2021FA', ',student'), -('100025', '800000595', '2021FA', ',student'), -('100039', '800000595', '2021FA', ',student'), -('100324', '800000595', '2021FA', ',student'), -('100392', '800000595', '2021FA', ',student'), -('100466', '800000595', '2021FA', ',student'), -('100246', '800000596', '2021FA', ',student'), -('100281', '800000596', '2021FA', ',student'), -('100385', '800000596', '2021FA', ',student'), -('100536', '800000596', '2021FA', ',student'), -('100626', '800000596', '2021FA', ',student'), -('100160', '800000597', '2021FA', ',student'), -('100303', '800000597', '2021FA', ',student'), -('100325', '800000597', '2021FA', ',student'), -('100551', '800000597', '2021FA', ',student'), -('100615', '800000597', '2021FA', ',student'), -('100057', '800000602', '2021FA', ',student'), -('100061', '800000602', '2021FA', ',student'), -('100182', '800000602', '2021FA', ',student'), -('100326', '800000602', '2021FA', ',student'), -('100525', '800000602', '2021FA', ',student'), -('100247', '800000603', '2021FA', ',student'), -('100479', '800000603', '2021FA', ',student'), -('100534', '800000603', '2021FA', ',student'), -('100592', '800000603', '2021FA', ',student'), -('100610', '800000603', '2021FA', ',student'), -('100240', '800000606', '2021FA', ',student'), -('100302', '800000606', '2021FA', ',student'), -('100348', '800000606', '2021FA', ',student'), -('100476', '800000606', '2021FA', ',student'), -('100510', '800000606', '2021FA', ',student'), -('100197', '800000607', '2021FA', ',student'), -('100314', '800000607', '2021FA', ',student'), -('100352', '800000607', '2021FA', ',student'), -('100448', '800000607', '2021FA', ',student'), -('100531', '800000607', '2021FA', ',student'), -('100032', '800000610', '2021FA', ',student'), -('100050', '800000610', '2021FA', ',student'), -('100226', '800000610', '2021FA', ',student'), -('100255', '800000610', '2021FA', ',student'), -('100478', '800000610', '2021FA', ',student'), -('100183', '800000611', '2021FA', ',student'), -('100191', '800000611', '2021FA', ',student'), -('100409', '800000611', '2021FA', ',student'), -('100410', '800000611', '2021FA', ',student'), -('100438', '800000611', '2021FA', ',student'), -('100103', '800000615', '2021FA', ',student'), -('100238', '800000615', '2021FA', ',student'), -('100322', '800000615', '2021FA', ',student'), -('100352', '800000615', '2021FA', ',student'), -('100386', '800000615', '2021FA', ',student'), -('100189', '800000616', '2021FA', ',student'), -('100336', '800000616', '2021FA', ',student'), -('100414', '800000616', '2021FA', ',student'), -('100428', '800000616', '2021FA', ',student'), -('100431', '800000616', '2021FA', ',student'), -('100407', '800000621', '2021FA', ',student'), -('100442', '800000621', '2021FA', ',student'), -('100465', '800000621', '2021FA', ',student'), -('100590', '800000621', '2021FA', ',student'), -('100619', '800000621', '2021FA', ',student'), -('100028', '800000622', '2021FA', ',student'), -('100091', '800000622', '2021FA', ',student'), -('100132', '800000622', '2021FA', ',student'), -('100298', '800000622', '2021FA', ',student'), -('100549', '800000622', '2021FA', ',student'), -('100133', '800000623', '2021FA', ',student'), -('100138', '800000623', '2021FA', ',student'), -('100262', '800000623', '2021FA', ',student'), -('100318', '800000623', '2021FA', ',student'), -('100574', '800000623', '2021FA', ',student'), -('100057', '800000624', '2021FA', ',student'), -('100455', '800000624', '2021FA', ',student'), -('100497', '800000624', '2021FA', ',student'), -('100510', '800000624', '2021FA', ',student'), -('100539', '800000624', '2021FA', ',student'), -('100012', '800000625', '2021FA', ',student'), -('100094', '800000625', '2021FA', ',student'), -('100295', '800000625', '2021FA', ',student'), -('100431', '800000625', '2021FA', ',student'), -('100588', '800000625', '2021FA', ',student'), -('100141', '800000626', '2021FA', ',student'), -('100178', '800000626', '2021FA', ',student'), -('100388', '800000626', '2021FA', ',student'), -('100402', '800000626', '2021FA', ',student'), -('100511', '800000626', '2021FA', ',student'), -('100095', '800000627', '2021FA', ',student'), -('100161', '800000627', '2021FA', ',student'), -('100317', '800000627', '2021FA', ',student'), -('100446', '800000627', '2021FA', ',student'), -('100538', '800000627', '2021FA', ',student'), -('100152', '800000628', '2021FA', ',student'), -('100245', '800000628', '2021FA', ',student'), -('100308', '800000628', '2021FA', ',student'), -('100351', '800000628', '2021FA', ',student'), -('100428', '800000628', '2021FA', ',student'), -('100117', '800000630', '2021FA', ',student'), -('100187', '800000630', '2021FA', ',student'), -('100274', '800000630', '2021FA', ',student'), -('100474', '800000630', '2021FA', ',student'), -('100481', '800000630', '2021FA', ',student'), -('100299', '800000631', '2021FA', ',student'), -('100383', '800000631', '2021FA', ',student'), -('100541', '800000631', '2021FA', ',student'), -('100572', '800000631', '2021FA', ',student'), -('100605', '800000631', '2021FA', ',student'), -('100006', '800000632', '2021FA', ',student'), -('100140', '800000632', '2021FA', ',student'), -('100215', '800000632', '2021FA', ',student'), -('100375', '800000632', '2021FA', ',student'), -('100527', '800000632', '2021FA', ',student'), -('100130', '800000634', '2021FA', ',student'), -('100161', '800000634', '2021FA', ',student'), -('100370', '800000634', '2021FA', ',student'), -('100386', '800000634', '2021FA', ',student'), -('100450', '800000634', '2021FA', ',student'), -('100064', '800000635', '2021FA', ',student'), -('100193', '800000635', '2021FA', ',student'), -('100242', '800000635', '2021FA', ',student'), -('100362', '800000635', '2021FA', ',student'), -('100392', '800000635', '2021FA', ',student'), -('100062', '800000636', '2021FA', ',student'), -('100467', '800000636', '2021FA', ',student'), -('100484', '800000636', '2021FA', ',student'), -('100528', '800000636', '2021FA', ',student'), -('100614', '800000636', '2021FA', ',student'), -('100015', '800000637', '2021FA', ',student'), -('100128', '800000637', '2021FA', ',student'), -('100174', '800000637', '2021FA', ',student'), -('100374', '800000637', '2021FA', ',student'), -('100472', '800000637', '2021FA', ',student'), -('100099', '800000641', '2021FA', ',student'), -('100125', '800000641', '2021FA', ',student'), -('100259', '800000641', '2021FA', ',student'), -('100291', '800000641', '2021FA', ',student'), -('100549', '800000641', '2021FA', ',student'), -('100132', '800000642', '2021FA', ',student'), -('100150', '800000642', '2021FA', ',student'), -('100182', '800000642', '2021FA', ',student'), -('100184', '800000642', '2021FA', ',student'), -('100225', '800000642', '2021FA', ',student'), -('100205', '800000643', '2021FA', ',student'), -('100290', '800000643', '2021FA', ',student'), -('100538', '800000643', '2021FA', ',student'), -('100551', '800000643', '2021FA', ',student'), -('100596', '800000643', '2021FA', ',student'), -('100096', '800000644', '2021FA', ',student'), -('100142', '800000644', '2021FA', ',student'), -('100499', '800000644', '2021FA', ',student'), -('100532', '800000644', '2021FA', ',student'), -('100619', '800000644', '2021FA', ',student'), -('100116', '800000645', '2021FA', ',student'), -('100223', '800000645', '2021FA', ',student'), -('100285', '800000645', '2021FA', ',student'), -('100431', '800000645', '2021FA', ',student'), -('100492', '800000645', '2021FA', ',student'), -('100308', '800000646', '2021FA', ',student'), -('100315', '800000646', '2021FA', ',student'), -('100447', '800000646', '2021FA', ',student'), -('100495', '800000646', '2021FA', ',student'), -('100532', '800000646', '2021FA', ',student'), -('100154', '800000652', '2021FA', ',student'), -('100163', '800000652', '2021FA', ',student'), -('100246', '800000652', '2021FA', ',student'), -('100441', '800000652', '2021FA', ',student'), -('100462', '800000652', '2021FA', ',student'), -('100050', '800000655', '2021FA', ',student'), -('100211', '800000655', '2021FA', ',student'), -('100552', '800000655', '2021FA', ',student'), -('100579', '800000655', '2021FA', ',student'), -('100614', '800000655', '2021FA', ',student'), -('100128', '800000656', '2021FA', ',student'), -('100303', '800000656', '2021FA', ',student'), -('100326', '800000656', '2021FA', ',student'), -('100442', '800000656', '2021FA', ',student'), -('100493', '800000656', '2021FA', ',student'), -('100283', '800000657', '2021FA', ',student'), -('100386', '800000657', '2021FA', ',student'), -('100430', '800000657', '2021FA', ',student'), -('100546', '800000657', '2021FA', ',student'), -('100604', '800000657', '2021FA', ',student'), -('100086', '800000658', '2021FA', ',student'), -('100133', '800000658', '2021FA', ',student'), -('100290', '800000658', '2021FA', ',student'), -('100533', '800000658', '2021FA', ',student'), -('100599', '800000658', '2021FA', ',student'), -('100217', '800000660', '2021FA', ',student'), -('100385', '800000660', '2021FA', ',student'), -('100447', '800000660', '2021FA', ',student'), -('100547', '800000660', '2021FA', ',student'), -('100617', '800000660', '2021FA', ',student'), -('100130', '800000662', '2021FA', ',student'), -('100206', '800000662', '2021FA', ',student'), -('100443', '800000662', '2021FA', ',student'), -('100480', '800000662', '2021FA', ',student'), -('100485', '800000662', '2021FA', ',student'), -('100177', '800000663', '2021FA', ',student'), -('100228', '800000663', '2021FA', ',student'), -('100410', '800000663', '2021FA', ',student'), -('100478', '800000663', '2021FA', ',student'), -('100537', '800000663', '2021FA', ',student'), -('100118', '800000664', '2021FA', ',student'), -('100151', '800000664', '2021FA', ',student'), -('100236', '800000664', '2021FA', ',student'), -('100297', '800000664', '2021FA', ',student'), -('100548', '800000664', '2021FA', ',student'), -('100195', '800000665', '2021FA', ',student'), -('100315', '800000665', '2021FA', ',student'), -('100364', '800000665', '2021FA', ',student'), -('100405', '800000665', '2021FA', ',student'), -('100435', '800000665', '2021FA', ',student'), -('100006', '800000666', '2021FA', ',student'), -('100156', '800000666', '2021FA', ',student'), -('100330', '800000666', '2021FA', ',student'), -('100334', '800000666', '2021FA', ',student'), -('100603', '800000666', '2021FA', ',student'), -('100057', '800000671', '2021FA', ',student'), -('100070', '800000671', '2021FA', ',student'), -('100240', '800000671', '2021FA', ',student'), -('100272', '800000671', '2021FA', ',student'), -('100578', '800000671', '2021FA', ',student'), -('100102', '800000672', '2021FA', ',student'), -('100204', '800000672', '2021FA', ',student'), -('100367', '800000672', '2021FA', ',student'), -('100432', '800000672', '2021FA', ',student'), -('100589', '800000672', '2021FA', ',student'), -('100254', '800000673', '2021FA', ',student'), -('100263', '800000673', '2021FA', ',student'), -('100280', '800000673', '2021FA', ',student'), -('100397', '800000673', '2021FA', ',student'), -('100501', '800000673', '2021FA', ',student'), -('100017', '800000676', '2021FA', ',student'), -('100021', '800000676', '2021FA', ',student'), -('100222', '800000676', '2021FA', ',student'), -('100428', '800000676', '2021FA', ',student'), -('100614', '800000676', '2021FA', ',student'), -('100116', '800000679', '2021FA', ',student'), -('100154', '800000679', '2021FA', ',student'), -('100206', '800000679', '2021FA', ',student'), -('100411', '800000679', '2021FA', ',student'), -('100451', '800000679', '2021FA', ',student'), -('100027', '800000680', '2021FA', ',student'), -('100116', '800000680', '2021FA', ',student'), -('100117', '800000680', '2021FA', ',student'), -('100227', '800000680', '2021FA', ',student'), -('100414', '800000680', '2021FA', ',student'), -('100067', '800000682', '2021FA', ',student'), -('100070', '800000682', '2021FA', ',student'), -('100185', '800000682', '2021FA', ',student'), -('100303', '800000682', '2021FA', ',student'), -('100425', '800000682', '2021FA', ',student'), -('100064', '800000685', '2021FA', ',student'), -('100099', '800000685', '2021FA', ',student'), -('100175', '800000685', '2021FA', ',student'), -('100274', '800000685', '2021FA', ',student'), -('100391', '800000685', '2021FA', ',student'), -('100064', '800000687', '2021FA', ',student'), -('100106', '800000687', '2021FA', ',student'), -('100170', '800000687', '2021FA', ',student'), -('100230', '800000687', '2021FA', ',student'), -('100496', '800000687', '2021FA', ',student'), -('100023', '800000688', '2021FA', ',student'), -('100203', '800000688', '2021FA', ',student'), -('100208', '800000688', '2021FA', ',student'), -('100293', '800000688', '2021FA', ',student'), -('100326', '800000688', '2021FA', ',student'), -('100137', '800000692', '2021FA', ',student'), -('100214', '800000692', '2021FA', ',student'), -('100221', '800000692', '2021FA', ',student'), -('100472', '800000692', '2021FA', ',student'), -('100546', '800000692', '2021FA', ',student'), -('100026', '800000694', '2021FA', ',student'), -('100060', '800000694', '2021FA', ',student'), -('100326', '800000694', '2021FA', ',student'), -('100425', '800000694', '2021FA', ',student'), -('100463', '800000694', '2021FA', ',student'), -('100065', '800000696', '2021FA', ',student'), -('100276', '800000696', '2021FA', ',student'), -('100405', '800000696', '2021FA', ',student'), -('100480', '800000696', '2021FA', ',student'), -('100514', '800000696', '2021FA', ',student'), -('100004', '800000701', '2021FA', ',student'), -('100116', '800000701', '2021FA', ',student'), -('100136', '800000701', '2021FA', ',student'), -('100208', '800000701', '2021FA', ',student'), -('100501', '800000701', '2021FA', ',student'), -('100049', '800000703', '2021FA', ',student'), -('100084', '800000703', '2021FA', ',student'), -('100090', '800000703', '2021FA', ',student'), -('100113', '800000703', '2021FA', ',student'), -('100340', '800000703', '2021FA', ',student'), -('100089', '800000705', '2021FA', ',student'), -('100195', '800000705', '2021FA', ',student'), -('100304', '800000705', '2021FA', ',student'), -('100447', '800000705', '2021FA', ',student'), -('100558', '800000705', '2021FA', ',student'), -('100019', '800000707', '2021FA', ',student'), -('100204', '800000707', '2021FA', ',student'), -('100289', '800000707', '2021FA', ',student'), -('100568', '800000707', '2021FA', ',student'), -('100569', '800000707', '2021FA', ',student'), -('100123', '800000708', '2021FA', ',student'), -('100183', '800000708', '2021FA', ',student'), -('100453', '800000708', '2021FA', ',student'), -('100540', '800000708', '2021FA', ',student'), -('100624', '800000708', '2021FA', ',student'), -('100042', '800000709', '2021FA', ',student'), -('100203', '800000709', '2021FA', ',student'), -('100259', '800000709', '2021FA', ',student'), -('100337', '800000709', '2021FA', ',student'), -('100465', '800000709', '2021FA', ',student'), -('100081', '800000710', '2021FA', ',student'), -('100217', '800000710', '2021FA', ',student'), -('100309', '800000710', '2021FA', ',student'), -('100361', '800000710', '2021FA', ',student'), -('100553', '800000710', '2021FA', ',student'), -('100123', '800000711', '2021FA', ',student'), -('100216', '800000711', '2021FA', ',student'), -('100384', '800000711', '2021FA', ',student'), -('100404', '800000711', '2021FA', ',student'), -('100463', '800000711', '2021FA', ',student'), -('100108', '800000712', '2021FA', ',student'), -('100266', '800000712', '2021FA', ',student'), -('100337', '800000712', '2021FA', ',student'), -('100510', '800000712', '2021FA', ',student'), -('100514', '800000712', '2021FA', ',student'), -('100008', '800000714', '2021FA', ',student'), -('100186', '800000714', '2021FA', ',student'), -('100257', '800000714', '2021FA', ',student'), -('100292', '800000714', '2021FA', ',student'), -('100339', '800000714', '2021FA', ',student'), -('100320', '800000716', '2021FA', ',student'), -('100425', '800000716', '2021FA', ',student'), -('100436', '800000716', '2021FA', ',student'), -('100561', '800000716', '2021FA', ',student'), -('100607', '800000716', '2021FA', ',student'), -('100022', '800000717', '2021FA', ',student'), -('100109', '800000717', '2021FA', ',student'), -('100192', '800000717', '2021FA', ',student'), -('100367', '800000717', '2021FA', ',student'), -('100494', '800000717', '2021FA', ',student'), -('100037', '800000718', '2021FA', ',student'), -('100127', '800000718', '2021FA', ',student'), -('100309', '800000718', '2021FA', ',student'), -('100470', '800000718', '2021FA', ',student'), -('100485', '800000718', '2021FA', ',student'), -('100002', '800000719', '2021FA', ',student'), -('100075', '800000719', '2021FA', ',student'), -('100154', '800000719', '2021FA', ',student'), -('100300', '800000719', '2021FA', ',student'), -('100401', '800000719', '2021FA', ',student'), -('100013', '800000720', '2021FA', ',student'), -('100095', '800000720', '2021FA', ',student'), -('100144', '800000720', '2021FA', ',student'), -('100205', '800000720', '2021FA', ',student'), -('100522', '800000720', '2021FA', ',student'), -('100034', '800000721', '2021FA', ',student'), -('100090', '800000721', '2021FA', ',student'), -('100236', '800000721', '2021FA', ',student'), -('100315', '800000721', '2021FA', ',student'), -('100624', '800000721', '2021FA', ',student'), -('100143', '800000723', '2021FA', ',student'), -('100218', '800000723', '2021FA', ',student'), -('100292', '800000723', '2021FA', ',student'), -('100407', '800000723', '2021FA', ',student'), -('100504', '800000723', '2021FA', ',student'), -('100016', '800000724', '2021FA', ',student'), -('100039', '800000724', '2021FA', ',student'), -('100040', '800000724', '2021FA', ',student'), -('100069', '800000724', '2021FA', ',student'), -('100085', '800000724', '2021FA', ',student'), -('100012', '800000725', '2021FA', ',student'), -('100059', '800000725', '2021FA', ',student'), -('100406', '800000725', '2021FA', ',student'), -('100569', '800000725', '2021FA', ',student'), -('100624', '800000725', '2021FA', ',student'), -('100020', '800000726', '2021FA', ',student'), -('100058', '800000726', '2021FA', ',student'), -('100247', '800000726', '2021FA', ',student'), -('100445', '800000726', '2021FA', ',student'), -('100605', '800000726', '2021FA', ',student'), -('100075', '800000727', '2021FA', ',student'), -('100082', '800000727', '2021FA', ',student'), -('100289', '800000727', '2021FA', ',student'), -('100342', '800000727', '2021FA', ',student'), -('100486', '800000727', '2021FA', ',student'), -('100203', '800000728', '2021FA', ',student'), -('100217', '800000728', '2021FA', ',student'), -('100509', '800000728', '2021FA', ',student'), -('100514', '800000728', '2021FA', ',student'), -('100617', '800000728', '2021FA', ',student'), -('100050', '800000729', '2021FA', ',student'), -('100203', '800000729', '2021FA', ',student'), -('100267', '800000729', '2021FA', ',student'), -('100435', '800000729', '2021FA', ',student'), -('100551', '800000729', '2021FA', ',student'), -('100095', '800000730', '2021FA', ',student'), -('100126', '800000730', '2021FA', ',student'), -('100220', '800000730', '2021FA', ',student'), -('100364', '800000730', '2021FA', ',student'), -('100603', '800000730', '2021FA', ',student'), -('100038', '800000732', '2021FA', ',student'), -('100173', '800000732', '2021FA', ',student'), -('100318', '800000732', '2021FA', ',student'), -('100348', '800000732', '2021FA', ',student'), -('100492', '800000732', '2021FA', ',student'), -('100050', '800000733', '2021FA', ',student'), -('100081', '800000733', '2021FA', ',student'), -('100118', '800000733', '2021FA', ',student'), -('100457', '800000733', '2021FA', ',student'), -('100463', '800000733', '2021FA', ',student'), -('100019', '800000734', '2021FA', ',student'), -('100103', '800000734', '2021FA', ',student'), -('100169', '800000734', '2021FA', ',student'), -('100357', '800000734', '2021FA', ',student'), -('100361', '800000734', '2021FA', ',student'), -('100013', '800000737', '2021FA', ',student'), -('100176', '800000737', '2021FA', ',student'), -('100301', '800000737', '2021FA', ',student'), -('100386', '800000737', '2021FA', ',student'), -('100546', '800000737', '2021FA', ',student'), -('100086', '800000738', '2021FA', ',student'), -('100187', '800000738', '2021FA', ',student'), -('100254', '800000738', '2021FA', ',student'), -('100330', '800000738', '2021FA', ',student'), -('100559', '800000738', '2021FA', ',student'), -('100136', '800000739', '2021FA', ',student'), -('100366', '800000739', '2021FA', ',student'), -('100401', '800000739', '2021FA', ',student'), -('100448', '800000739', '2021FA', ',student'), -('100598', '800000739', '2021FA', ',student'), -('100248', '800000740', '2021FA', ',student'), -('100253', '800000740', '2021FA', ',student'), -('100269', '800000740', '2021FA', ',student'), -('100512', '800000740', '2021FA', ',student'), -('100613', '800000740', '2021FA', ',student'), -('100090', '800000741', '2021FA', ',student'), -('100165', '800000741', '2021FA', ',student'), -('100177', '800000741', '2021FA', ',student'), -('100388', '800000741', '2021FA', ',student'), -('100419', '800000741', '2021FA', ',student'), -('100090', '800000743', '2021FA', ',student'), -('100173', '800000743', '2021FA', ',student'), -('100203', '800000743', '2021FA', ',student'), -('100290', '800000743', '2021FA', ',student'), -('100607', '800000743', '2021FA', ',student'), -('100144', '800000744', '2021FA', ',student'), -('100278', '800000744', '2021FA', ',student'), -('100340', '800000744', '2021FA', ',student'), -('100594', '800000744', '2021FA', ',student'), -('100600', '800000744', '2021FA', ',student'), -('100034', '800000746', '2021FA', ',student'), -('100039', '800000746', '2021FA', ',student'), -('100253', '800000746', '2021FA', ',student'), -('100373', '800000746', '2021FA', ',student'), -('100558', '800000746', '2021FA', ',student'), -('100198', '800000747', '2021FA', ',student'), -('100223', '800000747', '2021FA', ',student'), -('100225', '800000747', '2021FA', ',student'), -('100455', '800000747', '2021FA', ',student'), -('100553', '800000747', '2021FA', ',student'), -('100048', '800000748', '2021FA', ',student'), -('100095', '800000748', '2021FA', ',student'), -('100098', '800000748', '2021FA', ',student'), -('100318', '800000748', '2021FA', ',student'), -('100509', '800000748', '2021FA', ',student'), -('100016', '800000749', '2021FA', ',student'), -('100030', '800000749', '2021FA', ',student'), -('100136', '800000749', '2021FA', ',student'), -('100284', '800000749', '2021FA', ',student'), -('100376', '800000749', '2021FA', ',student'), -('100131', '800000754', '2021FA', ',student'), -('100146', '800000754', '2021FA', ',student'), -('100166', '800000754', '2021FA', ',student'), -('100370', '800000754', '2021FA', ',student'), -('100620', '800000754', '2021FA', ',student'), -('100010', '800000755', '2021FA', ',student'), -('100080', '800000755', '2021FA', ',student'), -('100115', '800000755', '2021FA', ',student'), -('100436', '800000755', '2021FA', ',student'), -('100586', '800000755', '2021FA', ',student'), -('100010', '800000759', '2021FA', ',student'), -('100047', '800000759', '2021FA', ',student'), -('100118', '800000759', '2021FA', ',student'), -('100157', '800000759', '2021FA', ',student'), -('100519', '800000759', '2021FA', ',student'), -('100170', '800000761', '2021FA', ',student'), -('100228', '800000761', '2021FA', ',student'), -('100269', '800000761', '2021FA', ',student'), -('100281', '800000761', '2021FA', ',student'), -('100504', '800000761', '2021FA', ',student'), -('100286', '800000762', '2021FA', ',student'), -('100392', '800000762', '2021FA', ',student'), -('100402', '800000762', '2021FA', ',student'), -('100433', '800000762', '2021FA', ',student'), -('100478', '800000762', '2021FA', ',student'), -('100003', '800000765', '2021FA', ',student'), -('100049', '800000765', '2021FA', ',student'), -('100093', '800000765', '2021FA', ',student'), -('100445', '800000765', '2021FA', ',student'), -('100599', '800000765', '2021FA', ',student'), -('100054', '800000766', '2021FA', ',student'), -('100073', '800000766', '2021FA', ',student'), -('100365', '800000766', '2021FA', ',student'), -('100518', '800000766', '2021FA', ',student'), -('100520', '800000766', '2021FA', ',student'), -('100037', '800000767', '2021FA', ',student'), -('100087', '800000767', '2021FA', ',student'), -('100262', '800000767', '2021FA', ',student'), -('100500', '800000767', '2021FA', ',student'), -('100542', '800000767', '2021FA', ',student'), -('100088', '800000768', '2021FA', ',student'), -('100116', '800000768', '2021FA', ',student'), -('100418', '800000768', '2021FA', ',student'), -('100450', '800000768', '2021FA', ',student'), -('100465', '800000768', '2021FA', ',student'), -('100283', '800000769', '2021FA', ',student'), -('100303', '800000769', '2021FA', ',student'), -('100351', '800000769', '2021FA', ',student'), -('100386', '800000769', '2021FA', ',student'), -('100532', '800000769', '2021FA', ',student'), -('100310', '800000770', '2021FA', ',student'), -('100345', '800000770', '2021FA', ',student'), -('100478', '800000770', '2021FA', ',student'), -('100551', '800000770', '2021FA', ',student'), -('100596', '800000770', '2021FA', ',student'), -('100281', '800000772', '2021FA', ',student'), -('100475', '800000772', '2021FA', ',student'), -('100511', '800000772', '2021FA', ',student'), -('100519', '800000772', '2021FA', ',student'), -('100533', '800000772', '2021FA', ',student'), -('100187', '800000773', '2021FA', ',student'), -('100257', '800000773', '2021FA', ',student'), -('100359', '800000773', '2021FA', ',student'), -('100435', '800000773', '2021FA', ',student'), -('100546', '800000773', '2021FA', ',student'), -('100060', '800000776', '2021FA', ',student'), -('100198', '800000776', '2021FA', ',student'), -('100231', '800000776', '2021FA', ',student'), -('100365', '800000776', '2021FA', ',student'), -('100488', '800000776', '2021FA', ',student'), -('100095', '800000778', '2021FA', ',student'), -('100195', '800000778', '2021FA', ',student'), -('100282', '800000778', '2021FA', ',student'), -('100296', '800000778', '2021FA', ',student'), -('100304', '800000778', '2021FA', ',student'), -('100070', '800000781', '2021FA', ',student'), -('100193', '800000781', '2021FA', ',student'), -('100226', '800000781', '2021FA', ',student'), -('100379', '800000781', '2021FA', ',student'), -('100401', '800000781', '2021FA', ',student'), -('100198', '800000782', '2021FA', ',student'), -('100218', '800000782', '2021FA', ',student'), -('100258', '800000782', '2021FA', ',student'), -('100295', '800000782', '2021FA', ',student'), -('100478', '800000782', '2021FA', ',student'), -('100451', '800000785', '2021FA', ',student'), -('100547', '800000785', '2021FA', ',student'), -('100586', '800000785', '2021FA', ',student'), -('100606', '800000785', '2021FA', ',student'), -('100620', '800000785', '2021FA', ',student'), -('100158', '800000787', '2021FA', ',student'), -('100167', '800000787', '2021FA', ',student'), -('100223', '800000787', '2021FA', ',student'), -('100546', '800000787', '2021FA', ',student'), -('100580', '800000787', '2021FA', ',student'), -('100121', '800000790', '2021FA', ',student'), -('100272', '800000790', '2021FA', ',student'), -('100373', '800000790', '2021FA', ',student'), -('100587', '800000790', '2021FA', ',student'), -('100593', '800000790', '2021FA', ',student'), -('100162', '800000791', '2021FA', ',student'), -('100390', '800000791', '2021FA', ',student'), -('100414', '800000791', '2021FA', ',student'), -('100428', '800000791', '2021FA', ',student'), -('100497', '800000791', '2021FA', ',student'), -('100128', '800000793', '2021FA', ',student'), -('100145', '800000793', '2021FA', ',student'), -('100236', '800000793', '2021FA', ',student'), -('100450', '800000793', '2021FA', ',student'), -('100600', '800000793', '2021FA', ',student'), -('100245', '800000798', '2021FA', ',student'), -('100366', '800000798', '2021FA', ',student'), -('100438', '800000798', '2021FA', ',student'), -('100467', '800000798', '2021FA', ',student'), -('100573', '800000798', '2021FA', ',student'), -('100052', '800000799', '2021FA', ',student'), -('100127', '800000799', '2021FA', ',student'), -('100324', '800000799', '2021FA', ',student'), -('100355', '800000799', '2021FA', ',student'), -('100528', '800000799', '2021FA', ',student'), -('100058', '800000801', '2021FA', ',student'), -('100134', '800000801', '2021FA', ',student'), -('100180', '800000801', '2021FA', ',student'), -('100201', '800000801', '2021FA', ',student'), -('100275', '800000801', '2021FA', ',student'), -('100152', '800000803', '2021FA', ',student'), -('100250', '800000803', '2021FA', ',student'), -('100303', '800000803', '2021FA', ',student'), -('100328', '800000803', '2021FA', ',student'), -('100626', '800000803', '2021FA', ',student'), -('100335', '800000804', '2021FA', ',student'), -('100362', '800000804', '2021FA', ',student'), -('100396', '800000804', '2021FA', ',student'), -('100434', '800000804', '2021FA', ',student'), -('100502', '800000804', '2021FA', ',student'), -('100253', '800000806', '2021FA', ',student'), -('100298', '800000806', '2021FA', ',student'), -('100362', '800000806', '2021FA', ',student'), -('100441', '800000806', '2021FA', ',student'), -('100445', '800000806', '2021FA', ',student'), -('100015', '800000807', '2021FA', ',student'), -('100091', '800000807', '2021FA', ',student'), -('100353', '800000807', '2021FA', ',student'), -('100354', '800000807', '2021FA', ',student'), -('100375', '800000807', '2021FA', ',student'), -('100020', '800000808', '2021FA', ',student'), -('100262', '800000808', '2021FA', ',student'), -('100305', '800000808', '2021FA', ',student'), -('100468', '800000808', '2021FA', ',student'), -('100494', '800000808', '2021FA', ',student'), -('100011', '800000809', '2021FA', ',student'), -('100048', '800000809', '2021FA', ',student'), -('100086', '800000809', '2021FA', ',student'), -('100230', '800000809', '2021FA', ',student'), -('100303', '800000809', '2021FA', ',student'), -('100013', '800000811', '2021FA', ',student'), -('100058', '800000811', '2021FA', ',student'), -('100188', '800000811', '2021FA', ',student'), -('100520', '800000811', '2021FA', ',student'), -('100530', '800000811', '2021FA', ',student'), -('100000', '800000813', '2021FA', ',student'), -('100059', '800000813', '2021FA', ',student'), -('100221', '800000813', '2021FA', ',student'), -('100236', '800000813', '2021FA', ',student'), -('100600', '800000813', '2021FA', ',student'), -('100017', '800000815', '2021FA', ',student'), -('100215', '800000815', '2021FA', ',student'), -('100271', '800000815', '2021FA', ',student'), -('100425', '800000815', '2021FA', ',student'), -('100580', '800000815', '2021FA', ',student'), -('100188', '800000818', '2021FA', ',student'), -('100385', '800000818', '2021FA', ',student'), -('100417', '800000818', '2021FA', ',student'), -('100433', '800000818', '2021FA', ',student'), -('100489', '800000818', '2021FA', ',student'), -('100136', '800000819', '2021FA', ',student'), -('100241', '800000819', '2021FA', ',student'), -('100268', '800000819', '2021FA', ',student'), -('100461', '800000819', '2021FA', ',student'), -('100513', '800000819', '2021FA', ',student'), -('100033', '800000821', '2021FA', ',student'), -('100072', '800000821', '2021FA', ',student'), -('100085', '800000821', '2021FA', ',student'), -('100119', '800000821', '2021FA', ',student'), -('100489', '800000821', '2021FA', ',student'), -('100061', '800000822', '2021FA', ',student'), -('100228', '800000822', '2021FA', ',student'), -('100338', '800000822', '2021FA', ',student'), -('100439', '800000822', '2021FA', ',student'), -('100569', '800000822', '2021FA', ',student'), -('100078', '800000826', '2021FA', ',student'), -('100146', '800000826', '2021FA', ',student'), -('100414', '800000826', '2021FA', ',student'), -('100429', '800000826', '2021FA', ',student'), -('100468', '800000826', '2021FA', ',student'), -('100080', '800000827', '2021FA', ',student'), -('100096', '800000827', '2021FA', ',student'), -('100238', '800000827', '2021FA', ',student'), -('100383', '800000827', '2021FA', ',student'), -('100595', '800000827', '2021FA', ',student'), -('100070', '800000828', '2021FA', ',student'), -('100131', '800000828', '2021FA', ',student'), -('100404', '800000828', '2021FA', ',student'), -('100426', '800000828', '2021FA', ',student'), -('100563', '800000828', '2021FA', ',student'), -('100104', '800000830', '2021FA', ',student'), -('100213', '800000830', '2021FA', ',student'), -('100324', '800000830', '2021FA', ',student'), -('100378', '800000830', '2021FA', ',student'), -('100597', '800000830', '2021FA', ',student'), -('100067', '800000832', '2021FA', ',student'), -('100270', '800000832', '2021FA', ',student'), -('100318', '800000832', '2021FA', ',student'), -('100477', '800000832', '2021FA', ',student'), -('100615', '800000832', '2021FA', ',student'), -('100033', '800000835', '2021FA', ',student'), -('100300', '800000835', '2021FA', ',student'), -('100527', '800000835', '2021FA', ',student'), -('100558', '800000835', '2021FA', ',student'), -('100566', '800000835', '2021FA', ',student'), -('100004', '800000836', '2021FA', ',student'), -('100165', '800000836', '2021FA', ',student'), -('100190', '800000836', '2021FA', ',student'), -('100517', '800000836', '2021FA', ',student'), -('100593', '800000836', '2021FA', ',student'), -('100266', '800000837', '2021FA', ',student'), -('100309', '800000837', '2021FA', ',student'), -('100353', '800000837', '2021FA', ',student'), -('100531', '800000837', '2021FA', ',student'), -('100566', '800000837', '2021FA', ',student'), -('100116', '800000840', '2021FA', ',student'), -('100141', '800000840', '2021FA', ',student'), -('100174', '800000840', '2021FA', ',student'), -('100371', '800000840', '2021FA', ',student'), -('100573', '800000840', '2021FA', ',student'), -('100166', '800000841', '2021FA', ',student'), -('100193', '800000841', '2021FA', ',student'), -('100218', '800000841', '2021FA', ',student'), -('100480', '800000841', '2021FA', ',student'), -('100529', '800000841', '2021FA', ',student'), -('100024', '800000843', '2021FA', ',student'), -('100164', '800000843', '2021FA', ',student'), -('100460', '800000843', '2021FA', ',student'), -('100517', '800000843', '2021FA', ',student'), -('100596', '800000843', '2021FA', ',student'), -('100050', '800000845', '2021FA', ',student'), -('100093', '800000845', '2021FA', ',student'), -('100265', '800000845', '2021FA', ',student'), -('100344', '800000845', '2021FA', ',student'), -('100596', '800000845', '2021FA', ',student'), -('100222', '800000846', '2021FA', ',student'), -('100272', '800000846', '2021FA', ',student'), -('100452', '800000846', '2021FA', ',student'), -('100501', '800000846', '2021FA', ',student'), -('100613', '800000846', '2021FA', ',student'), -('100051', '800000847', '2021FA', ',student'), -('100440', '800000847', '2021FA', ',student'), -('100499', '800000847', '2021FA', ',student'), -('100577', '800000847', '2021FA', ',student'), -('100622', '800000847', '2021FA', ',student'), -('100045', '800000848', '2021FA', ',student'), -('100163', '800000848', '2021FA', ',student'), -('100235', '800000848', '2021FA', ',student'), -('100325', '800000848', '2021FA', ',student'), -('100515', '800000848', '2021FA', ',student'), -('100234', '800000849', '2021FA', ',student'), -('100335', '800000849', '2021FA', ',student'), -('100362', '800000849', '2021FA', ',student'), -('100559', '800000849', '2021FA', ',student'), -('100587', '800000849', '2021FA', ',student'), -('100032', '800000850', '2021FA', ',student'), -('100134', '800000850', '2021FA', ',student'), -('100253', '800000850', '2021FA', ',student'), -('100345', '800000850', '2021FA', ',student'), -('100607', '800000850', '2021FA', ',student'), -('100273', '800000852', '2021FA', ',student'), -('100334', '800000852', '2021FA', ',student'), -('100347', '800000852', '2021FA', ',student'), -('100364', '800000852', '2021FA', ',student'), -('100431', '800000852', '2021FA', ',student'), -('100159', '800000855', '2021FA', ',student'), -('100175', '800000855', '2021FA', ',student'), -('100237', '800000855', '2021FA', ',student'), -('100268', '800000855', '2021FA', ',student'), -('100518', '800000855', '2021FA', ',student'), -('100028', '800000859', '2021FA', ',student'), -('100250', '800000859', '2021FA', ',student'), -('100311', '800000859', '2021FA', ',student'), -('100467', '800000859', '2021FA', ',student'), -('100585', '800000859', '2021FA', ',student'), -('100049', '800000861', '2021FA', ',student'), -('100269', '800000861', '2021FA', ',student'), -('100423', '800000861', '2021FA', ',student'), -('100464', '800000861', '2021FA', ',student'), -('100591', '800000861', '2021FA', ',student'), -('100165', '800000862', '2021FA', ',student'), -('100348', '800000862', '2021FA', ',student'), -('100396', '800000862', '2021FA', ',student'), -('100447', '800000862', '2021FA', ',student'), -('100537', '800000862', '2021FA', ',student'), -('100075', '800000864', '2021FA', ',student'), -('100173', '800000864', '2021FA', ',student'), -('100415', '800000864', '2021FA', ',student'), -('100428', '800000864', '2021FA', ',student'), -('100491', '800000864', '2021FA', ',student'), -('100390', '800000867', '2021FA', ',student'), -('100453', '800000867', '2021FA', ',student'), -('100472', '800000867', '2021FA', ',student'), -('100580', '800000867', '2021FA', ',student'), -('100622', '800000867', '2021FA', ',student'), -('100152', '800000868', '2021FA', ',student'), -('100175', '800000868', '2021FA', ',student'), -('100324', '800000868', '2021FA', ',student'), -('100378', '800000868', '2021FA', ',student'), -('100546', '800000868', '2021FA', ',student'), -('100042', '800000871', '2021FA', ',student'), -('100161', '800000871', '2021FA', ',student'), -('100260', '800000871', '2021FA', ',student'), -('100332', '800000871', '2021FA', ',student'), -('100528', '800000871', '2021FA', ',student'), -('100099', '800000874', '2021FA', ',student'), -('100197', '800000874', '2021FA', ',student'), -('100340', '800000874', '2021FA', ',student'), -('100343', '800000874', '2021FA', ',student'), -('100375', '800000874', '2021FA', ',student'), -('100012', '800000876', '2021FA', ',student'), -('100193', '800000876', '2021FA', ',student'), -('100491', '800000876', '2021FA', ',student'), -('100547', '800000876', '2021FA', ',student'), -('100566', '800000876', '2021FA', ',student'), -('100149', '800000877', '2021FA', ',student'), -('100209', '800000877', '2021FA', ',student'), -('100366', '800000877', '2021FA', ',student'), -('100547', '800000877', '2021FA', ',student'), -('100586', '800000877', '2021FA', ',student'), -('100011', '800000878', '2021FA', ',student'), -('100161', '800000878', '2021FA', ',student'), -('100171', '800000878', '2021FA', ',student'), -('100196', '800000878', '2021FA', ',student'), -('100321', '800000878', '2021FA', ',student'), -('100364', '800000879', '2021FA', ',student'), -('100446', '800000879', '2021FA', ',student'), -('100484', '800000879', '2021FA', ',student'), -('100556', '800000879', '2021FA', ',student'), -('100581', '800000879', '2021FA', ',student'), -('100201', '800000880', '2021FA', ',student'), -('100310', '800000880', '2021FA', ',student'), -('100399', '800000880', '2021FA', ',student'), -('100439', '800000880', '2021FA', ',student'), -('100490', '800000880', '2021FA', ',student'), -('100004', '800000881', '2021FA', ',student'), -('100018', '800000881', '2021FA', ',student'), -('100259', '800000881', '2021FA', ',student'), -('100315', '800000881', '2021FA', ',student'), -('100398', '800000881', '2021FA', ',student'), -('100094', '800000882', '2021FA', ',student'), -('100248', '800000882', '2021FA', ',student'), -('100390', '800000882', '2021FA', ',student'), -('100518', '800000882', '2021FA', ',student'), -('100528', '800000882', '2021FA', ',student'), -('100040', '800000885', '2021FA', ',student'), -('100051', '800000885', '2021FA', ',student'), -('100065', '800000885', '2021FA', ',student'), -('100355', '800000885', '2021FA', ',student'), -('100483', '800000885', '2021FA', ',student'), -('100031', '800000886', '2021FA', ',student'), -('100064', '800000886', '2021FA', ',student'), -('100080', '800000886', '2021FA', ',student'), -('100135', '800000886', '2021FA', ',student'), -('100416', '800000886', '2021FA', ',student'), -('100256', '800000887', '2021FA', ',student'), -('100262', '800000887', '2021FA', ',student'), -('100374', '800000887', '2021FA', ',student'), -('100561', '800000887', '2021FA', ',student'), -('100567', '800000887', '2021FA', ',student'), -('100003', '800000889', '2021FA', ',student'), -('100114', '800000889', '2021FA', ',student'), -('100122', '800000889', '2021FA', ',student'), -('100186', '800000889', '2021FA', ',student'), -('100595', '800000889', '2021FA', ',student'), -('100172', '800000890', '2021FA', ',student'), -('100229', '800000890', '2021FA', ',student'), -('100480', '800000890', '2021FA', ',student'), -('100601', '800000890', '2021FA', ',student'), -('100620', '800000890', '2021FA', ',student'), -('100094', '800000891', '2021FA', ',student'), -('100121', '800000891', '2021FA', ',student'), -('100293', '800000891', '2021FA', ',student'), -('100546', '800000891', '2021FA', ',student'), -('100626', '800000891', '2021FA', ',student'), -('100139', '800000892', '2021FA', ',student'), -('100263', '800000892', '2021FA', ',student'), -('100343', '800000892', '2021FA', ',student'), -('100473', '800000892', '2021FA', ',student'), -('100489', '800000892', '2021FA', ',student'), -('100165', '800000896', '2021FA', ',student'), -('100454', '800000896', '2021FA', ',student'), -('100554', '800000896', '2021FA', ',student'), -('100599', '800000896', '2021FA', ',student'), -('100616', '800000896', '2021FA', ',student'), -('100130', '800000900', '2021FA', ',student'), -('100173', '800000900', '2021FA', ',student'), -('100240', '800000900', '2021FA', ',student'), -('100332', '800000900', '2021FA', ',student'), -('100449', '800000900', '2021FA', ',student'), -('100115', '800000902', '2021FA', ',student'), -('100199', '800000902', '2021FA', ',student'), -('100499', '800000902', '2021FA', ',student'), -('100516', '800000902', '2021FA', ',student'), -('100620', '800000902', '2021FA', ',student'), -('100068', '800000903', '2021FA', ',student'), -('100111', '800000903', '2021FA', ',student'), -('100118', '800000903', '2021FA', ',student'), -('100425', '800000903', '2021FA', ',student'), -('100462', '800000903', '2021FA', ',student'), -('100117', '800000904', '2021FA', ',student'), -('100386', '800000904', '2021FA', ',student'), -('100398', '800000904', '2021FA', ',student'), -('100520', '800000904', '2021FA', ',student'), -('100584', '800000904', '2021FA', ',student'), -('100022', '800000905', '2021FA', ',student'), -('100083', '800000905', '2021FA', ',student'), -('100277', '800000905', '2021FA', ',student'), -('100305', '800000905', '2021FA', ',student'), -('100577', '800000905', '2021FA', ',student'), -('100003', '800000907', '2021FA', ',student'), -('100061', '800000907', '2021FA', ',student'), -('100248', '800000907', '2021FA', ',student'), -('100350', '800000907', '2021FA', ',student'), -('100508', '800000907', '2021FA', ',student'), -('100013', '800000908', '2021FA', ',student'), -('100309', '800000908', '2021FA', ',student'), -('100347', '800000908', '2021FA', ',student'), -('100406', '800000908', '2021FA', ',student'), -('100551', '800000908', '2021FA', ',student'), -('100195', '800000909', '2021FA', ',student'), -('100282', '800000909', '2021FA', ',student'), -('100422', '800000909', '2021FA', ',student'), -('100458', '800000909', '2021FA', ',student'), -('100477', '800000909', '2021FA', ',student'), -('100176', '800000910', '2021FA', ',student'), -('100211', '800000910', '2021FA', ',student'), -('100455', '800000910', '2021FA', ',student'), -('100522', '800000910', '2021FA', ',student'), -('100546', '800000910', '2021FA', ',student'), -('100122', '800000911', '2021FA', ',student'), -('100172', '800000911', '2021FA', ',student'), -('100307', '800000911', '2021FA', ',student'), -('100410', '800000911', '2021FA', ',student'), -('100586', '800000911', '2021FA', ',student'), -('100000', '800000914', '2021FA', ',student'), -('100023', '800000914', '2021FA', ',student'), -('100042', '800000914', '2021FA', ',student'), -('100147', '800000914', '2021FA', ',student'), -('100259', '800000914', '2021FA', ',student'), -('100035', '800000915', '2021FA', ',student'), -('100071', '800000915', '2021FA', ',student'), -('100454', '800000915', '2021FA', ',student'), -('100536', '800000915', '2021FA', ',student'), -('100583', '800000915', '2021FA', ',student'), -('100051', '800000917', '2021FA', ',student'), -('100053', '800000917', '2021FA', ',student'), -('100261', '800000917', '2021FA', ',student'), -('100454', '800000917', '2021FA', ',student'), -('100580', '800000917', '2021FA', ',student'), -('100032', '800000920', '2021FA', ',student'), -('100096', '800000920', '2021FA', ',student'), -('100308', '800000920', '2021FA', ',student'), -('100311', '800000920', '2021FA', ',student'), -('100395', '800000920', '2021FA', ',student'), -('100179', '800000922', '2021FA', ',student'), -('100243', '800000922', '2021FA', ',student'), -('100295', '800000922', '2021FA', ',student'), -('100498', '800000922', '2021FA', ',student'), -('100567', '800000922', '2021FA', ',student'), -('100235', '800000923', '2021FA', ',student'), -('100352', '800000923', '2021FA', ',student'), -('100403', '800000923', '2021FA', ',student'), -('100510', '800000923', '2021FA', ',student'), -('100621', '800000923', '2021FA', ',student'), -('100030', '800000924', '2021FA', ',student'), -('100083', '800000924', '2021FA', ',student'), -('100187', '800000924', '2021FA', ',student'), -('100350', '800000924', '2021FA', ',student'), -('100593', '800000924', '2021FA', ',student'), -('100177', '800000925', '2021FA', ',student'), -('100188', '800000925', '2021FA', ',student'), -('100211', '800000925', '2021FA', ',student'), -('100437', '800000925', '2021FA', ',student'), -('100444', '800000925', '2021FA', ',student'), -('100033', '800000930', '2021FA', ',student'), -('100046', '800000930', '2021FA', ',student'), -('100103', '800000930', '2021FA', ',student'), -('100266', '800000930', '2021FA', ',student'), -('100356', '800000930', '2021FA', ',student'), -('100172', '800000932', '2021FA', ',student'), -('100218', '800000932', '2021FA', ',student'), -('100255', '800000932', '2021FA', ',student'), -('100395', '800000932', '2021FA', ',student'), -('100459', '800000932', '2021FA', ',student'), -('100041', '800000936', '2021FA', ',student'), -('100142', '800000936', '2021FA', ',student'), -('100294', '800000936', '2021FA', ',student'), -('100499', '800000936', '2021FA', ',student'), -('100597', '800000936', '2021FA', ',student'), -('100205', '800000938', '2021FA', ',student'), -('100316', '800000938', '2021FA', ',student'), -('100404', '800000938', '2021FA', ',student'), -('100411', '800000938', '2021FA', ',student'), -('100612', '800000938', '2021FA', ',student'), -('100113', '800000940', '2021FA', ',student'), -('100314', '800000940', '2021FA', ',student'), -('100331', '800000940', '2021FA', ',student'), -('100340', '800000940', '2021FA', ',student'), -('100483', '800000940', '2021FA', ',student'), -('100093', '800000941', '2021FA', ',student'), -('100240', '800000941', '2021FA', ',student'), -('100364', '800000941', '2021FA', ',student'), -('100521', '800000941', '2021FA', ',student'), -('100612', '800000941', '2021FA', ',student'), -('100086', '800000942', '2021FA', ',student'), -('100201', '800000942', '2021FA', ',student'), -('100409', '800000942', '2021FA', ',student'), -('100415', '800000942', '2021FA', ',student'), -('100476', '800000942', '2021FA', ',student'), -('100158', '800000944', '2021FA', ',student'), -('100252', '800000944', '2021FA', ',student'), -('100341', '800000944', '2021FA', ',student'), -('100352', '800000944', '2021FA', ',student'), -('100570', '800000944', '2021FA', ',student'), -('100274', '800000945', '2021FA', ',student'), -('100346', '800000945', '2021FA', ',student'), -('100357', '800000945', '2021FA', ',student'), -('100524', '800000945', '2021FA', ',student'), -('100607', '800000945', '2021FA', ',student'), -('100034', '800000947', '2021FA', ',student'), -('100212', '800000947', '2021FA', ',student'), -('100323', '800000947', '2021FA', ',student'), -('100437', '800000947', '2021FA', ',student'), -('100596', '800000947', '2021FA', ',student'), -('100064', '800000948', '2021FA', ',student'), -('100326', '800000948', '2021FA', ',student'), -('100413', '800000948', '2021FA', ',student'), -('100556', '800000948', '2021FA', ',student'), -('100557', '800000948', '2021FA', ',student'), -('100092', '800000951', '2021FA', ',student'), -('100164', '800000951', '2021FA', ',student'), -('100363', '800000951', '2021FA', ',student'), -('100477', '800000951', '2021FA', ',student'), -('100612', '800000951', '2021FA', ',student'), -('100135', '800000952', '2021FA', ',student'), -('100276', '800000952', '2021FA', ',student'), -('100281', '800000952', '2021FA', ',student'), -('100388', '800000952', '2021FA', ',student'), -('100429', '800000952', '2021FA', ',student'), -('100018', '800000953', '2021FA', ',student'), -('100071', '800000953', '2021FA', ',student'), -('100237', '800000953', '2021FA', ',student'), -('100274', '800000953', '2021FA', ',student'), -('100497', '800000953', '2021FA', ',student'), -('100051', '800000960', '2021FA', ',student'), -('100122', '800000960', '2021FA', ',student'), -('100365', '800000960', '2021FA', ',student'), -('100386', '800000960', '2021FA', ',student'), -('100428', '800000960', '2021FA', ',student'), -('100042', '800000961', '2021FA', ',student'), -('100085', '800000961', '2021FA', ',student'), -('100130', '800000961', '2021FA', ',student'), -('100305', '800000961', '2021FA', ',student'), -('100347', '800000961', '2021FA', ',student'), -('100037', '800000963', '2021FA', ',student'), -('100056', '800000963', '2021FA', ',student'), -('100227', '800000963', '2021FA', ',student'), -('100393', '800000963', '2021FA', ',student'), -('100575', '800000963', '2021FA', ',student'), -('100000', '800000968', '2021FA', ',student'), -('100039', '800000968', '2021FA', ',student'), -('100401', '800000968', '2021FA', ',student'), -('100599', '800000968', '2021FA', ',student'), -('100610', '800000968', '2021FA', ',student'), -('100141', '800000971', '2021FA', ',student'), -('100157', '800000971', '2021FA', ',student'), -('100210', '800000971', '2021FA', ',student'), -('100211', '800000971', '2021FA', ',student'), -('100407', '800000971', '2021FA', ',student'), -('100063', '800000974', '2021FA', ',student'), -('100132', '800000974', '2021FA', ',student'), -('100138', '800000974', '2021FA', ',student'), -('100308', '800000974', '2021FA', ',student'), -('100337', '800000974', '2021FA', ',student'), -('100131', '800000975', '2021FA', ',student'), -('100303', '800000975', '2021FA', ',student'), -('100314', '800000975', '2021FA', ',student'), -('100358', '800000975', '2021FA', ',student'), -('100615', '800000975', '2021FA', ',student'), -('100019', '800000977', '2021FA', ',student'), -('100297', '800000977', '2021FA', ',student'), -('100504', '800000977', '2021FA', ',student'), -('100582', '800000977', '2021FA', ',student'), -('100602', '800000977', '2021FA', ',student'), -('100252', '800000979', '2021FA', ',student'), -('100262', '800000979', '2021FA', ',student'), -('100278', '800000979', '2021FA', ',student'), -('100368', '800000979', '2021FA', ',student'), -('100443', '800000979', '2021FA', ',student'), -('100009', '800000981', '2021FA', ',student'), -('100066', '800000981', '2021FA', ',student'), -('100197', '800000981', '2021FA', ',student'), -('100449', '800000981', '2021FA', ',student'), -('100617', '800000981', '2021FA', ',student'), -('100171', '800000984', '2021FA', ',student'), -('100229', '800000984', '2021FA', ',student'), -('100245', '800000984', '2021FA', ',student'), -('100502', '800000984', '2021FA', ',student'), -('100507', '800000984', '2021FA', ',student'), -('100123', '800000985', '2021FA', ',student'), -('100179', '800000985', '2021FA', ',student'), -('100279', '800000985', '2021FA', ',student'), -('100587', '800000985', '2021FA', ',student'), -('100612', '800000985', '2021FA', ',student'), -('100220', '800000986', '2021FA', ',student'), -('100227', '800000986', '2021FA', ',student'), -('100267', '800000986', '2021FA', ',student'), -('100278', '800000986', '2021FA', ',student'), -('100553', '800000986', '2021FA', ',student'), -('100082', '800000987', '2021FA', ',student'), -('100231', '800000987', '2021FA', ',student'), -('100277', '800000987', '2021FA', ',student'), -('100439', '800000987', '2021FA', ',student'), -('100567', '800000987', '2021FA', ',student'), -('100059', '800000989', '2021FA', ',student'), -('100133', '800000989', '2021FA', ',student'), -('100324', '800000989', '2021FA', ',student'), -('100465', '800000989', '2021FA', ',student'), -('100599', '800000989', '2021FA', ',student'), -('100141', '800000990', '2021FA', ',student'), -('100258', '800000990', '2021FA', ',student'), -('100352', '800000990', '2021FA', ',student'), -('100391', '800000990', '2021FA', ',student'), -('100583', '800000990', '2021FA', ',student'), -('100042', '800000991', '2021FA', ',student'), -('100176', '800000991', '2021FA', ',student'), -('100200', '800000991', '2021FA', ',student'), -('100401', '800000991', '2021FA', ',student'), -('100411', '800000991', '2021FA', ',student'), -('100050', '800000993', '2021FA', ',student'), -('100065', '800000993', '2021FA', ',student'), -('100167', '800000993', '2021FA', ',student'), -('100343', '800000993', '2021FA', ',student'), -('100371', '800000993', '2021FA', ',student'), -('100038', '800000995', '2021FA', ',student'), -('100283', '800000995', '2021FA', ',student'), -('100329', '800000995', '2021FA', ',student'), -('100472', '800000995', '2021FA', ',student'), -('100604', '800000995', '2021FA', ',student'), -('100141', '800000996', '2021FA', ',student'), -('100304', '800000996', '2021FA', ',student'), -('100350', '800000996', '2021FA', ',student'), -('100412', '800000996', '2021FA', ',student'), -('100617', '800000996', '2021FA', ',student'), -('100032', '800000997', '2021FA', ',student'), -('100273', '800000997', '2021FA', ',student'), -('100301', '800000997', '2021FA', ',student'), -('100526', '800000997', '2021FA', ',student'), -('100587', '800000997', '2021FA', ',student'), -('100290', '800000998', '2021FA', ',student'), -('100305', '800000998', '2021FA', ',student'), -('100395', '800000998', '2021FA', ',student'), -('100520', '800000998', '2021FA', ',student'), -('100608', '800000998', '2021FA', ',student'), -('100239', '800001000', '2021FA', ',student'), -('100278', '800001000', '2021FA', ',student'), -('100341', '800001000', '2021FA', ',student'), -('100562', '800001000', '2021FA', ',student'), -('100622', '800001000', '2021FA', ',student'), -('100030', '800001003', '2021FA', ',student'), -('100099', '800001003', '2021FA', ',student'), -('100236', '800001003', '2021FA', ',student'), -('100307', '800001003', '2021FA', ',student'), -('100448', '800001003', '2021FA', ',student'), -('100014', '800001004', '2021FA', ',student'), -('100276', '800001004', '2021FA', ',student'), -('100459', '800001004', '2021FA', ',student'), -('100502', '800001004', '2021FA', ',student'), -('100554', '800001004', '2021FA', ',student'), -('100022', '800001006', '2021FA', ',student'), -('100037', '800001006', '2021FA', ',student'), -('100073', '800001006', '2021FA', ',student'), -('100527', '800001006', '2021FA', ',student'), -('100607', '800001006', '2021FA', ',student'), -('100095', '800001008', '2021FA', ',student'), -('100111', '800001008', '2021FA', ',student'), -('100129', '800001008', '2021FA', ',student'), -('100242', '800001008', '2021FA', ',student'), -('100360', '800001008', '2021FA', ',student'), -('100138', '800001010', '2021FA', ',student'), -('100245', '800001010', '2021FA', ',student'), -('100382', '800001010', '2021FA', ',student'), -('100530', '800001010', '2021FA', ',student'), -('100533', '800001010', '2021FA', ',student'), -('100067', '800001011', '2021FA', ',student'), -('100071', '800001011', '2021FA', ',student'), -('100225', '800001011', '2021FA', ',student'), -('100297', '800001011', '2021FA', ',student'), -('100299', '800001011', '2021FA', ',student'), -('100080', '800001012', '2021FA', ',student'), -('100091', '800001012', '2021FA', ',student'), -('100315', '800001012', '2021FA', ',student'), -('100379', '800001012', '2021FA', ',student'), -('100451', '800001012', '2021FA', ',student'), -('100135', '800001014', '2021FA', ',student'), -('100205', '800001014', '2021FA', ',student'), -('100347', '800001014', '2021FA', ',student'), -('100464', '800001014', '2021FA', ',student'), -('100475', '800001014', '2021FA', ',student'), -('100072', '800001015', '2021FA', ',student'), -('100237', '800001015', '2021FA', ',student'), -('100276', '800001015', '2021FA', ',student'), -('100301', '800001015', '2021FA', ',student'), -('100591', '800001015', '2021FA', ',student'), -('100297', '800001016', '2021FA', ',student'), -('100321', '800001016', '2021FA', ',student'), -('100360', '800001016', '2021FA', ',student'), -('100495', '800001016', '2021FA', ',student'), -('100528', '800001016', '2021FA', ',student'), -('100254', '800001017', '2021FA', ',student'), -('100378', '800001017', '2021FA', ',student'), -('100485', '800001017', '2021FA', ',student'), -('100486', '800001017', '2021FA', ',student'), -('100558', '800001017', '2021FA', ',student'), -('100106', '800001019', '2021FA', ',student'), -('100126', '800001019', '2021FA', ',student'), -('100190', '800001019', '2021FA', ',student'), -('100456', '800001019', '2021FA', ',student'), -('100481', '800001019', '2021FA', ',student'), -('100078', '800001021', '2021FA', ',student'), -('100082', '800001021', '2021FA', ',student'), -('100122', '800001021', '2021FA', ',student'), -('100359', '800001021', '2021FA', ',student'), -('100438', '800001021', '2021FA', ',student'), -('100221', '800001023', '2021FA', ',student'), -('100395', '800001023', '2021FA', ',student'), -('100518', '800001023', '2021FA', ',student'), -('100539', '800001023', '2021FA', ',student'), -('100543', '800001023', '2021FA', ',student'), -('100033', '800001029', '2021FA', ',student'), -('100038', '800001029', '2021FA', ',student'), -('100050', '800001029', '2021FA', ',student'), -('100320', '800001029', '2021FA', ',student'), -('100472', '800001029', '2021FA', ',student'), -('100009', '800001030', '2021FA', ',student'), -('100059', '800001030', '2021FA', ',student'), -('100244', '800001030', '2021FA', ',student'), -('100576', '800001030', '2021FA', ',student'), -('100593', '800001030', '2021FA', ',student'), -('100154', '800001034', '2021FA', ',student'), -('100194', '800001034', '2021FA', ',student'), -('100225', '800001034', '2021FA', ',student'), -('100375', '800001034', '2021FA', ',student'), -('100391', '800001034', '2021FA', ',student'), -('100267', '800001036', '2021FA', ',student'), -('100425', '800001036', '2021FA', ',student'), -('100443', '800001036', '2021FA', ',student'), -('100457', '800001036', '2021FA', ',student'), -('100530', '800001036', '2021FA', ',student'), -('100124', '800001038', '2021FA', ',student'), -('100285', '800001038', '2021FA', ',student'), -('100320', '800001038', '2021FA', ',student'), -('100515', '800001038', '2021FA', ',student'), -('100543', '800001038', '2021FA', ',student'), -('100071', '800001044', '2021FA', ',student'), -('100086', '800001044', '2021FA', ',student'), -('100267', '800001044', '2021FA', ',student'), -('100361', '800001044', '2021FA', ',student'), -('100508', '800001044', '2021FA', ',student'), -('100098', '800001047', '2021FA', ',student'), -('100168', '800001047', '2021FA', ',student'), -('100202', '800001047', '2021FA', ',student'), -('100567', '800001047', '2021FA', ',student'), -('100625', '800001047', '2021FA', ',student'), -('100053', '800001048', '2021FA', ',student'), -('100136', '800001048', '2021FA', ',student'), -('100143', '800001048', '2021FA', ',student'), -('100149', '800001048', '2021FA', ',student'), -('100451', '800001048', '2021FA', ',student'), -('100017', '800001049', '2021FA', ',student'), -('100285', '800001049', '2021FA', ',student'), -('100288', '800001049', '2021FA', ',student'), -('100396', '800001049', '2021FA', ',student'), -('100546', '800001049', '2021FA', ',student'), -('100045', '800001050', '2021FA', ',student'), -('100209', '800001050', '2021FA', ',student'), -('100476', '800001050', '2021FA', ',student'), -('100489', '800001050', '2021FA', ',student'), -('100616', '800001050', '2021FA', ',student'), -('100055', '800001053', '2021FA', ',student'), -('100290', '800001053', '2021FA', ',student'), -('100371', '800001053', '2021FA', ',student'), -('100564', '800001053', '2021FA', ',student'), -('100565', '800001053', '2021FA', ',student'), -('100036', '800001058', '2021FA', ',student'), -('100039', '800001058', '2021FA', ',student'), -('100208', '800001058', '2021FA', ',student'), -('100291', '800001058', '2021FA', ',student'), -('100418', '800001058', '2021FA', ',student'), -('100049', '800001059', '2021FA', ',student'), -('100130', '800001059', '2021FA', ',student'), -('100187', '800001059', '2021FA', ',student'), -('100261', '800001059', '2021FA', ',student'), -('100487', '800001059', '2021FA', ',student'), -('100145', '800001061', '2021FA', ',student'), -('100245', '800001061', '2021FA', ',student'), -('100284', '800001061', '2021FA', ',student'), -('100588', '800001061', '2021FA', ',student'), -('100604', '800001061', '2021FA', ',student'), -('100015', '800001063', '2021FA', ',student'), -('100136', '800001063', '2021FA', ',student'), -('100226', '800001063', '2021FA', ',student'), -('100415', '800001063', '2021FA', ',student'), -('100594', '800001063', '2021FA', ',student'), -('100215', '800001064', '2021FA', ',student'), -('100238', '800001064', '2021FA', ',student'), -('100259', '800001064', '2021FA', ',student'), -('100440', '800001064', '2021FA', ',student'), -('100451', '800001064', '2021FA', ',student'), -('100036', '800001067', '2021FA', ',student'), -('100140', '800001067', '2021FA', ',student'), -('100234', '800001067', '2021FA', ',student'), -('100267', '800001067', '2021FA', ',student'), -('100375', '800001067', '2021FA', ',student'), -('100008', '800001070', '2021FA', ',student'), -('100066', '800001070', '2021FA', ',student'), -('100151', '800001070', '2021FA', ',student'), -('100198', '800001070', '2021FA', ',student'), -('100208', '800001070', '2021FA', ',student'), -('100141', '800001073', '2021FA', ',student'), -('100180', '800001073', '2021FA', ',student'), -('100337', '800001073', '2021FA', ',student'), -('100449', '800001073', '2021FA', ',student'), -('100523', '800001073', '2021FA', ',student'), -('100063', '800001074', '2021FA', ',student'), -('100554', '800001074', '2021FA', ',student'), -('100591', '800001074', '2021FA', ',student'), -('100601', '800001074', '2021FA', ',student'), -('100621', '800001074', '2021FA', ',student'), -('100001', '800001075', '2021FA', ',student'), -('100360', '800001075', '2021FA', ',student'), -('100452', '800001075', '2021FA', ',student'), -('100559', '800001075', '2021FA', ',student'), -('100618', '800001075', '2021FA', ',student'), -('100082', '800001076', '2021FA', ',student'), -('100093', '800001076', '2021FA', ',student'), -('100351', '800001076', '2021FA', ',student'), -('100454', '800001076', '2021FA', ',student'), -('100534', '800001076', '2021FA', ',student'), -('100037', '800001077', '2021FA', ',student'), -('100277', '800001077', '2021FA', ',student'), -('100296', '800001077', '2021FA', ',student'), -('100321', '800001077', '2021FA', ',student'), -('100540', '800001077', '2021FA', ',student'), -('100022', '800001078', '2021FA', ',student'), -('100030', '800001078', '2021FA', ',student'), -('100123', '800001078', '2021FA', ',student'), -('100259', '800001078', '2021FA', ',student'), -('100271', '800001078', '2021FA', ',student'), -('100122', '800001085', '2021FA', ',student'), -('100140', '800001085', '2021FA', ',student'), -('100346', '800001085', '2021FA', ',student'), -('100500', '800001085', '2021FA', ',student'), -('100563', '800001085', '2021FA', ',student'), -('100058', '800001090', '2021FA', ',student'), -('100109', '800001090', '2021FA', ',student'), -('100152', '800001090', '2021FA', ',student'), -('100181', '800001090', '2021FA', ',student'), -('100523', '800001090', '2021FA', ',student'), -('100119', '800001091', '2021FA', ',student'), -('100496', '800001091', '2021FA', ',student'), -('100557', '800001091', '2021FA', ',student'), -('100595', '800001091', '2021FA', ',student'), -('100616', '800001091', '2021FA', ',student'), -('100128', '800001092', '2021FA', ',student'), -('100236', '800001092', '2021FA', ',student'), -('100437', '800001092', '2021FA', ',student'), -('100555', '800001092', '2021FA', ',student'), -('100610', '800001092', '2021FA', ',student'), -('100150', '800001094', '2021FA', ',student'), -('100203', '800001094', '2021FA', ',student'), -('100214', '800001094', '2021FA', ',student'), -('100362', '800001094', '2021FA', ',student'), -('100528', '800001094', '2021FA', ',student'), -('100165', '800001095', '2021FA', ',student'), -('100291', '800001095', '2021FA', ',student'), -('100331', '800001095', '2021FA', ',student'), -('100407', '800001095', '2021FA', ',student'), -('100532', '800001095', '2021FA', ',student'), -('100046', '800001096', '2021FA', ',student'), -('100207', '800001096', '2021FA', ',student'), -('100357', '800001096', '2021FA', ',student'), -('100460', '800001096', '2021FA', ',student'), -('100499', '800001096', '2021FA', ',student'), -('100072', '800001098', '2021FA', ',student'), -('100085', '800001098', '2021FA', ',student'), -('100370', '800001098', '2021FA', ',student'), -('100462', '800001098', '2021FA', ',student'), -('100560', '800001098', '2021FA', ',student'), -('100003', '800001100', '2021FA', ',student'), -('100192', '800001100', '2021FA', ',student'), -('100315', '800001100', '2021FA', ',student'), -('100441', '800001100', '2021FA', ',student'), -('100565', '800001100', '2021FA', ',student'), -('100049', '800001102', '2021FA', ',student'), -('100241', '800001102', '2021FA', ',student'), -('100416', '800001102', '2021FA', ',student'), -('100423', '800001102', '2021FA', ',student'), -('100466', '800001102', '2021FA', ',student'), -('100057', '800001104', '2021FA', ',student'), -('100127', '800001104', '2021FA', ',student'), -('100225', '800001104', '2021FA', ',student'), -('100336', '800001104', '2021FA', ',student'), -('100356', '800001104', '2021FA', ',student'), -('100072', '800001106', '2021FA', ',student'), -('100164', '800001106', '2021FA', ',student'), -('100199', '800001106', '2021FA', ',student'), -('100226', '800001106', '2021FA', ',student'), -('100309', '800001106', '2021FA', ',student'), -('100028', '800001107', '2021FA', ',student'), -('100096', '800001107', '2021FA', ',student'), -('100129', '800001107', '2021FA', ',student'), -('100248', '800001107', '2021FA', ',student'), -('100331', '800001107', '2021FA', ',student'), -('100053', '800001110', '2021FA', ',student'), -('100290', '800001110', '2021FA', ',student'), -('100316', '800001110', '2021FA', ',student'), -('100327', '800001110', '2021FA', ',student'), -('100612', '800001110', '2021FA', ',student'), -('100066', '800001112', '2021FA', ',student'), -('100258', '800001112', '2021FA', ',student'), -('100474', '800001112', '2021FA', ',student'), -('100499', '800001112', '2021FA', ',student'), -('100537', '800001112', '2021FA', ',student'), -('100078', '800001113', '2021FA', ',student'), -('100247', '800001113', '2021FA', ',student'), -('100319', '800001113', '2021FA', ',student'), -('100355', '800001113', '2021FA', ',student'), -('100363', '800001113', '2021FA', ',student'), -('100053', '800001114', '2021FA', ',student'), -('100273', '800001114', '2021FA', ',student'), -('100358', '800001114', '2021FA', ',student'), -('100372', '800001114', '2021FA', ',student'), -('100429', '800001114', '2021FA', ',student'), -('100235', '800001116', '2021FA', ',student'), -('100333', '800001116', '2021FA', ',student'), -('100511', '800001116', '2021FA', ',student'), -('100513', '800001116', '2021FA', ',student'), -('100569', '800001116', '2021FA', ',student'), -('100019', '800001117', '2021FA', ',student'), -('100113', '800001117', '2021FA', ',student'), -('100197', '800001117', '2021FA', ',student'), -('100278', '800001117', '2021FA', ',student'), -('100424', '800001117', '2021FA', ',student'), -('100070', '800001118', '2021FA', ',student'), -('100179', '800001118', '2021FA', ',student'), -('100206', '800001118', '2021FA', ',student'), -('100258', '800001118', '2021FA', ',student'), -('100368', '800001118', '2021FA', ',student'), -('100034', '800001122', '2021FA', ',student'), -('100296', '800001122', '2021FA', ',student'), -('100345', '800001122', '2021FA', ',student'), -('100481', '800001122', '2021FA', ',student'), -('100599', '800001122', '2021FA', ',student'), -('100208', '800001123', '2021FA', ',student'), -('100295', '800001123', '2021FA', ',student'), -('100321', '800001123', '2021FA', ',student'), -('100330', '800001123', '2021FA', ',student'), -('100386', '800001123', '2021FA', ',student'), -('100278', '800001124', '2021FA', ',student'), -('100303', '800001124', '2021FA', ',student'), -('100360', '800001124', '2021FA', ',student'), -('100544', '800001124', '2021FA', ',student'), -('100625', '800001124', '2021FA', ',student'), -('100045', '800001127', '2021FA', ',student'), -('100088', '800001127', '2021FA', ',student'), -('100143', '800001127', '2021FA', ',student'), -('100389', '800001127', '2021FA', ',student'), -('100577', '800001127', '2021FA', ',student'), -('100044', '800001128', '2021FA', ',student'), -('100070', '800001128', '2021FA', ',student'), -('100255', '800001128', '2021FA', ',student'), -('100268', '800001128', '2021FA', ',student'), -('100292', '800001128', '2021FA', ',student'), -('100144', '800001129', '2021FA', ',student'), -('100216', '800001129', '2021FA', ',student'), -('100371', '800001129', '2021FA', ',student'), -('100464', '800001129', '2021FA', ',student'), -('100489', '800001129', '2021FA', ',student'), -('100214', '800001130', '2021FA', ',student'), -('100253', '800001130', '2021FA', ',student'), -('100292', '800001130', '2021FA', ',student'), -('100466', '800001130', '2021FA', ',student'), -('100616', '800001130', '2021FA', ',student'), -('100076', '800001131', '2021FA', ',student'), -('100162', '800001131', '2021FA', ',student'), -('100335', '800001131', '2021FA', ',student'), -('100364', '800001131', '2021FA', ',student'), -('100506', '800001131', '2021FA', ',student'), -('100123', '800001132', '2021FA', ',student'), -('100240', '800001132', '2021FA', ',student'), -('100288', '800001132', '2021FA', ',student'), -('100439', '800001132', '2021FA', ',student'), -('100551', '800001132', '2021FA', ',student'), -('100072', '800001133', '2021FA', ',student'), -('100096', '800001133', '2021FA', ',student'), -('100097', '800001133', '2021FA', ',student'), -('100443', '800001133', '2021FA', ',student'), -('100573', '800001133', '2021FA', ',student'), -('100075', '800001135', '2021FA', ',student'), -('100087', '800001135', '2021FA', ',student'), -('100242', '800001135', '2021FA', ',student'), -('100456', '800001135', '2021FA', ',student'), -('100593', '800001135', '2021FA', ',student'), -('100061', '800001138', '2021FA', ',student'), -('100138', '800001138', '2021FA', ',student'), -('100169', '800001138', '2021FA', ',student'), -('100287', '800001138', '2021FA', ',student'), -('100453', '800001138', '2021FA', ',student'), -('100045', '800001140', '2021FA', ',student'), -('100221', '800001140', '2021FA', ',student'), -('100234', '800001140', '2021FA', ',student'), -('100285', '800001140', '2021FA', ',student'), -('100451', '800001140', '2021FA', ',student'), -('100184', '800001143', '2021FA', ',student'), -('100284', '800001143', '2021FA', ',student'), -('100328', '800001143', '2021FA', ',student'), -('100451', '800001143', '2021FA', ',student'), -('100506', '800001143', '2021FA', ',student'), -('100121', '800001144', '2021FA', ',student'), -('100140', '800001144', '2021FA', ',student'), -('100551', '800001144', '2021FA', ',student'), -('100577', '800001144', '2021FA', ',student'), -('100594', '800001144', '2021FA', ',student'), -('100141', '800001148', '2021FA', ',student'), -('100364', '800001148', '2021FA', ',student'), -('100482', '800001148', '2021FA', ',student'), -('100551', '800001148', '2021FA', ',student'), -('100581', '800001148', '2021FA', ',student'), -('100106', '800001149', '2021FA', ',student'), -('100108', '800001149', '2021FA', ',student'), -('100209', '800001149', '2021FA', ',student'), -('100331', '800001149', '2021FA', ',student'), -('100556', '800001149', '2021FA', ',student'), -('100031', '800001150', '2021FA', ',student'), -('100336', '800001150', '2021FA', ',student'), -('100420', '800001150', '2021FA', ',student'), -('100437', '800001150', '2021FA', ',student'), -('100485', '800001150', '2021FA', ',student'), -('100049', '800001153', '2021FA', ',student'), -('100132', '800001153', '2021FA', ',student'), -('100193', '800001153', '2021FA', ',student'), -('100477', '800001153', '2021FA', ',student'), -('100484', '800001153', '2021FA', ',student'), -('100101', '800001154', '2021FA', ',student'), -('100129', '800001154', '2021FA', ',student'), -('100168', '800001154', '2021FA', ',student'), -('100236', '800001154', '2021FA', ',student'), -('100486', '800001154', '2021FA', ',student'), -('100007', '800001156', '2021FA', ',student'), -('100159', '800001156', '2021FA', ',student'), -('100433', '800001156', '2021FA', ',student'), -('100509', '800001156', '2021FA', ',student'), -('100601', '800001156', '2021FA', ',student'), -('100002', '800001157', '2021FA', ',student'), -('100239', '800001157', '2021FA', ',student'), -('100350', '800001157', '2021FA', ',student'), -('100357', '800001157', '2021FA', ',student'), -('100446', '800001157', '2021FA', ',student'), -('100249', '800001159', '2021FA', ',student'), -('100436', '800001159', '2021FA', ',student'), -('100569', '800001159', '2021FA', ',student'), -('100592', '800001159', '2021FA', ',student'), -('100597', '800001159', '2021FA', ',student'), -('100308', '800001160', '2021FA', ',student'), -('100364', '800001160', '2021FA', ',student'), -('100390', '800001160', '2021FA', ',student'), -('100514', '800001160', '2021FA', ',student'), -('100541', '800001160', '2021FA', ',student'), -('100063', '800001164', '2021FA', ',student'), -('100243', '800001164', '2021FA', ',student'), -('100288', '800001164', '2021FA', ',student'), -('100331', '800001164', '2021FA', ',student'), -('100549', '800001164', '2021FA', ',student'), -('100077', '800001165', '2021FA', ',student'), -('100241', '800001165', '2021FA', ',student'), -('100265', '800001165', '2021FA', ',student'), -('100314', '800001165', '2021FA', ',student'), -('100399', '800001165', '2021FA', ',student'), -('100156', '800001166', '2021FA', ',student'), -('100185', '800001166', '2021FA', ',student'), -('100213', '800001166', '2021FA', ',student'), -('100381', '800001166', '2021FA', ',student'), -('100448', '800001166', '2021FA', ',student'), -('100251', '800001167', '2021FA', ',student'), -('100423', '800001167', '2021FA', ',student'), -('100466', '800001167', '2021FA', ',student'), -('100472', '800001167', '2021FA', ',student'), -('100614', '800001167', '2021FA', ',student'), -('100145', '800001168', '2021FA', ',student'), -('100403', '800001168', '2021FA', ',student'), -('100410', '800001168', '2021FA', ',student'), -('100430', '800001168', '2021FA', ',student'), -('100482', '800001168', '2021FA', ',student'), -('100033', '800001171', '2021FA', ',student'), -('100325', '800001171', '2021FA', ',student'), -('100335', '800001171', '2021FA', ',student'), -('100358', '800001171', '2021FA', ',student'), -('100482', '800001171', '2021FA', ',student'), -('100152', '800001172', '2021FA', ',student'), -('100340', '800001172', '2021FA', ',student'), -('100381', '800001172', '2021FA', ',student'), -('100531', '800001172', '2021FA', ',student'), -('100604', '800001172', '2021FA', ',student'), -('100010', '800001174', '2021FA', ',student'), -('100044', '800001174', '2021FA', ',student'), -('100050', '800001174', '2021FA', ',student'), -('100211', '800001174', '2021FA', ',student'), -('100534', '800001174', '2021FA', ',student'), -('100095', '800001176', '2021FA', ',student'), -('100189', '800001176', '2021FA', ',student'), -('100352', '800001176', '2021FA', ',student'), -('100462', '800001176', '2021FA', ',student'), -('100624', '800001176', '2021FA', ',student'), -('100073', '800001180', '2021FA', ',student'), -('100087', '800001180', '2021FA', ',student'), -('100135', '800001180', '2021FA', ',student'), -('100445', '800001180', '2021FA', ',student'), -('100612', '800001180', '2021FA', ',student'), -('100016', '800001181', '2021FA', ',student'), -('100206', '800001181', '2021FA', ',student'), -('100420', '800001181', '2021FA', ',student'), -('100482', '800001181', '2021FA', ',student'), -('100487', '800001181', '2021FA', ',student'), -('100040', '800001182', '2021FA', ',student'), -('100136', '800001182', '2021FA', ',student'), -('100437', '800001182', '2021FA', ',student'), -('100506', '800001182', '2021FA', ',student'), -('100512', '800001182', '2021FA', ',student'), -('100011', '800001183', '2021FA', ',student'), -('100100', '800001183', '2021FA', ',student'), -('100507', '800001183', '2021FA', ',student'), -('100539', '800001183', '2021FA', ',student'), -('100578', '800001183', '2021FA', ',student'), -('100077', '800001184', '2021FA', ',student'), -('100225', '800001184', '2021FA', ',student'), -('100267', '800001184', '2021FA', ',student'), -('100383', '800001184', '2021FA', ',student'), -('100514', '800001184', '2021FA', ',student'), -('100035', '800001185', '2021FA', ',student'), -('100178', '800001185', '2021FA', ',student'), -('100377', '800001185', '2021FA', ',student'), -('100478', '800001185', '2021FA', ',student'), -('100527', '800001185', '2021FA', ',student'), -('100137', '800001187', '2021FA', ',student'), -('100166', '800001187', '2021FA', ',student'), -('100260', '800001187', '2021FA', ',student'), -('100444', '800001187', '2021FA', ',student'), -('100496', '800001187', '2021FA', ',student'), -('100052', '800001189', '2021FA', ',student'), -('100074', '800001189', '2021FA', ',student'), -('100481', '800001189', '2021FA', ',student'), -('100510', '800001189', '2021FA', ',student'), -('100575', '800001189', '2021FA', ',student'), -('100028', '800001190', '2021FA', ',student'), -('100300', '800001190', '2021FA', ',student'), -('100441', '800001190', '2021FA', ',student'), -('100457', '800001190', '2021FA', ',student'), -('100557', '800001190', '2021FA', ',student'), -('100109', '800001192', '2021FA', ',student'), -('100132', '800001192', '2021FA', ',student'), -('100168', '800001192', '2021FA', ',student'), -('100246', '800001192', '2021FA', ',student'), -('100392', '800001192', '2021FA', ',student'), -('100085', '800001195', '2021FA', ',student'), -('100270', '800001195', '2021FA', ',student'), -('100289', '800001195', '2021FA', ',student'), -('100529', '800001195', '2021FA', ',student'), -('100625', '800001195', '2021FA', ',student'), -('100085', '800001198', '2021FA', ',student'), -('100233', '800001198', '2021FA', ',student'), -('100476', '800001198', '2021FA', ',student'), -('100576', '800001198', '2021FA', ',student'), -('100589', '800001198', '2021FA', ',student'), -('100011', '800001199', '2021FA', ',student'), -('100070', '800001199', '2021FA', ',student'), -('100319', '800001199', '2021FA', ',student'), -('100433', '800001199', '2021FA', ',student'), -('100517', '800001199', '2021FA', ',student'), -('100022', '800001200', '2021FA', ',student'), -('100067', '800001200', '2021FA', ',student'), -('100284', '800001200', '2021FA', ',student'), -('100364', '800001200', '2021FA', ',student'), -('100525', '800001200', '2021FA', ',student'), -('100017', '800001203', '2021FA', ',student'), -('100059', '800001203', '2021FA', ',student'), -('100132', '800001203', '2021FA', ',student'), -('100260', '800001203', '2021FA', ',student'), -('100561', '800001203', '2021FA', ',student'), -('100151', '800001205', '2021FA', ',student'), -('100182', '800001205', '2021FA', ',student'), -('100183', '800001205', '2021FA', ',student'), -('100277', '800001205', '2021FA', ',student'), -('100617', '800001205', '2021FA', ',student'), -('100056', '800001206', '2021FA', ',student'), -('100142', '800001206', '2021FA', ',student'), -('100226', '800001206', '2021FA', ',student'), -('100299', '800001206', '2021FA', ',student'), -('100526', '800001206', '2021FA', ',student'), -('100043', '800001207', '2021FA', ',student'), -('100142', '800001207', '2021FA', ',student'), -('100354', '800001207', '2021FA', ',student'), -('100398', '800001207', '2021FA', ',student'), -('100554', '800001207', '2021FA', ',student'), -('100141', '800001208', '2021FA', ',student'), -('100165', '800001208', '2021FA', ',student'), -('100324', '800001208', '2021FA', ',student'), -('100401', '800001208', '2021FA', ',student'), -('100547', '800001208', '2021FA', ',student'), -('100003', '800001209', '2021FA', ',student'), -('100046', '800001209', '2021FA', ',student'), -('100171', '800001209', '2021FA', ',student'), -('100315', '800001209', '2021FA', ',student'), -('100318', '800001209', '2021FA', ',student'), -('100166', '800001211', '2021FA', ',student'), -('100234', '800001211', '2021FA', ',student'), -('100347', '800001211', '2021FA', ',student'), -('100497', '800001211', '2021FA', ',student'), -('100525', '800001211', '2021FA', ',student'), -('100024', '800001213', '2021FA', ',student'), -('100098', '800001213', '2021FA', ',student'), -('100179', '800001213', '2021FA', ',student'), -('100205', '800001213', '2021FA', ',student'), -('100265', '800001213', '2021FA', ',student'), -('100212', '800001214', '2021FA', ',student'), -('100372', '800001214', '2021FA', ',student'), -('100430', '800001214', '2021FA', ',student'), -('100461', '800001214', '2021FA', ',student'), -('100509', '800001214', '2021FA', ',student'), -('100029', '800001216', '2021FA', ',student'), -('100208', '800001216', '2021FA', ',student'), -('100335', '800001216', '2021FA', ',student'), -('100363', '800001216', '2021FA', ',student'), -('100504', '800001216', '2021FA', ',student'), -('100258', '800001217', '2021FA', ',student'), -('100352', '800001217', '2021FA', ',student'), -('100371', '800001217', '2021FA', ',student'), -('100415', '800001217', '2021FA', ',student'), -('100614', '800001217', '2021FA', ',student'), -('100027', '800001220', '2021FA', ',student'), -('100130', '800001220', '2021FA', ',student'), -('100338', '800001220', '2021FA', ',student'), -('100396', '800001220', '2021FA', ',student'), -('100525', '800001220', '2021FA', ',student'), -('100269', '800001222', '2021FA', ',student'), -('100348', '800001222', '2021FA', ',student'), -('100470', '800001222', '2021FA', ',student'), -('100612', '800001222', '2021FA', ',student'), -('100619', '800001222', '2021FA', ',student'), -('100106', '800001225', '2021FA', ',student'), -('100257', '800001225', '2021FA', ',student'), -('100289', '800001225', '2021FA', ',student'), -('100395', '800001225', '2021FA', ',student'), -('100439', '800001225', '2021FA', ',student'), -('100105', '800001226', '2021FA', ',student'), -('100140', '800001226', '2021FA', ',student'), -('100146', '800001226', '2021FA', ',student'), -('100328', '800001226', '2021FA', ',student'), -('100422', '800001226', '2021FA', ',student'), -('100151', '800001229', '2021FA', ',student'), -('100197', '800001229', '2021FA', ',student'), -('100404', '800001229', '2021FA', ',student'), -('100454', '800001229', '2021FA', ',student'), -('100530', '800001229', '2021FA', ',student'), -('100109', '800001230', '2021FA', ',student'), -('100216', '800001230', '2021FA', ',student'), -('100226', '800001230', '2021FA', ',student'), -('100474', '800001230', '2021FA', ',student'), -('100603', '800001230', '2021FA', ',student'), -('100085', '800001231', '2021FA', ',student'), -('100114', '800001231', '2021FA', ',student'), -('100216', '800001231', '2021FA', ',student'), -('100398', '800001231', '2021FA', ',student'), -('100491', '800001231', '2021FA', ',student'), -('100060', '800001232', '2021FA', ',student'), -('100079', '800001232', '2021FA', ',student'), -('100181', '800001232', '2021FA', ',student'), -('100253', '800001232', '2021FA', ',student'), -('100566', '800001232', '2021FA', ',student'), -('100108', '800001233', '2021FA', ',student'), -('100258', '800001233', '2021FA', ',student'), -('100260', '800001233', '2021FA', ',student'), -('100308', '800001233', '2021FA', ',student'), -('100528', '800001233', '2021FA', ',student'), -('100008', '800001234', '2021FA', ',student'), -('100017', '800001234', '2021FA', ',student'), -('100036', '800001234', '2021FA', ',student'), -('100234', '800001234', '2021FA', ',student'), -('100581', '800001234', '2021FA', ',student'), -('100325', '800001238', '2021FA', ',student'), -('100436', '800001238', '2021FA', ',student'), -('100454', '800001238', '2021FA', ',student'), -('100457', '800001238', '2021FA', ',student'), -('100571', '800001238', '2021FA', ',student'), -('100087', '800001239', '2021FA', ',student'), -('100106', '800001239', '2021FA', ',student'), -('100384', '800001239', '2021FA', ',student'), -('100438', '800001239', '2021FA', ',student'), -('100492', '800001239', '2021FA', ',student'), -('100184', '800001240', '2021FA', ',student'), -('100503', '800001240', '2021FA', ',student'), -('100537', '800001240', '2021FA', ',student'), -('100541', '800001240', '2021FA', ',student'), -('100552', '800001240', '2021FA', ',student'), -('100048', '800001244', '2021FA', ',student'), -('100384', '800001244', '2021FA', ',student'), -('100414', '800001244', '2021FA', ',student'), -('100430', '800001244', '2021FA', ',student'), -('100621', '800001244', '2021FA', ',student'), -('100250', '800001245', '2021FA', ',student'), -('100325', '800001245', '2021FA', ',student'), -('100348', '800001245', '2021FA', ',student'), -('100361', '800001245', '2021FA', ',student'), -('100583', '800001245', '2021FA', ',student'), -('100285', '800001246', '2021FA', ',student'), -('100362', '800001246', '2021FA', ',student'), -('100490', '800001246', '2021FA', ',student'), -('100495', '800001246', '2021FA', ',student'), -('100620', '800001246', '2021FA', ',student'), -('100039', '800001248', '2021FA', ',student'), -('100109', '800001248', '2021FA', ',student'), -('100130', '800001248', '2021FA', ',student'), -('100254', '800001248', '2021FA', ',student'), -('100279', '800001248', '2021FA', ',student'), -('100092', '800001250', '2021FA', ',student'), -('100347', '800001250', '2021FA', ',student'), -('100356', '800001250', '2021FA', ',student'), -('100426', '800001250', '2021FA', ',student'), -('100616', '800001250', '2021FA', ',student'), -('100254', '800001251', '2021FA', ',student'), -('100317', '800001251', '2021FA', ',student'), -('100422', '800001251', '2021FA', ',student'), -('100438', '800001251', '2021FA', ',student'), -('100460', '800001251', '2021FA', ',student'), -('100065', '800001252', '2021FA', ',student'), -('100109', '800001252', '2021FA', ',student'), -('100135', '800001252', '2021FA', ',student'), -('100476', '800001252', '2021FA', ',student'), -('100552', '800001252', '2021FA', ',student'), -('100093', '800001257', '2021FA', ',student'), -('100161', '800001257', '2021FA', ',student'), -('100468', '800001257', '2021FA', ',student'), -('100582', '800001257', '2021FA', ',student'), -('100595', '800001257', '2021FA', ',student'), -('100272', '800001258', '2021FA', ',student'), -('100273', '800001258', '2021FA', ',student'), -('100391', '800001258', '2021FA', ',student'), -('100418', '800001258', '2021FA', ',student'), -('100506', '800001258', '2021FA', ',student'), -('100046', '800001260', '2021FA', ',student'), -('100168', '800001260', '2021FA', ',student'), -('100354', '800001260', '2021FA', ',student'), -('100454', '800001260', '2021FA', ',student'), -('100596', '800001260', '2021FA', ',student'), -('100081', '800001262', '2021FA', ',student'), -('100141', '800001262', '2021FA', ',student'), -('100225', '800001262', '2021FA', ',student'), -('100320', '800001262', '2021FA', ',student'), -('100463', '800001262', '2021FA', ',student'), -('100013', '800001270', '2021FA', ',student'), -('100055', '800001270', '2021FA', ',student'), -('100145', '800001270', '2021FA', ',student'), -('100465', '800001270', '2021FA', ',student'), -('100563', '800001270', '2021FA', ',student'), -('100147', '800001271', '2021FA', ',student'), -('100204', '800001271', '2021FA', ',student'), -('100223', '800001271', '2021FA', ',student'), -('100238', '800001271', '2021FA', ',student'), -('100334', '800001271', '2021FA', ',student'), -('100165', '800001272', '2021FA', ',student'), -('100249', '800001272', '2021FA', ',student'), -('100323', '800001272', '2021FA', ',student'), -('100389', '800001272', '2021FA', ',student'), -('100507', '800001272', '2021FA', ',student'), -('100147', '800001273', '2021FA', ',student'), -('100258', '800001273', '2021FA', ',student'), -('100369', '800001273', '2021FA', ',student'), -('100495', '800001273', '2021FA', ',student'), -('100534', '800001273', '2021FA', ',student'), -('100055', '800001275', '2021FA', ',student'), -('100068', '800001275', '2021FA', ',student'), -('100238', '800001275', '2021FA', ',student'), -('100369', '800001275', '2021FA', ',student'), -('100623', '800001275', '2021FA', ',student'), -('100053', '800001276', '2021FA', ',student'), -('100075', '800001276', '2021FA', ',student'), -('100277', '800001276', '2021FA', ',student'), -('100287', '800001276', '2021FA', ',student'), -('100468', '800001276', '2021FA', ',student'), -('100138', '800001277', '2021FA', ',student'), -('100281', '800001277', '2021FA', ',student'), -('100397', '800001277', '2021FA', ',student'), -('100559', '800001277', '2021FA', ',student'), -('100609', '800001277', '2021FA', ',student'), -('100024', '800001279', '2021FA', ',student'), -('100295', '800001279', '2021FA', ',student'), -('100383', '800001279', '2021FA', ',student'), -('100580', '800001279', '2021FA', ',student'), -('100604', '800001279', '2021FA', ',student'), -('100025', '800001280', '2021FA', ',student'), -('100029', '800001280', '2021FA', ',student'), -('100175', '800001280', '2021FA', ',student'), -('100312', '800001280', '2021FA', ',student'), -('100606', '800001280', '2021FA', ',student'), -('100180', '800001282', '2021FA', ',student'), -('100191', '800001282', '2021FA', ',student'), -('100377', '800001282', '2021FA', ',student'), -('100447', '800001282', '2021FA', ',student'), -('100561', '800001282', '2021FA', ',student'), -('100112', '800001283', '2021FA', ',student'), -('100124', '800001283', '2021FA', ',student'), -('100174', '800001283', '2021FA', ',student'), -('100588', '800001283', '2021FA', ',student'), -('100605', '800001283', '2021FA', ',student'), -('100031', '800001285', '2021FA', ',student'), -('100228', '800001285', '2021FA', ',student'), -('100266', '800001285', '2021FA', ',student'), -('100353', '800001285', '2021FA', ',student'), -('100424', '800001285', '2021FA', ',student'), -('100220', '800001287', '2021FA', ',student'), -('100250', '800001287', '2021FA', ',student'), -('100364', '800001287', '2021FA', ',student'), -('100446', '800001287', '2021FA', ',student'), -('100603', '800001287', '2021FA', ',student'), -('100097', '800001290', '2021FA', ',student'), -('100262', '800001290', '2021FA', ',student'), -('100485', '800001290', '2021FA', ',student'), -('100509', '800001290', '2021FA', ',student'), -('100576', '800001290', '2021FA', ',student'), -('100054', '800001291', '2021FA', ',student'), -('100061', '800001291', '2021FA', ',student'), -('100063', '800001291', '2021FA', ',student'), -('100280', '800001291', '2021FA', ',student'), -('100541', '800001291', '2021FA', ',student'), -('100057', '800001296', '2021FA', ',student'), -('100076', '800001296', '2021FA', ',student'), -('100094', '800001296', '2021FA', ',student'), -('100145', '800001296', '2021FA', ',student'), -('100594', '800001296', '2021FA', ',student'), -('100078', '800001303', '2021FA', ',student'), -('100093', '800001303', '2021FA', ',student'), -('100329', '800001303', '2021FA', ',student'), -('100407', '800001303', '2021FA', ',student'), -('100473', '800001303', '2021FA', ',student'), -('100027', '800001304', '2021FA', ',student'), -('100171', '800001304', '2021FA', ',student'), -('100276', '800001304', '2021FA', ',student'), -('100281', '800001304', '2021FA', ',student'), -('100286', '800001304', '2021FA', ',student'), -('100025', '800001305', '2021FA', ',student'), -('100105', '800001305', '2021FA', ',student'), -('100171', '800001305', '2021FA', ',student'), -('100279', '800001305', '2021FA', ',student'), -('100581', '800001305', '2021FA', ',student'), -('100050', '800001306', '2021FA', ',student'), -('100267', '800001306', '2021FA', ',student'), -('100268', '800001306', '2021FA', ',student'), -('100412', '800001306', '2021FA', ',student'), -('100514', '800001306', '2021FA', ',student'), -('100119', '800001308', '2021FA', ',student'), -('100142', '800001308', '2021FA', ',student'), -('100352', '800001308', '2021FA', ',student'), -('100405', '800001308', '2021FA', ',student'), -('100624', '800001308', '2021FA', ',student'), -('100034', '800001309', '2021FA', ',student'), -('100124', '800001309', '2021FA', ',student'), -('100420', '800001309', '2021FA', ',student'), -('100500', '800001309', '2021FA', ',student'), -('100572', '800001309', '2021FA', ',student'), -('100061', '800001310', '2021FA', ',student'), -('100214', '800001310', '2021FA', ',student'), -('100314', '800001310', '2021FA', ',student'), -('100546', '800001310', '2021FA', ',student'), -('100567', '800001310', '2021FA', ',student'), -('100024', '800001311', '2021FA', ',student'), -('100162', '800001311', '2021FA', ',student'), -('100383', '800001311', '2021FA', ',student'), -('100423', '800001311', '2021FA', ',student'), -('100508', '800001311', '2021FA', ',student'), -('100064', '800001313', '2021FA', ',student'), -('100483', '800001313', '2021FA', ',student'), -('100485', '800001313', '2021FA', ',student'), -('100546', '800001313', '2021FA', ',student'), -('100587', '800001313', '2021FA', ',student'), -('100124', '800001314', '2021FA', ',student'), -('100155', '800001314', '2021FA', ',student'), -('100275', '800001314', '2021FA', ',student'), -('100345', '800001314', '2021FA', ',student'), -('100589', '800001314', '2021FA', ',student'), -('100020', '800001315', '2021FA', ',student'), -('100040', '800001315', '2021FA', ',student'), -('100148', '800001315', '2021FA', ',student'), -('100336', '800001315', '2021FA', ',student'), -('100414', '800001315', '2021FA', ',student'), -('100055', '800001316', '2021FA', ',student'), -('100111', '800001316', '2021FA', ',student'), -('100132', '800001316', '2021FA', ',student'), -('100146', '800001316', '2021FA', ',student'), -('100605', '800001316', '2021FA', ',student'), -('100140', '800001318', '2021FA', ',student'), -('100167', '800001318', '2021FA', ',student'), -('100443', '800001318', '2021FA', ',student'), -('100447', '800001318', '2021FA', ',student'), -('100519', '800001318', '2021FA', ',student'), -('100036', '800001322', '2021FA', ',student'), -('100110', '800001322', '2021FA', ',student'), -('100187', '800001322', '2021FA', ',student'), -('100448', '800001322', '2021FA', ',student'), -('100526', '800001322', '2021FA', ',student'), -('100185', '800001323', '2021FA', ',student'), -('100248', '800001323', '2021FA', ',student'), -('100282', '800001323', '2021FA', ',student'), -('100328', '800001323', '2021FA', ',student'), -('100621', '800001323', '2021FA', ',student'), -('100097', '800001324', '2021FA', ',student'), -('100238', '800001324', '2021FA', ',student'), -('100276', '800001324', '2021FA', ',student'), -('100511', '800001324', '2021FA', ',student'), -('100548', '800001324', '2021FA', ',student'), -('100155', '800001325', '2021FA', ',student'), -('100284', '800001325', '2021FA', ',student'), -('100349', '800001325', '2021FA', ',student'), -('100381', '800001325', '2021FA', ',student'), -('100567', '800001325', '2021FA', ',student'), -('100054', '800001326', '2021FA', ',student'), -('100062', '800001326', '2021FA', ',student'), -('100219', '800001326', '2021FA', ',student'), -('100319', '800001326', '2021FA', ',student'), -('100322', '800001326', '2021FA', ',student'), -('100000', '800001329', '2021FA', ',student'), -('100169', '800001329', '2021FA', ',student'), -('100294', '800001329', '2021FA', ',student'), -('100474', '800001329', '2021FA', ',student'), -('100530', '800001329', '2021FA', ',student'), -('100076', '800001330', '2021FA', ',student'), -('100101', '800001330', '2021FA', ',student'), -('100145', '800001330', '2021FA', ',student'), -('100226', '800001330', '2021FA', ',student'), -('100594', '800001330', '2021FA', ',student'), -('100034', '800001332', '2021FA', ',student'), -('100144', '800001332', '2021FA', ',student'), -('100181', '800001332', '2021FA', ',student'), -('100232', '800001332', '2021FA', ',student'), -('100614', '800001332', '2021FA', ',student'), -('100213', '800001334', '2021FA', ',student'), -('100323', '800001334', '2021FA', ',student'), -('100454', '800001334', '2021FA', ',student'), -('100542', '800001334', '2021FA', ',student'), -('100604', '800001334', '2021FA', ',student'), -('100037', '800001337', '2021FA', ',student'), -('100103', '800001337', '2021FA', ',student'), -('100185', '800001337', '2021FA', ',student'), -('100209', '800001337', '2021FA', ',student'), -('100464', '800001337', '2021FA', ',student'), -('100358', '800001338', '2021FA', ',student'), -('100366', '800001338', '2021FA', ',student'), -('100502', '800001338', '2021FA', ',student'), -('100514', '800001338', '2021FA', ',student'), -('100596', '800001338', '2021FA', ',student'), -('100042', '800001339', '2021FA', ',student'), -('100281', '800001339', '2021FA', ',student'), -('100324', '800001339', '2021FA', ',student'), -('100514', '800001339', '2021FA', ',student'), -('100534', '800001339', '2021FA', ',student'), -('100129', '800001341', '2021FA', ',student'), -('100210', '800001341', '2021FA', ',student'), -('100301', '800001341', '2021FA', ',student'), -('100495', '800001341', '2021FA', ',student'), -('100610', '800001341', '2021FA', ',student'), -('100050', '800001342', '2021FA', ',student'), -('100097', '800001342', '2021FA', ',student'), -('100112', '800001342', '2021FA', ',student'), -('100360', '800001342', '2021FA', ',student'), -('100509', '800001342', '2021FA', ',student'), -('100018', '800001343', '2021FA', ',student'), -('100109', '800001343', '2021FA', ',student'), -('100296', '800001343', '2021FA', ',student'), -('100466', '800001343', '2021FA', ',student'), -('100592', '800001343', '2021FA', ',student'), -('100108', '800001345', '2021FA', ',student'), -('100234', '800001345', '2021FA', ',student'), -('100305', '800001345', '2021FA', ',student'), -('100424', '800001345', '2021FA', ',student'), -('100610', '800001345', '2021FA', ',student'), -('100036', '800001348', '2021FA', ',student'), -('100131', '800001348', '2021FA', ',student'), -('100255', '800001348', '2021FA', ',student'), -('100425', '800001348', '2021FA', ',student'), -('100517', '800001348', '2021FA', ',student'), -('100148', '800001350', '2021FA', ',student'), -('100210', '800001350', '2021FA', ',student'), -('100289', '800001350', '2021FA', ',student'), -('100372', '800001350', '2021FA', ',student'), -('100561', '800001350', '2021FA', ',student'), -('100121', '800001351', '2021FA', ',student'), -('100137', '800001351', '2021FA', ',student'), -('100458', '800001351', '2021FA', ',student'), -('100519', '800001351', '2021FA', ',student'), -('100572', '800001351', '2021FA', ',student'), -('100008', '800001354', '2021FA', ',student'), -('100107', '800001354', '2021FA', ',student'), -('100416', '800001354', '2021FA', ',student'), -('100538', '800001354', '2021FA', ',student'), -('100555', '800001354', '2021FA', ',student'), -('100096', '800001358', '2021FA', ',student'), -('100287', '800001358', '2021FA', ',student'), -('100314', '800001358', '2021FA', ',student'), -('100322', '800001358', '2021FA', ',student'), -('100600', '800001358', '2021FA', ',student'), -('100088', '800001360', '2021FA', ',student'), -('100231', '800001360', '2021FA', ',student'), -('100252', '800001360', '2021FA', ',student'), -('100469', '800001360', '2021FA', ',student'), -('100589', '800001360', '2021FA', ',student'), -('100085', '800001363', '2021FA', ',student'), -('100098', '800001363', '2021FA', ',student'), -('100312', '800001363', '2021FA', ',student'), -('100359', '800001363', '2021FA', ',student'), -('100423', '800001363', '2021FA', ',student'), -('100022', '800001367', '2021FA', ',student'), -('100095', '800001367', '2021FA', ',student'), -('100207', '800001367', '2021FA', ',student'), -('100433', '800001367', '2021FA', ',student'), -('100478', '800001367', '2021FA', ',student'), -('100049', '800001369', '2021FA', ',student'), -('100196', '800001369', '2021FA', ',student'), -('100300', '800001369', '2021FA', ',student'), -('100455', '800001369', '2021FA', ',student'), -('100517', '800001369', '2021FA', ',student'), -('100157', '800001370', '2021FA', ',student'), -('100279', '800001370', '2021FA', ',student'), -('100506', '800001370', '2021FA', ',student'), -('100513', '800001370', '2021FA', ',student'), -('100535', '800001370', '2021FA', ',student'), -('100121', '800001371', '2021FA', ',student'), -('100128', '800001371', '2021FA', ',student'), -('100290', '800001371', '2021FA', ',student'), -('100430', '800001371', '2021FA', ',student'), -('100614', '800001371', '2021FA', ',student'), -('100014', '800001372', '2021FA', ',student'), -('100198', '800001372', '2021FA', ',student'), -('100247', '800001372', '2021FA', ',student'), -('100304', '800001372', '2021FA', ',student'), -('100409', '800001372', '2021FA', ',student'), -('100133', '800001373', '2021FA', ',student'), -('100261', '800001373', '2021FA', ',student'), -('100264', '800001373', '2021FA', ',student'), -('100459', '800001373', '2021FA', ',student'), -('100473', '800001373', '2021FA', ',student'), -('100088', '800001374', '2021FA', ',student'), -('100260', '800001374', '2021FA', ',student'), -('100339', '800001374', '2021FA', ',student'), -('100498', '800001374', '2021FA', ',student'), -('100525', '800001374', '2021FA', ',student'), -('100313', '800001375', '2021FA', ',student'), -('100343', '800001375', '2021FA', ',student'), -('100427', '800001375', '2021FA', ',student'), -('100604', '800001375', '2021FA', ',student'), -('100607', '800001375', '2021FA', ',student'), -('100009', '800001377', '2021FA', ',student'), -('100010', '800001377', '2021FA', ',student'), -('100155', '800001377', '2021FA', ',student'), -('100194', '800001377', '2021FA', ',student'), -('100319', '800001377', '2021FA', ',student'), -('100044', '800001378', '2021FA', ',student'), -('100152', '800001378', '2021FA', ',student'), -('100185', '800001378', '2021FA', ',student'), -('100316', '800001378', '2021FA', ',student'), -('100528', '800001378', '2021FA', ',student'), -('100022', '800001379', '2021FA', ',student'), -('100255', '800001379', '2021FA', ',student'), -('100377', '800001379', '2021FA', ',student'), -('100424', '800001379', '2021FA', ',student'), -('100465', '800001379', '2021FA', ',student'), -('100108', '800001381', '2021FA', ',student'), -('100127', '800001381', '2021FA', ',student'), -('100246', '800001381', '2021FA', ',student'), -('100339', '800001381', '2021FA', ',student'), -('100587', '800001381', '2021FA', ',student'), -('100092', '800001383', '2021FA', ',student'), -('100179', '800001383', '2021FA', ',student'), -('100276', '800001383', '2021FA', ',student'), -('100285', '800001383', '2021FA', ',student'), -('100603', '800001383', '2021FA', ',student'), -('100185', '800001393', '2021FA', ',student'), -('100203', '800001393', '2021FA', ',student'), -('100230', '800001393', '2021FA', ',student'), -('100358', '800001393', '2021FA', ',student'), -('100529', '800001393', '2021FA', ',student'), -('100227', '800001395', '2021FA', ',student'), -('100323', '800001395', '2021FA', ',student'), -('100405', '800001395', '2021FA', ',student'), -('100419', '800001395', '2021FA', ',student'), -('100520', '800001395', '2021FA', ',student'), -('100027', '800001396', '2021FA', ',student'), -('100094', '800001396', '2021FA', ',student'), -('100442', '800001396', '2021FA', ',student'), -('100445', '800001396', '2021FA', ',student'), -('100525', '800001396', '2021FA', ',student'), -('100211', '800001397', '2021FA', ',student'), -('100413', '800001397', '2021FA', ',student'), -('100428', '800001397', '2021FA', ',student'), -('100553', '800001397', '2021FA', ',student'), -('100591', '800001397', '2021FA', ',student'), -('100025', '800001399', '2021FA', ',student'), -('100127', '800001399', '2021FA', ',student'), -('100324', '800001399', '2021FA', ',student'), -('100572', '800001399', '2021FA', ',student'), -('100614', '800001399', '2021FA', ',student'), -('100078', '800001400', '2021FA', ',student'), -('100129', '800001400', '2021FA', ',student'), -('100206', '800001400', '2021FA', ',student'), -('100438', '800001400', '2021FA', ',student'), -('100561', '800001400', '2021FA', ',student'), -('100063', '800001401', '2021FA', ',student'), -('100216', '800001401', '2021FA', ',student'), -('100275', '800001401', '2021FA', ',student'), -('100586', '800001401', '2021FA', ',student'), -('100619', '800001401', '2021FA', ',student'), -('100048', '800001402', '2021FA', ',student'), -('100187', '800001402', '2021FA', ',student'), -('100402', '800001402', '2021FA', ',student'), -('100597', '800001402', '2021FA', ',student'), -('100616', '800001402', '2021FA', ',student'), -('100007', '800001407', '2021FA', ',student'), -('100291', '800001407', '2021FA', ',student'), -('100326', '800001407', '2021FA', ',student'), -('100409', '800001407', '2021FA', ',student'), -('100570', '800001407', '2021FA', ',student'), -('100068', '800001409', '2021FA', ',student'), -('100132', '800001409', '2021FA', ',student'), -('100173', '800001409', '2021FA', ',student'), -('100348', '800001409', '2021FA', ',student'), -('100618', '800001409', '2021FA', ',student'), -('100017', '800001410', '2021FA', ',student'), -('100311', '800001410', '2021FA', ',student'), -('100373', '800001410', '2021FA', ',student'), -('100421', '800001410', '2021FA', ',student'), -('100577', '800001410', '2021FA', ',student'), -('100199', '800001412', '2021FA', ',student'), -('100222', '800001412', '2021FA', ',student'), -('100450', '800001412', '2021FA', ',student'), -('100538', '800001412', '2021FA', ',student'), -('100542', '800001412', '2021FA', ',student'), -('100276', '800001414', '2021FA', ',student'), -('100307', '800001414', '2021FA', ',student'), -('100406', '800001414', '2021FA', ',student'), -('100425', '800001414', '2021FA', ',student'), -('100534', '800001414', '2021FA', ',student'), -('100065', '800001416', '2021FA', ',student'), -('100253', '800001416', '2021FA', ',student'), -('100484', '800001416', '2021FA', ',student'), -('100501', '800001416', '2021FA', ',student'), -('100526', '800001416', '2021FA', ',student'), -('100039', '800001418', '2021FA', ',student'), -('100216', '800001418', '2021FA', ',student'), -('100278', '800001418', '2021FA', ',student'), -('100312', '800001418', '2021FA', ',student'), -('100319', '800001418', '2021FA', ',student'), -('100223', '800001420', '2021FA', ',student'), -('100340', '800001420', '2021FA', ',student'), -('100421', '800001420', '2021FA', ',student'), -('100480', '800001420', '2021FA', ',student'), -('100520', '800001420', '2021FA', ',student'), -('100374', '800001421', '2021FA', ',student'), -('100435', '800001421', '2021FA', ',student'), -('100459', '800001421', '2021FA', ',student'), -('100542', '800001421', '2021FA', ',student'), -('100616', '800001421', '2021FA', ',student'), -('100172', '800001422', '2021FA', ',student'), -('100311', '800001422', '2021FA', ',student'), -('100408', '800001422', '2021FA', ',student'), -('100601', '800001422', '2021FA', ',student'), -('100603', '800001422', '2021FA', ',student'), -('100077', '800001424', '2021FA', ',student'), -('100140', '800001424', '2021FA', ',student'), -('100315', '800001424', '2021FA', ',student'), -('100345', '800001424', '2021FA', ',student'), -('100487', '800001424', '2021FA', ',student'), -('100029', '800001426', '2021FA', ',student'), -('100043', '800001426', '2021FA', ',student'), -('100076', '800001426', '2021FA', ',student'), -('100310', '800001426', '2021FA', ',student'), -('100623', '800001426', '2021FA', ',student'), -('100062', '800001428', '2021FA', ',student'), -('100153', '800001428', '2021FA', ',student'), -('100346', '800001428', '2021FA', ',student'), -('100453', '800001428', '2021FA', ',student'), -('100579', '800001428', '2021FA', ',student'), -('100030', '800001429', '2021FA', ',student'), -('100065', '800001429', '2021FA', ',student'), -('100224', '800001429', '2021FA', ',student'), -('100233', '800001429', '2021FA', ',student'), -('100399', '800001429', '2021FA', ',student'), -('100082', '800001431', '2021FA', ',student'), -('100369', '800001431', '2021FA', ',student'), -('100377', '800001431', '2021FA', ',student'), -('100427', '800001431', '2021FA', ',student'), -('100468', '800001431', '2021FA', ',student'), -('100261', '800001432', '2021FA', ',student'), -('100277', '800001432', '2021FA', ',student'), -('100299', '800001432', '2021FA', ',student'), -('100399', '800001432', '2021FA', ',student'), -('100570', '800001432', '2021FA', ',student'), -('100160', '800001433', '2021FA', ',student'), -('100200', '800001433', '2021FA', ',student'), -('100228', '800001433', '2021FA', ',student'), -('100464', '800001433', '2021FA', ',student'), -('100518', '800001433', '2021FA', ',student'), -('100086', '800001434', '2021FA', ',student'), -('100185', '800001434', '2021FA', ',student'), -('100195', '800001434', '2021FA', ',student'), -('100259', '800001434', '2021FA', ',student'), -('100521', '800001434', '2021FA', ',student'), -('100274', '800001436', '2021FA', ',student'), -('100421', '800001436', '2021FA', ',student'), -('100457', '800001436', '2021FA', ',student'), -('100585', '800001436', '2021FA', ',student'), -('100598', '800001436', '2021FA', ',student'), -('100192', '800001439', '2021FA', ',student'), -('100231', '800001439', '2021FA', ',student'), -('100305', '800001439', '2021FA', ',student'), -('100339', '800001439', '2021FA', ',student'), -('100423', '800001439', '2021FA', ',student'), -('100069', '800001440', '2021FA', ',student'), -('100223', '800001440', '2021FA', ',student'), -('100355', '800001440', '2021FA', ',student'), -('100467', '800001440', '2021FA', ',student'), -('100604', '800001440', '2021FA', ',student'), -('100143', '800001442', '2021FA', ',student'), -('100259', '800001442', '2021FA', ',student'), -('100447', '800001442', '2021FA', ',student'), -('100531', '800001442', '2021FA', ',student'), -('100618', '800001442', '2021FA', ',student'), -('100172', '800001443', '2021FA', ',student'), -('100390', '800001443', '2021FA', ',student'), -('100452', '800001443', '2021FA', ',student'), -('100539', '800001443', '2021FA', ',student'), -('100549', '800001443', '2021FA', ',student'), -('100063', '800001444', '2021FA', ',student'), -('100195', '800001444', '2021FA', ',student'), -('100251', '800001444', '2021FA', ',student'), -('100304', '800001444', '2021FA', ',student'), -('100582', '800001444', '2021FA', ',student'), -('100196', '800001447', '2021FA', ',student'), -('100314', '800001447', '2021FA', ',student'), -('100398', '800001447', '2021FA', ',student'), -('100424', '800001447', '2021FA', ',student'), -('100458', '800001447', '2021FA', ',student'), -('100089', '800001450', '2021FA', ',student'), -('100384', '800001450', '2021FA', ',student'), -('100459', '800001450', '2021FA', ',student'), -('100473', '800001450', '2021FA', ',student'), -('100584', '800001450', '2021FA', ',student'), -('100076', '800001451', '2021FA', ',student'), -('100289', '800001451', '2021FA', ',student'), -('100352', '800001451', '2021FA', ',student'), -('100512', '800001451', '2021FA', ',student'), -('100598', '800001451', '2021FA', ',student'), -('100008', '800001454', '2021FA', ',student'), -('100365', '800001454', '2021FA', ',student'), -('100414', '800001454', '2021FA', ',student'), -('100533', '800001454', '2021FA', ',student'), -('100557', '800001454', '2021FA', ',student'), -('100158', '800001462', '2021FA', ',student'), -('100219', '800001462', '2021FA', ',student'), -('100290', '800001462', '2021FA', ',student'), -('100333', '800001462', '2021FA', ',student'), -('100548', '800001462', '2021FA', ',student'), -('100139', '800001463', '2021FA', ',student'), -('100158', '800001463', '2021FA', ',student'), -('100268', '800001463', '2021FA', ',student'), -('100375', '800001463', '2021FA', ',student'), -('100403', '800001463', '2021FA', ',student'), -('100064', '800001464', '2021FA', ',student'), -('100190', '800001464', '2021FA', ',student'), -('100398', '800001464', '2021FA', ',student'), -('100469', '800001464', '2021FA', ',student'), -('100497', '800001464', '2021FA', ',student'), -('100212', '800001466', '2021FA', ',student'), -('100292', '800001466', '2021FA', ',student'), -('100347', '800001466', '2021FA', ',student'), -('100582', '800001466', '2021FA', ',student'), -('100595', '800001466', '2021FA', ',student'), -('100099', '800001468', '2021FA', ',student'), -('100192', '800001468', '2021FA', ',student'), -('100339', '800001468', '2021FA', ',student'), -('100423', '800001468', '2021FA', ',student'), -('100456', '800001468', '2021FA', ',student'), -('100000', '800001469', '2021FA', ',student'), -('100118', '800001469', '2021FA', ',student'), -('100221', '800001469', '2021FA', ',student'), -('100455', '800001469', '2021FA', ',student'), -('100505', '800001469', '2021FA', ',student'), -('100003', '800001471', '2021FA', ',student'), -('100404', '800001471', '2021FA', ',student'), -('100557', '800001471', '2021FA', ',student'), -('100578', '800001471', '2021FA', ',student'), -('100607', '800001471', '2021FA', ',student'), -('100007', '800001473', '2021FA', ',student'), -('100382', '800001473', '2021FA', ',student'), -('100395', '800001473', '2021FA', ',student'), -('100483', '800001473', '2021FA', ',student'), -('100575', '800001473', '2021FA', ',student'), -('100038', '800001474', '2021FA', ',student'), -('100107', '800001474', '2021FA', ',student'), -('100336', '800001474', '2021FA', ',student'), -('100417', '800001474', '2021FA', ',student'), -('100541', '800001474', '2021FA', ',student'), -('100088', '800001475', '2021FA', ',student'), -('100212', '800001475', '2021FA', ',student'), -('100250', '800001475', '2021FA', ',student'), -('100266', '800001475', '2021FA', ',student'), -('100615', '800001475', '2021FA', ',student'), -('100133', '800001476', '2021FA', ',student'), -('100233', '800001476', '2021FA', ',student'), -('100282', '800001476', '2021FA', ',student'), -('100362', '800001476', '2021FA', ',student'), -('100594', '800001476', '2021FA', ',student'), -('100217', '800001477', '2021FA', ',student'), -('100243', '800001477', '2021FA', ',student'), -('100245', '800001477', '2021FA', ',student'), -('100478', '800001477', '2021FA', ',student'), -('100602', '800001477', '2021FA', ',student'), -('100010', '800001478', '2021FA', ',student'), -('100064', '800001478', '2021FA', ',student'), -('100207', '800001478', '2021FA', ',student'), -('100267', '800001478', '2021FA', ',student'), -('100344', '800001478', '2021FA', ',student'), -('100028', '800001479', '2021FA', ',student'), -('100072', '800001479', '2021FA', ',student'), -('100105', '800001479', '2021FA', ',student'), -('100476', '800001479', '2021FA', ',student'), -('100610', '800001479', '2021FA', ',student'), -('100422', '800001480', '2021FA', ',student'), -('100443', '800001480', '2021FA', ',student'), -('100448', '800001480', '2021FA', ',student'), -('100475', '800001480', '2021FA', ',student'), -('100502', '800001480', '2021FA', ',student'), -('100128', '800001481', '2021FA', ',student'), -('100218', '800001481', '2021FA', ',student'), -('100368', '800001481', '2021FA', ',student'), -('100387', '800001481', '2021FA', ',student'), -('100412', '800001481', '2021FA', ',student'), -('100310', '800001484', '2021FA', ',student'), -('100390', '800001484', '2021FA', ',student'), -('100419', '800001484', '2021FA', ',student'), -('100486', '800001484', '2021FA', ',student'), -('100540', '800001484', '2021FA', ',student'), -('100043', '800001488', '2021FA', ',student'), -('100077', '800001488', '2021FA', ',student'), -('100140', '800001488', '2021FA', ',student'), -('100282', '800001488', '2021FA', ',student'), -('100284', '800001488', '2021FA', ',student'), -('100156', '800001491', '2021FA', ',student'), -('100201', '800001491', '2021FA', ',student'), -('100255', '800001491', '2021FA', ',student'), -('100266', '800001491', '2021FA', ',student'), -('100390', '800001491', '2021FA', ',student'), -('100008', '800001492', '2021FA', ',student'), -('100165', '800001492', '2021FA', ',student'), -('100188', '800001492', '2021FA', ',student'), -('100439', '800001492', '2021FA', ',student'), -('100529', '800001492', '2021FA', ',student'), -('100136', '800001496', '2021FA', ',student'), -('100330', '800001496', '2021FA', ',student'), -('100342', '800001496', '2021FA', ',student'), -('100519', '800001496', '2021FA', ',student'), -('100575', '800001496', '2021FA', ',student'), -('100091', '800001499', '2021FA', ',student'), -('100325', '800001499', '2021FA', ',student'), -('100531', '800001499', '2021FA', ',student'), -('100566', '800001499', '2021FA', ',student'), -('100593', '800001499', '2021FA', ',student'), -('100006', '800001500', '2021FA', ',student'), -('100252', '800001500', '2021FA', ',student'), -('100408', '800001500', '2021FA', ',student'), -('100479', '800001500', '2021FA', ',student'), -('100489', '800001500', '2021FA', ',student'), -('100250', '800001501', '2021FA', ',student'), -('100381', '800001501', '2021FA', ',student'), -('100486', '800001501', '2021FA', ',student'), -('100504', '800001501', '2021FA', ',student'), -('100528', '800001501', '2021FA', ',student'), -('100120', '800001502', '2021FA', ',student'), -('100202', '800001502', '2021FA', ',student'), -('100290', '800001502', '2021FA', ',student'), -('100505', '800001502', '2021FA', ',student'), -('100564', '800001502', '2021FA', ',student'), -('100099', '800001503', '2021FA', ',student'), -('100256', '800001503', '2021FA', ',student'), -('100377', '800001503', '2021FA', ',student'), -('100391', '800001503', '2021FA', ',student'), -('100537', '800001503', '2021FA', ',student'), -('100243', '800001504', '2021FA', ',student'), -('100265', '800001504', '2021FA', ',student'), -('100314', '800001504', '2021FA', ',student'), -('100345', '800001504', '2021FA', ',student'), -('100428', '800001504', '2021FA', ',student'), -('100055', '800001505', '2021FA', ',student'), -('100144', '800001505', '2021FA', ',student'), -('100167', '800001505', '2021FA', ',student'), -('100177', '800001505', '2021FA', ',student'), -('100488', '800001505', '2021FA', ',student'), -('100059', '800001506', '2021FA', ',student'), -('100262', '800001506', '2021FA', ',student'), -('100441', '800001506', '2021FA', ',student'), -('100493', '800001506', '2021FA', ',student'), -('100548', '800001506', '2021FA', ',student'), -('100054', '800001507', '2021FA', ',student'), -('100287', '800001507', '2021FA', ',student'), -('100386', '800001507', '2021FA', ',student'), -('100414', '800001507', '2021FA', ',student'), -('100515', '800001507', '2021FA', ',student'), -('100085', '800001508', '2021FA', ',student'), -('100174', '800001508', '2021FA', ',student'), -('100387', '800001508', '2021FA', ',student'), -('100422', '800001508', '2021FA', ',student'), -('100625', '800001508', '2021FA', ',student'), -('100107', '800001509', '2021FA', ',student'), -('100203', '800001509', '2021FA', ',student'), -('100213', '800001509', '2021FA', ',student'), -('100282', '800001509', '2021FA', ',student'), -('100318', '800001509', '2021FA', ',student'), -('100024', '800001511', '2021FA', ',student'), -('100280', '800001511', '2021FA', ',student'), -('100529', '800001511', '2021FA', ',student'), -('100554', '800001511', '2021FA', ',student'), -('100626', '800001511', '2021FA', ',student'), -('100073', '800001512', '2021FA', ',student'), -('100344', '800001512', '2021FA', ',student'), -('100462', '800001512', '2021FA', ',student'), -('100469', '800001512', '2021FA', ',student'), -('100487', '800001512', '2021FA', ',student'), -('100055', '800001513', '2021FA', ',student'), -('100089', '800001513', '2021FA', ',student'), -('100150', '800001513', '2021FA', ',student'), -('100292', '800001513', '2021FA', ',student'), -('100326', '800001513', '2021FA', ',student'), -('100054', '800001518', '2021FA', ',student'), -('100240', '800001518', '2021FA', ',student'), -('100415', '800001518', '2021FA', ',student'), -('100420', '800001518', '2021FA', ',student'), -('100573', '800001518', '2021FA', ',student'), -('100154', '800001519', '2021FA', ',student'), -('100157', '800001519', '2021FA', ',student'), -('100240', '800001519', '2021FA', ',student'), -('100255', '800001519', '2021FA', ',student'), -('100478', '800001519', '2021FA', ',student'), -('100109', '800001520', '2021FA', ',student'), -('100366', '800001520', '2021FA', ',student'), -('100434', '800001520', '2021FA', ',student'), -('100485', '800001520', '2021FA', ',student'), -('100541', '800001520', '2021FA', ',student'), -('100067', '800001523', '2021FA', ',student'), -('100123', '800001523', '2021FA', ',student'), -('100191', '800001523', '2021FA', ',student'), -('100202', '800001523', '2021FA', ',student'), -('100244', '800001523', '2021FA', ',student'), -('100029', '800001524', '2021FA', ',student'), -('100097', '800001524', '2021FA', ',student'), -('100226', '800001524', '2021FA', ',student'), -('100234', '800001524', '2021FA', ',student'), -('100601', '800001524', '2021FA', ',student'), -('100032', '800001526', '2021FA', ',student'), -('100262', '800001526', '2021FA', ',student'), -('100477', '800001526', '2021FA', ',student'), -('100534', '800001526', '2021FA', ',student'), -('100583', '800001526', '2021FA', ',student'), -('100152', '800001528', '2021FA', ',student'), -('100227', '800001528', '2021FA', ',student'), -('100298', '800001528', '2021FA', ',student'), -('100328', '800001528', '2021FA', ',student'), -('100358', '800001528', '2021FA', ',student'), -('100052', '800001529', '2021FA', ',student'), -('100194', '800001529', '2021FA', ',student'), -('100210', '800001529', '2021FA', ',student'), -('100424', '800001529', '2021FA', ',student'), -('100472', '800001529', '2021FA', ',student'), -('100106', '800001531', '2021FA', ',student'), -('100301', '800001531', '2021FA', ',student'), -('100455', '800001531', '2021FA', ',student'), -('100467', '800001531', '2021FA', ',student'), -('100583', '800001531', '2021FA', ',student'), -('100137', '800001532', '2021FA', ',student'), -('100217', '800001532', '2021FA', ',student'), -('100270', '800001532', '2021FA', ',student'), -('100433', '800001532', '2021FA', ',student'), -('100489', '800001532', '2021FA', ',student'), -('100068', '800001536', '2021FA', ',student'), -('100104', '800001536', '2021FA', ',student'), -('100314', '800001536', '2021FA', ',student'), -('100360', '800001536', '2021FA', ',student'), -('100484', '800001536', '2021FA', ',student'), -('100047', '800001537', '2021FA', ',student'), -('100270', '800001537', '2021FA', ',student'), -('100271', '800001537', '2021FA', ',student'), -('100389', '800001537', '2021FA', ',student'), -('100490', '800001537', '2021FA', ',student'), -('100029', '800001538', '2021FA', ',student'), -('100149', '800001538', '2021FA', ',student'), -('100556', '800001538', '2021FA', ',student'), -('100571', '800001538', '2021FA', ',student'), -('100616', '800001538', '2021FA', ',student'), -('100095', '800001540', '2021FA', ',student'), -('100105', '800001540', '2021FA', ',student'), -('100187', '800001540', '2021FA', ',student'), -('100376', '800001540', '2021FA', ',student'), -('100595', '800001540', '2021FA', ',student'), -('100057', '800001541', '2021FA', ',student'), -('100118', '800001541', '2021FA', ',student'), -('100208', '800001541', '2021FA', ',student'), -('100365', '800001541', '2021FA', ',student'), -('100385', '800001541', '2021FA', ',student'), -('100197', '800001542', '2021FA', ',student'), -('100206', '800001542', '2021FA', ',student'), -('100441', '800001542', '2021FA', ',student'), -('100531', '800001542', '2021FA', ',student'), -('100543', '800001542', '2021FA', ',student'), -('100132', '800001545', '2021FA', ',student'), -('100193', '800001545', '2021FA', ',student'), -('100248', '800001545', '2021FA', ',student'), -('100341', '800001545', '2021FA', ',student'), -('100585', '800001545', '2021FA', ',student'), -('100194', '800001546', '2021FA', ',student'), -('100274', '800001546', '2021FA', ',student'), -('100378', '800001546', '2021FA', ',student'), -('100413', '800001546', '2021FA', ',student'), -('100488', '800001546', '2021FA', ',student'), -('100060', '800001548', '2021FA', ',student'), -('100295', '800001548', '2021FA', ',student'), -('100532', '800001548', '2021FA', ',student'), -('100618', '800001548', '2021FA', ',student'), -('100619', '800001548', '2021FA', ',student'), -('100010', '800001550', '2021FA', ',student'), -('100127', '800001550', '2021FA', ',student'), -('100208', '800001550', '2021FA', ',student'), -('100235', '800001550', '2021FA', ',student'), -('100615', '800001550', '2021FA', ',student'), -('100043', '800001552', '2021FA', ',student'), -('100062', '800001552', '2021FA', ',student'), -('100129', '800001552', '2021FA', ',student'), -('100448', '800001552', '2021FA', ',student'), -('100475', '800001552', '2021FA', ',student'), -('100083', '800001554', '2021FA', ',student'), -('100216', '800001554', '2021FA', ',student'), -('100357', '800001554', '2021FA', ',student'), -('100558', '800001554', '2021FA', ',student'), -('100574', '800001554', '2021FA', ',student'), -('100125', '800001556', '2021FA', ',student'), -('100236', '800001556', '2021FA', ',student'), -('100463', '800001556', '2021FA', ',student'), -('100511', '800001556', '2021FA', ',student'), -('100537', '800001556', '2021FA', ',student'), -('100181', '800001559', '2021FA', ',student'), -('100270', '800001559', '2021FA', ',student'), -('100449', '800001559', '2021FA', ',student'), -('100466', '800001559', '2021FA', ',student'), -('100488', '800001559', '2021FA', ',student'), -('100088', '800001561', '2021FA', ',student'), -('100161', '800001561', '2021FA', ',student'), -('100263', '800001561', '2021FA', ',student'), -('100273', '800001561', '2021FA', ',student'), -('100475', '800001561', '2021FA', ',student'), -('100248', '800001562', '2021FA', ',student'), -('100332', '800001562', '2021FA', ',student'), -('100365', '800001562', '2021FA', ',student'), -('100461', '800001562', '2021FA', ',student'), -('100584', '800001562', '2021FA', ',student'), -('100140', '800001564', '2021FA', ',student'), -('100375', '800001564', '2021FA', ',student'), -('100477', '800001564', '2021FA', ',student'), -('100601', '800001564', '2021FA', ',student'), -('100618', '800001564', '2021FA', ',student'), -('100316', '800001566', '2021FA', ',student'), -('100320', '800001566', '2021FA', ',student'), -('100400', '800001566', '2021FA', ',student'), -('100506', '800001566', '2021FA', ',student'), -('100568', '800001566', '2021FA', ',student'), -('100079', '800001569', '2021FA', ',student'), -('100334', '800001569', '2021FA', ',student'), -('100388', '800001569', '2021FA', ',student'), -('100478', '800001569', '2021FA', ',student'), -('100555', '800001569', '2021FA', ',student'), -('100336', '800001571', '2021FA', ',student'), -('100373', '800001571', '2021FA', ',student'), -('100447', '800001571', '2021FA', ',student'), -('100490', '800001571', '2021FA', ',student'), -('100589', '800001571', '2021FA', ',student'), -('100195', '800001572', '2021FA', ',student'), -('100321', '800001572', '2021FA', ',student'), -('100544', '800001572', '2021FA', ',student'), -('100596', '800001572', '2021FA', ',student'), -('100606', '800001572', '2021FA', ',student'), -('100110', '800001573', '2021FA', ',student'), -('100116', '800001573', '2021FA', ',student'), -('100263', '800001573', '2021FA', ',student'), -('100447', '800001573', '2021FA', ',student'), -('100481', '800001573', '2021FA', ',student'), -('100010', '800001574', '2021FA', ',student'), -('100221', '800001574', '2021FA', ',student'), -('100455', '800001574', '2021FA', ',student'), -('100526', '800001574', '2021FA', ',student'), -('100619', '800001574', '2021FA', ',student'), -('100094', '800001579', '2021FA', ',student'), -('100166', '800001579', '2021FA', ',student'), -('100245', '800001579', '2021FA', ',student'), -('100330', '800001579', '2021FA', ',student'), -('100470', '800001579', '2021FA', ',student'), -('100043', '800001581', '2021FA', ',student'), -('100093', '800001581', '2021FA', ',student'), -('100182', '800001581', '2021FA', ',student'), -('100200', '800001581', '2021FA', ',student'), -('100411', '800001581', '2021FA', ',student'), -('100108', '800001582', '2021FA', ',student'), -('100139', '800001582', '2021FA', ',student'), -('100465', '800001582', '2021FA', ',student'), -('100554', '800001582', '2021FA', ',student'), -('100615', '800001582', '2021FA', ',student'), -('100034', '800001583', '2021FA', ',student'), -('100278', '800001583', '2021FA', ',student'), -('100286', '800001583', '2021FA', ',student'), -('100487', '800001583', '2021FA', ',student'), -('100520', '800001583', '2021FA', ',student'), -('100038', '800001584', '2021FA', ',student'), -('100227', '800001584', '2021FA', ',student'), -('100244', '800001584', '2021FA', ',student'), -('100338', '800001584', '2021FA', ',student'), -('100535', '800001584', '2021FA', ',student'), -('100108', '800001585', '2021FA', ',student'), -('100197', '800001585', '2021FA', ',student'), -('100343', '800001585', '2021FA', ',student'), -('100583', '800001585', '2021FA', ',student'), -('100615', '800001585', '2021FA', ',student'), -('100048', '800001586', '2021FA', ',student'), -('100137', '800001586', '2021FA', ',student'), -('100175', '800001586', '2021FA', ',student'), -('100211', '800001586', '2021FA', ',student'), -('100324', '800001586', '2021FA', ',student'), -('100007', '800001588', '2021FA', ',student'), -('100044', '800001588', '2021FA', ',student'), -('100469', '800001588', '2021FA', ',student'), -('100486', '800001588', '2021FA', ',student'), -('100605', '800001588', '2021FA', ',student'), -('100211', '800001589', '2021FA', ',student'), -('100450', '800001589', '2021FA', ',student'), -('100502', '800001589', '2021FA', ',student'), -('100612', '800001589', '2021FA', ',student'), -('100621', '800001589', '2021FA', ',student'), -('100400', '800001591', '2021FA', ',student'), -('100450', '800001591', '2021FA', ',student'), -('100476', '800001591', '2021FA', ',student'), -('100506', '800001591', '2021FA', ',student'), -('100526', '800001591', '2021FA', ',student'), -('100228', '800001592', '2021FA', ',student'), -('100471', '800001592', '2021FA', ',student'), -('100484', '800001592', '2021FA', ',student'), -('100505', '800001592', '2021FA', ',student'), -('100539', '800001592', '2021FA', ',student'), -('100099', '800001593', '2021FA', ',student'), -('100209', '800001593', '2021FA', ',student'), -('100344', '800001593', '2021FA', ',student'), -('100423', '800001593', '2021FA', ',student'), -('100428', '800001593', '2021FA', ',student'), -('100173', '800001594', '2021FA', ',student'), -('100325', '800001594', '2021FA', ',student'), -('100392', '800001594', '2021FA', ',student'), -('100492', '800001594', '2021FA', ',student'), -('100619', '800001594', '2021FA', ',student'), -('100036', '800001596', '2021FA', ',student'), -('100141', '800001596', '2021FA', ',student'), -('100148', '800001596', '2021FA', ',student'), -('100410', '800001596', '2021FA', ',student'), -('100591', '800001596', '2021FA', ',student'), -('100001', '800001599', '2021FA', ',student'), -('100005', '800001599', '2021FA', ',student'), -('100105', '800001599', '2021FA', ',student'), -('100273', '800001599', '2021FA', ',student'), -('100531', '800001599', '2021FA', ',student'), -('100066', '800001601', '2021FA', ',student'), -('100071', '800001601', '2021FA', ',student'), -('100276', '800001601', '2021FA', ',student'), -('100387', '800001601', '2021FA', ',student'), -('100607', '800001601', '2021FA', ',student'), -('100056', '800001605', '2021FA', ',student'), -('100207', '800001605', '2021FA', ',student'), -('100220', '800001605', '2021FA', ',student'), -('100267', '800001605', '2021FA', ',student'), -('100349', '800001605', '2021FA', ',student'), -('100033', '800001606', '2021FA', ',student'), -('100048', '800001606', '2021FA', ',student'), -('100150', '800001606', '2021FA', ',student'), -('100315', '800001606', '2021FA', ',student'), -('100490', '800001606', '2021FA', ',student'), -('100010', '800001607', '2021FA', ',student'), -('100075', '800001607', '2021FA', ',student'), -('100275', '800001607', '2021FA', ',student'), -('100308', '800001607', '2021FA', ',student'), -('100602', '800001607', '2021FA', ',student'), -('100003', '800001608', '2021FA', ',student'), -('100100', '800001608', '2021FA', ',student'), -('100157', '800001608', '2021FA', ',student'), -('100324', '800001608', '2021FA', ',student'), -('100610', '800001608', '2021FA', ',student'), -('100237', '800001609', '2021FA', ',student'), -('100245', '800001609', '2021FA', ',student'), -('100248', '800001609', '2021FA', ',student'), -('100422', '800001609', '2021FA', ',student'), -('100551', '800001609', '2021FA', ',student'), -('100042', '800001610', '2021FA', ',student'), -('100212', '800001610', '2021FA', ',student'), -('100235', '800001610', '2021FA', ',student'), -('100362', '800001610', '2021FA', ',student'), -('100501', '800001610', '2021FA', ',student'), -('100112', '800001611', '2021FA', ',student'), -('100174', '800001611', '2021FA', ',student'), -('100477', '800001611', '2021FA', ',student'), -('100540', '800001611', '2021FA', ',student'), -('100588', '800001611', '2021FA', ',student'), -('100114', '800001612', '2021FA', ',student'), -('100125', '800001612', '2021FA', ',student'), -('100364', '800001612', '2021FA', ',student'), -('100436', '800001612', '2021FA', ',student'), -('100504', '800001612', '2021FA', ',student'), -('100087', '800001613', '2021FA', ',student'), -('100201', '800001613', '2021FA', ',student'), -('100413', '800001613', '2021FA', ',student'), -('100559', '800001613', '2021FA', ',student'), -('100605', '800001613', '2021FA', ',student'), -('100029', '800001614', '2021FA', ',student'), -('100259', '800001614', '2021FA', ',student'), -('100284', '800001614', '2021FA', ',student'), -('100448', '800001614', '2021FA', ',student'), -('100476', '800001614', '2021FA', ',student'), -('100011', '800001616', '2021FA', ',student'), -('100231', '800001616', '2021FA', ',student'), -('100299', '800001616', '2021FA', ',student'), -('100307', '800001616', '2021FA', ',student'), -('100526', '800001616', '2021FA', ',student'), -('100261', '800001617', '2021FA', ',student'), -('100284', '800001617', '2021FA', ',student'), -('100459', '800001617', '2021FA', ',student'), -('100462', '800001617', '2021FA', ',student'), -('100521', '800001617', '2021FA', ',student'), -('100082', '800001619', '2021FA', ',student'), -('100186', '800001619', '2021FA', ',student'), -('100289', '800001619', '2021FA', ',student'), -('100557', '800001619', '2021FA', ',student'), -('100558', '800001619', '2021FA', ',student'), -('100013', '800001620', '2021FA', ',student'), -('100114', '800001620', '2021FA', ',student'), -('100339', '800001620', '2021FA', ',student'), -('100472', '800001620', '2021FA', ',student'), -('100493', '800001620', '2021FA', ',student'), -('100191', '800001621', '2021FA', ',student'), -('100322', '800001621', '2021FA', ',student'), -('100355', '800001621', '2021FA', ',student'), -('100475', '800001621', '2021FA', ',student'), -('100593', '800001621', '2021FA', ',student'), -('100067', '800001622', '2021FA', ',student'), -('100212', '800001622', '2021FA', ',student'), -('100288', '800001622', '2021FA', ',student'), -('100299', '800001622', '2021FA', ',student'), -('100461', '800001622', '2021FA', ',student'), -('100036', '800001623', '2021FA', ',student'), -('100165', '800001623', '2021FA', ',student'), -('100203', '800001623', '2021FA', ',student'), -('100397', '800001623', '2021FA', ',student'), -('100507', '800001623', '2021FA', ',student'), -('100097', '800001625', '2021FA', ',student'), -('100188', '800001625', '2021FA', ',student'), -('100211', '800001625', '2021FA', ',student'), -('100429', '800001625', '2021FA', ',student'), -('100529', '800001625', '2021FA', ',student'), -('100122', '800001626', '2021FA', ',student'), -('100183', '800001626', '2021FA', ',student'), -('100443', '800001626', '2021FA', ',student'), -('100446', '800001626', '2021FA', ',student'), -('100564', '800001626', '2021FA', ',student'), -('100102', '800001630', '2021FA', ',student'), -('100200', '800001630', '2021FA', ',student'), -('100254', '800001630', '2021FA', ',student'), -('100457', '800001630', '2021FA', ',student'), -('100607', '800001630', '2021FA', ',student'), -('100142', '800001631', '2021FA', ',student'), -('100171', '800001631', '2021FA', ',student'), -('100242', '800001631', '2021FA', ',student'), -('100294', '800001631', '2021FA', ',student'), -('100299', '800001631', '2021FA', ',student'), -('100020', '800001633', '2021FA', ',student'), -('100067', '800001633', '2021FA', ',student'), -('100412', '800001633', '2021FA', ',student'), -('100483', '800001633', '2021FA', ',student'), -('100528', '800001633', '2021FA', ',student'), -('100056', '800001635', '2021FA', ',student'), -('100106', '800001635', '2021FA', ',student'), -('100266', '800001635', '2021FA', ',student'), -('100528', '800001635', '2021FA', ',student'), -('100552', '800001635', '2021FA', ',student'), -('100234', '800001637', '2021FA', ',student'), -('100235', '800001637', '2021FA', ',student'), -('100324', '800001637', '2021FA', ',student'), -('100428', '800001637', '2021FA', ',student'), -('100573', '800001637', '2021FA', ',student'), -('100154', '800001639', '2021FA', ',student'), -('100197', '800001639', '2021FA', ',student'), -('100531', '800001639', '2021FA', ',student'), -('100555', '800001639', '2021FA', ',student'), -('100562', '800001639', '2021FA', ',student'), -('100048', '800001640', '2021FA', ',student'), -('100075', '800001640', '2021FA', ',student'), -('100140', '800001640', '2021FA', ',student'), -('100472', '800001640', '2021FA', ',student'), -('100478', '800001640', '2021FA', ',student'), -('100090', '800001641', '2021FA', ',student'), -('100223', '800001641', '2021FA', ',student'), -('100338', '800001641', '2021FA', ',student'), -('100481', '800001641', '2021FA', ',student'), -('100516', '800001641', '2021FA', ',student'), -('100009', '800001643', '2021FA', ',student'), -('100141', '800001643', '2021FA', ',student'), -('100250', '800001643', '2021FA', ',student'), -('100415', '800001643', '2021FA', ',student'), -('100423', '800001643', '2021FA', ',student'), -('100082', '800001644', '2021FA', ',student'), -('100269', '800001644', '2021FA', ',student'), -('100347', '800001644', '2021FA', ',student'), -('100514', '800001644', '2021FA', ',student'), -('100594', '800001644', '2021FA', ',student'), -('100040', '800001645', '2021FA', ',student'), -('100136', '800001645', '2021FA', ',student'), -('100144', '800001645', '2021FA', ',student'), -('100450', '800001645', '2021FA', ',student'), -('100464', '800001645', '2021FA', ',student'), -('100217', '800001646', '2021FA', ',student'), -('100220', '800001646', '2021FA', ',student'), -('100306', '800001646', '2021FA', ',student'), -('100440', '800001646', '2021FA', ',student'), -('100499', '800001646', '2021FA', ',student'), -('100422', '800001647', '2021FA', ',student'), -('100512', '800001647', '2021FA', ',student'), -('100569', '800001647', '2021FA', ',student'), -('100588', '800001647', '2021FA', ',student'), -('100616', '800001647', '2021FA', ',student'), -('100043', '800001648', '2021FA', ',student'), -('100073', '800001648', '2021FA', ',student'), -('100204', '800001648', '2021FA', ',student'), -('100381', '800001648', '2021FA', ',student'), -('100536', '800001648', '2021FA', ',student'), -('100109', '800001652', '2021FA', ',student'), -('100192', '800001652', '2021FA', ',student'), -('100232', '800001652', '2021FA', ',student'), -('100433', '800001652', '2021FA', ',student'), -('100542', '800001652', '2021FA', ',student'), -('100043', '800001653', '2021FA', ',student'), -('100106', '800001653', '2021FA', ',student'), -('100240', '800001653', '2021FA', ',student'), -('100468', '800001653', '2021FA', ',student'), -('100565', '800001653', '2021FA', ',student'), -('100037', '800001657', '2021FA', ',student'), -('100107', '800001657', '2021FA', ',student'), -('100160', '800001657', '2021FA', ',student'), -('100323', '800001657', '2021FA', ',student'), -('100390', '800001657', '2021FA', ',student'), -('100050', '800001659', '2021FA', ',student'), -('100215', '800001659', '2021FA', ',student'), -('100223', '800001659', '2021FA', ',student'), -('100333', '800001659', '2021FA', ',student'), -('100571', '800001659', '2021FA', ',student'), -('100184', '800001661', '2021FA', ',student'), -('100208', '800001661', '2021FA', ',student'), -('100272', '800001661', '2021FA', ',student'), -('100562', '800001661', '2021FA', ',student'), -('100620', '800001661', '2021FA', ',student'), -('100248', '800001662', '2021FA', ',student'), -('100277', '800001662', '2021FA', ',student'), -('100311', '800001662', '2021FA', ',student'), -('100354', '800001662', '2021FA', ',student'), -('100433', '800001662', '2021FA', ',student'), -('100194', '800001665', '2021FA', ',student'), -('100210', '800001665', '2021FA', ',student'), -('100355', '800001665', '2021FA', ',student'), -('100458', '800001665', '2021FA', ',student'), -('100474', '800001665', '2021FA', ',student'), -('100050', '800001667', '2021FA', ',student'), -('100152', '800001667', '2021FA', ',student'), -('100274', '800001667', '2021FA', ',student'), -('100313', '800001667', '2021FA', ',student'), -('100613', '800001667', '2021FA', ',student'), -('100186', '800001670', '2021FA', ',student'), -('100447', '800001670', '2021FA', ',student'), -('100471', '800001670', '2021FA', ',student'), -('100513', '800001670', '2021FA', ',student'), -('100575', '800001670', '2021FA', ',student'), -('100262', '800001671', '2021FA', ',student'), -('100268', '800001671', '2021FA', ',student'), -('100336', '800001671', '2021FA', ',student'), -('100607', '800001671', '2021FA', ',student'), -('100623', '800001671', '2021FA', ',student'), -('100242', '800001673', '2021FA', ',student'), -('100293', '800001673', '2021FA', ',student'), -('100474', '800001673', '2021FA', ',student'), -('100510', '800001673', '2021FA', ',student'), -('100546', '800001673', '2021FA', ',student'), -('100053', '800001674', '2021FA', ',student'), -('100134', '800001674', '2021FA', ',student'), -('100306', '800001674', '2021FA', ',student'), -('100311', '800001674', '2021FA', ',student'), -('100484', '800001674', '2021FA', ',student'), -('100052', '800001675', '2021FA', ',student'), -('100070', '800001675', '2021FA', ',student'), -('100190', '800001675', '2021FA', ',student'), -('100309', '800001675', '2021FA', ',student'), -('100389', '800001675', '2021FA', ',student'), -('100205', '800001677', '2021FA', ',student'), -('100327', '800001677', '2021FA', ',student'), -('100453', '800001677', '2021FA', ',student'), -('100507', '800001677', '2021FA', ',student'), -('100581', '800001677', '2021FA', ',student'), -('100250', '800001678', '2021FA', ',student'), -('100326', '800001678', '2021FA', ',student'), -('100432', '800001678', '2021FA', ',student'), -('100442', '800001678', '2021FA', ',student'), -('100612', '800001678', '2021FA', ',student'), -('100075', '800001679', '2021FA', ',student'), -('100227', '800001679', '2021FA', ',student'), -('100246', '800001679', '2021FA', ',student'), -('100284', '800001679', '2021FA', ',student'), -('100541', '800001679', '2021FA', ',student'), -('100225', '800001680', '2021FA', ',student'), -('100484', '800001680', '2021FA', ',student'), -('100497', '800001680', '2021FA', ',student'), -('100523', '800001680', '2021FA', ',student'), -('100593', '800001680', '2021FA', ',student'), -('100148', '800001683', '2021FA', ',student'), -('100177', '800001683', '2021FA', ',student'), -('100238', '800001683', '2021FA', ',student'), -('100265', '800001683', '2021FA', ',student'), -('100583', '800001683', '2021FA', ',student'), -('100088', '800001687', '2021FA', ',student'), -('100141', '800001687', '2021FA', ',student'), -('100263', '800001687', '2021FA', ',student'), -('100389', '800001687', '2021FA', ',student'), -('100532', '800001687', '2021FA', ',student'), -('100008', '800001689', '2021FA', ',student'), -('100121', '800001689', '2021FA', ',student'), -('100288', '800001689', '2021FA', ',student'), -('100545', '800001689', '2021FA', ',student'), -('100577', '800001689', '2021FA', ',student'), -('100073', '800001691', '2021FA', ',student'), -('100389', '800001691', '2021FA', ',student'), -('100481', '800001691', '2021FA', ',student'), -('100483', '800001691', '2021FA', ',student'), -('100570', '800001691', '2021FA', ',student'), -('100110', '800001692', '2021FA', ',student'), -('100128', '800001692', '2021FA', ',student'), -('100332', '800001692', '2021FA', ',student'), -('100396', '800001692', '2021FA', ',student'), -('100435', '800001692', '2021FA', ',student'), -('100124', '800001694', '2021FA', ',student'), -('100220', '800001694', '2021FA', ',student'), -('100269', '800001694', '2021FA', ',student'), -('100419', '800001694', '2021FA', ',student'), -('100442', '800001694', '2021FA', ',student'), -('100084', '800001695', '2021FA', ',student'), -('100144', '800001695', '2021FA', ',student'), -('100215', '800001695', '2021FA', ',student'), -('100515', '800001695', '2021FA', ',student'), -('100527', '800001695', '2021FA', ',student'), -('100082', '800001696', '2021FA', ',student'), -('100355', '800001696', '2021FA', ',student'), -('100427', '800001696', '2021FA', ',student'), -('100433', '800001696', '2021FA', ',student'), -('100543', '800001696', '2021FA', ',student'), -('100143', '800001697', '2021FA', ',student'), -('100204', '800001697', '2021FA', ',student'), -('100289', '800001697', '2021FA', ',student'), -('100492', '800001697', '2021FA', ',student'), -('100544', '800001697', '2021FA', ',student'), -('100023', '800001698', '2021FA', ',student'), -('100328', '800001698', '2021FA', ',student'), -('100456', '800001698', '2021FA', ',student'), -('100517', '800001698', '2021FA', ',student'), -('100622', '800001698', '2021FA', ',student'), -('100081', '800001699', '2021FA', ',student'), -('100147', '800001699', '2021FA', ',student'), -('100556', '800001699', '2021FA', ',student'), -('100589', '800001699', '2021FA', ',student'), -('100618', '800001699', '2021FA', ',student'), -('100051', '800001703', '2021FA', ',student'), -('100268', '800001703', '2021FA', ',student'), -('100312', '800001703', '2021FA', ',student'), -('100393', '800001703', '2021FA', ',student'), -('100398', '800001703', '2021FA', ',student'), -('100000', '800001704', '2021FA', ',student'), -('100029', '800001704', '2021FA', ',student'), -('100191', '800001704', '2021FA', ',student'), -('100249', '800001704', '2021FA', ',student'), -('100580', '800001704', '2021FA', ',student'), -('100137', '800001705', '2021FA', ',student'), -('100165', '800001705', '2021FA', ',student'), -('100261', '800001705', '2021FA', ',student'), -('100378', '800001705', '2021FA', ',student'), -('100558', '800001705', '2021FA', ',student'), -('100015', '800001706', '2021FA', ',student'), -('100023', '800001706', '2021FA', ',student'), -('100122', '800001706', '2021FA', ',student'), -('100191', '800001706', '2021FA', ',student'), -('100624', '800001706', '2021FA', ',student'), -('100096', '800001707', '2021FA', ',student'), -('100220', '800001707', '2021FA', ',student'), -('100275', '800001707', '2021FA', ',student'), -('100411', '800001707', '2021FA', ',student'), -('100599', '800001707', '2021FA', ',student'), -('100046', '800001710', '2021FA', ',student'), -('100113', '800001710', '2021FA', ',student'), -('100210', '800001710', '2021FA', ',student'), -('100276', '800001710', '2021FA', ',student'), -('100441', '800001710', '2021FA', ',student'), -('100363', '800001711', '2021FA', ',student'), -('100386', '800001711', '2021FA', ',student'), -('100390', '800001711', '2021FA', ',student'), -('100595', '800001711', '2021FA', ',student'), -('100606', '800001711', '2021FA', ',student'), -('100013', '800001712', '2021FA', ',student'), -('100141', '800001712', '2021FA', ',student'), -('100204', '800001712', '2021FA', ',student'), -('100205', '800001712', '2021FA', ',student'), -('100551', '800001712', '2021FA', ',student'), -('100079', '800001713', '2021FA', ',student'), -('100149', '800001713', '2021FA', ',student'), -('100202', '800001713', '2021FA', ',student'), -('100323', '800001713', '2021FA', ',student'), -('100473', '800001713', '2021FA', ',student'), -('100016', '800001715', '2021FA', ',student'), -('100094', '800001715', '2021FA', ',student'), -('100133', '800001715', '2021FA', ',student'), -('100305', '800001715', '2021FA', ',student'), -('100603', '800001715', '2021FA', ',student'), -('100022', '800001716', '2021FA', ',student'), -('100205', '800001716', '2021FA', ',student'), -('100344', '800001716', '2021FA', ',student'), -('100454', '800001716', '2021FA', ',student'), -('100585', '800001716', '2021FA', ',student'), -('100098', '800001717', '2021FA', ',student'), -('100105', '800001717', '2021FA', ',student'), -('100216', '800001717', '2021FA', ',student'), -('100263', '800001717', '2021FA', ',student'), -('100556', '800001717', '2021FA', ',student'), -('100055', '800001718', '2021FA', ',student'), -('100196', '800001718', '2021FA', ',student'), -('100245', '800001718', '2021FA', ',student'), -('100572', '800001718', '2021FA', ',student'), -('100589', '800001718', '2021FA', ',student'), -('100013', '800001719', '2021FA', ',student'), -('100043', '800001719', '2021FA', ',student'), -('100045', '800001719', '2021FA', ',student'), -('100061', '800001719', '2021FA', ',student'), -('100495', '800001719', '2021FA', ',student'), -('100138', '800001720', '2021FA', ',student'), -('100344', '800001720', '2021FA', ',student'), -('100472', '800001720', '2021FA', ',student'), -('100479', '800001720', '2021FA', ',student'), -('100557', '800001720', '2021FA', ',student'), -('100032', '800001721', '2021FA', ',student'), -('100120', '800001721', '2021FA', ',student'), -('100139', '800001721', '2021FA', ',student'), -('100352', '800001721', '2021FA', ',student'), -('100398', '800001721', '2021FA', ',student'), -('100043', '800001723', '2021FA', ',student'), -('100282', '800001723', '2021FA', ',student'), -('100375', '800001723', '2021FA', ',student'), -('100594', '800001723', '2021FA', ',student'), -('100613', '800001723', '2021FA', ',student'), -('100117', '800001724', '2021FA', ',student'), -('100303', '800001724', '2021FA', ',student'), -('100390', '800001724', '2021FA', ',student'), -('100471', '800001724', '2021FA', ',student'), -('100505', '800001724', '2021FA', ',student'), -('100012', '800001725', '2021FA', ',student'), -('100184', '800001725', '2021FA', ',student'), -('100206', '800001725', '2021FA', ',student'), -('100285', '800001725', '2021FA', ',student'), -('100447', '800001725', '2021FA', ',student'), -('100018', '800001729', '2021FA', ',student'), -('100238', '800001729', '2021FA', ',student'), -('100276', '800001729', '2021FA', ',student'), -('100447', '800001729', '2021FA', ',student'), -('100625', '800001729', '2021FA', ',student'), -('100060', '800001730', '2021FA', ',student'), -('100124', '800001730', '2021FA', ',student'), -('100169', '800001730', '2021FA', ',student'), -('100263', '800001730', '2021FA', ',student'), -('100401', '800001730', '2021FA', ',student'), -('100057', '800001732', '2021FA', ',student'), -('100325', '800001732', '2021FA', ',student'), -('100376', '800001732', '2021FA', ',student'), -('100413', '800001732', '2021FA', ',student'), -('100577', '800001732', '2021FA', ',student'), -('100243', '800001733', '2021FA', ',student'), -('100282', '800001733', '2021FA', ',student'), -('100326', '800001733', '2021FA', ',student'), -('100386', '800001733', '2021FA', ',student'), -('100596', '800001733', '2021FA', ',student'), -('100121', '800001735', '2021FA', ',student'), -('100220', '800001735', '2021FA', ',student'), -('100519', '800001735', '2021FA', ',student'), -('100541', '800001735', '2021FA', ',student'), -('100542', '800001735', '2021FA', ',student'), -('100011', '800001738', '2021FA', ',student'), -('100053', '800001738', '2021FA', ',student'), -('100274', '800001738', '2021FA', ',student'), -('100437', '800001738', '2021FA', ',student'), -('100575', '800001738', '2021FA', ',student'), -('100027', '800001740', '2021FA', ',student'), -('100141', '800001740', '2021FA', ',student'), -('100223', '800001740', '2021FA', ',student'), -('100246', '800001740', '2021FA', ',student'), -('100273', '800001740', '2021FA', ',student'), -('100038', '800001741', '2021FA', ',student'), -('100138', '800001741', '2021FA', ',student'), -('100228', '800001741', '2021FA', ',student'), -('100312', '800001741', '2021FA', ',student'), -('100368', '800001741', '2021FA', ',student'), -('100058', '800001743', '2021FA', ',student'), -('100181', '800001743', '2021FA', ',student'), -('100218', '800001743', '2021FA', ',student'), -('100251', '800001743', '2021FA', ',student'), -('100446', '800001743', '2021FA', ',student'), -('100288', '800001744', '2021FA', ',student'), -('100388', '800001744', '2021FA', ',student'), -('100399', '800001744', '2021FA', ',student'), -('100467', '800001744', '2021FA', ',student'), -('100555', '800001744', '2021FA', ',student'), -('100054', '800001745', '2021FA', ',student'), -('100057', '800001745', '2021FA', ',student'), -('100079', '800001745', '2021FA', ',student'), -('100251', '800001745', '2021FA', ',student'), -('100376', '800001745', '2021FA', ',student'), -('100192', '800001747', '2021FA', ',student'), -('100314', '800001747', '2021FA', ',student'), -('100330', '800001747', '2021FA', ',student'), -('100573', '800001747', '2021FA', ',student'), -('100574', '800001747', '2021FA', ',student'), -('100131', '800001748', '2021FA', ',student'), -('100172', '800001748', '2021FA', ',student'), -('100397', '800001748', '2021FA', ',student'), -('100399', '800001748', '2021FA', ',student'), -('100586', '800001748', '2021FA', ',student'), -('100130', '800001750', '2021FA', ',student'), -('100218', '800001750', '2021FA', ',student'), -('100239', '800001750', '2021FA', ',student'), -('100256', '800001750', '2021FA', ',student'), -('100561', '800001750', '2021FA', ',student'), -('100037', '800001751', '2021FA', ',student'), -('100054', '800001751', '2021FA', ',student'), -('100127', '800001751', '2021FA', ',student'), -('100493', '800001751', '2021FA', ',student'), -('100536', '800001751', '2021FA', ',student'), -('100104', '800001754', '2021FA', ',student'), -('100263', '800001754', '2021FA', ',student'), -('100344', '800001754', '2021FA', ',student'), -('100541', '800001754', '2021FA', ',student'), -('100582', '800001754', '2021FA', ',student'), -('100094', '800001756', '2021FA', ',student'), -('100416', '800001756', '2021FA', ',student'), -('100434', '800001756', '2021FA', ',student'), -('100592', '800001756', '2021FA', ',student'), -('100618', '800001756', '2021FA', ',student'), -('100231', '800001759', '2021FA', ',student'), -('100232', '800001759', '2021FA', ',student'), -('100237', '800001759', '2021FA', ',student'), -('100591', '800001759', '2021FA', ',student'), -('100601', '800001759', '2021FA', ',student'), -('100172', '800001761', '2021FA', ',student'), -('100228', '800001761', '2021FA', ',student'), -('100274', '800001761', '2021FA', ',student'), -('100539', '800001761', '2021FA', ',student'), -('100543', '800001761', '2021FA', ',student'), -('100237', '800001763', '2021FA', ',student'), -('100240', '800001763', '2021FA', ',student'), -('100370', '800001763', '2021FA', ',student'), -('100443', '800001763', '2021FA', ',student'), -('100578', '800001763', '2021FA', ',student'), -('100158', '800001765', '2021FA', ',student'), -('100317', '800001765', '2021FA', ',student'), -('100357', '800001765', '2021FA', ',student'), -('100386', '800001765', '2021FA', ',student'), -('100395', '800001765', '2021FA', ',student'), -('100137', '800001766', '2021FA', ',student'), -('100166', '800001766', '2021FA', ',student'), -('100329', '800001766', '2021FA', ',student'), -('100480', '800001766', '2021FA', ',student'), -('100581', '800001766', '2021FA', ',student'), -('100126', '800001767', '2021FA', ',student'), -('100140', '800001767', '2021FA', ',student'), -('100236', '800001767', '2021FA', ',student'), -('100272', '800001767', '2021FA', ',student'), -('100278', '800001767', '2021FA', ',student'), -('100196', '800001768', '2021FA', ',student'), -('100272', '800001768', '2021FA', ',student'), -('100417', '800001768', '2021FA', ',student'), -('100483', '800001768', '2021FA', ',student'), -('100548', '800001768', '2021FA', ',student'), -('100022', '800001769', '2021FA', ',student'), -('100215', '800001769', '2021FA', ',student'), -('100224', '800001769', '2021FA', ',student'), -('100485', '800001769', '2021FA', ',student'), -('100610', '800001769', '2021FA', ',student'), -('100060', '800001771', '2021FA', ',student'), -('100085', '800001771', '2021FA', ',student'), -('100285', '800001771', '2021FA', ',student'), -('100369', '800001771', '2021FA', ',student'), -('100540', '800001771', '2021FA', ',student'), -('100174', '800001773', '2021FA', ',student'), -('100278', '800001773', '2021FA', ',student'), -('100280', '800001773', '2021FA', ',student'), -('100289', '800001773', '2021FA', ',student'), -('100558', '800001773', '2021FA', ',student'), -('100012', '800001774', '2021FA', ',student'), -('100057', '800001774', '2021FA', ',student'), -('100301', '800001774', '2021FA', ',student'), -('100457', '800001774', '2021FA', ',student'), -('100459', '800001774', '2021FA', ',student'), -('100080', '800001777', '2021FA', ',student'), -('100189', '800001777', '2021FA', ',student'), -('100238', '800001777', '2021FA', ',student'), -('100480', '800001777', '2021FA', ',student'), -('100549', '800001777', '2021FA', ',student'), -('100022', '800001779', '2021FA', ',student'), -('100141', '800001779', '2021FA', ',student'), -('100145', '800001779', '2021FA', ',student'), -('100361', '800001779', '2021FA', ',student'), -('100616', '800001779', '2021FA', ',student'), -('100082', '800001782', '2021FA', ',student'), -('100127', '800001782', '2021FA', ',student'), -('100143', '800001782', '2021FA', ',student'), -('100543', '800001782', '2021FA', ',student'), -('100583', '800001782', '2021FA', ',student'), -('100138', '800001783', '2021FA', ',student'), -('100148', '800001783', '2021FA', ',student'), -('100154', '800001783', '2021FA', ',student'), -('100264', '800001783', '2021FA', ',student'), -('100354', '800001783', '2021FA', ',student'), -('100174', '800001785', '2021FA', ',student'), -('100189', '800001785', '2021FA', ',student'), -('100339', '800001785', '2021FA', ',student'), -('100393', '800001785', '2021FA', ',student'), -('100507', '800001785', '2021FA', ',student'), -('100091', '800001787', '2021FA', ',student'), -('100113', '800001787', '2021FA', ',student'), -('100200', '800001787', '2021FA', ',student'), -('100384', '800001787', '2021FA', ',student'), -('100555', '800001787', '2021FA', ',student'), -('100035', '800001789', '2021FA', ',student'), -('100202', '800001789', '2021FA', ',student'), -('100249', '800001789', '2021FA', ',student'), -('100295', '800001789', '2021FA', ',student'), -('100610', '800001789', '2021FA', ',student'), -('100000', '800001791', '2021FA', ',student'), -('100251', '800001791', '2021FA', ',student'), -('100310', '800001791', '2021FA', ',student'), -('100599', '800001791', '2021FA', ',student'), -('100620', '800001791', '2021FA', ',student'), -('100039', '800001792', '2021FA', ',student'), -('100066', '800001792', '2021FA', ',student'), -('100101', '800001792', '2021FA', ',student'), -('100213', '800001792', '2021FA', ',student'), -('100263', '800001792', '2021FA', ',student'), -('100176', '800001793', '2021FA', ',student'), -('100286', '800001793', '2021FA', ',student'), -('100432', '800001793', '2021FA', ',student'), -('100587', '800001793', '2021FA', ',student'), -('100601', '800001793', '2021FA', ',student'), -('100030', '800001794', '2021FA', ',student'), -('100147', '800001794', '2021FA', ',student'), -('100260', '800001794', '2021FA', ',student'), -('100534', '800001794', '2021FA', ',student'), -('100559', '800001794', '2021FA', ',student'), -('100075', '800001795', '2021FA', ',student'), -('100170', '800001795', '2021FA', ',student'), -('100297', '800001795', '2021FA', ',student'), -('100481', '800001795', '2021FA', ',student'), -('100617', '800001795', '2021FA', ',student'), -('100068', '800001796', '2021FA', ',student'), -('100082', '800001796', '2021FA', ',student'), -('100212', '800001796', '2021FA', ',student'), -('100498', '800001796', '2021FA', ',student'), -('100501', '800001796', '2021FA', ',student'), -('100178', '800001797', '2021FA', ',student'), -('100189', '800001797', '2021FA', ',student'), -('100445', '800001797', '2021FA', ',student'), -('100605', '800001797', '2021FA', ',student'), -('100618', '800001797', '2021FA', ',student'), -('100020', '800001798', '2021FA', ',student'), -('100143', '800001798', '2021FA', ',student'), -('100187', '800001798', '2021FA', ',student'), -('100264', '800001798', '2021FA', ',student'), -('100509', '800001798', '2021FA', ',student'), -('100000', '800001799', '2021FA', ',student'), -('100127', '800001799', '2021FA', ',student'), -('100221', '800001799', '2021FA', ',student'), -('100500', '800001799', '2021FA', ',student'), -('100580', '800001799', '2021FA', ',student'), -('100166', '800001800', '2021FA', ',student'), -('100231', '800001800', '2021FA', ',student'), -('100262', '800001800', '2021FA', ',student'), -('100302', '800001800', '2021FA', ',student'), -('100466', '800001800', '2021FA', ',student'), -('100315', '800001801', '2021FA', ',student'), -('100388', '800001801', '2021FA', ',student'), -('100430', '800001801', '2021FA', ',student'), -('100471', '800001801', '2021FA', ',student'), -('100526', '800001801', '2021FA', ',student'), -('100186', '800001802', '2021FA', ',student'), -('100226', '800001802', '2021FA', ',student'), -('100228', '800001802', '2021FA', ',student'), -('100369', '800001802', '2021FA', ',student'), -('100508', '800001802', '2021FA', ',student'), -('100075', '800001805', '2021FA', ',student'), -('100132', '800001805', '2021FA', ',student'), -('100142', '800001805', '2021FA', ',student'), -('100307', '800001805', '2021FA', ',student'), -('100567', '800001805', '2021FA', ',student'), -('100262', '800001809', '2021FA', ',student'), -('100401', '800001809', '2021FA', ',student'), -('100466', '800001809', '2021FA', ',student'), -('100545', '800001809', '2021FA', ',student'), -('100551', '800001809', '2021FA', ',student'), -('100204', '800001811', '2021FA', ',student'), -('100307', '800001811', '2021FA', ',student'), -('100367', '800001811', '2021FA', ',student'), -('100427', '800001811', '2021FA', ',student'), -('100545', '800001811', '2021FA', ',student'), -('100225', '800001813', '2021FA', ',student'), -('100275', '800001813', '2021FA', ',student'), -('100317', '800001813', '2021FA', ',student'), -('100373', '800001813', '2021FA', ',student'), -('100461', '800001813', '2021FA', ',student'), -('100076', '800001814', '2021FA', ',student'), -('100108', '800001814', '2021FA', ',student'), -('100343', '800001814', '2021FA', ',student'), -('100460', '800001814', '2021FA', ',student'), -('100536', '800001814', '2021FA', ',student'), -('100002', '800001815', '2021FA', ',student'), -('100005', '800001815', '2021FA', ',student'), -('100101', '800001815', '2021FA', ',student'), -('100533', '800001815', '2021FA', ',student'), -('100605', '800001815', '2021FA', ',student'), -('100175', '800001816', '2021FA', ',student'), -('100176', '800001816', '2021FA', ',student'), -('100179', '800001816', '2021FA', ',student'), -('100329', '800001816', '2021FA', ',student'), -('100563', '800001816', '2021FA', ',student'), -('100086', '800001817', '2021FA', ',student'), -('100120', '800001817', '2021FA', ',student'), -('100123', '800001817', '2021FA', ',student'), -('100176', '800001817', '2021FA', ',student'), -('100492', '800001817', '2021FA', ',student'), -('100020', '800001818', '2021FA', ',student'), -('100328', '800001818', '2021FA', ',student'), -('100502', '800001818', '2021FA', ',student'), -('100605', '800001818', '2021FA', ',student'), -('100625', '800001818', '2021FA', ',student'), -('100072', '800001819', '2021FA', ',student'), -('100158', '800001819', '2021FA', ',student'), -('100323', '800001819', '2021FA', ',student'), -('100388', '800001819', '2021FA', ',student'), -('100408', '800001819', '2021FA', ',student'), -('100209', '800001820', '2021FA', ',student'), -('100300', '800001820', '2021FA', ',student'), -('100463', '800001820', '2021FA', ',student'), -('100508', '800001820', '2021FA', ',student'), -('100575', '800001820', '2021FA', ',student'), -('100063', '800001824', '2021FA', ',student'), -('100193', '800001824', '2021FA', ',student'), -('100269', '800001824', '2021FA', ',student'), -('100540', '800001824', '2021FA', ',student'), -('100567', '800001824', '2021FA', ',student'), -('100106', '800001831', '2021FA', ',student'), -('100144', '800001831', '2021FA', ',student'), -('100179', '800001831', '2021FA', ',student'), -('100353', '800001831', '2021FA', ',student'), -('100527', '800001831', '2021FA', ',student'), -('100041', '800001832', '2021FA', ',student'), -('100290', '800001832', '2021FA', ',student'), -('100323', '800001832', '2021FA', ',student'), -('100436', '800001832', '2021FA', ',student'), -('100619', '800001832', '2021FA', ',student'), -('100046', '800001835', '2021FA', ',student'), -('100050', '800001835', '2021FA', ',student'), -('100272', '800001835', '2021FA', ',student'), -('100446', '800001835', '2021FA', ',student'), -('100570', '800001835', '2021FA', ',student'), -('100063', '800001837', '2021FA', ',student'), -('100190', '800001837', '2021FA', ',student'), -('100274', '800001837', '2021FA', ',student'), -('100396', '800001837', '2021FA', ',student'), -('100446', '800001837', '2021FA', ',student'), -('100211', '800001840', '2021FA', ',student'), -('100297', '800001840', '2021FA', ',student'), -('100371', '800001840', '2021FA', ',student'), -('100517', '800001840', '2021FA', ',student'), -('100524', '800001840', '2021FA', ',student'), -('100098', '800001841', '2021FA', ',student'), -('100158', '800001841', '2021FA', ',student'), -('100309', '800001841', '2021FA', ',student'), -('100362', '800001841', '2021FA', ',student'), -('100468', '800001841', '2021FA', ',student'), -('100166', '800001844', '2021FA', ',student'), -('100228', '800001844', '2021FA', ',student'), -('100229', '800001844', '2021FA', ',student'), -('100272', '800001844', '2021FA', ',student'), -('100520', '800001844', '2021FA', ',student'), -('100163', '800001846', '2021FA', ',student'), -('100466', '800001846', '2021FA', ',student'), -('100554', '800001846', '2021FA', ',student'), -('100572', '800001846', '2021FA', ',student'), -('100604', '800001846', '2021FA', ',student'), -('100172', '800001849', '2021FA', ',student'), -('100244', '800001849', '2021FA', ',student'), -('100270', '800001849', '2021FA', ',student'), -('100333', '800001849', '2021FA', ',student'), -('100406', '800001849', '2021FA', ',student'), -('100158', '800001850', '2021FA', ',student'), -('100166', '800001850', '2021FA', ',student'), -('100445', '800001850', '2021FA', ',student'), -('100459', '800001850', '2021FA', ',student'), -('100584', '800001850', '2021FA', ',student'), -('100073', '800001852', '2021FA', ',student'), -('100099', '800001852', '2021FA', ',student'), -('100301', '800001852', '2021FA', ',student'), -('100373', '800001852', '2021FA', ',student'), -('100561', '800001852', '2021FA', ',student'), -('100035', '800001853', '2021FA', ',student'), -('100087', '800001853', '2021FA', ',student'), -('100226', '800001853', '2021FA', ',student'), -('100368', '800001853', '2021FA', ',student'), -('100407', '800001853', '2021FA', ',student'), -('100087', '800001854', '2021FA', ',student'), -('100153', '800001854', '2021FA', ',student'), -('100182', '800001854', '2021FA', ',student'), -('100212', '800001854', '2021FA', ',student'), -('100351', '800001854', '2021FA', ',student'), -('100052', '800001857', '2021FA', ',student'), -('100101', '800001857', '2021FA', ',student'), -('100226', '800001857', '2021FA', ',student'), -('100244', '800001857', '2021FA', ',student'), -('100472', '800001857', '2021FA', ',student'), -('100000', '800001858', '2021FA', ',student'), -('100054', '800001858', '2021FA', ',student'), -('100174', '800001858', '2021FA', ',student'), -('100185', '800001858', '2021FA', ',student'), -('100408', '800001858', '2021FA', ',student'), -('100041', '800001859', '2021FA', ',student'), -('100110', '800001859', '2021FA', ',student'), -('100217', '800001859', '2021FA', ',student'), -('100326', '800001859', '2021FA', ',student'), -('100450', '800001859', '2021FA', ',student'), -('100087', '800001860', '2021FA', ',student'), -('100265', '800001860', '2021FA', ',student'), -('100274', '800001860', '2021FA', ',student'), -('100578', '800001860', '2021FA', ',student'), -('100585', '800001860', '2021FA', ',student'), -('100066', '800001861', '2021FA', ',student'), -('100156', '800001861', '2021FA', ',student'), -('100270', '800001861', '2021FA', ',student'), -('100351', '800001861', '2021FA', ',student'), -('100617', '800001861', '2021FA', ',student'), -('100211', '800001865', '2021FA', ',student'), -('100297', '800001865', '2021FA', ',student'), -('100486', '800001865', '2021FA', ',student'), -('100505', '800001865', '2021FA', ',student'), -('100544', '800001865', '2021FA', ',student'), -('100017', '800001866', '2021FA', ',student'), -('100037', '800001866', '2021FA', ',student'), -('100215', '800001866', '2021FA', ',student'), -('100239', '800001866', '2021FA', ',student'), -('100297', '800001866', '2021FA', ',student'), -('100012', '800001869', '2021FA', ',student'), -('100364', '800001869', '2021FA', ',student'), -('100413', '800001869', '2021FA', ',student'), -('100511', '800001869', '2021FA', ',student'), -('100562', '800001869', '2021FA', ',student'), -('100009', '800001870', '2021FA', ',student'), -('100150', '800001870', '2021FA', ',student'), -('100368', '800001870', '2021FA', ',student'), -('100514', '800001870', '2021FA', ',student'), -('100608', '800001870', '2021FA', ',student'), -('100116', '800001872', '2021FA', ',student'), -('100272', '800001872', '2021FA', ',student'), -('100318', '800001872', '2021FA', ',student'), -('100325', '800001872', '2021FA', ',student'), -('100532', '800001872', '2021FA', ',student'), -('100188', '800001876', '2021FA', ',student'), -('100212', '800001876', '2021FA', ',student'), -('100223', '800001876', '2021FA', ',student'), -('100291', '800001876', '2021FA', ',student'), -('100557', '800001876', '2021FA', ',student'), -('100067', '800001877', '2021FA', ',student'), -('100296', '800001877', '2021FA', ',student'), -('100361', '800001877', '2021FA', ',student'), -('100483', '800001877', '2021FA', ',student'), -('100580', '800001877', '2021FA', ',student'), -('100158', '800001880', '2021FA', ',student'), -('100222', '800001880', '2021FA', ',student'), -('100231', '800001880', '2021FA', ',student'), -('100458', '800001880', '2021FA', ',student'), -('100599', '800001880', '2021FA', ',student'), -('100036', '800001881', '2021FA', ',student'), -('100173', '800001881', '2021FA', ',student'), -('100224', '800001881', '2021FA', ',student'), -('100459', '800001881', '2021FA', ',student'), -('100500', '800001881', '2021FA', ',student'), -('100011', '800001882', '2021FA', ',student'), -('100161', '800001882', '2021FA', ',student'), -('100237', '800001882', '2021FA', ',student'), -('100526', '800001882', '2021FA', ',student'), -('100545', '800001882', '2021FA', ',student'), -('100190', '800001884', '2021FA', ',student'), -('100222', '800001884', '2021FA', ',student'), -('100266', '800001884', '2021FA', ',student'), -('100389', '800001884', '2021FA', ',student'), -('100461', '800001884', '2021FA', ',student'), -('100086', '800001891', '2021FA', ',student'), -('100231', '800001891', '2021FA', ',student'), -('100306', '800001891', '2021FA', ',student'), -('100454', '800001891', '2021FA', ',student'), -('100621', '800001891', '2021FA', ',student'), -('100005', '800001892', '2021FA', ',student'), -('100070', '800001892', '2021FA', ',student'), -('100086', '800001892', '2021FA', ',student'), -('100243', '800001892', '2021FA', ',student'), -('100366', '800001892', '2021FA', ',student'), -('100154', '800001895', '2021FA', ',student'), -('100220', '800001895', '2021FA', ',student'), -('100286', '800001895', '2021FA', ',student'), -('100452', '800001895', '2021FA', ',student'), -('100599', '800001895', '2021FA', ',student'), -('100198', '800001896', '2021FA', ',student'), -('100305', '800001896', '2021FA', ',student'), -('100325', '800001896', '2021FA', ',student'), -('100450', '800001896', '2021FA', ',student'), -('100484', '800001896', '2021FA', ',student'), -('100232', '800001898', '2021FA', ',student'), -('100270', '800001898', '2021FA', ',student'), -('100273', '800001898', '2021FA', ',student'), -('100377', '800001898', '2021FA', ',student'), -('100383', '800001898', '2021FA', ',student'), -('100013', '800001899', '2021FA', ',student'), -('100216', '800001899', '2021FA', ',student'), -('100402', '800001899', '2021FA', ',student'), -('100512', '800001899', '2021FA', ',student'), -('100539', '800001899', '2021FA', ',student'), -('100061', '800001900', '2021FA', ',student'), -('100118', '800001900', '2021FA', ',student'), -('100199', '800001900', '2021FA', ',student'), -('100232', '800001900', '2021FA', ',student'), -('100264', '800001900', '2021FA', ',student'), -('100047', '800001901', '2021FA', ',student'), -('100054', '800001901', '2021FA', ',student'), -('100277', '800001901', '2021FA', ',student'), -('100291', '800001901', '2021FA', ',student'), -('100472', '800001901', '2021FA', ',student'), -('100055', '800001903', '2021FA', ',student'), -('100227', '800001903', '2021FA', ',student'), -('100234', '800001903', '2021FA', ',student'), -('100308', '800001903', '2021FA', ',student'), -('100626', '800001903', '2021FA', ',student'), -('100044', '800001905', '2021FA', ',student'), -('100386', '800001905', '2021FA', ',student'), -('100496', '800001905', '2021FA', ',student'), -('100521', '800001905', '2021FA', ',student'), -('100609', '800001905', '2021FA', ',student'), -('100045', '800001907', '2021FA', ',student'), -('100219', '800001907', '2021FA', ',student'), -('100346', '800001907', '2021FA', ',student'), -('100383', '800001907', '2021FA', ',student'), -('100420', '800001907', '2021FA', ',student'), -('100436', '800001910', '2021FA', ',student'), -('100438', '800001910', '2021FA', ',student'), -('100463', '800001910', '2021FA', ',student'), -('100465', '800001910', '2021FA', ',student'), -('100604', '800001910', '2021FA', ',student'), -('100019', '800001911', '2021FA', ',student'), -('100262', '800001911', '2021FA', ',student'), -('100430', '800001911', '2021FA', ',student'), -('100555', '800001911', '2021FA', ',student'), -('100586', '800001911', '2021FA', ',student'), -('100086', '800001912', '2021FA', ',student'), -('100164', '800001912', '2021FA', ',student'), -('100238', '800001912', '2021FA', ',student'), -('100494', '800001912', '2021FA', ',student'), -('100517', '800001912', '2021FA', ',student'), -('100200', '800001914', '2021FA', ',student'), -('100211', '800001914', '2021FA', ',student'), -('100223', '800001914', '2021FA', ',student'), -('100329', '800001914', '2021FA', ',student'), -('100443', '800001914', '2021FA', ',student'), -('100088', '800001915', '2021FA', ',student'), -('100189', '800001915', '2021FA', ',student'), -('100386', '800001915', '2021FA', ',student'), -('100511', '800001915', '2021FA', ',student'), -('100553', '800001915', '2021FA', ',student'), -('100097', '800001916', '2021FA', ',student'), -('100111', '800001916', '2021FA', ',student'), -('100126', '800001916', '2021FA', ',student'), -('100269', '800001916', '2021FA', ',student'), -('100610', '800001916', '2021FA', ',student'), -('100131', '800001917', '2021FA', ',student'), -('100165', '800001917', '2021FA', ',student'), -('100221', '800001917', '2021FA', ',student'), -('100392', '800001917', '2021FA', ',student'), -('100447', '800001917', '2021FA', ',student'), -('100064', '800001918', '2021FA', ',student'), -('100190', '800001918', '2021FA', ',student'), -('100228', '800001918', '2021FA', ',student'), -('100371', '800001918', '2021FA', ',student'), -('100494', '800001918', '2021FA', ',student'), -('100030', '800001919', '2021FA', ',student'), -('100124', '800001919', '2021FA', ',student'), -('100452', '800001919', '2021FA', ',student'), -('100529', '800001919', '2021FA', ',student'), -('100590', '800001919', '2021FA', ',student'), -('100234', '800001920', '2021FA', ',student'), -('100258', '800001920', '2021FA', ',student'), -('100464', '800001920', '2021FA', ',student'), -('100560', '800001920', '2021FA', ',student'), -('100572', '800001920', '2021FA', ',student'), -('100212', '800001921', '2021FA', ',student'), -('100300', '800001921', '2021FA', ',student'), -('100407', '800001921', '2021FA', ',student'), -('100458', '800001921', '2021FA', ',student'), -('100525', '800001921', '2021FA', ',student'), -('100042', '800001923', '2021FA', ',student'), -('100100', '800001923', '2021FA', ',student'), -('100177', '800001923', '2021FA', ',student'), -('100374', '800001923', '2021FA', ',student'), -('100525', '800001923', '2021FA', ',student'), -('100112', '800001924', '2021FA', ',student'), -('100194', '800001924', '2021FA', ',student'), -('100326', '800001924', '2021FA', ',student'), -('100509', '800001924', '2021FA', ',student'), -('100619', '800001924', '2021FA', ',student'), -('100071', '800001926', '2021FA', ',student'), -('100210', '800001926', '2021FA', ',student'), -('100265', '800001926', '2021FA', ',student'), -('100270', '800001926', '2021FA', ',student'), -('100394', '800001926', '2021FA', ',student'), -('100082', '800001927', '2021FA', ',student'), -('100152', '800001927', '2021FA', ',student'), -('100408', '800001927', '2021FA', ',student'), -('100487', '800001927', '2021FA', ',student'), -('100525', '800001927', '2021FA', ',student'), -('100269', '800001928', '2021FA', ',student'), -('100299', '800001928', '2021FA', ',student'), -('100487', '800001928', '2021FA', ',student'), -('100496', '800001928', '2021FA', ',student'), -('100593', '800001928', '2021FA', ',student'), -('100044', '800001929', '2021FA', ',student'), -('100088', '800001929', '2021FA', ',student'), -('100184', '800001929', '2021FA', ',student'), -('100595', '800001929', '2021FA', ',student'), -('100606', '800001929', '2021FA', ',student'), -('100059', '800001932', '2021FA', ',student'), -('100121', '800001932', '2021FA', ',student'), -('100277', '800001932', '2021FA', ',student'), -('100565', '800001932', '2021FA', ',student'), -('100595', '800001932', '2021FA', ',student'), -('100081', '800001933', '2021FA', ',student'), -('100221', '800001933', '2021FA', ',student'), -('100316', '800001933', '2021FA', ',student'), -('100342', '800001933', '2021FA', ',student'), -('100430', '800001933', '2021FA', ',student'), -('100252', '800001937', '2021FA', ',student'), -('100281', '800001937', '2021FA', ',student'), -('100445', '800001937', '2021FA', ',student'), -('100491', '800001937', '2021FA', ',student'), -('100599', '800001937', '2021FA', ',student'), -('100013', '800001938', '2021FA', ',student'), -('100227', '800001938', '2021FA', ',student'), -('100457', '800001938', '2021FA', ',student'), -('100534', '800001938', '2021FA', ',student'), -('100559', '800001938', '2021FA', ',student'), -('100002', '800001940', '2021FA', ',student'), -('100059', '800001940', '2021FA', ',student'), -('100358', '800001940', '2021FA', ',student'), -('100382', '800001940', '2021FA', ',student'), -('100519', '800001940', '2021FA', ',student'), -('100128', '800001941', '2021FA', ',student'), -('100196', '800001941', '2021FA', ',student'), -('100200', '800001941', '2021FA', ',student'), -('100234', '800001941', '2021FA', ',student'), -('100522', '800001941', '2021FA', ',student'), -('100024', '800001944', '2021FA', ',student'), -('100055', '800001944', '2021FA', ',student'), -('100116', '800001944', '2021FA', ',student'), -('100229', '800001944', '2021FA', ',student'), -('100570', '800001944', '2021FA', ',student'), -('100085', '800001949', '2021FA', ',student'), -('100133', '800001949', '2021FA', ',student'), -('100201', '800001949', '2021FA', ',student'), -('100404', '800001949', '2021FA', ',student'), -('100525', '800001949', '2021FA', ',student'), -('100003', '800001951', '2021FA', ',student'), -('100020', '800001951', '2021FA', ',student'), -('100274', '800001951', '2021FA', ',student'), -('100295', '800001951', '2021FA', ',student'), -('100620', '800001951', '2021FA', ',student'), -('100074', '800001952', '2021FA', ',student'), -('100200', '800001952', '2021FA', ',student'), -('100490', '800001952', '2021FA', ',student'), -('100539', '800001952', '2021FA', ',student'), -('100549', '800001952', '2021FA', ',student'), -('100022', '800001954', '2021FA', ',student'), -('100070', '800001954', '2021FA', ',student'), -('100121', '800001954', '2021FA', ',student'), -('100401', '800001954', '2021FA', ',student'), -('100507', '800001954', '2021FA', ',student'), -('100130', '800001955', '2021FA', ',student'), -('100267', '800001955', '2021FA', ',student'), -('100434', '800001955', '2021FA', ',student'), -('100469', '800001955', '2021FA', ',student'), -('100616', '800001955', '2021FA', ',student'), -('100035', '800001956', '2021FA', ',student'), -('100139', '800001956', '2021FA', ',student'), -('100356', '800001956', '2021FA', ',student'), -('100414', '800001956', '2021FA', ',student'), -('100426', '800001956', '2021FA', ',student'), -('100102', '800001957', '2021FA', ',student'), -('100131', '800001957', '2021FA', ',student'), -('100324', '800001957', '2021FA', ',student'), -('100362', '800001957', '2021FA', ',student'), -('100522', '800001957', '2021FA', ',student'), -('100184', '800001958', '2021FA', ',student'), -('100376', '800001958', '2021FA', ',student'), -('100399', '800001958', '2021FA', ',student'), -('100468', '800001958', '2021FA', ',student'), -('100534', '800001958', '2021FA', ',student'), -('100081', '800001960', '2021FA', ',student'), -('100158', '800001960', '2021FA', ',student'), -('100228', '800001960', '2021FA', ',student'), -('100256', '800001960', '2021FA', ',student'), -('100467', '800001960', '2021FA', ',student'), -('100010', '800001961', '2021FA', ',student'), -('100288', '800001961', '2021FA', ',student'), -('100368', '800001961', '2021FA', ',student'), -('100474', '800001961', '2021FA', ',student'), -('100531', '800001961', '2021FA', ',student'), -('100161', '800001965', '2021FA', ',student'), -('100208', '800001965', '2021FA', ',student'), -('100262', '800001965', '2021FA', ',student'), -('100478', '800001965', '2021FA', ',student'), -('100544', '800001965', '2021FA', ',student'), -('100172', '800001967', '2021FA', ',student'), -('100242', '800001967', '2021FA', ',student'), -('100251', '800001967', '2021FA', ',student'), -('100321', '800001967', '2021FA', ',student'), -('100406', '800001967', '2021FA', ',student'), -('100127', '800001968', '2021FA', ',student'), -('100228', '800001968', '2021FA', ',student'), -('100395', '800001968', '2021FA', ',student'), -('100481', '800001968', '2021FA', ',student'), -('100533', '800001968', '2021FA', ',student'), -('100184', '800001969', '2021FA', ',student'), -('100355', '800001969', '2021FA', ',student'), -('100489', '800001969', '2021FA', ',student'), -('100601', '800001969', '2021FA', ',student'), -('100606', '800001969', '2021FA', ',student'), -('100061', '800001974', '2021FA', ',student'), -('100287', '800001974', '2021FA', ',student'), -('100390', '800001974', '2021FA', ',student'), -('100603', '800001974', '2021FA', ',student'), -('100605', '800001974', '2021FA', ',student'), -('100002', '800001976', '2021FA', ',student'), -('100173', '800001976', '2021FA', ',student'), -('100188', '800001976', '2021FA', ',student'), -('100195', '800001976', '2021FA', ',student'), -('100214', '800001976', '2021FA', ',student'), -('100033', '800001977', '2021FA', ',student'), -('100063', '800001977', '2021FA', ',student'), -('100124', '800001977', '2021FA', ',student'), -('100518', '800001977', '2021FA', ',student'), -('100561', '800001977', '2021FA', ',student'), -('100034', '800001981', '2021FA', ',student'), -('100115', '800001981', '2021FA', ',student'), -('100199', '800001981', '2021FA', ',student'), -('100261', '800001981', '2021FA', ',student'), -('100370', '800001981', '2021FA', ',student'), -('100007', '800001982', '2021FA', ',student'), -('100029', '800001982', '2021FA', ',student'), -('100074', '800001982', '2021FA', ',student'), -('100136', '800001982', '2021FA', ',student'), -('100369', '800001982', '2021FA', ',student'), -('100098', '800001983', '2021FA', ',student'), -('100358', '800001983', '2021FA', ',student'), -('100452', '800001983', '2021FA', ',student'), -('100469', '800001983', '2021FA', ',student'), -('100550', '800001983', '2021FA', ',student'), -('100062', '800001984', '2021FA', ',student'), -('100088', '800001984', '2021FA', ',student'), -('100184', '800001984', '2021FA', ',student'), -('100323', '800001984', '2021FA', ',student'), -('100364', '800001984', '2021FA', ',student'), -('100046', '800001986', '2021FA', ',student'), -('100089', '800001986', '2021FA', ',student'), -('100139', '800001986', '2021FA', ',student'), -('100285', '800001986', '2021FA', ',student'), -('100452', '800001986', '2021FA', ',student'), -('100120', '800001987', '2021FA', ',student'), -('100171', '800001987', '2021FA', ',student'), -('100409', '800001987', '2021FA', ',student'), -('100559', '800001987', '2021FA', ',student'), -('100610', '800001987', '2021FA', ',student'), -('100013', '800001988', '2021FA', ',student'), -('100026', '800001988', '2021FA', ',student'), -('100155', '800001988', '2021FA', ',student'), -('100219', '800001988', '2021FA', ',student'), -('100423', '800001988', '2021FA', ',student'), -('100118', '800001989', '2021FA', ',student'), -('100119', '800001989', '2021FA', ',student'), -('100328', '800001989', '2021FA', ',student'), -('100340', '800001989', '2021FA', ',student'), -('100512', '800001989', '2021FA', ',student'), -('100066', '800001990', '2021FA', ',student'), -('100397', '800001990', '2021FA', ',student'), -('100459', '800001990', '2021FA', ',student'), -('100546', '800001990', '2021FA', ',student'), -('100566', '800001990', '2021FA', ',student'), -('100134', '800001991', '2021FA', ',student'), -('100290', '800001991', '2021FA', ',student'), -('100321', '800001991', '2021FA', ',student'), -('100341', '800001991', '2021FA', ',student'), -('100419', '800001991', '2021FA', ',student'), -('100028', '800001992', '2021FA', ',student'), -('100205', '800001992', '2021FA', ',student'), -('100222', '800001992', '2021FA', ',student'), -('100361', '800001992', '2021FA', ',student'), -('100590', '800001992', '2021FA', ',student'), -('100031', '800001993', '2021FA', ',student'), -('100084', '800001993', '2021FA', ',student'), -('100221', '800001993', '2021FA', ',student'), -('100425', '800001993', '2021FA', ',student'), -('100567', '800001993', '2021FA', ',student'), -('100106', '800001994', '2021FA', ',student'), -('100172', '800001994', '2021FA', ',student'), -('100314', '800001994', '2021FA', ',student'), -('100448', '800001994', '2021FA', ',student'), -('100509', '800001994', '2021FA', ',student'), -('100066', '800001995', '2021FA', ',student'), -('100111', '800001995', '2021FA', ',student'), -('100273', '800001995', '2021FA', ',student'), -('100466', '800001995', '2021FA', ',student'), -('100474', '800001995', '2021FA', ',student'), -('100122', '800001996', '2021FA', ',student'), -('100171', '800001996', '2021FA', ',student'), -('100322', '800001996', '2021FA', ',student'), -('100442', '800001996', '2021FA', ',student'), -('100564', '800001996', '2021FA', ',student'), -('100100', '800001997', '2021FA', ',student'), -('100293', '800001997', '2021FA', ',student'), -('100373', '800001997', '2021FA', ',student'), -('100405', '800001997', '2021FA', ',student'), -('100492', '800001997', '2021FA', ',student'), -('100135', '800001998', '2021FA', ',student'), -('100294', '800001998', '2021FA', ',student'), -('100418', '800001998', '2021FA', ',student'), -('100453', '800001998', '2021FA', ',student'), -('100562', '800001998', '2021FA', ',student'), -('100065', '800002001', '2021FA', ',student'), -('100100', '800002001', '2021FA', ',student'), -('100267', '800002001', '2021FA', ',student'), -('100435', '800002001', '2021FA', ',student'), -('100529', '800002001', '2021FA', ',student'), -('100169', '800002003', '2021FA', ',student'), -('100399', '800002003', '2021FA', ',student'), -('100448', '800002003', '2021FA', ',student'), -('100504', '800002003', '2021FA', ',student'), -('100592', '800002003', '2021FA', ',student'), -('100091', '800002004', '2021FA', ',student'), -('100314', '800002004', '2021FA', ',student'), -('100374', '800002004', '2021FA', ',student'), -('100414', '800002004', '2021FA', ',student'), -('100594', '800002004', '2021FA', ',student'), -('100231', '800002005', '2021FA', ',student'), -('100378', '800002005', '2021FA', ',student'), -('100433', '800002005', '2021FA', ',student'), -('100507', '800002005', '2021FA', ',student'), -('100581', '800002005', '2021FA', ',student'), -('100026', '800002006', '2021FA', ',student'), -('100121', '800002006', '2021FA', ',student'), -('100393', '800002006', '2021FA', ',student'), -('100594', '800002006', '2021FA', ',student'), -('100605', '800002006', '2021FA', ',student'), -('100039', '800002007', '2021FA', ',student'), -('100053', '800002007', '2021FA', ',student'), -('100127', '800002007', '2021FA', ',student'), -('100249', '800002007', '2021FA', ',student'), -('100614', '800002007', '2021FA', ',student'), -('100005', '800002008', '2021FA', ',student'), -('100198', '800002008', '2021FA', ',student'), -('100307', '800002008', '2021FA', ',student'), -('100435', '800002008', '2021FA', ',student'), -('100517', '800002008', '2021FA', ',student'), -('100063', '800002010', '2021FA', ',student'), -('100154', '800002010', '2021FA', ',student'), -('100228', '800002010', '2021FA', ',student'), -('100382', '800002010', '2021FA', ',student'), -('100546', '800002010', '2021FA', ',student'), -('100202', '800002011', '2021FA', ',student'), -('100296', '800002011', '2021FA', ',student'), -('100403', '800002011', '2021FA', ',student'), -('100573', '800002011', '2021FA', ',student'), -('100577', '800002011', '2021FA', ',student'), -('100012', '800002014', '2021FA', ',student'), -('100072', '800002014', '2021FA', ',student'), -('100286', '800002014', '2021FA', ',student'), -('100384', '800002014', '2021FA', ',student'), -('100443', '800002014', '2021FA', ',student'), -('100106', '800002017', '2021FA', ',student'), -('100235', '800002017', '2021FA', ',student'), -('100361', '800002017', '2021FA', ',student'), -('100461', '800002017', '2021FA', ',student'), -('100507', '800002017', '2021FA', ',student'), -('100002', '800002018', '2021FA', ',student'), -('100033', '800002018', '2021FA', ',student'), -('100155', '800002018', '2021FA', ',student'), -('100398', '800002018', '2021FA', ',student'), -('100519', '800002018', '2021FA', ',student'), -('100434', '800002020', '2021FA', ',student'), -('100446', '800002020', '2021FA', ',student'), -('100454', '800002020', '2021FA', ',student'), -('100524', '800002020', '2021FA', ',student'), -('100553', '800002020', '2021FA', ',student'), -('100248', '800002024', '2021FA', ',student'), -('100286', '800002024', '2021FA', ',student'), -('100406', '800002024', '2021FA', ',student'), -('100492', '800002024', '2021FA', ',student'), -('100526', '800002024', '2021FA', ',student'), -('100131', '800002025', '2021FA', ',student'), -('100268', '800002025', '2021FA', ',student'), -('100424', '800002025', '2021FA', ',student'), -('100458', '800002025', '2021FA', ',student'), -('100480', '800002025', '2021FA', ',student'), -('100130', '800002026', '2021FA', ',student'), -('100191', '800002026', '2021FA', ',student'), -('100194', '800002026', '2021FA', ',student'), -('100338', '800002026', '2021FA', ',student'), -('100578', '800002026', '2021FA', ',student'), -('100366', '800002027', '2021FA', ',student'), -('100490', '800002027', '2021FA', ',student'), -('100512', '800002027', '2021FA', ',student'), -('100519', '800002027', '2021FA', ',student'), -('100615', '800002027', '2021FA', ',student'), -('100035', '800002028', '2021FA', ',student'), -('100126', '800002028', '2021FA', ',student'), -('100176', '800002028', '2021FA', ',student'), -('100333', '800002028', '2021FA', ',student'), -('100476', '800002028', '2021FA', ',student'), -('100019', '800002029', '2021FA', ',student'), -('100050', '800002029', '2021FA', ',student'), -('100103', '800002029', '2021FA', ',student'), -('100200', '800002029', '2021FA', ',student'), -('100344', '800002029', '2021FA', ',student'), -('100049', '800002030', '2021FA', ',student'), -('100153', '800002030', '2021FA', ',student'), -('100319', '800002030', '2021FA', ',student'), -('100491', '800002030', '2021FA', ',student'), -('100501', '800002030', '2021FA', ',student'), -('100044', '800002031', '2021FA', ',student'), -('100123', '800002031', '2021FA', ',student'), -('100275', '800002031', '2021FA', ',student'), -('100392', '800002031', '2021FA', ',student'), -('100497', '800002031', '2021FA', ',student'), -('100006', '800002032', '2021FA', ',student'), -('100093', '800002032', '2021FA', ',student'), -('100173', '800002032', '2021FA', ',student'), -('100354', '800002032', '2021FA', ',student'), -('100359', '800002032', '2021FA', ',student'), -('100263', '800002033', '2021FA', ',student'), -('100274', '800002033', '2021FA', ',student'), -('100328', '800002033', '2021FA', ',student'), -('100373', '800002033', '2021FA', ',student'), -('100577', '800002033', '2021FA', ',student'), -('100305', '800002034', '2021FA', ',student'), -('100312', '800002034', '2021FA', ',student'), -('100338', '800002034', '2021FA', ',student'), -('100392', '800002034', '2021FA', ',student'), -('100417', '800002034', '2021FA', ',student'), -('100026', '800002035', '2021FA', ',student'), -('100293', '800002035', '2021FA', ',student'), -('100312', '800002035', '2021FA', ',student'), -('100393', '800002035', '2021FA', ',student'), -('100589', '800002035', '2021FA', ',student'), -('100011', '800002042', '2021FA', ',student'), -('100022', '800002042', '2021FA', ',student'), -('100156', '800002042', '2021FA', ',student'), -('100253', '800002042', '2021FA', ',student'), -('100459', '800002042', '2021FA', ',student'), -('100214', '800002044', '2021FA', ',student'), -('100235', '800002044', '2021FA', ',student'), -('100351', '800002044', '2021FA', ',student'), -('100447', '800002044', '2021FA', ',student'), -('100552', '800002044', '2021FA', ',student'), -('100133', '800002045', '2021FA', ',student'), -('100218', '800002045', '2021FA', ',student'), -('100244', '800002045', '2021FA', ',student'), -('100426', '800002045', '2021FA', ',student'), -('100555', '800002045', '2021FA', ',student'), -('100052', '800002050', '2021FA', ',student'), -('100284', '800002050', '2021FA', ',student'), -('100332', '800002050', '2021FA', ',student'), -('100513', '800002050', '2021FA', ',student'), -('100565', '800002050', '2021FA', ',student'), -('100296', '800002052', '2021FA', ',student'), -('100480', '800002052', '2021FA', ',student'), -('100482', '800002052', '2021FA', ',student'), -('100485', '800002052', '2021FA', ',student'), -('100618', '800002052', '2021FA', ',student'), -('100267', '800002053', '2021FA', ',student'), -('100270', '800002053', '2021FA', ',student'), -('100306', '800002053', '2021FA', ',student'), -('100405', '800002053', '2021FA', ',student'), -('100424', '800002053', '2021FA', ',student'), -('100140', '800002054', '2021FA', ',student'), -('100156', '800002054', '2021FA', ',student'), -('100389', '800002054', '2021FA', ',student'), -('100506', '800002054', '2021FA', ',student'), -('100548', '800002054', '2021FA', ',student'), -('100093', '800002056', '2021FA', ',student'), -('100160', '800002056', '2021FA', ',student'), -('100367', '800002056', '2021FA', ',student'), -('100464', '800002056', '2021FA', ',student'), -('100528', '800002056', '2021FA', ',student'), -('100184', '800002060', '2021FA', ',student'), -('100262', '800002060', '2021FA', ',student'), -('100350', '800002060', '2021FA', ',student'), -('100379', '800002060', '2021FA', ',student'), -('100429', '800002060', '2021FA', ',student'), -('100338', '800002062', '2021FA', ',student'), -('100455', '800002062', '2021FA', ',student'), -('100497', '800002062', '2021FA', ',student'), -('100511', '800002062', '2021FA', ',student'), -('100566', '800002062', '2021FA', ',student'), -('100036', '800002064', '2021FA', ',student'), -('100329', '800002064', '2021FA', ',student'), -('100411', '800002064', '2021FA', ',student'), -('100432', '800002064', '2021FA', ',student'), -('100547', '800002064', '2021FA', ',student'), -('100051', '800002065', '2021FA', ',student'), -('100067', '800002065', '2021FA', ',student'), -('100399', '800002065', '2021FA', ',student'), -('100497', '800002065', '2021FA', ',student'), -('100584', '800002065', '2021FA', ',student'), -('100108', '800002068', '2021FA', ',student'), -('100343', '800002068', '2021FA', ',student'), -('100397', '800002068', '2021FA', ',student'), -('100544', '800002068', '2021FA', ',student'), -('100594', '800002068', '2021FA', ',student'), -('100043', '800002070', '2021FA', ',student'), -('100045', '800002070', '2021FA', ',student'), -('100172', '800002070', '2021FA', ',student'), -('100228', '800002070', '2021FA', ',student'), -('100441', '800002070', '2021FA', ',student'), -('100064', '800002071', '2021FA', ',student'), -('100077', '800002071', '2021FA', ',student'), -('100355', '800002071', '2021FA', ',student'), -('100571', '800002071', '2021FA', ',student'), -('100590', '800002071', '2021FA', ',student'), -('100030', '800002072', '2021FA', ',student'), -('100245', '800002072', '2021FA', ',student'), -('100426', '800002072', '2021FA', ',student'), -('100448', '800002072', '2021FA', ',student'), -('100490', '800002072', '2021FA', ',student'), -('100010', '800002074', '2021FA', ',student'), -('100052', '800002074', '2021FA', ',student'), -('100131', '800002074', '2021FA', ',student'), -('100295', '800002074', '2021FA', ',student'), -('100332', '800002074', '2021FA', ',student'), -('100322', '800002077', '2021FA', ',student'), -('100401', '800002077', '2021FA', ',student'), -('100562', '800002077', '2021FA', ',student'), -('100594', '800002077', '2021FA', ',student'), -('100614', '800002077', '2021FA', ',student'), -('100335', '800002078', '2021FA', ',student'), -('100338', '800002078', '2021FA', ',student'), -('100515', '800002078', '2021FA', ',student'), -('100535', '800002078', '2021FA', ',student'), -('100605', '800002078', '2021FA', ',student'), -('100031', '800002080', '2021FA', ',student'), -('100076', '800002080', '2021FA', ',student'), -('100251', '800002080', '2021FA', ',student'), -('100330', '800002080', '2021FA', ',student'), -('100471', '800002080', '2021FA', ',student'), -('100233', '800002081', '2021FA', ',student'), -('100302', '800002081', '2021FA', ',student'), -('100364', '800002081', '2021FA', ',student'), -('100440', '800002081', '2021FA', ',student'), -('100545', '800002081', '2021FA', ',student'), -('100029', '800002083', '2021FA', ',student'), -('100227', '800002083', '2021FA', ',student'), -('100448', '800002083', '2021FA', ',student'), -('100473', '800002083', '2021FA', ',student'), -('100610', '800002083', '2021FA', ',student'), -('100020', '800002086', '2021FA', ',student'), -('100155', '800002086', '2021FA', ',student'), -('100180', '800002086', '2021FA', ',student'), -('100284', '800002086', '2021FA', ',student'), -('100351', '800002086', '2021FA', ',student'), -('100079', '800002087', '2021FA', ',student'), -('100191', '800002087', '2021FA', ',student'), -('100337', '800002087', '2021FA', ',student'), -('100537', '800002087', '2021FA', ',student'), -('100569', '800002087', '2021FA', ',student'), -('100125', '800002089', '2021FA', ',student'), -('100248', '800002089', '2021FA', ',student'), -('100348', '800002089', '2021FA', ',student'), -('100385', '800002089', '2021FA', ',student'), -('100436', '800002089', '2021FA', ',student'), -('100034', '800002090', '2021FA', ',student'), -('100093', '800002090', '2021FA', ',student'), -('100301', '800002090', '2021FA', ',student'), -('100528', '800002090', '2021FA', ',student'), -('100574', '800002090', '2021FA', ',student'), -('100026', '800002091', '2021FA', ',student'), -('100080', '800002091', '2021FA', ',student'), -('100285', '800002091', '2021FA', ',student'), -('100400', '800002091', '2021FA', ',student'), -('100590', '800002091', '2021FA', ',student'), -('100001', '800002095', '2021FA', ',student'), -('100171', '800002095', '2021FA', ',student'), -('100335', '800002095', '2021FA', ',student'), -('100396', '800002095', '2021FA', ',student'), -('100604', '800002095', '2021FA', ',student'), -('100018', '800002097', '2021FA', ',student'), -('100367', '800002097', '2021FA', ',student'), -('100374', '800002097', '2021FA', ',student'), -('100467', '800002097', '2021FA', ',student'), -('100541', '800002097', '2021FA', ',student'), -('100061', '800002101', '2021FA', ',student'), -('100338', '800002101', '2021FA', ',student'), -('100385', '800002101', '2021FA', ',student'), -('100450', '800002101', '2021FA', ',student'), -('100572', '800002101', '2021FA', ',student'), -('100044', '800002102', '2021FA', ',student'), -('100048', '800002102', '2021FA', ',student'), -('100270', '800002102', '2021FA', ',student'), -('100273', '800002102', '2021FA', ',student'), -('100358', '800002102', '2021FA', ',student'), -('100269', '800002103', '2021FA', ',student'), -('100300', '800002103', '2021FA', ',student'), -('100308', '800002103', '2021FA', ',student'), -('100481', '800002103', '2021FA', ',student'), -('100486', '800002103', '2021FA', ',student'), -('100069', '800002105', '2021FA', ',student'), -('100283', '800002105', '2021FA', ',student'), -('100323', '800002105', '2021FA', ',student'), -('100339', '800002105', '2021FA', ',student'), -('100395', '800002105', '2021FA', ',student'), -('100022', '800002107', '2021FA', ',student'), -('100202', '800002107', '2021FA', ',student'), -('100378', '800002107', '2021FA', ',student'), -('100418', '800002107', '2021FA', ',student'), -('100578', '800002107', '2021FA', ',student'), -('100358', '800002111', '2021FA', ',student'), -('100475', '800002111', '2021FA', ',student'), -('100485', '800002111', '2021FA', ',student'), -('100591', '800002111', '2021FA', ',student'), -('100598', '800002111', '2021FA', ',student'), -('100202', '800002112', '2021FA', ',student'), -('100282', '800002112', '2021FA', ',student'), -('100297', '800002112', '2021FA', ',student'), -('100405', '800002112', '2021FA', ',student'), -('100582', '800002112', '2021FA', ',student'), -('100021', '800002113', '2021FA', ',student'), -('100037', '800002113', '2021FA', ',student'), -('100181', '800002113', '2021FA', ',student'), -('100253', '800002113', '2021FA', ',student'), -('100291', '800002113', '2021FA', ',student'), -('100108', '800002115', '2021FA', ',student'), -('100174', '800002115', '2021FA', ',student'), -('100555', '800002115', '2021FA', ',student'), -('100561', '800002115', '2021FA', ',student'), -('100587', '800002115', '2021FA', ',student'), -('100060', '800002117', '2021FA', ',student'), -('100085', '800002117', '2021FA', ',student'), -('100264', '800002117', '2021FA', ',student'), -('100267', '800002117', '2021FA', ',student'), -('100277', '800002117', '2021FA', ',student'), -('100225', '800002119', '2021FA', ',student'), -('100245', '800002119', '2021FA', ',student'), -('100400', '800002119', '2021FA', ',student'), -('100441', '800002119', '2021FA', ',student'), -('100605', '800002119', '2021FA', ',student'), -('100004', '800002120', '2021FA', ',student'), -('100023', '800002120', '2021FA', ',student'), -('100166', '800002120', '2021FA', ',student'), -('100266', '800002120', '2021FA', ',student'), -('100267', '800002120', '2021FA', ',student'), -('100129', '800002123', '2021FA', ',student'), -('100144', '800002123', '2021FA', ',student'), -('100335', '800002123', '2021FA', ',student'), -('100412', '800002123', '2021FA', ',student'), -('100488', '800002123', '2021FA', ',student'), -('100150', '800002124', '2021FA', ',student'), -('100209', '800002124', '2021FA', ',student'), -('100243', '800002124', '2021FA', ',student'), -('100280', '800002124', '2021FA', ',student'), -('100525', '800002124', '2021FA', ',student'), -('100040', '800002133', '2021FA', ',student'), -('100082', '800002133', '2021FA', ',student'), -('100121', '800002133', '2021FA', ',student'), -('100127', '800002133', '2021FA', ',student'), -('100400', '800002133', '2021FA', ',student'), -('100222', '800002134', '2021FA', ',student'), -('100240', '800002134', '2021FA', ',student'), -('100286', '800002134', '2021FA', ',student'), -('100481', '800002134', '2021FA', ',student'), -('100588', '800002134', '2021FA', ',student'), -('100129', '800002135', '2021FA', ',student'), -('100327', '800002135', '2021FA', ',student'), -('100336', '800002135', '2021FA', ',student'), -('100409', '800002135', '2021FA', ',student'), -('100439', '800002135', '2021FA', ',student'), -('100174', '800002136', '2021FA', ',student'), -('100282', '800002136', '2021FA', ',student'), -('100379', '800002136', '2021FA', ',student'), -('100538', '800002136', '2021FA', ',student'), -('100552', '800002136', '2021FA', ',student'), -('100101', '800002137', '2021FA', ',student'), -('100182', '800002137', '2021FA', ',student'), -('100456', '800002137', '2021FA', ',student'), -('100511', '800002137', '2021FA', ',student'), -('100605', '800002137', '2021FA', ',student'), -('100125', '800002138', '2021FA', ',student'), -('100150', '800002138', '2021FA', ',student'), -('100417', '800002138', '2021FA', ',student'), -('100422', '800002138', '2021FA', ',student'), -('100546', '800002138', '2021FA', ',student'), -('100106', '800002140', '2021FA', ',student'), -('100131', '800002140', '2021FA', ',student'), -('100170', '800002140', '2021FA', ',student'), -('100226', '800002140', '2021FA', ',student'), -('100408', '800002140', '2021FA', ',student'), -('100056', '800002143', '2021FA', ',student'), -('100271', '800002143', '2021FA', ',student'), -('100336', '800002143', '2021FA', ',student'), -('100452', '800002143', '2021FA', ',student'), -('100553', '800002143', '2021FA', ',student'), -('100222', '800002145', '2021FA', ',student'), -('100259', '800002145', '2021FA', ',student'), -('100285', '800002145', '2021FA', ',student'), -('100298', '800002145', '2021FA', ',student'), -('100440', '800002145', '2021FA', ',student'), -('100065', '800002146', '2021FA', ',student'), -('100177', '800002146', '2021FA', ',student'), -('100222', '800002146', '2021FA', ',student'), -('100294', '800002146', '2021FA', ',student'), -('100603', '800002146', '2021FA', ',student'), -('100275', '800002148', '2021FA', ',student'), -('100286', '800002148', '2021FA', ',student'), -('100362', '800002148', '2021FA', ',student'), -('100465', '800002148', '2021FA', ',student'), -('100515', '800002148', '2021FA', ',student'), -('100110', '800002149', '2021FA', ',student'), -('100136', '800002149', '2021FA', ',student'), -('100417', '800002149', '2021FA', ',student'), -('100436', '800002149', '2021FA', ',student'), -('100538', '800002149', '2021FA', ',student'), -('100083', '800002151', '2021FA', ',student'), -('100152', '800002151', '2021FA', ',student'), -('100214', '800002151', '2021FA', ',student'), -('100451', '800002151', '2021FA', ',student'), -('100569', '800002151', '2021FA', ',student'), -('100110', '800002152', '2021FA', ',student'), -('100430', '800002152', '2021FA', ',student'), -('100538', '800002152', '2021FA', ',student'), -('100562', '800002152', '2021FA', ',student'), -('100601', '800002152', '2021FA', ',student'), -('100000', '800002153', '2021FA', ',student'), -('100220', '800002153', '2021FA', ',student'), -('100294', '800002153', '2021FA', ',student'), -('100355', '800002153', '2021FA', ',student'), -('100471', '800002153', '2021FA', ',student'), -('100027', '800002154', '2021FA', ',student'), -('100100', '800002154', '2021FA', ',student'), -('100236', '800002154', '2021FA', ',student'), -('100248', '800002154', '2021FA', ',student'), -('100503', '800002154', '2021FA', ',student'), -('100270', '800002155', '2021FA', ',student'), -('100437', '800002155', '2021FA', ',student'), -('100501', '800002155', '2021FA', ',student'), -('100567', '800002155', '2021FA', ',student'), -('100578', '800002155', '2021FA', ',student'), -('100007', '800002159', '2021FA', ',student'), -('100094', '800002159', '2021FA', ',student'), -('100312', '800002159', '2021FA', ',student'), -('100566', '800002159', '2021FA', ',student'), -('100614', '800002159', '2021FA', ',student'), -('100092', '800002160', '2021FA', ',student'), -('100198', '800002160', '2021FA', ',student'), -('100546', '800002160', '2021FA', ',student'), -('100613', '800002160', '2021FA', ',student'), -('100623', '800002160', '2021FA', ',student'), -('100254', '800002161', '2021FA', ',student'), -('100323', '800002161', '2021FA', ',student'), -('100441', '800002161', '2021FA', ',student'), -('100523', '800002161', '2021FA', ',student'), -('100553', '800002161', '2021FA', ',student'), -('100163', '800002162', '2021FA', ',student'), -('100182', '800002162', '2021FA', ',student'), -('100252', '800002162', '2021FA', ',student'), -('100456', '800002162', '2021FA', ',student'), -('100558', '800002162', '2021FA', ',student'), -('100094', '800002163', '2021FA', ',student'), -('100473', '800002163', '2021FA', ',student'), -('100475', '800002163', '2021FA', ',student'), -('100560', '800002163', '2021FA', ',student'), -('100594', '800002163', '2021FA', ',student'), -('100075', '800002165', '2021FA', ',student'), -('100297', '800002165', '2021FA', ',student'), -('100415', '800002165', '2021FA', ',student'), -('100473', '800002165', '2021FA', ',student'), -('100614', '800002165', '2021FA', ',student'), -('100073', '800002166', '2021FA', ',student'), -('100165', '800002166', '2021FA', ',student'), -('100237', '800002166', '2021FA', ',student'), -('100398', '800002166', '2021FA', ',student'), -('100463', '800002166', '2021FA', ',student'), -('100109', '800002167', '2021FA', ',student'), -('100112', '800002167', '2021FA', ',student'), -('100168', '800002167', '2021FA', ',student'), -('100282', '800002167', '2021FA', ',student'), -('100475', '800002167', '2021FA', ',student'), -('100442', '800002169', '2021FA', ',student'), -('100470', '800002169', '2021FA', ',student'), -('100476', '800002169', '2021FA', ',student'), -('100559', '800002169', '2021FA', ',student'), -('100583', '800002169', '2021FA', ',student'), -('100083', '800002172', '2021FA', ',student'), -('100222', '800002172', '2021FA', ',student'), -('100380', '800002172', '2021FA', ',student'), -('100448', '800002172', '2021FA', ',student'), -('100460', '800002172', '2021FA', ',student'), -('100407', '800002174', '2021FA', ',student'), -('100409', '800002174', '2021FA', ',student'), -('100467', '800002174', '2021FA', ',student'), -('100534', '800002174', '2021FA', ',student'), -('100587', '800002174', '2021FA', ',student'), -('100068', '800002175', '2021FA', ',student'), -('100457', '800002175', '2021FA', ',student'), -('100466', '800002175', '2021FA', ',student'), -('100470', '800002175', '2021FA', ',student'), -('100597', '800002175', '2021FA', ',student'), -('100207', '800002177', '2021FA', ',student'), -('100227', '800002177', '2021FA', ',student'), -('100235', '800002177', '2021FA', ',student'), -('100319', '800002177', '2021FA', ',student'), -('100398', '800002177', '2021FA', ',student'), -('100170', '800002178', '2021FA', ',student'), -('100388', '800002178', '2021FA', ',student'), -('100414', '800002178', '2021FA', ',student'), -('100433', '800002178', '2021FA', ',student'), -('100479', '800002178', '2021FA', ',student'), -('100056', '800002179', '2021FA', ',student'), -('100125', '800002179', '2021FA', ',student'), -('100295', '800002179', '2021FA', ',student'), -('100328', '800002179', '2021FA', ',student'), -('100540', '800002179', '2021FA', ',student'), -('100185', '800002182', '2021FA', ',student'), -('100240', '800002182', '2021FA', ',student'), -('100329', '800002182', '2021FA', ',student'), -('100341', '800002182', '2021FA', ',student'), -('100548', '800002182', '2021FA', ',student'), -('100204', '800002183', '2021FA', ',student'), -('100281', '800002183', '2021FA', ',student'), -('100425', '800002183', '2021FA', ',student'), -('100480', '800002183', '2021FA', ',student'), -('100536', '800002183', '2021FA', ',student'), -('100129', '800002184', '2021FA', ',student'), -('100168', '800002184', '2021FA', ',student'), -('100174', '800002184', '2021FA', ',student'), -('100278', '800002184', '2021FA', ',student'), -('100305', '800002184', '2021FA', ',student'), -('100033', '800002185', '2021FA', ',student'), -('100067', '800002185', '2021FA', ',student'), -('100225', '800002185', '2021FA', ',student'), -('100305', '800002185', '2021FA', ',student'), -('100572', '800002185', '2021FA', ',student'), -('100056', '800002186', '2021FA', ',student'), -('100066', '800002186', '2021FA', ',student'), -('100096', '800002186', '2021FA', ',student'), -('100472', '800002186', '2021FA', ',student'), -('100569', '800002186', '2021FA', ',student'), -('100148', '800002187', '2021FA', ',student'), -('100203', '800002187', '2021FA', ',student'), -('100444', '800002187', '2021FA', ',student'), -('100496', '800002187', '2021FA', ',student'), -('100574', '800002187', '2021FA', ',student'), -('100059', '800002195', '2021FA', ',student'), -('100062', '800002195', '2021FA', ',student'), -('100435', '800002195', '2021FA', ',student'), -('100487', '800002195', '2021FA', ',student'), -('100508', '800002195', '2021FA', ',student'), -('100086', '800002196', '2021FA', ',student'), -('100150', '800002196', '2021FA', ',student'), -('100401', '800002196', '2021FA', ',student'), -('100412', '800002196', '2021FA', ',student'), -('100445', '800002196', '2021FA', ',student'), -('100053', '800002197', '2021FA', ',student'), -('100123', '800002197', '2021FA', ',student'), -('100180', '800002197', '2021FA', ',student'), -('100396', '800002197', '2021FA', ',student'), -('100623', '800002197', '2021FA', ',student'), -('100075', '800002198', '2021FA', ',student'), -('100190', '800002198', '2021FA', ',student'), -('100228', '800002198', '2021FA', ',student'), -('100384', '800002198', '2021FA', ',student'), -('100467', '800002198', '2021FA', ',student'), -('100031', '800002199', '2021FA', ',student'), -('100042', '800002199', '2021FA', ',student'), -('100049', '800002199', '2021FA', ',student'), -('100243', '800002199', '2021FA', ',student'), -('100480', '800002199', '2021FA', ',student'), -('100236', '800002200', '2021FA', ',student'), -('100324', '800002200', '2021FA', ',student'), -('100363', '800002200', '2021FA', ',student'), -('100444', '800002200', '2021FA', ',student'), -('100586', '800002200', '2021FA', ',student'), -('100050', '800002201', '2021FA', ',student'), -('100143', '800002201', '2021FA', ',student'), -('100164', '800002201', '2021FA', ',student'), -('100190', '800002201', '2021FA', ',student'), -('100359', '800002201', '2021FA', ',student'), -('100002', '800002202', '2021FA', ',student'), -('100014', '800002202', '2021FA', ',student'), -('100176', '800002202', '2021FA', ',student'), -('100316', '800002202', '2021FA', ',student'), -('100547', '800002202', '2021FA', ',student'), -('100132', '800002203', '2021FA', ',student'), -('100160', '800002203', '2021FA', ',student'), -('100176', '800002203', '2021FA', ',student'), -('100349', '800002203', '2021FA', ',student'), -('100453', '800002203', '2021FA', ',student'), -('100037', '800002204', '2021FA', ',student'), -('100068', '800002204', '2021FA', ',student'), -('100422', '800002204', '2021FA', ',student'), -('100549', '800002204', '2021FA', ',student'), -('100567', '800002204', '2021FA', ',student'), -('100043', '800002205', '2021FA', ',student'), -('100111', '800002205', '2021FA', ',student'), -('100362', '800002205', '2021FA', ',student'), -('100469', '800002205', '2021FA', ',student'), -('100479', '800002205', '2021FA', ',student'), -('100141', '800002207', '2021FA', ',student'), -('100157', '800002207', '2021FA', ',student'), -('100193', '800002207', '2021FA', ',student'), -('100284', '800002207', '2021FA', ',student'), -('100301', '800002207', '2021FA', ',student'), -('100070', '800002208', '2021FA', ',student'), -('100353', '800002208', '2021FA', ',student'), -('100371', '800002208', '2021FA', ',student'), -('100424', '800002208', '2021FA', ',student'), -('100528', '800002208', '2021FA', ',student'), -('100008', '800002209', '2021FA', ',student'), -('100052', '800002209', '2021FA', ',student'), -('100135', '800002209', '2021FA', ',student'), -('100464', '800002209', '2021FA', ',student'), -('100601', '800002209', '2021FA', ',student'), -('100237', '800002211', '2021FA', ',student'), -('100258', '800002211', '2021FA', ',student'), -('100339', '800002211', '2021FA', ',student'), -('100373', '800002211', '2021FA', ',student'), -('100464', '800002211', '2021FA', ',student'), -('100185', '800002213', '2021FA', ',student'), -('100460', '800002213', '2021FA', ',student'), -('100547', '800002213', '2021FA', ',student'), -('100589', '800002213', '2021FA', ',student'), -('100616', '800002213', '2021FA', ',student'), -('100363', '800002214', '2021FA', ',student'), -('100392', '800002214', '2021FA', ',student'), -('100450', '800002214', '2021FA', ',student'), -('100513', '800002214', '2021FA', ',student'), -('100580', '800002214', '2021FA', ',student'), -('100251', '800002215', '2021FA', ',student'), -('100261', '800002215', '2021FA', ',student'), -('100295', '800002215', '2021FA', ',student'), -('100449', '800002215', '2021FA', ',student'), -('100577', '800002215', '2021FA', ',student'), -('100252', '800002217', '2021FA', ',student'), -('100311', '800002217', '2021FA', ',student'), -('100365', '800002217', '2021FA', ',student'), -('100431', '800002217', '2021FA', ',student'), -('100468', '800002217', '2021FA', ',student'), -('100019', '800002219', '2021FA', ',student'), -('100212', '800002219', '2021FA', ',student'), -('100268', '800002219', '2021FA', ',student'), -('100409', '800002219', '2021FA', ',student'), -('100527', '800002219', '2021FA', ',student'), -('100173', '800002221', '2021FA', ',student'), -('100306', '800002221', '2021FA', ',student'), -('100326', '800002221', '2021FA', ',student'), -('100381', '800002221', '2021FA', ',student'), -('100505', '800002221', '2021FA', ',student'), -('100107', '800002222', '2021FA', ',student'), -('100277', '800002222', '2021FA', ',student'), -('100331', '800002222', '2021FA', ',student'), -('100518', '800002222', '2021FA', ',student'), -('100620', '800002222', '2021FA', ',student'), -('100010', '800002224', '2021FA', ',student'), -('100465', '800002224', '2021FA', ',student'), -('100466', '800002224', '2021FA', ',student'), -('100474', '800002224', '2021FA', ',student'), -('100502', '800002224', '2021FA', ',student'), -('100091', '800002225', '2021FA', ',student'), -('100158', '800002225', '2021FA', ',student'), -('100276', '800002225', '2021FA', ',student'), -('100374', '800002225', '2021FA', ',student'), -('100585', '800002225', '2021FA', ',student'), -('100060', '800002226', '2021FA', ',student'), -('100105', '800002226', '2021FA', ',student'), -('100277', '800002226', '2021FA', ',student'), -('100439', '800002226', '2021FA', ',student'), -('100518', '800002226', '2021FA', ',student'), -('100004', '800002227', '2021FA', ',student'), -('100027', '800002227', '2021FA', ',student'), -('100119', '800002227', '2021FA', ',student'), -('100409', '800002227', '2021FA', ',student'), -('100595', '800002227', '2021FA', ',student'), -('100021', '800002228', '2021FA', ',student'), -('100116', '800002228', '2021FA', ',student'), -('100218', '800002228', '2021FA', ',student'), -('100572', '800002228', '2021FA', ',student'), -('100613', '800002228', '2021FA', ',student'), -('100103', '800002229', '2021FA', ',student'), -('100154', '800002229', '2021FA', ',student'), -('100349', '800002229', '2021FA', ',student'), -('100400', '800002229', '2021FA', ',student'), -('100615', '800002229', '2021FA', ',student'), -('100071', '800002233', '2021FA', ',student'), -('100174', '800002233', '2021FA', ',student'), -('100374', '800002233', '2021FA', ',student'), -('100442', '800002233', '2021FA', ',student'), -('100451', '800002233', '2021FA', ',student'), -('100016', '800002239', '2021FA', ',student'), -('100191', '800002239', '2021FA', ',student'), -('100424', '800002239', '2021FA', ',student'), -('100485', '800002239', '2021FA', ',student'), -('100523', '800002239', '2021FA', ',student'), -('100187', '800002240', '2021FA', ',student'), -('100221', '800002240', '2021FA', ',student'), -('100256', '800002240', '2021FA', ',student'), -('100450', '800002240', '2021FA', ',student'), -('100464', '800002240', '2021FA', ',student'), -('100140', '800002241', '2021FA', ',student'), -('100372', '800002241', '2021FA', ',student'), -('100420', '800002241', '2021FA', ',student'), -('100441', '800002241', '2021FA', ',student'), -('100442', '800002241', '2021FA', ',student'), -('100052', '800002242', '2021FA', ',student'), -('100368', '800002242', '2021FA', ',student'), -('100432', '800002242', '2021FA', ',student'), -('100439', '800002242', '2021FA', ',student'), -('100549', '800002242', '2021FA', ',student'), -('100001', '800002243', '2021FA', ',student'), -('100216', '800002243', '2021FA', ',student'), -('100233', '800002243', '2021FA', ',student'), -('100312', '800002243', '2021FA', ',student'), -('100500', '800002243', '2021FA', ',student'), -('100124', '800002244', '2021FA', ',student'), -('100134', '800002244', '2021FA', ',student'), -('100465', '800002244', '2021FA', ',student'), -('100522', '800002244', '2021FA', ',student'), -('100564', '800002244', '2021FA', ',student'), -('100186', '800002246', '2021FA', ',student'), -('100195', '800002246', '2021FA', ',student'), -('100280', '800002246', '2021FA', ',student'), -('100565', '800002246', '2021FA', ',student'), -('100598', '800002246', '2021FA', ',student'), -('100065', '800002248', '2021FA', ',student'), -('100392', '800002248', '2021FA', ',student'), -('100414', '800002248', '2021FA', ',student'), -('100446', '800002248', '2021FA', ',student'), -('100559', '800002248', '2021FA', ',student'), -('100058', '800002249', '2021FA', ',student'), -('100126', '800002249', '2021FA', ',student'), -('100197', '800002249', '2021FA', ',student'), -('100336', '800002249', '2021FA', ',student'), -('100549', '800002249', '2021FA', ',student'), -('100051', '800002251', '2021FA', ',student'), -('100327', '800002251', '2021FA', ',student'), -('100328', '800002251', '2021FA', ',student'), -('100345', '800002251', '2021FA', ',student'), -('100583', '800002251', '2021FA', ',student'), -('100034', '800002253', '2021FA', ',student'), -('100060', '800002253', '2021FA', ',student'), -('100152', '800002253', '2021FA', ',student'), -('100178', '800002253', '2021FA', ',student'), -('100613', '800002253', '2021FA', ',student'), -('100403', '800002255', '2021FA', ',student'), -('100404', '800002255', '2021FA', ',student'), -('100475', '800002255', '2021FA', ',student'), -('100551', '800002255', '2021FA', ',student'), -('100553', '800002255', '2021FA', ',student'), -('100013', '800002257', '2021FA', ',student'), -('100118', '800002257', '2021FA', ',student'), -('100136', '800002257', '2021FA', ',student'), -('100143', '800002257', '2021FA', ',student'), -('100179', '800002257', '2021FA', ',student'), -('100000', '800002258', '2021FA', ',student'), -('100106', '800002258', '2021FA', ',student'), -('100154', '800002258', '2021FA', ',student'), -('100345', '800002258', '2021FA', ',student'), -('100571', '800002258', '2021FA', ',student'), -('100195', '800002262', '2021FA', ',student'), -('100225', '800002262', '2021FA', ',student'), -('100306', '800002262', '2021FA', ',student'), -('100500', '800002262', '2021FA', ',student'), -('100624', '800002262', '2021FA', ',student'), -('100111', '800002263', '2021FA', ',student'), -('100137', '800002263', '2021FA', ',student'), -('100326', '800002263', '2021FA', ',student'), -('100402', '800002263', '2021FA', ',student'), -('100539', '800002263', '2021FA', ',student'), -('100072', '800002264', '2021FA', ',student'), -('100091', '800002264', '2021FA', ',student'), -('100358', '800002264', '2021FA', ',student'), -('100503', '800002264', '2021FA', ',student'), -('100521', '800002264', '2021FA', ',student'), -('100035', '800002266', '2021FA', ',student'), -('100188', '800002266', '2021FA', ',student'), -('100243', '800002266', '2021FA', ',student'), -('100326', '800002266', '2021FA', ',student'), -('100580', '800002266', '2021FA', ',student'), -('100013', '800002267', '2021FA', ',student'), -('100166', '800002267', '2021FA', ',student'), -('100188', '800002267', '2021FA', ',student'), -('100260', '800002267', '2021FA', ',student'), -('100438', '800002267', '2021FA', ',student'), -('100006', '800002268', '2021FA', ',student'), -('100085', '800002268', '2021FA', ',student'), -('100111', '800002268', '2021FA', ',student'), -('100341', '800002268', '2021FA', ',student'), -('100610', '800002268', '2021FA', ',student'), -('100084', '800002269', '2021FA', ',student'), -('100124', '800002269', '2021FA', ',student'), -('100209', '800002269', '2021FA', ',student'), -('100246', '800002269', '2021FA', ',student'), -('100602', '800002269', '2021FA', ',student'), -('100046', '800002270', '2021FA', ',student'), -('100260', '800002270', '2021FA', ',student'), -('100305', '800002270', '2021FA', ',student'), -('100347', '800002270', '2021FA', ',student'), -('100586', '800002270', '2021FA', ',student'), -('100032', '800002274', '2021FA', ',student'), -('100272', '800002274', '2021FA', ',student'), -('100273', '800002274', '2021FA', ',student'), -('100433', '800002274', '2021FA', ',student'), -('100488', '800002274', '2021FA', ',student'), -('100033', '800002276', '2021FA', ',student'), -('100264', '800002276', '2021FA', ',student'), -('100375', '800002276', '2021FA', ',student'), -('100398', '800002276', '2021FA', ',student'), -('100553', '800002276', '2021FA', ',student'), -('100110', '800002277', '2021FA', ',student'), -('100167', '800002277', '2021FA', ',student'), -('100284', '800002277', '2021FA', ',student'), -('100509', '800002277', '2021FA', ',student'), -('100526', '800002277', '2021FA', ',student'), -('100029', '800002278', '2021FA', ',student'), -('100052', '800002278', '2021FA', ',student'), -('100207', '800002278', '2021FA', ',student'), -('100269', '800002278', '2021FA', ',student'), -('100374', '800002278', '2021FA', ',student'), -('100044', '800002281', '2021FA', ',student'), -('100048', '800002281', '2021FA', ',student'), -('100066', '800002281', '2021FA', ',student'), -('100181', '800002281', '2021FA', ',student'), -('100547', '800002281', '2021FA', ',student'), -('100069', '800002284', '2021FA', ',student'), -('100159', '800002284', '2021FA', ',student'), -('100555', '800002284', '2021FA', ',student'), -('100586', '800002284', '2021FA', ',student'), -('100593', '800002284', '2021FA', ',student'), -('100035', '800002292', '2021FA', ',student'), -('100041', '800002292', '2021FA', ',student'), -('100134', '800002292', '2021FA', ',student'), -('100241', '800002292', '2021FA', ',student'), -('100625', '800002292', '2021FA', ',student'), -('100029', '800002293', '2021FA', ',student'), -('100053', '800002293', '2021FA', ',student'), -('100259', '800002293', '2021FA', ',student'), -('100340', '800002293', '2021FA', ',student'), -('100526', '800002293', '2021FA', ',student'), -('100044', '800002297', '2021FA', ',student'), -('100046', '800002297', '2021FA', ',student'), -('100081', '800002297', '2021FA', ',student'), -('100178', '800002297', '2021FA', ',student'), -('100577', '800002297', '2021FA', ',student'), -('100095', '800002299', '2021FA', ',student'), -('100117', '800002299', '2021FA', ',student'), -('100170', '800002299', '2021FA', ',student'), -('100611', '800002299', '2021FA', ',student'), -('100624', '800002299', '2021FA', ',student'), -('100031', '800002300', '2021FA', ',student'), -('100051', '800002300', '2021FA', ',student'), -('100138', '800002300', '2021FA', ',student'), -('100376', '800002300', '2021FA', ',student'), -('100388', '800002300', '2021FA', ',student'), -('100056', '800002301', '2021FA', ',student'), -('100128', '800002301', '2021FA', ',student'), -('100557', '800002301', '2021FA', ',student'), -('100586', '800002301', '2021FA', ',student'), -('100604', '800002301', '2021FA', ',student'), -('100086', '800002302', '2021FA', ',student'), -('100111', '800002302', '2021FA', ',student'), -('100270', '800002302', '2021FA', ',student'), -('100306', '800002302', '2021FA', ',student'), -('100398', '800002302', '2021FA', ',student'), -('100083', '800002304', '2021FA', ',student'), -('100193', '800002304', '2021FA', ',student'), -('100201', '800002304', '2021FA', ',student'), -('100588', '800002304', '2021FA', ',student'), -('100616', '800002304', '2021FA', ',student'), -('100013', '800002305', '2021FA', ',student'), -('100471', '800002305', '2021FA', ',student'), -('100514', '800002305', '2021FA', ',student'), -('100567', '800002305', '2021FA', ',student'), -('100580', '800002305', '2021FA', ',student'), -('100342', '800002306', '2021FA', ',student'), -('100434', '800002306', '2021FA', ',student'), -('100450', '800002306', '2021FA', ',student'), -('100497', '800002306', '2021FA', ',student'), -('100560', '800002306', '2021FA', ',student'), -('100034', '800002307', '2021FA', ',student'), -('100276', '800002307', '2021FA', ',student'), -('100515', '800002307', '2021FA', ',student'), -('100561', '800002307', '2021FA', ',student'), -('100566', '800002307', '2021FA', ',student'), -('100192', '800002309', '2021FA', ',student'), -('100243', '800002309', '2021FA', ',student'), -('100273', '800002309', '2021FA', ',student'), -('100306', '800002309', '2021FA', ',student'), -('100583', '800002309', '2021FA', ',student'), -('100053', '800002310', '2021FA', ',student'), -('100111', '800002310', '2021FA', ',student'), -('100163', '800002310', '2021FA', ',student'), -('100219', '800002310', '2021FA', ',student'), -('100403', '800002310', '2021FA', ',student'), -('100099', '800002311', '2021FA', ',student'), -('100126', '800002311', '2021FA', ',student'), -('100137', '800002311', '2021FA', ',student'), -('100246', '800002311', '2021FA', ',student'), -('100516', '800002311', '2021FA', ',student'), -('100067', '800002312', '2021FA', ',student'), -('100088', '800002312', '2021FA', ',student'), -('100252', '800002312', '2021FA', ',student'), -('100455', '800002312', '2021FA', ',student'), -('100539', '800002312', '2021FA', ',student'), -('100446', '800002313', '2021FA', ',student'), -('100488', '800002313', '2021FA', ',student'), -('100528', '800002313', '2021FA', ',student'), -('100564', '800002313', '2021FA', ',student'), -('100624', '800002313', '2021FA', ',student'), -('100121', '800002314', '2021FA', ',student'), -('100311', '800002314', '2021FA', ',student'), -('100420', '800002314', '2021FA', ',student'), -('100485', '800002314', '2021FA', ',student'), -('100541', '800002314', '2021FA', ',student'), -('100026', '800002315', '2021FA', ',student'), -('100112', '800002315', '2021FA', ',student'), -('100304', '800002315', '2021FA', ',student'), -('100400', '800002315', '2021FA', ',student'), -('100405', '800002315', '2021FA', ',student'), -('100020', '800002316', '2021FA', ',student'), -('100045', '800002316', '2021FA', ',student'), -('100370', '800002316', '2021FA', ',student'), -('100388', '800002316', '2021FA', ',student'), -('100490', '800002316', '2021FA', ',student'), -('100253', '800002318', '2021FA', ',student'), -('100284', '800002318', '2021FA', ',student'), -('100405', '800002318', '2021FA', ',student'), -('100448', '800002318', '2021FA', ',student'), -('100498', '800002318', '2021FA', ',student'), -('100127', '800002320', '2021FA', ',student'), -('100398', '800002320', '2021FA', ',student'), -('100451', '800002320', '2021FA', ',student'), -('100497', '800002320', '2021FA', ',student'), -('100499', '800002320', '2021FA', ',student'), -('100071', '800002322', '2021FA', ',student'), -('100151', '800002322', '2021FA', ',student'), -('100236', '800002322', '2021FA', ',student'), -('100541', '800002322', '2021FA', ',student'), -('100618', '800002322', '2021FA', ',student'), -('100016', '800002324', '2021FA', ',student'), -('100070', '800002324', '2021FA', ',student'), -('100183', '800002324', '2021FA', ',student'), -('100240', '800002324', '2021FA', ',student'), -('100380', '800002324', '2021FA', ',student'), -('100021', '800002326', '2021FA', ',student'), -('100136', '800002326', '2021FA', ',student'), -('100268', '800002326', '2021FA', ',student'), -('100294', '800002326', '2021FA', ',student'), -('100529', '800002326', '2021FA', ',student'), -('100045', '800002328', '2021FA', ',student'), -('100473', '800002328', '2021FA', ',student'), -('100478', '800002328', '2021FA', ',student'), -('100498', '800002328', '2021FA', ',student'), -('100606', '800002328', '2021FA', ',student'), -('100048', '800002330', '2021FA', ',student'), -('100288', '800002330', '2021FA', ',student'), -('100537', '800002330', '2021FA', ',student'), -('100559', '800002330', '2021FA', ',student'), -('100624', '800002330', '2021FA', ',student'), -('100145', '800002331', '2021FA', ',student'), -('100155', '800002331', '2021FA', ',student'), -('100175', '800002331', '2021FA', ',student'), -('100389', '800002331', '2021FA', ',student'), -('100575', '800002331', '2021FA', ',student'), -('100138', '800002337', '2021FA', ',student'), -('100344', '800002337', '2021FA', ',student'), -('100615', '800002337', '2021FA', ',student'), -('100622', '800002337', '2021FA', ',student'), -('100624', '800002337', '2021FA', ',student'), -('100144', '800002338', '2021FA', ',student'), -('100154', '800002338', '2021FA', ',student'), -('100352', '800002338', '2021FA', ',student'), -('100453', '800002338', '2021FA', ',student'), -('100549', '800002338', '2021FA', ',student'), -('100063', '800002340', '2021FA', ',student'), -('100098', '800002340', '2021FA', ',student'), -('100223', '800002340', '2021FA', ',student'), -('100343', '800002340', '2021FA', ',student'), -('100499', '800002340', '2021FA', ',student'), -('100010', '800002341', '2021FA', ',student'), -('100063', '800002341', '2021FA', ',student'), -('100234', '800002341', '2021FA', ',student'), -('100360', '800002341', '2021FA', ',student'), -('100503', '800002341', '2021FA', ',student'), -('100064', '800002342', '2021FA', ',student'), -('100070', '800002342', '2021FA', ',student'), -('100292', '800002342', '2021FA', ',student'), -('100431', '800002342', '2021FA', ',student'), -('100583', '800002342', '2021FA', ',student'), -('100048', '800002343', '2021FA', ',student'), -('100266', '800002343', '2021FA', ',student'), -('100389', '800002343', '2021FA', ',student'), -('100426', '800002343', '2021FA', ',student'), -('100488', '800002343', '2021FA', ',student'), -('100016', '800002346', '2021FA', ',student'), -('100046', '800002346', '2021FA', ',student'), -('100065', '800002346', '2021FA', ',student'), -('100117', '800002346', '2021FA', ',student'), -('100453', '800002346', '2021FA', ',student'), -('100046', '800002351', '2021FA', ',student'), -('100195', '800002351', '2021FA', ',student'), -('100307', '800002351', '2021FA', ',student'), -('100362', '800002351', '2021FA', ',student'), -('100544', '800002351', '2021FA', ',student'), -('100174', '800002352', '2021FA', ',student'), -('100269', '800002352', '2021FA', ',student'), -('100312', '800002352', '2021FA', ',student'), -('100558', '800002352', '2021FA', ',student'), -('100581', '800002352', '2021FA', ',student'), -('100104', '800002353', '2021FA', ',student'), -('100180', '800002353', '2021FA', ',student'), -('100251', '800002353', '2021FA', ',student'), -('100390', '800002353', '2021FA', ',student'), -('100404', '800002353', '2021FA', ',student'), -('100025', '800002354', '2021FA', ',student'), -('100099', '800002354', '2021FA', ',student'), -('100289', '800002354', '2021FA', ',student'), -('100382', '800002354', '2021FA', ',student'), -('100605', '800002354', '2021FA', ',student'), -('100099', '800002355', '2021FA', ',student'), -('100194', '800002355', '2021FA', ',student'), -('100196', '800002355', '2021FA', ',student'), -('100566', '800002355', '2021FA', ',student'), -('100607', '800002355', '2021FA', ',student'), -('100030', '800002357', '2021FA', ',student'), -('100190', '800002357', '2021FA', ',student'), -('100305', '800002357', '2021FA', ',student'), -('100326', '800002357', '2021FA', ',student'), -('100592', '800002357', '2021FA', ',student'), -('100026', '800002358', '2021FA', ',student'), -('100307', '800002358', '2021FA', ',student'), -('100356', '800002358', '2021FA', ',student'), -('100523', '800002358', '2021FA', ',student'), -('100580', '800002358', '2021FA', ',student'), -('100068', '800002359', '2021FA', ',student'), -('100110', '800002359', '2021FA', ',student'), -('100212', '800002359', '2021FA', ',student'), -('100361', '800002359', '2021FA', ',student'), -('100474', '800002359', '2021FA', ',student'), -('100025', '800002360', '2021FA', ',student'), -('100188', '800002360', '2021FA', ',student'), -('100446', '800002360', '2021FA', ',student'), -('100533', '800002360', '2021FA', ',student'), -('100539', '800002360', '2021FA', ',student'), -('100128', '800002361', '2021FA', ',student'), -('100337', '800002361', '2021FA', ',student'), -('100379', '800002361', '2021FA', ',student'), -('100493', '800002361', '2021FA', ',student'), -('100620', '800002361', '2021FA', ',student'), -('100025', '800002363', '2021FA', ',student'), -('100106', '800002363', '2021FA', ',student'), -('100224', '800002363', '2021FA', ',student'), -('100347', '800002363', '2021FA', ',student'), -('100510', '800002363', '2021FA', ',student'), -('100226', '800002364', '2021FA', ',student'), -('100255', '800002364', '2021FA', ',student'), -('100306', '800002364', '2021FA', ',student'), -('100543', '800002364', '2021FA', ',student'), -('100600', '800002364', '2021FA', ',student'), -('100189', '800002365', '2021FA', ',student'), -('100202', '800002365', '2021FA', ',student'), -('100224', '800002365', '2021FA', ',student'), -('100248', '800002365', '2021FA', ',student'), -('100252', '800002365', '2021FA', ',student'), -('100042', '800002369', '2021FA', ',student'), -('100045', '800002369', '2021FA', ',student'), -('100269', '800002369', '2021FA', ',student'), -('100404', '800002369', '2021FA', ',student'), -('100422', '800002369', '2021FA', ',student'), -('100047', '800002370', '2021FA', ',student'), -('100128', '800002370', '2021FA', ',student'), -('100168', '800002370', '2021FA', ',student'), -('100354', '800002370', '2021FA', ',student'), -('100369', '800002370', '2021FA', ',student'), -('100078', '800002371', '2021FA', ',student'), -('100276', '800002371', '2021FA', ',student'), -('100325', '800002371', '2021FA', ',student'), -('100330', '800002371', '2021FA', ',student'), -('100395', '800002371', '2021FA', ',student'), -('100030', '800002373', '2021FA', ',student'), -('100038', '800002373', '2021FA', ',student'), -('100109', '800002373', '2021FA', ',student'), -('100335', '800002373', '2021FA', ',student'), -('100447', '800002373', '2021FA', ',student'), -('100180', '800002375', '2021FA', ',student'), -('100312', '800002375', '2021FA', ',student'), -('100379', '800002375', '2021FA', ',student'), -('100472', '800002375', '2021FA', ',student'), -('100608', '800002375', '2021FA', ',student'), -('100117', '800002378', '2021FA', ',student'), -('100286', '800002378', '2021FA', ',student'), -('100292', '800002378', '2021FA', ',student'), -('100386', '800002378', '2021FA', ',student'), -('100564', '800002378', '2021FA', ',student'), -('100075', '800002379', '2021FA', ',student'), -('100243', '800002379', '2021FA', ',student'), -('100410', '800002379', '2021FA', ',student'), -('100431', '800002379', '2021FA', ',student'), -('100601', '800002379', '2021FA', ',student'), -('100315', '800002382', '2021FA', ',student'), -('100369', '800002382', '2021FA', ',student'), -('100380', '800002382', '2021FA', ',student'), -('100558', '800002382', '2021FA', ',student'), -('100621', '800002382', '2021FA', ',student'), -('100091', '800002384', '2021FA', ',student'), -('100216', '800002384', '2021FA', ',student'), -('100313', '800002384', '2021FA', ',student'), -('100413', '800002384', '2021FA', ',student'), -('100598', '800002384', '2021FA', ',student'), -('100025', '800002387', '2021FA', ',student'), -('100224', '800002387', '2021FA', ',student'), -('100287', '800002387', '2021FA', ',student'), -('100326', '800002387', '2021FA', ',student'), -('100580', '800002387', '2021FA', ',student'), -('100031', '800002388', '2021FA', ',student'), -('100092', '800002388', '2021FA', ',student'), -('100139', '800002388', '2021FA', ',student'), -('100337', '800002388', '2021FA', ',student'), -('100609', '800002388', '2021FA', ',student'), -('100105', '800002393', '2021FA', ',student'), -('100332', '800002393', '2021FA', ',student'), -('100403', '800002393', '2021FA', ',student'), -('100528', '800002393', '2021FA', ',student'), -('100596', '800002393', '2021FA', ',student'), -('100071', '800002395', '2021FA', ',student'), -('100078', '800002395', '2021FA', ',student'), -('100438', '800002395', '2021FA', ',student'), -('100483', '800002395', '2021FA', ',student'), -('100608', '800002395', '2021FA', ',student'), -('100018', '800002397', '2021FA', ',student'), -('100178', '800002397', '2021FA', ',student'), -('100306', '800002397', '2021FA', ',student'), -('100543', '800002397', '2021FA', ',student'), -('100544', '800002397', '2021FA', ',student'), -('100022', '800002399', '2021FA', ',student'), -('100036', '800002399', '2021FA', ',student'), -('100240', '800002399', '2021FA', ',student'), -('100348', '800002399', '2021FA', ',student'), -('100368', '800002399', '2021FA', ',student'), -('100168', '800002400', '2021FA', ',student'), -('100267', '800002400', '2021FA', ',student'), -('100277', '800002400', '2021FA', ',student'), -('100460', '800002400', '2021FA', ',student'), -('100548', '800002400', '2021FA', ',student'), -('100154', '800002401', '2021FA', ',student'), -('100171', '800002401', '2021FA', ',student'), -('100374', '800002401', '2021FA', ',student'), -('100471', '800002401', '2021FA', ',student'), -('100619', '800002401', '2021FA', ',student'), -('100071', '800002403', '2021FA', ',student'), -('100075', '800002403', '2021FA', ',student'), -('100086', '800002403', '2021FA', ',student'), -('100224', '800002403', '2021FA', ',student'), -('100299', '800002403', '2021FA', ',student'), -('100160', '800002404', '2021FA', ',student'), -('100265', '800002404', '2021FA', ',student'), -('100303', '800002404', '2021FA', ',student'), -('100364', '800002404', '2021FA', ',student'), -('100525', '800002404', '2021FA', ',student'), -('100004', '800002405', '2021FA', ',student'), -('100008', '800002405', '2021FA', ',student'), -('100133', '800002405', '2021FA', ',student'), -('100408', '800002405', '2021FA', ',student'), -('100561', '800002405', '2021FA', ',student'), -('100031', '800002406', '2021FA', ',student'), -('100193', '800002406', '2021FA', ',student'), -('100219', '800002406', '2021FA', ',student'), -('100445', '800002406', '2021FA', ',student'), -('100544', '800002406', '2021FA', ',student'), -('100204', '800002408', '2021FA', ',student'), -('100219', '800002408', '2021FA', ',student'), -('100312', '800002408', '2021FA', ',student'), -('100326', '800002408', '2021FA', ',student'), -('100359', '800002408', '2021FA', ',student'), -('100123', '800002410', '2021FA', ',student'), -('100151', '800002410', '2021FA', ',student'), -('100313', '800002410', '2021FA', ',student'), -('100325', '800002410', '2021FA', ',student'), -('100327', '800002410', '2021FA', ',student'), -('100202', '800002412', '2021FA', ',student'), -('100442', '800002412', '2021FA', ',student'), -('100494', '800002412', '2021FA', ',student'), -('100556', '800002412', '2021FA', ',student'), -('100573', '800002412', '2021FA', ',student'), -('100023', '800002414', '2021FA', ',student'), -('100235', '800002414', '2021FA', ',student'), -('100289', '800002414', '2021FA', ',student'), -('100292', '800002414', '2021FA', ',student'), -('100572', '800002414', '2021FA', ',student'), -('100104', '800002416', '2021FA', ',student'), -('100179', '800002416', '2021FA', ',student'), -('100211', '800002416', '2021FA', ',student'), -('100259', '800002416', '2021FA', ',student'), -('100299', '800002416', '2021FA', ',student'), -('100117', '800002417', '2021FA', ',student'), -('100131', '800002417', '2021FA', ',student'), -('100228', '800002417', '2021FA', ',student'), -('100380', '800002417', '2021FA', ',student'), -('100602', '800002417', '2021FA', ',student'), -('100079', '800002418', '2021FA', ',student'), -('100135', '800002418', '2021FA', ',student'), -('100251', '800002418', '2021FA', ',student'), -('100351', '800002418', '2021FA', ',student'), -('100543', '800002418', '2021FA', ',student'), -('100227', '800002420', '2021FA', ',student'), -('100232', '800002420', '2021FA', ',student'), -('100303', '800002420', '2021FA', ',student'), -('100462', '800002420', '2021FA', ',student'), -('100471', '800002420', '2021FA', ',student'), -('100139', '800002422', '2021FA', ',student'), -('100222', '800002422', '2021FA', ',student'), -('100275', '800002422', '2021FA', ',student'), -('100368', '800002422', '2021FA', ',student'), -('100529', '800002422', '2021FA', ',student'), -('100232', '800002425', '2021FA', ',student'), -('100349', '800002425', '2021FA', ',student'), -('100395', '800002425', '2021FA', ',student'), -('100462', '800002425', '2021FA', ',student'), -('100494', '800002425', '2021FA', ',student'), -('100021', '800002426', '2021FA', ',student'), -('100025', '800002426', '2021FA', ',student'), -('100179', '800002426', '2021FA', ',student'), -('100498', '800002426', '2021FA', ',student'), -('100564', '800002426', '2021FA', ',student'), -('100152', '800002427', '2021FA', ',student'), -('100161', '800002427', '2021FA', ',student'), -('100377', '800002427', '2021FA', ',student'), -('100450', '800002427', '2021FA', ',student'), -('100601', '800002427', '2021FA', ',student'), -('100023', '800002428', '2021FA', ',student'), -('100096', '800002428', '2021FA', ',student'), -('100226', '800002428', '2021FA', ',student'), -('100331', '800002428', '2021FA', ',student'), -('100581', '800002428', '2021FA', ',student'), -('100067', '800002429', '2021FA', ',student'), -('100239', '800002429', '2021FA', ',student'), -('100282', '800002429', '2021FA', ',student'), -('100293', '800002429', '2021FA', ',student'), -('100532', '800002429', '2021FA', ',student'), -('100184', '800002431', '2021FA', ',student'), -('100224', '800002431', '2021FA', ',student'), -('100235', '800002431', '2021FA', ',student'), -('100477', '800002431', '2021FA', ',student'), -('100605', '800002431', '2021FA', ',student'), -('100076', '800002433', '2021FA', ',student'), -('100296', '800002433', '2021FA', ',student'), -('100381', '800002433', '2021FA', ',student'), -('100526', '800002433', '2021FA', ',student'), -('100609', '800002433', '2021FA', ',student'), -('100047', '800002434', '2021FA', ',student'), -('100369', '800002434', '2021FA', ',student'), -('100385', '800002434', '2021FA', ',student'), -('100399', '800002434', '2021FA', ',student'), -('100541', '800002434', '2021FA', ',student'), -('100176', '800002435', '2021FA', ',student'), -('100231', '800002435', '2021FA', ',student'), -('100357', '800002435', '2021FA', ',student'), -('100418', '800002435', '2021FA', ',student'), -('100534', '800002435', '2021FA', ',student'), -('100095', '800002438', '2021FA', ',student'), -('100107', '800002438', '2021FA', ',student'), -('100250', '800002438', '2021FA', ',student'), -('100310', '800002438', '2021FA', ',student'), -('100344', '800002438', '2021FA', ',student'), -('100179', '800002442', '2021FA', ',student'), -('100214', '800002442', '2021FA', ',student'), -('100223', '800002442', '2021FA', ',student'), -('100348', '800002442', '2021FA', ',student'), -('100510', '800002442', '2021FA', ',student'), -('100146', '800002443', '2021FA', ',student'), -('100417', '800002443', '2021FA', ',student'), -('100483', '800002443', '2021FA', ',student'), -('100491', '800002443', '2021FA', ',student'), -('100620', '800002443', '2021FA', ',student'), -('100082', '800002444', '2021FA', ',student'), -('100111', '800002444', '2021FA', ',student'), -('100302', '800002444', '2021FA', ',student'), -('100506', '800002444', '2021FA', ',student'), -('100591', '800002444', '2021FA', ',student'), -('100177', '800002445', '2021FA', ',student'), -('100189', '800002445', '2021FA', ',student'), -('100198', '800002445', '2021FA', ',student'), -('100253', '800002445', '2021FA', ',student'), -('100364', '800002445', '2021FA', ',student'), -('100042', '800002447', '2021FA', ',student'), -('100095', '800002447', '2021FA', ',student'), -('100320', '800002447', '2021FA', ',student'), -('100369', '800002447', '2021FA', ',student'), -('100493', '800002447', '2021FA', ',student'), -('100128', '800002449', '2021FA', ',student'), -('100372', '800002449', '2021FA', ',student'), -('100397', '800002449', '2021FA', ',student'), -('100474', '800002449', '2021FA', ',student'), -('100591', '800002449', '2021FA', ',student'), -('100047', '800002450', '2021FA', ',student'), -('100212', '800002450', '2021FA', ',student'), -('100310', '800002450', '2021FA', ',student'), -('100498', '800002450', '2021FA', ',student'), -('100542', '800002450', '2021FA', ',student'), -('100002', '800002451', '2021FA', ',student'), -('100012', '800002451', '2021FA', ',student'), -('100072', '800002451', '2021FA', ',student'), -('100323', '800002451', '2021FA', ',student'), -('100589', '800002451', '2021FA', ',student'), -('100016', '800002452', '2021FA', ',student'), -('100178', '800002452', '2021FA', ',student'), -('100306', '800002452', '2021FA', ',student'), -('100351', '800002452', '2021FA', ',student'), -('100364', '800002452', '2021FA', ',student'), -('100005', '800002453', '2021FA', ',student'), -('100422', '800002453', '2021FA', ',student'), -('100492', '800002453', '2021FA', ',student'), -('100540', '800002453', '2021FA', ',student'), -('100548', '800002453', '2021FA', ',student'), -('100034', '800002455', '2021FA', ',student'), -('100163', '800002455', '2021FA', ',student'), -('100355', '800002455', '2021FA', ',student'), -('100474', '800002455', '2021FA', ',student'), -('100584', '800002455', '2021FA', ',student'), -('100044', '800002456', '2021FA', ',student'), -('100371', '800002456', '2021FA', ',student'), -('100396', '800002456', '2021FA', ',student'), -('100540', '800002456', '2021FA', ',student'), -('100596', '800002456', '2021FA', ',student'), -('100065', '800002458', '2021FA', ',student'), -('100076', '800002458', '2021FA', ',student'), -('100133', '800002458', '2021FA', ',student'), -('100368', '800002458', '2021FA', ',student'), -('100375', '800002458', '2021FA', ',student'), -('100054', '800002461', '2021FA', ',student'), -('100105', '800002461', '2021FA', ',student'), -('100141', '800002461', '2021FA', ',student'), -('100257', '800002461', '2021FA', ',student'), -('100525', '800002461', '2021FA', ',student'), -('100066', '800002463', '2021FA', ',student'), -('100106', '800002463', '2021FA', ',student'), -('100124', '800002463', '2021FA', ',student'), -('100222', '800002463', '2021FA', ',student'), -('100373', '800002463', '2021FA', ',student'), -('100031', '800002464', '2021FA', ',student'), -('100066', '800002464', '2021FA', ',student'), -('100105', '800002464', '2021FA', ',student'), -('100521', '800002464', '2021FA', ',student'), -('100577', '800002464', '2021FA', ',student'), -('100075', '800002465', '2021FA', ',student'), -('100323', '800002465', '2021FA', ',student'), -('100443', '800002465', '2021FA', ',student'), -('100491', '800002465', '2021FA', ',student'), -('100622', '800002465', '2021FA', ',student'), -('100066', '800002469', '2021FA', ',student'), -('100070', '800002469', '2021FA', ',student'), -('100327', '800002469', '2021FA', ',student'), -('100331', '800002469', '2021FA', ',student'), -('100624', '800002469', '2021FA', ',student'), -('100102', '800002470', '2021FA', ',student'), -('100282', '800002470', '2021FA', ',student'), -('100328', '800002470', '2021FA', ',student'), -('100390', '800002470', '2021FA', ',student'), -('100592', '800002470', '2021FA', ',student'), -('100012', '800002471', '2021FA', ',student'), -('100045', '800002471', '2021FA', ',student'), -('100053', '800002471', '2021FA', ',student'), -('100111', '800002471', '2021FA', ',student'), -('100568', '800002471', '2021FA', ',student'), -('100019', '800002475', '2021FA', ',student'), -('100183', '800002475', '2021FA', ',student'), -('100232', '800002475', '2021FA', ',student'), -('100315', '800002475', '2021FA', ',student'), -('100389', '800002475', '2021FA', ',student'), -('100026', '800002476', '2021FA', ',student'), -('100086', '800002476', '2021FA', ',student'), -('100197', '800002476', '2021FA', ',student'), -('100287', '800002476', '2021FA', ',student'), -('100466', '800002476', '2021FA', ',student'), -('100022', '800002477', '2021FA', ',student'), -('100276', '800002477', '2021FA', ',student'), -('100305', '800002477', '2021FA', ',student'), -('100572', '800002477', '2021FA', ',student'), -('100623', '800002477', '2021FA', ',student'), -('100069', '800002478', '2021FA', ',student'), -('100117', '800002478', '2021FA', ',student'), -('100472', '800002478', '2021FA', ',student'), -('100559', '800002478', '2021FA', ',student'), -('100614', '800002478', '2021FA', ',student'), -('100029', '800002479', '2021FA', ',student'), -('100130', '800002479', '2021FA', ',student'), -('100233', '800002479', '2021FA', ',student'), -('100506', '800002479', '2021FA', ',student'), -('100576', '800002479', '2021FA', ',student'), -('100038', '800002480', '2021FA', ',student'), -('100189', '800002480', '2021FA', ',student'), -('100204', '800002480', '2021FA', ',student'), -('100415', '800002480', '2021FA', ',student'), -('100536', '800002480', '2021FA', ',student'), -('100197', '800002481', '2021FA', ',student'), -('100212', '800002481', '2021FA', ',student'), -('100440', '800002481', '2021FA', ',student'), -('100546', '800002481', '2021FA', ',student'), -('100568', '800002481', '2021FA', ',student'), -('100174', '800002482', '2021FA', ',student'), -('100227', '800002482', '2021FA', ',student'), -('100261', '800002482', '2021FA', ',student'), -('100306', '800002482', '2021FA', ',student'), -('100548', '800002482', '2021FA', ',student'), -('100006', '800002483', '2021FA', ',student'), -('100127', '800002483', '2021FA', ',student'), -('100236', '800002483', '2021FA', ',student'), -('100338', '800002483', '2021FA', ',student'), -('100592', '800002483', '2021FA', ',student'), -('100091', '800002487', '2021FA', ',student'), -('100125', '800002487', '2021FA', ',student'), -('100242', '800002487', '2021FA', ',student'), -('100248', '800002487', '2021FA', ',student'), -('100337', '800002487', '2021FA', ',student'), -('100010', '800002490', '2021FA', ',student'), -('100073', '800002490', '2021FA', ',student'), -('100271', '800002490', '2021FA', ',student'), -('100291', '800002490', '2021FA', ',student'), -('100567', '800002490', '2021FA', ',student'), -('100456', '800002491', '2021FA', ',student'), -('100485', '800002491', '2021FA', ',student'), -('100487', '800002491', '2021FA', ',student'), -('100588', '800002491', '2021FA', ',student'), -('100609', '800002491', '2021FA', ',student'), -('100001', '800002492', '2021FA', ',student'), -('100218', '800002492', '2021FA', ',student'), -('100269', '800002492', '2021FA', ',student'), -('100379', '800002492', '2021FA', ',student'), -('100532', '800002492', '2021FA', ',student'), -('100071', '800002493', '2021FA', ',student'), -('100139', '800002493', '2021FA', ',student'), -('100302', '800002493', '2021FA', ',student'), -('100554', '800002493', '2021FA', ',student'), -('100592', '800002493', '2021FA', ',student'), -('100058', '800002494', '2021FA', ',student'), -('100069', '800002494', '2021FA', ',student'), -('100175', '800002494', '2021FA', ',student'), -('100183', '800002494', '2021FA', ',student'), -('100434', '800002494', '2021FA', ',student'), -('100171', '800002500', '2021FA', ',student'), -('100202', '800002500', '2021FA', ',student'), -('100370', '800002500', '2021FA', ',student'), -('100385', '800002500', '2021FA', ',student'), -('100401', '800002500', '2021FA', ',student'), -('100011', '800002501', '2021FA', ',student'), -('100056', '800002501', '2021FA', ',student'), -('100288', '800002501', '2021FA', ',student'), -('100356', '800002501', '2021FA', ',student'), -('100423', '800002501', '2021FA', ',student'), -('100250', '800002502', '2021FA', ',student'), -('100320', '800002502', '2021FA', ',student'), -('100403', '800002502', '2021FA', ',student'), -('100482', '800002502', '2021FA', ',student'), -('100612', '800002502', '2021FA', ',student'), -('100042', '800002503', '2021FA', ',student'), -('100400', '800002503', '2021FA', ',student'), -('100416', '800002503', '2021FA', ',student'), -('100517', '800002503', '2021FA', ',student'), -('100526', '800002503', '2021FA', ',student'), -('100409', '800002507', '2021FA', ',student'), -('100434', '800002507', '2021FA', ',student'), -('100466', '800002507', '2021FA', ',student'), -('100494', '800002507', '2021FA', ',student'), -('100548', '800002507', '2021FA', ',student'), -('100051', '800002509', '2021FA', ',student'), -('100217', '800002509', '2021FA', ',student'), -('100293', '800002509', '2021FA', ',student'), -('100325', '800002509', '2021FA', ',student'), -('100408', '800002509', '2021FA', ',student'), -('100254', '800002511', '2021FA', ',student'), -('100517', '800002511', '2021FA', ',student'), -('100535', '800002511', '2021FA', ',student'), -('100599', '800002511', '2021FA', ',student'), -('100612', '800002511', '2021FA', ',student'), -('100106', '800002514', '2021FA', ',student'), -('100128', '800002514', '2021FA', ',student'), -('100370', '800002514', '2021FA', ',student'), -('100565', '800002514', '2021FA', ',student'), -('100609', '800002514', '2021FA', ',student'), -('100081', '800002515', '2021FA', ',student'), -('100087', '800002515', '2021FA', ',student'), -('100095', '800002515', '2021FA', ',student'), -('100120', '800002515', '2021FA', ',student'), -('100391', '800002515', '2021FA', ',student'), -('100013', '800002516', '2021FA', ',student'), -('100149', '800002516', '2021FA', ',student'), -('100264', '800002516', '2021FA', ',student'), -('100269', '800002516', '2021FA', ',student'), -('100426', '800002516', '2021FA', ',student'), -('100007', '800002517', '2021FA', ',student'), -('100279', '800002517', '2021FA', ',student'), -('100439', '800002517', '2021FA', ',student'), -('100472', '800002517', '2021FA', ',student'), -('100566', '800002517', '2021FA', ',student'), -('100077', '800002518', '2021FA', ',student'), -('100161', '800002518', '2021FA', ',student'), -('100348', '800002518', '2021FA', ',student'), -('100443', '800002518', '2021FA', ',student'), -('100513', '800002518', '2021FA', ',student'), -('100068', '800002519', '2021FA', ',student'), -('100094', '800002519', '2021FA', ',student'), -('100362', '800002519', '2021FA', ',student'), -('100463', '800002519', '2021FA', ',student'), -('100568', '800002519', '2021FA', ',student'), -('100028', '800002523', '2021FA', ',student'), -('100113', '800002523', '2021FA', ',student'), -('100319', '800002523', '2021FA', ',student'), -('100563', '800002523', '2021FA', ',student'), -('100590', '800002523', '2021FA', ',student'), -('100142', '800002524', '2021FA', ',student'), -('100147', '800002524', '2021FA', ',student'), -('100425', '800002524', '2021FA', ',student'), -('100511', '800002524', '2021FA', ',student'), -('100579', '800002524', '2021FA', ',student'), -('100121', '800002525', '2021FA', ',student'), -('100418', '800002525', '2021FA', ',student'), -('100477', '800002525', '2021FA', ',student'), -('100551', '800002525', '2021FA', ',student'), -('100572', '800002525', '2021FA', ',student'), -('100128', '800002526', '2021FA', ',student'), -('100269', '800002526', '2021FA', ',student'), -('100337', '800002526', '2021FA', ',student'), -('100453', '800002526', '2021FA', ',student'), -('100597', '800002526', '2021FA', ',student'), -('100030', '800002527', '2021FA', ',student'), -('100042', '800002527', '2021FA', ',student'), -('100064', '800002527', '2021FA', ',student'), -('100201', '800002527', '2021FA', ',student'), -('100543', '800002527', '2021FA', ',student'), -('100029', '800002528', '2021FA', ',student'), -('100232', '800002528', '2021FA', ',student'), -('100245', '800002528', '2021FA', ',student'), -('100603', '800002528', '2021FA', ',student'), -('100619', '800002528', '2021FA', ',student'), -('100089', '800002530', '2021FA', ',student'), -('100095', '800002530', '2021FA', ',student'), -('100299', '800002530', '2021FA', ',student'), -('100553', '800002530', '2021FA', ',student'), -('100575', '800002530', '2021FA', ',student'), -('100004', '800002531', '2021FA', ',student'), -('100190', '800002531', '2021FA', ',student'), -('100227', '800002531', '2021FA', ',student'), -('100239', '800002531', '2021FA', ',student'), -('100261', '800002531', '2021FA', ',student'), -('100122', '800002533', '2021FA', ',student'), -('100196', '800002533', '2021FA', ',student'), -('100494', '800002533', '2021FA', ',student'), -('100606', '800002533', '2021FA', ',student'), -('100609', '800002533', '2021FA', ',student'), -('100444', '800002534', '2021FA', ',student'), -('100451', '800002534', '2021FA', ',student'), -('100456', '800002534', '2021FA', ',student'), -('100508', '800002534', '2021FA', ',student'), -('100610', '800002534', '2021FA', ',student'), -('100155', '800002536', '2021FA', ',student'), -('100515', '800002536', '2021FA', ',student'), -('100566', '800002536', '2021FA', ',student'), -('100594', '800002536', '2021FA', ',student'), -('100618', '800002536', '2021FA', ',student'), -('100025', '800002537', '2021FA', ',student'), -('100237', '800002537', '2021FA', ',student'), -('100314', '800002537', '2021FA', ',student'), -('100380', '800002537', '2021FA', ',student'), -('100526', '800002537', '2021FA', ',student'), -('100038', '800002539', '2021FA', ',student'), -('100246', '800002539', '2021FA', ',student'), -('100279', '800002539', '2021FA', ',student'), -('100549', '800002539', '2021FA', ',student'), -('100586', '800002539', '2021FA', ',student'), -('100121', '800002540', '2021FA', ',student'), -('100316', '800002540', '2021FA', ',student'), -('100339', '800002540', '2021FA', ',student'), -('100377', '800002540', '2021FA', ',student'), -('100457', '800002540', '2021FA', ',student'), -('100264', '800002541', '2021FA', ',student'), -('100340', '800002541', '2021FA', ',student'), -('100360', '800002541', '2021FA', ',student'), -('100448', '800002541', '2021FA', ',student'), -('100553', '800002541', '2021FA', ',student'), -('100017', '800002543', '2021FA', ',student'), -('100032', '800002543', '2021FA', ',student'), -('100170', '800002543', '2021FA', ',student'), -('100235', '800002543', '2021FA', ',student'), -('100511', '800002543', '2021FA', ',student'), -('100002', '800002548', '2021FA', ',student'), -('100041', '800002548', '2021FA', ',student'), -('100108', '800002548', '2021FA', ',student'), -('100405', '800002548', '2021FA', ',student'), -('100589', '800002548', '2021FA', ',student'), -('100144', '800002549', '2021FA', ',student'), -('100193', '800002549', '2021FA', ',student'), -('100306', '800002549', '2021FA', ',student'), -('100396', '800002549', '2021FA', ',student'), -('100406', '800002549', '2021FA', ',student'), -('100375', '800002551', '2021FA', ',student'), -('100547', '800002551', '2021FA', ',student'), -('100582', '800002551', '2021FA', ',student'), -('100601', '800002551', '2021FA', ',student'), -('100624', '800002551', '2021FA', ',student'), -('100000', '800002553', '2021FA', ',student'), -('100059', '800002553', '2021FA', ',student'), -('100116', '800002553', '2021FA', ',student'), -('100180', '800002553', '2021FA', ',student'), -('100303', '800002553', '2021FA', ',student'), -('100047', '800002556', '2021FA', ',student'), -('100301', '800002556', '2021FA', ',student'), -('100305', '800002556', '2021FA', ',student'), -('100537', '800002556', '2021FA', ',student'), -('100623', '800002556', '2021FA', ',student'), -('100351', '800002557', '2021FA', ',student'), -('100372', '800002557', '2021FA', ',student'), -('100426', '800002557', '2021FA', ',student'), -('100531', '800002557', '2021FA', ',student'), -('100575', '800002557', '2021FA', ',student'), -('100011', '800002559', '2021FA', ',student'), -('100073', '800002559', '2021FA', ',student'), -('100493', '800002559', '2021FA', ',student'), -('100546', '800002559', '2021FA', ',student'), -('100593', '800002559', '2021FA', ',student'), -('100023', '800002560', '2021FA', ',student'), -('100218', '800002560', '2021FA', ',student'), -('100445', '800002560', '2021FA', ',student'), -('100536', '800002560', '2021FA', ',student'), -('100548', '800002560', '2021FA', ',student'), -('100398', '800002561', '2021FA', ',student'), -('100431', '800002561', '2021FA', ',student'), -('100506', '800002561', '2021FA', ',student'), -('100532', '800002561', '2021FA', ',student'), -('100613', '800002561', '2021FA', ',student'), -('100038', '800002562', '2021FA', ',student'), -('100069', '800002562', '2021FA', ',student'), -('100313', '800002562', '2021FA', ',student'), -('100339', '800002562', '2021FA', ',student'), -('100504', '800002562', '2021FA', ',student'), -('100031', '800002569', '2021FA', ',student'), -('100182', '800002569', '2021FA', ',student'), -('100244', '800002569', '2021FA', ',student'), -('100369', '800002569', '2021FA', ',student'), -('100519', '800002569', '2021FA', ',student'), -('100062', '800002570', '2021FA', ',student'), -('100162', '800002570', '2021FA', ',student'), -('100222', '800002570', '2021FA', ',student'), -('100427', '800002570', '2021FA', ',student'), -('100548', '800002570', '2021FA', ',student'), -('100067', '800002574', '2021FA', ',student'), -('100097', '800002574', '2021FA', ',student'), -('100145', '800002574', '2021FA', ',student'), -('100336', '800002574', '2021FA', ',student'), -('100405', '800002574', '2021FA', ',student'), -('100021', '800002575', '2021FA', ',student'), -('100174', '800002575', '2021FA', ',student'), -('100362', '800002575', '2021FA', ',student'), -('100385', '800002575', '2021FA', ',student'), -('100508', '800002575', '2021FA', ',student'), -('100277', '800002576', '2021FA', ',student'), -('100354', '800002576', '2021FA', ',student'), -('100430', '800002576', '2021FA', ',student'), -('100566', '800002576', '2021FA', ',student'), -('100599', '800002576', '2021FA', ',student'), -('100006', '800002577', '2021FA', ',student'), -('100023', '800002577', '2021FA', ',student'), -('100346', '800002577', '2021FA', ',student'), -('100417', '800002577', '2021FA', ',student'), -('100523', '800002577', '2021FA', ',student'), -('100040', '800002578', '2021FA', ',student'), -('100321', '800002578', '2021FA', ',student'), -('100325', '800002578', '2021FA', ',student'), -('100348', '800002578', '2021FA', ',student'), -('100579', '800002578', '2021FA', ',student'), -('100036', '800002579', '2021FA', ',student'), -('100101', '800002579', '2021FA', ',student'), -('100249', '800002579', '2021FA', ',student'), -('100289', '800002579', '2021FA', ',student'), -('100542', '800002579', '2021FA', ',student'), -('100008', '800002581', '2021FA', ',student'), -('100100', '800002581', '2021FA', ',student'), -('100115', '800002581', '2021FA', ',student'), -('100538', '800002581', '2021FA', ',student'), -('100602', '800002581', '2021FA', ',student'), -('100172', '800002582', '2021FA', ',student'), -('100213', '800002582', '2021FA', ',student'), -('100241', '800002582', '2021FA', ',student'), -('100341', '800002582', '2021FA', ',student'), -('100391', '800002582', '2021FA', ',student'), -('100067', '800002583', '2021FA', ',student'), -('100093', '800002583', '2021FA', ',student'), -('100097', '800002583', '2021FA', ',student'), -('100322', '800002583', '2021FA', ',student'), -('100404', '800002583', '2021FA', ',student'), -('100048', '800002584', '2021FA', ',student'), -('100098', '800002584', '2021FA', ',student'), -('100294', '800002584', '2021FA', ',student'), -('100311', '800002584', '2021FA', ',student'), -('100391', '800002584', '2021FA', ',student'), -('100010', '800002586', '2021FA', ',student'), -('100374', '800002586', '2021FA', ',student'), -('100470', '800002586', '2021FA', ',student'), -('100480', '800002586', '2021FA', ',student'), -('100587', '800002586', '2021FA', ',student'), -('100010', '800002587', '2021FA', ',student'), -('100116', '800002587', '2021FA', ',student'), -('100162', '800002587', '2021FA', ',student'), -('100365', '800002587', '2021FA', ',student'), -('100486', '800002587', '2021FA', ',student'), -('100041', '800002588', '2021FA', ',student'), -('100135', '800002588', '2021FA', ',student'), -('100165', '800002588', '2021FA', ',student'), -('100210', '800002588', '2021FA', ',student'), -('100282', '800002588', '2021FA', ',student'), -('100025', '800002589', '2021FA', ',student'), -('100095', '800002589', '2021FA', ',student'), -('100453', '800002589', '2021FA', ',student'), -('100501', '800002589', '2021FA', ',student'), -('100541', '800002589', '2021FA', ',student'), -('100011', '800002591', '2021FA', ',student'), -('100357', '800002591', '2021FA', ',student'), -('100425', '800002591', '2021FA', ',student'), -('100504', '800002591', '2021FA', ',student'), -('100544', '800002591', '2021FA', ',student'), -('100243', '800002594', '2021FA', ',student'), -('100251', '800002594', '2021FA', ',student'), -('100258', '800002594', '2021FA', ',student'), -('100273', '800002594', '2021FA', ',student'), -('100462', '800002594', '2021FA', ',student'), -('100001', '800002595', '2021FA', ',student'), -('100042', '800002595', '2021FA', ',student'), -('100159', '800002595', '2021FA', ',student'), -('100255', '800002595', '2021FA', ',student'), -('100600', '800002595', '2021FA', ',student'), -('100067', '800002596', '2021FA', ',student'), -('100112', '800002596', '2021FA', ',student'), -('100116', '800002596', '2021FA', ',student'), -('100289', '800002596', '2021FA', ',student'), -('100371', '800002596', '2021FA', ',student'), -('100016', '800002597', '2021FA', ',student'), -('100160', '800002597', '2021FA', ',student'), -('100403', '800002597', '2021FA', ',student'), -('100622', '800002597', '2021FA', ',student'), -('100626', '800002597', '2021FA', ',student'), -('100185', '800002598', '2021FA', ',student'), -('100367', '800002598', '2021FA', ',student'), -('100496', '800002598', '2021FA', ',student'), -('100524', '800002598', '2021FA', ',student'), -('100606', '800002598', '2021FA', ',student'), -('100007', '800002599', '2021FA', ',student'), -('100257', '800002599', '2021FA', ',student'), -('100373', '800002599', '2021FA', ',student'), -('100470', '800002599', '2021FA', ',student'), -('100556', '800002599', '2021FA', ',student'), -('100166', '800002600', '2021FA', ',student'), -('100295', '800002600', '2021FA', ',student'), -('100503', '800002600', '2021FA', ',student'), -('100553', '800002600', '2021FA', ',student'), -('100624', '800002600', '2021FA', ',student'), -('100076', '800002603', '2021FA', ',student'), -('100510', '800002603', '2021FA', ',student'), -('100529', '800002603', '2021FA', ',student'), -('100581', '800002603', '2021FA', ',student'), -('100624', '800002603', '2021FA', ',student'), -('100006', '800002604', '2021FA', ',student'), -('100148', '800002604', '2021FA', ',student'), -('100330', '800002604', '2021FA', ',student'), -('100368', '800002604', '2021FA', ',student'), -('100411', '800002604', '2021FA', ',student'), -('100041', '800002605', '2021FA', ',student'), -('100108', '800002605', '2021FA', ',student'), -('100203', '800002605', '2021FA', ',student'), -('100464', '800002605', '2021FA', ',student'), -('100591', '800002605', '2021FA', ',student'), -('100026', '800002606', '2021FA', ',student'), -('100076', '800002606', '2021FA', ',student'), -('100122', '800002606', '2021FA', ',student'), -('100413', '800002606', '2021FA', ',student'), -('100523', '800002606', '2021FA', ',student'), -('100027', '800002607', '2021FA', ',student'), -('100037', '800002607', '2021FA', ',student'), -('100115', '800002607', '2021FA', ',student'), -('100319', '800002607', '2021FA', ',student'), -('100405', '800002607', '2021FA', ',student'), -('100078', '800002609', '2021FA', ',student'), -('100116', '800002609', '2021FA', ',student'), -('100192', '800002609', '2021FA', ',student'), -('100197', '800002609', '2021FA', ',student'), -('100365', '800002609', '2021FA', ',student'), -('100003', '800002611', '2021FA', ',student'), -('100358', '800002611', '2021FA', ',student'), -('100385', '800002611', '2021FA', ',student'), -('100599', '800002611', '2021FA', ',student'), -('100616', '800002611', '2021FA', ',student'), -('100254', '800002613', '2021FA', ',student'), -('100298', '800002613', '2021FA', ',student'), -('100301', '800002613', '2021FA', ',student'), -('100394', '800002613', '2021FA', ',student'), -('100400', '800002613', '2021FA', ',student'), -('100057', '800002616', '2021FA', ',student'), -('100110', '800002616', '2021FA', ',student'), -('100258', '800002616', '2021FA', ',student'), -('100464', '800002616', '2021FA', ',student'), -('100523', '800002616', '2021FA', ',student'), -('100115', '800002617', '2021FA', ',student'), -('100434', '800002617', '2021FA', ',student'), -('100466', '800002617', '2021FA', ',student'), -('100591', '800002617', '2021FA', ',student'), -('100597', '800002617', '2021FA', ',student'), -('100278', '800002618', '2021FA', ',student'), -('100367', '800002618', '2021FA', ',student'), -('100432', '800002618', '2021FA', ',student'), -('100499', '800002618', '2021FA', ',student'), -('100551', '800002618', '2021FA', ',student'), -('100028', '800002619', '2021FA', ',student'), -('100049', '800002619', '2021FA', ',student'), -('100131', '800002619', '2021FA', ',student'), -('100162', '800002619', '2021FA', ',student'), -('100595', '800002619', '2021FA', ',student'), -('100021', '800002620', '2021FA', ',student'), -('100152', '800002620', '2021FA', ',student'), -('100338', '800002620', '2021FA', ',student'), -('100534', '800002620', '2021FA', ',student'), -('100556', '800002620', '2021FA', ',student'), -('100042', '800002621', '2021FA', ',student'), -('100060', '800002621', '2021FA', ',student'), -('100129', '800002621', '2021FA', ',student'), -('100458', '800002621', '2021FA', ',student'), -('100556', '800002621', '2021FA', ',student'), -('100087', '800002622', '2021FA', ',student'), -('100127', '800002622', '2021FA', ',student'), -('100384', '800002622', '2021FA', ',student'), -('100539', '800002622', '2021FA', ',student'), -('100596', '800002622', '2021FA', ',student'), -('100014', '800002623', '2021FA', ',student'), -('100305', '800002623', '2021FA', ',student'), -('100439', '800002623', '2021FA', ',student'), -('100554', '800002623', '2021FA', ',student'), -('100584', '800002623', '2021FA', ',student'), -('100081', '800002627', '2021FA', ',student'), -('100130', '800002627', '2021FA', ',student'), -('100204', '800002627', '2021FA', ',student'), -('100265', '800002627', '2021FA', ',student'), -('100276', '800002627', '2021FA', ',student'), -('100030', '800002629', '2021FA', ',student'), -('100033', '800002629', '2021FA', ',student'), -('100089', '800002629', '2021FA', ',student'), -('100127', '800002629', '2021FA', ',student'), -('100175', '800002629', '2021FA', ',student'), -('100304', '800002630', '2021FA', ',student'), -('100310', '800002630', '2021FA', ',student'), -('100474', '800002630', '2021FA', ',student'), -('100586', '800002630', '2021FA', ',student'), -('100616', '800002630', '2021FA', ',student'), -('100047', '800002631', '2021FA', ',student'), -('100226', '800002631', '2021FA', ',student'), -('100337', '800002631', '2021FA', ',student'), -('100360', '800002631', '2021FA', ',student'), -('100372', '800002631', '2021FA', ',student'), -('100242', '800002634', '2021FA', ',student'), -('100254', '800002634', '2021FA', ',student'), -('100349', '800002634', '2021FA', ',student'), -('100353', '800002634', '2021FA', ',student'), -('100419', '800002634', '2021FA', ',student'), -('100001', '800002635', '2021FA', ',student'), -('100014', '800002635', '2021FA', ',student'), -('100161', '800002635', '2021FA', ',student'), -('100297', '800002635', '2021FA', ',student'), -('100536', '800002635', '2021FA', ',student'), -('100038', '800002637', '2021FA', ',student'), -('100055', '800002637', '2021FA', ',student'), -('100068', '800002637', '2021FA', ',student'), -('100195', '800002637', '2021FA', ',student'), -('100290', '800002637', '2021FA', ',student'), -('100034', '800002638', '2021FA', ',student'), -('100141', '800002638', '2021FA', ',student'), -('100214', '800002638', '2021FA', ',student'), -('100366', '800002638', '2021FA', ',student'), -('100626', '800002638', '2021FA', ',student'), -('100060', '800002639', '2021FA', ',student'), -('100258', '800002639', '2021FA', ',student'), -('100307', '800002639', '2021FA', ',student'), -('100403', '800002639', '2021FA', ',student'), -('100584', '800002639', '2021FA', ',student'), -('100040', '800002644', '2021FA', ',student'), -('100083', '800002644', '2021FA', ',student'), -('100088', '800002644', '2021FA', ',student'), -('100212', '800002644', '2021FA', ',student'), -('100616', '800002644', '2021FA', ',student'), -('100006', '800002645', '2021FA', ',student'), -('100024', '800002645', '2021FA', ',student'), -('100122', '800002645', '2021FA', ',student'), -('100558', '800002645', '2021FA', ',student'), -('100611', '800002645', '2021FA', ',student'), -('100260', '800002651', '2021FA', ',student'), -('100315', '800002651', '2021FA', ',student'), -('100438', '800002651', '2021FA', ',student'), -('100529', '800002651', '2021FA', ',student'), -('100554', '800002651', '2021FA', ',student'), -('100003', '800002652', '2021FA', ',student'), -('100062', '800002652', '2021FA', ',student'), -('100165', '800002652', '2021FA', ',student'), -('100400', '800002652', '2021FA', ',student'), -('100471', '800002652', '2021FA', ',student'), -('100063', '800002653', '2021FA', ',student'), -('100073', '800002653', '2021FA', ',student'), -('100154', '800002653', '2021FA', ',student'), -('100331', '800002653', '2021FA', ',student'), -('100569', '800002653', '2021FA', ',student'), -('100261', '800002655', '2021FA', ',student'), -('100271', '800002655', '2021FA', ',student'), -('100304', '800002655', '2021FA', ',student'), -('100408', '800002655', '2021FA', ',student'), -('100510', '800002655', '2021FA', ',student'), -('100124', '800002657', '2021FA', ',student'), -('100234', '800002657', '2021FA', ',student'), -('100387', '800002657', '2021FA', ',student'), -('100572', '800002657', '2021FA', ',student'), -('100592', '800002657', '2021FA', ',student'), -('100029', '800002658', '2021FA', ',student'), -('100207', '800002658', '2021FA', ',student'), -('100339', '800002658', '2021FA', ',student'), -('100469', '800002658', '2021FA', ',student'), -('100596', '800002658', '2021FA', ',student'), -('100031', '800002659', '2021FA', ',student'), -('100081', '800002659', '2021FA', ',student'), -('100117', '800002659', '2021FA', ',student'), -('100250', '800002659', '2021FA', ',student'), -('100318', '800002659', '2021FA', ',student'), -('100086', '800002660', '2021FA', ',student'), -('100220', '800002660', '2021FA', ',student'), -('100301', '800002660', '2021FA', ',student'), -('100369', '800002660', '2021FA', ',student'), -('100464', '800002660', '2021FA', ',student'), -('100058', '800002661', '2021FA', ',student'), -('100404', '800002661', '2021FA', ',student'), -('100490', '800002661', '2021FA', ',student'), -('100551', '800002661', '2021FA', ',student'), -('100582', '800002661', '2021FA', ',student'), -('100053', '800002662', '2021FA', ',student'), -('100118', '800002662', '2021FA', ',student'), -('100198', '800002662', '2021FA', ',student'), -('100243', '800002662', '2021FA', ',student'), -('100440', '800002662', '2021FA', ',student'), -('100232', '800002663', '2021FA', ',student'), -('100337', '800002663', '2021FA', ',student'), -('100441', '800002663', '2021FA', ',student'), -('100580', '800002663', '2021FA', ',student'), -('100613', '800002663', '2021FA', ',student'), -('100078', '800002664', '2021FA', ',student'), -('100088', '800002664', '2021FA', ',student'), -('100174', '800002664', '2021FA', ',student'), -('100225', '800002664', '2021FA', ',student'), -('100423', '800002664', '2021FA', ',student'), -('100291', '800002666', '2021FA', ',student'), -('100366', '800002666', '2021FA', ',student'), -('100520', '800002666', '2021FA', ',student'), -('100525', '800002666', '2021FA', ',student'), -('100558', '800002666', '2021FA', ',student'), -('100026', '800002672', '2021FA', ',student'), -('100108', '800002672', '2021FA', ',student'), -('100161', '800002672', '2021FA', ',student'), -('100205', '800002672', '2021FA', ',student'), -('100388', '800002672', '2021FA', ',student'), -('100024', '800002673', '2021FA', ',student'), -('100101', '800002673', '2021FA', ',student'), -('100354', '800002673', '2021FA', ',student'), -('100475', '800002673', '2021FA', ',student'), -('100584', '800002673', '2021FA', ',student'), -('100186', '800002675', '2021FA', ',student'), -('100220', '800002675', '2021FA', ',student'), -('100223', '800002675', '2021FA', ',student'), -('100488', '800002675', '2021FA', ',student'), -('100620', '800002675', '2021FA', ',student'), -('100080', '800002676', '2021FA', ',student'), -('100205', '800002676', '2021FA', ',student'), -('100279', '800002676', '2021FA', ',student'), -('100298', '800002676', '2021FA', ',student'), -('100551', '800002676', '2021FA', ',student'), -('100118', '800002677', '2021FA', ',student'), -('100183', '800002677', '2021FA', ',student'), -('100209', '800002677', '2021FA', ',student'), -('100455', '800002677', '2021FA', ',student'), -('100485', '800002677', '2021FA', ',student'), -('100036', '800002679', '2021FA', ',student'), -('100100', '800002679', '2021FA', ',student'), -('100300', '800002679', '2021FA', ',student'), -('100459', '800002679', '2021FA', ',student'), -('100532', '800002679', '2021FA', ',student'), -('100060', '800002683', '2021FA', ',student'), -('100274', '800002683', '2021FA', ',student'), -('100283', '800002683', '2021FA', ',student'), -('100395', '800002683', '2021FA', ',student'), -('100568', '800002683', '2021FA', ',student'), -('100017', '800002684', '2021FA', ',student'), -('100085', '800002684', '2021FA', ',student'), -('100116', '800002684', '2021FA', ',student'), -('100211', '800002684', '2021FA', ',student'), -('100411', '800002684', '2021FA', ',student'), -('100197', '800002686', '2021FA', ',student'), -('100319', '800002686', '2021FA', ',student'), -('100323', '800002686', '2021FA', ',student'), -('100444', '800002686', '2021FA', ',student'), -('100622', '800002686', '2021FA', ',student'), -('100056', '800002687', '2021FA', ',student'), -('100103', '800002687', '2021FA', ',student'), -('100230', '800002687', '2021FA', ',student'), -('100359', '800002687', '2021FA', ',student'), -('100495', '800002687', '2021FA', ',student'), -('100209', '800002689', '2021FA', ',student'), -('100354', '800002689', '2021FA', ',student'), -('100379', '800002689', '2021FA', ',student'), -('100474', '800002689', '2021FA', ',student'), -('100548', '800002689', '2021FA', ',student'), -('100180', '800002691', '2021FA', ',student'), -('100294', '800002691', '2021FA', ',student'), -('100435', '800002691', '2021FA', ',student'), -('100463', '800002691', '2021FA', ',student'), -('100624', '800002691', '2021FA', ',student'), -('100195', '800002692', '2021FA', ',student'), -('100256', '800002692', '2021FA', ',student'), -('100420', '800002692', '2021FA', ',student'), -('100461', '800002692', '2021FA', ',student'), -('100577', '800002692', '2021FA', ',student'), -('100058', '800002693', '2021FA', ',student'), -('100178', '800002693', '2021FA', ',student'), -('100192', '800002693', '2021FA', ',student'), -('100320', '800002693', '2021FA', ',student'), -('100367', '800002693', '2021FA', ',student'), -('100140', '800002695', '2021FA', ',student'), -('100150', '800002695', '2021FA', ',student'), -('100247', '800002695', '2021FA', ',student'), -('100364', '800002695', '2021FA', ',student'), -('100495', '800002695', '2021FA', ',student'), -('100077', '800002697', '2021FA', ',student'), -('100336', '800002697', '2021FA', ',student'), -('100367', '800002697', '2021FA', ',student'), -('100441', '800002697', '2021FA', ',student'), -('100618', '800002697', '2021FA', ',student'), -('100062', '800002698', '2021FA', ',student'), -('100104', '800002698', '2021FA', ',student'), -('100340', '800002698', '2021FA', ',student'), -('100407', '800002698', '2021FA', ',student'), -('100458', '800002698', '2021FA', ',student'), -('100039', '800002701', '2021FA', ',student'), -('100045', '800002701', '2021FA', ',student'), -('100067', '800002701', '2021FA', ',student'), -('100124', '800002701', '2021FA', ',student'), -('100577', '800002701', '2021FA', ',student'), -('100038', '800002703', '2021FA', ',student'), -('100063', '800002703', '2021FA', ',student'), -('100096', '800002703', '2021FA', ',student'), -('100270', '800002703', '2021FA', ',student'), -('100297', '800002703', '2021FA', ',student'), -('100033', '800002707', '2021FA', ',student'), -('100181', '800002707', '2021FA', ',student'), -('100354', '800002707', '2021FA', ',student'), -('100407', '800002707', '2021FA', ',student'), -('100441', '800002707', '2021FA', ',student'), -('100272', '800002710', '2021FA', ',student'), -('100286', '800002710', '2021FA', ',student'), -('100475', '800002710', '2021FA', ',student'), -('100496', '800002710', '2021FA', ',student'), -('100610', '800002710', '2021FA', ',student'), -('100134', '800002711', '2021FA', ',student'), -('100348', '800002711', '2021FA', ',student'), -('100368', '800002711', '2021FA', ',student'), -('100370', '800002711', '2021FA', ',student'), -('100483', '800002711', '2021FA', ',student'), -('100012', '800002712', '2021FA', ',student'), -('100021', '800002712', '2021FA', ',student'), -('100080', '800002712', '2021FA', ',student'), -('100257', '800002712', '2021FA', ',student'), -('100553', '800002712', '2021FA', ',student'), -('100144', '800002713', '2021FA', ',student'), -('100154', '800002713', '2021FA', ',student'), -('100269', '800002713', '2021FA', ',student'), -('100432', '800002713', '2021FA', ',student'), -('100580', '800002713', '2021FA', ',student'), -('100086', '800002714', '2021FA', ',student'), -('100163', '800002714', '2021FA', ',student'), -('100178', '800002714', '2021FA', ',student'), -('100569', '800002714', '2021FA', ',student'), -('100576', '800002714', '2021FA', ',student'), -('100040', '800002715', '2021FA', ',student'), -('100337', '800002715', '2021FA', ',student'), -('100338', '800002715', '2021FA', ',student'), -('100395', '800002715', '2021FA', ',student'), -('100537', '800002715', '2021FA', ',student'), -('100153', '800002718', '2021FA', ',student'), -('100232', '800002718', '2021FA', ',student'), -('100519', '800002718', '2021FA', ',student'), -('100522', '800002718', '2021FA', ',student'), -('100608', '800002718', '2021FA', ',student'), -('100075', '800002719', '2021FA', ',student'), -('100146', '800002719', '2021FA', ',student'), -('100202', '800002719', '2021FA', ',student'), -('100215', '800002719', '2021FA', ',student'), -('100521', '800002719', '2021FA', ',student'), -('100061', '800002720', '2021FA', ',student'), -('100180', '800002720', '2021FA', ',student'), -('100327', '800002720', '2021FA', ',student'), -('100435', '800002720', '2021FA', ',student'), -('100455', '800002720', '2021FA', ',student'), -('100049', '800002722', '2021FA', ',student'), -('100321', '800002722', '2021FA', ',student'), -('100406', '800002722', '2021FA', ',student'), -('100515', '800002722', '2021FA', ',student'), -('100605', '800002722', '2021FA', ',student'), -('100128', '800002723', '2021FA', ',student'), -('100219', '800002723', '2021FA', ',student'), -('100301', '800002723', '2021FA', ',student'), -('100327', '800002723', '2021FA', ',student'), -('100482', '800002723', '2021FA', ',student'), -('100001', '800002726', '2021FA', ',student'), -('100064', '800002726', '2021FA', ',student'), -('100129', '800002726', '2021FA', ',student'), -('100319', '800002726', '2021FA', ',student'), -('100499', '800002726', '2021FA', ',student'), -('100129', '800002727', '2021FA', ',student'), -('100135', '800002727', '2021FA', ',student'), -('100227', '800002727', '2021FA', ',student'), -('100280', '800002727', '2021FA', ',student'), -('100589', '800002727', '2021FA', ',student'), -('100001', '800002729', '2021FA', ',student'), -('100219', '800002729', '2021FA', ',student'), -('100240', '800002729', '2021FA', ',student'), -('100241', '800002729', '2021FA', ',student'), -('100460', '800002729', '2021FA', ',student'), -('100212', '800002731', '2021FA', ',student'), -('100289', '800002731', '2021FA', ',student'), -('100316', '800002731', '2021FA', ',student'), -('100481', '800002731', '2021FA', ',student'), -('100570', '800002731', '2021FA', ',student'), -('100169', '800002732', '2021FA', ',student'), -('100302', '800002732', '2021FA', ',student'), -('100345', '800002732', '2021FA', ',student'), -('100541', '800002732', '2021FA', ',student'), -('100565', '800002732', '2021FA', ',student'), -('100095', '800002737', '2021FA', ',student'), -('100244', '800002737', '2021FA', ',student'), -('100296', '800002737', '2021FA', ',student'), -('100304', '800002737', '2021FA', ',student'), -('100313', '800002737', '2021FA', ',student'), -('100005', '800002738', '2021FA', ',student'), -('100089', '800002738', '2021FA', ',student'), -('100290', '800002738', '2021FA', ',student'), -('100349', '800002738', '2021FA', ',student'), -('100601', '800002738', '2021FA', ',student'), -('100284', '800002741', '2021FA', ',student'), -('100334', '800002741', '2021FA', ',student'), -('100378', '800002741', '2021FA', ',student'), -('100477', '800002741', '2021FA', ',student'), -('100543', '800002741', '2021FA', ',student'), -('100084', '800002743', '2021FA', ',student'), -('100201', '800002743', '2021FA', ',student'), -('100330', '800002743', '2021FA', ',student'), -('100370', '800002743', '2021FA', ',student'), -('100445', '800002743', '2021FA', ',student'), -('100190', '800002747', '2021FA', ',student'), -('100198', '800002747', '2021FA', ',student'), -('100248', '800002747', '2021FA', ',student'), -('100448', '800002747', '2021FA', ',student'), -('100537', '800002747', '2021FA', ',student'), -('100166', '800002748', '2021FA', ',student'), -('100281', '800002748', '2021FA', ',student'), -('100365', '800002748', '2021FA', ',student'), -('100529', '800002748', '2021FA', ',student'), -('100583', '800002748', '2021FA', ',student'), -('100006', '800002749', '2021FA', ',student'), -('100103', '800002749', '2021FA', ',student'), -('100149', '800002749', '2021FA', ',student'), -('100180', '800002749', '2021FA', ',student'), -('100560', '800002749', '2021FA', ',student'), -('100066', '800002752', '2021FA', ',student'), -('100118', '800002752', '2021FA', ',student'), -('100295', '800002752', '2021FA', ',student'), -('100416', '800002752', '2021FA', ',student'), -('100500', '800002752', '2021FA', ',student'), -('100104', '800002753', '2021FA', ',student'), -('100108', '800002753', '2021FA', ',student'), -('100505', '800002753', '2021FA', ',student'), -('100550', '800002753', '2021FA', ',student'), -('100601', '800002753', '2021FA', ',student'), -('100054', '800002756', '2021FA', ',student'), -('100205', '800002756', '2021FA', ',student'), -('100242', '800002756', '2021FA', ',student'), -('100249', '800002756', '2021FA', ',student'), -('100295', '800002756', '2021FA', ',student'), -('100066', '800002759', '2021FA', ',student'), -('100261', '800002759', '2021FA', ',student'), -('100363', '800002759', '2021FA', ',student'), -('100391', '800002759', '2021FA', ',student'), -('100415', '800002759', '2021FA', ',student'), -('100163', '800002760', '2021FA', ',student'), -('100202', '800002760', '2021FA', ',student'), -('100221', '800002760', '2021FA', ',student'), -('100264', '800002760', '2021FA', ',student'), -('100371', '800002760', '2021FA', ',student'), -('100200', '800002762', '2021FA', ',student'), -('100378', '800002762', '2021FA', ',student'), -('100404', '800002762', '2021FA', ',student'), -('100451', '800002762', '2021FA', ',student'), -('100592', '800002762', '2021FA', ',student'), -('100016', '800002766', '2021FA', ',student'), -('100080', '800002766', '2021FA', ',student'), -('100209', '800002766', '2021FA', ',student'), -('100223', '800002766', '2021FA', ',student'), -('100285', '800002766', '2021FA', ',student'), -('100231', '800002767', '2021FA', ',student'), -('100252', '800002767', '2021FA', ',student'), -('100389', '800002767', '2021FA', ',student'), -('100439', '800002767', '2021FA', ',student'), -('100523', '800002767', '2021FA', ',student'), -('100072', '800002768', '2021FA', ',student'), -('100196', '800002768', '2021FA', ',student'), -('100507', '800002768', '2021FA', ',student'), -('100523', '800002768', '2021FA', ',student'), -('100608', '800002768', '2021FA', ',student'), -('100026', '800002770', '2021FA', ',student'), -('100065', '800002770', '2021FA', ',student'), -('100124', '800002770', '2021FA', ',student'), -('100322', '800002770', '2021FA', ',student'), -('100458', '800002770', '2021FA', ',student'), -('100360', '800002771', '2021FA', ',student'), -('100438', '800002771', '2021FA', ',student'), -('100511', '800002771', '2021FA', ',student'), -('100538', '800002771', '2021FA', ',student'), -('100626', '800002771', '2021FA', ',student'), -('100028', '800002775', '2021FA', ',student'), -('100059', '800002775', '2021FA', ',student'), -('100217', '800002775', '2021FA', ',student'), -('100340', '800002775', '2021FA', ',student'), -('100431', '800002775', '2021FA', ',student'), -('100069', '800002776', '2021FA', ',student'), -('100333', '800002776', '2021FA', ',student'), -('100398', '800002776', '2021FA', ',student'), -('100532', '800002776', '2021FA', ',student'), -('100580', '800002776', '2021FA', ',student'), -('100272', '800002777', '2021FA', ',student'), -('100310', '800002777', '2021FA', ',student'), -('100386', '800002777', '2021FA', ',student'), -('100488', '800002777', '2021FA', ',student'), -('100620', '800002777', '2021FA', ',student'), -('100138', '800002778', '2021FA', ',student'), -('100168', '800002778', '2021FA', ',student'), -('100380', '800002778', '2021FA', ',student'), -('100454', '800002778', '2021FA', ',student'), -('100477', '800002778', '2021FA', ',student'), -('100091', '800002779', '2021FA', ',student'), -('100130', '800002779', '2021FA', ',student'), -('100174', '800002779', '2021FA', ',student'), -('100280', '800002779', '2021FA', ',student'), -('100515', '800002779', '2021FA', ',student'), -('100171', '800002781', '2021FA', ',student'), -('100181', '800002781', '2021FA', ',student'), -('100254', '800002781', '2021FA', ',student'), -('100318', '800002781', '2021FA', ',student'), -('100481', '800002781', '2021FA', ',student'), -('100150', '800002783', '2021FA', ',student'), -('100173', '800002783', '2021FA', ',student'), -('100290', '800002783', '2021FA', ',student'), -('100488', '800002783', '2021FA', ',student'), -('100599', '800002783', '2021FA', ',student'), -('100052', '800002784', '2021FA', ',student'), -('100055', '800002784', '2021FA', ',student'), -('100234', '800002784', '2021FA', ',student'), -('100237', '800002784', '2021FA', ',student'), -('100449', '800002784', '2021FA', ',student'), -('100107', '800002785', '2021FA', ',student'), -('100196', '800002785', '2021FA', ',student'), -('100316', '800002785', '2021FA', ',student'), -('100353', '800002785', '2021FA', ',student'), -('100407', '800002785', '2021FA', ',student'), -('100088', '800002786', '2021FA', ',student'), -('100254', '800002786', '2021FA', ',student'), -('100325', '800002786', '2021FA', ',student'), -('100420', '800002786', '2021FA', ',student'), -('100606', '800002786', '2021FA', ',student'), -('100030', '800002788', '2021FA', ',student'), -('100041', '800002788', '2021FA', ',student'), -('100106', '800002788', '2021FA', ',student'), -('100497', '800002788', '2021FA', ',student'), -('100574', '800002788', '2021FA', ',student'), -('100009', '800002790', '2021FA', ',student'), -('100084', '800002790', '2021FA', ',student'), -('100221', '800002790', '2021FA', ',student'), -('100223', '800002790', '2021FA', ',student'), -('100446', '800002790', '2021FA', ',student'), -('100060', '800002791', '2021FA', ',student'), -('100108', '800002791', '2021FA', ',student'), -('100126', '800002791', '2021FA', ',student'), -('100199', '800002791', '2021FA', ',student'), -('100445', '800002791', '2021FA', ',student'), -('100007', '800002795', '2021FA', ',student'), -('100113', '800002795', '2021FA', ',student'), -('100286', '800002795', '2021FA', ',student'), -('100359', '800002795', '2021FA', ',student'), -('100393', '800002795', '2021FA', ',student'), -('100029', '800002799', '2021FA', ',student'), -('100297', '800002799', '2021FA', ',student'), -('100327', '800002799', '2021FA', ',student'), -('100419', '800002799', '2021FA', ',student'), -('100591', '800002799', '2021FA', ',student'), -('100045', '800002800', '2021FA', ',student'), -('100096', '800002800', '2021FA', ',student'), -('100309', '800002800', '2021FA', ',student'), -('100329', '800002800', '2021FA', ',student'), -('100462', '800002800', '2021FA', ',student'), -('100163', '800002802', '2021FA', ',student'), -('100166', '800002802', '2021FA', ',student'), -('100189', '800002802', '2021FA', ',student'), -('100305', '800002802', '2021FA', ',student'), -('100381', '800002802', '2021FA', ',student'), -('100126', '800002803', '2021FA', ',student'), -('100149', '800002803', '2021FA', ',student'), -('100187', '800002803', '2021FA', ',student'), -('100498', '800002803', '2021FA', ',student'), -('100511', '800002803', '2021FA', ',student'), -('100105', '800002808', '2021FA', ',student'), -('100336', '800002808', '2021FA', ',student'), -('100339', '800002808', '2021FA', ',student'), -('100404', '800002808', '2021FA', ',student'), -('100409', '800002808', '2021FA', ',student'), -('100198', '800002809', '2021FA', ',student'), -('100239', '800002809', '2021FA', ',student'), -('100271', '800002809', '2021FA', ',student'), -('100412', '800002809', '2021FA', ',student'), -('100525', '800002809', '2021FA', ',student'), -('100092', '800002810', '2021FA', ',student'), -('100288', '800002810', '2021FA', ',student'), -('100369', '800002810', '2021FA', ',student'), -('100606', '800002810', '2021FA', ',student'), -('100620', '800002810', '2021FA', ',student'), -('100021', '800002812', '2021FA', ',student'), -('100024', '800002812', '2021FA', ',student'), -('100086', '800002812', '2021FA', ',student'), -('100115', '800002812', '2021FA', ',student'), -('100552', '800002812', '2021FA', ',student'), -('100096', '800002813', '2021FA', ',student'), -('100243', '800002813', '2021FA', ',student'), -('100269', '800002813', '2021FA', ',student'), -('100369', '800002813', '2021FA', ',student'), -('100545', '800002813', '2021FA', ',student'), -('100093', '800002814', '2021FA', ',student'), -('100143', '800002814', '2021FA', ',student'), -('100225', '800002814', '2021FA', ',student'), -('100342', '800002814', '2021FA', ',student'), -('100480', '800002814', '2021FA', ',student'), -('100153', '800002815', '2021FA', ',student'), -('100358', '800002815', '2021FA', ',student'), -('100378', '800002815', '2021FA', ',student'), -('100465', '800002815', '2021FA', ',student'), -('100580', '800002815', '2021FA', ',student'), -('100091', '800002817', '2021FA', ',student'), -('100173', '800002817', '2021FA', ',student'), -('100177', '800002817', '2021FA', ',student'), -('100200', '800002817', '2021FA', ',student'), -('100577', '800002817', '2021FA', ',student'), -('100162', '800002818', '2021FA', ',student'), -('100169', '800002818', '2021FA', ',student'), -('100184', '800002818', '2021FA', ',student'), -('100227', '800002818', '2021FA', ',student'), -('100387', '800002818', '2021FA', ',student'), -('100015', '800002821', '2021FA', ',student'), -('100177', '800002821', '2021FA', ',student'), -('100178', '800002821', '2021FA', ',student'), -('100211', '800002821', '2021FA', ',student'), -('100455', '800002821', '2021FA', ',student'), -('100011', '800002822', '2021FA', ',student'), -('100028', '800002822', '2021FA', ',student'), -('100224', '800002822', '2021FA', ',student'), -('100488', '800002822', '2021FA', ',student'), -('100561', '800002822', '2021FA', ',student'), -('100151', '800002827', '2021FA', ',student'), -('100290', '800002827', '2021FA', ',student'), -('100352', '800002827', '2021FA', ',student'), -('100393', '800002827', '2021FA', ',student'), -('100445', '800002827', '2021FA', ',student'), -('100269', '800002829', '2021FA', ',student'), -('100297', '800002829', '2021FA', ',student'), -('100312', '800002829', '2021FA', ',student'), -('100337', '800002829', '2021FA', ',student'), -('100348', '800002829', '2021FA', ',student'), -('100010', '800002830', '2021FA', ',student'), -('100050', '800002830', '2021FA', ',student'), -('100226', '800002830', '2021FA', ',student'), -('100256', '800002830', '2021FA', ',student'), -('100415', '800002830', '2021FA', ',student'), -('100303', '800002832', '2021FA', ',student'), -('100363', '800002832', '2021FA', ',student'), -('100397', '800002832', '2021FA', ',student'), -('100406', '800002832', '2021FA', ',student'), -('100429', '800002832', '2021FA', ',student'), -('100080', '800002833', '2021FA', ',student'), -('100119', '800002833', '2021FA', ',student'), -('100262', '800002833', '2021FA', ',student'), -('100408', '800002833', '2021FA', ',student'), -('100573', '800002833', '2021FA', ',student'), -('100223', '800002834', '2021FA', ',student'), -('100226', '800002834', '2021FA', ',student'), -('100250', '800002834', '2021FA', ',student'), -('100409', '800002834', '2021FA', ',student'), -('100543', '800002834', '2021FA', ',student'), -('100136', '800002835', '2021FA', ',student'), -('100148', '800002835', '2021FA', ',student'), -('100274', '800002835', '2021FA', ',student'), -('100414', '800002835', '2021FA', ',student'), -('100583', '800002835', '2021FA', ',student'), -('100077', '800002838', '2021FA', ',student'), -('100192', '800002838', '2021FA', ',student'), -('100215', '800002838', '2021FA', ',student'), -('100233', '800002838', '2021FA', ',student'), -('100376', '800002838', '2021FA', ',student'), -('100020', '800002845', '2021FA', ',student'), -('100229', '800002845', '2021FA', ',student'), -('100526', '800002845', '2021FA', ',student'), -('100546', '800002845', '2021FA', ',student'), -('100625', '800002845', '2021FA', ',student'), -('100062', '800002846', '2021FA', ',student'), -('100122', '800002846', '2021FA', ',student'), -('100314', '800002846', '2021FA', ',student'), -('100400', '800002846', '2021FA', ',student'), -('100610', '800002846', '2021FA', ',student'), -('100164', '800002848', '2021FA', ',student'), -('100339', '800002848', '2021FA', ',student'), -('100342', '800002848', '2021FA', ',student'), -('100574', '800002848', '2021FA', ',student'), -('100623', '800002848', '2021FA', ',student'), -('100208', '800002852', '2021FA', ',student'), -('100282', '800002852', '2021FA', ',student'), -('100511', '800002852', '2021FA', ',student'), -('100583', '800002852', '2021FA', ',student'), -('100607', '800002852', '2021FA', ',student'), -('100042', '800002854', '2021FA', ',student'), -('100054', '800002854', '2021FA', ',student'), -('100075', '800002854', '2021FA', ',student'), -('100118', '800002854', '2021FA', ',student'), -('100153', '800002854', '2021FA', ',student'), -('100047', '800002861', '2021FA', ',student'), -('100063', '800002861', '2021FA', ',student'), -('100171', '800002861', '2021FA', ',student'), -('100304', '800002861', '2021FA', ',student'), -('100578', '800002861', '2021FA', ',student'), -('100051', '800002862', '2021FA', ',student'), -('100143', '800002862', '2021FA', ',student'), -('100152', '800002862', '2021FA', ',student'), -('100386', '800002862', '2021FA', ',student'), -('100497', '800002862', '2021FA', ',student'), -('100081', '800002863', '2021FA', ',student'), -('100124', '800002863', '2021FA', ',student'), -('100125', '800002863', '2021FA', ',student'), -('100308', '800002863', '2021FA', ',student'), -('100562', '800002863', '2021FA', ',student'), -('100144', '800002864', '2021FA', ',student'), -('100353', '800002864', '2021FA', ',student'), -('100360', '800002864', '2021FA', ',student'), -('100369', '800002864', '2021FA', ',student'), -('100463', '800002864', '2021FA', ',student'), -('100170', '800002865', '2021FA', ',student'), -('100330', '800002865', '2021FA', ',student'), -('100421', '800002865', '2021FA', ',student'), -('100490', '800002865', '2021FA', ',student'), -('100584', '800002865', '2021FA', ',student'), -('100241', '800002867', '2021FA', ',student'), -('100345', '800002867', '2021FA', ',student'), -('100556', '800002867', '2021FA', ',student'), -('100593', '800002867', '2021FA', ',student'), -('100612', '800002867', '2021FA', ',student'), -('100288', '800002868', '2021FA', ',student'), -('100446', '800002868', '2021FA', ',student'), -('100462', '800002868', '2021FA', ',student'), -('100546', '800002868', '2021FA', ',student'), -('100613', '800002868', '2021FA', ',student'), -('100125', '800002869', '2021FA', ',student'), -('100191', '800002869', '2021FA', ',student'), -('100402', '800002869', '2021FA', ',student'), -('100524', '800002869', '2021FA', ',student'), -('100620', '800002869', '2021FA', ',student'), -('100081', '800002871', '2021FA', ',student'), -('100219', '800002871', '2021FA', ',student'), -('100298', '800002871', '2021FA', ',student'), -('100463', '800002871', '2021FA', ',student'), -('100539', '800002871', '2021FA', ',student'), -('100267', '800002872', '2021FA', ',student'), -('100312', '800002872', '2021FA', ',student'), -('100319', '800002872', '2021FA', ',student'), -('100425', '800002872', '2021FA', ',student'), -('100544', '800002872', '2021FA', ',student'), -('100014', '800002878', '2021FA', ',student'), -('100082', '800002878', '2021FA', ',student'), -('100447', '800002878', '2021FA', ',student'), -('100524', '800002878', '2021FA', ',student'), -('100559', '800002878', '2021FA', ',student'), -('100045', '800002879', '2021FA', ',student'), -('100165', '800002879', '2021FA', ',student'), -('100213', '800002879', '2021FA', ',student'), -('100348', '800002879', '2021FA', ',student'), -('100485', '800002879', '2021FA', ',student'), -('100117', '800002880', '2021FA', ',student'), -('100260', '800002880', '2021FA', ',student'), -('100279', '800002880', '2021FA', ',student'), -('100312', '800002880', '2021FA', ',student'), -('100515', '800002880', '2021FA', ',student'), -('100047', '800002881', '2021FA', ',student'), -('100060', '800002881', '2021FA', ',student'), -('100366', '800002881', '2021FA', ',student'), -('100510', '800002881', '2021FA', ',student'), -('100615', '800002881', '2021FA', ',student'), -('100226', '800002882', '2021FA', ',student'), -('100343', '800002882', '2021FA', ',student'), -('100439', '800002882', '2021FA', ',student'), -('100539', '800002882', '2021FA', ',student'), -('100577', '800002882', '2021FA', ',student'), -('100171', '800002884', '2021FA', ',student'), -('100227', '800002884', '2021FA', ',student'), -('100236', '800002884', '2021FA', ',student'), -('100245', '800002884', '2021FA', ',student'), -('100508', '800002884', '2021FA', ',student'), -('100227', '800002885', '2021FA', ',student'), -('100271', '800002885', '2021FA', ',student'), -('100344', '800002885', '2021FA', ',student'), -('100459', '800002885', '2021FA', ',student'), -('100566', '800002885', '2021FA', ',student'), -('100016', '800002886', '2021FA', ',student'), -('100019', '800002886', '2021FA', ',student'), -('100121', '800002886', '2021FA', ',student'), -('100323', '800002886', '2021FA', ',student'), -('100610', '800002886', '2021FA', ',student'), -('100054', '800002889', '2021FA', ',student'), -('100088', '800002889', '2021FA', ',student'), -('100092', '800002889', '2021FA', ',student'), -('100225', '800002889', '2021FA', ',student'), -('100581', '800002889', '2021FA', ',student'), -('100117', '800002891', '2021FA', ',student'), -('100242', '800002891', '2021FA', ',student'), -('100283', '800002891', '2021FA', ',student'), -('100472', '800002891', '2021FA', ',student'), -('100549', '800002891', '2021FA', ',student'), -('100121', '800002894', '2021FA', ',student'), -('100201', '800002894', '2021FA', ',student'), -('100399', '800002894', '2021FA', ',student'), -('100586', '800002894', '2021FA', ',student'), -('100616', '800002894', '2021FA', ',student'), -('100025', '800002896', '2021FA', ',student'), -('100353', '800002896', '2021FA', ',student'), -('100446', '800002896', '2021FA', ',student'), -('100538', '800002896', '2021FA', ',student'), -('100588', '800002896', '2021FA', ',student'), -('100291', '800002898', '2021FA', ',student'), -('100374', '800002898', '2021FA', ',student'), -('100442', '800002898', '2021FA', ',student'), -('100508', '800002898', '2021FA', ',student'), -('100577', '800002898', '2021FA', ',student'), -('100285', '800002899', '2021FA', ',student'), -('100410', '800002899', '2021FA', ',student'), -('100418', '800002899', '2021FA', ',student'), -('100461', '800002899', '2021FA', ',student'), -('100529', '800002899', '2021FA', ',student'), -('100188', '800002900', '2021FA', ',student'), -('100275', '800002900', '2021FA', ',student'), -('100367', '800002900', '2021FA', ',student'), -('100474', '800002900', '2021FA', ',student'), -('100570', '800002900', '2021FA', ',student'), -('100053', '800002901', '2021FA', ',student'), -('100205', '800002901', '2021FA', ',student'), -('100314', '800002901', '2021FA', ',student'), -('100562', '800002901', '2021FA', ',student'), -('100622', '800002901', '2021FA', ',student'), -('100088', '800002904', '2021FA', ',student'), -('100269', '800002904', '2021FA', ',student'), -('100420', '800002904', '2021FA', ',student'), -('100445', '800002904', '2021FA', ',student'), -('100551', '800002904', '2021FA', ',student'), -('100108', '800002905', '2021FA', ',student'), -('100504', '800002905', '2021FA', ',student'), -('100532', '800002905', '2021FA', ',student'), -('100603', '800002905', '2021FA', ',student'), -('100620', '800002905', '2021FA', ',student'), -('100080', '800002911', '2021FA', ',student'), -('100141', '800002911', '2021FA', ',student'), -('100151', '800002911', '2021FA', ',student'), -('100211', '800002911', '2021FA', ',student'), -('100381', '800002911', '2021FA', ',student'), -('100004', '800002913', '2021FA', ',student'), -('100067', '800002913', '2021FA', ',student'), -('100367', '800002913', '2021FA', ',student'), -('100570', '800002913', '2021FA', ',student'), -('100575', '800002913', '2021FA', ',student'), -('100031', '800002914', '2021FA', ',student'), -('100254', '800002914', '2021FA', ',student'), -('100349', '800002914', '2021FA', ',student'), -('100356', '800002914', '2021FA', ',student'), -('100376', '800002914', '2021FA', ',student'), -('100174', '800002915', '2021FA', ',student'), -('100195', '800002915', '2021FA', ',student'), -('100251', '800002915', '2021FA', ',student'), -('100265', '800002915', '2021FA', ',student'), -('100507', '800002915', '2021FA', ',student'), -('100205', '800002919', '2021FA', ',student'), -('100302', '800002919', '2021FA', ',student'), -('100321', '800002919', '2021FA', ',student'), -('100335', '800002919', '2021FA', ',student'), -('100616', '800002919', '2021FA', ',student'), -('100124', '800002920', '2021FA', ',student'), -('100198', '800002920', '2021FA', ',student'), -('100230', '800002920', '2021FA', ',student'), -('100321', '800002920', '2021FA', ',student'), -('100518', '800002920', '2021FA', ',student'), -('100178', '800002921', '2021FA', ',student'), -('100189', '800002921', '2021FA', ',student'), -('100243', '800002921', '2021FA', ',student'), -('100375', '800002921', '2021FA', ',student'), -('100496', '800002921', '2021FA', ',student'), -('100067', '800002922', '2021FA', ',student'), -('100158', '800002922', '2021FA', ',student'), -('100274', '800002922', '2021FA', ',student'), -('100301', '800002922', '2021FA', ',student'), -('100353', '800002922', '2021FA', ',student'), -('100092', '800002923', '2021FA', ',student'), -('100107', '800002923', '2021FA', ',student'), -('100318', '800002923', '2021FA', ',student'), -('100329', '800002923', '2021FA', ',student'), -('100543', '800002923', '2021FA', ',student'), -('100032', '800002924', '2021FA', ',student'), -('100109', '800002924', '2021FA', ',student'), -('100435', '800002924', '2021FA', ',student'), -('100446', '800002924', '2021FA', ',student'), -('100467', '800002924', '2021FA', ',student'), -('100126', '800002925', '2021FA', ',student'), -('100252', '800002925', '2021FA', ',student'), -('100288', '800002925', '2021FA', ',student'), -('100392', '800002925', '2021FA', ',student'), -('100622', '800002925', '2021FA', ',student'), -('100312', '800002926', '2021FA', ',student'), -('100506', '800002926', '2021FA', ',student'), -('100532', '800002926', '2021FA', ',student'), -('100549', '800002926', '2021FA', ',student'), -('100572', '800002926', '2021FA', ',student'), -('100070', '800002927', '2021FA', ',student'), -('100226', '800002927', '2021FA', ',student'), -('100244', '800002927', '2021FA', ',student'), -('100345', '800002927', '2021FA', ',student'), -('100464', '800002927', '2021FA', ',student'), -('100082', '800002928', '2021FA', ',student'), -('100220', '800002928', '2021FA', ',student'), -('100325', '800002928', '2021FA', ',student'), -('100389', '800002928', '2021FA', ',student'), -('100579', '800002928', '2021FA', ',student'), -('100096', '800002930', '2021FA', ',student'), -('100389', '800002930', '2021FA', ',student'), -('100414', '800002930', '2021FA', ',student'), -('100468', '800002930', '2021FA', ',student'), -('100488', '800002930', '2021FA', ',student'), -('100091', '800002932', '2021FA', ',student'), -('100124', '800002932', '2021FA', ',student'), -('100222', '800002932', '2021FA', ',student'), -('100257', '800002932', '2021FA', ',student'), -('100295', '800002932', '2021FA', ',student'), -('100073', '800002933', '2021FA', ',student'), -('100303', '800002933', '2021FA', ',student'), -('100507', '800002933', '2021FA', ',student'), -('100531', '800002933', '2021FA', ',student'), -('100582', '800002933', '2021FA', ',student'), -('100229', '800002939', '2021FA', ',student'), -('100397', '800002939', '2021FA', ',student'), -('100411', '800002939', '2021FA', ',student'), -('100487', '800002939', '2021FA', ',student'), -('100626', '800002939', '2021FA', ',student'), -('100042', '800002941', '2021FA', ',student'), -('100292', '800002941', '2021FA', ',student'), -('100317', '800002941', '2021FA', ',student'), -('100361', '800002941', '2021FA', ',student'), -('100455', '800002941', '2021FA', ',student'), -('100044', '800002943', '2021FA', ',student'), -('100163', '800002943', '2021FA', ',student'), -('100247', '800002943', '2021FA', ',student'), -('100455', '800002943', '2021FA', ',student'), -('100475', '800002943', '2021FA', ',student'), -('100095', '800002945', '2021FA', ',student'), -('100158', '800002945', '2021FA', ',student'), -('100167', '800002945', '2021FA', ',student'), -('100388', '800002945', '2021FA', ',student'), -('100488', '800002945', '2021FA', ',student'), -('100066', '800002948', '2021FA', ',student'), -('100117', '800002948', '2021FA', ',student'), -('100174', '800002948', '2021FA', ',student'), -('100332', '800002948', '2021FA', ',student'), -('100442', '800002948', '2021FA', ',student'), -('100193', '800002949', '2021FA', ',student'), -('100213', '800002949', '2021FA', ',student'), -('100248', '800002949', '2021FA', ',student'), -('100334', '800002949', '2021FA', ',student'), -('100547', '800002949', '2021FA', ',student'), -('100028', '800002952', '2021FA', ',student'), -('100197', '800002952', '2021FA', ',student'), -('100199', '800002952', '2021FA', ',student'), -('100371', '800002952', '2021FA', ',student'), -('100397', '800002952', '2021FA', ',student'), -('100100', '800002953', '2021FA', ',student'), -('100368', '800002953', '2021FA', ',student'), -('100434', '800002953', '2021FA', ',student'), -('100441', '800002953', '2021FA', ',student'), -('100443', '800002953', '2021FA', ',student'), -('100010', '800002956', '2021FA', ',student'), -('100144', '800002956', '2021FA', ',student'), -('100145', '800002956', '2021FA', ',student'), -('100343', '800002956', '2021FA', ',student'), -('100524', '800002956', '2021FA', ',student'), -('100001', '800002957', '2021FA', ',student'), -('100083', '800002957', '2021FA', ',student'), -('100431', '800002957', '2021FA', ',student'), -('100470', '800002957', '2021FA', ',student'), -('100559', '800002957', '2021FA', ',student'), -('100027', '800002960', '2021FA', ',student'), -('100131', '800002960', '2021FA', ',student'), -('100149', '800002960', '2021FA', ',student'), -('100192', '800002960', '2021FA', ',student'), -('100473', '800002960', '2021FA', ',student'), -('100211', '800002963', '2021FA', ',student'), -('100260', '800002963', '2021FA', ',student'), -('100309', '800002963', '2021FA', ',student'), -('100507', '800002963', '2021FA', ',student'), -('100541', '800002963', '2021FA', ',student'), -('100002', '800002967', '2021FA', ',student'), -('100270', '800002967', '2021FA', ',student'), -('100412', '800002967', '2021FA', ',student'), -('100484', '800002967', '2021FA', ',student'), -('100507', '800002967', '2021FA', ',student'), -('100187', '800002971', '2021FA', ',student'), -('100343', '800002971', '2021FA', ',student'), -('100348', '800002971', '2021FA', ',student'), -('100509', '800002971', '2021FA', ',student'), -('100581', '800002971', '2021FA', ',student'), -('100066', '800002972', '2021FA', ',student'), -('100113', '800002972', '2021FA', ',student'), -('100293', '800002972', '2021FA', ',student'), -('100441', '800002972', '2021FA', ',student'), -('100474', '800002972', '2021FA', ',student'), -('100311', '800002974', '2021FA', ',student'), -('100352', '800002974', '2021FA', ',student'), -('100358', '800002974', '2021FA', ',student'), -('100505', '800002974', '2021FA', ',student'), -('100594', '800002974', '2021FA', ',student'), -('100032', '800002976', '2021FA', ',student'), -('100188', '800002976', '2021FA', ',student'), -('100329', '800002976', '2021FA', ',student'), -('100508', '800002976', '2021FA', ',student'), -('100614', '800002976', '2021FA', ',student'), -('100001', '800002977', '2021FA', ',student'), -('100072', '800002977', '2021FA', ',student'), -('100179', '800002977', '2021FA', ',student'), -('100222', '800002977', '2021FA', ',student'), -('100396', '800002977', '2021FA', ',student'), -('100065', '800002979', '2021FA', ',student'), -('100228', '800002979', '2021FA', ',student'), -('100355', '800002979', '2021FA', ',student'), -('100550', '800002979', '2021FA', ',student'), -('100592', '800002979', '2021FA', ',student'), -('100157', '800002981', '2021FA', ',student'), -('100197', '800002981', '2021FA', ',student'), -('100238', '800002981', '2021FA', ',student'), -('100495', '800002981', '2021FA', ',student'), -('100603', '800002981', '2021FA', ',student'), -('100043', '800002982', '2021FA', ',student'), -('100156', '800002982', '2021FA', ',student'), -('100519', '800002982', '2021FA', ',student'), -('100537', '800002982', '2021FA', ',student'), -('100550', '800002982', '2021FA', ',student'), -('100134', '800002984', '2021FA', ',student'), -('100137', '800002984', '2021FA', ',student'), -('100346', '800002984', '2021FA', ',student'), -('100521', '800002984', '2021FA', ',student'), -('100569', '800002984', '2021FA', ',student'), -('100057', '800002985', '2021FA', ',student'), -('100102', '800002985', '2021FA', ',student'), -('100178', '800002985', '2021FA', ',student'), -('100235', '800002985', '2021FA', ',student'), -('100335', '800002985', '2021FA', ',student'), -('100054', '800002987', '2021FA', ',student'), -('100113', '800002987', '2021FA', ',student'), -('100114', '800002987', '2021FA', ',student'), -('100413', '800002987', '2021FA', ',student'), -('100562', '800002987', '2021FA', ',student'), -('100019', '800002988', '2021FA', ',student'), -('100109', '800002988', '2021FA', ',student'), -('100149', '800002988', '2021FA', ',student'), -('100484', '800002988', '2021FA', ',student'), -('100534', '800002988', '2021FA', ',student'), -('100006', '800002989', '2021FA', ',student'), -('100067', '800002989', '2021FA', ',student'), -('100253', '800002989', '2021FA', ',student'), -('100287', '800002989', '2021FA', ',student'), -('100602', '800002989', '2021FA', ',student'), -('100058', '800002991', '2021FA', ',student'), -('100192', '800002991', '2021FA', ',student'), -('100509', '800002991', '2021FA', ',student'), -('100521', '800002991', '2021FA', ',student'), -('100523', '800002991', '2021FA', ',student'), -('100215', '800002993', '2021FA', ',student'), -('100223', '800002993', '2021FA', ',student'), -('100384', '800002993', '2021FA', ',student'), -('100392', '800002993', '2021FA', ',student'), -('100588', '800002993', '2021FA', ',student'), -('100009', '800002994', '2021FA', ',student'), -('100110', '800002994', '2021FA', ',student'), -('100258', '800002994', '2021FA', ',student'), -('100436', '800002994', '2021FA', ',student'), -('100572', '800002994', '2021FA', ',student'), -('100151', '800002998', '2021FA', ',student'), -('100276', '800002998', '2021FA', ',student'), -('100546', '800002998', '2021FA', ',student'), -('100579', '800002998', '2021FA', ',student'), -('100618', '800002998', '2021FA', ',student') +(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') ; -create table sis_acad_programs ( - acad_prog_id varchar(10), - description varchar(35), - dept_id varchar(5) +/************* sis_acad_careers *************/ + +create table sis_acad_careers ( + acad_career_id varchar(10), + description varchar(40), + dept_id varchar(5) ); -insert into sis_acad_programs (acad_prog_id, description, dept_id) values +insert into sis_acad_careers (acad_career_id, description, dept_id) values ('UGRD', 'Undergraduate', 20000), ('NDP', 'Non-degree Program', 20000), ('GRD', 'Graduate School', 30000), @@ -16231,1571 +10903,1689 @@ insert into sis_acad_programs (acad_prog_id, description, dept_id) values ; -create table sis_stu_programs ( - person_id varchar(10), - acad_prog_id varchar(10), - grad_year_expected varchar(10), - school_id varchar(10), - acad_dept_id varchar(10) +/************* sis_prog_status *************/ + +create table sis_prog_status ( + prog_status_id varchar(2), + description varchar(30) ); -insert into sis_stu_programs (person_id, acad_prog_id, grad_year_expected, school_id, acad_dept_id) values -(800000004, 'UGRD', 2022, 'AS', 'ENGL'), -(800000005, 'UGRD', 2021, 'AS', 'GERM'), -(800000006, 'UGRD', 2021, 'AS', 'ENV'), -(800000007, 'UGRD', 2025, 'AS', 'PSCI'), -(800000008, 'UGRD', 2023, 'AS', 'EALC'), -(800000011, 'UGRD', 2024, 'AS', 'MAT'), -(800000012, 'UGRD', 2023, 'AS', 'POLI'), -(800000013, 'UGRD', 2024, 'AS', 'ENGL'), -(800000017, 'UGRD', 2021, 'AS', 'GSS'), -(800000018, 'UGRD', 2021, 'AS', 'HUM'), -(800000022, 'UGRD', 2024, 'AS', 'ROML'), -(800000076, 'UGRD', 2023, 'AS', 'PSYC'), -(800000027, 'UGRD', 2022, 'AS', 'HIST'), -(800000028, 'UGRD', 2023, 'AS', 'WRI'), -(800000031, 'UGRD', 2023, 'AS', 'GERM'), -(800000032, 'UGRD', 2022, 'AS', 'MAT'), -(800000034, 'UGRD', 2021, 'AS', 'THEA'), -(800000038, 'UGRD', 2025, 'AS', 'MAT'), -(800000040, 'UGRD', 2023, 'AS', 'LING'), -(800000041, 'UGRD', 2022, 'AS', 'EALC'), -(800000042, 'UGRD', 2021, 'AS', 'HUM'), -(800000044, 'UGRD', 2024, 'AS', 'CS'), -(800000047, 'UGRD', 2025, 'AS', 'LIT'), -(800000049, 'UGRD', 2023, 'AS', 'ARCH'), -(800000052, 'UGRD', 2025, 'AS', 'GERM'), -(800000054, 'UGRD', 2023, 'AS', 'GHP'), -(800000055, 'UGRD', 2023, 'AS', 'SOC'), -(800000056, 'UGRD', 2025, 'AS', 'ART'), -(800000057, 'UGRD', 2022, 'AS', 'GHP'), -(800000059, 'UGRD', 2024, 'AS', 'SOC'), -(800000060, 'UGRD', 2025, 'AS', 'ROML'), -(800000063, 'UGRD', 2024, 'AS', 'STAT'), -(800000064, 'UGRD', 2023, 'AS', 'APCS'), -(800000065, 'UGRD', 2022, 'AS', 'SLAV'), -(800000066, 'UGRD', 2023, 'AS', 'REL'), -(800000069, 'UGRD', 2024, 'AS', 'HIST'), -(800000070, 'UGRD', 2021, 'AS', 'ECOM'), -(800000290, 'UGRD', 2025, 'AS', 'SLAV'), -(800000074, 'UGRD', 2025, 'AS', 'AAAS'), -(800000080, 'UGRD', 2024, 'AS', 'GSS'), -(800000082, 'UGRD', 2023, 'AS', 'PHY'), -(800000085, 'NDP', NULL, 'AS', 'BIOS'), -(800000088, 'NDP', NULL, 'AS', 'STAT'), -(800000093, 'UGRD', 2023, 'AS', 'ENV'), -(800000097, 'UGRD', 2024, 'AS', 'SOC'), -(800000105, 'UGRD', 2023, 'AS', 'BPHY'), -(800000106, 'UGRD', 2022, 'AS', 'CELT'), -(800000108, 'UGRD', 2022, 'AS', 'APCS'), -(800000111, 'UGRD', 2022, 'AS', 'CLSS'), -(800000112, 'UGRD', 2024, 'AS', 'MUS'), -(800000113, 'UGRD', 2024, 'AS', 'PHIL'), -(800000116, 'UGRD', 2025, 'AS', 'MCB'), -(800000123, 'UGRD', 2021, 'AS', 'CPLT'), -(800000125, 'NDP', NULL, 'AS', 'MEDS'), -(800000126, 'UGRD', 2021, 'AS', 'CELT'), -(800000129, 'UGRD', 2021, 'AS', 'ENGL'), -(800000132, 'UGRD', 2021, 'AS', 'MEDS'), -(800000136, 'UGRD', 2022, 'AS', 'STAT'), -(800000137, 'UGRD', 2023, 'AS', 'PSYC'), -(800000141, 'UGRD', 2022, 'AS', 'REL'), -(800000144, 'UGRD', 2023, 'AS', 'GHP'), -(800000147, 'UGRD', 2025, 'AS', 'CHEM'), -(800000148, 'UGRD', 2025, 'AS', 'GSS'), -(800000150, 'UGRD', 2021, 'AS', 'REL'), -(800000154, 'UGRD', 2022, 'AS', 'CS'), -(800000157, 'UGRD', 2021, 'AS', 'ENGL'), -(800000158, 'UGRD', 2023, 'AS', 'GVMT'), -(800000159, 'UGRD', 2022, 'AS', 'ENV'), -(800000160, 'UGRD', 2024, 'AS', 'MCB'), -(800000161, 'UGRD', 2021, 'AS', 'MAT'), -(800000896, 'UGRD', 2021, 'AS', 'NELC'), -(800000166, 'UGRD', 2021, 'AS', 'CS'), -(800000167, 'UGRD', 2023, 'AS', 'NELC'), -(800000169, 'UGRD', 2021, 'AS', 'MEDS'), -(800000172, 'UGRD', 2021, 'AS', 'SOC'), -(800000173, 'UGRD', 2023, 'AS', 'ENV'), -(800000177, 'UGRD', 2024, 'AS', 'ENG'), -(800002827, 'UGRD', 2022, 'AS', 'CELT'), -(800000180, 'UGRD', 2025, 'AS', 'POLI'), -(800000181, 'UGRD', 2021, 'AS', 'BPHY'), -(800000184, 'UGRD', 2021, 'AS', 'ROML'), -(800002269, 'UGRD', 2023, 'AS', 'PHIL'), -(800000188, 'UGRD', 2022, 'AS', 'APHY'), -(800000189, 'UGRD', 2023, 'AS', 'APCS'), -(800000193, 'UGRD', 2022, 'AS', 'REL'), -(800000195, 'UGRD', 2023, 'AS', 'GHP'), -(800000197, 'UGRD', 2025, 'AS', 'SLAV'), -(800000198, 'UGRD', 2021, 'AS', 'AAAS'), -(800000200, 'UGRD', 2021, 'AS', 'MEDS'), -(800000202, 'UGRD', 2021, 'AS', 'MES'), -(800000206, 'UGRD', 2022, 'AS', 'MES'), -(800000210, 'UGRD', 2025, 'AS', 'NELC'), -(800000211, 'UGRD', 2021, 'AS', 'CELT'), -(800000212, 'UGRD', 2021, 'AS', 'NELC'), -(800000213, 'UGRD', 2023, 'AS', 'PHY'), -(800000214, 'UGRD', 2024, 'AS', 'PSYC'), -(800000215, 'UGRD', 2024, 'AS', 'GERM'), -(800000216, 'UGRD', 2023, 'AS', 'WRI'), -(800000219, 'UGRD', 2022, 'AS', 'ASTR'), -(800000220, 'UGRD', 2023, 'AS', 'APCS'), -(800000225, 'UGRD', 2024, 'AS', 'ENG'), -(800000226, 'UGRD', 2025, 'AS', 'ENV'), -(800000231, 'UGRD', 2022, 'AS', 'HIST'), -(800000233, 'UGRD', 2023, 'AS', 'MES'), -(800000238, 'UGRD', 2021, 'AS', 'WRI'), -(800000241, 'UGRD', 2025, 'AS', 'ENG'), -(800000242, 'NDP', NULL, 'AS', 'MEDS'), -(800000246, 'UGRD', 2024, 'AS', 'LING'), -(800000248, 'UGRD', 2024, 'AS', 'CHEM'), -(800000255, 'UGRD', 2023, 'AS', 'LIT'), -(800000256, 'UGRD', 2025, 'AS', 'CHEM'), -(800000264, 'UGRD', 2021, 'AS', 'SOC'), -(800000267, 'UGRD', 2024, 'AS', 'WRI'), -(800000270, 'UGRD', 2022, 'AS', 'REL'), -(800000271, 'UGRD', 2022, 'AS', 'SAS'), -(800000272, 'UGRD', 2023, 'AS', 'PHIL'), -(800000273, 'UGRD', 2022, 'AS', 'BIOS'), -(800000275, 'UGRD', 2025, 'AS', 'PSYC'), -(800000277, 'UGRD', 2021, 'AS', 'SAS'), -(800000279, 'UGRD', 2022, 'AS', 'HUM'), -(800000280, 'UGRD', 2021, 'AS', 'MAT'), -(800000282, 'UGRD', 2022, 'AS', 'MES'), -(800000284, 'UGRD', 2025, 'AS', 'CS'), -(800001960, 'UGRD', 2025, 'AS', 'ARCH'), -(800000288, 'UGRD', 2024, 'AS', 'POLI'), -(800000291, 'UGRD', 2021, 'AS', 'REL'), -(800000404, 'UGRD', 2024, 'AS', 'BIOL'), -(800000293, 'UGRD', 2022, 'AS', 'HUM'), -(800000294, 'UGRD', 2024, 'AS', 'ECOM'), -(800000295, 'UGRD', 2022, 'AS', 'PSYC'), -(800000296, 'UGRD', 2025, 'AS', 'POLI'), -(800000297, 'UGRD', 2025, 'AS', 'PSCI'), -(800000299, 'UGRD', 2025, 'AS', 'APCS'), -(800000302, 'UGRD', 2021, 'AS', 'CELT'), -(800002527, 'UGRD', 2021, 'AS', 'GSS'), -(800000306, 'UGRD', 2022, 'AS', 'ASTR'), -(800000309, 'UGRD', 2025, 'AS', 'GERM'), -(800000310, 'UGRD', 2025, 'AS', 'GVMT'), -(800000313, 'UGRD', 2023, 'AS', 'GVMT'), -(800000316, 'UGRD', 2024, 'AS', 'ASTR'), -(800000317, 'UGRD', 2024, 'AS', 'CPLT'), -(800000321, 'UGRD', 2022, 'AS', 'NELC'), -(800000322, 'UGRD', 2023, 'AS', 'APHY'), -(800000326, 'UGRD', 2024, 'AS', 'MES'), -(800000327, 'UGRD', 2023, 'AS', 'CELT'), -(800000330, 'UGRD', 2025, 'AS', 'ENG'), -(800000332, 'UGRD', 2022, 'AS', 'LING'), -(800000680, 'UGRD', 2021, 'AS', 'BIOL'), -(800000343, 'UGRD', 2025, 'AS', 'CS'), -(800000346, 'UGRD', 2025, 'AS', 'PHIL'), -(800000350, 'UGRD', 2024, 'AS', 'MCB'), -(800000354, 'UGRD', 2025, 'AS', 'LIT'), -(800000356, 'UGRD', 2025, 'AS', 'SAS'), -(800000359, 'UGRD', 2024, 'AS', 'PSCI'), -(800000362, 'UGRD', 2023, 'AS', 'BIOL'), -(800000365, 'UGRD', 2022, 'AS', 'AAAS'), -(800000367, 'UGRD', 2022, 'AS', 'POLI'), -(800000368, 'UGRD', 2022, 'AS', 'ART'), -(800000369, 'UGRD', 2025, 'AS', 'STAT'), -(800000372, 'UGRD', 2024, 'AS', 'WRI'), -(800000373, 'UGRD', 2021, 'AS', 'MAT'), -(800000374, 'UGRD', 2021, 'AS', 'THEA'), -(800000375, 'UGRD', 2023, 'AS', 'CELT'), -(800000380, 'UGRD', 2021, 'AS', 'PSCI'), -(800000381, 'UGRD', 2024, 'AS', 'ART'), -(800000385, 'UGRD', 2021, 'AS', 'EALC'), -(800000387, 'UGRD', 2025, 'AS', 'MCB'), -(800000388, 'UGRD', 2021, 'AS', 'ENV'), -(800000390, 'UGRD', 2023, 'AS', 'ASTR'), -(800000393, 'UGRD', 2024, 'AS', 'CLSS'), -(800000394, 'UGRD', 2025, 'AS', 'REL'), -(800000398, 'UGRD', 2025, 'AS', 'ART'), -(800000400, 'UGRD', 2024, 'AS', 'GVMT'), -(800000402, 'UGRD', 2024, 'AS', 'CPLT'), -(800000403, 'UGRD', 2023, 'AS', 'APCS'), -(800000406, 'UGRD', 2025, 'AS', 'GHP'), -(800000409, 'UGRD', 2024, 'AS', 'CHEM'), -(800000410, 'UGRD', 2021, 'AS', 'ANTH'), -(800000411, 'UGRD', 2023, 'AS', 'CHEM'), -(800000412, 'UGRD', 2021, 'AS', 'ENGL'), -(800000417, 'UGRD', 2025, 'AS', 'ART'), -(800000418, 'UGRD', 2024, 'AS', 'MEDS'), -(800000419, 'UGRD', 2023, 'AS', 'AS'), -(800002343, 'UGRD', 2024, 'AS', 'MCB'), -(800000421, 'UGRD', 2024, 'AS', 'CS'), -(800000424, 'UGRD', 2023, 'AS', 'ENV'), -(800000425, 'UGRD', 2023, 'AS', 'PSYC'), -(800000427, 'UGRD', 2021, 'AS', 'AAAS'), -(800000431, 'UGRD', 2024, 'AS', 'SOCS'), -(800000433, 'NDP', NULL, 'AS', 'SOCS'), -(800000434, 'UGRD', 2021, 'AS', 'HIST'), -(800000436, 'UGRD', 2021, 'AS', 'ECOM'), -(800000438, 'UGRD', 2025, 'AS', 'GSS'), -(800000442, 'UGRD', 2021, 'AS', 'PSCI'), -(800000445, 'NDP', NULL, 'AS', 'THEA'), -(800000450, 'UGRD', 2022, 'AS', 'AAAS'), -(800000451, 'UGRD', 2023, 'AS', 'ENGL'), -(800000458, 'UGRD', 2024, 'AS', 'MAT'), -(800000464, 'UGRD', 2021, 'AS', 'ENG'), -(800000466, 'UGRD', 2023, 'AS', 'CS'), -(800000469, 'UGRD', 2025, 'AS', 'LING'), -(800000471, 'UGRD', 2023, 'AS', 'AAAS'), -(800000473, 'UGRD', 2024, 'AS', 'HUM'), -(800000474, 'UGRD', 2023, 'AS', 'ECOM'), -(800000478, 'UGRD', 2022, 'AS', 'SLAV'), -(800000479, 'NDP', NULL, 'AS', 'APHY'), -(800000480, 'UGRD', 2024, 'AS', 'ENG'), -(800000486, 'UGRD', 2023, 'AS', 'ARCH'), -(800000489, 'UGRD', 2022, 'AS', 'PHIL'), -(800000491, 'UGRD', 2024, 'AS', 'AMAT'), -(800000494, 'UGRD', 2023, 'AS', 'CHEM'), -(800000497, 'UGRD', 2023, 'AS', 'MAT'), -(800000499, 'UGRD', 2025, 'AS', 'STAT'), -(800000500, 'UGRD', 2023, 'AS', 'CPLT'), -(800000502, 'UGRD', 2022, 'AS', 'STAT'), -(800000503, 'UGRD', 2022, 'AS', 'APCS'), -(800000506, 'UGRD', 2022, 'AS', 'EALC'), -(800000509, 'UGRD', 2025, 'AS', 'MUS'), -(800000512, 'UGRD', 2021, 'AS', 'APCS'), -(800000514, 'UGRD', 2023, 'AS', 'PSYC'), -(800000515, 'UGRD', 2025, 'AS', 'ARCH'), -(800000518, 'UGRD', 2024, 'AS', 'POLI'), -(800000520, 'UGRD', 2025, 'AS', 'LIT'), -(800000521, 'UGRD', 2022, 'AS', 'SLAV'), -(800000527, 'UGRD', 2021, 'AS', 'GHP'), -(800000531, 'UGRD', 2024, 'AS', 'ART'), -(800000534, 'UGRD', 2023, 'AS', 'ENG'), -(800000538, 'UGRD', 2023, 'AS', 'PSCI'), -(800000539, 'UGRD', 2021, 'AS', 'HIST'), -(800000540, 'UGRD', 2023, 'AS', 'LIT'), -(800000542, 'UGRD', 2025, 'AS', 'PHIL'), -(800000543, 'UGRD', 2023, 'AS', 'BIOL'), -(800000545, 'UGRD', 2024, 'AS', 'ANTH'), -(800000547, 'UGRD', 2024, 'AS', 'POLI'), -(800000548, 'UGRD', 2025, 'AS', 'MUS'), -(800000549, 'UGRD', 2021, 'AS', 'SAS'), -(800000554, 'UGRD', 2023, 'AS', 'MEDS'), -(800000555, 'UGRD', 2025, 'AS', 'ARCH'), -(800000556, 'UGRD', 2021, 'AS', 'PHIL'), -(800000557, 'UGRD', 2022, 'AS', 'BIOL'), -(800000558, 'UGRD', 2021, 'AS', 'GVMT'), -(800000564, 'UGRD', 2025, 'AS', 'APHY'), -(800000565, 'UGRD', 2023, 'AS', 'MAT'), -(800000566, 'UGRD', 2025, 'AS', 'AS'), -(800000568, 'UGRD', 2025, 'AS', 'THEA'), -(800000569, 'UGRD', 2021, 'AS', 'ENV'), -(800000570, 'UGRD', 2023, 'AS', 'CS'), -(800000571, 'UGRD', 2023, 'AS', 'GERM'), -(800000572, 'UGRD', 2025, 'AS', 'APHY'), -(800000573, 'UGRD', 2025, 'AS', 'HIST'), -(800000574, 'UGRD', 2021, 'AS', 'EALC'), -(800000575, 'UGRD', 2023, 'AS', 'NELC'), -(800000576, 'UGRD', 2021, 'AS', 'STAT'), -(800000577, 'UGRD', 2025, 'AS', 'ASTR'), -(800000579, 'UGRD', 2023, 'AS', 'LING'), -(800000580, 'UGRD', 2023, 'AS', 'ASTR'), -(800000581, 'UGRD', 2022, 'AS', 'MUS'), -(800000584, 'UGRD', 2022, 'AS', 'ASTR'), -(800000585, 'UGRD', 2024, 'AS', 'GHP'), -(800000586, 'UGRD', 2022, 'AS', 'CHEM'), -(800000588, 'UGRD', 2024, 'AS', 'GHP'), -(800000590, 'UGRD', 2021, 'AS', 'WRI'), -(800000591, 'UGRD', 2021, 'AS', 'ART'), -(800000592, 'UGRD', 2024, 'AS', 'ENGL'), -(800000593, 'UGRD', 2022, 'AS', 'CS'), -(800000595, 'UGRD', 2023, 'AS', 'GERM'), -(800000596, 'UGRD', 2025, 'AS', 'ECOM'), -(800000597, 'UGRD', 2025, 'AS', 'GHP'), -(800000602, 'UGRD', 2025, 'AS', 'GVMT'), -(800000603, 'UGRD', 2025, 'AS', 'HUM'), -(800000606, 'UGRD', 2021, 'AS', 'BIOS'), -(800000607, 'UGRD', 2022, 'AS', 'LING'), -(800000610, 'UGRD', 2024, 'AS', 'REL'), -(800000611, 'UGRD', 2022, 'AS', 'AMAT'), -(800000615, 'UGRD', 2024, 'AS', 'ASTR'), -(800000616, 'UGRD', 2024, 'AS', 'ECOM'), -(800000622, 'UGRD', 2023, 'AS', 'ENGL'), -(800000623, 'UGRD', 2025, 'AS', 'CPLT'), -(800000624, 'UGRD', 2022, 'AS', 'STAT'), -(800000625, 'UGRD', 2024, 'AS', 'CELT'), -(800000626, 'UGRD', 2021, 'AS', 'AS'), -(800000627, 'UGRD', 2022, 'AS', 'GVMT'), -(800000628, 'UGRD', 2023, 'AS', 'BIOL'), -(800000630, 'UGRD', 2022, 'AS', 'SOC'), -(800000631, 'UGRD', 2025, 'AS', 'GHP'), -(800000632, 'UGRD', 2024, 'AS', 'PSCI'), -(800000634, 'UGRD', 2024, 'AS', 'BPHY'), -(800000635, 'UGRD', 2024, 'AS', 'SOCS'), -(800000636, 'UGRD', 2025, 'AS', 'MEDS'), -(800000637, 'UGRD', 2024, 'AS', 'PSYC'), -(800000641, 'UGRD', 2024, 'AS', 'GHP'), -(800000643, 'UGRD', 2025, 'AS', 'HIST'), -(800000644, 'UGRD', 2022, 'AS', 'CLSS'), -(800000646, 'UGRD', 2022, 'AS', 'ROML'), -(800000652, 'UGRD', 2025, 'AS', 'SAS'), -(800000655, 'UGRD', 2022, 'AS', 'MAT'), -(800000656, 'UGRD', 2025, 'AS', 'POLI'), -(800000657, 'UGRD', 2024, 'AS', 'REL'), -(800000658, 'UGRD', 2021, 'AS', 'PHY'), -(800000660, 'UGRD', 2025, 'AS', 'APHY'), -(800000662, 'UGRD', 2022, 'AS', 'ANTH'), -(800000663, 'UGRD', 2024, 'AS', 'REL'), -(800000664, 'NDP', NULL, 'AS', 'GSS'), -(800000665, 'UGRD', 2024, 'AS', 'PSYC'), -(800000666, 'UGRD', 2022, 'AS', 'AMAT'), -(800000671, 'UGRD', 2025, 'AS', 'GVMT'), -(800000672, 'UGRD', 2022, 'AS', 'PHY'), -(800000673, 'UGRD', 2024, 'AS', 'ROML'), -(800000676, 'UGRD', 2021, 'AS', 'BIOS'), -(800002358, 'UGRD', 2023, 'AS', 'AS'), -(800000679, 'UGRD', 2024, 'AS', 'GSS'), -(800000682, 'UGRD', 2025, 'AS', 'POLI'), -(800000685, 'UGRD', 2021, 'AS', 'AMAT'), -(800000688, 'UGRD', 2024, 'AS', 'AAAS'), -(800000694, 'UGRD', 2022, 'AS', 'ARCH'), -(800000701, 'UGRD', 2024, 'AS', 'BIOS'), -(800000705, 'UGRD', 2025, 'AS', 'CS'), -(800000707, 'UGRD', 2021, 'AS', 'ENG'), -(800000708, 'NDP', NULL, 'AS', 'ENG'), -(800000709, 'UGRD', 2023, 'AS', 'CELT'), -(800000710, 'UGRD', 2025, 'AS', 'NELC'), -(800000711, 'UGRD', 2021, 'AS', 'AS'), -(800000712, 'UGRD', 2023, 'AS', 'GERM'), -(800000714, 'UGRD', 2024, 'AS', 'LING'), -(800000716, 'UGRD', 2021, 'AS', 'CLSS'), -(800000717, 'UGRD', 2025, 'AS', 'BIOL'), -(800000718, 'UGRD', 2025, 'AS', 'CPLT'), -(800000719, 'UGRD', 2022, 'AS', 'ENG'), -(800000721, 'UGRD', 2025, 'AS', 'APCS'), -(800000723, 'UGRD', 2022, 'AS', 'SOC'), -(800000726, 'UGRD', 2023, 'AS', 'AMAT'), -(800000727, 'UGRD', 2025, 'AS', 'AS'), -(800000728, 'UGRD', 2022, 'AS', 'GERM'), -(800000729, 'UGRD', 2025, 'AS', 'GERM'), -(800000733, 'UGRD', 2021, 'AS', 'POLI'), -(800000734, 'UGRD', 2021, 'AS', 'APCS'), -(800000737, 'UGRD', 2023, 'AS', 'SOC'), -(800000738, 'UGRD', 2025, 'AS', 'GHP'), -(800000739, 'UGRD', 2021, 'AS', 'CLSS'), -(800000740, 'UGRD', 2024, 'AS', 'AS'), -(800000741, 'UGRD', 2021, 'AS', 'MUS'), -(800000743, 'UGRD', 2024, 'AS', 'CPLT'), -(800000744, 'UGRD', 2023, 'AS', 'PHY'), -(800000747, 'UGRD', 2023, 'AS', 'CS'), -(800000748, 'UGRD', 2023, 'AS', 'NELC'), -(800000749, 'UGRD', 2022, 'AS', 'GERM'), -(800000754, 'UGRD', 2022, 'AS', 'ENV'), -(800000755, 'UGRD', 2024, 'AS', 'SOC'), -(800000759, 'UGRD', 2021, 'AS', 'CLSS'), -(800000761, 'UGRD', 2023, 'AS', 'MEDS'), -(800000762, 'UGRD', 2022, 'AS', 'ART'), -(800000765, 'UGRD', 2023, 'AS', 'NELC'), -(800000766, 'UGRD', 2022, 'AS', 'GERM'), -(800000767, 'UGRD', 2025, 'AS', 'POLI'), -(800000769, 'UGRD', 2023, 'AS', 'WRI'), -(800000770, 'UGRD', 2023, 'AS', 'PSCI'), -(800000772, 'UGRD', 2025, 'AS', 'CLSS'), -(800000773, 'UGRD', 2024, 'AS', 'REL'), -(800000776, 'UGRD', 2024, 'AS', 'PHIL'), -(800000778, 'UGRD', 2024, 'AS', 'ENV'), -(800000782, 'UGRD', 2024, 'AS', 'LIT'), -(800000790, 'UGRD', 2022, 'AS', 'WRI'), -(800000791, 'UGRD', 2023, 'AS', 'LING'), -(800000793, 'UGRD', 2021, 'AS', 'PSCI'), -(800000798, 'UGRD', 2022, 'AS', 'BIOS'), -(800000799, 'UGRD', 2023, 'AS', 'BPHY'), -(800000801, 'UGRD', 2024, 'AS', 'REL'), -(800000803, 'UGRD', 2022, 'AS', 'BPHY'), -(800000804, 'UGRD', 2023, 'AS', 'ROML'), -(800000808, 'UGRD', 2022, 'AS', 'MEDS'), -(800000809, 'UGRD', 2025, 'AS', 'ECOM'), -(800002456, 'UGRD', 2024, 'AS', 'PHY'), -(800000811, 'UGRD', 2021, 'AS', 'GVMT'), -(800000815, 'UGRD', 2021, 'AS', 'CELT'), -(800000818, 'UGRD', 2023, 'AS', 'BPHY'), -(800000819, 'UGRD', 2025, 'AS', 'BPHY'), -(800000821, 'UGRD', 2024, 'AS', 'PSYC'), -(800000827, 'UGRD', 2022, 'AS', 'PHIL'), -(800000828, 'UGRD', 2022, 'AS', 'CPLT'), -(800000830, 'UGRD', 2021, 'AS', 'AMAT'), -(800000835, 'UGRD', 2024, 'AS', 'HUM'), -(800000837, 'UGRD', 2021, 'AS', 'CS'), -(800000840, 'UGRD', 2022, 'AS', 'CHEM'), -(800000841, 'UGRD', 2025, 'AS', 'MAT'), -(800000843, 'UGRD', 2024, 'AS', 'ENV'), -(800000845, 'UGRD', 2024, 'AS', 'PSYC'), -(800000846, 'UGRD', 2025, 'AS', 'HIST'), -(800000847, 'UGRD', 2021, 'AS', 'CS'), -(800000848, 'NDP', NULL, 'AS', 'CS'), -(800000849, 'UGRD', 2021, 'AS', 'ENG'), -(800000850, 'UGRD', 2025, 'AS', 'AMAT'), -(800000852, 'UGRD', 2025, 'AS', 'APCS'), -(800000855, 'UGRD', 2021, 'AS', 'NELC'), -(800000859, 'UGRD', 2024, 'AS', 'HUM'), -(800000861, 'NDP', NULL, 'AS', 'HIST'), -(800000862, 'UGRD', 2025, 'AS', 'CHEM'), -(800000864, 'UGRD', 2024, 'AS', 'EALC'), -(800000867, 'UGRD', 2021, 'AS', 'SAS'), -(800000868, 'UGRD', 2021, 'AS', 'APHY'), -(800000871, 'UGRD', 2024, 'AS', 'BPHY'), -(800000874, 'UGRD', 2024, 'AS', 'CLSS'), -(800000876, 'UGRD', 2025, 'AS', 'LIT'), -(800000877, 'UGRD', 2022, 'AS', 'ROML'), -(800000878, 'UGRD', 2025, 'AS', 'ECOM'), -(800000879, 'UGRD', 2022, 'AS', 'THEA'), -(800000880, 'UGRD', 2025, 'AS', 'SLAV'), -(800000881, 'UGRD', 2022, 'AS', 'ROML'), -(800000882, 'UGRD', 2025, 'AS', 'ART'), -(800000885, 'UGRD', 2021, 'AS', 'GERM'), -(800000887, 'UGRD', 2025, 'AS', 'MUS'), -(800000889, 'UGRD', 2024, 'AS', 'GHP'), -(800000891, 'UGRD', 2022, 'AS', 'CPLT'), -(800000892, 'UGRD', 2025, 'AS', 'ASTR'), -(800000902, 'UGRD', 2023, 'AS', 'WRI'), -(800000903, 'UGRD', 2024, 'AS', 'ARCH'), -(800000904, 'UGRD', 2025, 'AS', 'PSCI'), -(800000905, 'UGRD', 2024, 'AS', 'MEDS'), -(800000907, 'UGRD', 2021, 'AS', 'CLSS'), -(800000908, 'UGRD', 2024, 'AS', 'BIOS'), -(800000909, 'UGRD', 2021, 'AS', 'APHY'), -(800000910, 'UGRD', 2023, 'AS', 'MCB'), -(800000911, 'UGRD', 2022, 'AS', 'PSYC'), -(800000914, 'UGRD', 2022, 'AS', 'BIOS'), -(800000915, 'UGRD', 2022, 'AS', 'THEA'), -(800000917, 'UGRD', 2024, 'AS', 'NELC'), -(800000920, 'UGRD', 2022, 'AS', 'POLI'), -(800000922, 'UGRD', 2022, 'AS', 'HUM'), -(800000923, 'UGRD', 2022, 'AS', 'LING'), -(800000924, 'UGRD', 2023, 'AS', 'SOC'), -(800000925, 'UGRD', 2023, 'AS', 'ECOM'), -(800000930, 'UGRD', 2023, 'AS', 'THEA'), -(800000938, 'UGRD', 2025, 'AS', 'HUM'), -(800000940, 'UGRD', 2024, 'AS', 'APHY'), -(800000942, 'UGRD', 2025, 'AS', 'EALC'), -(800000944, 'UGRD', 2023, 'AS', 'PSCI'), -(800000945, 'UGRD', 2022, 'AS', 'GSS'), -(800000947, 'UGRD', 2025, 'AS', 'CHEM'), -(800000948, 'UGRD', 2022, 'AS', 'PHIL'), -(800000951, 'UGRD', 2024, 'AS', 'BPHY'), -(800000952, 'UGRD', 2025, 'AS', 'ENGL'), -(800000953, 'UGRD', 2021, 'AS', 'MAT'), -(800000960, 'UGRD', 2025, 'AS', 'CLSS'), -(800000961, 'UGRD', 2022, 'AS', 'ROML'), -(800000963, 'UGRD', 2025, 'AS', 'HUM'), -(800000192, 'UGRD', 2023, 'AS', 'MES'), -(800000968, 'UGRD', 2023, 'AS', 'MAT'), -(800000971, 'UGRD', 2021, 'AS', 'ENG'), -(800000974, 'UGRD', 2021, 'AS', 'GERM'), -(800000977, 'UGRD', 2024, 'AS', 'APHY'), -(800000979, 'UGRD', 2022, 'AS', 'GSS'), -(800000981, 'UGRD', 2024, 'AS', 'AMAT'), -(800000984, 'UGRD', 2022, 'AS', 'PHIL'), -(800000985, 'UGRD', 2021, 'AS', 'NELC'), -(800000986, 'UGRD', 2025, 'AS', 'APHY'), -(800000987, 'UGRD', 2024, 'AS', 'CPLT'), -(800000989, 'UGRD', 2024, 'AS', 'APCS'), -(800000991, 'UGRD', 2022, 'AS', 'AS'), -(800000993, 'UGRD', 2024, 'AS', 'ENV'), -(800000995, 'UGRD', 2025, 'AS', 'BIOL'), -(800000996, 'UGRD', 2024, 'AS', 'HUM'), -(800000997, 'UGRD', 2021, 'AS', 'CPLT'), -(800000998, 'UGRD', 2025, 'AS', 'PSYC'), -(800001000, 'UGRD', 2021, 'AS', 'ANTH'), -(800001003, 'UGRD', 2021, 'AS', 'CPLT'), -(800001006, 'UGRD', 2021, 'AS', 'PSCI'), -(800001008, 'UGRD', 2021, 'AS', 'THEA'), -(800001010, 'UGRD', 2025, 'AS', 'REL'), -(800001011, 'UGRD', 2022, 'AS', 'ROML'), -(800001012, 'UGRD', 2025, 'AS', 'APHY'), -(800001014, 'UGRD', 2025, 'AS', 'CHEM'), -(800001015, 'UGRD', 2023, 'AS', 'THEA'), -(800001016, 'UGRD', 2023, 'AS', 'ROML'), -(800001019, 'UGRD', 2024, 'AS', 'PHIL'), -(800001021, 'UGRD', 2023, 'AS', 'GERM'), -(800001023, 'NDP', NULL, 'AS', 'GVMT'), -(800001029, 'UGRD', 2025, 'AS', 'APCS'), -(800001030, 'UGRD', 2021, 'AS', 'STAT'), -(800001034, 'UGRD', 2024, 'AS', 'HIST'), -(800001036, 'UGRD', 2021, 'AS', 'AS'), -(800001038, 'UGRD', 2024, 'AS', 'PHY'), -(800001047, 'UGRD', 2021, 'AS', 'PSCI'), -(800001048, 'UGRD', 2023, 'AS', 'ENG'), -(800001050, 'UGRD', 2025, 'AS', 'ANTH'), -(800001053, 'UGRD', 2023, 'AS', 'HUM'), -(800001058, 'UGRD', 2025, 'AS', 'HIST'), -(800001059, 'UGRD', 2024, 'AS', 'NELC'), -(800001061, 'UGRD', 2021, 'AS', 'HUM'), -(800001063, 'UGRD', 2021, 'AS', 'BPHY'), -(800001067, 'UGRD', 2025, 'AS', 'AAAS'), -(800001070, 'UGRD', 2021, 'AS', 'BIOS'), -(800001073, 'UGRD', 2021, 'AS', 'THEA'), -(800001074, 'UGRD', 2024, 'AS', 'SOCS'), -(800001075, 'UGRD', 2024, 'AS', 'WRI'), -(800001076, 'UGRD', 2022, 'AS', 'ENG'), -(800001077, 'UGRD', 2025, 'AS', 'MEDS'), -(800001078, 'UGRD', 2022, 'AS', 'MES'), -(800001085, 'UGRD', 2025, 'AS', 'PHY'), -(800001090, 'UGRD', 2022, 'AS', 'APCS'), -(800001091, 'UGRD', 2024, 'AS', 'SLAV'), -(800001092, 'UGRD', 2021, 'AS', 'STAT'), -(800001094, 'UGRD', 2024, 'AS', 'EALC'), -(800001095, 'UGRD', 2022, 'AS', 'AMAT'), -(800001096, 'UGRD', 2023, 'AS', 'PSCI'), -(800001098, 'UGRD', 2022, 'AS', 'MUS'), -(800001100, 'UGRD', 2024, 'AS', 'ENGL'), -(800001102, 'UGRD', 2022, 'AS', 'ANTH'), -(800001104, 'UGRD', 2024, 'AS', 'CPLT'), -(800001106, 'UGRD', 2023, 'AS', 'MCB'), -(800001107, 'UGRD', 2021, 'AS', 'MCB'), -(800001112, 'UGRD', 2021, 'AS', 'WRI'), -(800001113, 'UGRD', 2021, 'AS', 'LING'), -(800001114, 'UGRD', 2025, 'AS', 'SLAV'), -(800001116, 'UGRD', 2022, 'AS', 'HUM'), -(800001117, 'UGRD', 2023, 'AS', 'CPLT'), -(800001118, 'UGRD', 2022, 'AS', 'GSS'), -(800001123, 'UGRD', 2024, 'AS', 'ENV'), -(800001124, 'UGRD', 2022, 'AS', 'BPHY'), -(800001127, 'UGRD', 2023, 'AS', 'MUS'), -(800001128, 'UGRD', 2023, 'AS', 'LIT'), -(800001130, 'UGRD', 2024, 'AS', 'WRI'), -(800001131, 'NDP', NULL, 'AS', 'MUS'), -(800001132, 'UGRD', 2024, 'AS', 'BPHY'), -(800001133, 'UGRD', 2024, 'AS', 'PSYC'), -(800001135, 'UGRD', 2021, 'AS', 'ART'), -(800001138, 'UGRD', 2023, 'AS', 'SOCS'), -(800001140, 'UGRD', 2021, 'AS', 'BIOS'), -(800001143, 'UGRD', 2024, 'AS', 'ENGL'), -(800001144, 'UGRD', 2022, 'AS', 'GERM'), -(800001148, 'UGRD', 2022, 'AS', 'ECOM'), -(800001149, 'UGRD', 2021, 'AS', 'CELT'), -(800001150, 'UGRD', 2021, 'AS', 'AAAS'), -(800001153, 'UGRD', 2025, 'AS', 'BPHY'), -(800001154, 'UGRD', 2024, 'AS', 'AS'), -(800001156, 'UGRD', 2024, 'AS', 'MUS'), -(800001159, 'UGRD', 2021, 'AS', 'MUS'), -(800001160, 'UGRD', 2022, 'AS', 'ENGL'), -(800001725, 'UGRD', 2022, 'AS', 'LIT'), -(800001164, 'UGRD', 2024, 'AS', 'GVMT'), -(800001165, 'UGRD', 2021, 'AS', 'POLI'), -(800001166, 'UGRD', 2023, 'AS', 'EALC'), -(800001167, 'UGRD', 2023, 'AS', 'GERM'), -(800001168, 'UGRD', 2021, 'AS', 'ASTR'), -(800001171, 'UGRD', 2024, 'AS', 'MUS'), -(800001172, 'UGRD', 2024, 'AS', 'HIST'), -(800000826, 'UGRD', 2022, 'AS', 'GSS'), -(800001174, 'UGRD', 2024, 'AS', 'LING'), -(800001176, 'UGRD', 2021, 'AS', 'WRI'), -(800001180, 'UGRD', 2025, 'AS', 'CS'), -(800001181, 'UGRD', 2023, 'AS', 'LING'), -(800001182, 'UGRD', 2024, 'AS', 'PHY'), -(800001183, 'UGRD', 2022, 'AS', 'ARCH'), -(800001184, 'UGRD', 2024, 'AS', 'ASTR'), -(800001185, 'UGRD', 2022, 'AS', 'BPHY'), -(800001187, 'UGRD', 2024, 'AS', 'HIST'), -(800001189, 'UGRD', 2022, 'AS', 'CS'), -(800001190, 'UGRD', 2025, 'AS', 'MES'), -(800001192, 'UGRD', 2022, 'AS', 'THEA'), -(800001195, 'UGRD', 2021, 'AS', 'AAAS'), -(800001198, 'UGRD', 2023, 'AS', 'STAT'), -(800001199, 'UGRD', 2025, 'AS', 'SOCS'), -(800001205, 'UGRD', 2022, 'AS', 'AMAT'), -(800001206, 'UGRD', 2023, 'AS', 'LIT'), -(800001207, 'UGRD', 2023, 'AS', 'POLI'), -(800001209, 'UGRD', 2024, 'AS', 'ENG'), -(800001211, 'UGRD', 2022, 'AS', 'LIT'), -(800002305, 'UGRD', 2023, 'AS', 'NELC'), -(800001213, 'UGRD', 2025, 'AS', 'ASTR'), -(800001214, 'UGRD', 2024, 'AS', 'APHY'), -(800001216, 'UGRD', 2024, 'AS', 'MAT'), -(800001217, 'UGRD', 2022, 'AS', 'AS'), -(800001220, 'UGRD', 2021, 'AS', 'AAAS'), -(800001222, 'UGRD', 2023, 'AS', 'WRI'), -(800001225, 'UGRD', 2022, 'AS', 'SLAV'), -(800001226, 'UGRD', 2023, 'AS', 'WRI'), -(800001229, 'UGRD', 2025, 'AS', 'GERM'), -(800001230, 'UGRD', 2025, 'AS', 'HIST'), -(800001231, 'UGRD', 2023, 'AS', 'HIST'), -(800001232, 'UGRD', 2024, 'AS', 'CELT'), -(800001233, 'UGRD', 2022, 'AS', 'SAS'), -(800001234, 'UGRD', 2023, 'AS', 'GHP'), -(800000165, 'UGRD', 2022, 'AS', 'HIST'), -(800001238, 'UGRD', 2022, 'AS', 'EALC'), -(800001239, 'UGRD', 2024, 'AS', 'SOCS'), -(800001240, 'UGRD', 2024, 'AS', 'BPHY'), -(800001244, 'UGRD', 2024, 'AS', 'MEDS'), -(800001246, 'UGRD', 2021, 'AS', 'CS'), -(800001248, 'UGRD', 2023, 'AS', 'POLI'), -(800001250, 'NDP', NULL, 'AS', 'REL'), -(800001251, 'UGRD', 2024, 'AS', 'BIOS'), -(800001252, 'UGRD', 2024, 'AS', 'PSYC'), -(800001257, 'UGRD', 2025, 'AS', 'REL'), -(800001258, 'UGRD', 2023, 'AS', 'ARCH'), -(800001260, 'UGRD', 2025, 'AS', 'ASTR'), -(800001270, 'UGRD', 2024, 'AS', 'PSCI'), -(800001272, 'UGRD', 2022, 'AS', 'SAS'), -(800001275, 'UGRD', 2023, 'AS', 'ANTH'), -(800001276, 'UGRD', 2022, 'AS', 'REL'), -(800001277, 'UGRD', 2022, 'AS', 'SOCS'), -(800001279, 'UGRD', 2023, 'AS', 'MUS'), -(800001280, 'UGRD', 2021, 'AS', 'MCB'), -(800001282, 'UGRD', 2022, 'AS', 'ANTH'), -(800001285, 'UGRD', 2023, 'AS', 'ASTR'), -(800001290, 'UGRD', 2021, 'AS', 'ENG'), -(800001291, 'UGRD', 2022, 'AS', 'AAAS'), -(800001296, 'UGRD', 2024, 'AS', 'GHP'), -(800001303, 'UGRD', 2024, 'AS', 'HUM'), -(800001304, 'UGRD', 2024, 'AS', 'SOCS'), -(800001305, 'UGRD', 2024, 'AS', 'HUM'), -(800001306, 'UGRD', 2021, 'AS', 'SLAV'), -(800001308, 'UGRD', 2023, 'AS', 'GERM'), -(800001309, 'UGRD', 2025, 'AS', 'APHY'), -(800001310, 'UGRD', 2024, 'AS', 'ARCH'), -(800001311, 'UGRD', 2024, 'AS', 'ENG'), -(800001313, 'UGRD', 2025, 'AS', 'POLI'), -(800001314, 'UGRD', 2023, 'AS', 'ENGL'), -(800001315, 'UGRD', 2024, 'AS', 'SAS'), -(800001316, 'UGRD', 2024, 'AS', 'MCB'), -(800001318, 'UGRD', 2024, 'AS', 'MEDS'), -(800001322, 'UGRD', 2024, 'AS', 'LING'), -(800001323, 'UGRD', 2023, 'AS', 'CHEM'), -(800001324, 'UGRD', 2024, 'AS', 'ENG'), -(800001325, 'UGRD', 2024, 'AS', 'AS'), -(800001326, 'UGRD', 2025, 'AS', 'APCS'), -(800001329, 'UGRD', 2023, 'AS', 'MCB'), -(800001332, 'UGRD', 2023, 'AS', 'NELC'), -(800001334, 'UGRD', 2025, 'AS', 'SOC'), -(800001337, 'UGRD', 2024, 'AS', 'APCS'), -(800001339, 'UGRD', 2025, 'AS', 'EALC'), -(800001341, 'UGRD', 2022, 'AS', 'POLI'), -(800001342, 'UGRD', 2023, 'AS', 'GSS'), -(800001343, 'UGRD', 2023, 'AS', 'NELC'), -(800001345, 'UGRD', 2025, 'AS', 'CHEM'), -(800001350, 'UGRD', 2025, 'AS', 'HUM'), -(800001354, 'UGRD', 2021, 'AS', 'AAAS'), -(800001358, 'UGRD', 2023, 'AS', 'NELC'), -(800001360, 'UGRD', 2024, 'AS', 'SOC'), -(800001363, 'UGRD', 2025, 'AS', 'ROML'), -(800001271, 'UGRD', 2022, 'AS', 'AMAT'), -(800001367, 'UGRD', 2023, 'AS', 'SOC'), -(800001369, 'UGRD', 2021, 'AS', 'MCB'), -(800001370, 'UGRD', 2022, 'AS', 'CPLT'), -(800001371, 'UGRD', 2023, 'AS', 'ECOM'), -(800001372, 'UGRD', 2024, 'AS', 'HIST'), -(800001373, 'UGRD', 2025, 'AS', 'CS'), -(800001374, 'UGRD', 2025, 'AS', 'BIOS'), -(800001375, 'UGRD', 2021, 'AS', 'SOCS'), -(800001377, 'UGRD', 2023, 'AS', 'HUM'), -(800001378, 'UGRD', 2024, 'AS', 'GVMT'), -(800001379, 'UGRD', 2021, 'AS', 'CS'), -(800001381, 'UGRD', 2021, 'AS', 'ROML'), -(800001383, 'UGRD', 2021, 'AS', 'PHIL'), -(800001393, 'UGRD', 2025, 'AS', 'MUS'), -(800001395, 'UGRD', 2021, 'AS', 'ANTH'), -(800001397, 'UGRD', 2024, 'AS', 'BIOL'), -(800001399, 'UGRD', 2024, 'AS', 'ARCH'), -(800001400, 'UGRD', 2021, 'AS', 'HUM'), -(800001401, 'UGRD', 2023, 'AS', 'AS'), -(800001402, 'UGRD', 2025, 'AS', 'AS'), -(800001409, 'UGRD', 2023, 'AS', 'PHY'), -(800001410, 'UGRD', 2021, 'AS', 'SAS'), -(800001412, 'UGRD', 2024, 'AS', 'LIT'), -(800001414, 'UGRD', 2022, 'AS', 'MAT'), -(800001418, 'UGRD', 2022, 'AS', 'PSYC'), -(800001420, 'UGRD', 2025, 'AS', 'ASTR'), -(800001421, 'UGRD', 2025, 'AS', 'ART'), -(800001422, 'UGRD', 2022, 'AS', 'ASTR'), -(800001426, 'UGRD', 2025, 'AS', 'SOCS'), -(800001428, 'UGRD', 2024, 'AS', 'AS'), -(800001429, 'UGRD', 2025, 'AS', 'AMAT'), -(800001431, 'UGRD', 2025, 'AS', 'BIOL'), -(800001433, 'UGRD', 2022, 'AS', 'ANTH'), -(800001434, 'UGRD', 2024, 'AS', 'HIST'), -(800001439, 'UGRD', 2024, 'AS', 'GSS'), -(800001440, 'UGRD', 2022, 'AS', 'LIT'), -(800001442, 'UGRD', 2025, 'AS', 'ART'), -(800001443, 'UGRD', 2023, 'AS', 'APCS'), -(800001444, 'UGRD', 2021, 'AS', 'LIT'), -(800001447, 'UGRD', 2025, 'AS', 'BIOS'), -(800001450, 'UGRD', 2023, 'AS', 'SOCS'), -(800001451, 'UGRD', 2022, 'AS', 'GERM'), -(800001454, 'UGRD', 2025, 'AS', 'ROML'), -(800001462, 'UGRD', 2021, 'AS', 'HIST'), -(800001463, 'UGRD', 2021, 'AS', 'CELT'), -(800001464, 'UGRD', 2022, 'AS', 'MCB'), -(800001466, 'UGRD', 2025, 'AS', 'MEDS'), -(800001468, 'NDP', NULL, 'AS', 'MEDS'), -(800001469, 'UGRD', 2023, 'AS', 'ARCH'), -(800001471, 'UGRD', 2022, 'AS', 'CELT'), -(800001473, 'UGRD', 2022, 'AS', 'PHIL'), -(800001474, 'UGRD', 2023, 'AS', 'ENV'), -(800001475, 'UGRD', 2025, 'AS', 'GHP'), -(800001476, 'UGRD', 2022, 'AS', 'CLSS'), -(800001477, 'UGRD', 2025, 'AS', 'MCB'), -(800001478, 'UGRD', 2025, 'AS', 'EALC'), -(800001479, 'UGRD', 2021, 'AS', 'ENV'), -(800001480, 'UGRD', 2023, 'AS', 'CELT'), -(800001481, 'UGRD', 2024, 'AS', 'POLI'), -(800001484, 'UGRD', 2024, 'AS', 'AS'), -(800001488, 'UGRD', 2025, 'AS', 'EALC'), -(800001499, 'UGRD', 2022, 'AS', 'LING'), -(800001500, 'UGRD', 2021, 'AS', 'CELT'), -(800001501, 'UGRD', 2024, 'AS', 'AMAT'), -(800001503, 'UGRD', 2023, 'AS', 'MAT'), -(800001504, 'UGRD', 2022, 'AS', 'THEA'), -(800001505, 'NDP', NULL, 'AS', 'SOCS'), -(800001506, 'UGRD', 2021, 'AS', 'ENGL'), -(800001508, 'UGRD', 2021, 'AS', 'AMAT'), -(800001509, 'UGRD', 2024, 'AS', 'CHEM'), -(800001511, 'UGRD', 2021, 'AS', 'SOCS'), -(800001518, 'UGRD', 2024, 'AS', 'BIOS'), -(800001519, 'UGRD', 2023, 'AS', 'CPLT'), -(800001523, 'UGRD', 2021, 'AS', 'ROML'), -(800001524, 'UGRD', 2025, 'AS', 'ASTR'), -(800001526, 'UGRD', 2022, 'AS', 'POLI'), -(800001528, 'UGRD', 2022, 'AS', 'STAT'), -(800001529, 'UGRD', 2024, 'AS', 'PHIL'), -(800001531, 'UGRD', 2025, 'AS', 'PHIL'), -(800001532, 'UGRD', 2024, 'AS', 'AAAS'), -(800001536, 'UGRD', 2024, 'AS', 'POLI'), -(800001537, 'UGRD', 2025, 'AS', 'SOCS'), -(800001540, 'UGRD', 2023, 'AS', 'CELT'), -(800001541, 'UGRD', 2021, 'AS', 'ART'), -(800001542, 'UGRD', 2021, 'AS', 'SLAV'), -(800001545, 'UGRD', 2025, 'AS', 'HUM'), -(800001546, 'UGRD', 2023, 'AS', 'SAS'), -(800001548, 'UGRD', 2022, 'AS', 'APHY'), -(800001550, 'UGRD', 2022, 'AS', 'LING'), -(800001552, 'UGRD', 2023, 'AS', 'SOC'), -(800001554, 'UGRD', 2024, 'AS', 'REL'), -(800001556, 'UGRD', 2021, 'AS', 'CHEM'), -(800001559, 'UGRD', 2022, 'AS', 'GHP'), -(800001561, 'UGRD', 2025, 'AS', 'NELC'), -(800001562, 'UGRD', 2022, 'AS', 'ASTR'), -(800001566, 'UGRD', 2025, 'AS', 'LIT'), -(800001572, 'UGRD', 2025, 'AS', 'AS'), -(800001573, 'UGRD', 2023, 'AS', 'CPLT'), -(800001581, 'UGRD', 2022, 'AS', 'CHEM'), -(800001582, 'UGRD', 2021, 'AS', 'MES'), -(800001583, 'UGRD', 2025, 'AS', 'ECOM'), -(800001584, 'UGRD', 2022, 'AS', 'BIOL'), -(800001588, 'UGRD', 2024, 'AS', 'PSYC'), -(800001591, 'UGRD', 2025, 'AS', 'AMAT'), -(800001592, 'UGRD', 2024, 'AS', 'BIOL'), -(800001596, 'NDP', NULL, 'AS', 'GHP'), -(800001599, 'NDP', NULL, 'AS', 'BIOS'), -(800001601, 'UGRD', 2021, 'AS', 'GERM'), -(800001605, 'UGRD', 2023, 'AS', 'APHY'), -(800001606, 'UGRD', 2025, 'AS', 'GERM'), -(800001607, 'UGRD', 2021, 'AS', 'STAT'), -(800001608, 'UGRD', 2021, 'AS', 'PHY'), -(800001609, 'UGRD', 2022, 'AS', 'STAT'), -(800001610, 'UGRD', 2022, 'AS', 'PHIL'), -(800001611, 'UGRD', 2023, 'AS', 'AMAT'), -(800001612, 'UGRD', 2023, 'AS', 'GVMT'), -(800001613, 'UGRD', 2023, 'AS', 'MES'), -(800001614, 'UGRD', 2023, 'AS', 'ECOM'), -(800001616, 'NDP', NULL, 'AS', 'REL'), -(800001617, 'UGRD', 2021, 'AS', 'ARCH'), -(800001620, 'UGRD', 2021, 'AS', 'BIOS'), -(800001621, 'UGRD', 2021, 'AS', 'MCB'), -(800001622, 'UGRD', 2025, 'AS', 'LIT'), -(800001623, 'UGRD', 2022, 'AS', 'BPHY'), -(800001625, 'UGRD', 2022, 'AS', 'CLSS'), -(800001626, 'UGRD', 2023, 'AS', 'AS'), -(800001630, 'UGRD', 2025, 'AS', 'SAS'), -(800001631, 'UGRD', 2024, 'AS', 'GHP'), -(800001633, 'UGRD', 2024, 'AS', 'SOC'), -(800001635, 'UGRD', 2022, 'AS', 'PHY'), -(800001637, 'UGRD', 2021, 'AS', 'CELT'), -(800001639, 'UGRD', 2022, 'AS', 'ARCH'), -(800001640, 'UGRD', 2025, 'AS', 'ENG'), -(800001641, 'UGRD', 2025, 'AS', 'CHEM'), -(800001643, 'UGRD', 2023, 'AS', 'ENV'), -(800001644, 'UGRD', 2025, 'AS', 'MEDS'), -(800001645, 'UGRD', 2023, 'AS', 'BIOS'), -(800001646, 'UGRD', 2021, 'AS', 'AS'), -(800001647, 'UGRD', 2021, 'AS', 'CELT'), -(800001648, 'UGRD', 2022, 'AS', 'GSS'), -(800001653, 'UGRD', 2023, 'AS', 'MES'), -(800001657, 'UGRD', 2024, 'AS', 'GSS'), -(800001659, 'UGRD', 2025, 'AS', 'CS'), -(800001662, 'UGRD', 2025, 'AS', 'SLAV'), -(800001665, 'UGRD', 2023, 'AS', 'NELC'), -(800001670, 'UGRD', 2025, 'AS', 'CELT'), -(800001671, 'UGRD', 2021, 'AS', 'GSS'), -(800001674, 'UGRD', 2025, 'AS', 'MEDS'), -(800001675, 'UGRD', 2025, 'AS', 'CLSS'), -(800001677, 'UGRD', 2021, 'AS', 'SLAV'), -(800001678, 'UGRD', 2022, 'AS', 'CELT'), -(800001679, 'UGRD', 2021, 'AS', 'CELT'), -(800001680, 'UGRD', 2021, 'AS', 'BIOL'), -(800001683, 'UGRD', 2025, 'AS', 'MUS'), -(800001689, 'UGRD', 2023, 'AS', 'AAAS'), -(800001691, 'UGRD', 2021, 'AS', 'AMAT'), -(800001692, 'UGRD', 2025, 'AS', 'HUM'), -(800001694, 'UGRD', 2023, 'AS', 'MES'), -(800001695, 'UGRD', 2022, 'AS', 'APCS'), -(800001696, 'UGRD', 2024, 'AS', 'BPHY'), -(800001697, 'UGRD', 2025, 'AS', 'ART'), -(800001698, 'UGRD', 2025, 'AS', 'HIST'), -(800001703, 'UGRD', 2021, 'AS', 'SOC'), -(800001704, 'UGRD', 2024, 'AS', 'AAAS'), -(800001705, 'UGRD', 2023, 'AS', 'LING'), -(800001706, 'NDP', NULL, 'AS', 'GVMT'), -(800001707, 'UGRD', 2024, 'AS', 'MEDS'), -(800001710, 'UGRD', 2023, 'AS', 'CHEM'), -(800001711, 'UGRD', 2021, 'AS', 'WRI'), -(800001713, 'UGRD', 2025, 'AS', 'NELC'), -(800001717, 'UGRD', 2021, 'AS', 'ART'), -(800001718, 'UGRD', 2025, 'AS', 'PHIL'), -(800001719, 'UGRD', 2021, 'AS', 'MAT'), -(800001720, 'UGRD', 2021, 'AS', 'APHY'), -(800001721, 'UGRD', 2023, 'AS', 'BIOL'), -(800001723, 'UGRD', 2025, 'AS', 'APHY'), -(800001724, 'UGRD', 2024, 'AS', 'SAS'), -(800002251, 'UGRD', 2021, 'AS', 'ARCH'), -(800001729, 'UGRD', 2023, 'AS', 'NELC'), -(800001730, 'UGRD', 2023, 'AS', 'CLSS'), -(800001732, 'UGRD', 2025, 'AS', 'BIOS'), -(800001735, 'UGRD', 2025, 'AS', 'AMAT'), -(800001738, 'UGRD', 2024, 'AS', 'CS'), -(800001741, 'UGRD', 2023, 'AS', 'AAAS'), -(800001745, 'UGRD', 2025, 'AS', 'PSYC'), -(800001747, 'UGRD', 2021, 'AS', 'EALC'), -(800001748, 'UGRD', 2025, 'AS', 'SOCS'), -(800001750, 'UGRD', 2023, 'AS', 'HUM'), -(800001751, 'UGRD', 2025, 'AS', 'SLAV'), -(800001754, 'UGRD', 2025, 'AS', 'ECOM'), -(800001759, 'UGRD', 2025, 'AS', 'BIOL'), -(800001761, 'UGRD', 2025, 'AS', 'MUS'), -(800001763, 'UGRD', 2021, 'AS', 'BIOL'), -(800001765, 'UGRD', 2022, 'AS', 'ANTH'), -(800001766, 'UGRD', 2021, 'AS', 'ENGL'), -(800001767, 'UGRD', 2025, 'AS', 'THEA'), -(800001768, 'UGRD', 2025, 'AS', 'HUM'), -(800001769, 'UGRD', 2024, 'AS', 'ARCH'), -(800001771, 'UGRD', 2023, 'AS', 'BIOL'), -(800001773, 'UGRD', 2025, 'AS', 'HIST'), -(800001774, 'UGRD', 2024, 'AS', 'MCB'), -(800001777, 'UGRD', 2022, 'AS', 'AMAT'), -(800001779, 'UGRD', 2022, 'AS', 'LING'), -(800001782, 'UGRD', 2023, 'AS', 'ENG'), -(800001783, 'UGRD', 2025, 'AS', 'SLAV'), -(800001785, 'UGRD', 2022, 'AS', 'PSCI'), -(800001787, 'UGRD', 2023, 'AS', 'MCB'), -(800001791, 'UGRD', 2022, 'AS', 'REL'), -(800001792, 'UGRD', 2025, 'AS', 'APHY'), -(800001793, 'UGRD', 2024, 'AS', 'REL'), -(800001794, 'UGRD', 2021, 'AS', 'SLAV'), -(800001796, 'UGRD', 2025, 'AS', 'ENGL'), -(800001797, 'NDP', NULL, 'AS', 'CLSS'), -(800001798, 'UGRD', 2022, 'AS', 'PSYC'), -(800001799, 'UGRD', 2022, 'AS', 'EALC'), -(800001800, 'UGRD', 2023, 'AS', 'MAT'), -(800001801, 'UGRD', 2024, 'AS', 'THEA'), -(800001802, 'UGRD', 2022, 'AS', 'APHY'), -(800001805, 'UGRD', 2021, 'AS', 'MES'), -(800001809, 'UGRD', 2021, 'AS', 'BPHY'), -(800001811, 'NDP', NULL, 'AS', 'CLSS'), -(800001813, 'UGRD', 2022, 'AS', 'PHY'), -(800001814, 'UGRD', 2023, 'AS', 'CHEM'), -(800001815, 'UGRD', 2023, 'AS', 'CHEM'), -(800001816, 'UGRD', 2025, 'AS', 'SAS'), -(800001817, 'UGRD', 2022, 'AS', 'PHY'), -(800001818, 'UGRD', 2021, 'AS', 'SOC'), -(800001819, 'UGRD', 2022, 'AS', 'APCS'), -(800001820, 'UGRD', 2025, 'AS', 'EALC'), -(800001824, 'NDP', NULL, 'AS', 'SOCS'), -(800001831, 'UGRD', 2022, 'AS', 'MUS'), -(800001832, 'UGRD', 2025, 'AS', 'ART'), -(800001835, 'UGRD', 2024, 'AS', 'LING'), -(800001837, 'UGRD', 2024, 'AS', 'LING'), -(800001840, 'UGRD', 2025, 'AS', 'APCS'), -(800001841, 'UGRD', 2024, 'AS', 'ART'), -(800001844, 'UGRD', 2021, 'AS', 'MES'), -(800001846, 'UGRD', 2025, 'AS', 'POLI'), -(800001849, 'UGRD', 2023, 'AS', 'LING'), -(800001850, 'UGRD', 2022, 'AS', 'CPLT'), -(800001857, 'UGRD', 2024, 'AS', 'CS'), -(800001859, 'UGRD', 2023, 'AS', 'MES'), -(800001861, 'UGRD', 2022, 'AS', 'SOCS'), -(800001865, 'UGRD', 2022, 'AS', 'PHIL'), -(800001866, 'UGRD', 2022, 'AS', 'GVMT'), -(800001870, 'UGRD', 2021, 'AS', 'MUS'), -(800001872, 'UGRD', 2023, 'AS', 'HUM'), -(800001876, 'UGRD', 2022, 'AS', 'MCB'), -(800001877, 'UGRD', 2022, 'AS', 'PSCI'), -(800001880, 'UGRD', 2023, 'AS', 'GERM'), -(800001881, 'UGRD', 2023, 'AS', 'LING'), -(800001882, 'UGRD', 2021, 'AS', 'GVMT'), -(800001884, 'UGRD', 2021, 'AS', 'ANTH'), -(800001891, 'UGRD', 2025, 'AS', 'MES'), -(800001892, 'UGRD', 2021, 'AS', 'THEA'), -(800001895, 'UGRD', 2025, 'AS', 'ENG'), -(800001896, 'UGRD', 2025, 'AS', 'GHP'), -(800001898, 'UGRD', 2024, 'AS', 'PHY'), -(800001899, 'UGRD', 2022, 'AS', 'GERM'), -(800001900, 'UGRD', 2022, 'AS', 'CPLT'), -(800001901, 'UGRD', 2024, 'AS', 'CHEM'), -(800001903, 'UGRD', 2023, 'AS', 'SOC'), -(800001905, 'UGRD', 2025, 'AS', 'ASTR'), -(800001907, 'UGRD', 2021, 'AS', 'WRI'), -(800001910, 'UGRD', 2025, 'AS', 'ARCH'), -(800001914, 'UGRD', 2022, 'AS', 'HIST'), -(800001915, 'UGRD', 2022, 'AS', 'WRI'), -(800001916, 'UGRD', 2023, 'AS', 'ENV'), -(800001917, 'UGRD', 2024, 'AS', 'MES'), -(800001918, 'UGRD', 2025, 'AS', 'LIT'), -(800001919, 'UGRD', 2025, 'AS', 'MUS'), -(800001920, 'UGRD', 2025, 'AS', 'CELT'), -(800001921, 'UGRD', 2021, 'AS', 'APHY'), -(800001923, 'UGRD', 2021, 'AS', 'MAT'), -(800001924, 'UGRD', 2021, 'AS', 'LING'), -(800001927, 'UGRD', 2025, 'AS', 'GSS'), -(800001928, 'UGRD', 2021, 'AS', 'REL'), -(800001929, 'UGRD', 2021, 'AS', 'LING'), -(800001932, 'UGRD', 2025, 'AS', 'THEA'), -(800001937, 'UGRD', 2025, 'AS', 'GVMT'), -(800001940, 'UGRD', 2022, 'AS', 'ASTR'), -(800001941, 'UGRD', 2023, 'AS', 'ARCH'), -(800001944, 'UGRD', 2021, 'AS', 'MUS'), -(800001949, 'UGRD', 2021, 'AS', 'CELT'), -(800001951, 'UGRD', 2023, 'AS', 'CPLT'), -(800001952, 'UGRD', 2023, 'AS', 'ARCH'), -(800001954, 'UGRD', 2021, 'AS', 'PHY'), -(800001955, 'UGRD', 2024, 'AS', 'ARCH'), -(800001956, 'UGRD', 2024, 'AS', 'ANTH'), -(800001958, 'UGRD', 2023, 'AS', 'PHY'), -(800001961, 'UGRD', 2023, 'AS', 'SLAV'), -(800001967, 'UGRD', 2024, 'AS', 'AAAS'), -(800001968, 'UGRD', 2025, 'AS', 'STAT'), -(800001969, 'UGRD', 2025, 'AS', 'HIST'), -(800001974, 'UGRD', 2024, 'AS', 'PHIL'), -(800001976, 'UGRD', 2022, 'AS', 'BPHY'), -(800001977, 'UGRD', 2023, 'AS', 'BIOS'), -(800000067, 'UGRD', 2024, 'AS', 'GVMT'), -(800001981, 'UGRD', 2025, 'AS', 'LIT'), -(800001982, 'UGRD', 2021, 'AS', 'ANTH'), -(800001983, 'UGRD', 2022, 'AS', 'PHY'), -(800001984, 'UGRD', 2023, 'AS', 'CLSS'), -(800001986, 'UGRD', 2025, 'AS', 'CPLT'), -(800001987, 'UGRD', 2022, 'AS', 'SLAV'), -(800001989, 'UGRD', 2024, 'AS', 'ART'), -(800001990, 'UGRD', 2021, 'AS', 'ARCH'), -(800001991, 'UGRD', 2023, 'AS', 'NELC'), -(800001992, 'UGRD', 2024, 'AS', 'MAT'), -(800001993, 'UGRD', 2022, 'AS', 'LIT'), -(800001994, 'UGRD', 2024, 'AS', 'WRI'), -(800001995, 'UGRD', 2025, 'AS', 'STAT'), -(800001997, 'UGRD', 2022, 'AS', 'AAAS'), -(800001998, 'UGRD', 2021, 'AS', 'ANTH'), -(800002001, 'UGRD', 2022, 'AS', 'ECOM'), -(800002003, 'UGRD', 2022, 'AS', 'EALC'), -(800002004, 'UGRD', 2022, 'AS', 'CS'), -(800002005, 'UGRD', 2022, 'AS', 'ENG'), -(800002006, 'UGRD', 2023, 'AS', 'APHY'), -(800002007, 'UGRD', 2021, 'AS', 'MCB'), -(800002008, 'UGRD', 2021, 'AS', 'PSYC'), -(800002011, 'UGRD', 2022, 'AS', 'PSYC'), -(800002014, 'UGRD', 2021, 'AS', 'PHIL'), -(800002017, 'NDP', NULL, 'AS', 'BIOL'), -(800002018, 'UGRD', 2022, 'AS', 'HIST'), -(800002020, 'UGRD', 2023, 'AS', 'STAT'), -(800002025, 'UGRD', 2025, 'AS', 'BPHY'), -(800002026, 'UGRD', 2022, 'AS', 'GSS'), -(800002027, 'UGRD', 2024, 'AS', 'CPLT'), -(800002028, 'UGRD', 2021, 'AS', 'APHY'), -(800002029, 'UGRD', 2023, 'AS', 'AS'), -(800002030, 'UGRD', 2024, 'AS', 'AS'), -(800002033, 'UGRD', 2023, 'AS', 'LING'), -(800002034, 'UGRD', 2025, 'AS', 'PSYC'), -(800002035, 'UGRD', 2024, 'AS', 'WRI'), -(800002042, 'UGRD', 2024, 'AS', 'EALC'), -(800002044, 'UGRD', 2023, 'AS', 'PSCI'), -(800002045, 'UGRD', 2021, 'AS', 'AAAS'), -(800002050, 'UGRD', 2022, 'AS', 'THEA'), -(800002053, 'UGRD', 2021, 'AS', 'PSCI'), -(800002054, 'UGRD', 2025, 'AS', 'PHIL'), -(800002056, 'UGRD', 2023, 'AS', 'ENG'), -(800000096, 'UGRD', 2021, 'AS', 'SLAV'), -(800002060, 'UGRD', 2024, 'AS', 'ROML'), -(800002062, 'UGRD', 2024, 'AS', 'SOCS'), -(800002064, 'UGRD', 2024, 'AS', 'ROML'), -(800002065, 'UGRD', 2021, 'AS', 'EALC'), -(800002068, 'UGRD', 2021, 'AS', 'MCB'), -(800002070, 'UGRD', 2021, 'AS', 'HUM'), -(800002071, 'UGRD', 2021, 'AS', 'APHY'), -(800002074, 'UGRD', 2024, 'AS', 'PSYC'), -(800002077, 'UGRD', 2025, 'AS', 'SOC'), -(800002078, 'UGRD', 2021, 'AS', 'APCS'), -(800002080, 'UGRD', 2022, 'AS', 'SAS'), -(800002086, 'UGRD', 2021, 'AS', 'MEDS'), -(800002089, 'UGRD', 2025, 'AS', 'PHIL'), -(800002090, 'UGRD', 2024, 'AS', 'MEDS'), -(800002091, 'UGRD', 2022, 'AS', 'ECOM'), -(800002095, 'UGRD', 2025, 'AS', 'CS'), -(800002097, 'UGRD', 2021, 'AS', 'GSS'), -(800002101, 'UGRD', 2023, 'AS', 'SOC'), -(800002102, 'UGRD', 2023, 'AS', 'SOC'), -(800002103, 'UGRD', 2023, 'AS', 'BPHY'), -(800002105, 'UGRD', 2021, 'AS', 'SOC'), -(800002107, 'UGRD', 2025, 'AS', 'BPHY'), -(800002111, 'UGRD', 2024, 'AS', 'HIST'), -(800002112, 'UGRD', 2024, 'AS', 'GSS'), -(800002113, 'UGRD', 2024, 'AS', 'ANTH'), -(800002115, 'UGRD', 2023, 'AS', 'SLAV'), -(800002117, 'UGRD', 2024, 'AS', 'CLSS'), -(800002119, 'UGRD', 2022, 'AS', 'ENGL'), -(800002120, 'UGRD', 2023, 'AS', 'ENV'), -(800002123, 'UGRD', 2023, 'AS', 'POLI'), -(800002124, 'UGRD', 2024, 'AS', 'ARCH'), -(800002133, 'UGRD', 2022, 'AS', 'SLAV'), -(800002134, 'UGRD', 2024, 'AS', 'CPLT'), -(800002135, 'UGRD', 2022, 'AS', 'SOCS'), -(800002136, 'UGRD', 2021, 'AS', 'THEA'), -(800002137, 'UGRD', 2023, 'AS', 'MES'), -(800002140, 'UGRD', 2025, 'AS', 'BIOS'), -(800002143, 'UGRD', 2023, 'AS', 'CLSS'), -(800002146, 'UGRD', 2021, 'AS', 'MES'), -(800002148, 'UGRD', 2024, 'AS', 'PSYC'), -(800002149, 'NDP', NULL, 'AS', 'PSYC'), -(800002151, 'UGRD', 2021, 'AS', 'SAS'), -(800002152, 'UGRD', 2023, 'AS', 'PHY'), -(800002154, 'UGRD', 2021, 'AS', 'ECOM'), -(800002155, 'UGRD', 2025, 'AS', 'GSS'), -(800002159, 'UGRD', 2024, 'AS', 'POLI'), -(800002160, 'UGRD', 2023, 'AS', 'CLSS'), -(800002161, 'UGRD', 2022, 'AS', 'PSCI'), -(800002162, 'UGRD', 2025, 'AS', 'THEA'), -(800002163, 'UGRD', 2023, 'AS', 'POLI'), -(800002165, 'UGRD', 2025, 'AS', 'GERM'), -(800002166, 'UGRD', 2025, 'AS', 'MES'), -(800002167, 'UGRD', 2021, 'AS', 'ARCH'), -(800002169, 'UGRD', 2025, 'AS', 'GHP'), -(800002172, 'UGRD', 2023, 'AS', 'CPLT'), -(800002174, 'UGRD', 2025, 'AS', 'BIOS'), -(800002175, 'UGRD', 2023, 'AS', 'ANTH'), -(800002177, 'UGRD', 2021, 'AS', 'ROML'), -(800002178, 'UGRD', 2025, 'AS', 'SOC'), -(800002179, 'UGRD', 2021, 'AS', 'ENGL'), -(800002182, 'UGRD', 2025, 'AS', 'APCS'), -(800002183, 'UGRD', 2021, 'AS', 'NELC'), -(800002184, 'UGRD', 2024, 'AS', 'GSS'), -(800002185, 'UGRD', 2025, 'AS', 'ENGL'), -(800002186, 'UGRD', 2021, 'AS', 'STAT'), -(800002195, 'UGRD', 2021, 'AS', 'LIT'), -(800002196, 'UGRD', 2024, 'AS', 'ARCH'), -(800002197, 'UGRD', 2022, 'AS', 'SLAV'), -(800002198, 'UGRD', 2021, 'AS', 'ASTR'), -(800002200, 'UGRD', 2024, 'AS', 'CPLT'), -(800002201, 'UGRD', 2025, 'AS', 'MCB'), -(800002202, 'UGRD', 2024, 'AS', 'EALC'), -(800002203, 'UGRD', 2021, 'AS', 'ROML'), -(800002204, 'UGRD', 2025, 'AS', 'ROML'), -(800002205, 'UGRD', 2025, 'AS', 'NELC'), -(800002207, 'UGRD', 2022, 'AS', 'STAT'), -(800002209, 'UGRD', 2023, 'AS', 'APCS'), -(800002211, 'UGRD', 2025, 'AS', 'ANTH'), -(800002213, 'UGRD', 2021, 'AS', 'CS'), -(800002214, 'UGRD', 2023, 'AS', 'GVMT'), -(800002215, 'UGRD', 2021, 'AS', 'THEA'), -(800002217, 'UGRD', 2025, 'AS', 'PSCI'), -(800002219, 'UGRD', 2025, 'AS', 'PHY'), -(800002221, 'UGRD', 2025, 'AS', 'CELT'), -(800002222, 'UGRD', 2021, 'AS', 'MUS'), -(800002224, 'UGRD', 2023, 'AS', 'WRI'), -(800002225, 'UGRD', 2021, 'AS', 'LING'), -(800002226, 'UGRD', 2021, 'AS', 'ENGL'), -(800002228, 'UGRD', 2021, 'AS', 'ECOM'), -(800002229, 'UGRD', 2022, 'AS', 'BPHY'), -(800002233, 'UGRD', 2023, 'AS', 'LIT'), -(800002239, 'UGRD', 2023, 'AS', 'GSS'), -(800002240, 'UGRD', 2023, 'AS', 'WRI'), -(800002241, 'UGRD', 2023, 'AS', 'SLAV'), -(800002242, 'UGRD', 2024, 'AS', 'ANTH'), -(800002243, 'UGRD', 2024, 'AS', 'AS'), -(800002244, 'UGRD', 2021, 'AS', 'ENV'), -(800002246, 'UGRD', 2023, 'AS', 'MUS'), -(800002248, 'UGRD', 2025, 'AS', 'MES'), -(800002249, 'UGRD', 2022, 'AS', 'LIT'), -(800002253, 'UGRD', 2023, 'AS', 'MUS'), -(800002255, 'UGRD', 2022, 'AS', 'SAS'), -(800002257, 'UGRD', 2022, 'AS', 'ARCH'), -(800002262, 'UGRD', 2022, 'AS', 'ASTR'), -(800002263, 'UGRD', 2021, 'AS', 'ARCH'), -(800002264, 'UGRD', 2025, 'AS', 'NELC'), -(800002266, 'UGRD', 2022, 'AS', 'PHIL'), -(800002267, 'UGRD', 2023, 'AS', 'ECOM'), -(800002268, 'UGRD', 2025, 'AS', 'WRI'), -(800002270, 'UGRD', 2024, 'AS', 'ANTH'), -(800002274, 'UGRD', 2024, 'AS', 'CLSS'), -(800002276, 'UGRD', 2024, 'AS', 'AAAS'), -(800002277, 'UGRD', 2024, 'AS', 'MAT'), -(800002281, 'UGRD', 2021, 'AS', 'ECOM'), -(800002284, 'UGRD', 2024, 'AS', 'LING'), -(800002292, 'UGRD', 2022, 'AS', 'ANTH'), -(800002293, 'UGRD', 2021, 'AS', 'POLI'), -(800002297, 'UGRD', 2023, 'AS', 'STAT'), -(800002299, 'UGRD', 2022, 'AS', 'PSYC'), -(800002300, 'UGRD', 2022, 'AS', 'EALC'), -(800002301, 'UGRD', 2022, 'AS', 'AAAS'), -(800002302, 'UGRD', 2021, 'AS', 'MEDS'), -(800002304, 'UGRD', 2024, 'AS', 'ANTH'), -(800002306, 'UGRD', 2021, 'AS', 'MUS'), -(800002307, 'NDP', NULL, 'AS', 'MCB'), -(800002311, 'UGRD', 2025, 'AS', 'AMAT'), -(800002313, 'UGRD', 2021, 'AS', 'ARCH'), -(800002314, 'UGRD', 2023, 'AS', 'SAS'), -(800002315, 'UGRD', 2022, 'AS', 'ECOM'), -(800002318, 'UGRD', 2022, 'AS', 'APHY'), -(800002320, 'UGRD', 2024, 'AS', 'BIOS'), -(800002322, 'UGRD', 2025, 'AS', 'MUS'), -(800002326, 'UGRD', 2025, 'AS', 'SAS'), -(800002328, 'UGRD', 2023, 'AS', 'ENV'), -(800002330, 'UGRD', 2021, 'AS', 'BIOL'), -(800002331, 'UGRD', 2021, 'AS', 'SOCS'), -(800002337, 'UGRD', 2021, 'AS', 'BIOS'), -(800002338, 'UGRD', 2024, 'AS', 'THEA'), -(800002340, 'UGRD', 2023, 'AS', 'ROML'), -(800002341, 'UGRD', 2023, 'AS', 'BPHY'), -(800002342, 'UGRD', 2021, 'AS', 'PSCI'), -(800002346, 'UGRD', 2022, 'AS', 'STAT'), -(800002352, 'UGRD', 2022, 'AS', 'LING'), -(800002353, 'UGRD', 2021, 'AS', 'CLSS'), -(800002354, 'UGRD', 2021, 'AS', 'STAT'), -(800002355, 'UGRD', 2023, 'AS', 'ENV'), -(800002360, 'UGRD', 2024, 'AS', 'WRI'), -(800002361, 'UGRD', 2022, 'AS', 'MAT'), -(800002364, 'UGRD', 2023, 'AS', 'MES'), -(800002365, 'UGRD', 2023, 'AS', 'MAT'), -(800002369, 'UGRD', 2022, 'AS', 'CS'), -(800002370, 'UGRD', 2022, 'AS', 'CELT'), -(800002371, 'UGRD', 2022, 'AS', 'NELC'), -(800002373, 'UGRD', 2025, 'AS', 'STAT'), -(800002375, 'UGRD', 2025, 'AS', 'REL'), -(800002378, 'UGRD', 2024, 'AS', 'MAT'), -(800002382, 'UGRD', 2021, 'AS', 'ASTR'), -(800002384, 'UGRD', 2021, 'AS', 'MES'), -(800002388, 'UGRD', 2021, 'AS', 'ASTR'), -(800002393, 'UGRD', 2022, 'AS', 'SOCS'), -(800002395, 'UGRD', 2025, 'AS', 'ENV'), -(800002397, 'UGRD', 2022, 'AS', 'MUS'), -(800002400, 'UGRD', 2021, 'AS', 'GVMT'), -(800002401, 'UGRD', 2021, 'AS', 'HUM'), -(800002403, 'UGRD', 2023, 'AS', 'PHIL'), -(800002404, 'UGRD', 2023, 'AS', 'GHP'), -(800002405, 'UGRD', 2021, 'AS', 'THEA'), -(800002406, 'UGRD', 2023, 'AS', 'PSYC'), -(800002408, 'UGRD', 2024, 'AS', 'ASTR'), -(800002412, 'UGRD', 2022, 'AS', 'BIOS'), -(800002414, 'UGRD', 2024, 'AS', 'EALC'), -(800002416, 'UGRD', 2024, 'AS', 'AS'), -(800002417, 'UGRD', 2025, 'AS', 'GSS'), -(800002418, 'UGRD', 2025, 'AS', 'PHIL'), -(800002420, 'UGRD', 2022, 'AS', 'CHEM'), -(800002422, 'UGRD', 2025, 'AS', 'LING'), -(800002425, 'UGRD', 2024, 'AS', 'AS'), -(800002427, 'UGRD', 2025, 'AS', 'STAT'), -(800002428, 'UGRD', 2021, 'AS', 'MES'), -(800002429, 'UGRD', 2023, 'AS', 'MAT'), -(800002433, 'UGRD', 2021, 'AS', 'BIOL'), -(800002434, 'UGRD', 2024, 'AS', 'BPHY'), -(800002435, 'UGRD', 2022, 'AS', 'APCS'), -(800002438, 'UGRD', 2022, 'AS', 'THEA'), -(800002442, 'UGRD', 2022, 'AS', 'ENV'), -(800002443, 'UGRD', 2022, 'AS', 'ASTR'), -(800002445, 'UGRD', 2021, 'AS', 'EALC'), -(800002507, 'UGRD', 2022, 'AS', 'GERM'), -(800002447, 'UGRD', 2023, 'AS', 'ROML'), -(800002449, 'UGRD', 2023, 'AS', 'GVMT'), -(800002450, 'UGRD', 2025, 'AS', 'AAAS'), -(800002451, 'UGRD', 2025, 'AS', 'CELT'), -(800002452, 'NDP', NULL, 'AS', 'THEA'), -(800002453, 'UGRD', 2023, 'AS', 'ENGL'), -(800002455, 'UGRD', 2025, 'AS', 'BIOL'), -(800002458, 'UGRD', 2023, 'AS', 'ROML'), -(800002461, 'UGRD', 2024, 'AS', 'AMAT'), -(800002463, 'UGRD', 2024, 'AS', 'HIST'), -(800002464, 'UGRD', 2022, 'AS', 'ENGL'), -(800002465, 'UGRD', 2023, 'AS', 'NELC'), -(800002351, 'UGRD', 2024, 'AS', 'AMAT'), -(800002469, 'UGRD', 2021, 'AS', 'WRI'), -(800002470, 'UGRD', 2025, 'AS', 'WRI'), -(800002471, 'UGRD', 2023, 'AS', 'ANTH'), -(800002475, 'UGRD', 2025, 'AS', 'POLI'), -(800002477, 'UGRD', 2022, 'AS', 'AS'), -(800002479, 'UGRD', 2022, 'AS', 'ASTR'), -(800002480, 'UGRD', 2024, 'AS', 'AS'), -(800002481, 'UGRD', 2023, 'AS', 'SLAV'), -(800002482, 'UGRD', 2025, 'AS', 'HUM'), -(800002487, 'UGRD', 2021, 'AS', 'AMAT'), -(800002491, 'UGRD', 2024, 'AS', 'GSS'), -(800002492, 'UGRD', 2025, 'AS', 'ANTH'), -(800002493, 'UGRD', 2024, 'AS', 'ROML'), -(800002494, 'UGRD', 2021, 'AS', 'HUM'), -(800002500, 'UGRD', 2021, 'AS', 'PSYC'), -(800002501, 'UGRD', 2023, 'AS', 'CHEM'), -(800002502, 'UGRD', 2025, 'AS', 'REL'), -(800002503, 'UGRD', 2024, 'AS', 'AMAT'), -(800002509, 'UGRD', 2021, 'AS', 'ANTH'), -(800002511, 'UGRD', 2022, 'AS', 'AAAS'), -(800002514, 'UGRD', 2022, 'AS', 'ENGL'), -(800002515, 'NDP', NULL, 'AS', 'GHP'), -(800002516, 'UGRD', 2022, 'AS', 'PSCI'), -(800002517, 'UGRD', 2025, 'AS', 'AS'), -(800002518, 'UGRD', 2021, 'AS', 'STAT'), -(800002519, 'UGRD', 2021, 'AS', 'APHY'), -(800002523, 'UGRD', 2023, 'AS', 'BIOL'), -(800002524, 'UGRD', 2024, 'AS', 'SOCS'), -(800002525, 'UGRD', 2025, 'AS', 'BIOL'), -(800002526, 'UGRD', 2024, 'AS', 'ENG'), -(800002528, 'UGRD', 2022, 'AS', 'PHY'), -(800002530, 'UGRD', 2021, 'AS', 'LIT'), -(800002531, 'UGRD', 2025, 'AS', 'MEDS'), -(800002533, 'UGRD', 2021, 'AS', 'BIOS'), -(800002534, 'UGRD', 2021, 'AS', 'ART'), -(800002536, 'UGRD', 2025, 'AS', 'GHP'), -(800002537, 'UGRD', 2024, 'AS', 'CHEM'), -(800002539, 'UGRD', 2023, 'AS', 'EALC'), -(800002540, 'UGRD', 2021, 'AS', 'APCS'), -(800002541, 'UGRD', 2023, 'AS', 'ART'), -(800002543, 'UGRD', 2021, 'AS', 'GVMT'), -(800001594, 'UGRD', 2021, 'AS', 'ENGL'), -(800002548, 'UGRD', 2022, 'AS', 'APHY'), -(800002549, 'UGRD', 2024, 'AS', 'AAAS'), -(800002551, 'UGRD', 2022, 'AS', 'SOCS'), -(800002556, 'UGRD', 2025, 'AS', 'ENGL'), -(800002557, 'UGRD', 2025, 'AS', 'MAT'), -(800002559, 'UGRD', 2023, 'AS', 'THEA'), -(800002560, 'UGRD', 2021, 'AS', 'CS'), -(800002561, 'UGRD', 2024, 'AS', 'SOC'), -(800002562, 'UGRD', 2024, 'AS', 'ENG'), -(800002569, 'UGRD', 2025, 'AS', 'THEA'), -(800002570, 'UGRD', 2021, 'AS', 'PHY'), -(800002574, 'UGRD', 2022, 'AS', 'MUS'), -(800002575, 'UGRD', 2021, 'AS', 'MAT'), -(800002576, 'UGRD', 2022, 'AS', 'ECOM'), -(800002577, 'UGRD', 2021, 'AS', 'ECOM'), -(800002578, 'UGRD', 2021, 'AS', 'MES'), -(800002579, 'UGRD', 2021, 'AS', 'ROML'), -(800002582, 'UGRD', 2023, 'AS', 'ANTH'), -(800002583, 'UGRD', 2025, 'AS', 'CPLT'), -(800002584, 'UGRD', 2025, 'AS', 'LIT'), -(800002586, 'UGRD', 2025, 'AS', 'ROML'), -(800002587, 'UGRD', 2025, 'AS', 'CHEM'), -(800002588, 'UGRD', 2022, 'AS', 'APCS'), -(800002589, 'UGRD', 2022, 'AS', 'BIOL'), -(800002591, 'UGRD', 2022, 'AS', 'POLI'), -(800002594, 'UGRD', 2024, 'AS', 'POLI'), -(800002595, 'UGRD', 2025, 'AS', 'PHIL'), -(800002598, 'UGRD', 2021, 'AS', 'CLSS'), -(800002599, 'UGRD', 2022, 'AS', 'CPLT'), -(800002600, 'UGRD', 2025, 'AS', 'BIOL'), -(800002604, 'UGRD', 2024, 'AS', 'REL'), -(800002605, 'UGRD', 2022, 'AS', 'ENV'), -(800002606, 'UGRD', 2024, 'AS', 'ENGL'), -(800002607, 'UGRD', 2024, 'AS', 'REL'), -(800002609, 'UGRD', 2022, 'AS', 'CPLT'), -(800002611, 'UGRD', 2025, 'AS', 'MCB'), -(800002613, 'UGRD', 2022, 'AS', 'PSCI'), -(800002616, 'UGRD', 2023, 'AS', 'APHY'), -(800002617, 'UGRD', 2024, 'AS', 'PHY'), -(800002618, 'UGRD', 2024, 'AS', 'WRI'), -(800002619, 'UGRD', 2023, 'AS', 'HIST'), -(800002621, 'UGRD', 2023, 'AS', 'BIOS'), -(800002623, 'UGRD', 2022, 'AS', 'AS'), -(800002627, 'UGRD', 2025, 'AS', 'MCB'), -(800002629, 'UGRD', 2025, 'AS', 'ART'), -(800002630, 'UGRD', 2023, 'AS', 'MES'), -(800002631, 'UGRD', 2025, 'AS', 'WRI'), -(800002635, 'UGRD', 2022, 'AS', 'REL'), -(800002637, 'UGRD', 2022, 'AS', 'SAS'), -(800002638, 'UGRD', 2024, 'AS', 'BIOL'), -(800002639, 'UGRD', 2021, 'AS', 'LIT'), -(800002645, 'UGRD', 2024, 'AS', 'PSCI'), -(800002651, 'UGRD', 2021, 'AS', 'PHY'), -(800002653, 'UGRD', 2025, 'AS', 'APHY'), -(800002655, 'UGRD', 2025, 'AS', 'SAS'), -(800002657, 'UGRD', 2024, 'AS', 'THEA'), -(800002658, 'NDP', NULL, 'AS', 'STAT'), -(800002659, 'UGRD', 2021, 'AS', 'PHY'), -(800002660, 'UGRD', 2021, 'AS', 'GHP'), -(800002661, 'UGRD', 2025, 'AS', 'WRI'), -(800002662, 'UGRD', 2023, 'AS', 'EALC'), -(800002664, 'UGRD', 2022, 'AS', 'AAAS'), -(800002666, 'UGRD', 2021, 'AS', 'EALC'), -(800002672, 'UGRD', 2025, 'AS', 'AMAT'), -(800002676, 'UGRD', 2023, 'AS', 'HIST'), -(800002677, 'UGRD', 2022, 'AS', 'ENGL'), -(800002679, 'UGRD', 2021, 'AS', 'ROML'), -(800002683, 'UGRD', 2021, 'AS', 'ENV'), -(800002684, 'UGRD', 2021, 'AS', 'SOC'), -(800002687, 'UGRD', 2025, 'AS', 'MCB'), -(800002689, 'UGRD', 2024, 'AS', 'MES'), -(800002691, 'UGRD', 2022, 'AS', 'BPHY'), -(800002692, 'UGRD', 2022, 'AS', 'REL'), -(800002693, 'UGRD', 2024, 'AS', 'ROML'), -(800002695, 'UGRD', 2025, 'AS', 'CLSS'), -(800002697, 'UGRD', 2022, 'AS', 'GHP'), -(800002698, 'UGRD', 2021, 'AS', 'MEDS'), -(800002701, 'UGRD', 2025, 'AS', 'ENV'), -(800002710, 'UGRD', 2022, 'AS', 'BIOS'), -(800002712, 'UGRD', 2021, 'AS', 'ART'), -(800002714, 'UGRD', 2023, 'AS', 'GVMT'), -(800002715, 'UGRD', 2024, 'AS', 'WRI'), -(800002718, 'UGRD', 2022, 'AS', 'AMAT'), -(800002719, 'UGRD', 2023, 'AS', 'AMAT'), -(800002720, 'UGRD', 2021, 'AS', 'MAT'), -(800002722, 'UGRD', 2023, 'AS', 'SOCS'), -(800002723, 'UGRD', 2021, 'AS', 'APCS'), -(800002726, 'UGRD', 2024, 'AS', 'CHEM'), -(800002727, 'UGRD', 2024, 'AS', 'CS'), -(800002731, 'UGRD', 2025, 'AS', 'HIST'), -(800002732, 'UGRD', 2023, 'AS', 'EALC'), -(800002741, 'UGRD', 2021, 'AS', 'REL'), -(800002743, 'UGRD', 2021, 'AS', 'SOCS'), -(800002747, 'UGRD', 2021, 'AS', 'STAT'), -(800002748, 'UGRD', 2023, 'AS', 'POLI'), -(800002749, 'UGRD', 2025, 'AS', 'CLSS'), -(800002753, 'UGRD', 2022, 'AS', 'GERM'), -(800002756, 'UGRD', 2021, 'AS', 'CS'), -(800002759, 'UGRD', 2021, 'AS', 'GHP'), -(800002760, 'UGRD', 2023, 'AS', 'SAS'), -(800002762, 'UGRD', 2024, 'AS', 'PSCI'), -(800002766, 'UGRD', 2024, 'AS', 'GSS'), -(800002767, 'UGRD', 2025, 'AS', 'AS'), -(800002768, 'UGRD', 2025, 'AS', 'ENV'), -(800002770, 'UGRD', 2025, 'AS', 'SAS'), -(800002771, 'UGRD', 2023, 'AS', 'ENV'), -(800002775, 'UGRD', 2021, 'AS', 'MEDS'), -(800002776, 'UGRD', 2021, 'AS', 'SOC'), -(800002778, 'UGRD', 2022, 'AS', 'ECOM'), -(800002779, 'UGRD', 2021, 'AS', 'ASTR'), -(800002781, 'UGRD', 2021, 'AS', 'AS'), -(800002783, 'UGRD', 2024, 'AS', 'PSCI'), -(800002784, 'UGRD', 2023, 'AS', 'ECOM'), -(800002785, 'UGRD', 2023, 'AS', 'GSS'), -(800002786, 'UGRD', 2024, 'AS', 'ENG'), -(800002788, 'UGRD', 2021, 'AS', 'CLSS'), -(800002790, 'UGRD', 2025, 'AS', 'CLSS'), -(800002791, 'UGRD', 2024, 'AS', 'MCB'), -(800002795, 'UGRD', 2021, 'AS', 'MES'), -(800002799, 'UGRD', 2021, 'AS', 'GVMT'), -(800002800, 'UGRD', 2025, 'AS', 'EALC'), -(800002802, 'UGRD', 2021, 'AS', 'LIT'), -(800002803, 'UGRD', 2022, 'AS', 'THEA'), -(800002808, 'UGRD', 2022, 'AS', 'ARCH'), -(800002809, 'UGRD', 2025, 'AS', 'ANTH'), -(800002810, 'UGRD', 2023, 'AS', 'SOC'), -(800002815, 'UGRD', 2025, 'AS', 'BIOS'), -(800002817, 'UGRD', 2025, 'AS', 'GVMT'), -(800002818, 'UGRD', 2021, 'AS', 'STAT'), -(800002821, 'UGRD', 2023, 'AS', 'ART'), -(800002829, 'UGRD', 2025, 'AS', 'SLAV'), -(800002830, 'UGRD', 2022, 'AS', 'SAS'), -(800002832, 'UGRD', 2023, 'AS', 'NELC'), -(800002833, 'UGRD', 2023, 'AS', 'GERM'), -(800002835, 'UGRD', 2022, 'AS', 'MUS'), -(800002838, 'UGRD', 2025, 'AS', 'PSYC'), -(800002845, 'UGRD', 2021, 'AS', 'ECOM'), -(800002846, 'UGRD', 2021, 'AS', 'POLI'), -(800002848, 'UGRD', 2023, 'AS', 'SAS'), -(800002852, 'UGRD', 2022, 'AS', 'PHY'), -(800002854, 'UGRD', 2025, 'AS', 'BPHY'), -(800002861, 'UGRD', 2023, 'AS', 'HUM'), -(800002862, 'UGRD', 2024, 'AS', 'CHEM'), -(800002865, 'UGRD', 2021, 'AS', 'ENGL'), -(800002868, 'UGRD', 2024, 'AS', 'ROML'), -(800002869, 'UGRD', 2025, 'AS', 'ASTR'), -(800002871, 'UGRD', 2023, 'AS', 'ART'), -(800002872, 'UGRD', 2022, 'AS', 'GVMT'), -(800002878, 'UGRD', 2025, 'AS', 'ART'), -(800002879, 'UGRD', 2022, 'AS', 'ASTR'), -(800002880, 'UGRD', 2024, 'AS', 'ANTH'), -(800002881, 'UGRD', 2022, 'AS', 'MES'), -(800002882, 'UGRD', 2022, 'AS', 'SOC'), -(800002884, 'UGRD', 2025, 'AS', 'CPLT'), -(800002889, 'UGRD', 2022, 'AS', 'SOCS'), -(800002891, 'UGRD', 2021, 'AS', 'GSS'), -(800002894, 'UGRD', 2025, 'AS', 'APCS'), -(800002896, 'UGRD', 2024, 'AS', 'SAS'), -(800002898, 'UGRD', 2024, 'AS', 'REL'), -(800002899, 'UGRD', 2022, 'AS', 'AMAT'), -(800002900, 'UGRD', 2023, 'AS', 'AAAS'), -(800002901, 'UGRD', 2025, 'AS', 'BPHY'), -(800002904, 'UGRD', 2021, 'AS', 'SOC'), -(800002905, 'UGRD', 2023, 'AS', 'SAS'), -(800002911, 'UGRD', 2024, 'AS', 'ENG'), -(800002913, 'NDP', NULL, 'AS', 'SOCS'), -(800002914, 'UGRD', 2021, 'AS', 'SOC'), -(800002915, 'UGRD', 2025, 'AS', 'LIT'), -(800001129, 'UGRD', 2021, 'AS', 'BIOS'), -(800002920, 'UGRD', 2024, 'AS', 'PHY'), -(800002921, 'UGRD', 2022, 'AS', 'SAS'), -(800002922, 'UGRD', 2025, 'AS', 'PHY'), -(800002923, 'UGRD', 2023, 'AS', 'LING'), -(800002924, 'UGRD', 2025, 'AS', 'NELC'), -(800002925, 'UGRD', 2024, 'AS', 'ENG'), -(800002926, 'UGRD', 2024, 'AS', 'SLAV'), -(800002927, 'UGRD', 2025, 'AS', 'ART'), -(800002928, 'UGRD', 2021, 'AS', 'CELT'), -(800002930, 'UGRD', 2023, 'AS', 'EALC'), -(800002932, 'UGRD', 2022, 'AS', 'MUS'), -(800002933, 'UGRD', 2025, 'AS', 'MES'), -(800002939, 'UGRD', 2023, 'AS', 'BIOL'), -(800002941, 'UGRD', 2021, 'AS', 'ENV'), -(800002943, 'UGRD', 2024, 'AS', 'APHY'), -(800001699, 'NDP', NULL, 'AS', 'APCS'), -(800002945, 'UGRD', 2024, 'AS', 'CLSS'), -(800000787, 'UGRD', 2024, 'AS', 'BIOS'), -(800002948, 'UGRD', 2025, 'AS', 'ART'), -(800002949, 'UGRD', 2025, 'AS', 'STAT'), -(800002952, 'UGRD', 2022, 'AS', 'GERM'), -(800002953, 'UGRD', 2022, 'AS', 'STAT'), -(800002956, 'UGRD', 2025, 'AS', 'MEDS'), -(800002963, 'UGRD', 2022, 'AS', 'LING'), -(800002967, 'UGRD', 2025, 'AS', 'ENV'), -(800002971, 'UGRD', 2022, 'AS', 'SOCS'), -(800002972, 'UGRD', 2021, 'AS', 'ENG'), -(800002974, 'UGRD', 2022, 'AS', 'GVMT'), -(800002976, 'UGRD', 2025, 'AS', 'GSS'), -(800002977, 'UGRD', 2021, 'AS', 'MCB'), -(800002979, 'UGRD', 2024, 'AS', 'ENGL'), -(800002981, 'UGRD', 2025, 'AS', 'LIT'), -(800002984, 'UGRD', 2022, 'AS', 'GERM'), -(800002985, 'UGRD', 2022, 'AS', 'ENGL'), -(800002987, 'UGRD', 2023, 'AS', 'BIOL'), -(800002988, 'UGRD', 2022, 'AS', 'MEDS'), -(800002989, 'UGRD', 2021, 'AS', 'BIOL'), -(800002991, 'UGRD', 2025, 'AS', 'MCB'), -(800002994, 'UGRD', 2025, 'AS', 'MCB'), -(800002998, 'UGRD', 2025, 'AS', 'PHY') +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') ; -insert into sis_stu_programs (person_id, acad_prog_id, grad_year_expected, school_id, acad_dept_id) values -(800000039, 'GRAD', 2025, 'GRD', 'GS'), -(800000075, 'GRAD', 2021, 'GRD', 'GS'), -(800000155, 'GRAD', 2024, 'GRD', 'GS'), -(800000237, 'GRAD', 2023, 'GRD', 'GS'), -(800000338, 'GRAD', 2023, 'GRD', 'GS'), -(800000339, 'GRAD', 2022, 'GRD', 'GS'), -(800000461, 'GRAD', 2022, 'GRD', 'GS'), -(800000642, 'GRAD', 2025, 'GRD', 'GS'), -(800000645, 'GRAD', 2024, 'GRD', 'GS'), -(800000687, 'GNDP', NULL, 'GRD', 'GS'), -(800000696, 'GRAD', 2023, 'GRD', 'GS'), -(800000725, 'GNDP', NULL, 'GRD', 'GS'), -(800000730, 'GRAD', 2021, 'GRD', 'GS'), -(800000732, 'GRAD', 2021, 'GRD', 'GS'), -(800000975, 'GRAD', 2021, 'GRD', 'GS'), -(800000990, 'GRAD', 2024, 'GRD', 'GS'), -(800001110, 'GRAD', 2021, 'GRD', 'GS'), -(800001157, 'GRAD', 2023, 'GRD', 'GS'), -(800001330, 'GRAD', 2021, 'GRD', 'GS'), -(800001348, 'GRAD', 2024, 'GRD', 'GS'), -(800001416, 'GRAD', 2025, 'GRD', 'GS'), -(800001424, 'GRAD', 2022, 'GRD', 'GS'), -(800001507, 'GRAD', 2024, 'GRD', 'GS'), -(800001520, 'GRAD', 2025, 'GRD', 'GS'), -(800001571, 'GNDP', NULL, 'GRD', 'GS'), -(800001579, 'GRAD', 2021, 'GRD', 'GS'), -(800001733, 'GRAD', 2022, 'GRD', 'GS'), -(800001795, 'GRAD', 2024, 'GRD', 'GS'), -(800001852, 'GRAD', 2024, 'GRD', 'GS'), -(800001860, 'GRAD', 2024, 'GRD', 'GS'), -(800001926, 'GRAD', 2021, 'GRD', 'GS'), -(800001933, 'GRAD', 2025, 'GRD', 'GS'), -(800002072, 'GRAD', 2025, 'GRD', 'GS'), -(800002081, 'GRAD', 2025, 'GRD', 'GS'), -(800002087, 'GRAD', 2025, 'GRD', 'GS'), -(800002324, 'GRAD', 2023, 'GRD', 'GS'), -(800002359, 'GRAD', 2023, 'GRD', 'GS'), -(800002444, 'GRAD', 2023, 'GRD', 'GS'), -(800002603, 'GRAD', 2025, 'GRD', 'GS'), -(800002663, 'GRAD', 2023, 'GRD', 'GS'), -(800002703, 'GRAD', 2024, 'GRD', 'GS'), -(800002738, 'GRAD', 2021, 'GRD', 'GS'), -(800002777, 'GRAD', 2024, 'GRD', 'GS'), -(800002814, 'GRAD', 2025, 'GRD', 'GS'), -(800002834, 'GRAD', 2024, 'GRD', 'GS'), -(800002867, 'GRAD', 2022, 'GRD', 'GS') -; -insert into sis_stu_programs (person_id, acad_prog_id, grad_year_expected, school_id, acad_dept_id) values -(800000086, 'SPM', 2023, 'SPM', NULL), -(800000099, 'SPM', 2022, 'SPM', NULL), -(800000102, 'SPM', 2023, 'SPM', NULL), -(800000768, 'SPM', 2022, 'SPM', NULL), -(800000832, 'SPM', 2023, 'SPM', NULL), -(800000886, 'SPM', 2022, 'SPM', NULL), -(800000936, 'SPM', 2024, 'SPM', NULL), -(800001004, 'SPM', 2022, 'SPM', NULL), -(800001049, 'SPM', 2025, 'SPM', NULL), -(800001436, 'SPM', 2022, 'SPM', NULL), -(800001491, 'SPM', 2023, 'SPM', NULL), -(800001496, 'SPM', 2023, 'SPM', NULL), -(800001569, 'SPM', 2021, 'SPM', NULL), -(800001996, 'SPM', 2024, 'SPM', NULL), -(800002083, 'SPM', 2021, 'SPM', NULL), -(800002138, 'SPM', 2021, 'SPM', NULL), -(800002187, 'SPM', 2022, 'SPM', NULL), -(800002199, 'SPM', 2021, 'SPM', NULL), -(800002258, 'SPM', 2023, 'SPM', NULL), -(800002357, 'SPM', 2025, 'SPM', NULL), -(800002387, 'SPM', 2022, 'SPM', NULL), -(800002478, 'SPM', 2023, 'SPM', NULL), -(800002553, 'SPM', 2021, 'SPM', NULL), -(800002596, 'SPM', 2024, 'SPM', NULL), -(800000428, 'SB', 2025, 'BUS', NULL), -(800000441, 'SB', 2024, 'BUS', NULL), -(800000463, 'SB', 2023, 'BUS', NULL), -(800000550, 'SB', 2023, 'BUS', NULL), -(800000720, 'SB', 2024, 'BUS', NULL), -(800000781, 'SB', 2025, 'BUS', NULL), -(800000822, 'SB', 2024, 'BUS', NULL), -(800001064, 'SB', 2024, 'BUS', NULL), -(800001122, 'SB', 2022, 'BUS', NULL), -(800001273, 'SB', 2025, 'BUS', NULL), -(800001287, 'SB', 2023, 'BUS', NULL), -(800001396, 'SB', 2023, 'BUS', NULL), -(800001513, 'SB', 2023, 'BUS', NULL), -(800001715, 'SB', 2025, 'BUS', NULL), -(800001740, 'SB', 2024, 'BUS', NULL), -(800001858, 'SB', 2024, 'BUS', NULL), -(800002010, 'SB', 2022, 'BUS', NULL), -(800002312, 'SB', 2022, 'BUS', NULL), -(800002483, 'SB', 2023, 'BUS', NULL), -(800002622, 'SB', 2024, 'BUS', NULL), -(800002652, 'SB', 2024, 'BUS', NULL), -(800002707, 'SB', 2021, 'BUS', NULL), -(800002737, 'SB', 2024, 'BUS', NULL), -(800002982, 'SB', 2022, 'BUS', NULL), -(800002993, 'SB', 2021, 'BUS', NULL), -(800000094, 'SCS', 2021, 'SCS', NULL), -(800000170, 'SCS', 2025, 'SCS', NULL), -(800000348, 'SCS', 2023, 'SCS', NULL), -(800000490, 'SCS', 2025, 'SCS', NULL), -(800000495, 'SCS', 2025, 'SCS', NULL), -(800000692, 'SCS', 2022, 'SCS', NULL), -(800000724, 'SCS', 2021, 'SCS', NULL), -(800000890, 'SCS', 2025, 'SCS', NULL), -(800001017, 'SCS', 2024, 'SCS', NULL), -(800001338, 'SCS', 2022, 'SCS', NULL), -(800001538, 'SCS', 2022, 'SCS', NULL), -(800001574, 'SCS', 2023, 'SCS', NULL), -(800001586, 'SCS', 2022, 'SCS', NULL), -(800001593, 'SCS', 2021, 'SCS', NULL), -(800001667, 'SCS', 2025, 'SCS', NULL), -(800001687, 'SCS', 2024, 'SCS', NULL), -(800001756, 'SCS', 2024, 'SCS', NULL), -(800001988, 'SCS', 2025, 'SCS', NULL), -(800002052, 'SCS', 2021, 'SCS', NULL), -(800002278, 'SCS', 2021, 'SCS', NULL), -(800000467, 'SCS', 2023, 'SCS', NULL), -(800002490, 'SCS', 2022, 'SCS', NULL), -(800002673, 'SCS', 2025, 'SCS', NULL) + + +/************* 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, 'NDP', NULL, 'AS', 'LIT', 'ES'), +(800000034, 'UGRD', 2021, 'AS', 'THEA', 'CM'), +(800000036, 'UGRD', 2025, 'AS', 'GSS', 'LA'), +(800000038, 'UGRD', 2025, 'AS', 'MAT', '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'), +(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'), +(800000088, 'NDP', NULL, 'AS', 'STAT', 'AC'), +(800000093, 'UGRD', 2023, 'AS', 'ENV', 'AC'), +(800000096, 'UGRD', 2021, 'AS', 'SLAV', 'CM'), +(800000097, 'UGRD', 2024, 'AS', 'SOC', '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'), +(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'), +(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'), +(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, 'NDP', NULL, 'AS', 'THEA', 'ES'), +(800000343, 'UGRD', 2025, 'AS', 'CS', 'AC'), +(800000346, 'UGRD', 2025, 'AS', 'PHIL', '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'), +(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'), +(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'), +(800000464, 'UGRD', 2021, 'AS', 'ENG', 'CM'), +(800000466, 'UGRD', 2023, 'AS', 'CS', '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'), +(800000491, 'UGRD', 2024, 'AS', 'AMAT', 'AC'), +(800000492, 'UGRD', 2022, 'AS', 'MAT', 'XP'), +(800000494, 'UGRD', 2023, 'AS', 'CHEM', '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'), +(800000553, 'NDP', 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'), +(800000643, 'UGRD', 2025, 'AS', 'HIST', 'AC'), +(800000644, 'UGRD', 2022, 'AS', 'CLSS', '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'), +(800000688, 'UGRD', 2024, 'AS', 'AAAS', 'AC'), +(800000694, 'UGRD', 2022, 'AS', 'ARCH', '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'), +(800000721, 'UGRD', 2025, 'AS', 'APCS', 'AC'), +(800000723, 'UGRD', 2022, 'AS', 'SOC', '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'), +(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, 'NDP', 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'), +(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'), +(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, 'NDP', 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'), +(800000826, 'UGRD', 2022, 'AS', 'GSS', 'AC'), +(800000827, 'UGRD', 2022, 'AS', 'PHIL', 'AC'), +(800000828, 'UGRD', 2022, 'AS', 'CPLT', 'AC'), +(800000830, 'UGRD', 2021, 'AS', 'AMAT', 'CM'), +(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'), +(800000887, 'UGRD', 2025, 'AS', 'MUS', 'AC'), +(800000889, 'UGRD', 2024, 'AS', 'GHP', '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, 'NDP', NULL, 'AS', 'MUS', 'ES'), +(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'), +(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'), +(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'), +(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'), +(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, 'NDP', NULL, 'AS', 'PSCI', 'ES'), +(800001047, 'UGRD', 2021, 'AS', 'PSCI', 'CM'), +(800001048, 'UGRD', 2023, 'AS', 'ENG', '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'), +(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'), +(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'), +(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'), +(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'), +(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, 'NDP', NULL, 'AS', 'THEA', 'ES'), +(800001285, 'UGRD', 2023, 'AS', 'ASTR', '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'), +(800001332, 'UGRD', 2023, 'AS', 'NELC', 'AC'), +(800001334, 'UGRD', 2025, 'AS', 'SOC', 'AC'), +(800001337, 'UGRD', 2024, 'AS', 'APCS', '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'), +(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'), +(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'), +(800001418, 'UGRD', 2022, 'AS', 'PSYC', 'AC'), +(800001420, 'UGRD', 2025, 'AS', 'ASTR', 'AC'), +(800001421, 'UGRD', 2025, 'AS', 'ART', 'AC'), +(800001422, 'UGRD', 2022, 'AS', 'ASTR', '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'), +(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'), +(800001492, 'UGRD', 2025, 'AS', 'PHIL', 'PM'), +(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'), +(800001508, 'UGRD', 2021, 'AS', 'AMAT', 'CM'), +(800001509, 'UGRD', 2024, 'AS', 'CHEM', 'AC'), +(800001511, 'UGRD', 2021, 'AS', 'SOCS', 'CM'), +(800001512, 'UGRD', 2025, 'AS', 'EALC', 'LA'), +(800001518, 'UGRD', 2024, 'AS', 'BIOS', 'AC'), +(800001519, 'UGRD', 2023, 'AS', 'CPLT', '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'), +(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, 'NDP', NULL, 'AS', 'MES', 'ES'), +(800001566, 'UGRD', 2025, 'AS', 'LIT', 'AC'), +(800001572, 'UGRD', 2025, 'AS', 'AS', 'AC'), +(800001573, 'UGRD', 2023, 'AS', 'CPLT', 'AC'), +(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, 'NDP', NULL, 'AS', 'AMAT', 'ES'), +(800001588, 'UGRD', 2024, 'AS', 'PSYC', 'AC'), +(800001589, 'UGRD', 2024, 'AS', 'GVMT', 'XP'), +(800001591, 'UGRD', 2025, 'AS', 'AMAT', 'AC'), +(800001592, 'UGRD', 2024, 'AS', 'BIOL', 'AC'), +(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, 'NDP', NULL, 'AS', 'EALC', 'ES'), +(800001662, 'UGRD', 2025, 'AS', 'SLAV', 'AC'), +(800001665, 'UGRD', 2023, 'AS', 'NELC', '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'), +(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, 'NDP', NULL, 'AS', 'MES', 'ES'), +(800001713, 'UGRD', 2025, 'AS', 'NELC', 'AC'), +(800001716, 'NDP', 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'), +(800001735, 'UGRD', 2025, 'AS', 'AMAT', 'AC'), +(800001738, 'UGRD', 2024, 'AS', 'CS', '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'), +(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, 'NDP', 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'), +(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'), +(800001853, 'UGRD', 2025, 'AS', 'CS', 'XO'), +(800001854, 'UGRD', 2025, 'AS', 'ENG', 'PM'), +(800001857, 'UGRD', 2024, 'AS', 'CS', 'AC'), +(800001859, 'UGRD', 2023, 'AS', 'MES', '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'), +(800001927, 'UGRD', 2025, 'AS', 'GSS', 'AC'), +(800001928, 'UGRD', 2021, 'AS', 'REL', 'CM'), +(800001929, 'UGRD', 2021, 'AS', 'LING', 'CM'), +(800001932, 'UGRD', 2025, 'AS', 'THEA', 'AC'), +(800001937, 'UGRD', 2025, 'AS', 'GVMT', 'AC'), +(800001938, 'NDP', 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'), +(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'), +(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'), +(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, 'NDP', 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'), +(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'), +(800002074, 'UGRD', 2024, 'AS', 'PSYC', 'AC'), +(800002077, 'UGRD', 2025, 'AS', 'SOC', 'AC'), +(800002078, 'UGRD', 2021, 'AS', 'APCS', 'CM'), +(800002080, 'UGRD', 2022, 'AS', 'SAS', 'AC'), +(800002086, 'UGRD', 2021, 'AS', 'MEDS', 'CM'), +(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'), +(800002140, 'UGRD', 2025, 'AS', 'BIOS', 'AC'), +(800002143, 'UGRD', 2023, 'AS', 'CLSS', 'AC'), +(800002145, 'NDP', 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'), +(800002195, 'UGRD', 2021, 'AS', 'LIT', 'CM'), +(800002196, 'UGRD', 2024, 'AS', 'ARCH', 'AC'), +(800002197, 'UGRD', 2022, 'AS', 'SLAV', 'AC'), +(800002198, 'UGRD', 2021, 'AS', 'ASTR', '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'), +(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'), +(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'), +(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'), +(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'), +(800002358, 'UGRD', 2023, 'AS', 'AS', '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, 'NDP', NULL, 'AS', 'SAS', 'ES'), +(800002382, 'UGRD', 2021, 'AS', 'ASTR', 'CM'), +(800002384, 'UGRD', 2021, 'AS', 'MES', 'CM'), +(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'), +(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, 'NDP', NULL, 'AS', 'STAT', 'ES'), +(800002477, 'UGRD', 2022, 'AS', 'AS', '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'), +(800002487, 'UGRD', 2021, 'AS', 'AMAT', 'CM'), +(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'), +(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'), +(800002597, 'UGRD', 2025, 'AS', 'PHIL', 'LA'), +(800002598, 'UGRD', 2021, 'AS', 'CLSS', 'CM'), +(800002599, 'UGRD', 2022, 'AS', 'CPLT', 'AC'), +(800002600, 'UGRD', 2025, 'AS', 'BIOL', '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, 'NDP', NULL, 'AS', 'ECOM', 'ES'), +(800002621, 'UGRD', 2023, 'AS', 'BIOS', '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, 'NDP', NULL, 'AS', 'SOC', 'ES'), +(800002645, 'UGRD', 2024, 'AS', 'PSCI', 'AC'), +(800002651, 'UGRD', 2021, 'AS', 'PHY', 'CM'), +(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'), +(800002664, 'UGRD', 2022, 'AS', 'AAAS', 'AC'), +(800002666, 'UGRD', 2021, 'AS', 'EALC', 'CM'), +(800002672, 'UGRD', 2025, 'AS', 'AMAT', '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'), +(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'), +(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'), +(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'), +(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'), +(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'), +(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, 'NDP', 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, 'NDP', 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'), +(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'), +(800002994, 'UGRD', 2025, 'AS', 'MCB', 'AC'), +(800002998, 'UGRD', 2025, 'AS', 'PHY', 'AC'), +(800000428, 'SB', 2025, 'BUS', NULL, 'AC'), +(800000441, 'SB', 2024, 'BUS', NULL, 'AC'), +(800000463, 'SB', 2023, 'BUS', NULL, 'AC'), +(800000550, 'SB', 2023, 'BUS', NULL, 'AC'), +(800000720, 'SB', 2024, 'BUS', NULL, 'AC'), +(800000781, 'SB', 2025, 'BUS', NULL, 'AC'), +(800000822, 'SB', 2024, 'BUS', NULL, 'AC'), +(800001064, 'SB', 2024, 'BUS', NULL, 'AC'), +(800001122, 'SB', 2022, 'BUS', NULL, 'AC'), +(800001273, 'SB', 2025, 'BUS', NULL, 'AC'), +(800001287, 'SB', 2023, 'BUS', NULL, 'AC'), +(800001396, 'SB', 2023, 'BUS', NULL, 'AC'), +(800001513, 'SB', 2023, 'BUS', NULL, 'AC'), +(800001715, 'SB', 2025, 'BUS', NULL, 'AC'), +(800001740, 'SB', 2024, 'BUS', NULL, 'AC'), +(800001858, 'SB', 2024, 'BUS', NULL, 'AC'), +(800002010, 'SB', 2022, 'BUS', NULL, 'AC'), +(800002312, 'SB', 2022, 'BUS', NULL, 'AC'), +(800002483, 'SB', 2023, 'BUS', NULL, 'AC'), +(800002622, 'SB', 2024, 'BUS', NULL, 'AC'), +(800002652, 'SB', 2024, 'BUS', NULL, 'AC'), +(800002707, 'SB', 2021, 'BUS', NULL, 'CM'), +(800002737, 'SB', 2024, 'BUS', NULL, 'AC'), +(800002982, 'SB', 2022, 'BUS', NULL, 'AC'), +(800002993, 'SB', 2021, 'BUS', NULL, 'CM'), +(800000039, 'GRAD', 2025, 'GRD', 'GS', 'AC'), +(800000075, 'GRAD', 2021, 'GRD', 'GS', 'CM'), +(800000155, 'GRAD', 2024, 'GRD', 'GS', 'AC'), +(800000237, 'GRAD', 2023, 'GRD', 'GS', 'AC'), +(800000338, 'GRAD', 2023, 'GRD', 'GS', 'AC'), +(800000339, 'GRAD', 2022, 'GRD', 'GS', 'AC'), +(800000461, 'GRAD', 2022, 'GRD', 'GS', 'AC'), +(800000642, 'GRAD', 2025, 'GRD', 'GS', 'AC'), +(800000645, 'GRAD', 2024, 'GRD', 'GS', 'AC'), +(800000687, 'GNDP', NULL, 'GRD', 'GS', 'AC'), +(800000696, 'GRAD', 2023, 'GRD', 'GS', 'AC'), +(800000725, 'GNDP', NULL, 'GRD', 'GS', 'AC'), +(800000730, 'GRAD', 2021, 'GRD', 'GS', 'CM'), +(800000732, 'GRAD', 2021, 'GRD', 'GS', 'CM'), +(800000975, 'GRAD', 2021, 'GRD', 'GS', 'CM'), +(800000990, 'GRAD', 2024, 'GRD', 'GS', 'AC'), +(800001110, 'GRAD', 2021, 'GRD', 'GS', 'CM'), +(800001157, 'GRAD', 2023, 'GRD', 'GS', 'AC'), +(800001330, 'GRAD', 2021, 'GRD', 'GS', 'CM'), +(800001348, 'GRAD', 2024, 'GRD', 'GS', 'AC'), +(800001416, 'GRAD', 2025, 'GRD', 'GS', 'AC'), +(800001424, 'GRAD', 2022, 'GRD', 'GS', 'AC'), +(800001507, 'GRAD', 2024, 'GRD', 'GS', 'AC'), +(800001520, 'GRAD', 2025, 'GRD', 'GS', 'AC'), +(800001571, 'GNDP', NULL, 'GRD', 'GS', 'AC'), +(800001579, 'GRAD', 2021, 'GRD', 'GS', 'CM'), +(800001733, 'GRAD', 2022, 'GRD', 'GS', 'AC'), +(800001795, 'GRAD', 2024, 'GRD', 'GS', 'AC'), +(800001852, 'GRAD', 2024, 'GRD', 'GS', 'AC'), +(800001860, 'GRAD', 2024, 'GRD', 'GS', 'AC'), +(800001926, 'GRAD', 2021, 'GRD', 'GS', 'CM'), +(800001933, 'GRAD', 2025, 'GRD', 'GS', 'AC'), +(800002072, 'GRAD', 2025, 'GRD', 'GS', 'AC'), +(800002081, 'GRAD', 2025, 'GRD', 'GS', 'AC'), +(800002087, 'GRAD', 2025, 'GRD', 'GS', 'AC'), +(800002324, 'GRAD', 2023, 'GRD', 'GS', 'AC'), +(800002359, 'GRAD', 2023, 'GRD', 'GS', 'AC'), +(800002444, 'GRAD', 2023, 'GRD', 'GS', 'AC'), +(800002603, 'GRAD', 2025, 'GRD', 'GS', 'AC'), +(800002663, 'GRAD', 2023, 'GRD', 'GS', 'AC'), +(800002703, 'GRAD', 2024, 'GRD', 'GS', 'AC'), +(800002738, 'GRAD', 2021, 'GRD', 'GS', 'CM'), +(800002777, 'GRAD', 2024, 'GRD', 'GS', 'AC'), +(800002814, 'GRAD', 2025, 'GRD', 'GS', 'AC'), +(800002834, 'GRAD', 2024, 'GRD', 'GS', 'AC'), +(800002867, 'GRAD', 2022, 'GRD', 'GS', 'AC'), +(800000094, 'SCS', 2021, 'SCS', NULL, 'CM'), +(800000170, 'SCS', 2025, 'SCS', NULL, 'AC'), +(800000348, 'SCS', 2023, 'SCS', NULL, 'AC'), +(800000467, 'SCS', 2023, 'SCS', NULL, 'AC'), +(800000490, 'SCS', 2025, 'SCS', NULL, 'AC'), +(800000495, 'SCS', 2025, 'SCS', NULL, 'AC'), +(800000692, 'SCS', 2022, 'SCS', NULL, 'AC'), +(800000724, 'SCS', 2021, 'SCS', NULL, 'CM'), +(800000890, 'SCS', 2025, 'SCS', NULL, 'AC'), +(800001017, 'SCS', 2024, 'SCS', NULL, 'AC'), +(800001338, 'SCS', 2022, 'SCS', NULL, 'AC'), +(800001538, 'SCS', 2022, 'SCS', NULL, 'AC'), +(800001574, 'SCS', 2023, 'SCS', NULL, 'AC'), +(800001586, 'SCS', 2022, 'SCS', NULL, 'AC'), +(800001593, 'SCS', 2021, 'SCS', NULL, 'CM'), +(800001667, 'SCS', 2025, 'SCS', NULL, 'AC'), +(800001687, 'SCS', 2024, 'SCS', NULL, 'AC'), +(800001756, 'SCS', 2024, 'SCS', NULL, 'AC'), +(800001988, 'SCS', 2025, 'SCS', NULL, 'AC'), +(800002052, 'SCS', 2021, 'SCS', NULL, 'CM'), +(800002278, 'SCS', 2021, 'SCS', NULL, 'CM'), +(800002490, 'SCS', 2022, 'SCS', NULL, 'AC'), +(800002673, 'SCS', 2025, 'SCS', NULL, 'AC'), +(800000086, 'SPM', 2023, 'SPM', NULL, 'AC'), +(800000099, 'SPM', 2022, 'SPM', NULL, 'AC'), +(800000102, 'SPM', 2023, 'SPM', NULL, 'AC'), +(800000768, 'SPM', 2022, 'SPM', NULL, 'AC'), +(800000832, 'SPM', 2023, 'SPM', NULL, 'AC'), +(800000886, 'SPM', 2022, 'SPM', NULL, 'AC'), +(800000936, 'SPM', 2024, 'SPM', NULL, 'AC'), +(800001004, 'SPM', 2022, 'SPM', NULL, 'AC'), +(800001049, 'SPM', 2025, 'SPM', NULL, 'AC'), +(800001436, 'SPM', 2022, 'SPM', NULL, 'AC'), +(800001491, 'SPM', 2023, 'SPM', NULL, 'AC'), +(800001496, 'SPM', 2023, 'SPM', NULL, 'AC'), +(800001569, 'SPM', 2021, 'SPM', NULL, 'CM'), +(800001996, 'SPM', 2024, 'SPM', NULL, 'AC'), +(800002083, 'SPM', 2021, 'SPM', NULL, 'CM'), +(800002138, 'SPM', 2021, 'SPM', NULL, 'CM'), +(800002187, 'SPM', 2022, 'SPM', NULL, 'AC'), +(800002199, 'SPM', 2021, 'SPM', NULL, 'CM'), +(800002258, 'SPM', 2023, 'SPM', NULL, 'AC'), +(800002357, 'SPM', 2025, 'SPM', NULL, 'AC'), +(800002387, 'SPM', 2022, 'SPM', NULL, 'AC'), +(800002478, 'SPM', 2023, 'SPM', NULL, 'AC'), +(800002553, 'SPM', 2021, 'SPM', NULL, 'CM'), +(800002596, 'SPM', 2024, 'SPM', NULL, 'AC') ; diff --git a/ex201/ex201.1.1/container_files/grouper-loader.properties b/ex201/ex201.1.1/container_files/grouper-loader.properties deleted file mode 100644 index 8b937f5..0000000 --- a/ex201/ex201.1.1/container_files/grouper-loader.properties +++ /dev/null @@ -1,93 +0,0 @@ -#specify the consumers here. specify the consumer name after the changeLog.consumer. part. This example is "psp" -#but it could be changeLog.consumer.myConsumerName.class -#the class must extend edu.internet2.middleware.grouper.changeLog.ChangeLogConsumerBase -#changeLog.consumer.psp.class = edu.internet2.middleware.psp.grouper.PspChangeLogConsumer - -#the quartz cron is a cron-like string. it defaults to every minute on the minute (since the temp to change log job runs -#at 10 seconds to each minute). it defaults to this: 0 * * * * ? -#though it will stagger each one by 2 seconds -# http://www.quartz-scheduler.org/documentation/quartz-1.x/tutorials/crontrigger -#changeLog.consumer.psp.quartzCron = 0 * * * * ? - -# To retry processing a change log entry if an error occurs, set retryOnError to true. Defaults to false. -#changeLog.consumer.psp.retryOnError = false - -# To run full provisioning synchronizations periodically, provide the class name which provides a 'public void fullSync()' method. -#changeLog.psp.fullSync.class = edu.internet2.middleware.psp.grouper.PspChangeLogConsumer - -# Schedule full synchronizations. Defaults to 5 am : 0 0 5 * * ?. -#changeLog.psp.fullSync.quartzCron = 0 0 5 * * ? - -# Run a full synchronization job at startup. Defaults to false. -#changeLog.psp.fullSync.runAtStartup = false - -# Omit diff responses from bulk response to conserve memory. -#changeLog.psp.fullSync.omitDiffResponses = true - -# Omit sync responses from bulk response to conserve memory. -#changeLog.psp.fullSync.omitSyncResponses = true - -################################# -## LDAP connections -################################# -# specify the ldap connection with user, pass, url -# the string after "ldap." is the ID of the connection, and it should not have -# spaces or other special chars in it. In this case is it "personLdap" - -#note the URL should start with ldap: or ldaps: if it is SSL. -#It should contain the server and port (optional if not default), and baseDn, -#e.g. ldaps://ldapserver.school.edu:636/dc=school,dc=edu -ldap.demo.url = ldap://localhost:389/ - -#optional, if authenticated -ldap.demo.user = cn=root,dc=internet2,dc=edu - -#optional, if authenticated note the password can be stored encrypted in an external file -ldap.demo.pass = password - -#optional, if you are using tls, set this to true. Generally you will not be using an SSL URL to use TLS... -ldap.demo.tls = false - -#optional, if using sasl -#ldap.personLdap.saslAuthorizationId = -#ldap.personLdap.saslRealm = - -#optional (note, time limit is for search operations, timeout is for connection timeouts), -#most of these default to vt-ldap defaults. times are in millis -#validateOnCheckout defaults to true if all other validate methods are false -#ldap.personLdap.batchSize = -#ldap.personLdap.countLimit = -#ldap.personLdap.timeLimit = -#ldap.personLdap.timeout = -#ldap.personLdap.minPoolSize = -#ldap.personLdap.maxPoolSize = -#ldap.personLdap.validateOnCheckIn = -#ldap.personLdap.validateOnCheckOut = -#ldap.personLdap.validatePeriodically = -#ldap.personLdap.validateTimerPeriod = -#ldap.personLdap.pruneTimerPeriod = -#if connections expire after a certain amount of time, this is it, in millis, defaults to 300000 (5 minutes) -#ldap.personLdap.expirationTime = - -#make the paths fully qualified and not relative to the loader group. -loader.ldap.requireTopStemAsStemFromConfigGroup=false - -changeLog.consumer.pspng_affiliations.class = edu.internet2.middleware.grouper.pspng.PspChangelogConsumerShim -changeLog.consumer.pspng_affiliations.type = edu.internet2.middleware.grouper.pspng.LdapAttributeProvisioner -changeLog.consumer.pspng_affiliations.quartzCron = 0 * * * * ? -changeLog.consumer.pspng_affiliations.ldapPoolName = demo -changeLog.consumer.pspng_affiliations.provisionedAttributeName = eduPersonAffiliation -changeLog.consumer.pspng_affiliations.provisionedAttributeValueFormat = ${group.extension.replace('ePA_', '')} -changeLog.consumer.pspng_affiliations.userSearchBaseDn = ou=people,dc=internet2,dc=edu -changeLog.consumer.pspng_affiliations.userSearchFilter = uid=${subject.id} -changeLog.consumer.pspng_affiliations.allProvisionedValuesPrefix=* - -changeLog.consumer.pspng_entitlements.class = edu.internet2.middleware.grouper.pspng.PspChangelogConsumerShim -changeLog.consumer.pspng_entitlements.type = edu.internet2.middleware.grouper.pspng.LdapAttributeProvisioner -changeLog.consumer.pspng_entitlements.quartzCron = 0 * * * * ? -changeLog.consumer.pspng_entitlements.ldapPoolName = demo -changeLog.consumer.pspng_entitlements.provisionedAttributeName = eduPersonEntitlement -changeLog.consumer.pspng_entitlements.provisionedAttributeValueFormat = ${group.name.equalsIgnoreCase('app:wiki:service:policy:wiki_user') ? 'http://sp.example.org/wiki' : 'urn:mace:example.edu:' + group.extension} -changeLog.consumer.pspng_entitlements.userSearchBaseDn = ou=people,dc=internet2,dc=edu -changeLog.consumer.pspng_entitlements.userSearchFilter = uid=${subject.id} -changeLog.consumer.pspng_entitlements.allProvisionedValuesPrefix=* diff --git a/ex401/ex401.1.1/container_files/grouper-loader.properties b/ex401/ex401.1.1/container_files/grouper-loader.properties deleted file mode 100644 index 7315066..0000000 --- a/ex401/ex401.1.1/container_files/grouper-loader.properties +++ /dev/null @@ -1,118 +0,0 @@ -#specify the consumers here. specify the consumer name after the changeLog.consumer. part. This example is "psp" -#but it could be changeLog.consumer.myConsumerName.class -#the class must extend edu.internet2.middleware.grouper.changeLog.ChangeLogConsumerBase -#changeLog.consumer.psp.class = edu.internet2.middleware.psp.grouper.PspChangeLogConsumer - -#the quartz cron is a cron-like string. it defaults to every minute on the minute (since the temp to change log job runs -#at 10 seconds to each minute). it defaults to this: 0 * * * * ? -#though it will stagger each one by 2 seconds -# http://www.quartz-scheduler.org/documentation/quartz-1.x/tutorials/crontrigger -#changeLog.consumer.psp.quartzCron = 0 * * * * ? - -# To retry processing a change log entry if an error occurs, set retryOnError to true. Defaults to false. -#changeLog.consumer.psp.retryOnError = false - -# To run full provisioning synchronizations periodically, provide the class name which provides a 'public void fullSync()' method. -#changeLog.psp.fullSync.class = edu.internet2.middleware.psp.grouper.PspChangeLogConsumer - -# Schedule full synchronizations. Defaults to 5 am : 0 0 5 * * ?. -#changeLog.psp.fullSync.quartzCron = 0 0 5 * * ? - -# Run a full synchronization job at startup. Defaults to false. -#changeLog.psp.fullSync.runAtStartup = false - -# Omit diff responses from bulk response to conserve memory. -#changeLog.psp.fullSync.omitDiffResponses = true - -# Omit sync responses from bulk response to conserve memory. -#changeLog.psp.fullSync.omitSyncResponses = true - -################################# -## LDAP connections -################################# -# specify the ldap connection with user, pass, url -# the string after "ldap." is the ID of the connection, and it should not have -# spaces or other special chars in it. In this case is it "personLdap" - -#note the URL should start with ldap: or ldaps: if it is SSL. -#It should contain the server and port (optional if not default), and baseDn, -#e.g. ldaps://ldapserver.school.edu:636/dc=school,dc=edu -ldap.demo.url = ldap://localhost:389/ - -#optional, if authenticated -ldap.demo.user = cn=root,dc=internet2,dc=edu - -#optional, if authenticated note the password can be stored encrypted in an external file -ldap.demo.pass = password - -#optional, if you are using tls, set this to true. Generally you will not be using an SSL URL to use TLS... -ldap.demo.tls = false - -#optional, if using sasl -#ldap.personLdap.saslAuthorizationId = -#ldap.personLdap.saslRealm = - -#optional (note, time limit is for search operations, timeout is for connection timeouts), -#most of these default to vt-ldap defaults. times are in millis -#validateOnCheckout defaults to true if all other validate methods are false -#ldap.personLdap.batchSize = -#ldap.personLdap.countLimit = -#ldap.personLdap.timeLimit = -#ldap.personLdap.timeout = -#ldap.personLdap.minPoolSize = -#ldap.personLdap.maxPoolSize = -#ldap.personLdap.validateOnCheckIn = -#ldap.personLdap.validateOnCheckOut = -#ldap.personLdap.validatePeriodically = -#ldap.personLdap.validateTimerPeriod = -#ldap.personLdap.pruneTimerPeriod = -#if connections expire after a certain amount of time, this is it, in millis, defaults to 300000 (5 minutes) -#ldap.personLdap.expirationTime = - -#make the paths fully qualified and not relative to the loader group. -loader.ldap.requireTopStemAsStemFromConfigGroup=false - -changeLog.consumer.pspng_groupOfNames.class = edu.internet2.middleware.grouper.pspng.PspChangelogConsumerShim -changeLog.consumer.pspng_groupOfNames.type = edu.internet2.middleware.grouper.pspng.LdapGroupProvisioner -changeLog.consumer.pspng_groupOfNames.quartzCron = 0 * * * * ? -changeLog.consumer.pspng_groupOfNames.ldapPoolName = demo -changeLog.consumer.pspng_groupOfNames.supportsEmptyGroups = false -changeLog.consumer.pspng_groupOfNames.memberAttributeName = member -changeLog.consumer.pspng_groupOfNames.memberAttributeValueFormat = ${ldapUser.getDn()} -changeLog.consumer.pspng_groupOfNames.groupSearchBaseDn = ou=groups,dc=internet2,dc=edu -changeLog.consumer.pspng_groupOfNames.allGroupsSearchFilter = objectclass=groupOfNames -changeLog.consumer.pspng_groupOfNames.singleGroupSearchFilter = (&(objectclass=groupOfNames)(cn=${group.name})) -changeLog.consumer.pspng_groupOfNames.groupSearchAttributes = cn,objectclass -changeLog.consumer.pspng_groupOfNames.groupCreationLdifTemplate = dn: cn=${group.name}||cn: ${group.name}||objectclass: groupOfNames -changeLog.consumer.pspng_groupOfNames.userSearchBaseDn = ou=people,dc=internet2,dc=edu -changeLog.consumer.pspng_groupOfNames.userSearchFilter = uid=${subject.id} -changeLog.consumer.pspng_groupOfNames.grouperIsAuthoritative = false - - -changeLog.consumer.pspng_entitlements.class = edu.internet2.middleware.grouper.pspng.PspChangelogConsumerShim -changeLog.consumer.pspng_entitlements.type = edu.internet2.middleware.grouper.pspng.LdapAttributeProvisioner -changeLog.consumer.pspng_entitlements.quartzCron = 0 * * * * ? -changeLog.consumer.pspng_entitlements.ldapPoolName = demo -changeLog.consumer.pspng_entitlements.provisionedAttributeName = eduPersonEntitlement -changeLog.consumer.pspng_entitlements.provisionedAttributeValueFormat = ${group.name.equalsIgnoreCase('app:mfa:service:policy:mfa_enabled') ? 'http://tier.internet2.edu/mfa/enabled' : (group.name.equalsIgnoreCase('app:board_effect:service:policy:board_effect_access') ? 'https://college.boardeffect.com/' : 'urn:mace:example.edu:' + group.extension)} -changeLog.consumer.pspng_entitlements.userSearchBaseDn = ou=people,dc=internet2,dc=edu -changeLog.consumer.pspng_entitlements.userSearchFilter = uid=${subject.id} -changeLog.consumer.pspng_entitlements.allProvisionedValuesPrefix=* - -##################################### -## Messaging integration with change log -##################################### -# changeLog.consumer.rabbitMqMessagingSample.quartzCron = 0 * * * * ? -# -# # note, change "messagingSample" in key to be the name of the consumer. e.g. changeLog.consumer.someNameAnyName.class -# changeLog.consumer.rabbitMqMessagingSample.class = edu.internet2.middleware.grouper.changeLog.esb.consumer.EsbConsumer -# -# changeLog.consumer.rabbitMqMessagingSample.publisher.class = edu.internet2.middleware.grouper.changeLog.esb.consumer.EsbMessagingPublisher -# changeLog.consumer.rabbitMqMessagingSample.publisher.messagingSystemName = rabbitmq -# # note, routingKey property is valid only for rabbitmq. For other messaging systems, it is ignored. -# changeLog.consumer.rabbitMqMessagingSample.publisher.routingKey = -# ## queue or topic -# changeLog.consumer.rabbitMqMessagingSample.publisher.messageQueueType = queue -# changeLog.consumer.rabbitMqMessagingSample.publisher.queueOrTopicName = grouper -# ## this is optional if not using "id" for subjectId, need to be a subject attribute in the sources.xml -# #changeLog.consumer.rabbitMqMessagingSample.publisher.addSubjectAttributes = email diff --git a/full-demo/container_files/grouper-loader.properties b/full-demo/container_files/grouper-loader.properties deleted file mode 100644 index fbf9c2b..0000000 --- a/full-demo/container_files/grouper-loader.properties +++ /dev/null @@ -1,103 +0,0 @@ -#specify the consumers here. specify the consumer name after the changeLog.consumer. part. This example is "psp" -#but it could be changeLog.consumer.myConsumerName.class -#the class must extend edu.internet2.middleware.grouper.changeLog.ChangeLogConsumerBase -#changeLog.consumer.psp.class = edu.internet2.middleware.psp.grouper.PspChangeLogConsumer - -#the quartz cron is a cron-like string. it defaults to every minute on the minute (since the temp to change log job runs -#at 10 seconds to each minute). it defaults to this: 0 * * * * ? -#though it will stagger each one by 2 seconds -# http://www.quartz-scheduler.org/documentation/quartz-1.x/tutorials/crontrigger -#changeLog.consumer.psp.quartzCron = 0 * * * * ? - -# To retry processing a change log entry if an error occurs, set retryOnError to true. Defaults to false. -#changeLog.consumer.psp.retryOnError = false - -# To run full provisioning synchronizations periodically, provide the class name which provides a 'public void fullSync()' method. -#changeLog.psp.fullSync.class = edu.internet2.middleware.psp.grouper.PspChangeLogConsumer - -# Schedule full synchronizations. Defaults to 5 am : 0 0 5 * * ?. -#changeLog.psp.fullSync.quartzCron = 0 0 5 * * ? - -# Run a full synchronization job at startup. Defaults to false. -#changeLog.psp.fullSync.runAtStartup = false - -# Omit diff responses from bulk response to conserve memory. -#changeLog.psp.fullSync.omitDiffResponses = true - -# Omit sync responses from bulk response to conserve memory. -#changeLog.psp.fullSync.omitSyncResponses = true - -################################# -## LDAP connections -################################# -# specify the ldap connection with user, pass, url -# the string after "ldap." is the ID of the connection, and it should not have -# spaces or other special chars in it. In this case is it "personLdap" - -#note the URL should start with ldap: or ldaps: if it is SSL. -#It should contain the server and port (optional if not default), and baseDn, -#e.g. ldaps://ldapserver.school.edu:636/dc=school,dc=edu -ldap.demo.url = ldap://localhost:389/ - -#optional, if authenticated -ldap.demo.user = cn=root,dc=internet2,dc=edu - -#optional, if authenticated note the password can be stored encrypted in an external file -ldap.demo.pass = password - -#optional, if you are using tls, set this to true. Generally you will not be using an SSL URL to use TLS... -ldap.demo.tls = false - -#optional, if using sasl -#ldap.personLdap.saslAuthorizationId = -#ldap.personLdap.saslRealm = - -#optional (note, time limit is for search operations, timeout is for connection timeouts), -#most of these default to vt-ldap defaults. times are in millis -#validateOnCheckout defaults to true if all other validate methods are false -#ldap.personLdap.batchSize = -#ldap.personLdap.countLimit = -#ldap.personLdap.timeLimit = -#ldap.personLdap.timeout = -#ldap.personLdap.minPoolSize = -#ldap.personLdap.maxPoolSize = -#ldap.personLdap.validateOnCheckIn = -#ldap.personLdap.validateOnCheckOut = -#ldap.personLdap.validatePeriodically = -#ldap.personLdap.validateTimerPeriod = -#ldap.personLdap.pruneTimerPeriod = -#if connections expire after a certain amount of time, this is it, in millis, defaults to 300000 (5 minutes) -#ldap.personLdap.expirationTime = - -#make the paths fully qualified and not relative to the loader group. -loader.ldap.requireTopStemAsStemFromConfigGroup=false - -changeLog.consumer.pspng_groupOfUniqueNames.class = edu.internet2.middleware.grouper.pspng.PspChangelogConsumerShim -changeLog.consumer.pspng_groupOfUniqueNames.type = edu.internet2.middleware.grouper.pspng.LdapGroupProvisioner -changeLog.consumer.pspng_groupOfUniqueNames.quartzCron = 0 * * * * ? -changeLog.consumer.pspng_groupOfUniqueNames.ldapPoolName = demo -changeLog.consumer.pspng_groupOfUniqueNames.supportsEmptyGroups = false -changeLog.consumer.pspng_groupOfUniqueNames.memberAttributeName = uniqueMember -# changeLog.consumer.pspng_groupOfUniqueNames.memberAttributeValueFormat = ${ldapUser.getStringValue("uid")} -changeLog.consumer.pspng_groupOfUniqueNames.memberAttributeValueFormat = ${ldapUser.getDn()} -changeLog.consumer.pspng_groupOfUniqueNames.groupSearchBaseDn = ou=groups,dc=internet2,dc=edu -changeLog.consumer.pspng_groupOfUniqueNames.allGroupsSearchFilter = objectclass=groupOfUniqueNames -changeLog.consumer.pspng_groupOfUniqueNames.singleGroupSearchFilter = (&(objectclass=groupOfUniqueNames)(cn=${group.name})) -changeLog.consumer.pspng_groupOfUniqueNames.groupSearchAttributes = cn,objectclass -changeLog.consumer.pspng_groupOfUniqueNames.groupCreationLdifTemplate = dn: cn=${group.name}||cn: ${group.name}||objectclass: groupOfUniqueNames -changeLog.consumer.pspng_groupOfUniqueNames.userSearchBaseDn = ou=people,dc=internet2,dc=edu -changeLog.consumer.pspng_groupOfUniqueNames.userSearchFilter = uid=${subject.id} -changeLog.consumer.pspng_groupOfUniqueNames.grouperIsAuthoritative = true -changeLog.consumer.pspng_groupOfUniqueNames.provisionedAttributeName = eduPersonEntitlement -changeLog.consumer.pspng_groupOfUniqueNames.provisionedAttributeValueFormat = g:${group.name} - - -changeLog.consumer.pspng_entitlements.class = edu.internet2.middleware.grouper.pspng.PspChangelogConsumerShim -changeLog.consumer.pspng_entitlements.type = edu.internet2.middleware.grouper.pspng.LdapAttributeProvisioner -changeLog.consumer.pspng_entitlements.quartzCron = 0 * * * * ? -changeLog.consumer.pspng_entitlements.ldapPoolName = demo -changeLog.consumer.pspng_entitlements.provisionedAttributeName = eduPersonEntitlement -changeLog.consumer.pspng_entitlements.provisionedAttributeValueFormat = urn:mace:example.edu:${group.extension} -changeLog.consumer.pspng_entitlements.userSearchBaseDn = ou=people,dc=internet2,dc=edu -changeLog.consumer.pspng_entitlements.userSearchFilter = uid=${subject.id} -changeLog.consumer.pspng_entitlements.allProvisionedValuesPrefix=urn:mace:example.edu: