-- Unicohstech converted database
-- Generated 2026-08-15T05:07:39.270Z from leknbuif_uni_portal (6).sql
-- Import into a completely empty MySQL 8 database.
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS=0;
START TRANSACTION;
SET NAMES utf8mb4;
SET time_zone = '+01:00';

CREATE TABLE users (
 id BIGINT UNSIGNED AUTO_INCREMENT PRIMARY KEY, email VARCHAR(190) NOT NULL UNIQUE, password_hash VARCHAR(255) NULL,
 legacy_md5 CHAR(32) NULL, first_name VARCHAR(100) NOT NULL, middle_name VARCHAR(100) NULL, last_name VARCHAR(100) NOT NULL,
 phone VARCHAR(30) NULL, role ENUM('applicant','student','staff','super_admin') NOT NULL DEFAULT 'applicant',
 status ENUM('active','suspended','disabled') NOT NULL DEFAULT 'active', must_change_password BOOLEAN NOT NULL DEFAULT FALSE,
 email_verified_at DATETIME NULL, last_login_at DATETIME NULL, legacy_id VARCHAR(100) NULL, created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,
 updated_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, INDEX(role,status), INDEX(legacy_id)
) ENGINE=InnoDB;

CREATE TABLE campuses (id BIGINT UNSIGNED AUTO_INCREMENT PRIMARY KEY, name VARCHAR(150) NOT NULL, code VARCHAR(20) NOT NULL UNIQUE, address TEXT NULL, is_active BOOLEAN DEFAULT TRUE);
CREATE TABLE departments (id BIGINT UNSIGNED AUTO_INCREMENT PRIMARY KEY, name VARCHAR(190) NOT NULL, code VARCHAR(30) NOT NULL UNIQUE, is_active BOOLEAN DEFAULT TRUE);
CREATE TABLE programmes (id BIGINT UNSIGNED AUTO_INCREMENT PRIMARY KEY, department_id BIGINT UNSIGNED NOT NULL, name VARCHAR(190) NOT NULL, code VARCHAR(30) NOT NULL UNIQUE, duration_years TINYINT UNSIGNED NOT NULL, is_active BOOLEAN DEFAULT TRUE, FOREIGN KEY(department_id) REFERENCES departments(id));
CREATE TABLE academic_sessions (id BIGINT UNSIGNED AUTO_INCREMENT PRIMARY KEY, name VARCHAR(20) NOT NULL UNIQUE, starts_on DATE NOT NULL, ends_on DATE NOT NULL, is_active BOOLEAN DEFAULT FALSE);
CREATE TABLE semesters (id BIGINT UNSIGNED AUTO_INCREMENT PRIMARY KEY, academic_session_id BIGINT UNSIGNED NOT NULL, name ENUM('First','Second','Summer') NOT NULL, starts_on DATE NOT NULL, ends_on DATE NOT NULL, registration_opens_at DATETIME NULL, registration_closes_at DATETIME NULL, is_active BOOLEAN DEFAULT FALSE, UNIQUE(academic_session_id,name), FOREIGN KEY(academic_session_id) REFERENCES academic_sessions(id));

CREATE TABLE applications (
 id BIGINT UNSIGNED AUTO_INCREMENT PRIMARY KEY, user_id BIGINT UNSIGNED NOT NULL, application_no VARCHAR(40) NOT NULL UNIQUE,
 programme_id BIGINT UNSIGNED NOT NULL, campus_id BIGINT UNSIGNED NOT NULL, entry_session_id BIGINT UNSIGNED NOT NULL,
 status ENUM('draft','submitted','in_review','correction_required','admitted','rejected','accepted') NOT NULL DEFAULT 'draft',
 date_of_birth DATE NULL, gender VARCHAR(30) NULL, nationality VARCHAR(100) NULL, state VARCHAR(100) NULL, lga VARCHAR(100) NULL, address TEXT NULL,
 submitted_at DATETIME NULL, decided_at DATETIME NULL, decision_note TEXT NULL, created_at DATETIME NOT NULL, updated_at DATETIME NOT NULL,
 FOREIGN KEY(user_id) REFERENCES users(id), FOREIGN KEY(programme_id) REFERENCES programmes(id), FOREIGN KEY(campus_id) REFERENCES campuses(id), FOREIGN KEY(entry_session_id) REFERENCES academic_sessions(id), INDEX(status,created_at)
);
CREATE TABLE application_qualifications (id BIGINT UNSIGNED AUTO_INCREMENT PRIMARY KEY, application_id BIGINT UNSIGNED NOT NULL, institution VARCHAR(190) NOT NULL, qualification VARCHAR(100) NOT NULL, year_from SMALLINT NOT NULL, year_to SMALLINT NOT NULL, details JSON NULL, FOREIGN KEY(application_id) REFERENCES applications(id) ON DELETE CASCADE);
CREATE TABLE documents (id BIGINT UNSIGNED AUTO_INCREMENT PRIMARY KEY, user_id BIGINT UNSIGNED NOT NULL, application_id BIGINT UNSIGNED NULL, category VARCHAR(50) NOT NULL, original_name VARCHAR(255) NOT NULL, storage_name VARCHAR(255) NOT NULL UNIQUE, mime_type VARCHAR(100) NOT NULL, size_bytes INT UNSIGNED NOT NULL, verified_at DATETIME NULL, created_at DATETIME DEFAULT CURRENT_TIMESTAMP, FOREIGN KEY(user_id) REFERENCES users(id), FOREIGN KEY(application_id) REFERENCES applications(id) ON DELETE CASCADE);

CREATE TABLE students (id BIGINT UNSIGNED AUTO_INCREMENT PRIMARY KEY, user_id BIGINT UNSIGNED NOT NULL UNIQUE, application_id BIGINT UNSIGNED NULL UNIQUE, matric_no VARCHAR(50) NOT NULL UNIQUE, programme_id BIGINT UNSIGNED NOT NULL, campus_id BIGINT UNSIGNED NOT NULL, admission_session_id BIGINT UNSIGNED NOT NULL, current_level SMALLINT UNSIGNED NOT NULL DEFAULT 100, category VARCHAR(50) NOT NULL DEFAULT 'regular', status ENUM('active','graduated','withdrawn','deferred','suspended') DEFAULT 'active', legacy_id VARCHAR(100) NULL, FOREIGN KEY(user_id) REFERENCES users(id), FOREIGN KEY(application_id) REFERENCES applications(id), FOREIGN KEY(programme_id) REFERENCES programmes(id), FOREIGN KEY(campus_id) REFERENCES campuses(id), FOREIGN KEY(admission_session_id) REFERENCES academic_sessions(id));
CREATE TABLE staff_profiles (id BIGINT UNSIGNED AUTO_INCREMENT PRIMARY KEY, user_id BIGINT UNSIGNED NOT NULL UNIQUE, staff_no VARCHAR(50) NOT NULL UNIQUE, department_id BIGINT UNSIGNED NULL, title VARCHAR(80) NULL, FOREIGN KEY(user_id) REFERENCES users(id), FOREIGN KEY(department_id) REFERENCES departments(id));

CREATE TABLE courses (id BIGINT UNSIGNED AUTO_INCREMENT PRIMARY KEY, department_id BIGINT UNSIGNED NOT NULL, code VARCHAR(30) NOT NULL UNIQUE, title VARCHAR(190) NOT NULL, credit_units TINYINT UNSIGNED NOT NULL, level SMALLINT UNSIGNED NOT NULL, description TEXT NULL, is_active BOOLEAN DEFAULT TRUE, FOREIGN KEY(department_id) REFERENCES departments(id));
CREATE TABLE course_prerequisites (course_id BIGINT UNSIGNED NOT NULL, prerequisite_course_id BIGINT UNSIGNED NOT NULL, PRIMARY KEY(course_id,prerequisite_course_id), FOREIGN KEY(course_id) REFERENCES courses(id), FOREIGN KEY(prerequisite_course_id) REFERENCES courses(id));
CREATE TABLE course_offerings (id BIGINT UNSIGNED AUTO_INCREMENT PRIMARY KEY, course_id BIGINT UNSIGNED NOT NULL, programme_id BIGINT UNSIGNED NOT NULL, semester_id BIGINT UNSIGNED NOT NULL, lecturer_user_id BIGINT UNSIGNED NULL, status ENUM('compulsory','elective') DEFAULT 'compulsory', max_students INT UNSIGNED NULL, UNIQUE(course_id,programme_id,semester_id), FOREIGN KEY(course_id) REFERENCES courses(id), FOREIGN KEY(programme_id) REFERENCES programmes(id), FOREIGN KEY(semester_id) REFERENCES semesters(id), FOREIGN KEY(lecturer_user_id) REFERENCES users(id));
CREATE TABLE course_registrations (id BIGINT UNSIGNED AUTO_INCREMENT PRIMARY KEY, student_id BIGINT UNSIGNED NOT NULL, semester_id BIGINT UNSIGNED NOT NULL, status ENUM('draft','registered','approved','cancelled') DEFAULT 'registered', registered_at DATETIME NOT NULL, approved_at DATETIME NULL, UNIQUE(student_id,semester_id), FOREIGN KEY(student_id) REFERENCES students(id), FOREIGN KEY(semester_id) REFERENCES semesters(id));
CREATE TABLE course_registration_items (registration_id BIGINT UNSIGNED NOT NULL, course_offering_id BIGINT UNSIGNED NOT NULL, PRIMARY KEY(registration_id,course_offering_id), FOREIGN KEY(registration_id) REFERENCES course_registrations(id) ON DELETE CASCADE, FOREIGN KEY(course_offering_id) REFERENCES course_offerings(id));
CREATE TABLE grade_bands (id BIGINT UNSIGNED AUTO_INCREMENT PRIMARY KEY, letter_grade VARCHAR(3) NOT NULL, min_score DECIMAL(5,2) NOT NULL, max_score DECIMAL(5,2) NOT NULL, grade_point DECIMAL(3,2) NOT NULL, UNIQUE(letter_grade));
CREATE TABLE results (id BIGINT UNSIGNED AUTO_INCREMENT PRIMARY KEY, student_id BIGINT UNSIGNED NOT NULL, course_offering_id BIGINT UNSIGNED NOT NULL, continuous_assessment DECIMAL(5,2) NOT NULL DEFAULT 0, exam_score DECIMAL(5,2) NOT NULL DEFAULT 0, total_score DECIMAL(5,2) NOT NULL, letter_grade VARCHAR(3) NOT NULL, grade_point DECIMAL(3,2) NOT NULL, status ENUM('draft','published') DEFAULT 'draft', published_at DATETIME NULL, updated_by BIGINT UNSIGNED NOT NULL, updated_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, UNIQUE(student_id,course_offering_id), FOREIGN KEY(student_id) REFERENCES students(id), FOREIGN KEY(course_offering_id) REFERENCES course_offerings(id), FOREIGN KEY(updated_by) REFERENCES users(id));

CREATE TABLE fee_schedules (id BIGINT UNSIGNED AUTO_INCREMENT PRIMARY KEY, academic_session_id BIGINT UNSIGNED NOT NULL, programme_id BIGINT UNSIGNED NULL, level SMALLINT UNSIGNED NULL, category VARCHAR(50) NULL, fee_type VARCHAR(100) NOT NULL, amount DECIMAL(12,2) NOT NULL, is_active BOOLEAN DEFAULT TRUE, FOREIGN KEY(academic_session_id) REFERENCES academic_sessions(id), FOREIGN KEY(programme_id) REFERENCES programmes(id));
CREATE TABLE invoices (id BIGINT UNSIGNED AUTO_INCREMENT PRIMARY KEY, user_id BIGINT UNSIGNED NOT NULL, reference VARCHAR(50) NOT NULL UNIQUE, academic_session_id BIGINT UNSIGNED NULL, description VARCHAR(190) NOT NULL, total_amount DECIMAL(12,2) NOT NULL, amount_paid DECIMAL(12,2) NOT NULL DEFAULT 0, balance_due DECIMAL(12,2) NOT NULL, status ENUM('unpaid','partial','paid','cancelled') DEFAULT 'unpaid', due_at DATETIME NULL, created_at DATETIME DEFAULT CURRENT_TIMESTAMP, updated_at DATETIME DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, FOREIGN KEY(user_id) REFERENCES users(id), FOREIGN KEY(academic_session_id) REFERENCES academic_sessions(id), INDEX(user_id,status));
CREATE TABLE invoice_items (id BIGINT UNSIGNED AUTO_INCREMENT PRIMARY KEY, invoice_id BIGINT UNSIGNED NOT NULL, description VARCHAR(190) NOT NULL, amount DECIMAL(12,2) NOT NULL, FOREIGN KEY(invoice_id) REFERENCES invoices(id) ON DELETE CASCADE);
CREATE TABLE payments (id BIGINT UNSIGNED AUTO_INCREMENT PRIMARY KEY, invoice_id BIGINT UNSIGNED NOT NULL, reference VARCHAR(100) NOT NULL UNIQUE, amount DECIMAL(12,2) NOT NULL, method ENUM('paystack','bank_transfer','cash','legacy_import') NOT NULL, status ENUM('pending','successful','failed','reversed') DEFAULT 'pending', gateway_payload JSON NULL, recorded_by BIGINT UNSIGNED NULL, confirmed_by BIGINT UNSIGNED NULL, paid_at DATETIME NULL, created_at DATETIME DEFAULT CURRENT_TIMESTAMP, FOREIGN KEY(invoice_id) REFERENCES invoices(id), FOREIGN KEY(recorded_by) REFERENCES users(id), FOREIGN KEY(confirmed_by) REFERENCES users(id));

CREATE TABLE announcements (id BIGINT UNSIGNED AUTO_INCREMENT PRIMARY KEY, title VARCHAR(190) NOT NULL, body TEXT NOT NULL, audience ENUM('all','applicants','students','staff') DEFAULT 'all', author_id BIGINT UNSIGNED NOT NULL, published_at DATETIME NULL, created_at DATETIME DEFAULT CURRENT_TIMESTAMP, FOREIGN KEY(author_id) REFERENCES users(id));
CREATE TABLE password_reset_tokens (id BIGINT UNSIGNED AUTO_INCREMENT PRIMARY KEY, user_id BIGINT UNSIGNED NOT NULL, token_hash CHAR(64) NOT NULL UNIQUE, expires_at DATETIME NOT NULL, used_at DATETIME NULL, created_at DATETIME DEFAULT CURRENT_TIMESTAMP, FOREIGN KEY(user_id) REFERENCES users(id) ON DELETE CASCADE);
CREATE TABLE audit_logs (id BIGINT UNSIGNED AUTO_INCREMENT PRIMARY KEY, user_id BIGINT UNSIGNED NULL, action VARCHAR(100) NOT NULL, entity_type VARCHAR(100) NULL, entity_id VARCHAR(100) NULL, old_values JSON NULL, new_values JSON NULL, ip_address VARCHAR(45) NULL, created_at DATETIME DEFAULT CURRENT_TIMESTAMP, FOREIGN KEY(user_id) REFERENCES users(id), INDEX(action,created_at));
CREATE TABLE settings (setting_key VARCHAR(100) PRIMARY KEY, setting_value TEXT NOT NULL, is_public BOOLEAN DEFAULT FALSE, updated_at DATETIME DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP);

INSERT INTO grade_bands(letter_grade,min_score,max_score,grade_point) VALUES ('A',70,100,5.00),('B',60,69.99,4.00),('C',50,59.99,3.00),('D',45,49.99,2.00),('E',40,44.99,1.00),('F',0,39.99,0.00);
INSERT INTO settings(setting_key,setting_value,is_public) VALUES ('institution_name','Unicohstech',TRUE),('institution_full_name','Universal College of Health Science and Technology',TRUE),('currency','NGN',TRUE);

CREATE TABLE legacy_mappings (id BIGINT UNSIGNED AUTO_INCREMENT PRIMARY KEY,entity_type VARCHAR(50) NOT NULL,legacy_table VARCHAR(100) NOT NULL,legacy_id VARCHAR(100) NOT NULL,new_id BIGINT UNSIGNED NOT NULL,notes TEXT NULL,created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,UNIQUE KEY unique_legacy_record(entity_type,legacy_table,legacy_id),KEY entity_new_id(entity_type,new_id));
CREATE TABLE migration_issues (id BIGINT UNSIGNED AUTO_INCREMENT PRIMARY KEY,entity_type VARCHAR(50) NOT NULL,legacy_table VARCHAR(100) NOT NULL,legacy_id VARCHAR(100) NOT NULL,issue_code VARCHAR(80) NOT NULL,message TEXT NOT NULL,legacy_payload JSON NULL,created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP,KEY issue_lookup(entity_type,issue_code));


-- users: 414 records
INSERT INTO `users` (`id`,`email`,`password_hash`,`legacy_md5`,`first_name`,`middle_name`,`last_name`,`phone`,`role`,`status`,`must_change_password`,`email_verified_at`,`last_login_at`,`legacy_id`,`created_at`,`updated_at`) VALUES
(1,'migration@system.invalid',NULL,NULL,'Migration',NULL,'System',NULL,'staff','disabled',0,NULL,NULL,'system','2020-01-01 00:00:00','2020-01-01 00:00:00'),
(2,'omegavc644@gmail.com',NULL,'827ccb0eea8a706c4c34a16891f84e7b','Kunle','Sunday','BILL','08055021550','student','active',1,NULL,NULL,'768','2024-07-03 11:18:23','2024-07-03 11:18:23'),
(3,'legacy-769@legacy.invalid',NULL,'827ccb0eea8a706c4c34a16891f84e7b','SUNDAY','FELICIA','AKINOLA','08055021550','student','active',1,NULL,NULL,'769','2024-07-03 11:32:42','2024-07-03 11:32:42'),
(4,'adedapomiracle46@gmail.com',NULL,'6e42a38de440df6cdba8fb75bcea26da','MIRACLE','AYOTOMIWA','ADEDAPO','09037188045','student','active',1,NULL,NULL,'770','2024-07-04 06:20:48','2024-07-04 06:20:48'),
(5,'akinbobolamorenikeji3@gmail.com',NULL,'bfb6563aef0b56d4d9d0ab0a698fac9a','FAITH','TEMILOLA','AKINBOBOLA','07048024464','student','active',1,NULL,NULL,'771','2024-07-04 06:26:52','2024-07-04 06:26:52'),
(6,'lawrenceenitan72@gmail.com',NULL,'6f700a2bc3a8ea08d0601b8ccaa362ac','ENITAN','SAMUEL','LAWRENCE','09168653856','student','active',1,NULL,NULL,'772','2024-07-04 11:33:52','2024-07-04 11:33:52'),
(7,'thankgodadejoh36@gmail.com',NULL,'37d8424c511184ea0af39237d3f048dc','THANKGOD','UGWA','ADEJOH','08107430767','student','active',1,NULL,NULL,'773','2024-07-04 11:36:36','2024-07-04 11:36:36'),
(8,'olamidepeace126@gmail.com',NULL,'4c2a5f04571b01fb0c2fb82fdfa5311d','PEACE','OLAMIDE','FIDIMAYE','09028865354','student','active',1,NULL,NULL,'775','2024-07-05 05:57:32','2024-07-05 05:57:32'),
(9,'holamidehayo859@gmail.com',NULL,'c609f9047b28d407102d5c7b154d8bd9','OLAMIDE','AYOMIDE','ABASS','07084276287','student','active',1,NULL,NULL,'776','2024-07-05 06:03:06','2024-07-05 06:03:06'),
(10,'yusuffdanjuma3@gmail.com',NULL,'1dbffa1999a21ac3b6d0679c926ded7f','DANJUMA',NULL,'YUSUFF','09168131038','student','active',1,NULL,NULL,'777','2024-07-05 06:06:44','2024-07-05 06:06:44'),
(11,'oquadri158@gmail.com',NULL,'f086ba839d52296320d86c527b7ddd50','QUADRI','OLAMIDE','YEKEEN','08082218948','student','active',1,NULL,NULL,'778','2024-07-05 06:11:38','2024-07-05 06:11:38'),
(12,'akanbizainab06@gmail.com',NULL,'535c488fa670b133ca1a24150470ee08','ZAINAB','AYOKA','AKANBI','08082622280','student','active',1,NULL,NULL,'780','2024-07-05 06:47:24','2024-07-05 06:47:24'),
(13,'iyanuoluwaakinola53@gmail.com',NULL,'8cd23918837208d9e9be69f027c71447','IYANUOLUWA','RUTH','AKINOLA','08104005511','student','active',1,NULL,NULL,'781','2024-07-05 06:50:32','2024-07-05 06:50:32'),
(14,'omoladeo919@gmail.com',NULL,'46f381ff623a19c1e29b30c4bc7634ab','OMOLADE','ESTHER','AGBOADE','09112553898','student','active',1,NULL,NULL,'782','2024-07-05 06:56:56','2024-07-05 06:56:56'),
(15,'olamideoreofe957@gmail.com',NULL,'39b54d78c2eea40215d85ab964bafcd3','OLAMIDE','GRACE','IYIOLA','09014013976','student','active',1,NULL,NULL,'783','2024-07-05 07:00:39','2024-07-05 07:00:39'),
(16,'horlaritan494@gmail.com',NULL,'673b084d70cca5b2a978b33a4f6ce47c','AISHAT','OLAITAN','MAYELOYE','09134947947','student','active',1,NULL,NULL,'784','2024-07-05 07:04:53','2024-07-05 07:04:53'),
(17,'adekanyeoreoluwa5@gmail.com',NULL,'f14842ca8035c737eb799b4679efa11c','OREOLUWA','OLAMIDE','ADEKANYE','08027687617','student','active',1,NULL,NULL,'785','2024-07-05 07:13:19','2024-07-05 07:13:19'),
(18,'zainabwasiu253@gmail.com',NULL,'ce3805bb82f308678c4a8519034415ec','ZAINAB','OLAMIDE','WASIU','07033570710','student','active',1,NULL,NULL,'786','2024-07-05 07:30:25','2024-07-05 07:30:25'),
(19,'johnebkenah@gmail.com',NULL,'e2577c04131c5b0c7e7580f978322b31','EBIKENAH','RITA','JOHN','09105543319','student','active',1,NULL,NULL,'787','2024-07-05 07:33:09','2024-07-05 07:33:09'),
(20,'oluwafemifaith840@gmail.com',NULL,'cdaf311872b3e6b08b71d6d0e1fe0f5f','FAITH','PRAISE','OLUWAFEMI','09166980646','student','active',1,NULL,NULL,'788','2024-07-05 07:38:06','2024-07-05 07:38:06'),
(21,'adeoyetolulope9@gmail.com',NULL,'3a1be8d4902aa74d13d15122a3163f75','TOLULOPE','MARY','ADEOYE','08137313478','student','active',1,NULL,NULL,'789','2024-07-05 08:18:58','2024-07-05 08:18:58'),
(22,'adekanmbivictoria8@gmail.com',NULL,'7b526997084712b30f89a467ff1126e6','VICTORIA','AYOBAMI','ADEKANMBI','08067108317','student','active',1,NULL,NULL,'790','2024-07-05 08:22:53','2024-07-05 08:22:53'),
(23,'preciousadesewa64@gmail.com',NULL,'329d97240bf8f732921b8e748720d2ba','ADESEWA','PRECIOUS','OGUNTUNDE','07041130554','student','active',1,NULL,NULL,'791','2024-07-05 08:29:46','2024-07-05 08:29:46'),
(24,'adeolaemayoajoke@gmail.com',NULL,'0a516695535c0f196374b99fd8824986','AJOKE','ADEOLA','EMAYO','09128492205','student','active',1,NULL,NULL,'792','2024-07-05 08:32:17','2024-07-05 08:32:17'),
(25,'odunyemioluwadamilolarebecca@gmail.com',NULL,'0ce1a9350b7d007004aa6126ea8f2f88','OLUWADAMILOLA','REBECCA','ODUNYEMI','08077628604','student','active',1,NULL,NULL,'793','2024-07-05 08:35:53','2024-07-05 08:35:53'),
(26,'omotosoesther69@gmail.com',NULL,'ef80832f64999bac9149bc557091d8a4','ESTHER','OLUWAKEMI','OMOTOSO','08166089187','student','active',1,NULL,NULL,'795','2024-07-09 05:46:36','2024-07-09 05:46:36'),
(27,'omolayoidayat5@gmail.com',NULL,'73c4b034200b6282483d924c16dfcba4','IDAYAT','OMOLAYO','JIMOH','07066028842','student','active',1,NULL,NULL,'796','2024-07-09 05:50:29','2024-07-09 05:50:29'),
(28,'oladipupoomolabake202@gmail.com',NULL,'9b4a4ee5e90452d8eb9b57d4323c8f72','OMOLABAKE','OLAMIPOSI','AWOGOKE','08162875130','student','active',1,NULL,NULL,'797','2024-07-09 05:56:02','2024-07-09 05:56:02'),
(29,'samtosin275@gmail.com',NULL,'e2159cfc1d95dfd8de29c7503d792191','MOSUNMOLA',NULL,'IBRAHIM','07050915001','student','active',1,NULL,NULL,'798','2024-07-09 05:59:34','2024-07-09 05:59:34'),
(30,'damilolaprecious31@gmail.com',NULL,'4c6d4d819a5425ebc4a9a97ad86e075c','DAMILOLA','PRECIOUS','FASESIN','09168069145','student','active',1,NULL,NULL,'799','2024-07-09 06:03:01','2024-07-09 06:03:01'),
(31,'ebimohugemoboere2024@gmail.com',NULL,'b510054f856a845396ac03e28284be2a','UGEMOBOERE','MERCY','EBIMOH','07043956552','student','active',1,NULL,NULL,'800','2024-07-09 06:06:18','2024-07-09 06:06:18'),
(32,'gloryakpojotor840@gmail.com',NULL,'0368fd918a64005c9b59bc30fc8627f7','GLORY','FERANMI','AKPOJOTOR','09153412319','student','active',1,NULL,NULL,'802','2024-07-12 07:17:35','2024-07-12 07:17:35'),
(33,'pamilerinayoadeniyi@gmail.com',NULL,'e8518d3c2f109b54330646ca377b13c5','OLUWAPAMILERINAYO','DEBORAH','ADENIYI','09037488730','student','active',1,NULL,NULL,'803','2024-07-12 07:26:04','2024-07-12 07:26:04'),
(34,'blessinglinda780@gmail.com',NULL,'83e04e5bdee9a2b3400e4d744e480e06','LINDA','BLESSING','EMMANUEL','08163557993','student','active',1,NULL,NULL,'804','2024-07-12 07:53:25','2024-07-12 07:53:25'),
(35,'daudaoluwafemi1@gmail.com',NULL,'7d421e1774767cac4ebbf82acfdfbbf0','DAUDA','OLUWAFEMI','MUKAILA','09037007098','student','active',1,NULL,NULL,'805','2024-07-15 05:06:13','2024-07-15 05:06:13'),
(36,'davisgolden131@gmail.com',NULL,'887031e5313ac60d7019d55d160ed2c0','KESIANAH','TRACY','IDEBE','07018695875','student','active',1,NULL,NULL,'806','2024-07-15 05:09:45','2024-07-15 05:09:45'),
(37,'lawaloyindamola918@gmail.com',NULL,'247e081462a43b070e2b540c477d78fd','ELIZABETH','OYINDAMOLA','LAWAL','08131991451','student','active',1,NULL,NULL,'808','2024-07-16 04:52:33','2024-07-16 04:52:33'),
(38,'yisakoasa064@gmail.com',NULL,'8a6bf33b6f30a52249a5e78546bdd767','KAOSARA','AMOKE','YISA','09131547862','student','active',1,NULL,NULL,'809','2024-07-16 05:00:21','2024-07-16 05:00:21'),
(39,'johnsonogunsanya5@gmail.com',NULL,'86af522f07e95ed470ffca0951aa7795','TOBILOBA','JOHNSON','OGUNSANYA','08164370256','student','active',1,NULL,NULL,'810','2024-07-16 05:35:48','2024-07-16 05:35:48'),
(40,'akinbulujeb@gmail.com',NULL,'aca4ddc3d93629ae3bb5b7dc782b8905','BLESSING','DAMILOLA','AKINBULUJE','08141927360','student','active',1,NULL,NULL,'811','2024-07-16 05:43:24','2024-07-16 05:43:24'),
(41,'damilolaoladosu61@gmail.com',NULL,'de0e7273e362792a5e741679de150d09','DAMILOLA','MARVELOUS','OLADOSU','07036819587','student','active',1,NULL,NULL,'812','2024-07-16 05:47:03','2024-07-16 05:47:03'),
(42,'oluwakemisolarukayat@gmail.com',NULL,'2032175892ae0a883854656a31afb88a','OLUWAKEMISOLA','RUKAYAT','USMAN','07026403085','student','active',1,NULL,NULL,'813','2024-07-16 05:51:16','2024-07-16 05:51:16'),
(43,'ebidubagharebecca@gmail.com',NULL,'97f04bcb65e4e50aed0875df09d47794','EBIDUBAGHA','REBECCA','BOY','09054148892','student','active',1,NULL,NULL,'814','2024-07-16 05:57:45','2024-07-16 05:57:45'),
(44,'legacy-815@legacy.invalid',NULL,'4b24782e0cc12c9333dff35f890b338d','SUNDAY Yyy','FELICIA','GGGHH','08055021550','student','active',1,NULL,NULL,'815','2024-07-17 14:41:27','2024-07-17 14:41:27'),
(45,'ogundejivictoriaayomide@gmail.com',NULL,'0497944ee8645f53f7fa3b49e74e0c80','VICTORIA','AYOMIDE','OGUNDEJI','09150984070','student','active',1,NULL,NULL,'817','2024-07-19 07:31:42','2024-07-19 07:31:42'),
(46,'taiwotimileyin78@gmail.com',NULL,'0863acb1953eddf83ba9d577e4c4811d','TAIWO','TIMILEYIN','JAYEOLA','09159944384','student','active',1,NULL,NULL,'818','2024-07-23 04:38:54','2024-07-23 04:38:54'),
(47,'azeezqoyum469@gmail.com',NULL,'6b46cd907a4b92e603cbabe13707f1c5','QOYUM','ADISA','AZEEZ','08114480505','student','active',1,NULL,NULL,'819','2024-07-25 06:28:33','2024-07-25 06:28:33'),
(48,'tolulopetemidayo92@gmail.com',NULL,'85b8b8d47b0fa05e74374c361f9f0ee9','JUMOKE','TOLULOPE','TEMIDAYO','08168521837','student','active',1,NULL,NULL,'823','2024-08-02 07:11:32','2024-08-02 07:11:32'),
(49,'adewuyiademi2018@gmail.com',NULL,'cdff09356f4f1b52be49627d07940584','ADEWUMI','STELLA','ADEWUYI','08148418693','student','active',1,NULL,NULL,'824','2024-08-15 06:38:18','2024-08-15 06:38:18'),
(50,'jamesmathewissa@gmail.com',NULL,'b5aa0cca258088a3a59ab6d0dc62f882','MATHEW','ISSA','JAMES','08100129286','student','active',1,NULL,NULL,'825','2024-08-19 04:55:20','2024-08-19 04:55:20'),
(51,'emmanuelayo989@gmail.com',NULL,'83e04e5bdee9a2b3400e4d744e480e06','AYOMIDE','ZACCHEUS','EMMANUEL','09036949617','student','active',1,NULL,NULL,'826','2024-08-19 04:58:18','2024-08-19 04:58:18'),
(52,'ej5832548@gmail.com',NULL,'e2577c04131c5b0c7e7580f978322b31','ELIZABETH','MIRACLE','JOHN','08162755135','student','active',1,NULL,NULL,'827','2024-08-21 06:22:58','2024-08-21 06:22:58'),
(53,'ronaldbrassfield003@gmail.com',NULL,'e6dbf4469b1b799030dd3b048c648fd6','MALIK','AYOFE','FODRULLAHI','08145432463','student','active',1,NULL,NULL,'829','2024-09-04 05:51:47','2024-09-04 05:51:47'),
(54,'oifasunmibola@gmail.com',NULL,'3b1c89c03863fd1b7bd2ba92c26f1af1','IFASUNMIBOLA','AJIKE','OLADEJO','09033353370','student','active',1,NULL,NULL,'832','2024-11-05 04:50:54','2024-11-05 04:50:54'),
(55,'blessingoladewa8@gmail.com',NULL,'a8fd02276954f6781842eb66400376f3','BLESSING','ENIOLA','OLADEWA','08125256148','student','active',1,NULL,NULL,'833','2024-11-05 05:02:26','2024-11-05 05:02:26'),
(56,'opeoluwas488@gmail.com',NULL,'ff2770790a48c088e52a6f746699651a','OPEOLUWA','ABOSEDE','SALIU','07016847596','student','active',1,NULL,NULL,'834','2024-11-05 05:07:04','2024-11-05 05:07:04'),
(57,'oluwatobiowomitola@gmail.com',NULL,'688c12324bacc1aa9db0908b6fc0e0bf','OLUWATOBI','EUNICE','OWOMITOLA','08028222601','student','active',1,NULL,NULL,'835','2024-11-05 05:11:08','2024-11-05 05:11:08'),
(58,'yusufaishat403@gmail.com',NULL,'e565ea2e2d400b6461382ca1fce17391','AISHAT','OLUWADAMILOLA','YUSUF','07063248532','student','active',1,NULL,NULL,'836','2024-11-05 05:15:14','2024-11-05 05:15:14'),
(59,'tomilolaphilip@gmail.com',NULL,'1814344e922d48b17ef71efa6133d53a','DEBORAH','TOMILOLA','PHILIP','08084903843','student','active',1,NULL,NULL,'837','2024-11-05 05:18:25','2024-11-05 05:18:25'),
(60,'olamiposia702@gmail.com',NULL,'34043954b0bba5901992657e04dda312','IYANUOLUWA','OLAMIPOSI','ADEBAYO','09049489798','student','active',1,NULL,NULL,'838','2024-11-05 05:21:53','2024-11-05 05:21:53'),
(61,'kehindeoloyede810@gmail.com',NULL,'ce8b99e13f73c9984fef8640f69c0d99','KEHINDE','PETER','OLOYEDE','09043012604','student','active',1,NULL,NULL,'839','2024-11-05 05:25:52','2024-11-05 05:25:52'),
(62,'lovedarreloluwasola@gmail.com',NULL,'3d642b83159e59ea6f05e767d77d4c5d','MIRACLE','LOVEDARREL','OLUWASOLA','07067693898','student','active',1,NULL,NULL,'840','2024-11-05 05:28:53','2024-11-05 05:28:53'),
(63,'rukayatajokedikrullahi3890@gmail.com',NULL,'e735fc17691c931c7da12172fd6c0726','RUKAYAT','AJOKE','DIKRUILAHI','07082092469','student','active',1,NULL,NULL,'841','2024-11-05 05:36:51','2024-11-05 05:36:51'),
(64,'wojuolaabigeal4@gmail.com',NULL,'786dd44e7691de3fd98f2bed32da793e','ABIGEAL','IYANU','WOJUOLA','08117094672','student','active',1,NULL,NULL,'842','2024-11-05 05:40:47','2024-11-05 05:40:47'),
(65,'rhodaademiju@gmail.com',NULL,'7c77bdd4418c5766cfd23ac0ae35f94a','RHODA','ADEOLA','ADEMIJU','08140705677','student','active',1,NULL,NULL,'843','2024-11-05 05:43:47','2024-11-05 05:43:47'),
(66,'ayomideisadare16@gmail.com',NULL,'7da0265404e57bb91c1e466d86226dc9','AYOMIDE','CHINOYE','ISADARE','08127088792','student','active',1,NULL,NULL,'844','2024-11-05 05:47:03','2024-11-05 05:47:03'),
(67,'taofikatajayi3@gmail.com',NULL,'f1b20b0fb7bd022772a30efa391f9595','TAOFIKAT','OYINKANSOLA','AJAYI','07016794113','student','active',1,NULL,NULL,'845','2024-11-05 05:49:26','2024-11-05 05:49:26'),
(68,'adesewaadesina079@gmail.com',NULL,'aa8cb6b1ca3f208d2c4af4bf96b427da','OGOMITAN','VICTORIA','ADESINA','09072061997','student','active',1,NULL,NULL,'846','2024-11-05 05:52:42','2024-11-05 05:52:42'),
(69,'ookanolatomiwa@gmail.com',NULL,'5e620bae369c0c99dfe01256e74ecaaf','ROKIBAT','OLATOMIWA','OOKANOLA','07040650945','student','active',1,NULL,NULL,'847','2024-11-05 05:56:55','2024-11-05 05:56:55'),
(70,'adefisolafalaye@gmail.com',NULL,'84be46f58f3ed2b4bfeb1eddbce40a43','RACHEAL','IYANUOLUWA','FALAYE','08148760451','student','active',1,NULL,NULL,'848','2024-11-05 06:17:01','2024-11-05 06:17:01'),
(71,'odunayomoyioluwa32@gmail.com',NULL,'bc88b8b86abd5391074f8c608c941865','ODUNAYO','MOYILOLUWA','FALODUN','08148397487','student','active',1,NULL,NULL,'849','2024-11-05 06:38:59','2024-11-05 06:38:59'),
(72,'olorunmotaanslem@gmail.com',NULL,'5661948daa383bd67bb964313b75c469','ANSLEM','OLUWAFEMI','OLORUNMOTA','09049804482','student','active',1,NULL,NULL,'850','2024-11-05 06:49:05','2024-11-05 06:49:05'),
(73,'wasilatfolasa@gmail.com',NULL,'42bbd3a54f1db4f7f279be3b5b587692','WASILAT','FOLASADE','ADERIBIGBE','09017306738','student','active',1,NULL,NULL,'851','2024-11-05 07:04:22','2024-11-05 07:04:22'),
(74,'philiptyom@gmail.com',NULL,'0df829b4bd812b10e0ff0288f671be6d','PHILIP','TYOM','PAUL','09128235284','student','active',1,NULL,NULL,'852','2024-11-05 07:10:20','2024-11-05 07:10:20'),
(75,'obisamit05@gmail.com',NULL,'ffa145b70266d76181a5a5b19824dd55','DORCAS','OMOLABAKE','OBISAMI','08151905073','student','active',1,NULL,NULL,'853','2024-11-05 07:13:48','2024-11-05 07:13:48'),
(76,'adebisipeace34@gmail.com',NULL,'6a5cba0fb0d6a009951c8d087132d5ee','PEACE','OLUWAKEMI','ADEBISI','08145036842','student','active',1,NULL,NULL,'854','2024-11-05 07:18:17','2024-11-05 07:18:17'),
(77,'ayomideaderinola58@gmail.com',NULL,'cedde9db50c7409e498db131e402743d','AYOMIDE','JOSHUA','ADERINOLA','08166818500','student','active',1,NULL,NULL,'855','2024-11-05 07:36:17','2024-11-05 07:36:17'),
(78,'mosesodunayomide365@gmail.com',NULL,'7490101329effc8657f4c0dd190dc875','LYDIA','ODUNAYOMIDE','ADEWALE','09028671273','student','active',1,NULL,NULL,'856','2024-11-11 04:48:28','2024-11-11 04:48:28'),
(79,'loresemi866@gmail.com',NULL,'485c0d1180024db3c8a1eecafc61ab3e','SEMILORE','ANUOLUWAPO','ERINLE','07059253059','student','active',1,NULL,NULL,'857','2024-11-11 04:51:20','2024-11-11 04:51:20'),
(80,'adigunokikiola640@gmail.com',NULL,'3045b1c1a3396ff1c54358b825904b9f','OKIKIOLA','MARIAM','ADIGUN','08126008429','student','active',1,NULL,NULL,'858','2024-11-11 04:54:30','2024-11-11 04:54:30'),
(81,'azeezato488@gmail.com',NULL,'58028a776ffe7b6c154b18a5d09ddbed','AZEEZAT','ENIOLA','HASSAN','09027308755','student','active',1,NULL,NULL,'859','2024-11-11 04:58:00','2024-11-11 04:58:00'),
(82,'abikeajiboye48@gmail.com',NULL,'58055394ba651d100dbff12fd83177a4','OYINDAMOLA','ISLAMIYAT','AJIBOYE','09014100098','student','active',1,NULL,NULL,'860','2024-11-11 05:01:32','2024-11-11 05:01:32'),
(83,'akoredenaimot1@gmail.com',NULL,'a87c73a5661df4fa28b0cd3f38d9a636','NAIMOT','OYINDAMOLA','AKOREDE','09162525329','student','active',1,NULL,NULL,'861','2024-11-11 05:04:42','2024-11-11 05:04:42'),
(84,'taiwobolatito24@gmail.com',NULL,'a973b5a3b36417d2cbbed204a1e2c8c6','BOLATITO','JULIANA','TAIWO','09168048693','student','active',1,NULL,NULL,'862','2024-11-11 05:07:55','2024-11-11 05:07:55'),
(85,'obadaraomotayo@gmail.com',NULL,'53b421a7106aa3538b3c259cf4e2ba23','TAIWO','OMOTAYO','OBADARA','09019501552','student','active',1,NULL,NULL,'863','2024-11-11 05:11:57','2024-11-11 05:11:57'),
(86,'agbeleshebukola@gmail.com',NULL,'604ec5f13bb2fa7282bdd925b8fbfb66','CHRISTIANAH','BUKOLA','AGBELESHE','08145786401','student','active',1,NULL,NULL,'864','2024-11-11 05:18:24','2024-11-11 05:18:24'),
(87,'ps4787924@gmail.com',NULL,'19143662ad792d2980630566571b82f6','PRECIOUS','CHIDIMMA','STEPHEN','09012905370','student','active',1,NULL,NULL,'866','2024-11-11 05:21:49','2024-11-11 05:21:49'),
(88,'ademidea353@gmail.com',NULL,'bbacf3728145ff4ac70bf3912ac1904a','BOLUWATIFE','ELIZABETH','ADELEKE','09069700279','student','active',1,NULL,NULL,'867','2024-11-11 05:24:38','2024-11-11 05:24:38'),
(89,'abbeyakinwumi93@gmail.com',NULL,'3edf94d45c7d4a2037c5be11e15f170b','BOLUWATIFE','OLAJUMOKE','AKINWUMI','09137040926','student','active',1,NULL,NULL,'868','2024-11-11 05:26:17','2024-11-11 05:26:17'),
(90,'ilelaboyeabiodun4@gmail.com',NULL,'b4debfd8d7ba65031d2dcaefe5062688','ABIODUN','IKEOLA','ILELABOYE','08032212318','student','active',1,NULL,NULL,'869','2024-11-11 05:27:51','2024-11-11 05:27:51'),
(91,'emeldaenyam@gmail.com',NULL,'48c0cdcb0387af0413d9e185aa2e9e09','EMELDA','LOUIS','ENYAM','08026906003','student','active',1,NULL,NULL,'870','2024-11-11 05:29:44','2024-11-11 05:29:44'),
(92,'maryodegbaro75@gmail.com',NULL,'2c4a540992c75b23542b8853db342c00','MARY','ADESEWA','ODEGBARO','08106729534','student','active',1,NULL,NULL,'871','2024-11-11 05:32:16','2024-11-11 05:32:16'),
(93,'funmilayonofisat314@gmail.com',NULL,'109f867ea7883c9de5f22390d463d01d','NOFISAT','FUNMILAYO','RAJI','07016795026','student','active',1,NULL,NULL,'872','2024-11-11 05:35:12','2024-11-11 05:35:12'),
(94,'itunuoluwaegbebiyi@gmail.com',NULL,'3d160bc76d6f79c3de4b79adc7f7c0dd','ITUNUOLUWA','ABIGEAL','EGBEBIYI','08026112257','student','active',1,NULL,NULL,'873','2024-11-11 05:41:48','2024-11-11 05:41:48'),
(95,'olaadeyanju0607@gmail.com',NULL,'387bdf01db386e259ef1cc7185c59e77','OLAMIDE','OLUWASEUN','ADEYANJU','08161142506','student','active',1,NULL,NULL,'874','2024-11-11 05:45:02','2024-11-11 05:45:02'),
(96,'rajisofiat59@gmail.com',NULL,'109f867ea7883c9de5f22390d463d01d','SOFIAT',NULL,'RAJI','07088321550','student','active',1,NULL,NULL,'875','2024-11-11 05:55:46','2024-11-11 05:55:46'),
(97,'temitopesteven883@gmail.com',NULL,'9604fe0c1c7f5dfa638e5acd9d2bf80c','STEPHEN','GBOYEGA','TEMITOPE','09132620155','student','active',1,NULL,NULL,'876','2024-11-11 06:01:09','2024-11-11 06:01:09'),
(98,'tobilobaadeshina749@gmail.com',NULL,'11882f091ee6ebfcaaf623e08b2329be','TOBILOLA','BASIT','ADESHINA','07042120598','student','active',1,NULL,NULL,'878','2024-11-11 06:08:08','2024-11-11 06:08:08'),
(99,'oladunniadeosun45@gmail.com',NULL,'0036dda43bacc473e45b425b4d4cdd3a','OPEYEMI','SHERIFAT','ADEOSUN','07064250727','student','active',1,NULL,NULL,'879','2024-11-11 06:10:49','2024-11-11 06:10:49'),
(100,'ayomideadeniyi316@gmail.com',NULL,'e8518d3c2f109b54330646ca377b13c5','AYOMIDE','TITI','ADENIYI','09021899619','student','active',1,NULL,NULL,'880','2024-11-11 06:13:38','2024-11-11 06:13:38'),
(101,'idrismorufat378@gmail.com',NULL,'3c68f380bcf2394036fbab681637c8bf','MORUFAT','OLAMIDE','IDRIS','09072761347','student','active',1,NULL,NULL,'881','2024-11-11 06:16:44','2024-11-11 06:16:44'),
(102,'florenceoluwamooto@gmail.com',NULL,'8425bb0f23aefba22c3ff7d1fb62f77e','FLORENCE','KIMOSEGHAN','OLUWAMOOTO','07050784818','student','active',1,NULL,NULL,'882','2024-11-11 06:20:56','2024-11-11 06:20:56'),
(103,'oluwafisayoolajide725@gmail.com',NULL,'21bb5c0da9c273b1712ea25b954a4027','AHISAT','OLUWAFISAYO','OLAJIDE','09130882583','student','active',1,NULL,NULL,'883','2024-11-11 06:23:42','2024-11-11 06:23:42'),
(104,'bamideleifeoluwa200@gmail.com',NULL,'d460f07638d7918933db69715ea91836','IFEOLUWA',NULL,'BAMIDELE','09168223514','student','active',1,NULL,NULL,'884','2024-11-11 06:34:09','2024-11-11 06:34:09'),
(105,'adeoyeblessing11@gmail.com',NULL,'3a1be8d4902aa74d13d15122a3163f75','BLESSING','MARY','ADEOYE','08104748511','student','active',1,NULL,NULL,'885','2024-11-12 04:00:57','2024-11-12 04:00:57'),
(106,'ehinmisanopeyemi7@gmail.com',NULL,'278b960aa536337acd322720f751cca3','OPEYEMI','COMFORT','EHINMISAN','08083453601','student','active',1,NULL,NULL,'886','2024-11-18 08:44:41','2024-11-18 08:44:41'),
(107,'oluwanifemichidera@gmail.com',NULL,'7cbe156a8b74fbc79ba0d69233dba7b8','CHIDERA','OLUWANIFEMI','OGUNTIMEHIN','09064443794','student','active',1,NULL,NULL,'887','2024-11-18 08:49:28','2024-11-18 08:49:28'),
(108,'folakemiibrahim2024@gmail.com',NULL,'e2159cfc1d95dfd8de29c7503d792191','FOLAKEMI','BARAKAT','IBRAHIM','08037669868','student','active',1,NULL,NULL,'888','2024-11-19 05:56:41','2024-11-19 05:56:41'),
(109,'olayemioluwafemi571@gmail.com',NULL,'cdaf311872b3e6b08b71d6d0e1fe0f5f','OLAYEMI','MAYOWA','OLUWAFEMI','09164089187','student','active',1,NULL,NULL,'889','2024-11-19 06:07:07','2024-11-19 06:07:07'),
(110,'akiramatadunni@gmail.com',NULL,'5b0cca98b0c1a1591de477e45c4bd17c','AKIRAMAT','OYEMOMILARA','OYELERE','08114204839','student','active',1,NULL,NULL,'890','2024-11-19 06:51:35','2024-11-19 06:51:35'),
(111,'ephraimife61@gmail.com',NULL,'ea35e0d353e21e7e8d4f902ac5eb7fb6','ESTHER','IFEOLUWA','EPHRAIM','09059103803','student','active',1,NULL,NULL,'891','2024-11-19 06:56:03','2024-11-19 06:56:03'),
(112,'dolapokolawole445@gmail.com',NULL,'9dbcdc4a7b12013a8da2168aeb4e1e2d','TAWAKALITU','OMODOLAPO','KOLAWOLE','09041602568','student','active',1,NULL,NULL,'892','2024-11-19 08:14:06','2024-11-19 08:14:06'),
(113,'mojielugbadebo@gmail.com',NULL,'dde6a607db5fb60fa4606125c863432a','MOJISOLA','ASAKE','ELUGBADEBO','08037270628','student','active',1,NULL,NULL,'893','2024-11-20 05:41:53','2024-11-20 05:41:53'),
(114,'iyiolaolusola63@gmail.com',NULL,'39b54d78c2eea40215d85ab964bafcd3','ROSELINE','OLUSOLA','IYIOLA','07010154025','student','active',1,NULL,NULL,'894','2024-11-20 06:17:00','2024-11-20 06:17:00'),
(115,'omisadeolayemi@gmail.com',NULL,'1060f1cc14d151e67a0a1238950b1046','OLAYEMI','FAVOUR','OMISADE','08152527432','student','active',1,NULL,NULL,'898','2025-04-16 07:52:03','2025-04-16 07:52:03'),
(116,'kareemrafiu45@gmail.com',NULL,'d9b24d04d67b2329e771891ed2817409','RAFIU','ADETUNJI','KAREEM','07032969294','student','active',1,NULL,NULL,'899','2025-04-16 08:13:05','2025-04-16 08:13:05'),
(117,'benardj426@gmail.com',NULL,'4c3ab77cd42a3988a4352f37ae647809','BENARD','GODWIN','JOSEPH','07015627098','student','active',1,NULL,NULL,'900','2025-04-16 08:18:27','2025-04-16 08:18:27'),
(118,'samuelpraiseboluwatife2004@gmail.com',NULL,'3f875e1092255847ad4d5a049d1ea3c5','PRAISE','BOLUWATIFE','SAMUEL','09029311816','student','active',1,NULL,NULL,'901','2025-04-16 08:22:23','2025-04-16 08:22:23'),
(119,'adesubokanayoleyielizabeth@gmail.com',NULL,'08ddc9bebb8724c9947cdbc5720b1316','AYOLEYI','ELIZABETH','ADESUBOKAN','09152451347','student','active',1,NULL,NULL,'902','2025-04-16 08:25:24','2025-04-16 08:25:24'),
(120,'oyindamolaajila1@gmail.com',NULL,'2796c12b712d1fb484a1076132983a52','OLUWADUNSIN','BOLUWATIFE','AJILA','07076503679','student','active',1,NULL,NULL,'903','2025-04-16 08:28:55','2025-04-16 08:28:55'),
(121,'gracefaramade34@gmail.com',NULL,'f2a0308d68e616323fe2a8c97e2f811e','GRACE','ADEBIMPE','FARAMADE','07012121190','student','active',1,NULL,NULL,'904','2025-04-16 08:31:27','2025-04-16 08:31:27'),
(122,'oyetunjitaiwo017@gmail.com',NULL,'498ac828cb199f9ff319c80bfcd89837','MUHEEBAH','TAIWO','OYETUNJI','09050832683','student','active',1,NULL,NULL,'905','2025-04-16 08:34:26','2025-04-16 08:34:26'),
(123,'deborahayomide854@gmail.com',NULL,'86af522f07e95ed470ffca0951aa7795','DEBORAH','OLUWABUNMI','OGUNSANYA','08124430614','student','active',1,NULL,NULL,'906','2025-04-16 08:35:04','2025-04-16 08:35:04'),
(124,'motunrayoajao11@gmail.com',NULL,'48f47063ea3c53eabd021df476ed10be','HAFSOH','MOTUNRAYO','AJAO','09135564513','student','active',1,NULL,NULL,'907','2025-04-16 08:38:23','2025-04-16 08:38:23'),
(125,'adesinabukalo20@gmail.com',NULL,'3b1d9eac1030af5dd0b3629e1dbfe6b4','BUKOLA','OLADUNNI','ADESHINA','07054457175','student','active',1,NULL,NULL,'908','2025-04-16 08:42:04','2025-04-16 08:42:04'),
(126,'lizzyadewumi323@gmail.com',NULL,'1bbaedbe57b57a57a9d0b885affa1739','MAYOWA','ELIZABETH','OGUNDARE','07070368944','student','active',1,NULL,NULL,'909','2025-04-16 08:43:32','2025-04-16 08:43:32'),
(127,'arogundaderuth@gmail.com',NULL,'4c4aa9cdacd95df785e2a7b11435c347','RUTH','PELUMI','AROGUNDADE','07063033771','student','active',1,NULL,NULL,'910','2025-04-16 08:44:50','2025-04-16 08:44:50'),
(128,'victoriaoyesola4@gmail.com',NULL,'5225d7e96fccaae73f08ef9a922968d5','VICTORIA','ADEBUKOLA','OYESOLA','07010420903','student','active',1,NULL,NULL,'911','2025-04-16 08:47:29','2025-04-16 08:47:29'),
(129,'dundaysaulina12@gmail.com',NULL,'95fa12cb2100ce7081b71f7c44bc12a5','PAULINA','ESTHER','SUNDAY','09078335884','student','active',1,NULL,NULL,'912','2025-04-16 08:47:29','2025-04-16 08:47:29'),
(130,'dorcasoluwapamilerinayo9@gmail.com',NULL,'a017fe0dfb38b47d7cab0e09b76f7d06','OLOLADE','DORCAS','OLAWOLE','08160156321','student','active',1,NULL,NULL,'913','2025-04-16 08:50:30','2025-04-16 08:50:30'),
(131,'olaniyiayomidechristiana@gmail.com',NULL,'57d3118545ab7996d71157d1206aa510','AYOMIDE','CHRISTIANAH','OLANIYI','09159866218','student','active',1,NULL,NULL,'914','2025-04-16 08:51:30','2025-04-16 08:51:30'),
(132,'modupeadesewa090@gmail.com',NULL,'cc38fe15781cff5cf4d3532b4df5cef5','MODUPE','ADESEWA','ADELANA','08035743032','student','active',1,NULL,NULL,'915','2025-04-16 08:53:39','2025-04-16 08:53:39'),
(133,'gabrielabigail429@gmail.com',NULL,'96db69b0fff794de363fbb73929ac604','ABIGAIL','OYAMA','GABRIEL','09074602368','student','active',1,NULL,NULL,'916','2025-04-16 08:54:13','2025-04-16 08:54:13'),
(134,'ayomide2474@gmail.com',NULL,'ce81ba5022419a3721d3be31d976ccb9','ALIMOT','AYOMIDE','ISIAKA','07048184758','student','active',1,NULL,NULL,'917','2025-04-16 08:56:34','2025-04-16 08:56:34'),
(135,'aliuzainabadewumi@gmail.com',NULL,'fc8e4bfb3ed488e43fb8e1aae0490b4a','ZAINAB','ADEWUMI','ALIU','09125060179','student','active',1,NULL,NULL,'918','2025-04-16 08:57:54','2025-04-16 08:57:54'),
(136,'johnegwu39@gmail.com',NULL,'036be171dc0f2f5f51c6e5b24e58eed2','EGWU','JOHN','UGOCHUKWU','08164733896','student','active',1,NULL,NULL,'919','2025-04-16 08:59:27','2025-04-16 08:59:27'),
(137,'olafareayomide788@gmail.com',NULL,'2c2e99ac7848f26dc643fa032c36090c','AYOMIDE','BLESSING','OLAFARE','09130050530','student','active',1,NULL,NULL,'920','2025-04-16 09:00:19','2025-04-16 09:00:19'),
(138,'lamidikehindeblessing539@gmail.com',NULL,'c49d7f918b648ce2412985c6cae58e0b','KEHINDE','BLESSING','LAMIDI','09030651222','student','active',1,NULL,NULL,'921','2025-04-16 09:02:04','2025-04-16 09:02:04'),
(139,'elempefathia@gmail.com',NULL,'e671816131d8023dd2e878361f50be53','FATHIA','AYOMIDE','ELEMPE','08121915401','student','active',1,NULL,NULL,'922','2025-04-16 09:03:17','2025-04-16 09:03:17'),
(140,'olanrewajui474@gmail.com',NULL,'17606edf446dc11fb1d251bcd56bc99a','IFEOLUWA','JANET','OLANREWAJU','08155713978','student','active',1,NULL,NULL,'923','2025-04-16 09:05:16','2025-04-16 09:05:16'),
(141,'happinessiyanoye@gmail.com',NULL,'5f972b2c1424292583fc41650127ade8','AYOMIKUN','JOY','IYANOYE','08110273589','student','active',1,NULL,NULL,'924','2025-04-16 09:06:19','2025-04-16 09:06:19'),
(142,'abdulramonislamiat989@gmail.com',NULL,'9476b215cd6c729cccb5da8541e10678','ISLAMIAT','OLARONKE','RAMON','09127498931','student','active',1,NULL,NULL,'925','2025-04-16 09:11:18','2025-04-16 09:11:18'),
(143,'arogboglory439@gmail.com',NULL,'d4cf455afc794dc39942dae62874194a','GLORY','OLUWAGBOHUNMI','AROGBO','07040358573','student','active',1,NULL,NULL,'926','2025-04-16 09:11:56','2025-04-16 09:11:56'),
(144,'adewolaadwmi860@gmail.com',NULL,'e2159cfc1d95dfd8de29c7503d792191','FATIMOH','AINA','IBRAHIM','09112782703','student','active',1,NULL,NULL,'927','2025-04-16 09:14:52','2025-04-16 09:14:52'),
(145,'bamigboyeadesewa68@gmail.com',NULL,'60095aa12f32d6fa68b54143d67baf98','ADESEWA','ADUNOLA','BAMIGBOYE','08028503680','student','active',1,NULL,NULL,'929','2025-04-16 09:18:38','2025-04-16 09:18:38'),
(146,'iyanuoluwaowoseni410@gmail.com',NULL,'3a32808779ec692008106a72008f43a8','VICTORIA','DEBORAH','OWOSENI','08137543167','student','active',1,NULL,NULL,'930','2025-04-16 09:22:26','2025-04-16 09:22:26'),
(147,'adeloduntemidayo4@gmail.com',NULL,'62bf8f719fec66b5dc5377735514e233','TEMIDAYO',NULL,'ADELODUN','07015383725','student','active',1,NULL,NULL,'931','2025-04-16 09:22:27','2025-04-16 09:22:27'),
(148,'olabodemary05@gmail.com',NULL,'9247c465f66c816652e6bf2335495ce3','ODUNAYO','MARY','OLABODE','09042135312','student','active',1,NULL,NULL,'932','2025-04-16 09:26:45','2025-04-16 09:26:45'),
(149,'aregbesolaracheal31@gmail.com',NULL,'c28d2c144ee8f8784f51812893a4a0b3','RACHEAL','ABIODUN','AREGBESOLA','09131965111','student','active',1,NULL,NULL,'933','2025-04-16 09:33:10','2025-04-16 09:33:10'),
(150,'adesileesther02@gmail.com',NULL,'b29a554770d3c70f7701e02038d7ca45','ESTHER','AANUOLUWAPO','ADESILE','09037426735','student','active',1,NULL,NULL,'934','2025-04-16 09:35:49','2025-04-16 09:35:49'),
(151,'afolabielizabetholuwafisayomi@gmail.com',NULL,'6cf8dcb54f871f4907405d06b13227b9','ELIZABETH','OLUWAFISAYOMI','AFOLABI','09021762815','student','active',1,NULL,NULL,'935','2025-04-16 09:39:55','2025-04-16 09:39:55'),
(152,'celestinahmakinde5@gmail.com',NULL,'4fa1dc76e73e5afed16ab3e2ad9580c7','CELESTINAH','ABOSEDE','MAKINDE','08023925672','student','active',1,NULL,NULL,'936','2025-04-16 09:43:31','2025-04-16 09:43:31'),
(153,'azeezroheemotabosede@gmail.com',NULL,'6b46cd907a4b92e603cbabe13707f1c5','ROHEEMOT','ABOSEDE','AZEEZ','09060890709','student','active',1,NULL,NULL,'937','2025-04-16 09:45:13','2025-04-16 09:45:13'),
(154,'oluwabukolaabiloro2@gmail.com',NULL,'33b28633e31be29d168c897767f88a10','OLUWANIFEMI','PRECIOUS','ABILORO','09034844918','student','active',1,NULL,NULL,'938','2025-04-16 09:46:16','2025-04-16 09:46:16'),
(155,'atoyebititilayo2001@gmail.com',NULL,'61b241cc55e7a18ba566c4c6ff780cb3','TITILAYO','PELUMI','ATOYEBI','07059696400','student','active',1,NULL,NULL,'939','2025-04-16 09:49:13','2025-04-16 09:49:13'),
(156,'tijanimariam397@gmail.com',NULL,'be54ad04e6a28c68b2e20a15a47a8168','MARIAM','TITILOPE','TIJANI','07043201925','student','active',1,NULL,NULL,'940','2025-04-16 09:51:15','2025-04-16 09:51:15'),
(157,'shittuflorencepeace2006@gmail.com',NULL,'414506d3f407d9f4266463d153c1a12e','FLORENCE','PEACE','SHITTU','07084450223','student','active',1,NULL,NULL,'941','2025-04-16 09:52:27','2025-04-16 09:52:27'),
(158,'odudelemary@gmail.com',NULL,'8be04082e852d59c3794213b8e082352','MARY','OLUWAPAMILERIN','ODUDELE','09136582039','student','active',1,NULL,NULL,'942','2025-04-16 09:56:25','2025-04-16 09:56:25'),
(159,'olufunkeoriowo6@gmail.com',NULL,'ad33170ace6dc9dd6e7f7d3f58258130','FUNKE','DORCAS','ORIOWO','08144199813','student','active',1,NULL,NULL,'944','2025-04-16 09:58:56','2025-04-16 09:58:56'),
(160,'olaniyanbolu09@gmail.com',NULL,'a3953d4fee7c54313a0b6d4898c6ebc0','BOLUWATIFE','JANET','OLANIYAN','08133726410','student','active',1,NULL,NULL,'945','2025-04-16 10:01:37','2025-04-16 10:01:37'),
(161,'adedayokikelomo76@gmail.com',NULL,'c28d2c144ee8f8784f51812893a4a0b3','KIKELOMO','IYANUOLUWA','AREGBESOLA','08160990279','student','active',1,NULL,NULL,'946','2025-04-16 10:01:53','2025-04-16 10:01:53'),
(162,'ifeoluwaakano22@gmail.com',NULL,'59da77f3496c5181872b72d08360c663','MARY','IFEOLUWA','AKANO','09037379729','student','active',1,NULL,NULL,'947','2025-04-16 10:04:25','2025-04-16 10:04:25'),
(163,'sakariyauaminat12@gmail.com',NULL,'f4f15753908f0b657a3318b53b68e198','AMINAT','OLANIKE','SAKARIYAU','08163822163','student','active',1,NULL,NULL,'948','2025-04-16 10:05:11','2025-04-16 10:05:11'),
(164,'israelomotayo19@gmail.com',NULL,'ebc9a9992d0232670ef0889acc850a41','ESTHER','OLUWAFOLAKEMI','ODUGBEMI','08166064333','student','active',1,NULL,NULL,'949','2025-04-16 10:07:31','2025-04-16 10:07:31'),
(165,'odetayosarah30@gmail.com',NULL,'3e99fdca28b8c4efdeff715c97708131','SARAH','ENE','ODETAYO','07050781472','student','active',1,NULL,NULL,'950','2025-04-16 10:09:51','2025-04-16 10:09:51'),
(166,'afolabiogoemi7@gmail.com',NULL,'6cf8dcb54f871f4907405d06b13227b9','ELIZABETH','OGOEMI','AFOLABI','08081251227','student','active',1,NULL,NULL,'951','2025-04-16 10:12:39','2025-04-16 10:12:39'),
(167,'adeyeye832@gmail.com',NULL,'8cd23918837208d9e9be69f027c71447','SUNDAY','AYOMIDE','AKINOLA','08100850194','student','active',1,NULL,NULL,'952','2025-04-18 08:06:33','2025-04-18 08:06:33'),
(168,'adetunjibisola59@gmail.com',NULL,'365dcd122939d71741d667eef48e6d19','BISOLA','ADESOLA','ADETUNJI','08147937201','student','active',1,NULL,NULL,'953','2025-04-22 08:36:37','2025-04-22 08:36:37'),
(169,'festusgoodness32@gmail.com',NULL,'cb043711f605be61f480bd2a25a42bd1','GOODNESS',NULL,'FESTUS','08155967532','student','active',1,NULL,NULL,'954','2025-04-22 08:40:41','2025-04-22 08:40:41'),
(170,'igbayisemoreomolafe@gmail.com',NULL,'1554823c44357a412e714d30cf2424ba','OMOLAFE','BEAUTY','IGBAYISEMORE','08077350703','student','active',1,NULL,NULL,'955','2025-04-22 08:43:06','2025-04-22 08:43:06'),
(171,'oladapochristianah10@gmail.com',NULL,'078d917b0eaa67b7b051d5da477b62d8','CHRISTIANAH','BOLUWATIFE','OLADAPO','08130261373','student','active',1,NULL,NULL,'956','2025-04-23 07:49:26','2025-04-23 07:49:26'),
(172,'muideenjn@gmail.com',NULL,'759191c383ef441dac0933d8e4402b03','MUIDEEN','OLATUNJI','AJANI','07014676374','student','active',1,NULL,NULL,'957','2025-04-23 08:12:31','2025-04-23 08:12:31'),
(173,'olatunjiajoke80@gmail.com',NULL,'a0e6d67283390db3a860767196ad569a','BLESSING','FOLASHADE','OLATUNJI','09037119987','student','active',1,NULL,NULL,'958','2025-04-23 08:20:23','2025-04-23 08:20:23'),
(174,'arayelatimileyin@gmail.com',NULL,'71a5e37115330e8fdbda8e88401ff5aa','TIMILEYIN','IFEOLUWA','ARAYELA','08067233162','student','active',1,NULL,NULL,'959','2025-04-23 08:25:27','2025-04-23 08:25:27'),
(175,'makindepeace09@gmail.com',NULL,'4fa1dc76e73e5afed16ab3e2ad9580c7','PEACE','AYOKUNLE','MAKINDE','08162211145','student','active',1,NULL,NULL,'960','2025-04-23 08:34:56','2025-04-23 08:34:56'),
(176,'olumuyiwaoluyemi726@gmail.com',NULL,'e4870aa3a1b93df12172e24004d8710f','OLUYEMI','DANIEL','OLUMUYIWA','09163151705','student','active',1,NULL,NULL,'961','2025-04-23 08:39:13','2025-04-23 08:39:13'),
(177,'deborahademusire74@gmail.com',NULL,'7a1e5b9cefb81cedcde101687fb08010','DEBORAH','SEMILORE','ADEMUSIRE','09016065344','student','active',1,NULL,NULL,'962','2025-04-25 07:19:26','2025-04-25 07:19:26'),
(178,'ogunfidodooluwatoyin2022@gmail.com',NULL,'3c0a2a765679009866def3c6f6e0ec5c','OLUWATOYIN','CHRISTIANAH','OGUNFIDODO','07025360312','student','active',1,NULL,NULL,'963','2025-04-25 07:23:27','2025-04-25 07:23:27'),
(179,'victoriaojo903@gmail.com',NULL,'f35b3846fa03898ce02d237965e9d73a','VICTORIA','BUKOLA','OJO','09135719016','student','active',1,NULL,NULL,'964','2025-04-25 07:27:39','2025-04-25 07:27:39'),
(180,'dimpleqwin348@gmail.com',NULL,'c11f7a9e3e5ecc6c64326205a4e37254','FAVOUR','FAITH','OLADIPO','09041666837','student','active',1,NULL,NULL,'965','2025-04-25 07:31:32','2025-04-25 07:31:32'),
(181,'oyindamolabolarinwa73@gmail.com',NULL,'1c1de4908dd1bb3060d8466d894d6f3a','OYINDAMOLA','RACHEAL','BOLARINWA','08061923781','student','active',1,NULL,NULL,'966','2025-04-25 07:35:43','2025-04-25 07:35:43'),
(182,'adegbileebunoluwa96@gmail.com',NULL,'e31e5fccaadd05e01dae26aa3c66f0c8','EBUNOLUWA','OMOLADE','ADEGBILE','08140715223','student','active',1,NULL,NULL,'967','2025-04-25 07:40:04','2025-04-25 07:40:04'),
(183,'okitadivineomonya@gmail.com',NULL,'7b6646d41f70092e650926e07912c878','DIVINE','OMONYA','OKITA','08102965901','student','active',1,NULL,NULL,'968','2025-04-25 07:43:48','2025-04-25 07:43:48'),
(184,'okorotesunday320@gmail.com',NULL,'5996f634c893a465965ea08ea9c2ef4d','SUNDAY','ANDREW','OKOROTE','08132574553','student','active',1,NULL,NULL,'969','2025-04-25 07:58:17','2025-04-25 07:58:17'),
(185,'akindoyinchristianah38@gmail.com',NULL,'5cbd6395ddf0c957c1f4c63c7a2fa0b7','CHRISTIANAH','AMAKA','AKINDOYIN','08130823937','student','active',1,NULL,NULL,'971','2025-04-26 07:16:42','2025-04-26 07:16:42'),
(186,'akinbodeoluwatosin2016@gmail.com',NULL,'d0129268ee99b436c6992217c7dd51ba','RABECCA','OLUWATOSIN','AGBEBIYI','08069017622','student','active',1,NULL,NULL,'972','2025-04-26 07:20:39','2025-04-26 07:20:39'),
(187,'aderonkeadewu@gmail.com',NULL,'ead0242d347decdb071818cedf073c1f','ADERONKE','RUTH','DADA','08067590040','student','active',1,NULL,NULL,'973','2025-04-26 08:19:57','2025-04-26 08:19:57'),
(188,'adunnivocal@icloud.com',NULL,'eee67ae29bac25599660ed803fb24213','ELIZABETH','TEMILOLUWA','ABIOLA','08037420546','student','active',1,NULL,NULL,'974','2025-04-28 06:01:09','2025-04-28 06:01:09'),
(189,'ceciliahope240@gmail.com',NULL,'9ff9b18afc2e42f5a8bd4ff0253e56cc','CECILIA','HAPPINESS','DICKSON','09129018031','student','active',1,NULL,NULL,'975','2025-04-28 07:39:42','2025-04-28 07:39:42'),
(190,'oluwafunmilayolydia032@gmail.com',NULL,'7e3619b78e6cf706c7ef23e77fc9e002','OLUWAFUNMILAYO','LYDIA','AYOADE','09122899828','student','active',1,NULL,NULL,'976','2025-04-29 04:42:07','2025-04-29 04:42:07'),
(191,'ebereokafor755@gmail.com',NULL,'91822a937a8e0e666503dfa9818970c8','EBERE','PERPETUAL','OKAFOR','09041970029','student','active',1,NULL,NULL,'977','2025-04-29 04:44:58','2025-04-29 04:44:58'),
(192,'timothhesther07@gmail.com',NULL,'91822a937a8e0e666503dfa9818970c8','ESTHER','BUKOLA','OKAFOR','08149697143','student','active',1,NULL,NULL,'978','2025-04-29 04:47:37','2025-04-29 04:47:37'),
(193,'ijiwolafathia32@gmail.com',NULL,'7ed91e06093033f1ab5aef8b7b86f91d','FATHIA','TEMITOPE','IJIWOLA','09047158012','student','active',1,NULL,NULL,'979','2025-04-29 04:49:52','2025-04-29 04:49:52'),
(194,'adesokanomolade928@gmail.com',NULL,'c274153ee8f0aa67bef6217350248960','OMOLADE','ADEOLA','ADESOKAN','09029817710','student','active',1,NULL,NULL,'981','2025-04-29 05:00:20','2025-04-29 05:00:20'),
(195,'bosedekenny90@gmail.com',NULL,'f69a66c1de98f19f2807ce135cdd7b51','KEHINDE','BOSEDE','ADEDEJI','08144755710','student','active',1,NULL,NULL,'982','2025-04-29 05:03:31','2025-04-29 05:03:31'),
(196,'omolewasusan449@gmail.com',NULL,'a6ed0653e8a14d328adbe8876112e782','SUSAN','OLUWATOMIWA','OMOLEWA','08082732662','student','active',1,NULL,NULL,'983','2025-04-29 05:06:27','2025-04-29 05:06:27'),
(197,'fisayomhi26@gmail.com',NULL,'b02cf188406554f45120303ddbf51b46','FISAYO','RASHIDAT','AROWOSAYE','07087485077','student','active',1,NULL,NULL,'984','2025-04-29 05:09:41','2025-04-29 05:09:41'),
(198,'catherinesone68@gmail.com',NULL,'870e3f23d3c7d4945e3f5c2f230d7d0e','CATHERINE',NULL,'SONE','09152919712','student','active',1,NULL,NULL,'985','2025-04-29 05:12:54','2025-04-29 05:12:54'),
(199,'adeolaadegoke497@gmail.com',NULL,'92244a2b30612979761c782618b188da','RACHEAL','ADEOLA','ADEGOKE','08169709651','student','active',1,NULL,NULL,'986','2025-04-29 05:15:04','2025-04-29 05:15:04'),
(200,'rukayatadetunji86@gmail.com',NULL,'365dcd122939d71741d667eef48e6d19','RUKAYAT','ABIOLA','ADETUNJI','09045981877','student','active',1,NULL,NULL,'987','2025-04-29 05:18:09','2025-04-29 05:18:09'),
(201,'oladimejifavouroluwapelumi@gmail.com',NULL,'7c21c1fc2ea42c2b0ee20cc9b605975a','FAVOUR','OLUWAPELUMI','OLADIMEJI','07057509278','student','active',1,NULL,NULL,'988','2025-04-29 05:23:02','2025-04-29 05:23:02'),
(202,'adebimpeadeluwoye@gmail.com',NULL,'6eb106cf00627ece165ba1335ee9ad68','ADEBIMPE','FAITH','ADELUWOYE','08103131087','student','active',1,NULL,NULL,'989','2025-04-29 05:27:12','2025-04-29 05:27:12'),
(203,'adegokebimpe5@gmail.com',NULL,'92244a2b30612979761c782618b188da','BIMPE','MARY','ADEGOKE','09035231539','student','active',1,NULL,NULL,'990','2025-04-29 05:29:59','2025-04-29 05:29:59'),
(204,'fatimohiliya@gmail.com',NULL,'d171b53b7c905af97fb1584603ffa940','FATIMOH','ALABA','ILIYASU','07048049646','student','active',1,NULL,NULL,'991','2025-04-29 05:35:43','2025-04-29 05:35:43'),
(205,'abimpe209@gmail.com',NULL,'34043954b0bba5901992657e04dda312','BIMPE','FUNKE','ADEBAYO','08072523696','student','active',1,NULL,NULL,'992','2025-04-29 05:38:14','2025-04-29 05:38:14'),
(206,'faridahagboade4@gmail.com',NULL,'46f381ff623a19c1e29b30c4bc7634ab','FARIDAH','ABIDEMI','AGBOADE','07084613550','student','active',1,NULL,NULL,'993','2025-04-29 05:41:00','2025-04-29 05:41:00'),
(207,'comfortomoshebi@gmail.com',NULL,'e0d1cf753a79c73ff0f83c90df8cb78d','COMFORT','MOJISOLA','OMOSHEBI','07087848864','student','active',1,NULL,NULL,'994','2025-04-29 05:44:26','2025-04-29 05:44:26'),
(208,'imisioluwaeniola9@gmail.com',NULL,'3a68121f53f4308fa461902ed9c81fb1','ENIOLA','IMISIOLUWA','OBISESAN','09048996251','student','active',1,NULL,NULL,'995','2025-04-29 05:48:08','2025-04-29 05:48:08'),
(209,'tankojoy287@gmail.com',NULL,'22d34969fb356809ff0ee543f61178e3','NUNRIMAN',NULL,'TANKO','09042617135','student','active',1,NULL,NULL,'996','2025-04-29 05:51:27','2025-04-29 05:51:27'),
(210,'olayiwolafavour198@gmail.com',NULL,'690e4d0d8ed2bce4477d922d6a690427','FAVOUR','OLUWAPAMILERIN','OLAYIWOLA','09019593801','student','active',1,NULL,NULL,'997','2025-04-29 05:53:56','2025-04-29 05:53:56'),
(211,'oladelemosunmola12@gmail.com',NULL,'c4d8a51e08c41d1c8c63b2db352e51d2','MOSUNMOLA','FAYOKEMI','OLADELE','09118350823','student','active',1,NULL,NULL,'998','2025-04-29 05:57:20','2025-04-29 05:57:20'),
(212,'tofunmiidowu218@gmail.com',NULL,'628e62c6962c3bb2b0b9fed29042f292','TOFUNMI','DEBORAH','IDOWU','08069596168','student','active',1,NULL,NULL,'999','2025-04-29 06:00:56','2025-04-29 06:00:56'),
(213,'ogunniyiabosede79@gmail.com',NULL,'b4421586a6d74e9a22ce61b48de99a84','ABOSEDE','IBUKUNOLUWA','OGUNNIYI','09069632147','student','active',1,NULL,NULL,'1000','2025-04-29 06:04:01','2025-04-29 06:04:01'),
(214,'feranmiaremu243@gmail.com',NULL,'361f878cdf782c003341c40c59ff4ae4','OLUWAFERANMI',NULL,'AREMU','09047055664','student','active',1,NULL,NULL,'1001','2025-04-29 06:07:54','2025-04-29 06:07:54'),
(215,'aliceayodele161@gmail.com',NULL,'5940bbfb075f1ed52daf4faaf9093dce','ALICE','MOTUNROLA','AYODELE','09052262099','student','active',1,NULL,NULL,'1002','2025-04-29 06:10:21','2025-04-29 06:10:21'),
(216,'afolabisolafunmi@gmail.com',NULL,'6cf8dcb54f871f4907405d06b13227b9','SOLAFUNMI','GRACE','AFOLABI','08130915089','student','active',1,NULL,NULL,'1003','2025-04-29 06:13:42','2025-04-29 06:13:42'),
(217,'adesujiaderonke36@gmail.com',NULL,'4d28c8b2bbd856cedc1e0903ef1e64d7','ADERONKE','GRACE','ADESUJI','08030811371','student','active',1,NULL,NULL,'1004','2025-04-29 06:16:20','2025-04-29 06:16:20'),
(218,'dolapoamidat96@gmail.com',NULL,'247e081462a43b070e2b540c477d78fd','DOLAPO','AMIDAT','LAWAL','09160770372','student','active',1,NULL,NULL,'1005','2025-04-30 04:35:13','2025-04-30 04:35:13'),
(219,'oshinfaderinoluwamayowa@gmail.com',NULL,'454d079a38b6c99c09f48c928df84736','MAYOWA','MARY','OSHINFADERIN','09053017162','student','active',1,NULL,NULL,'1006','2025-04-30 04:39:26','2025-04-30 04:39:26'),
(220,'adebisiesther689@gmail.com',NULL,'6a5cba0fb0d6a009951c8d087132d5ee','ESTHER','ADEBIMPE','ADEBISI','09055799685','student','active',1,NULL,NULL,'1007','2025-04-30 04:43:10','2025-04-30 04:43:10'),
(221,'adetutufolasade31@gmail.com',NULL,'360b6ec6eba9827260079534e46ccead','FOLASADE','BOLUWATIFE','OLAJIRE','07031933785','student','active',1,NULL,NULL,'1008','2025-04-30 04:46:56','2025-04-30 04:46:56'),
(222,'enioluwamariam5@gmail.com',NULL,'17606edf446dc11fb1d251bcd56bc99a','ENIOLUWA','MARIAM','OLANREWAJU','09019051494','student','active',1,NULL,NULL,'1009','2025-04-30 04:50:21','2025-04-30 04:50:21'),
(223,'gloryjohn15@gmail.com',NULL,'e2577c04131c5b0c7e7580f978322b31','GLORY','CECILIA','JOHN','07087694403','student','active',1,NULL,NULL,'1010','2025-04-30 04:52:50','2025-04-30 04:52:50'),
(224,'preciousgrace726@gmail.com',NULL,'3e7e71d12537fbef458123380803c66e','GRACE','FOLAKEMI','AJIBADE','07083131161','student','active',1,NULL,NULL,'1011','2025-04-30 04:55:49','2025-04-30 04:55:49'),
(225,'estherjoshuaibukun@gmail.com',NULL,'c9f41e6d2b503216e772b8e5fd00adfe','ESTHER','IBUKUN','JOSHUA','08124871709','student','active',1,NULL,NULL,'1012','2025-04-30 04:58:22','2025-04-30 04:58:22'),
(226,'babalolaidowu2022@gmail.com',NULL,'d9db81d52b465cb5bd22e1efdf5ab6be','IDOWU','VICTORIA','BABALOLA','08142381723','student','active',1,NULL,NULL,'1013','2025-04-30 05:00:57','2025-04-30 05:00:57'),
(227,'okunlolaadeola71@gmail.com',NULL,'61307b3d73811d0b3bdce3e01d0b7449','ADEOLA',NULL,'OKUNLOLA','09138791559','student','active',1,NULL,NULL,'1014','2025-04-30 05:04:15','2025-04-30 05:04:15'),
(228,'shadrachnoah82@gmail.com',NULL,'328e8f95a0d45967db0a0beb2f9ff4b7','MESHACK',NULL,'ALBERT','08073781743','student','active',1,NULL,NULL,'1015','2025-04-30 05:09:10','2025-04-30 05:09:10'),
(229,'ayobamideleaduragbemi2@gmail.com',NULL,'f35b3846fa03898ce02d237965e9d73a','AYOBAMIDELE','ADURAGBEMI','OJO','08148296002','student','active',1,NULL,NULL,'1016','2025-04-30 05:12:03','2025-04-30 05:12:03'),
(230,'esthebenezer09@gmail.com',NULL,'186b4d7a3891c6c932b94eaa32640947','ESTHER','OMOITUNNU','EBENEZER','09075282855','student','active',1,NULL,NULL,'1017','2025-04-30 05:17:36','2025-04-30 05:17:36'),
(231,'rantijoseph554@gmail.com',NULL,'4c3ab77cd42a3988a4352f37ae647809','REBECCA','OLUWARANTIMI','JOSEPH','09151815781','student','active',1,NULL,NULL,'1018','2025-04-30 05:23:51','2025-04-30 05:23:51'),
(232,'agadabosede660@gmail.com',NULL,'31d42b9f57a72f1d5fc3185a57308d6d','HELEN','BOSEDE','AGADA','09133327284','student','active',1,NULL,NULL,'1019','2025-04-30 05:26:31','2025-04-30 05:26:31'),
(233,'adeojoayomide21@gmail.com',NULL,'3df5b1d7400efe957dc283632dfd9b44','AYOMIDE','ESTHER','ADEOJO','09074059444','student','active',1,NULL,NULL,'1020','2025-04-30 05:29:12','2025-04-30 05:29:12'),
(234,'josphineajayi@gmail.com',NULL,'f1b20b0fb7bd022772a30efa391f9595','JOSPHINE','KIKELOMO','AJAYI','09072394090','student','active',1,NULL,NULL,'1021','2025-04-30 05:32:07','2025-04-30 05:32:07'),
(235,'ajaladamilolaoyindamola@gmail.com',NULL,'c9741eca5bb7ead285f41eca45f2040b','DAMILOLA','OYINDAMOLA','AJALA','07018997024','student','active',1,NULL,NULL,'1022','2025-04-30 05:34:38','2025-04-30 05:34:38'),
(236,'adewumifavourabike046@gmail.com',NULL,'5d80212f230f3ab0f596e5123d38471c','FAVOUR','ABIKE','ADEWUMI','09022712679','student','active',1,NULL,NULL,'1023','2025-04-30 05:38:01','2025-04-30 05:38:01'),
(237,'everlastingsidikatu@gmail.com',NULL,'414506d3f407d9f4266463d153c1a12e','EVERLASTING','SIDIKATU','SHITTU','08168447437','student','active',1,NULL,NULL,'1024','2025-04-30 05:40:37','2025-04-30 05:40:37'),
(238,'emaukeregracious@gmail.com',NULL,'27ab5db548045eb1050ee8bb0dba663d','GRACE','EMAUKERE','ABAJIE','07039365714','student','active',1,NULL,NULL,'1025','2025-04-30 05:49:45','2025-04-30 05:49:45'),
(239,'odunayoakinsola33@gmail.com',NULL,'dfd6554218f313b43c04520f09329ff5','ODUNAYO','BOSEDE','AKINSOLA','09128808292','student','active',1,NULL,NULL,'1026','2025-04-30 05:53:35','2025-04-30 05:53:35'),
(240,'tahavhenry706@gmail.com',NULL,'67495a7f1c88e7bebfc6dfdb0a512fa3','TAHAV','HENRY','AONDOAKURA','08075607338','student','active',1,NULL,NULL,'1027','2025-04-30 05:56:00','2025-04-30 05:56:00'),
(241,'olatomiwaamos43@gmail.com',NULL,'5ed9e73feafbaac5c43a207e24c2b776','OLATOMIWA','RACHEAL','AMOS','09034955833','student','active',1,NULL,NULL,'1028','2025-04-30 05:58:40','2025-04-30 05:58:40'),
(242,'akinpeluoyinkansola05@gmail.com',NULL,'b19a55e54d66dc44bac9c254b0a9bcaf','OYINKANSOLA','OLAJUMOKE','AKINPELU','08123732851','student','active',1,NULL,NULL,'1029','2025-04-30 06:11:40','2025-04-30 06:11:40'),
(243,'matthewthibiebi@gmail.com',NULL,'7802feb8467a9bc4dba34269b099230f','PRINCESS','THIBI-EBI','MATTHEW','07051516479','student','active',1,NULL,NULL,'1030','2025-04-30 07:55:02','2025-04-30 07:55:02'),
(244,'ajokeabefe01@gmail.com',NULL,'63419312b6336c6c1bf8b111e6b524ef','IYANUOLUWA','HOPE','RAIMI','09019907604','student','active',1,NULL,NULL,'1032','2025-05-02 06:01:08','2025-05-02 06:01:08'),
(245,'mercyopemipo898@gmail.com',NULL,'83e04e5bdee9a2b3400e4d744e480e06','MERCY','OPEMIPO','EMMANUEL','09130223680','student','active',1,NULL,NULL,'1033','2025-05-02 06:08:10','2025-05-02 06:08:10'),
(246,'olayemiolofin83@gmail.com',NULL,'0b7177481da7c261cf65d4011a1784f4','OLAYEMI','KAFAYAT','OLALEKAN','08062207404','student','active',1,NULL,NULL,'1034','2025-05-02 06:12:06','2025-05-02 06:12:06'),
(247,'sandrapelumi782@gmail.com',NULL,'365dcd122939d71741d667eef48e6d19','ADEOLA','JANET','ADETUNJI','07040107020','student','active',1,NULL,NULL,'1035','2025-05-02 06:41:47','2025-05-02 06:41:47'),
(248,'dolapo55566@gmail.com',NULL,'f1b20b0fb7bd022772a30efa391f9595','DOLAPO','MIRACLE','AJAYI','09126217677','student','active',1,NULL,NULL,'1036','2025-05-02 06:45:00','2025-05-02 06:45:00'),
(249,'sanusioluwatoyin78@gmail.com',NULL,'29d22a70c6f972e408fe2c02f80b4fe3','OLUWATOYIN','MARY','SANUSI','09112883991','student','active',1,NULL,NULL,'1037','2025-05-02 07:08:47','2025-05-02 07:08:47'),
(250,'victoriaomowunmi36@gmail.com',NULL,'c274153ee8f0aa67bef6217350248960','VICTORIA','OMOWUNMI','ADESOKAN','08080788964','student','active',1,NULL,NULL,'1038','2025-05-02 07:40:34','2025-05-02 07:40:34');
INSERT INTO `users` (`id`,`email`,`password_hash`,`legacy_md5`,`first_name`,`middle_name`,`last_name`,`phone`,`role`,`status`,`must_change_password`,`email_verified_at`,`last_login_at`,`legacy_id`,`created_at`,`updated_at`) VALUES
(251,'awoyerafavour46@gmail.com',NULL,'d627e92a82eda59075794ccd55d1686d','FAVOUR','FEYISARA','AWOYERA','09150976626','student','active',1,NULL,NULL,'1039','2025-05-02 08:11:12','2025-05-02 08:11:12'),
(252,'anuoluwapoadesina94@gmail.com',NULL,'aa8cb6b1ca3f208d2c4af4bf96b427da','ANUOLUWAPO','OMOWUMI','ADESINA','09071848624','student','active',1,NULL,NULL,'1040','2025-05-05 06:05:28','2025-05-05 06:05:28'),
(253,'gbadamosiblessing246@gmail.com',NULL,'3b956ed557f3bec4f18d39dcf0b4cbac','BLESSING','VICTORIA','GBADAMOSI','07059393536','student','active',1,NULL,NULL,'1041','2025-05-05 06:07:48','2025-05-05 06:07:48'),
(254,'adedokunabimbolaa@gmail.com',NULL,'2f9fa6b5582cb351697ee80063268e7b','ABIMBOLA','ABOSEDE','ADEDOKUN','08032199474','student','active',1,NULL,NULL,'1042','2025-05-05 06:18:58','2025-05-05 06:18:58'),
(255,'adewoleadewumi860@gmail.com',NULL,'e2159cfc1d95dfd8de29c7503d792191','FATIMOH','AINA','IBRAHIM','09112782703','student','active',1,NULL,NULL,'1043','2025-05-05 06:32:13','2025-05-05 06:32:13'),
(256,'fadeshewaanjolaoluwa@gmail.com',NULL,'acdd4cac7a41d3059f7f86d54cd10730','ANJOLAOLUWA','FADESHEWA','FAJOBI','07045498732','student','active',1,NULL,NULL,'1044','2025-05-06 04:54:02','2025-05-06 04:54:02'),
(257,'agwufaith81@gmail.com',NULL,'8723a42a35f9bcb92e0b4ba77660fbf1','FAITH','CHIAMAKA','AGWU','09036705548','student','active',1,NULL,NULL,'1045','2025-05-06 04:59:11','2025-05-06 04:59:11'),
(258,'funmiadeparusi95@gmail.com',NULL,'def9ff519cccd1c7087242609dde1045','OLUWAFUNMILOLA','MARY','ADEPARUSI','07015871133','student','active',1,NULL,NULL,'1046','2025-05-06 05:03:47','2025-05-06 05:03:47'),
(259,'ogungburedavid@gmail.com',NULL,'4814c3f67018e7a950baf44ed836fa12','DAVID','ABAYOMI','OGUNGBURE','08142600130','student','active',1,NULL,NULL,'1047','2025-05-06 05:06:20','2025-05-06 05:06:20'),
(260,'arigbedeopeyemi2022@gmail.com',NULL,'448fc6c93af965f48a669346e29093c2','OPEYEMI','AANUOLUWAPO','ARIGBEDE','09048301140','student','active',1,NULL,NULL,'1048','2025-05-06 05:08:24','2025-05-06 05:08:24'),
(261,'omololami897@gmail.com',NULL,'6a54ef9fd4822c59a38af55f075a15d6','TAIWO','ESTHER','ADENIJI','09022040081','student','active',1,NULL,NULL,'1049','2025-05-06 06:21:41','2025-05-06 06:21:41'),
(262,'omowumiomolade242@gmail.com',NULL,'79c961e659e1a2e5a5d35e8d64edf077','OMOWUMI','IYANU','AKINJARE','09033811506','student','active',1,NULL,NULL,'1050','2025-05-06 06:25:24','2025-05-06 06:25:24'),
(263,'adetusitaiwo8@gmail.com',NULL,'cccb209146df8454b958dac543a65903','TAIWO','TITILOPE','ADETUNSIN','08065319316','student','active',1,NULL,NULL,'1051','2025-05-06 06:29:50','2025-05-06 06:29:50'),
(264,'oladeleusman463@gmail.com',NULL,'2032175892ae0a883854656a31afb88a','ONIMISI','OLADELE','USMAN','08069995891','student','active',1,NULL,NULL,'1052','2025-05-06 06:32:46','2025-05-06 06:32:46'),
(265,'ayokunlenajeem3@gmail.com',NULL,'b64c7b0204d5ddc5f86da30b8b386f07','NAJEEM','AYOKUNLE','ABDULAHI','09060664162','student','active',1,NULL,NULL,'1053','2025-05-06 06:35:10','2025-05-06 06:35:10'),
(266,'abiodunbukola96@gmail.com',NULL,'21b86d3c974821a8e2493d1ae9b3c442','BUKOLA','SARAH','ABIODUN','08039263956','student','active',1,NULL,NULL,'1054','2025-05-06 06:42:46','2025-05-06 06:42:46'),
(267,'adeyanjutoyinjuliet@gmail.com',NULL,'387bdf01db386e259ef1cc7185c59e77','TOYIN','JULIET','ADEYANJU','07041041474','student','active',1,NULL,NULL,'1055','2025-05-06 07:29:40','2025-05-06 07:29:40'),
(268,'itunubamgbose9@gmail.com',NULL,'b17164122b39ae5ac0b6896893a6d1aa','ITUNU','ABIMBOLA','BAMGBOSE','07050784798','student','active',1,NULL,NULL,'1056','2025-05-06 07:32:04','2025-05-06 07:32:04'),
(269,'estherogayemi99@gmail.com',NULL,'d5327627790fe0edc7ef12a8877cd547','ESTHER','OMOTOMIKE','OGAYEMI','08053341186','student','active',1,NULL,NULL,'1057','2025-05-06 07:34:41','2025-05-06 07:34:41'),
(270,'rofiatjamiu57@gmail.com',NULL,'c0c5d1d09651451c498a47b874be63ba','ROFIAT','AYOMIDE','JAMIU','07037666795','student','active',1,NULL,NULL,'1058','2025-05-06 07:51:50','2025-05-06 07:51:50'),
(271,'taiwoojoniyi3@gmail.com',NULL,'0bd9347ca3040743cba9c4dedd5e2bfb','TAIWO','ADERONKE','OJONIYI','09139270347','student','active',1,NULL,NULL,'1059','2025-05-09 05:14:03','2025-05-09 05:14:03'),
(272,'elijahonamide341@gmail.com',NULL,'12bf8a78374a596eb6cbbd994b73e2b0','REBECCA','OREOLUWA','JOHNSON','09068452825','student','active',1,NULL,NULL,'1060','2025-05-09 06:30:56','2025-05-09 06:30:56'),
(273,'temitayodairo30@gmail.com',NULL,'242b9a473db7d4b481e16aea24a0c19e','TEMITAYO','DEBORAH','AKINMOLADUN','09135348949','student','active',1,NULL,NULL,'1061','2025-05-14 09:48:38','2025-05-14 09:48:38'),
(274,'estherawidamilola@gmail.com',NULL,'917d11d9424dcd4567cdcef0d1c396e8','DAMILOLA','ESTHER','AWI','08110841679','student','active',1,NULL,NULL,'1062','2025-05-19 03:45:10','2025-05-19 03:45:10'),
(275,'popoolarachael51@gmail.com',NULL,'ae182b3fd6e0cd6040df2e8d4738ad19','RACHEAL','OMOLOLA','POPOOLA','09018505846','student','active',1,NULL,NULL,'1063','2025-05-23 07:20:20','2025-05-23 07:20:20'),
(276,'tellaabosede173@gmail.com',NULL,'74f8b86457bcb8f5f8d359b5ed5d8f4e','ABOSEDE','FUNMILAYO','TELLA','08055939636','student','active',1,NULL,NULL,'1064','2025-05-23 07:24:24','2025-05-23 07:24:24'),
(277,'adelekanaderonke82@gmail.com',NULL,'647250c189b24e85fab26c73419780cf','ADERONKE','ADESEWA','ADELEKAN','07068916454','student','active',1,NULL,NULL,'1065','2025-05-23 07:38:54','2025-05-23 07:38:54'),
(278,'fabowaleoreofee@gmail.com',NULL,'dde8f87fc41ff7599455b9618913b04a','OREOFE','TEMITOPE','FABOWALE','07064376865','student','active',1,NULL,NULL,'1066','2025-06-05 07:34:42','2025-06-05 07:34:42'),
(279,'akingbekolawole51@gmail.com',NULL,'18939b70fca86125571582c5efadaf9a','KOLAWOLE','JOHN','AKINGBE','08061965292','student','active',1,NULL,NULL,'1067','2025-06-05 07:38:25','2025-06-05 07:38:25'),
(280,'gbemisolafatade@gmail.com',NULL,'54a5ad552cf633ce0ce7221329519bdf','GBEMISOLA','BOLUWATIFE','FATADE','08160178703','student','active',1,NULL,NULL,'1068','2025-06-05 07:41:17','2025-06-05 07:41:17'),
(281,'aladejebiomotolani@gmail.com',NULL,'84099e71255c8f5fbcf7d1b0ab839e77','OMOTOLA','AYODEJI','ALADEJEBI','08106522091','student','active',1,NULL,NULL,'1069','2025-06-05 07:44:40','2025-06-05 07:44:40'),
(282,'solomongraceeniola@gmail.com',NULL,'60de3f4c5b1f9f62d5cd0698d1a3885a','GRACE','ENIOLA','SOLOMON','09047167697','student','active',1,NULL,NULL,'1070','2025-06-24 08:44:58','2025-06-24 08:44:58'),
(283,'oadesewa209@gmail.com',NULL,'e643db493d696301f7dd65a69c9f8f02','TEMITOPE','OLUWASEUN','OLOSO','09160598114','student','active',1,NULL,NULL,'1071','2025-06-25 05:36:25','2025-06-25 05:36:25'),
(284,'tianahigweh@gmail.com',NULL,'d4c29cf801397b41f0e6971656ecc7f3','IJEOMA','CHRISTIANAH','IGWEH','09119033592','student','active',1,NULL,NULL,'1072','2025-06-25 08:03:05','2025-06-25 08:03:05'),
(285,'adeyemimary909@gmail.com',NULL,'036966be86f01201a327d5d24b36004b','ADEYEMI','MARY','OYEBADE','07066814792','student','active',1,NULL,NULL,'1073','2025-06-25 08:06:12','2025-06-25 08:06:12'),
(286,'iyanuoluwamatthew6@gmail.com',NULL,'7802feb8467a9bc4dba34269b099230f','IYANUOLUWA','PRECIOUS','MATTHEW','09014570448','student','active',1,NULL,NULL,'1074','2025-06-25 08:08:53','2025-06-25 08:08:53'),
(287,'igwehchioma23@gmail.com',NULL,'d4c29cf801397b41f0e6971656ecc7f3','PRECIOUS','CHIOMA','IGWEH','08067037970','student','active',1,NULL,NULL,'1075','2025-06-25 08:11:26','2025-06-25 08:11:26'),
(288,'bamidelecomfort870@gmail.com',NULL,'d460f07638d7918933db69715ea91836','COMFORT','FOLASHADE','BAMIDELE','09168096450','student','active',1,NULL,NULL,'1076','2025-06-25 08:14:51','2025-06-25 08:14:51'),
(289,'tomisinmary422@gmail.com',NULL,'7e1360aabb5e706697407d9a2ed89657','OLUWATOMISIN','MARY','ORUNGBA','07033918516','student','active',1,NULL,NULL,'1077','2025-06-25 08:17:22','2025-06-25 08:17:22'),
(290,'falarunuh@gmail.com',NULL,'4ca2e41ac9b9b98a804afcb886513da6','HELLEN','OMOLOLA','FALARUNU','08143907863','student','active',1,NULL,NULL,'1078','2025-06-25 08:20:25','2025-06-25 08:20:25'),
(291,'anuoluwap151@gmail.com',NULL,'60b6b7957faec2b9506cb061404d40bf','ANUOLUWAPO','FELICIA','OGUNDIPE','09131681524','student','active',1,NULL,NULL,'1079','2025-06-25 08:23:29','2025-06-25 08:23:29'),
(292,'favouromoniyi477@gmail.com',NULL,'3014432ba86a05252eb8a9a849cae43b','FAVOUR','OLUWAFUNMILAYO','OMONIYI','09043307087','student','active',1,NULL,NULL,'1080','2025-06-25 08:26:31','2025-06-25 08:26:31'),
(293,'oluwaseyifunmilayo414@gmail.com',NULL,'08f60d00d512b850e82499e01e71c5a1','SEYI','TOSIN','OLUWATOKI','08140513876','student','active',1,NULL,NULL,'1081','2025-06-25 08:30:02','2025-06-25 08:30:02'),
(294,'olowechristianah105@gmail.com',NULL,'a647060d8c927aadcba0ad68ef722ebc','CHRISTIANAH','OLAJUMOKE','OLOWE','09018520252','student','active',1,NULL,NULL,'1082','2025-06-25 08:32:58','2025-06-25 08:32:58'),
(295,'tifehife8477@gmail.com',NULL,'8ae5599606e401c26f1939f93f0176f3','BOLUWATIFE','IFEOLUWA','FANIRAN','07071754791','student','active',1,NULL,NULL,'1083','2025-06-27 04:46:53','2025-06-27 04:46:53'),
(296,'estherandrew144@gmail.com',NULL,'ee9715d577da28a85e9397621175aff3','ESTHER','IFEOLUWA','ANDREW','07088962719','student','active',1,NULL,NULL,'1084','2025-06-27 04:49:14','2025-06-27 04:49:14'),
(297,'sundaytosin619@gmail.com',NULL,'95fa12cb2100ce7081b71f7c44bc12a5','OLUWATOSIN','OSSAI','SUNDAY','07025493315','student','active',1,NULL,NULL,'1085','2025-06-27 05:14:30','2025-06-27 05:14:30'),
(298,'inioluwafavour399@gmail.com',NULL,'f35b3846fa03898ce02d237965e9d73a','MARY','INIOLUWA','OJO','09157741589','student','active',1,NULL,NULL,'1086','2025-06-27 05:18:14','2025-06-27 05:18:14'),
(299,'okwprecious8@gmail.com',NULL,'8dffedd59e1e4e03c4997923e0e0cdb7','PRECIOUS','DUMEBI','OKWUIJEN','09168212430','student','active',1,NULL,NULL,'1087','2025-06-27 05:24:38','2025-06-27 05:24:38'),
(300,'charityamos005@gmail.com',NULL,'5ed9e73feafbaac5c43a207e24c2b776','CHARITY','GRACE','AMOS','08149359656','student','active',1,NULL,NULL,'1088','2025-06-27 05:27:57','2025-06-27 05:27:57'),
(301,'harbeylinchor@gmail.com',NULL,'247e081462a43b070e2b540c477d78fd','ABIODUN','MARVELLOUS','LAWAL','09137529386','student','active',1,NULL,NULL,'1089','2025-06-27 05:45:44','2025-06-27 05:45:44'),
(302,'olarachaelayobami@gmail.com',NULL,'cc5214661e49a3fb1b02fa250aa0fdae','RACHAEL','AYOBAMI','OLA','09130324934','student','active',1,NULL,NULL,'1090','2025-06-27 05:48:35','2025-06-27 05:48:35'),
(303,'adedejifolashade437@gmail.com',NULL,'f69a66c1de98f19f2807ce135cdd7b51','FOLASHADE','JESSICA','ADEDEJI','08168319835','student','active',1,NULL,NULL,'1091','2025-06-27 05:52:31','2025-06-27 05:52:31'),
(304,'asakeadeh13@gmail.com',NULL,'c42ac1c011388feddb992f8098dc2ca0','TOYOSI','EUNICE','OLOFINKUADE','08135777429','student','active',1,NULL,NULL,'1092','2025-06-27 06:32:27','2025-06-27 06:32:27'),
(305,'diksonalberta446@gmail.com',NULL,'224328c42b3dff40bc1a63f4c1caa201','ELIJAH','OLUWATOBI','JOLOMI','09136703309','student','active',1,NULL,NULL,'1093','2025-06-27 06:35:57','2025-06-27 06:35:57'),
(306,'ayobami2808512@gmail.com',NULL,'dc2deec0f2b51affc6c524929ad98477','AYOBAMI','ROSELINE','OGUNLEYE','07075589408','student','active',1,NULL,NULL,'1096','2025-09-08 07:09:23','2025-09-08 07:09:23'),
(307,'adegboyegamd5@gmail.com',NULL,'813a78a55572f5510595e80c00f0e69e','MOYINOLWA','DEBORAH','ADEGBOYEGA','09161109584','student','active',1,NULL,NULL,'1097','2025-09-09 08:21:06','2025-09-09 08:21:06'),
(308,'farayolaiyanuoluwa5@gmail.com',NULL,'e600364d1fccf7e026dbb12324dddc6e','IYANUOLUWA','FAITH','FARAYOLA','07052742565','student','active',1,NULL,NULL,'1098','2025-09-10 06:57:32','2025-09-10 06:57:32'),
(309,'agbomoserejoyofgod@gmail.com',NULL,'f065ddb05d6a8df3b6b726db92020fa9','JOY','OPEOLUWA','AGBOMOSERE','08115952026','student','active',1,NULL,NULL,'1099','2025-09-10 08:42:53','2025-09-10 08:42:53'),
(310,'omoniyiadejoke5@gmail.com',NULL,'3014432ba86a05252eb8a9a849cae43b','RACHEAL','ADEJOKE','OMONIYI','08030505863','student','active',1,NULL,NULL,'1100','2025-09-17 07:16:26','2025-09-17 07:16:26'),
(311,'adebimpeajayi83@gmail.com',NULL,'f1b20b0fb7bd022772a30efa391f9595','ADEBIMPE','FOLASADE','AJAYI','07034587975','student','active',1,NULL,NULL,'1101','2025-09-17 07:30:55','2025-09-17 07:30:55'),
(312,'ojediranelijah31@gmail.com',NULL,'9ffaf3a3997d8835540983b871942f3a','ELIJAH',NULL,'OJEDIRAN','07030113351','student','active',1,NULL,NULL,'1102','2025-09-17 07:39:50','2025-09-17 07:39:50'),
(313,'adeosunt722@gmail.com',NULL,'0036dda43bacc473e45b425b4d4cdd3a','CHRISTIANAH','TEMITOPE','ADEOSUN','08166034196','student','active',1,NULL,NULL,'1103','2025-09-17 07:48:30','2025-09-17 07:48:30'),
(314,'oniemiola84@gmail.com',NULL,'945318235ec2e7a9cf73ef53b227d364','RACHAEL','EMIOLA','ONI','08035159202','student','active',1,NULL,NULL,'1104','2025-09-17 07:56:22','2025-09-17 07:56:22'),
(315,'morakinyolydiaaderiike@gmail.com',NULL,'de449db2559fe095b7d933287353c51f','LYDIA','ADERIIKE','AKANDE','08034796977','student','active',1,NULL,NULL,'1105','2025-09-17 08:17:44','2025-09-17 08:17:44'),
(316,'favourabayomi4@gmail.com',NULL,'ebd258cd1cb1e741fd1b3b4cb1d0a47a','FAVOUR','OWOJORI','ABAYOMI','07019742976','student','active',1,NULL,NULL,'1108','2025-10-17 07:51:44','2025-10-17 07:51:44'),
(317,'ayomikunbabatunde97@gmail.com',NULL,'ad63da12100ffb0dbd57791d797d1663','AYOMIKUN','TEMITOPE','BABATUNDE','09152447765','student','active',1,NULL,NULL,'1111','2025-10-22 08:44:34','2025-10-22 08:44:34'),
(318,'emmanueloluwadunsin471@gmail.com',NULL,'83e04e5bdee9a2b3400e4d744e480e06','RACHEAL','OLUWADUNSIN','EMMANUEL','08139066501','student','active',1,NULL,NULL,'1112','2025-10-22 09:17:19','2025-10-22 09:17:19'),
(319,'gakande45@gmail.com',NULL,'de449db2559fe095b7d933287353c51f','ODUNAYO','BOLUWATIFE','AKANDE','08136045364','student','active',1,NULL,NULL,'1116','2025-10-27 10:13:22','2025-10-27 10:13:22'),
(320,'benjaminolawamide74@gmail.com',NULL,'0f058299bd37215175b6e04fbe6f5ae6','OLAWAMIDE',NULL,'BENJAMIN','08107724648','student','active',1,NULL,NULL,'1117','2025-10-27 10:43:29','2025-10-27 10:43:29'),
(321,'adedejititilayo152@gmail.com',NULL,'f69a66c1de98f19f2807ce135cdd7b51','KUDIRAT','TITILAYO','ADEDEJI','07038223496','student','active',1,NULL,NULL,'1118','2025-10-29 04:48:19','2025-10-29 04:48:19'),
(322,'oghenegarengolden@gmail.com',NULL,'2fdeed422317ae99c0f75bd358e02dcb','GRACE','TOBORE','OGHENEGAREN','07033279292','student','active',1,NULL,NULL,'1119','2025-10-30 07:17:21','2025-10-30 07:17:21'),
(323,'akinolaflorence30@gmail.com',NULL,'8cd23918837208d9e9be69f027c71447','FLORENCE','OLUSEUN','AKINOLA','08134994451','student','active',1,NULL,NULL,'1121','2025-11-06 08:00:14','2025-11-06 08:00:14'),
(324,'emmystarr0@gmail.com',NULL,'d9027364b5135113914fc586d083ce1a','OLUWATOSIN','ABODUNRIN','AKINYEMI','07068068054','student','active',1,NULL,NULL,'1122','2025-11-10 04:30:19','2025-11-10 04:30:19'),
(325,'oladeru2@gmail.com',NULL,'3ebc25f8c4d1253bfee3a870bd3e8659','IYIOLA','MICHAEL','OLADERU','08164538815','student','active',1,NULL,NULL,'1123','2025-11-10 04:34:40','2025-11-10 04:34:40'),
(326,'oladeleopeyemi291@gmail.com',NULL,'e6479f49f1c597d7846a06c04082d755','OPEYEMI','ESTHER','OGUNTAYO','08060270429','student','active',1,NULL,NULL,'1126','2025-11-19 03:18:28','2025-11-19 03:18:28'),
(327,'dedith588@gmail.com',NULL,'e0d1efd319962442358f5f03495f1837','EDITH','MAGRET','DAVID','09061356989','student','active',1,NULL,NULL,'1127','2025-11-19 03:25:11','2025-11-19 03:25:11'),
(328,'peterosuntokun83@gmail.com',NULL,'bef2be801f1c40cb7ad5654c135e3ca0','PETER','BABATUNDE','OSUNTOKUN','08138628446','student','active',1,NULL,NULL,'1129','2025-11-20 07:47:31','2025-11-20 07:47:31'),
(329,'sekinatusmanyaya@gmail.com',NULL,'2032175892ae0a883854656a31afb88a','SEKINAT',NULL,'USMAN','08133065424','student','active',1,NULL,NULL,'1130','2025-11-20 08:02:39','2025-11-20 08:02:39'),
(330,'rasheedatyunuz02@gmail.com',NULL,'e7ef256c05c6c1d63fd627101b835bdf','RASHEEDAT','OMONIKE','YUNUZ','08101053886','student','active',1,NULL,NULL,'1131','2025-11-20 08:11:12','2025-11-20 08:11:12'),
(331,'damilola201920@gmail.com',NULL,'4f0d5ca1ef6a3396c35f53f8ccaac831','DAMILOLA','ADEWUMI','OGUNDIRAN','08146523120','student','active',1,NULL,NULL,'1132','2025-11-20 08:17:22','2025-11-20 08:17:22'),
(332,'opeyemiojoo81292@gmail.com',NULL,'f35b3846fa03898ce02d237965e9d73a','OPEYEMI','EUNICE','OJO','07067741562','student','active',1,NULL,NULL,'1133','2025-11-20 08:41:14','2025-11-20 08:41:14'),
(333,'cyprianjoy2@gmail.com',NULL,'c1defb130c4f6da4cad114cbee9fc5db','JOY','OBIANUJUNWA','CYPRIAN','09045020175','student','active',1,NULL,NULL,'1134','2025-11-20 09:47:49','2025-11-20 09:47:49'),
(334,'esangmercy20@gmail.com',NULL,'4c3ab77cd42a3988a4352f37ae647809','MERCY','AKAMA','JOSEPH','08131044043','student','active',1,NULL,NULL,'1135','2025-11-20 10:00:17','2025-11-20 10:00:17'),
(335,'kemisolaislamiat6@gmail.com',NULL,'0f54b8223dd5c578d82deae8b70e759b','KEMISOLA','ISLAMIAT','OROWUSI','09027916874','student','active',1,NULL,NULL,'1136','2025-11-21 05:40:08','2025-11-21 05:40:08'),
(336,'gbotemielizabeth4@gmail.com',NULL,'507e32d14b7d51129811725dfea53168','GBOTEMI','ELIZABETH','OLUWASANMI','08127743493','student','active',1,NULL,NULL,'1137','2025-11-21 05:45:55','2025-11-21 05:45:55'),
(337,'seyiagunbiade82@gmail.com',NULL,'c04191c8a0e7c955b3adead27ec98b62','FEYISAYO','CECILIA','AGUNBIADE','08066060362','student','active',1,NULL,NULL,'1138','2025-11-21 06:29:45','2025-11-21 06:29:45'),
(338,'bosedepromise4@gmail.com',NULL,'06f46ed627a0fc29561f58169ca1bfe5','PROMISE','OLAYINKA','BOSEDE','07068346454','student','active',1,NULL,NULL,'1139','2025-11-21 06:58:03','2025-11-21 06:58:03'),
(339,'boluwatifemiracle41@gmail.com',NULL,'ad766d8adb7898cdcfdc53bb41106bbd','BOLUWATIFE','DARASIMI','KAYODE','09157263708','student','active',1,NULL,NULL,'1140','2025-11-21 07:05:09','2025-11-21 07:05:09'),
(340,'ajolayoislamiyat2024@gmail.com',NULL,'d9b24d04d67b2329e771891ed2817409','ISLAMIYAT','AJOLAYO','KAREEM','09155655146','student','active',1,NULL,NULL,'1141','2025-11-21 07:11:11','2025-11-21 07:11:11'),
(341,'awobifaoluwaseun@gmail.com',NULL,'65f5448a4006ec24cdc1f28dfe6afd9d','OLUWASEUN','DEBORAH','ELUJOBA','08167572657','student','active',1,NULL,NULL,'1142','2025-11-21 07:21:13','2025-11-21 07:21:13'),
(342,'ogundejiopeyemi36@gmail.com',NULL,'0497944ee8645f53f7fa3b49e74e0c80','OPEYEMI','ESTHER','OGUNDEJI','09079586219','student','active',1,NULL,NULL,'1144','2025-11-24 04:25:20','2025-11-24 04:25:20'),
(343,'uniquebicma58@gmail.com',NULL,'035439ff09c8889e01a003305411b1fb','BLESSING','MAJEMU','OYEDEJI','09130821558','student','active',1,NULL,NULL,'1145','2025-11-24 04:47:17','2025-11-24 04:47:17'),
(344,'olayiwolaolajumoke48@gmail.com',NULL,'690e4d0d8ed2bce4477d922d6a690427','OLAJUMOKE','AJOKE','OLAYIWOLA','08064624646','student','active',1,NULL,NULL,'1146','2025-11-24 05:00:56','2025-11-24 05:00:56'),
(345,'olugbejetaiwoprecious@gmail.com',NULL,'e2abead004ceaa2d13c5074432a3e44c','TAIWO','PRECIOUS','OLUGBEJE','08073797418','student','active',1,NULL,NULL,'1147','2025-11-24 05:05:27','2025-11-24 05:05:27'),
(346,'abioduneunice070@gmail.com',NULL,'21b86d3c974821a8e2493d1ae9b3c442','EUNICE','FIYINFOLUWA','ABIODUN','08141847485','student','active',1,NULL,NULL,'1148','2025-11-24 06:16:59','2025-11-24 06:16:59'),
(347,'falolatolulope2007@gmail.com',NULL,'71c966647843ce666d9bf2b0f3a02cc6','TOLULOPE','REBECCA','FALOLA','09132339967','student','active',1,NULL,NULL,'1149','2025-11-24 07:20:14','2025-11-24 07:20:14'),
(348,'oyewolegodsmercy@gmail.com',NULL,'3b1e0f08e682b319aefa8f382bb66649','BUKOLA','TEMITOPE','OYEWOLE','08068989933','student','active',1,NULL,NULL,'1150','2025-11-24 09:04:54','2025-11-24 09:04:54'),
(349,'omisakinomolara33@gmail.com',NULL,'a536c4f58549cb8e2f2a2f2b7ce3942e','OMOLARA','ADEBANKE','OMISAKIN','08142989427','student','active',1,NULL,NULL,'1151','2025-11-24 09:10:44','2025-11-24 09:10:44'),
(350,'horluwatofunmi@gmail.com',NULL,'6dd296c670d3d73e72e77153abc719f9','ADIJAT','ADENIKE','ADEWOYE','07038791534','student','active',1,NULL,NULL,'1152','2025-11-25 08:04:21','2025-11-25 08:04:21'),
(351,'temitopeonaolapo84@gmail.com',NULL,'1cd5af281975e4293c3f2d22968eed9a','TEMITOPE','ADENIKE','ONAOLAPO','09118127580','student','active',1,NULL,NULL,'1153','2025-11-26 03:14:18','2025-11-26 03:14:18'),
(352,'akintikunlateefat14@gmail.com',NULL,'7650bea29c5b3f260bc657e116fb6de1','LATEEFAT','OLUWAYEMISI','AKINTIKUN','09137300071','student','active',1,NULL,NULL,'1154','2025-11-26 04:16:35','2025-11-26 04:16:35'),
(353,'ifeoluwasukurat162@gmail.com',NULL,'c31e140e2412a5ee32fff9e03d06402f','SUKURAT','IFEOLUWA','OMOLAJA','08102809610','student','active',1,NULL,NULL,'1155','2025-11-26 04:48:24','2025-11-26 04:48:24'),
(354,'abolajiakinwusi@gmail.com',NULL,'2960b3674c447c5d3a0cf23e611b367e','ABOLAJI','EMILY','ADEMOLA','09151479447','student','active',1,NULL,NULL,'1156','2025-11-26 04:56:05','2025-11-26 04:56:05'),
(355,'vadewuyi985@gmail.com',NULL,'cdff09356f4f1b52be49627d07940584','VICTORIA','AYOBAMI','ADEWUYI','09160159362','student','active',1,NULL,NULL,'1157','2025-11-26 07:14:29','2025-11-26 07:14:29'),
(356,'christianaholusola238@gmail.com',NULL,'c53c78c92c6572a1230a0d4fbb7c20e3','CHRISTIANAH','ABOSEDE','OLUSOLA','09132231674','student','active',1,NULL,NULL,'1159','2025-11-27 03:11:37','2025-11-27 03:11:37'),
(357,'babawaleyemisi1@gmail.com',NULL,'40947329cd12f240ab9c67aa0dd074a3','YEMISI','OMOLOLA','BABAWALE','07063999862','student','active',1,NULL,NULL,'1160','2025-11-27 03:55:01','2025-11-27 03:55:01'),
(358,'rasaqseyi18@gmail.com',NULL,'c00dab0e52d31246724cb049eb3c3f9e','SEYI','GOLD','RASAQ','09136219028','student','active',1,NULL,NULL,'1161','2025-11-27 04:00:00','2025-11-27 04:00:00'),
(359,'khodijatabdulazeez0@gmail.com',NULL,'b4db79290cce3f7d2cf1d04ca8c34221','KHODIJAT','ADERONKE','ABDULAZEEZ','08035972543','student','active',1,NULL,NULL,'1162','2025-11-27 04:07:12','2025-11-27 04:07:12'),
(360,'iseoluwaduduyegbe@gmail.com',NULL,'1e554ec0171daf2dc607ad2f4f41c585','OLUWABUKOLA','ISEOLUWA','DUDUYEGBE','08142406146','student','active',1,NULL,NULL,'1163','2025-11-27 04:11:23','2025-11-27 04:11:23'),
(361,'ogunsunlademaryanuoluwapo@gmail.com',NULL,'8d7f1b30d0193ae170477e0820ab72f0','MARY','AANUOLUWAPO','OGUNSUNLADE','07044428163','student','active',1,NULL,NULL,'1164','2025-11-27 04:14:18','2025-11-27 04:14:18'),
(362,'tobigbek29@gmail.com',NULL,'9b1e16813014596f3163a643faabf9e0','OLORUNTOBILOBA','OLUWAKAYODE','GBELEYI','09014990625','student','active',1,NULL,NULL,'1165','2025-11-27 08:08:29','2025-11-27 08:08:29'),
(363,'atetedayetaiwo@gmail.com',NULL,'4283457dd2ee46b57cc37b67f41ef0a3','TAIWO','OMOBOLANLE','ATETEDAYE','09010464905','student','active',1,NULL,NULL,'1166','2025-11-28 03:27:00','2025-11-28 03:27:00'),
(364,'ibrahimmutiyat30@gmail.com',NULL,'e2159cfc1d95dfd8de29c7503d792191','MUTIYAT','BOLANLE','IBRAHIM','07035649839','student','active',1,NULL,NULL,'1167','2025-11-28 03:30:42','2025-11-28 03:30:42'),
(365,'badiruramotallahi@gmail.com',NULL,'af42bb31c791e5a64b9449b9d1b6c7b4','RAMOTALLAHI','OMOLARA','BADIRU','07049164683','student','active',1,NULL,NULL,'1168','2025-11-28 03:54:56','2025-11-28 03:54:56'),
(366,'oluwanifemikolawole01@gmail.com',NULL,'9dbcdc4a7b12013a8da2168aeb4e1e2d','OLUWANIFEMI','JOY','KOLAWOLE','08120813620','student','active',1,NULL,NULL,'1169','2025-11-28 04:01:58','2025-11-28 04:01:58'),
(367,'arike6466@gmail.com',NULL,'e2159cfc1d95dfd8de29c7503d792191','ZAINAB','OPEYEMI','IBRAHIM','07052347769','student','active',1,NULL,NULL,'1170','2025-11-28 04:59:48','2025-11-28 04:59:48'),
(368,'josephpelumi@gmail.com',NULL,'4c3ab77cd42a3988a4352f37ae647809','TOFUNMI','PELUMI','JOSEPH','09158717247','student','active',1,NULL,NULL,'1171','2025-12-01 05:48:39','2025-12-01 05:48:39'),
(369,'fakunleawefunkemary@gmail.com',NULL,'d07f05c8998d33c3da12f1999e1000c3','FUNMILAYO','FUNKE','FAKUNLE','08064953067','student','active',1,NULL,NULL,'1172','2025-12-01 06:02:03','2025-12-01 06:02:03'),
(370,'olajidefolake868@gmail.com',NULL,'21bb5c0da9c273b1712ea25b954a4027','FOLAKE','BOSE','OLAJIDE','08160125243','student','active',1,NULL,NULL,'1173','2025-12-01 06:13:09','2025-12-01 06:13:09'),
(371,'tawaolaoyejumoke@gmail.com',NULL,'558ba7e5e80025f3e8b9cdb1c2a379d4','TAWAKALT','OLAJUMOKE','OLAOBAJU','07040423948','student','active',1,NULL,NULL,'1174','2025-12-02 03:40:57','2025-12-02 03:40:57'),
(372,'enitilograce@gmail.com',NULL,'abc8b7360396811924e755e02e2f163d','AJIBIKE','GRACE','ENITILO','08060635765','student','active',1,NULL,NULL,'1175','2025-12-02 04:36:25','2025-12-02 04:36:25'),
(373,'dunsione@gmail.com',NULL,'a08653298d5fe214d587cb6e47da6c4b','DUNSI','ADEOLA','BALOGUN','08060836346','student','active',1,NULL,NULL,'1176','2025-12-02 04:40:06','2025-12-02 04:40:06'),
(374,'ronkeakande978@gmail.com',NULL,'f35b3846fa03898ce02d237965e9d73a','OYERONKE','SADIAT','OJO','07060593337','student','active',1,NULL,NULL,'1177','2025-12-02 04:58:03','2025-12-02 04:58:03'),
(375,'rodiatayomideabdulrosheed145@gmail.com',NULL,'d77aa622298f1e27c34cbe3154999ee9','RODIAT','AYOMIDE','ABDULROSHEED','07042479013','student','active',1,NULL,NULL,'1178','2025-12-02 06:04:13','2025-12-02 06:04:13'),
(376,'preciousomolola67@gmail.com',NULL,'92244a2b30612979761c782618b188da','PRECIOUS','OMOLOLA','ADEGOKE','09043765174','student','active',1,NULL,NULL,'1179','2025-12-02 06:37:05','2025-12-02 06:37:05'),
(377,'motunrayoadedoja001@gmail.com',NULL,'73f6309ea4a2d2d8448561e2f69ca5f5','MISTURAT','MOTUNRAYO','ABDULGANIYU','09032366242','student','active',1,NULL,NULL,'1180','2025-12-02 07:02:40','2025-12-02 07:02:40'),
(378,'ibikunlewaliat1@gmail.com',NULL,'b41405de29d6f849673c213ff8147db7','WALIAT','ADERONKE','IBIKUNLE','08082399748','student','active',1,NULL,NULL,'1181','2025-12-02 07:31:14','2025-12-02 07:31:14'),
(379,'gabrielagnes931@gmail.com',NULL,'60dafedc7d3fcd4ed227106717bbec78','AGNES','AMAKA','GABRIEL','07075561278','student','active',1,NULL,NULL,'1182','2025-12-02 07:38:58','2025-12-02 07:38:58'),
(380,'oyeniyinafisat272@gmail.com',NULL,'26529aa9fc989ee4644d1381ccdcdd7d','NAFISAT','ABIDEMI','OYENIYI','09138478875','student','active',1,NULL,NULL,'1183','2025-12-02 07:46:49','2025-12-02 07:46:49'),
(381,'adebisitaiwooluwapamilerin@gmail.com',NULL,'6a5cba0fb0d6a009951c8d087132d5ee','TAIWO','OLUWAPAMILERIN','ADEBISI','08139629131','student','active',1,NULL,NULL,'1184','2025-12-02 08:10:27','2025-12-02 08:10:27'),
(382,'rahealadebayo65@gmail.com',NULL,'c71965f0ccabb2b51855e238406dfa91','RACHEAL','TEMITOPE','ADEBEYO','08134968198','student','active',1,NULL,NULL,'1185','2025-12-02 08:18:51','2025-12-02 08:18:51'),
(383,'susainah2@gmail.com',NULL,'de0e7273e362792a5e741679de150d09','PRECIOUS','ADEKEMI','OLADOSU','09036592085','student','active',1,NULL,NULL,'1186','2025-12-02 08:38:59','2025-12-02 08:38:59'),
(384,'ceciliaoluwasanmi@gmail.com',NULL,'507e32d14b7d51129811725dfea53168','CECILIA','FUNMILOLA','OLUWASANMI','07073259568','student','active',1,NULL,NULL,'1188','2025-12-02 08:56:01','2025-12-02 08:56:01'),
(385,'funmilayoesan940@gmail.com',NULL,'061f4195300d1d17e1787019f53bcd52','BUSAYO','ANIKE','OTTI','07048095923','student','active',1,NULL,NULL,'1189','2025-12-02 09:03:07','2025-12-02 09:03:07'),
(386,'philipmoses129@gmail.com',NULL,'acdc85c5f9ef2ed07b0b0e65f53ed64e','PHILIP','CHARLES','MOSES','08133784244','student','active',1,NULL,NULL,'1190','2025-12-02 09:53:33','2025-12-02 09:53:33'),
(387,'oluwapelumhi29@gmail.com',NULL,'03a4409971ea69438fb96a124fb1c47e','OLUWAPELUMI','DANIEL','AKINDOYIN','07011119588','student','active',1,NULL,NULL,'1192','2025-12-02 10:08:27','2025-12-02 10:08:27'),
(388,'nafeesatfolrarshadey@gmail.com',NULL,'6d1c910ab0e1d6f0bdede69fffffe923','NAFISAT','FOLASADE','SALAMI','07051146426','student','active',1,NULL,NULL,'1193','2025-12-03 08:00:04','2025-12-03 08:00:04'),
(389,'janetadefisayo@gmail.com',NULL,'c7c91a4142fe8f2f9e2c91fd4d4331d6','ADESANYA','JANET','ADEFISAYO','08162735516','student','active',1,NULL,NULL,'1202','2026-03-13 05:49:29','2026-03-13 05:49:29'),
(390,'adenikeawotayo895@gmail.com',NULL,'15ad792d88d2f4c4619760ad0d837dbe','ADENIKE','IDOWU','AWOTAYO','08068503327','student','active',1,NULL,NULL,'1203','2026-03-13 05:58:57','2026-03-13 05:58:57'),
(391,'nikeakintayo41@gmail.com',NULL,'de0be3a9f4307a947624b3934e56142b','NIKE','CECILIA','AKINTAYO','08106547314','student','active',1,NULL,NULL,'1204','2026-03-13 06:08:59','2026-03-13 06:08:59'),
(392,'busaribimpe80@gmail.com',NULL,'8564e157ab1a97358a38eb8ff42c307e','RODIAT','OLABIMPE','BUSARI','08027396800','student','active',1,NULL,NULL,'1205','2026-03-13 06:22:47','2026-03-13 06:22:47'),
(393,'otohinoymubaraq@gmail.com',NULL,'17cb5fe73c9d93c44c5f83ba879c66ce','MUBARAQ','OTOHINOY','ABDULLAHI','09134620362','student','active',1,NULL,NULL,'1206','2026-03-13 06:33:30','2026-03-13 06:33:30'),
(394,'awosiyanmary87@gmail.com',NULL,'2533d841e2ae8eca6adc43ce08557583','SURPRISE','MARY','AWOSIYAN','09160327024','student','active',1,NULL,NULL,'1207','2026-03-13 06:44:04','2026-03-13 06:44:04'),
(395,'elijahgoodness249@gmail.com',NULL,'10fd85e7187bc329a3efbb68f1c2146b','GOODNESS','AKPOANEBI','ELIJAH','09050394108','student','active',1,NULL,NULL,'1208','2026-03-13 07:11:38','2026-03-13 07:11:38'),
(396,'borntolivejames@gmail.com',NULL,'c90823d719ab488d569748f38502b713','BORNTOLIVE','QUEEN','JAMES','09156177331','student','active',1,NULL,NULL,'1210','2026-03-13 08:28:40','2026-03-13 08:28:40'),
(397,'olagunjutoibat27@gmail.com',NULL,'006c9d0855f75b2a438e27848cac7b91','TOIBAT','KOYINSOLA','OLAGUNJU','08153026067','student','active',1,NULL,NULL,'1211','2026-03-13 08:45:31','2026-03-13 08:45:31'),
(398,'afolabioyinlola381@gmail.com',NULL,'88c8376cbb8b3370015dbc7bfb8bb86c','OYINLOLA','FUNMI','OLALEYE','07032525778','student','active',1,NULL,NULL,'1212','2026-03-13 09:35:43','2026-03-13 09:35:43'),
(399,'a92531803@gmail.com',NULL,'e2159cfc1d95dfd8de29c7503d792191','AISHA','GBACHI','IBRAHIM','09047666056','student','active',1,NULL,NULL,'1213','2026-03-13 09:47:42','2026-03-13 09:47:42'),
(400,'olaoyej2007@gmail.com',NULL,'8123e372c4f970409baa4584a6f1ee26','JANET','ADESEWA','OLAOYE','08083964414','student','active',1,NULL,NULL,'1214','2026-03-13 09:55:45','2026-03-13 09:55:45'),
(401,'okediranracheal33@gmail.com',NULL,'ff6b3e1be26a62ce225d1bd41e835ca9','RACHEAL','IYANUOLUWA','OKEDIRAN','08132878070','student','active',1,NULL,NULL,'1215','2026-03-13 11:24:05','2026-03-13 11:24:05'),
(402,'ikuenisafunopeyemi@gmail.com',NULL,'605cd33cd3fe2adee8bb33e8313c5c93','OPEYEMI','GRACE','IKUENISAFUN','07076927456','student','active',1,NULL,NULL,'1216','2026-03-13 11:38:14','2026-03-13 11:38:14'),
(403,'agashirita5@gmail.com',NULL,'993b19d5bd26f24c07a61d3276e86c87','ONYEJIOMA','RITA','AGASHI','07086583845','student','active',1,NULL,NULL,'1217','2026-04-02 05:45:12','2026-04-02 05:45:12'),
(404,'omotanbaje26@gmail.com',NULL,'019276cb8f4e814a0b054cfc1e07ff86','ITUNU','OMOLOLA','YUSUF OLUWOLE','07064832118','student','active',1,NULL,NULL,'1218','2026-04-23 08:38:56','2026-04-23 08:38:56'),
(405,'akinpelufunmilayoseun@yahoo.com',NULL,'b19a55e54d66dc44bac9c254b0a9bcaf','FUNMILOLA','SEUN','AKINPELU','08036041574','student','active',1,NULL,NULL,'1219','2026-04-24 08:29:06','2026-04-24 08:29:06'),
(406,'tobilobabanwo269@gmail.com',NULL,'a1a3d3434d607ab39a01b6b6761072bd','TOBILOBA','MATTHEW','BANWO','09164393981','student','active',1,NULL,NULL,'1220','2026-04-24 08:40:54','2026-04-24 08:40:54'),
(407,'alabimercy116@gmail.com',NULL,'fcace809fd2edef9b0421d00fefd24ff','MERCY','OLUWABUSAYOMI','ALABI','07063878254','student','active',1,NULL,NULL,'1221','2026-04-24 09:33:16','2026-04-24 09:33:16'),
(408,'kayodeolushola866@gmail.com',NULL,'ad766d8adb7898cdcfdc53bb41106bbd','OLUSHOLA','RACHEAL','KAYODE','09038087691','student','active',1,NULL,NULL,'1222','2026-04-24 10:09:47','2026-04-24 10:09:47'),
(409,'afolayanayanfe00@gmail.com',NULL,'e3cd41a1111e497f8773fd74b9b61281','AYANFE','EUNICE','AFOLAYAN','08163390872','student','active',1,NULL,NULL,'1223','2026-04-27 07:55:29','2026-04-27 07:55:29'),
(410,'popooladeborah823@gmail.com',NULL,'ae182b3fd6e0cd6040df2e8d4738ad19','DEBORAH','ADEKEMI','POPOOLA','07069269525','student','active',1,NULL,NULL,'1224','2026-04-30 07:56:18','2026-04-30 07:56:18'),
(411,'legacy-1225@legacy.invalid',NULL,'6a0c2de52aa9deaecb13fd2caea9bbef','OPEYEMI','IDOWU','ADELERIN',NULL,'student','active',1,NULL,NULL,'1225','2026-05-01 10:15:28','2026-05-01 10:15:28'),
(412,'alarapenike61@gmail.com',NULL,'f9c8ca5d293792aa3bf938a71e991969','NIKE','MARIAM','ALARAPE','08102307975','student','active',1,NULL,NULL,'1226','2026-05-01 10:48:26','2026-05-01 10:48:26'),
(413,'admin@unicohstech.org',NULL,'7ed91e06093033f1ab5aef8b7b86f91d','SAHEED','KOREDE','IJIWOLA','09040494360','student','active',1,NULL,NULL,'1227','2026-05-01 10:52:35','2026-05-01 10:52:35'),
(414,'abidemiboluwatife23@gmail.com',NULL,'f35b3846fa03898ce02d237965e9d73a','ABIDEMI','BOLUWATIFE','OJO','07073387226','student','active',1,NULL,NULL,'1228','2026-05-01 11:30:42','2026-05-01 11:30:42');

-- campuses: 3 records
INSERT INTO `campuses` (`id`,`name`,`code`,`address`,`is_active`) VALUES
(1,'ILE-IFE','ILEIFE',NULL,1),
(2,'IMEKO','IMEKO',NULL,1),
(3,'','CAMP3',NULL,1);

-- departments: 9 records
INSERT INTO `departments` (`id`,`name`,`code`,`is_active`) VALUES
(1,'COMMUNITY HEALTH','COMMUNITYHEALTH',1),
(2,'PHARMACY','PHARMACY',1),
(3,'MEDICAL LABORATORY SCIENCE','MEDICALLABORATORYSCIEN',1),
(4,'ENVIRONMENTAL HEALTH','ENVIRONMENTALHEALTH',1),
(5,'DENTAL HEALTH','DENTALHEALTH',1),
(6,'PUBLIC HEALTH','PUBLICHEALTH',1),
(7,'HEALTH INFORMATION MANAGEMENT','HEALTHINFORMATIONMANAG',1),
(8,'','DEPT8',1),
(9,'GENERAL STUDIES','GENERALSTUDIES',1);

-- programmes: 16 records
INSERT INTO `programmes` (`id`,`department_id`,`name`,`code`,`duration_years`,`is_active`) VALUES
(1,1,'COMMUNITY HEALTH EXTENSION WORKER','COMMUNITYHEALTHEXTENSI',3,1),
(2,1,'JUNIOR COMMUNITY HEALTH EXTENSION WORKER','JUNIORCOMMUNITYHEALTHE',3,1),
(3,2,'PHARMACY TECHNICIAN','PHARMACYTECHNICIAN',3,1),
(4,3,'MEDICAL LABORATORY TECHNICIAN','MEDICALLABORATORYTECHN',3,1),
(5,4,'ENVIRONMENTAL HEALTH TECHNOLOGY','ENVIRONMENTALHEALTHTEC',3,1),
(6,4,'ENVIRONMENTAL HEALTH TECHNICIAN','ENVIRONMENTALHEALTHTEC6',3,1),
(7,4,'HEALTH EDUCATION AND PROMOTION','HEALTHEDUCATIONANDPROM',3,1),
(8,5,'DENTAL THERAPY','DENTALTHERAPY',3,1),
(9,5,'DENTAL SURGERY TECHNICIAN','DENTALSURGERYTECHNICIA',3,1),
(10,5,'DENTAL NURSING','DENTALNURSING',3,1),
(11,6,'PUBLIC HEALTH TECHNOLOGY','PUBLICHEALTHTECHNOLOGY',3,1),
(12,6,'HEALTH ASSISTANT','HEALTHASSISTANT',3,1),
(13,6,'MEDICAL HEALTH TECHNICIAN','MEDICALHEALTHTECHNICIA',3,1),
(14,7,'HEALTH INFORMATION MANAGEMENT (TECHNICIAN)','HEALTHINFORMATIONMANAG',3,1),
(15,6,'MEDICAL HEALTH TECHNICIAN /SOCIAL WORK','MEDICALHEALTHTECHNICIA15',3,1),
(16,8,'','PROG16',3,1);

-- academic_sessions: 6 records
INSERT INTO `academic_sessions` (`id`,`name`,`starts_on`,`ends_on`,`is_active`) VALUES
(1,'2020/2021','2020-09-01','2021-08-31',0),
(2,'2021/2022','2021-09-01','2022-08-31',0),
(3,'2022/2023','2022-09-01','2023-08-31',0),
(4,'2023/2024','2023-09-01','2024-08-31',0),
(5,'2024/2025','2024-09-01','2025-08-31',0),
(6,'2025/2026','2025-09-01','2026-08-31',1);

-- semesters: 12 records
INSERT INTO `semesters` (`id`,`academic_session_id`,`name`,`starts_on`,`ends_on`,`registration_opens_at`,`registration_closes_at`,`is_active`) VALUES
(1,1,'First','2020-09-01','2021-01-31',NULL,NULL,0),
(2,1,'Second','2021-02-01','2021-08-31',NULL,NULL,0),
(3,2,'First','2021-09-01','2022-01-31',NULL,NULL,0),
(4,2,'Second','2022-02-01','2022-08-31',NULL,NULL,0),
(5,3,'First','2022-09-01','2023-01-31',NULL,NULL,0),
(6,3,'Second','2023-02-01','2023-08-31',NULL,NULL,0),
(7,4,'First','2023-09-01','2024-01-31',NULL,NULL,0),
(8,4,'Second','2024-02-01','2024-08-31',NULL,NULL,0),
(9,5,'First','2024-09-01','2025-01-31',NULL,NULL,0),
(10,5,'Second','2025-02-01','2025-08-31',NULL,NULL,0),
(11,6,'First','2025-09-01','2026-01-31',NULL,NULL,0),
(12,6,'Second','2026-02-01','2026-08-31',NULL,NULL,0);

-- applications: 413 records
INSERT INTO `applications` (`id`,`user_id`,`application_no`,`programme_id`,`campus_id`,`entry_session_id`,`status`,`date_of_birth`,`gender`,`nationality`,`state`,`lga`,`address`,`submitted_at`,`decided_at`,`decision_note`,`created_at`,`updated_at`) VALUES
(1,2,'LEGACY/2025/000768',1,1,6,'accepted',NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-03 11:18:23','2024-07-03 11:18:23','Converted from legacy student record.','2024-07-03 11:18:23','2024-07-03 11:18:23'),
(2,3,'LEGACY/2025/000769',14,1,6,'accepted',NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-03 11:32:42','2024-07-03 11:32:42','Converted from legacy student record.','2024-07-03 11:32:42','2024-07-03 11:32:42'),
(3,4,'LEGACY/2025/000770',3,1,6,'accepted',NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-04 06:20:48','2024-07-04 06:20:48','Converted from legacy student record.','2024-07-04 06:20:48','2024-07-04 06:20:48'),
(4,5,'LEGACY/2025/000771',13,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-07-04 06:26:52','2024-07-04 06:26:52','Converted from legacy student record.','2024-07-04 06:26:52','2024-07-04 06:26:52'),
(5,6,'LEGACY/2025/000772',13,1,6,'accepted',NULL,NULL,NULL,NULL,NULL,NULL,'2024-07-04 11:33:52','2024-07-04 11:33:52','Converted from legacy student record.','2024-07-04 11:33:52','2024-07-04 11:33:52'),
(6,7,'LEGACY/2025/000773',13,1,6,'accepted',NULL,'Male',NULL,NULL,NULL,NULL,'2024-07-04 11:36:36','2024-07-04 11:36:36','Converted from legacy student record.','2024-07-04 11:36:36','2024-07-04 11:36:36'),
(7,8,'LEGACY/2025/000775',13,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-07-05 05:57:32','2024-07-05 05:57:32','Converted from legacy student record.','2024-07-05 05:57:32','2024-07-05 05:57:32'),
(8,9,'LEGACY/2025/000776',13,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-07-05 06:03:06','2024-07-05 06:03:06','Converted from legacy student record.','2024-07-05 06:03:06','2024-07-05 06:03:06'),
(9,10,'LEGACY/2025/000777',13,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-07-05 06:06:44','2024-07-05 06:06:44','Converted from legacy student record.','2024-07-05 06:06:44','2024-07-05 06:06:44'),
(10,11,'LEGACY/2025/000778',4,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-07-05 06:11:38','2024-07-05 06:11:38','Converted from legacy student record.','2024-07-05 06:11:38','2024-07-05 06:11:38'),
(11,12,'LEGACY/2024/000780',1,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-07-05 06:47:24','2024-07-05 06:47:24','Converted from legacy student record.','2024-07-05 06:47:24','2024-07-05 06:47:24'),
(12,13,'LEGACY/2025/000781',4,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-07-05 06:50:32','2024-07-05 06:50:32','Converted from legacy student record.','2024-07-05 06:50:32','2024-07-05 06:50:32'),
(13,14,'LEGACY/2025/000782',13,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-07-05 06:56:56','2024-07-05 06:56:56','Converted from legacy student record.','2024-07-05 06:56:56','2024-07-05 06:56:56'),
(14,15,'LEGACY/2025/000783',13,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-07-05 07:00:39','2024-07-05 07:00:39','Converted from legacy student record.','2024-07-05 07:00:39','2024-07-05 07:00:39'),
(15,16,'LEGACY/2025/000784',13,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-07-05 07:04:53','2024-07-05 07:04:53','Converted from legacy student record.','2024-07-05 07:04:53','2024-07-05 07:04:53'),
(16,17,'LEGACY/2025/000785',4,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-07-05 07:13:19','2024-07-05 07:13:19','Converted from legacy student record.','2024-07-05 07:13:19','2024-07-05 07:13:19'),
(17,18,'LEGACY/2025/000786',13,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-07-05 07:30:25','2024-07-05 07:30:25','Converted from legacy student record.','2024-07-05 07:30:25','2024-07-05 07:30:25'),
(18,19,'LEGACY/2025/000787',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-07-05 07:33:09','2024-07-05 07:33:09','Converted from legacy student record.','2024-07-05 07:33:09','2024-07-05 07:33:09'),
(19,20,'LEGACY/2025/000788',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-07-05 07:38:06','2024-07-05 07:38:06','Converted from legacy student record.','2024-07-05 07:38:06','2024-07-05 07:38:06'),
(20,21,'LEGACY/2025/000789',13,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-07-05 08:18:58','2024-07-05 08:18:58','Converted from legacy student record.','2024-07-05 08:18:58','2024-07-05 08:18:58'),
(21,22,'LEGACY/2025/000790',3,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-07-05 08:22:53','2024-07-05 08:22:53','Converted from legacy student record.','2024-07-05 08:22:53','2024-07-05 08:22:53'),
(22,23,'LEGACY/2025/000791',13,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-07-05 08:29:46','2024-07-05 08:29:46','Converted from legacy student record.','2024-07-05 08:29:46','2024-07-05 08:29:46'),
(23,24,'LEGACY/2025/000792',13,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-07-05 08:32:17','2024-07-05 08:32:17','Converted from legacy student record.','2024-07-05 08:32:17','2024-07-05 08:32:17'),
(24,25,'LEGACY/2025/000793',4,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-07-05 08:35:53','2024-07-05 08:35:53','Converted from legacy student record.','2024-07-05 08:35:53','2024-07-05 08:35:53'),
(25,26,'LEGACY/2025/000795',13,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-07-09 05:46:36','2024-07-09 05:46:36','Converted from legacy student record.','2024-07-09 05:46:36','2024-07-09 05:46:36'),
(26,27,'LEGACY/2025/000796',4,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-07-09 05:50:29','2024-07-09 05:50:29','Converted from legacy student record.','2024-07-09 05:50:29','2024-07-09 05:50:29'),
(27,28,'LEGACY/2025/000797',4,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-07-09 05:56:02','2024-07-09 05:56:02','Converted from legacy student record.','2024-07-09 05:56:02','2024-07-09 05:56:02'),
(28,29,'LEGACY/2025/000798',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-07-09 05:59:34','2024-07-09 05:59:34','Converted from legacy student record.','2024-07-09 05:59:34','2024-07-09 05:59:34'),
(29,30,'LEGACY/2025/000799',3,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-07-09 06:03:01','2024-07-09 06:03:01','Converted from legacy student record.','2024-07-09 06:03:01','2024-07-09 06:03:01'),
(30,31,'LEGACY/2025/000800',13,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-07-09 06:06:18','2024-07-09 06:06:18','Converted from legacy student record.','2024-07-09 06:06:18','2024-07-09 06:06:18'),
(31,32,'LEGACY/2025/000802',3,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-07-12 07:17:35','2024-07-12 07:17:35','Converted from legacy student record.','2024-07-12 07:17:35','2024-07-12 07:17:35'),
(32,33,'LEGACY/2025/000803',13,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-07-12 07:26:04','2024-07-12 07:26:04','Converted from legacy student record.','2024-07-12 07:26:04','2024-07-12 07:26:04'),
(33,34,'LEGACY/2025/000804',13,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-07-12 07:53:25','2024-07-12 07:53:25','Converted from legacy student record.','2024-07-12 07:53:25','2024-07-12 07:53:25'),
(34,35,'LEGACY/2025/000805',13,1,6,'accepted',NULL,'Male',NULL,NULL,NULL,NULL,'2024-07-15 05:06:13','2024-07-15 05:06:13','Converted from legacy student record.','2024-07-15 05:06:13','2024-07-15 05:06:13'),
(35,36,'LEGACY/2025/000806',13,1,6,'accepted',NULL,'Male',NULL,NULL,NULL,NULL,'2024-07-15 05:09:45','2024-07-15 05:09:45','Converted from legacy student record.','2024-07-15 05:09:45','2024-07-15 05:09:45'),
(36,37,'LEGACY/2025/000808',1,1,6,'accepted',NULL,'Male',NULL,NULL,NULL,NULL,'2024-07-16 04:52:33','2024-07-16 04:52:33','Converted from legacy student record.','2024-07-16 04:52:33','2024-07-16 04:52:33'),
(37,38,'LEGACY/2025/000809',1,1,6,'accepted',NULL,'Male',NULL,NULL,NULL,NULL,'2024-07-16 05:00:21','2024-07-16 05:00:21','Converted from legacy student record.','2024-07-16 05:00:21','2024-07-16 05:00:21'),
(38,39,'LEGACY/2025/000810',13,1,6,'accepted',NULL,'Male',NULL,NULL,NULL,NULL,'2024-07-16 05:35:48','2024-07-16 05:35:48','Converted from legacy student record.','2024-07-16 05:35:48','2024-07-16 05:35:48'),
(39,40,'LEGACY/2024/000811',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-07-16 05:43:24','2024-07-16 05:43:24','Converted from legacy student record.','2024-07-16 05:43:24','2024-07-16 05:43:24'),
(40,41,'LEGACY/2024/000812',4,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-07-16 05:47:03','2024-07-16 05:47:03','Converted from legacy student record.','2024-07-16 05:47:03','2024-07-16 05:47:03'),
(41,42,'LEGACY/2024/000813',3,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-07-16 05:51:16','2024-07-16 05:51:16','Converted from legacy student record.','2024-07-16 05:51:16','2024-07-16 05:51:16'),
(42,43,'LEGACY/2025/000814',3,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-07-16 05:57:45','2024-07-16 05:57:45','Converted from legacy student record.','2024-07-16 05:57:45','2024-07-16 05:57:45'),
(43,44,'LEGACY/2025/000815',7,1,6,'accepted',NULL,'Male',NULL,NULL,NULL,NULL,'2024-07-17 14:41:27','2024-07-17 14:41:27','Converted from legacy student record.','2024-07-17 14:41:27','2024-07-17 14:41:27'),
(44,45,'LEGACY/2025/000817',3,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-07-19 07:31:42','2024-07-19 07:31:42','Converted from legacy student record.','2024-07-19 07:31:42','2024-07-19 07:31:42'),
(45,46,'LEGACY/2025/000818',13,1,6,'accepted',NULL,'Male',NULL,NULL,NULL,NULL,'2024-07-23 04:38:54','2024-07-23 04:38:54','Converted from legacy student record.','2024-07-23 04:38:54','2024-07-23 04:38:54'),
(46,47,'LEGACY/2025/000819',1,1,6,'accepted',NULL,'Male',NULL,NULL,NULL,NULL,'2024-07-25 06:28:33','2024-07-25 06:28:33','Converted from legacy student record.','2024-07-25 06:28:33','2024-07-25 06:28:33'),
(47,48,'LEGACY/2025/000823',4,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-08-02 07:11:32','2024-08-02 07:11:32','Converted from legacy student record.','2024-08-02 07:11:32','2024-08-02 07:11:32'),
(48,49,'LEGACY/2023/000824',1,1,4,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-08-15 06:38:18','2024-08-15 06:38:18','Converted from legacy student record.','2024-08-15 06:38:18','2024-08-15 06:38:18'),
(49,50,'LEGACY/2025/000825',4,1,6,'accepted',NULL,'Male',NULL,NULL,NULL,NULL,'2024-08-19 04:55:20','2024-08-19 04:55:20','Converted from legacy student record.','2024-08-19 04:55:20','2024-08-19 04:55:20'),
(50,51,'LEGACY/2025/000826',4,1,6,'accepted',NULL,'Male',NULL,NULL,NULL,NULL,'2024-08-19 04:58:18','2024-08-19 04:58:18','Converted from legacy student record.','2024-08-19 04:58:18','2024-08-19 04:58:18'),
(51,52,'LEGACY/2025/000827',13,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-08-21 06:22:58','2024-08-21 06:22:58','Converted from legacy student record.','2024-08-21 06:22:58','2024-08-21 06:22:58'),
(52,53,'LEGACY/2025/000829',3,1,6,'accepted',NULL,'Male',NULL,NULL,NULL,NULL,'2024-09-04 05:51:47','2024-09-04 05:51:47','Converted from legacy student record.','2024-09-04 05:51:47','2024-09-04 05:51:47'),
(53,54,'LEGACY/2024/000832',4,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-11-05 04:50:54','2024-11-05 04:50:54','Converted from legacy student record.','2024-11-05 04:50:54','2024-11-05 04:50:54'),
(54,55,'LEGACY/2024/000833',4,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-11-05 05:02:26','2024-11-05 05:02:26','Converted from legacy student record.','2024-11-05 05:02:26','2024-11-05 05:02:26'),
(55,56,'LEGACY/2024/000834',4,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-11-05 05:07:04','2024-11-05 05:07:04','Converted from legacy student record.','2024-11-05 05:07:04','2024-11-05 05:07:04'),
(56,57,'LEGACY/2024/000835',4,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-11-05 05:11:08','2024-11-05 05:11:08','Converted from legacy student record.','2024-11-05 05:11:08','2024-11-05 05:11:08'),
(57,58,'LEGACY/2024/000836',4,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-11-05 05:15:14','2024-11-05 05:15:14','Converted from legacy student record.','2024-11-05 05:15:14','2024-11-05 05:15:14'),
(58,59,'LEGACY/2024/000837',4,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-11-05 05:18:25','2024-11-05 05:18:25','Converted from legacy student record.','2024-11-05 05:18:25','2024-11-05 05:18:25'),
(59,60,'LEGACY/2024/000838',4,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-11-05 05:21:53','2024-11-05 05:21:53','Converted from legacy student record.','2024-11-05 05:21:53','2024-11-05 05:21:53'),
(60,61,'LEGACY/2024/000839',4,1,5,'accepted',NULL,'Male',NULL,NULL,NULL,NULL,'2024-11-05 05:25:52','2024-11-05 05:25:52','Converted from legacy student record.','2024-11-05 05:25:52','2024-11-05 05:25:52'),
(61,62,'LEGACY/2024/000840',4,1,5,'accepted',NULL,'Male',NULL,NULL,NULL,NULL,'2024-11-05 05:28:53','2024-11-05 05:28:53','Converted from legacy student record.','2024-11-05 05:28:53','2024-11-05 05:28:53'),
(62,63,'LEGACY/2024/000841',4,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-11-05 05:36:51','2024-11-05 05:36:51','Converted from legacy student record.','2024-11-05 05:36:51','2024-11-05 05:36:51'),
(63,64,'LEGACY/2024/000842',4,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-11-05 05:40:47','2024-11-05 05:40:47','Converted from legacy student record.','2024-11-05 05:40:47','2024-11-05 05:40:47'),
(64,65,'LEGACY/2024/000843',4,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-11-05 05:43:47','2024-11-05 05:43:47','Converted from legacy student record.','2024-11-05 05:43:47','2024-11-05 05:43:47'),
(65,66,'LEGACY/2024/000844',4,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-11-05 05:47:03','2024-11-05 05:47:03','Converted from legacy student record.','2024-11-05 05:47:03','2024-11-05 05:47:03'),
(66,67,'LEGACY/2024/000845',4,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-11-05 05:49:26','2024-11-05 05:49:26','Converted from legacy student record.','2024-11-05 05:49:26','2024-11-05 05:49:26'),
(67,68,'LEGACY/2024/000846',4,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-11-05 05:52:42','2024-11-05 05:52:42','Converted from legacy student record.','2024-11-05 05:52:42','2024-11-05 05:52:42'),
(68,69,'LEGACY/2024/000847',4,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-11-05 05:56:55','2024-11-05 05:56:55','Converted from legacy student record.','2024-11-05 05:56:55','2024-11-05 05:56:55'),
(69,70,'LEGACY/2025/000848',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-11-05 06:17:01','2024-11-05 06:17:01','Converted from legacy student record.','2024-11-05 06:17:01','2024-11-05 06:17:01'),
(70,71,'LEGACY/2024/000849',4,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-11-05 06:38:59','2024-11-05 06:38:59','Converted from legacy student record.','2024-11-05 06:38:59','2024-11-05 06:38:59'),
(71,72,'LEGACY/2024/000850',4,1,5,'accepted',NULL,'Male',NULL,NULL,NULL,NULL,'2024-11-05 06:49:05','2024-11-05 06:49:05','Converted from legacy student record.','2024-11-05 06:49:05','2024-11-05 06:49:05'),
(72,73,'LEGACY/2024/000851',1,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-11-05 07:04:22','2024-11-05 07:04:22','Converted from legacy student record.','2024-11-05 07:04:22','2024-11-05 07:04:22'),
(73,74,'LEGACY/2024/000852',1,1,5,'accepted',NULL,'Male',NULL,NULL,NULL,NULL,'2024-11-05 07:10:20','2024-11-05 07:10:20','Converted from legacy student record.','2024-11-05 07:10:20','2024-11-05 07:10:20'),
(74,75,'LEGACY/2024/000853',3,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-11-05 07:13:48','2024-11-05 07:13:48','Converted from legacy student record.','2024-11-05 07:13:48','2024-11-05 07:13:48'),
(75,76,'LEGACY/2024/000854',11,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-11-05 07:18:17','2024-11-05 07:18:17','Converted from legacy student record.','2024-11-05 07:18:17','2024-11-05 07:18:17'),
(76,77,'LEGACY/2024/000855',4,1,5,'accepted',NULL,'Male',NULL,NULL,NULL,NULL,'2024-11-05 07:36:17','2024-11-05 07:36:17','Converted from legacy student record.','2024-11-05 07:36:17','2024-11-05 07:36:17'),
(77,78,'LEGACY/2025/000856',13,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-11-11 04:48:28','2024-11-11 04:48:28','Converted from legacy student record.','2024-11-11 04:48:28','2024-11-11 04:48:28'),
(78,79,'LEGACY/2025/000857',13,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-11-11 04:51:20','2024-11-11 04:51:20','Converted from legacy student record.','2024-11-11 04:51:20','2024-11-11 04:51:20'),
(79,80,'LEGACY/2025/000858',13,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-11-11 04:54:30','2024-11-11 04:54:30','Converted from legacy student record.','2024-11-11 04:54:30','2024-11-11 04:54:30'),
(80,81,'LEGACY/2025/000859',13,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-11-11 04:58:00','2024-11-11 04:58:00','Converted from legacy student record.','2024-11-11 04:58:00','2024-11-11 04:58:00'),
(81,82,'LEGACY/2025/000860',13,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-11-11 05:01:32','2024-11-11 05:01:32','Converted from legacy student record.','2024-11-11 05:01:32','2024-11-11 05:01:32'),
(82,83,'LEGACY/2025/000861',13,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-11-11 05:04:42','2024-11-11 05:04:42','Converted from legacy student record.','2024-11-11 05:04:42','2024-11-11 05:04:42'),
(83,84,'LEGACY/2025/000862',13,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-11-11 05:07:55','2024-11-11 05:07:55','Converted from legacy student record.','2024-11-11 05:07:55','2024-11-11 05:07:55'),
(84,85,'LEGACY/2025/000863',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-11-11 05:11:57','2024-11-11 05:11:57','Converted from legacy student record.','2024-11-11 05:11:57','2024-11-11 05:11:57'),
(85,86,'LEGACY/2025/000864',13,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-11-11 05:18:24','2024-11-11 05:18:24','Converted from legacy student record.','2024-11-11 05:18:24','2024-11-11 05:18:24'),
(86,87,'LEGACY/2025/000866',13,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-11-11 05:21:49','2024-11-11 05:21:49','Converted from legacy student record.','2024-11-11 05:21:49','2024-11-11 05:21:49'),
(87,88,'LEGACY/2025/000867',13,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-11-11 05:24:38','2024-11-11 05:24:38','Converted from legacy student record.','2024-11-11 05:24:38','2024-11-11 05:24:38'),
(88,89,'LEGACY/2025/000868',13,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-11-11 05:26:17','2024-11-11 05:26:17','Converted from legacy student record.','2024-11-11 05:26:17','2024-11-11 05:26:17'),
(89,90,'LEGACY/2025/000869',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-11-11 05:27:51','2024-11-11 05:27:51','Converted from legacy student record.','2024-11-11 05:27:51','2024-11-11 05:27:51'),
(90,91,'LEGACY/2025/000870',13,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-11-11 05:29:44','2024-11-11 05:29:44','Converted from legacy student record.','2024-11-11 05:29:44','2024-11-11 05:29:44'),
(91,92,'LEGACY/2025/000871',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-11-11 05:32:16','2024-11-11 05:32:16','Converted from legacy student record.','2024-11-11 05:32:16','2024-11-11 05:32:16'),
(92,93,'LEGACY/2025/000872',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-11-11 05:35:12','2024-11-11 05:35:12','Converted from legacy student record.','2024-11-11 05:35:12','2024-11-11 05:35:12'),
(93,94,'LEGACY/2025/000873',4,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-11-11 05:41:48','2024-11-11 05:41:48','Converted from legacy student record.','2024-11-11 05:41:48','2024-11-11 05:41:48'),
(94,95,'LEGACY/2025/000874',4,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-11-11 05:45:02','2024-11-11 05:45:02','Converted from legacy student record.','2024-11-11 05:45:02','2024-11-11 05:45:02'),
(95,96,'LEGACY/2025/000875',3,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-11-11 05:55:46','2024-11-11 05:55:46','Converted from legacy student record.','2024-11-11 05:55:46','2024-11-11 05:55:46'),
(96,97,'LEGACY/2025/000876',4,1,6,'accepted',NULL,'Male',NULL,NULL,NULL,NULL,'2024-11-11 06:01:09','2024-11-11 06:01:09','Converted from legacy student record.','2024-11-11 06:01:09','2024-11-11 06:01:09'),
(97,98,'LEGACY/2025/000878',4,1,6,'accepted',NULL,'Male',NULL,NULL,NULL,NULL,'2024-11-11 06:08:08','2024-11-11 06:08:08','Converted from legacy student record.','2024-11-11 06:08:08','2024-11-11 06:08:08'),
(98,99,'LEGACY/2025/000879',4,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-11-11 06:10:49','2024-11-11 06:10:49','Converted from legacy student record.','2024-11-11 06:10:49','2024-11-11 06:10:49'),
(99,100,'LEGACY/2025/000880',4,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-11-11 06:13:38','2024-11-11 06:13:38','Converted from legacy student record.','2024-11-11 06:13:38','2024-11-11 06:13:38'),
(100,101,'LEGACY/2025/000881',4,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-11-11 06:16:44','2024-11-11 06:16:44','Converted from legacy student record.','2024-11-11 06:16:44','2024-11-11 06:16:44'),
(101,102,'LEGACY/2025/000882',3,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-11-11 06:20:56','2024-11-11 06:20:56','Converted from legacy student record.','2024-11-11 06:20:56','2024-11-11 06:20:56'),
(102,103,'LEGACY/2025/000883',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-11-11 06:23:42','2024-11-11 06:23:42','Converted from legacy student record.','2024-11-11 06:23:42','2024-11-11 06:23:42'),
(103,104,'LEGACY/2025/000884',3,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-11-11 06:34:09','2024-11-11 06:34:09','Converted from legacy student record.','2024-11-11 06:34:09','2024-11-11 06:34:09'),
(104,105,'LEGACY/2024/000885',4,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-11-12 04:00:57','2024-11-12 04:00:57','Converted from legacy student record.','2024-11-12 04:00:57','2024-11-12 04:00:57'),
(105,106,'LEGACY/2025/000886',13,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-11-18 08:44:41','2024-11-18 08:44:41','Converted from legacy student record.','2024-11-18 08:44:41','2024-11-18 08:44:41'),
(106,107,'LEGACY/2025/000887',13,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-11-18 08:49:28','2024-11-18 08:49:28','Converted from legacy student record.','2024-11-18 08:49:28','2024-11-18 08:49:28'),
(107,108,'LEGACY/2025/000888',13,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-11-19 05:56:41','2024-11-19 05:56:41','Converted from legacy student record.','2024-11-19 05:56:41','2024-11-19 05:56:41'),
(108,109,'LEGACY/2025/000889',13,1,6,'accepted',NULL,'Male',NULL,NULL,NULL,NULL,'2024-11-19 06:07:07','2024-11-19 06:07:07','Converted from legacy student record.','2024-11-19 06:07:07','2024-11-19 06:07:07'),
(109,110,'LEGACY/2025/000890',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-11-19 06:51:35','2024-11-19 06:51:35','Converted from legacy student record.','2024-11-19 06:51:35','2024-11-19 06:51:35'),
(110,111,'LEGACY/2025/000891',13,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-11-19 06:56:03','2024-11-19 06:56:03','Converted from legacy student record.','2024-11-19 06:56:03','2024-11-19 06:56:03'),
(111,112,'LEGACY/2025/000892',13,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-11-19 08:14:06','2024-11-19 08:14:06','Converted from legacy student record.','2024-11-19 08:14:06','2024-11-19 08:14:06'),
(112,113,'LEGACY/2023/000893',4,1,4,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-11-20 05:41:53','2024-11-20 05:41:53','Converted from legacy student record.','2024-11-20 05:41:53','2024-11-20 05:41:53'),
(113,114,'LEGACY/2025/000894',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2024-11-20 06:17:00','2024-11-20 06:17:00','Converted from legacy student record.','2024-11-20 06:17:00','2024-11-20 06:17:00'),
(114,115,'LEGACY/2025/000898',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-16 07:52:03','2025-04-16 07:52:03','Converted from legacy student record.','2025-04-16 07:52:03','2025-04-16 07:52:03'),
(115,116,'LEGACY/2025/000899',1,1,6,'accepted',NULL,'Male',NULL,NULL,NULL,NULL,'2025-04-16 08:13:05','2025-04-16 08:13:05','Converted from legacy student record.','2025-04-16 08:13:05','2025-04-16 08:13:05'),
(116,117,'LEGACY/2025/000900',1,1,6,'accepted',NULL,'Male',NULL,NULL,NULL,NULL,'2025-04-16 08:18:27','2025-04-16 08:18:27','Converted from legacy student record.','2025-04-16 08:18:27','2025-04-16 08:18:27'),
(117,118,'LEGACY/2025/000901',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-16 08:22:23','2025-04-16 08:22:23','Converted from legacy student record.','2025-04-16 08:22:23','2025-04-16 08:22:23'),
(118,119,'LEGACY/2025/000902',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-16 08:25:24','2025-04-16 08:25:24','Converted from legacy student record.','2025-04-16 08:25:24','2025-04-16 08:25:24'),
(119,120,'LEGACY/2025/000903',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-16 08:28:55','2025-04-16 08:28:55','Converted from legacy student record.','2025-04-16 08:28:55','2025-04-16 08:28:55'),
(120,121,'LEGACY/2025/000904',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-16 08:31:27','2025-04-16 08:31:27','Converted from legacy student record.','2025-04-16 08:31:27','2025-04-16 08:31:27'),
(121,122,'LEGACY/2025/000905',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-16 08:34:26','2025-04-16 08:34:26','Converted from legacy student record.','2025-04-16 08:34:26','2025-04-16 08:34:26'),
(122,123,'LEGACY/2025/000906',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-16 08:35:04','2025-04-16 08:35:04','Converted from legacy student record.','2025-04-16 08:35:04','2025-04-16 08:35:04'),
(123,124,'LEGACY/2025/000907',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-16 08:38:23','2025-04-16 08:38:23','Converted from legacy student record.','2025-04-16 08:38:23','2025-04-16 08:38:23'),
(124,125,'LEGACY/2025/000908',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-16 08:42:04','2025-04-16 08:42:04','Converted from legacy student record.','2025-04-16 08:42:04','2025-04-16 08:42:04'),
(125,126,'LEGACY/2025/000909',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-16 08:43:32','2025-04-16 08:43:32','Converted from legacy student record.','2025-04-16 08:43:32','2025-04-16 08:43:32'),
(126,127,'LEGACY/2025/000910',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-16 08:44:50','2025-04-16 08:44:50','Converted from legacy student record.','2025-04-16 08:44:50','2025-04-16 08:44:50'),
(127,128,'LEGACY/2025/000911',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-16 08:47:29','2025-04-16 08:47:29','Converted from legacy student record.','2025-04-16 08:47:29','2025-04-16 08:47:29'),
(128,129,'LEGACY/2025/000912',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-16 08:47:29','2025-04-16 08:47:29','Converted from legacy student record.','2025-04-16 08:47:29','2025-04-16 08:47:29'),
(129,130,'LEGACY/2025/000913',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-16 08:50:30','2025-04-16 08:50:30','Converted from legacy student record.','2025-04-16 08:50:30','2025-04-16 08:50:30'),
(130,131,'LEGACY/2025/000914',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-16 08:51:30','2025-04-16 08:51:30','Converted from legacy student record.','2025-04-16 08:51:30','2025-04-16 08:51:30'),
(131,132,'LEGACY/2025/000915',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-16 08:53:39','2025-04-16 08:53:39','Converted from legacy student record.','2025-04-16 08:53:39','2025-04-16 08:53:39'),
(132,133,'LEGACY/2025/000916',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-16 08:54:13','2025-04-16 08:54:13','Converted from legacy student record.','2025-04-16 08:54:13','2025-04-16 08:54:13'),
(133,134,'LEGACY/2025/000917',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-16 08:56:34','2025-04-16 08:56:34','Converted from legacy student record.','2025-04-16 08:56:34','2025-04-16 08:56:34'),
(134,135,'LEGACY/2025/000918',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-16 08:57:54','2025-04-16 08:57:54','Converted from legacy student record.','2025-04-16 08:57:54','2025-04-16 08:57:54'),
(135,136,'LEGACY/2025/000919',1,1,6,'accepted',NULL,'Male',NULL,NULL,NULL,NULL,'2025-04-16 08:59:27','2025-04-16 08:59:27','Converted from legacy student record.','2025-04-16 08:59:27','2025-04-16 08:59:27'),
(136,137,'LEGACY/2025/000920',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-16 09:00:19','2025-04-16 09:00:19','Converted from legacy student record.','2025-04-16 09:00:19','2025-04-16 09:00:19'),
(137,138,'LEGACY/2025/000921',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-16 09:02:04','2025-04-16 09:02:04','Converted from legacy student record.','2025-04-16 09:02:04','2025-04-16 09:02:04'),
(138,139,'LEGACY/2025/000922',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-16 09:03:17','2025-04-16 09:03:17','Converted from legacy student record.','2025-04-16 09:03:17','2025-04-16 09:03:17'),
(139,140,'LEGACY/2025/000923',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-16 09:05:16','2025-04-16 09:05:16','Converted from legacy student record.','2025-04-16 09:05:16','2025-04-16 09:05:16'),
(140,141,'LEGACY/2025/000924',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-16 09:06:19','2025-04-16 09:06:19','Converted from legacy student record.','2025-04-16 09:06:19','2025-04-16 09:06:19'),
(141,142,'LEGACY/2025/000925',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-16 09:11:18','2025-04-16 09:11:18','Converted from legacy student record.','2025-04-16 09:11:18','2025-04-16 09:11:18'),
(142,143,'LEGACY/2025/000926',3,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-16 09:11:56','2025-04-16 09:11:56','Converted from legacy student record.','2025-04-16 09:11:56','2025-04-16 09:11:56'),
(143,144,'LEGACY/2025/000927',3,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-16 09:14:52','2025-04-16 09:14:52','Converted from legacy student record.','2025-04-16 09:14:52','2025-04-16 09:14:52'),
(144,145,'LEGACY/2025/000929',3,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-16 09:18:38','2025-04-16 09:18:38','Converted from legacy student record.','2025-04-16 09:18:38','2025-04-16 09:18:38'),
(145,146,'LEGACY/2025/000930',4,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-16 09:22:26','2025-04-16 09:22:26','Converted from legacy student record.','2025-04-16 09:22:26','2025-04-16 09:22:26'),
(146,147,'LEGACY/2025/000931',3,1,6,'accepted',NULL,'Male',NULL,NULL,NULL,NULL,'2025-04-16 09:22:27','2025-04-16 09:22:27','Converted from legacy student record.','2025-04-16 09:22:27','2025-04-16 09:22:27'),
(147,148,'LEGACY/2025/000932',4,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-16 09:26:45','2025-04-16 09:26:45','Converted from legacy student record.','2025-04-16 09:26:45','2025-04-16 09:26:45'),
(148,149,'LEGACY/2025/000933',4,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-16 09:33:10','2025-04-16 09:33:10','Converted from legacy student record.','2025-04-16 09:33:10','2025-04-16 09:33:10'),
(149,150,'LEGACY/2025/000934',4,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-16 09:35:49','2025-04-16 09:35:49','Converted from legacy student record.','2025-04-16 09:35:49','2025-04-16 09:35:49'),
(150,151,'LEGACY/2025/000935',4,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-16 09:39:55','2025-04-16 09:39:55','Converted from legacy student record.','2025-04-16 09:39:55','2025-04-16 09:39:55'),
(151,152,'LEGACY/2025/000936',4,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-16 09:43:31','2025-04-16 09:43:31','Converted from legacy student record.','2025-04-16 09:43:31','2025-04-16 09:43:31'),
(152,153,'LEGACY/2025/000937',15,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-16 09:45:13','2025-04-16 09:45:13','Converted from legacy student record.','2025-04-16 09:45:13','2025-04-16 09:45:13'),
(153,154,'LEGACY/2025/000938',4,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-16 09:46:16','2025-04-16 09:46:16','Converted from legacy student record.','2025-04-16 09:46:16','2025-04-16 09:46:16'),
(154,155,'LEGACY/2025/000939',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-16 09:49:13','2025-04-16 09:49:13','Converted from legacy student record.','2025-04-16 09:49:13','2025-04-16 09:49:13'),
(155,156,'LEGACY/2025/000940',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-16 09:51:15','2025-04-16 09:51:15','Converted from legacy student record.','2025-04-16 09:51:15','2025-04-16 09:51:15'),
(156,157,'LEGACY/2025/000941',3,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-16 09:52:27','2025-04-16 09:52:27','Converted from legacy student record.','2025-04-16 09:52:27','2025-04-16 09:52:27'),
(157,158,'LEGACY/2025/000942',15,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-16 09:56:25','2025-04-16 09:56:25','Converted from legacy student record.','2025-04-16 09:56:25','2025-04-16 09:56:25'),
(158,159,'LEGACY/2025/000944',15,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-16 09:58:56','2025-04-16 09:58:56','Converted from legacy student record.','2025-04-16 09:58:56','2025-04-16 09:58:56'),
(159,160,'LEGACY/2025/000945',15,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-16 10:01:37','2025-04-16 10:01:37','Converted from legacy student record.','2025-04-16 10:01:37','2025-04-16 10:01:37'),
(160,161,'LEGACY/2025/000946',15,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-16 10:01:53','2025-04-16 10:01:53','Converted from legacy student record.','2025-04-16 10:01:53','2025-04-16 10:01:53'),
(161,162,'LEGACY/2025/000947',15,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-16 10:04:25','2025-04-16 10:04:25','Converted from legacy student record.','2025-04-16 10:04:25','2025-04-16 10:04:25'),
(162,163,'LEGACY/2025/000948',15,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-16 10:05:11','2025-04-16 10:05:11','Converted from legacy student record.','2025-04-16 10:05:11','2025-04-16 10:05:11'),
(163,164,'LEGACY/2025/000949',15,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-16 10:07:31','2025-04-16 10:07:31','Converted from legacy student record.','2025-04-16 10:07:31','2025-04-16 10:07:31'),
(164,165,'LEGACY/2025/000950',15,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-16 10:09:51','2025-04-16 10:09:51','Converted from legacy student record.','2025-04-16 10:09:51','2025-04-16 10:09:51'),
(165,166,'LEGACY/2025/000951',15,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-16 10:12:39','2025-04-16 10:12:39','Converted from legacy student record.','2025-04-16 10:12:39','2025-04-16 10:12:39'),
(166,167,'LEGACY/2025/000952',1,1,6,'accepted',NULL,'Male',NULL,NULL,NULL,NULL,'2025-04-18 08:06:33','2025-04-18 08:06:33','Converted from legacy student record.','2025-04-18 08:06:33','2025-04-18 08:06:33'),
(167,168,'LEGACY/2025/000953',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-22 08:36:37','2025-04-22 08:36:37','Converted from legacy student record.','2025-04-22 08:36:37','2025-04-22 08:36:37'),
(168,169,'LEGACY/2024/000954',1,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-22 08:40:41','2025-04-22 08:40:41','Converted from legacy student record.','2025-04-22 08:40:41','2025-04-22 08:40:41'),
(169,170,'LEGACY/2024/000955',1,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-22 08:43:06','2025-04-22 08:43:06','Converted from legacy student record.','2025-04-22 08:43:06','2025-04-22 08:43:06'),
(170,171,'LEGACY/2024/000956',1,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-23 07:49:26','2025-04-23 07:49:26','Converted from legacy student record.','2025-04-23 07:49:26','2025-04-23 07:49:26'),
(171,172,'LEGACY/2025/000957',4,1,6,'accepted',NULL,'Male',NULL,NULL,NULL,NULL,'2025-04-23 08:12:31','2025-04-23 08:12:31','Converted from legacy student record.','2025-04-23 08:12:31','2025-04-23 08:12:31'),
(172,173,'LEGACY/2025/000958',15,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-23 08:20:23','2025-04-23 08:20:23','Converted from legacy student record.','2025-04-23 08:20:23','2025-04-23 08:20:23'),
(173,174,'LEGACY/2025/000959',4,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-23 08:25:27','2025-04-23 08:25:27','Converted from legacy student record.','2025-04-23 08:25:27','2025-04-23 08:25:27'),
(174,175,'LEGACY/2025/000960',4,1,6,'accepted',NULL,'Male',NULL,NULL,NULL,NULL,'2025-04-23 08:34:56','2025-04-23 08:34:56','Converted from legacy student record.','2025-04-23 08:34:56','2025-04-23 08:34:56'),
(175,176,'LEGACY/2025/000961',4,1,6,'accepted',NULL,'Male',NULL,NULL,NULL,NULL,'2025-04-23 08:39:13','2025-04-23 08:39:13','Converted from legacy student record.','2025-04-23 08:39:13','2025-04-23 08:39:13'),
(176,177,'LEGACY/2025/000962',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-25 07:19:26','2025-04-25 07:19:26','Converted from legacy student record.','2025-04-25 07:19:26','2025-04-25 07:19:26'),
(177,178,'LEGACY/2025/000963',4,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-25 07:23:27','2025-04-25 07:23:27','Converted from legacy student record.','2025-04-25 07:23:27','2025-04-25 07:23:27'),
(178,179,'LEGACY/2025/000964',15,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-25 07:27:39','2025-04-25 07:27:39','Converted from legacy student record.','2025-04-25 07:27:39','2025-04-25 07:27:39'),
(179,180,'LEGACY/2025/000965',15,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-25 07:31:32','2025-04-25 07:31:32','Converted from legacy student record.','2025-04-25 07:31:32','2025-04-25 07:31:32'),
(180,181,'LEGACY/2025/000966',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-25 07:35:43','2025-04-25 07:35:43','Converted from legacy student record.','2025-04-25 07:35:43','2025-04-25 07:35:43'),
(181,182,'LEGACY/2025/000967',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-25 07:40:04','2025-04-25 07:40:04','Converted from legacy student record.','2025-04-25 07:40:04','2025-04-25 07:40:04'),
(182,183,'LEGACY/2025/000968',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-25 07:43:48','2025-04-25 07:43:48','Converted from legacy student record.','2025-04-25 07:43:48','2025-04-25 07:43:48'),
(183,184,'LEGACY/2025/000969',1,1,6,'accepted',NULL,'Male',NULL,NULL,NULL,NULL,'2025-04-25 07:58:17','2025-04-25 07:58:17','Converted from legacy student record.','2025-04-25 07:58:17','2025-04-25 07:58:17'),
(184,185,'LEGACY/2025/000971',4,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-26 07:16:42','2025-04-26 07:16:42','Converted from legacy student record.','2025-04-26 07:16:42','2025-04-26 07:16:42'),
(185,186,'LEGACY/2025/000972',4,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-26 07:20:39','2025-04-26 07:20:39','Converted from legacy student record.','2025-04-26 07:20:39','2025-04-26 07:20:39'),
(186,187,'LEGACY/2025/000973',4,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-26 08:19:57','2025-04-26 08:19:57','Converted from legacy student record.','2025-04-26 08:19:57','2025-04-26 08:19:57'),
(187,188,'LEGACY/2025/000974',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-28 06:01:09','2025-04-28 06:01:09','Converted from legacy student record.','2025-04-28 06:01:09','2025-04-28 06:01:09'),
(188,189,'LEGACY/2025/000975',15,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-28 07:39:42','2025-04-28 07:39:42','Converted from legacy student record.','2025-04-28 07:39:42','2025-04-28 07:39:42'),
(189,190,'LEGACY/2024/000976',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-29 04:42:07','2025-04-29 04:42:07','Converted from legacy student record.','2025-04-29 04:42:07','2025-04-29 04:42:07'),
(190,191,'LEGACY/2025/000977',13,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-29 04:44:58','2025-04-29 04:44:58','Converted from legacy student record.','2025-04-29 04:44:58','2025-04-29 04:44:58'),
(191,192,'LEGACY/2025/000978',13,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-29 04:47:37','2025-04-29 04:47:37','Converted from legacy student record.','2025-04-29 04:47:37','2025-04-29 04:47:37'),
(192,193,'LEGACY/2025/000979',13,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-29 04:49:52','2025-04-29 04:49:52','Converted from legacy student record.','2025-04-29 04:49:52','2025-04-29 04:49:52'),
(193,194,'LEGACY/2024/000981',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-29 05:00:20','2025-04-29 05:00:20','Converted from legacy student record.','2025-04-29 05:00:20','2025-04-29 05:00:20'),
(194,195,'LEGACY/2024/000982',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-29 05:03:31','2025-04-29 05:03:31','Converted from legacy student record.','2025-04-29 05:03:31','2025-04-29 05:03:31'),
(195,196,'LEGACY/2024/000983',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-29 05:06:27','2025-04-29 05:06:27','Converted from legacy student record.','2025-04-29 05:06:27','2025-04-29 05:06:27'),
(196,197,'LEGACY/2024/000984',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-29 05:09:41','2025-04-29 05:09:41','Converted from legacy student record.','2025-04-29 05:09:41','2025-04-29 05:09:41'),
(197,198,'LEGACY/2025/000985',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-29 05:12:54','2025-04-29 05:12:54','Converted from legacy student record.','2025-04-29 05:12:54','2025-04-29 05:12:54'),
(198,199,'LEGACY/2025/000986',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-29 05:15:04','2025-04-29 05:15:04','Converted from legacy student record.','2025-04-29 05:15:04','2025-04-29 05:15:04'),
(199,200,'LEGACY/2025/000987',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-29 05:18:09','2025-04-29 05:18:09','Converted from legacy student record.','2025-04-29 05:18:09','2025-04-29 05:18:09'),
(200,201,'LEGACY/2024/000988',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-29 05:23:02','2025-04-29 05:23:02','Converted from legacy student record.','2025-04-29 05:23:02','2025-04-29 05:23:02'),
(201,202,'LEGACY/2025/000989',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-29 05:27:12','2025-04-29 05:27:12','Converted from legacy student record.','2025-04-29 05:27:12','2025-04-29 05:27:12'),
(202,203,'LEGACY/2025/000990',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-29 05:29:59','2025-04-29 05:29:59','Converted from legacy student record.','2025-04-29 05:29:59','2025-04-29 05:29:59'),
(203,204,'LEGACY/2024/000991',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-29 05:35:43','2025-04-29 05:35:43','Converted from legacy student record.','2025-04-29 05:35:43','2025-04-29 05:35:43'),
(204,205,'LEGACY/2024/000992',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-29 05:38:14','2025-04-29 05:38:14','Converted from legacy student record.','2025-04-29 05:38:14','2025-04-29 05:38:14'),
(205,206,'LEGACY/2024/000993',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-29 05:41:00','2025-04-29 05:41:00','Converted from legacy student record.','2025-04-29 05:41:00','2025-04-29 05:41:00'),
(206,207,'LEGACY/2024/000994',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-29 05:44:26','2025-04-29 05:44:26','Converted from legacy student record.','2025-04-29 05:44:26','2025-04-29 05:44:26'),
(207,208,'LEGACY/2024/000995',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-29 05:48:08','2025-04-29 05:48:08','Converted from legacy student record.','2025-04-29 05:48:08','2025-04-29 05:48:08'),
(208,209,'LEGACY/2024/000996',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-29 05:51:27','2025-04-29 05:51:27','Converted from legacy student record.','2025-04-29 05:51:27','2025-04-29 05:51:27'),
(209,210,'LEGACY/2024/000997',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-29 05:53:56','2025-04-29 05:53:56','Converted from legacy student record.','2025-04-29 05:53:56','2025-04-29 05:53:56'),
(210,211,'LEGACY/2024/000998',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-29 05:57:20','2025-04-29 05:57:20','Converted from legacy student record.','2025-04-29 05:57:20','2025-04-29 05:57:20'),
(211,212,'LEGACY/2025/000999',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-29 06:00:56','2025-04-29 06:00:56','Converted from legacy student record.','2025-04-29 06:00:56','2025-04-29 06:00:56'),
(212,213,'LEGACY/2024/001000',1,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-29 06:04:01','2025-04-29 06:04:01','Converted from legacy student record.','2025-04-29 06:04:01','2025-04-29 06:04:01'),
(213,214,'LEGACY/2024/001001',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-29 06:07:54','2025-04-29 06:07:54','Converted from legacy student record.','2025-04-29 06:07:54','2025-04-29 06:07:54'),
(214,215,'LEGACY/2024/001002',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-29 06:10:21','2025-04-29 06:10:21','Converted from legacy student record.','2025-04-29 06:10:21','2025-04-29 06:10:21'),
(215,216,'LEGACY/2024/001003',1,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-29 06:13:42','2025-04-29 06:13:42','Converted from legacy student record.','2025-04-29 06:13:42','2025-04-29 06:13:42'),
(216,217,'LEGACY/2024/001004',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-29 06:16:20','2025-04-29 06:16:20','Converted from legacy student record.','2025-04-29 06:16:20','2025-04-29 06:16:20'),
(217,218,'LEGACY/2024/001005',1,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-30 04:35:13','2025-04-30 04:35:13','Converted from legacy student record.','2025-04-30 04:35:13','2025-04-30 04:35:13'),
(218,219,'LEGACY/2024/001006',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-30 04:39:26','2025-04-30 04:39:26','Converted from legacy student record.','2025-04-30 04:39:26','2025-04-30 04:39:26'),
(219,220,'LEGACY/2024/001007',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-30 04:43:10','2025-04-30 04:43:10','Converted from legacy student record.','2025-04-30 04:43:10','2025-04-30 04:43:10'),
(220,221,'LEGACY/2024/001008',1,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-30 04:46:56','2025-04-30 04:46:56','Converted from legacy student record.','2025-04-30 04:46:56','2025-04-30 04:46:56'),
(221,222,'LEGACY/2024/001009',1,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-30 04:50:21','2025-04-30 04:50:21','Converted from legacy student record.','2025-04-30 04:50:21','2025-04-30 04:50:21'),
(222,223,'LEGACY/2024/001010',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-30 04:52:50','2025-04-30 04:52:50','Converted from legacy student record.','2025-04-30 04:52:50','2025-04-30 04:52:50'),
(223,224,'LEGACY/2024/001011',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-30 04:55:49','2025-04-30 04:55:49','Converted from legacy student record.','2025-04-30 04:55:49','2025-04-30 04:55:49'),
(224,225,'LEGACY/2024/001012',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-30 04:58:22','2025-04-30 04:58:22','Converted from legacy student record.','2025-04-30 04:58:22','2025-04-30 04:58:22'),
(225,226,'LEGACY/2024/001013',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-30 05:00:57','2025-04-30 05:00:57','Converted from legacy student record.','2025-04-30 05:00:57','2025-04-30 05:00:57'),
(226,227,'LEGACY/2024/001014',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-30 05:04:15','2025-04-30 05:04:15','Converted from legacy student record.','2025-04-30 05:04:15','2025-04-30 05:04:15'),
(227,228,'LEGACY/2024/001015',13,1,5,'accepted',NULL,'Male',NULL,NULL,NULL,NULL,'2025-04-30 05:09:10','2025-04-30 05:09:10','Converted from legacy student record.','2025-04-30 05:09:10','2025-04-30 05:09:10'),
(228,229,'LEGACY/2024/001016',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-30 05:12:03','2025-04-30 05:12:03','Converted from legacy student record.','2025-04-30 05:12:03','2025-04-30 05:12:03'),
(229,230,'LEGACY/2024/001017',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-30 05:17:36','2025-04-30 05:17:36','Converted from legacy student record.','2025-04-30 05:17:36','2025-04-30 05:17:36'),
(230,231,'LEGACY/2024/001018',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-30 05:23:51','2025-04-30 05:23:51','Converted from legacy student record.','2025-04-30 05:23:51','2025-04-30 05:23:51'),
(231,232,'LEGACY/2024/001019',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-30 05:26:31','2025-04-30 05:26:31','Converted from legacy student record.','2025-04-30 05:26:31','2025-04-30 05:26:31'),
(232,233,'LEGACY/2024/001020',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-30 05:29:12','2025-04-30 05:29:12','Converted from legacy student record.','2025-04-30 05:29:12','2025-04-30 05:29:12'),
(233,234,'LEGACY/2024/001021',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-30 05:32:07','2025-04-30 05:32:07','Converted from legacy student record.','2025-04-30 05:32:07','2025-04-30 05:32:07'),
(234,235,'LEGACY/2024/001022',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-30 05:34:38','2025-04-30 05:34:38','Converted from legacy student record.','2025-04-30 05:34:38','2025-04-30 05:34:38'),
(235,236,'LEGACY/2024/001023',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-30 05:38:01','2025-04-30 05:38:01','Converted from legacy student record.','2025-04-30 05:38:01','2025-04-30 05:38:01'),
(236,237,'LEGACY/2024/001024',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-30 05:40:37','2025-04-30 05:40:37','Converted from legacy student record.','2025-04-30 05:40:37','2025-04-30 05:40:37'),
(237,238,'LEGACY/2024/001025',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-30 05:49:45','2025-04-30 05:49:45','Converted from legacy student record.','2025-04-30 05:49:45','2025-04-30 05:49:45'),
(238,239,'LEGACY/2024/001026',3,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-30 05:53:35','2025-04-30 05:53:35','Converted from legacy student record.','2025-04-30 05:53:35','2025-04-30 05:53:35'),
(239,240,'LEGACY/2024/001027',3,1,5,'accepted',NULL,'Male',NULL,NULL,NULL,NULL,'2025-04-30 05:56:00','2025-04-30 05:56:00','Converted from legacy student record.','2025-04-30 05:56:00','2025-04-30 05:56:00'),
(240,241,'LEGACY/2025/001028',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-30 05:58:40','2025-04-30 05:58:40','Converted from legacy student record.','2025-04-30 05:58:40','2025-04-30 05:58:40'),
(241,242,'LEGACY/2025/001029',13,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-30 06:11:40','2025-04-30 06:11:40','Converted from legacy student record.','2025-04-30 06:11:40','2025-04-30 06:11:40'),
(242,243,'LEGACY/2025/001030',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-04-30 07:55:02','2025-04-30 07:55:02','Converted from legacy student record.','2025-04-30 07:55:02','2025-04-30 07:55:02'),
(243,244,'LEGACY/2025/001032',13,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-05-02 06:01:08','2025-05-02 06:01:08','Converted from legacy student record.','2025-05-02 06:01:08','2025-05-02 06:01:08'),
(244,245,'LEGACY/2024/001033',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-05-02 06:08:10','2025-05-02 06:08:10','Converted from legacy student record.','2025-05-02 06:08:10','2025-05-02 06:08:10'),
(245,246,'LEGACY/2024/001034',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-05-02 06:12:06','2025-05-02 06:12:06','Converted from legacy student record.','2025-05-02 06:12:06','2025-05-02 06:12:06'),
(246,247,'LEGACY/2025/001035',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-05-02 06:41:47','2025-05-02 06:41:47','Converted from legacy student record.','2025-05-02 06:41:47','2025-05-02 06:41:47'),
(247,248,'LEGACY/2024/001036',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-05-02 06:45:00','2025-05-02 06:45:00','Converted from legacy student record.','2025-05-02 06:45:00','2025-05-02 06:45:00'),
(248,249,'LEGACY/2024/001037',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-05-02 07:08:47','2025-05-02 07:08:47','Converted from legacy student record.','2025-05-02 07:08:47','2025-05-02 07:08:47'),
(249,250,'LEGACY/2024/001038',1,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-05-02 07:40:34','2025-05-02 07:40:34','Converted from legacy student record.','2025-05-02 07:40:34','2025-05-02 07:40:34'),
(250,251,'LEGACY/2025/001039',15,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-05-02 08:11:12','2025-05-02 08:11:12','Converted from legacy student record.','2025-05-02 08:11:12','2025-05-02 08:11:12');
INSERT INTO `applications` (`id`,`user_id`,`application_no`,`programme_id`,`campus_id`,`entry_session_id`,`status`,`date_of_birth`,`gender`,`nationality`,`state`,`lga`,`address`,`submitted_at`,`decided_at`,`decision_note`,`created_at`,`updated_at`) VALUES
(251,252,'LEGACY/2024/001040',3,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-05-05 06:05:28','2025-05-05 06:05:28','Converted from legacy student record.','2025-05-05 06:05:28','2025-05-05 06:05:28'),
(252,253,'LEGACY/2024/001041',3,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-05-05 06:07:48','2025-05-05 06:07:48','Converted from legacy student record.','2025-05-05 06:07:48','2025-05-05 06:07:48'),
(253,254,'LEGACY/2025/001042',4,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-05-05 06:18:58','2025-05-05 06:18:58','Converted from legacy student record.','2025-05-05 06:18:58','2025-05-05 06:18:58'),
(254,255,'LEGACY/2025/001043',3,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-05-05 06:32:13','2025-05-05 06:32:13','Converted from legacy student record.','2025-05-05 06:32:13','2025-05-05 06:32:13'),
(255,256,'LEGACY/2024/001044',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-05-06 04:54:02','2025-05-06 04:54:02','Converted from legacy student record.','2025-05-06 04:54:02','2025-05-06 04:54:02'),
(256,257,'LEGACY/2024/001045',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-05-06 04:59:11','2025-05-06 04:59:11','Converted from legacy student record.','2025-05-06 04:59:11','2025-05-06 04:59:11'),
(257,258,'LEGACY/2024/001046',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-05-06 05:03:47','2025-05-06 05:03:47','Converted from legacy student record.','2025-05-06 05:03:47','2025-05-06 05:03:47'),
(258,259,'LEGACY/2024/001047',13,1,5,'accepted',NULL,'Male',NULL,NULL,NULL,NULL,'2025-05-06 05:06:20','2025-05-06 05:06:20','Converted from legacy student record.','2025-05-06 05:06:20','2025-05-06 05:06:20'),
(259,260,'LEGACY/2024/001048',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-05-06 05:08:24','2025-05-06 05:08:24','Converted from legacy student record.','2025-05-06 05:08:24','2025-05-06 05:08:24'),
(260,261,'LEGACY/2024/001049',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-05-06 06:21:41','2025-05-06 06:21:41','Converted from legacy student record.','2025-05-06 06:21:41','2025-05-06 06:21:41'),
(261,262,'LEGACY/2024/001050',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-05-06 06:25:24','2025-05-06 06:25:24','Converted from legacy student record.','2025-05-06 06:25:24','2025-05-06 06:25:24'),
(262,263,'LEGACY/2024/001051',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-05-06 06:29:50','2025-05-06 06:29:50','Converted from legacy student record.','2025-05-06 06:29:50','2025-05-06 06:29:50'),
(263,264,'LEGACY/2024/001052',13,1,5,'accepted',NULL,'Male',NULL,NULL,NULL,NULL,'2025-05-06 06:32:46','2025-05-06 06:32:46','Converted from legacy student record.','2025-05-06 06:32:46','2025-05-06 06:32:46'),
(264,265,'LEGACY/2024/001053',13,1,5,'accepted',NULL,'Male',NULL,NULL,NULL,NULL,'2025-05-06 06:35:10','2025-05-06 06:35:10','Converted from legacy student record.','2025-05-06 06:35:10','2025-05-06 06:35:10'),
(265,266,'LEGACY/2025/001054',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-05-06 06:42:46','2025-05-06 06:42:46','Converted from legacy student record.','2025-05-06 06:42:46','2025-05-06 06:42:46'),
(266,267,'LEGACY/2025/001055',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-05-06 07:29:40','2025-05-06 07:29:40','Converted from legacy student record.','2025-05-06 07:29:40','2025-05-06 07:29:40'),
(267,268,'LEGACY/2025/001056',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-05-06 07:32:04','2025-05-06 07:32:04','Converted from legacy student record.','2025-05-06 07:32:04','2025-05-06 07:32:04'),
(268,269,'LEGACY/2025/001057',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-05-06 07:34:41','2025-05-06 07:34:41','Converted from legacy student record.','2025-05-06 07:34:41','2025-05-06 07:34:41'),
(269,270,'LEGACY/2025/001058',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-05-06 07:51:50','2025-05-06 07:51:50','Converted from legacy student record.','2025-05-06 07:51:50','2025-05-06 07:51:50'),
(270,271,'LEGACY/2025/001059',4,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-05-09 05:14:03','2025-05-09 05:14:03','Converted from legacy student record.','2025-05-09 05:14:03','2025-05-09 05:14:03'),
(271,272,'LEGACY/2025/001060',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-05-09 06:30:56','2025-05-09 06:30:56','Converted from legacy student record.','2025-05-09 06:30:56','2025-05-09 06:30:56'),
(272,273,'LEGACY/2025/001061',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-05-14 09:48:38','2025-05-14 09:48:38','Converted from legacy student record.','2025-05-14 09:48:38','2025-05-14 09:48:38'),
(273,274,'LEGACY/2025/001062',13,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-05-19 03:45:10','2025-05-19 03:45:10','Converted from legacy student record.','2025-05-19 03:45:10','2025-05-19 03:45:10'),
(274,275,'LEGACY/2024/001063',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-05-23 07:20:20','2025-05-23 07:20:20','Converted from legacy student record.','2025-05-23 07:20:20','2025-05-23 07:20:20'),
(275,276,'LEGACY/2024/001064',1,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-05-23 07:24:24','2025-05-23 07:24:24','Converted from legacy student record.','2025-05-23 07:24:24','2025-05-23 07:24:24'),
(276,277,'LEGACY/2024/001065',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-05-23 07:38:54','2025-05-23 07:38:54','Converted from legacy student record.','2025-05-23 07:38:54','2025-05-23 07:38:54'),
(277,278,'LEGACY/2024/001066',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-06-05 07:34:42','2025-06-05 07:34:42','Converted from legacy student record.','2025-06-05 07:34:42','2025-06-05 07:34:42'),
(278,279,'LEGACY/2024/001067',13,1,5,'accepted',NULL,'Male',NULL,NULL,NULL,NULL,'2025-06-05 07:38:25','2025-06-05 07:38:25','Converted from legacy student record.','2025-06-05 07:38:25','2025-06-05 07:38:25'),
(279,280,'LEGACY/2024/001068',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-06-05 07:41:17','2025-06-05 07:41:17','Converted from legacy student record.','2025-06-05 07:41:17','2025-06-05 07:41:17'),
(280,281,'LEGACY/2024/001069',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-06-05 07:44:40','2025-06-05 07:44:40','Converted from legacy student record.','2025-06-05 07:44:40','2025-06-05 07:44:40'),
(281,282,'LEGACY/2024/001070',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-06-24 08:44:58','2025-06-24 08:44:58','Converted from legacy student record.','2025-06-24 08:44:58','2025-06-24 08:44:58'),
(282,283,'LEGACY/2024/001071',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-06-25 05:36:25','2025-06-25 05:36:25','Converted from legacy student record.','2025-06-25 05:36:25','2025-06-25 05:36:25'),
(283,284,'LEGACY/2024/001072',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-06-25 08:03:05','2025-06-25 08:03:05','Converted from legacy student record.','2025-06-25 08:03:05','2025-06-25 08:03:05'),
(284,285,'LEGACY/2024/001073',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-06-25 08:06:12','2025-06-25 08:06:12','Converted from legacy student record.','2025-06-25 08:06:12','2025-06-25 08:06:12'),
(285,286,'LEGACY/2024/001074',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-06-25 08:08:53','2025-06-25 08:08:53','Converted from legacy student record.','2025-06-25 08:08:53','2025-06-25 08:08:53'),
(286,287,'LEGACY/2024/001075',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-06-25 08:11:26','2025-06-25 08:11:26','Converted from legacy student record.','2025-06-25 08:11:26','2025-06-25 08:11:26'),
(287,288,'LEGACY/2024/001076',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-06-25 08:14:51','2025-06-25 08:14:51','Converted from legacy student record.','2025-06-25 08:14:51','2025-06-25 08:14:51'),
(288,289,'LEGACY/2024/001077',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-06-25 08:17:22','2025-06-25 08:17:22','Converted from legacy student record.','2025-06-25 08:17:22','2025-06-25 08:17:22'),
(289,290,'LEGACY/2024/001078',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-06-25 08:20:25','2025-06-25 08:20:25','Converted from legacy student record.','2025-06-25 08:20:25','2025-06-25 08:20:25'),
(290,291,'LEGACY/2024/001079',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-06-25 08:23:29','2025-06-25 08:23:29','Converted from legacy student record.','2025-06-25 08:23:29','2025-06-25 08:23:29'),
(291,292,'LEGACY/2024/001080',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-06-25 08:26:31','2025-06-25 08:26:31','Converted from legacy student record.','2025-06-25 08:26:31','2025-06-25 08:26:31'),
(292,293,'LEGACY/2024/001081',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-06-25 08:30:02','2025-06-25 08:30:02','Converted from legacy student record.','2025-06-25 08:30:02','2025-06-25 08:30:02'),
(293,294,'LEGACY/2024/001082',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-06-25 08:32:58','2025-06-25 08:32:58','Converted from legacy student record.','2025-06-25 08:32:58','2025-06-25 08:32:58'),
(294,295,'LEGACY/2024/001083',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-06-27 04:46:53','2025-06-27 04:46:53','Converted from legacy student record.','2025-06-27 04:46:53','2025-06-27 04:46:53'),
(295,296,'LEGACY/2024/001084',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-06-27 04:49:14','2025-06-27 04:49:14','Converted from legacy student record.','2025-06-27 04:49:14','2025-06-27 04:49:14'),
(296,297,'LEGACY/2024/001085',13,1,5,'accepted',NULL,'Male',NULL,NULL,NULL,NULL,'2025-06-27 05:14:30','2025-06-27 05:14:30','Converted from legacy student record.','2025-06-27 05:14:30','2025-06-27 05:14:30'),
(297,298,'LEGACY/2024/001086',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-06-27 05:18:14','2025-06-27 05:18:14','Converted from legacy student record.','2025-06-27 05:18:14','2025-06-27 05:18:14'),
(298,299,'LEGACY/2024/001087',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-06-27 05:24:38','2025-06-27 05:24:38','Converted from legacy student record.','2025-06-27 05:24:38','2025-06-27 05:24:38'),
(299,300,'LEGACY/2024/001088',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-06-27 05:27:57','2025-06-27 05:27:57','Converted from legacy student record.','2025-06-27 05:27:57','2025-06-27 05:27:57'),
(300,301,'LEGACY/2024/001089',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-06-27 05:45:44','2025-06-27 05:45:44','Converted from legacy student record.','2025-06-27 05:45:44','2025-06-27 05:45:44'),
(301,302,'LEGACY/2024/001090',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-06-27 05:48:35','2025-06-27 05:48:35','Converted from legacy student record.','2025-06-27 05:48:35','2025-06-27 05:48:35'),
(302,303,'LEGACY/2024/001091',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-06-27 05:52:31','2025-06-27 05:52:31','Converted from legacy student record.','2025-06-27 05:52:31','2025-06-27 05:52:31'),
(303,304,'LEGACY/2024/001092',13,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-06-27 06:32:27','2025-06-27 06:32:27','Converted from legacy student record.','2025-06-27 06:32:27','2025-06-27 06:32:27'),
(304,305,'LEGACY/2024/001093',13,1,5,'accepted',NULL,'Male',NULL,NULL,NULL,NULL,'2025-06-27 06:35:57','2025-06-27 06:35:57','Converted from legacy student record.','2025-06-27 06:35:57','2025-06-27 06:35:57'),
(305,306,'LEGACY/2023/001096',4,1,4,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-09-08 07:09:23','2025-09-08 07:09:23','Converted from legacy student record.','2025-09-08 07:09:23','2025-09-08 07:09:23'),
(306,307,'LEGACY/2025/001097',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-09-09 08:21:06','2025-09-09 08:21:06','Converted from legacy student record.','2025-09-09 08:21:06','2025-09-09 08:21:06'),
(307,308,'LEGACY/2023/001098',3,1,4,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-09-10 06:57:32','2025-09-10 06:57:32','Converted from legacy student record.','2025-09-10 06:57:32','2025-09-10 06:57:32'),
(308,309,'LEGACY/2025/001099',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-09-10 08:42:53','2025-09-10 08:42:53','Converted from legacy student record.','2025-09-10 08:42:53','2025-09-10 08:42:53'),
(309,310,'LEGACY/2025/001100',9,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-09-17 07:16:26','2025-09-17 07:16:26','Converted from legacy student record.','2025-09-17 07:16:26','2025-09-17 07:16:26'),
(310,311,'LEGACY/2025/001101',9,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-09-17 07:30:55','2025-09-17 07:30:55','Converted from legacy student record.','2025-09-17 07:30:55','2025-09-17 07:30:55'),
(311,312,'LEGACY/2025/001102',9,1,6,'accepted',NULL,'Male',NULL,NULL,NULL,NULL,'2025-09-17 07:39:50','2025-09-17 07:39:50','Converted from legacy student record.','2025-09-17 07:39:50','2025-09-17 07:39:50'),
(312,313,'LEGACY/2025/001103',9,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-09-17 07:48:30','2025-09-17 07:48:30','Converted from legacy student record.','2025-09-17 07:48:30','2025-09-17 07:48:30'),
(313,314,'LEGACY/2025/001104',9,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-09-17 07:56:22','2025-09-17 07:56:22','Converted from legacy student record.','2025-09-17 07:56:22','2025-09-17 07:56:22'),
(314,315,'LEGACY/2025/001105',9,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-09-17 08:17:44','2025-09-17 08:17:44','Converted from legacy student record.','2025-09-17 08:17:44','2025-09-17 08:17:44'),
(315,316,'LEGACY/2025/001108',13,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-10-17 07:51:44','2025-10-17 07:51:44','Converted from legacy student record.','2025-10-17 07:51:44','2025-10-17 07:51:44'),
(316,317,'LEGACY/2025/001111',13,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-10-22 08:44:34','2025-10-22 08:44:34','Converted from legacy student record.','2025-10-22 08:44:34','2025-10-22 08:44:34'),
(317,318,'LEGACY/2025/001112',15,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-10-22 09:17:19','2025-10-22 09:17:19','Converted from legacy student record.','2025-10-22 09:17:19','2025-10-22 09:17:19'),
(318,319,'LEGACY/2025/001116',13,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-10-27 10:13:22','2025-10-27 10:13:22','Converted from legacy student record.','2025-10-27 10:13:22','2025-10-27 10:13:22'),
(319,320,'LEGACY/2025/001117',1,1,6,'accepted',NULL,'Male',NULL,NULL,NULL,NULL,'2025-10-27 10:43:29','2025-10-27 10:43:29','Converted from legacy student record.','2025-10-27 10:43:29','2025-10-27 10:43:29'),
(320,321,'LEGACY/2025/001118',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-10-29 04:48:19','2025-10-29 04:48:19','Converted from legacy student record.','2025-10-29 04:48:19','2025-10-29 04:48:19'),
(321,322,'LEGACY/2025/001119',4,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-10-30 07:17:21','2025-10-30 07:17:21','Converted from legacy student record.','2025-10-30 07:17:21','2025-10-30 07:17:21'),
(322,323,'LEGACY/2025/001121',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-11-06 08:00:14','2025-11-06 08:00:14','Converted from legacy student record.','2025-11-06 08:00:14','2025-11-06 08:00:14'),
(323,324,'LEGACY/2025/001122',1,1,6,'accepted',NULL,'Male',NULL,NULL,NULL,NULL,'2025-11-10 04:30:19','2025-11-10 04:30:19','Converted from legacy student record.','2025-11-10 04:30:19','2025-11-10 04:30:19'),
(324,325,'LEGACY/2025/001123',1,1,6,'accepted',NULL,'Male',NULL,NULL,NULL,NULL,'2025-11-10 04:34:40','2025-11-10 04:34:40','Converted from legacy student record.','2025-11-10 04:34:40','2025-11-10 04:34:40'),
(325,326,'LEGACY/2025/001126',4,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-11-19 03:18:28','2025-11-19 03:18:28','Converted from legacy student record.','2025-11-19 03:18:28','2025-11-19 03:18:28'),
(326,327,'LEGACY/2025/001127',4,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-11-19 03:25:11','2025-11-19 03:25:11','Converted from legacy student record.','2025-11-19 03:25:11','2025-11-19 03:25:11'),
(327,328,'LEGACY/2025/001129',4,1,6,'accepted',NULL,'Male',NULL,NULL,NULL,NULL,'2025-11-20 07:47:31','2025-11-20 07:47:31','Converted from legacy student record.','2025-11-20 07:47:31','2025-11-20 07:47:31'),
(328,329,'LEGACY/2025/001130',4,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-11-20 08:02:39','2025-11-20 08:02:39','Converted from legacy student record.','2025-11-20 08:02:39','2025-11-20 08:02:39'),
(329,330,'LEGACY/2025/001131',4,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-11-20 08:11:12','2025-11-20 08:11:12','Converted from legacy student record.','2025-11-20 08:11:12','2025-11-20 08:11:12'),
(330,331,'LEGACY/2025/001132',4,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-11-20 08:17:22','2025-11-20 08:17:22','Converted from legacy student record.','2025-11-20 08:17:22','2025-11-20 08:17:22'),
(331,332,'LEGACY/2025/001133',15,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-11-20 08:41:14','2025-11-20 08:41:14','Converted from legacy student record.','2025-11-20 08:41:14','2025-11-20 08:41:14'),
(332,333,'LEGACY/2025/001134',15,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-11-20 09:47:49','2025-11-20 09:47:49','Converted from legacy student record.','2025-11-20 09:47:49','2025-11-20 09:47:49'),
(333,334,'LEGACY/2025/001135',15,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-11-20 10:00:17','2025-11-20 10:00:17','Converted from legacy student record.','2025-11-20 10:00:17','2025-11-20 10:00:17'),
(334,335,'LEGACY/2025/001136',15,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-11-21 05:40:08','2025-11-21 05:40:08','Converted from legacy student record.','2025-11-21 05:40:08','2025-11-21 05:40:08'),
(335,336,'LEGACY/2025/001137',15,1,6,'accepted',NULL,'Male',NULL,NULL,NULL,NULL,'2025-11-21 05:45:55','2025-11-21 05:45:55','Converted from legacy student record.','2025-11-21 05:45:55','2025-11-21 05:45:55'),
(336,337,'LEGACY/2025/001138',4,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-11-21 06:29:45','2025-11-21 06:29:45','Converted from legacy student record.','2025-11-21 06:29:45','2025-11-21 06:29:45'),
(337,338,'LEGACY/2025/001139',1,1,6,'accepted',NULL,'Male',NULL,NULL,NULL,NULL,'2025-11-21 06:58:03','2025-11-21 06:58:03','Converted from legacy student record.','2025-11-21 06:58:03','2025-11-21 06:58:03'),
(338,339,'LEGACY/2025/001140',4,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-11-21 07:05:09','2025-11-21 07:05:09','Converted from legacy student record.','2025-11-21 07:05:09','2025-11-21 07:05:09'),
(339,340,'LEGACY/2025/001141',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-11-21 07:11:11','2025-11-21 07:11:11','Converted from legacy student record.','2025-11-21 07:11:11','2025-11-21 07:11:11'),
(340,341,'LEGACY/2025/001142',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-11-21 07:21:13','2025-11-21 07:21:13','Converted from legacy student record.','2025-11-21 07:21:13','2025-11-21 07:21:13'),
(341,342,'LEGACY/2025/001144',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-11-24 04:25:20','2025-11-24 04:25:20','Converted from legacy student record.','2025-11-24 04:25:20','2025-11-24 04:25:20'),
(342,343,'LEGACY/2025/001145',1,1,6,'accepted',NULL,'Male',NULL,NULL,NULL,NULL,'2025-11-24 04:47:17','2025-11-24 04:47:17','Converted from legacy student record.','2025-11-24 04:47:17','2025-11-24 04:47:17'),
(343,344,'LEGACY/2025/001146',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-11-24 05:00:56','2025-11-24 05:00:56','Converted from legacy student record.','2025-11-24 05:00:56','2025-11-24 05:00:56'),
(344,345,'LEGACY/2025/001147',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-11-24 05:05:27','2025-11-24 05:05:27','Converted from legacy student record.','2025-11-24 05:05:27','2025-11-24 05:05:27'),
(345,346,'LEGACY/2025/001148',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-11-24 06:16:59','2025-11-24 06:16:59','Converted from legacy student record.','2025-11-24 06:16:59','2025-11-24 06:16:59'),
(346,347,'LEGACY/2025/001149',4,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-11-24 07:20:14','2025-11-24 07:20:14','Converted from legacy student record.','2025-11-24 07:20:14','2025-11-24 07:20:14'),
(347,348,'LEGACY/2025/001150',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-11-24 09:04:54','2025-11-24 09:04:54','Converted from legacy student record.','2025-11-24 09:04:54','2025-11-24 09:04:54'),
(348,349,'LEGACY/2025/001151',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-11-24 09:10:44','2025-11-24 09:10:44','Converted from legacy student record.','2025-11-24 09:10:44','2025-11-24 09:10:44'),
(349,350,'LEGACY/2025/001152',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-11-25 08:04:21','2025-11-25 08:04:21','Converted from legacy student record.','2025-11-25 08:04:21','2025-11-25 08:04:21'),
(350,351,'LEGACY/2025/001153',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-11-26 03:14:18','2025-11-26 03:14:18','Converted from legacy student record.','2025-11-26 03:14:18','2025-11-26 03:14:18'),
(351,352,'LEGACY/2025/001154',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-11-26 04:16:35','2025-11-26 04:16:35','Converted from legacy student record.','2025-11-26 04:16:35','2025-11-26 04:16:35'),
(352,353,'LEGACY/2025/001155',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-11-26 04:48:24','2025-11-26 04:48:24','Converted from legacy student record.','2025-11-26 04:48:24','2025-11-26 04:48:24'),
(353,354,'LEGACY/2025/001156',9,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-11-26 04:56:05','2025-11-26 04:56:05','Converted from legacy student record.','2025-11-26 04:56:05','2025-11-26 04:56:05'),
(354,355,'LEGACY/2025/001157',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-11-26 07:14:29','2025-11-26 07:14:29','Converted from legacy student record.','2025-11-26 07:14:29','2025-11-26 07:14:29'),
(355,356,'LEGACY/2025/001159',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-11-27 03:11:37','2025-11-27 03:11:37','Converted from legacy student record.','2025-11-27 03:11:37','2025-11-27 03:11:37'),
(356,357,'LEGACY/2025/001160',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-11-27 03:55:01','2025-11-27 03:55:01','Converted from legacy student record.','2025-11-27 03:55:01','2025-11-27 03:55:01'),
(357,358,'LEGACY/2025/001161',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-11-27 04:00:00','2025-11-27 04:00:00','Converted from legacy student record.','2025-11-27 04:00:00','2025-11-27 04:00:00'),
(358,359,'LEGACY/2025/001162',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-11-27 04:07:12','2025-11-27 04:07:12','Converted from legacy student record.','2025-11-27 04:07:12','2025-11-27 04:07:12'),
(359,360,'LEGACY/2025/001163',15,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-11-27 04:11:23','2025-11-27 04:11:23','Converted from legacy student record.','2025-11-27 04:11:23','2025-11-27 04:11:23'),
(360,361,'LEGACY/2025/001164',15,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-11-27 04:14:18','2025-11-27 04:14:18','Converted from legacy student record.','2025-11-27 04:14:18','2025-11-27 04:14:18'),
(361,362,'LEGACY/2025/001165',3,1,6,'accepted',NULL,'Male',NULL,NULL,NULL,NULL,'2025-11-27 08:08:29','2025-11-27 08:08:29','Converted from legacy student record.','2025-11-27 08:08:29','2025-11-27 08:08:29'),
(362,363,'LEGACY/2025/001166',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-11-28 03:27:00','2025-11-28 03:27:00','Converted from legacy student record.','2025-11-28 03:27:00','2025-11-28 03:27:00'),
(363,364,'LEGACY/2025/001167',4,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-11-28 03:30:42','2025-11-28 03:30:42','Converted from legacy student record.','2025-11-28 03:30:42','2025-11-28 03:30:42'),
(364,365,'LEGACY/2025/001168',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-11-28 03:54:56','2025-11-28 03:54:56','Converted from legacy student record.','2025-11-28 03:54:56','2025-11-28 03:54:56'),
(365,366,'LEGACY/2025/001169',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-11-28 04:01:58','2025-11-28 04:01:58','Converted from legacy student record.','2025-11-28 04:01:58','2025-11-28 04:01:58'),
(366,367,'LEGACY/2025/001170',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-11-28 04:59:48','2025-11-28 04:59:48','Converted from legacy student record.','2025-11-28 04:59:48','2025-11-28 04:59:48'),
(367,368,'LEGACY/2025/001171',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-12-01 05:48:39','2025-12-01 05:48:39','Converted from legacy student record.','2025-12-01 05:48:39','2025-12-01 05:48:39'),
(368,369,'LEGACY/2025/001172',9,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-12-01 06:02:03','2025-12-01 06:02:03','Converted from legacy student record.','2025-12-01 06:02:03','2025-12-01 06:02:03'),
(369,370,'LEGACY/2025/001173',9,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-12-01 06:13:09','2025-12-01 06:13:09','Converted from legacy student record.','2025-12-01 06:13:09','2025-12-01 06:13:09'),
(370,371,'LEGACY/2025/001174',3,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-12-02 03:40:57','2025-12-02 03:40:57','Converted from legacy student record.','2025-12-02 03:40:57','2025-12-02 03:40:57'),
(371,372,'LEGACY/2025/001175',3,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-12-02 04:36:25','2025-12-02 04:36:25','Converted from legacy student record.','2025-12-02 04:36:25','2025-12-02 04:36:25'),
(372,373,'LEGACY/2025/001176',3,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-12-02 04:40:06','2025-12-02 04:40:06','Converted from legacy student record.','2025-12-02 04:40:06','2025-12-02 04:40:06'),
(373,374,'LEGACY/2025/001177',3,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-12-02 04:58:03','2025-12-02 04:58:03','Converted from legacy student record.','2025-12-02 04:58:03','2025-12-02 04:58:03'),
(374,375,'LEGACY/2025/001178',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-12-02 06:04:13','2025-12-02 06:04:13','Converted from legacy student record.','2025-12-02 06:04:13','2025-12-02 06:04:13'),
(375,376,'LEGACY/2025/001179',3,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-12-02 06:37:05','2025-12-02 06:37:05','Converted from legacy student record.','2025-12-02 06:37:05','2025-12-02 06:37:05'),
(376,377,'LEGACY/2025/001180',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-12-02 07:02:40','2025-12-02 07:02:40','Converted from legacy student record.','2025-12-02 07:02:40','2025-12-02 07:02:40'),
(377,378,'LEGACY/2025/001181',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-12-02 07:31:14','2025-12-02 07:31:14','Converted from legacy student record.','2025-12-02 07:31:14','2025-12-02 07:31:14'),
(378,379,'LEGACY/2025/001182',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-12-02 07:38:58','2025-12-02 07:38:58','Converted from legacy student record.','2025-12-02 07:38:58','2025-12-02 07:38:58'),
(379,380,'LEGACY/2025/001183',15,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-12-02 07:46:49','2025-12-02 07:46:49','Converted from legacy student record.','2025-12-02 07:46:49','2025-12-02 07:46:49'),
(380,381,'LEGACY/2025/001184',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-12-02 08:10:27','2025-12-02 08:10:27','Converted from legacy student record.','2025-12-02 08:10:27','2025-12-02 08:10:27'),
(381,382,'LEGACY/2025/001185',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-12-02 08:18:51','2025-12-02 08:18:51','Converted from legacy student record.','2025-12-02 08:18:51','2025-12-02 08:18:51'),
(382,383,'LEGACY/2025/001186',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-12-02 08:38:59','2025-12-02 08:38:59','Converted from legacy student record.','2025-12-02 08:38:59','2025-12-02 08:38:59'),
(383,384,'LEGACY/2025/001188',9,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-12-02 08:56:01','2025-12-02 08:56:01','Converted from legacy student record.','2025-12-02 08:56:01','2025-12-02 08:56:01'),
(384,385,'LEGACY/2025/001189',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-12-02 09:03:07','2025-12-02 09:03:07','Converted from legacy student record.','2025-12-02 09:03:07','2025-12-02 09:03:07'),
(385,386,'LEGACY/2025/001190',4,1,6,'accepted',NULL,'Male',NULL,NULL,NULL,NULL,'2025-12-02 09:53:33','2025-12-02 09:53:33','Converted from legacy student record.','2025-12-02 09:53:33','2025-12-02 09:53:33'),
(386,387,'LEGACY/2025/001192',4,1,6,'accepted',NULL,'Male',NULL,NULL,NULL,NULL,'2025-12-02 10:08:27','2025-12-02 10:08:27','Converted from legacy student record.','2025-12-02 10:08:27','2025-12-02 10:08:27'),
(387,388,'LEGACY/2025/001193',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2025-12-03 08:00:04','2025-12-03 08:00:04','Converted from legacy student record.','2025-12-03 08:00:04','2025-12-03 08:00:04'),
(388,389,'LEGACY/2025/001202',9,1,6,'accepted',NULL,'Male',NULL,NULL,NULL,NULL,'2026-03-13 05:49:29','2026-03-13 05:49:29','Converted from legacy student record.','2026-03-13 05:49:29','2026-03-13 05:49:29'),
(389,390,'LEGACY/2025/001203',9,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2026-03-13 05:58:57','2026-03-13 05:58:57','Converted from legacy student record.','2026-03-13 05:58:57','2026-03-13 05:58:57'),
(390,391,'LEGACY/2025/001204',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2026-03-13 06:08:59','2026-03-13 06:08:59','Converted from legacy student record.','2026-03-13 06:08:59','2026-03-13 06:08:59'),
(391,392,'LEGACY/2025/001205',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2026-03-13 06:22:47','2026-03-13 06:22:47','Converted from legacy student record.','2026-03-13 06:22:47','2026-03-13 06:22:47'),
(392,393,'LEGACY/2025/001206',1,1,6,'accepted',NULL,'Male',NULL,NULL,NULL,NULL,'2026-03-13 06:33:30','2026-03-13 06:33:30','Converted from legacy student record.','2026-03-13 06:33:30','2026-03-13 06:33:30'),
(393,394,'LEGACY/2025/001207',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2026-03-13 06:44:04','2026-03-13 06:44:04','Converted from legacy student record.','2026-03-13 06:44:04','2026-03-13 06:44:04'),
(394,395,'LEGACY/2025/001208',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2026-03-13 07:11:38','2026-03-13 07:11:38','Converted from legacy student record.','2026-03-13 07:11:38','2026-03-13 07:11:38'),
(395,396,'LEGACY/2025/001210',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2026-03-13 08:28:40','2026-03-13 08:28:40','Converted from legacy student record.','2026-03-13 08:28:40','2026-03-13 08:28:40'),
(396,397,'LEGACY/2025/001211',9,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2026-03-13 08:45:31','2026-03-13 08:45:31','Converted from legacy student record.','2026-03-13 08:45:31','2026-03-13 08:45:31'),
(397,398,'LEGACY/2025/001212',9,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2026-03-13 09:35:43','2026-03-13 09:35:43','Converted from legacy student record.','2026-03-13 09:35:43','2026-03-13 09:35:43'),
(398,399,'LEGACY/2025/001213',9,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2026-03-13 09:47:42','2026-03-13 09:47:42','Converted from legacy student record.','2026-03-13 09:47:42','2026-03-13 09:47:42'),
(399,400,'LEGACY/2025/001214',4,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2026-03-13 09:55:45','2026-03-13 09:55:45','Converted from legacy student record.','2026-03-13 09:55:45','2026-03-13 09:55:45'),
(400,401,'LEGACY/2025/001215',4,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2026-03-13 11:24:05','2026-03-13 11:24:05','Converted from legacy student record.','2026-03-13 11:24:05','2026-03-13 11:24:05'),
(401,402,'LEGACY/2025/001216',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2026-03-13 11:38:14','2026-03-13 11:38:14','Converted from legacy student record.','2026-03-13 11:38:14','2026-03-13 11:38:14'),
(402,403,'LEGACY/2025/001217',4,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2026-04-02 05:45:12','2026-04-02 05:45:12','Converted from legacy student record.','2026-04-02 05:45:12','2026-04-02 05:45:12'),
(403,404,'LEGACY/2025/001218',3,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2026-04-23 08:38:56','2026-04-23 08:38:56','Converted from legacy student record.','2026-04-23 08:38:56','2026-04-23 08:38:56'),
(404,405,'LEGACY/2025/001219',3,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2026-04-24 08:29:06','2026-04-24 08:29:06','Converted from legacy student record.','2026-04-24 08:29:06','2026-04-24 08:29:06'),
(405,406,'LEGACY/2025/001220',15,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2026-04-24 08:40:54','2026-04-24 08:40:54','Converted from legacy student record.','2026-04-24 08:40:54','2026-04-24 08:40:54'),
(406,407,'LEGACY/2025/001221',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2026-04-24 09:33:16','2026-04-24 09:33:16','Converted from legacy student record.','2026-04-24 09:33:16','2026-04-24 09:33:16'),
(407,408,'LEGACY/2025/001222',15,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2026-04-24 10:09:47','2026-04-24 10:09:47','Converted from legacy student record.','2026-04-24 10:09:47','2026-04-24 10:09:47'),
(408,409,'LEGACY/2025/001223',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2026-04-27 07:55:29','2026-04-27 07:55:29','Converted from legacy student record.','2026-04-27 07:55:29','2026-04-27 07:55:29'),
(409,410,'LEGACY/2025/001224',4,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2026-04-30 07:56:18','2026-04-30 07:56:18','Converted from legacy student record.','2026-04-30 07:56:18','2026-04-30 07:56:18'),
(410,411,'LEGACY/2024/001225',4,1,5,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2026-05-01 10:15:28','2026-05-01 10:15:28','Converted from legacy student record.','2026-05-01 10:15:28','2026-05-01 10:15:28'),
(411,412,'LEGACY/2025/001226',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2026-05-01 10:48:26','2026-05-01 10:48:26','Converted from legacy student record.','2026-05-01 10:48:26','2026-05-01 10:48:26'),
(412,413,'LEGACY/2025/001227',1,1,6,'accepted',NULL,'Male',NULL,NULL,NULL,NULL,'2026-05-01 10:52:35','2026-05-01 10:52:35','Converted from legacy student record.','2026-05-01 10:52:35','2026-05-01 10:52:35'),
(413,414,'LEGACY/2025/001228',1,1,6,'accepted',NULL,'Female',NULL,NULL,NULL,NULL,'2026-05-01 11:30:42','2026-05-01 11:30:42','Converted from legacy student record.','2026-05-01 11:30:42','2026-05-01 11:30:42');

-- application_qualifications: 0 records


-- students: 413 records
INSERT INTO `students` (`id`,`user_id`,`application_id`,`matric_no`,`programme_id`,`campus_id`,`admission_session_id`,`current_level`,`category`,`status`,`legacy_id`) VALUES
(1,2,1,'202404001',1,1,6,300,'regular','active','768'),
(2,3,2,'202008001',14,1,6,300,'regular','active','769'),
(3,4,3,'PHT/UN/24017',3,1,6,300,'regular','active','770'),
(4,5,4,'MHT/UN/24036',13,1,6,300,'regular','active','771'),
(5,6,5,'MHT/UN/24022',13,1,6,300,'regular','active','772'),
(6,7,6,'MHT/UN/24031',13,1,6,300,'regular','active','773'),
(7,8,7,'MHT/UN/24026',13,1,6,300,'regular','active','775'),
(8,9,8,'MHT/UN/24013',13,1,6,300,'regular','active','776'),
(9,10,9,'MHT/UN/24033',13,1,6,300,'regular','active','777'),
(10,11,10,'MLT/UN/24001',4,1,6,300,'regular','active','778'),
(11,12,11,'CHEW/UN/24005',1,1,5,300,'regular','active','780'),
(12,13,12,'MLT/UN/24011',4,1,6,300,'regular','active','781'),
(13,14,13,'MHT/UN/24023',13,1,6,300,'regular','active','782'),
(14,15,14,'MHT/UN/24035',13,1,6,300,'regular','active','783'),
(15,16,15,'MHT/UN/24029',13,1,6,300,'regular','active','784'),
(16,17,16,'MLT/UN/24010',4,1,6,300,'regular','active','785'),
(17,18,17,'MHT/UN/24066',13,1,6,300,'regular','active','786'),
(18,19,18,'CHEW/UN/24007',1,1,6,300,'regular','active','787'),
(19,20,19,'CHEW/UN/24010',1,1,6,300,'regular','active','788'),
(20,21,20,'MHT/UN/24005',13,1,6,300,'regular','active','789'),
(21,22,21,'PHT/UN/24001',3,1,6,300,'regular','active','790'),
(22,23,22,'MHT/UN/24034',13,1,6,300,'regular','active','791'),
(23,24,23,'MHT/UN/24007',13,1,6,300,'regular','active','792'),
(24,25,24,'MLT/UN/24023',4,1,6,300,'regular','active','793'),
(25,26,25,'MHT/UN/24006',13,1,6,300,'regular','active','795'),
(26,27,26,'MLT/UN/24004',4,1,6,300,'regular','active','796'),
(27,28,27,'MLT/UN/24002',4,1,6,300,'regular','active','797'),
(28,29,28,'CHEW/UN/24008',1,1,6,300,'regular','active','798'),
(29,30,29,'PHT/UN/24006',3,1,6,300,'regular','active','799'),
(30,31,30,'MHT/UN/24015',13,1,6,300,'regular','active','800'),
(31,32,31,'PHT/UN/24002',3,1,6,300,'regular','active','802'),
(32,33,32,'MHT/UN/24039',13,1,6,300,'regular','active','803'),
(33,34,33,'MHT/UN/24009',13,1,6,300,'regular','active','804'),
(34,35,34,'MHT/UN/24003',13,1,6,300,'regular','active','805'),
(35,36,35,'MHT/UN/24042',13,1,6,300,'regular','active','806'),
(36,37,36,'CHEW/UN/24016',1,1,6,300,'regular','active','808'),
(37,38,37,'CHEW/UN/24014',1,1,6,300,'regular','active','809'),
(38,39,38,'MHT/UN/24030',13,1,6,300,'regular','active','810'),
(39,40,39,'MHT/UN/24032',13,1,5,300,'regular','active','811'),
(40,41,40,'MLT/UN/24006',4,1,5,300,'regular','active','812'),
(41,42,41,'PHT/UN/24011',3,1,5,300,'regular','active','813'),
(42,43,42,'PHT/UN/24008',3,1,6,300,'regular','active','814'),
(43,44,43,'4008',7,1,6,300,'regular','active','815'),
(44,45,44,'PHT/UN/24009',3,1,6,300,'regular','active','817'),
(45,46,45,'MHT/UN/24028',13,1,6,300,'regular','active','818'),
(46,47,46,'CHEW/UN/24003',1,1,6,300,'regular','active','819'),
(47,48,47,'MLT/UN/24020',4,1,6,300,'regular','active','823'),
(48,49,48,'CHEW/UN/24009',1,1,4,300,'regular','active','824'),
(49,50,49,'MLT/UN/24013',4,1,6,300,'regular','active','825'),
(50,51,50,'MLT/UN/24009',4,1,6,300,'regular','active','826'),
(51,52,51,'MHT/UN/24024',13,1,6,300,'regular','active','827'),
(52,53,52,'PHT/UN/24010',3,1,6,300,'regular','active','829'),
(53,54,53,'MLT/UN/23034',4,1,5,300,'regular','active','832'),
(54,55,54,'MLT/UN/23022',4,1,5,300,'regular','active','833'),
(55,56,55,'MLT/UN/23048',4,1,5,300,'regular','active','834'),
(56,57,56,'MLT/UN/23045',4,1,5,300,'regular','active','835'),
(57,58,57,'MLT/UN/23029',4,1,5,300,'regular','active','836'),
(58,59,58,'MLT/UN/23041',4,1,5,300,'regular','active','837'),
(59,60,59,'MLT/UN/23035',4,1,5,300,'regular','active','838'),
(60,61,60,'MLT/UN/23014',4,1,5,300,'regular','active','839'),
(61,62,61,'MLT/UN/23037',4,1,5,300,'regular','active','840'),
(62,63,62,'MLT/UN/23033',4,1,5,300,'regular','active','841'),
(63,64,63,'MLT/UN/23023',4,1,5,300,'regular','active','842'),
(64,65,64,'MLT/UN/23016',4,1,5,300,'regular','active','843'),
(65,66,65,'MLT/UN/23018',4,1,5,300,'regular','active','844'),
(66,67,66,'MLT/UN/23010',4,1,5,300,'regular','active','845'),
(67,68,67,'MLT/UN/23021',4,1,5,300,'regular','active','846'),
(68,69,68,'MLT/UN/23050',4,1,5,300,'regular','active','847'),
(69,70,69,'CHEW/UN/24028',1,1,6,300,'regular','active','848'),
(70,71,70,'MLT/UN/23024',4,1,5,300,'regular','active','849'),
(71,72,71,'MLT/UN/23013',4,1,5,300,'regular','active','850'),
(72,73,72,'CHEW/UN/23023',1,1,5,300,'regular','active','851'),
(73,74,73,'CHEW/UN/23042',1,1,5,300,'regular','active','852'),
(74,75,74,'PHT/UN/23007',3,1,5,300,'regular','active','853'),
(75,76,75,'MHT/UN/23002',11,1,5,300,'regular','active','854'),
(76,77,76,'MLT/UN/23011',4,1,5,300,'regular','active','855'),
(77,78,77,'MHT/UN/24067',13,1,6,300,'regular','active','856'),
(78,79,78,'MHT/UN/23066',13,1,6,300,'regular','active','857'),
(79,80,79,'MHT/UN/24068',13,1,6,300,'regular','active','858'),
(80,81,80,'MHT/UN/24050',13,1,6,300,'regular','active','859'),
(81,82,81,'MHT/UN/24051',13,1,6,300,'regular','active','860'),
(82,83,82,'MHT/UN/24046',13,1,6,300,'regular','active','861'),
(83,84,83,'MHT/UN/24021',13,1,6,300,'regular','active','862'),
(84,85,84,'CHEW/UN/24053',1,1,6,300,'regular','active','863'),
(85,86,85,'MHT/UN/24070',13,1,6,300,'regular','active','864'),
(86,87,86,'MHT/UN/24044',13,1,6,300,'regular','active','866'),
(87,88,87,'MHT/UN/24083',13,1,6,300,'regular','active','867'),
(88,89,88,'MHT/UN/24059',13,1,6,300,'regular','active','868'),
(89,90,89,'CHEW/UN/24019',1,1,6,300,'regular','active','869'),
(90,91,90,'MHT/UN/24048',13,1,6,300,'regular','active','870'),
(91,92,91,'CHEW/UN/24052',1,1,6,300,'regular','active','871'),
(92,93,92,'CHEW/UN/24056',1,1,6,300,'regular','active','872'),
(93,94,93,'MLT/UN/24014',4,1,6,300,'regular','active','873'),
(94,95,94,'MLT/UN/24030',4,1,6,300,'regular','active','874'),
(95,96,95,'PHT/UN/24013',3,1,6,300,'regular','active','875'),
(96,97,96,'MLT/UN/24018',4,1,6,300,'regular','active','876'),
(97,98,97,'MLT/UN/24032',4,1,6,300,'regular','active','878'),
(98,99,98,'MLT/UN/24031',4,1,6,300,'regular','active','879'),
(99,100,99,'MLT/UN/24022',4,1,6,300,'regular','active','880'),
(100,101,100,'MLT/UN/24019',4,1,6,300,'regular','active','881'),
(101,102,101,'PHT/UN/24030',3,1,6,300,'regular','active','882'),
(102,103,102,'CHEW/UN/24057',1,1,6,300,'regular','active','883'),
(103,104,103,'PHT/UN/24016',3,1,6,300,'regular','active','884'),
(104,105,104,'MLT/UN/23044',4,1,5,300,'regular','active','885'),
(105,106,105,'MHT/UN/24084',13,1,6,300,'regular','active','886'),
(106,107,106,'MHT/UN/24049',13,1,6,300,'regular','active','887'),
(107,108,107,'MHT/UN/24081',13,1,6,300,'regular','active','888'),
(108,109,108,'MHT/UN/24065',13,1,6,300,'regular','active','889'),
(109,110,109,'CHEW/UN/24054',1,1,6,300,'regular','active','890'),
(110,111,110,'MHT/UN/24085',13,1,6,300,'regular','active','891'),
(111,112,111,'MHT/UN/24058',13,1,6,300,'regular','active','892'),
(112,113,112,'MLT/UN/24015',4,1,4,100,'regular','active','893'),
(113,114,113,'CHEW/UN/24030',1,1,6,300,'regular','active','894'),
(114,115,114,'CHEW/UN/242018',1,1,6,200,'regular','active','898'),
(115,116,115,'CHEW/UN/242014',1,1,6,200,'regular','active','899'),
(116,117,116,'CHEW/UN/242021',1,1,6,200,'regular','active','900'),
(117,118,117,'CHEW/UN/242010',1,1,6,200,'regular','active','901'),
(118,119,118,'CHEW/UN/242009',1,1,6,200,'regular','active','902'),
(119,120,119,'CHEW/UN/242003',1,1,6,200,'regular','active','903'),
(120,121,120,'CHEW/UN/242017',1,1,6,200,'regular','active','904'),
(121,122,121,'CHEW/UN/242027',1,1,6,200,'regular','active','905'),
(122,123,122,'CHEW/UN/242016',1,1,6,200,'regular','active','906'),
(123,124,123,'CHEW/UN/242041',1,1,6,200,'regular','active','907'),
(124,125,124,'CHEW/UN/242011',1,1,6,200,'regular','active','908'),
(125,126,125,'CHEW/UN/242025',1,1,6,200,'regular','active','909'),
(126,127,126,'CHEW/UN/242032',1,1,6,200,'regular','active','910'),
(127,128,127,'CHEW/UN/242024',1,1,6,200,'regular','active','911'),
(128,129,128,'CHEW/UN/242002',1,1,6,200,'regular','active','912'),
(129,130,129,'CHEW/UN/242019',1,1,6,200,'regular','active','913'),
(130,131,130,'CHEW/UN/242035',1,1,6,200,'regular','active','914'),
(131,132,131,'CHEW/UN/242033',1,1,6,200,'regular','active','915'),
(132,133,132,'CHEW/UN/242030',1,1,6,200,'regular','active','916'),
(133,134,133,'CHEW/UN/242008',1,1,6,200,'regular','active','917'),
(134,135,134,'CHEW/UN/242034',1,1,6,200,'regular','active','918'),
(135,136,135,'CHEW/UN/242036',1,1,6,200,'regular','active','919'),
(136,137,136,'CHEW/UN/242023',1,1,6,200,'regular','active','920'),
(137,138,137,'CHEW/UN/242022',1,1,6,200,'regular','active','921'),
(138,139,138,'CHEW/UN/242012',1,1,6,200,'regular','active','922'),
(139,140,139,'CHEW/UN/242039',1,1,6,200,'regular','active','923'),
(140,141,140,'CHEW/UN/242020',1,1,6,200,'regular','active','924'),
(141,142,141,'CHEW/UN/242038',1,1,6,200,'regular','active','925'),
(142,143,142,'PHT/UN/243001',3,1,6,200,'regular','active','926'),
(143,144,143,'PHT/UN/24005',3,1,6,200,'regular','active','927'),
(144,145,144,'PHT/UN/242002',3,1,6,200,'regular','active','929'),
(145,146,145,'MLT/UN/242001',4,1,6,200,'regular','active','930'),
(146,147,146,'PHT/UN/242004',3,1,6,200,'regular','active','931'),
(147,148,147,'MLT/UN/242002',4,1,6,200,'regular','active','932'),
(148,149,148,'MLT/UN/242015',4,1,6,200,'regular','active','933'),
(149,150,149,'MLT/UN/242220',4,1,6,200,'regular','active','934'),
(150,151,150,'MLT/UN/242004',4,1,6,200,'regular','active','935'),
(151,152,151,'MLT/UN/242005',4,1,6,200,'regular','active','936'),
(152,153,152,'MHSW/UN/242007',15,1,6,200,'regular','active','937'),
(153,154,153,'MLT/UN/242006',4,1,6,200,'regular','active','938'),
(154,155,154,'CHEW/UN/242001',1,1,6,200,'regular','active','939'),
(155,156,155,'CHEW/UN/242013',1,1,6,200,'regular','active','940'),
(156,157,156,'PHT/UN/242003',3,1,6,200,'regular','active','941'),
(157,158,157,'MHSW/UN/242028',15,1,6,200,'regular','active','942'),
(158,159,158,'MHSW/UN/242024',15,1,6,200,'regular','active','944'),
(159,160,159,'MHSW/UN/242001',15,1,6,200,'regular','active','945'),
(160,161,160,'MHSW/UN/242009',15,1,6,200,'regular','active','946'),
(161,162,161,'MHSW/UN/242014',15,1,6,200,'regular','active','947'),
(162,163,162,'MHSW/UN/242004',15,1,6,200,'regular','active','948'),
(163,164,163,'MHSW/UN/242010',15,1,6,200,'regular','active','949'),
(164,165,164,'MHSW/UN/242005',15,1,6,200,'regular','active','950'),
(165,166,165,'MHSW/UN/242002',15,1,6,200,'regular','active','951'),
(166,167,166,'MLT/1111111',1,1,6,200,'regular','active','952'),
(167,168,167,'CHEW/UN/242004',1,1,6,200,'regular','active','953'),
(168,169,168,'CHEW/UN/23038',1,1,5,300,'regular','active','954'),
(169,170,169,'CHEW/UN/23033',1,1,5,300,'regular','active','955'),
(170,171,170,'CHEW/UN/23017',1,1,5,300,'regular','active','956'),
(171,172,171,'MLT/UN/24214',4,1,6,200,'regular','active','957'),
(172,173,172,'MHSW/UN/242013',15,1,6,200,'regular','active','958'),
(173,174,173,'MLT/UN/242216',4,1,6,200,'regular','active','959'),
(174,175,174,'MLT/UN/24213',4,1,6,200,'regular','active','960'),
(175,176,175,'MLT/UN/242019',4,1,6,200,'regular','active','961'),
(176,177,176,'CHEW/UN/242005',1,1,6,200,'regular','active','962'),
(177,178,177,'MLT/UN/242012',4,1,6,200,'regular','active','963'),
(178,179,178,'MHSW/UN/242019',15,1,6,200,'regular','active','964'),
(179,180,179,'MHSW/UN/242003',15,1,6,200,'regular','active','965'),
(180,181,180,'CHEW/UN/242007',1,1,6,200,'regular','active','966'),
(181,182,181,'CHEW/UN/242031',1,1,6,200,'regular','active','967'),
(182,183,182,'CHEW/UN/242028',1,1,6,200,'regular','active','968'),
(183,184,183,'CHEW/UN/242037',1,1,6,200,'regular','active','969'),
(184,185,184,'MLT/UN/242003',4,1,6,200,'regular','active','971'),
(185,186,185,'MLT/UN/242022',4,1,6,200,'regular','active','972'),
(186,187,186,'MLT/UN/242007',4,1,6,200,'regular','active','973'),
(187,188,187,'CHEW/UN/24051',1,1,6,300,'regular','active','974'),
(188,189,188,'MHSW/UN/242008',15,1,6,200,'regular','active','975'),
(189,190,189,'MHT/UN/23061',13,1,5,300,'regular','active','976'),
(190,191,190,'MHT/UN/23080',13,1,6,300,'regular','active','977'),
(191,192,191,'MHT/UN/23042',13,1,6,300,'regular','active','978'),
(192,193,192,'MHT/UN/23020',13,1,6,300,'regular','active','979'),
(193,194,193,'MHT/UN/23049',13,1,5,300,'regular','active','981'),
(194,195,194,'MHT/UN/23104',13,1,5,300,'regular','active','982'),
(195,196,195,'MHT/UN/23036',13,1,5,300,'regular','active','983'),
(196,197,196,'MHT/UN/23013',13,1,5,300,'regular','active','984'),
(197,198,197,'CHEW/UN/24023',1,1,6,300,'regular','active','985'),
(198,199,198,'CHEW/UN/24055',1,1,6,300,'regular','active','986'),
(199,200,199,'CHEW/UN/24004',1,1,6,300,'regular','active','987'),
(200,201,200,'MHT/UN/23030',13,1,5,300,'regular','active','988'),
(201,202,201,'CHEW/UN/24034',1,1,6,300,'regular','active','989'),
(202,203,202,'CHEW/UN/24089',1,1,6,300,'regular','active','990'),
(203,204,203,'MHT/UN/23071',13,1,5,300,'regular','active','991'),
(204,205,204,'MHT/UN/23116',13,1,5,300,'regular','active','992'),
(205,206,205,'MHT/UN/23054',13,1,5,300,'regular','active','993'),
(206,207,206,'MHT/UN/23085',13,1,5,300,'regular','active','994'),
(207,208,207,'MHT/UN/23076',13,1,5,300,'regular','active','995'),
(208,209,208,'MHT/UN/23092',13,1,5,300,'regular','active','996'),
(209,210,209,'MHT/UN/23032',13,1,5,300,'regular','active','997'),
(210,211,210,'MHT/UN/23029',13,1,5,300,'regular','active','998'),
(211,212,211,'CHEW/UN/24020',1,1,6,300,'regular','active','999'),
(212,213,212,'CHEW/UN/23034',1,1,5,300,'regular','active','1000'),
(213,214,213,'MHT/UN/23118',13,1,5,300,'regular','active','1001'),
(214,215,214,'MHT/UN/23112',13,1,5,300,'regular','active','1002'),
(215,216,215,'CHEW/UN/23022',1,1,5,300,'regular','active','1003'),
(216,217,216,'MHT/UN/23051',13,1,5,300,'regular','active','1004'),
(217,218,217,'CHEW/UN/23028',1,1,5,300,'regular','active','1005'),
(218,219,218,'MHT/UN/23040',13,1,5,300,'regular','active','1006'),
(219,220,219,'MHT/UN/23003',13,1,5,300,'regular','active','1007'),
(220,221,220,'CHEW/UN/23018',1,1,5,300,'regular','active','1008'),
(221,222,221,'CHEW/UN/23026',1,1,5,300,'regular','active','1009'),
(222,223,222,'MHT/UN/23072',13,1,5,300,'regular','active','1010'),
(223,224,223,'MHT/UN/23008',13,1,5,300,'regular','active','1011'),
(224,225,224,'MHT/UN/23105',13,1,5,300,'regular','active','1012'),
(225,226,225,'MHT/UN/23062',13,1,5,300,'regular','active','1013'),
(226,227,226,'MHT/UN/23081',13,1,5,300,'regular','active','1014'),
(227,228,227,'MHT/UN/23058',13,1,5,300,'regular','active','1015'),
(228,229,228,'MHT/UN/23107',13,1,5,300,'regular','active','1016'),
(229,230,229,'MHT/UN/23106',13,1,5,300,'regular','active','1017'),
(230,231,230,'MHT/UN/23073',13,1,5,300,'regular','active','1018'),
(231,232,231,'MHT/UN/23097',13,1,5,300,'regular','active','1019'),
(232,233,232,'MHT/UN/23109',13,1,5,300,'regular','active','1020'),
(233,234,233,'MHT/UN/23055',13,1,5,300,'regular','active','1021'),
(234,235,234,'MHT/UN/23056',13,1,5,300,'regular','active','1022'),
(235,236,235,'MHT/UN/23052',13,1,5,300,'regular','active','1023'),
(236,237,236,'MHT/UN/23120',13,1,5,300,'regular','active','1024'),
(237,238,237,'MHT/UN/23044',13,1,5,300,'regular','active','1025'),
(238,239,238,'PHT/UN/23008',3,1,5,300,'regular','active','1026'),
(239,240,239,'PHT/UN/23014',3,1,5,300,'regular','active','1027'),
(240,241,240,'CHEW/UN/24006',1,1,6,200,'regular','active','1028'),
(241,242,241,'MHT/UN/24025',13,1,6,300,'regular','active','1029'),
(242,243,242,'CHEW/UN/24022',1,1,6,300,'regular','active','1030'),
(243,244,243,'MHT/UN/24052',13,1,6,300,'regular','active','1032'),
(244,245,244,'MHT/UN/23015',13,1,5,300,'regular','active','1033'),
(245,246,245,'MHT/UN/23031',13,1,5,300,'regular','active','1034'),
(246,247,246,'CHEW/UN/242026',1,1,6,200,'regular','active','1035'),
(247,248,247,'MHT/UN/23007',13,1,5,300,'regular','active','1036'),
(248,249,248,'MHT/UN/23090',13,1,5,300,'regular','active','1037'),
(249,250,249,'CHEW/UN/23019',1,1,5,300,'regular','active','1038'),
(250,251,250,'MHSW/UN/242020',15,1,6,200,'regular','active','1039');
INSERT INTO `students` (`id`,`user_id`,`application_id`,`matric_no`,`programme_id`,`campus_id`,`admission_session_id`,`current_level`,`category`,`status`,`legacy_id`) VALUES
(251,252,251,'PHT/UN/23006',3,1,5,300,'regular','active','1040'),
(252,253,252,'PHT/UN/23010',3,1,5,300,'regular','active','1041'),
(253,254,253,'MLT/UN/242024',4,1,6,200,'regular','active','1042'),
(254,255,254,'PHT/UN/242005',3,1,6,200,'regular','active','1043'),
(255,256,255,'MHT/UN/23067',13,1,5,300,'regular','active','1044'),
(256,257,256,'MHT/UN/23053',13,1,5,300,'regular','active','1045'),
(257,258,257,'MHT/UN/23102',13,1,5,300,'regular','active','1046'),
(258,259,258,'MHT/UN/23078',13,1,5,300,'regular','active','1047'),
(259,260,259,'MHT/UN/23119',13,1,5,300,'regular','active','1048'),
(260,261,260,'MHT/UN/23004',13,1,5,300,'regular','active','1049'),
(261,262,261,'MHT/UN/23010',13,1,5,300,'regular','active','1050'),
(262,263,262,'MHT/UN/23005',13,1,5,300,'regular','active','1051'),
(263,264,263,'MHT/UN/23043',13,1,5,300,'regular','active','1052'),
(264,265,264,'MHT/UN/23001',13,1,5,300,'regular','active','1053'),
(265,266,265,'CHEW/UN/24026',1,1,6,300,'regular','active','1054'),
(266,267,266,'CHEW/UN/24015',1,1,6,300,'regular','active','1055'),
(267,268,267,'CHEW/UN/24050',1,1,6,300,'regular','active','1056'),
(268,269,268,'CHEW/UN/24035',1,1,6,300,'regular','active','1057'),
(269,270,269,'CHEW/UN/24059',1,1,6,300,'regular','active','1058'),
(270,271,270,'MLT/UN/242023',4,1,6,200,'regular','active','1059'),
(271,272,271,'CHEW/UN/242040',1,1,6,200,'regular','active','1060'),
(272,273,272,'CHEW/UN/24021',1,1,6,300,'regular','active','1061'),
(273,274,273,'MHT/UN/24019',13,1,6,300,'regular','active','1062'),
(274,275,274,'MHT/UN/23088',13,1,5,300,'regular','active','1063'),
(275,276,275,'CHEW/UN/23041',1,1,5,300,'regular','active','1064'),
(276,277,276,'MHT/UN/23101',13,1,5,300,'regular','active','1065'),
(277,278,277,'MHT/UN/23093',13,1,5,300,'regular','active','1066'),
(278,279,278,'MHT/UN/23059',13,1,5,300,'regular','active','1067'),
(279,280,279,'MHT/UN/23069',13,1,5,300,'regular','active','1068'),
(280,281,280,'MHT/UN/230108',13,1,5,300,'regular','active','1069'),
(281,282,281,'MHT/UN/23091',13,1,5,300,'regular','active','1070'),
(282,283,282,'MHT/UN/23103',13,1,5,300,'regular','active','1071'),
(283,284,283,'MHT/UN/23019',13,1,5,300,'regular','active','1072'),
(284,285,284,'MHT/UN/23039',13,1,5,300,'regular','active','1073'),
(285,286,285,'MHT/UN/23023',13,1,5,300,'regular','active','1074'),
(286,287,286,'MHT/UN/23018',13,1,5,300,'regular','active','1075'),
(287,288,287,'MHT/UN/23063',13,1,5,300,'regular','active','1076'),
(288,289,288,'MHT/UN/23038',13,1,5,300,'regular','active','1077'),
(289,290,289,'MHT/UN/23017',13,1,5,300,'regular','active','1078'),
(290,291,290,'MHT/UN/23026',13,1,5,300,'regular','active','1079'),
(291,292,291,'MHT/UN/23037',13,1,5,300,'regular','active','1080'),
(292,293,292,'MHT/UN/23034',13,1,5,300,'regular','active','1081'),
(293,294,293,'MHT/UN/23035',13,1,5,300,'regular','active','1082'),
(294,295,294,'MHT/UN/23068',13,1,5,300,'regular','active','1083'),
(295,296,295,'MHT/UN/23057',13,1,5,300,'regular','active','1084'),
(296,297,296,'MHT/UN/23041',13,1,5,300,'regular','active','1085'),
(297,298,297,'MHT/UN/23079',13,1,5,300,'regular','active','1086'),
(298,299,298,'MHT/UN/23082',13,1,5,300,'regular','active','1087'),
(299,300,299,'MHT/UN/23012',13,1,5,300,'regular','active','1088'),
(300,301,300,'MHT/UN/23074',13,1,5,300,'regular','active','1089'),
(301,302,301,'MHT/UN/23083',13,1,5,300,'regular','active','1090'),
(302,303,302,'MHT/UN/23046',13,1,5,300,'regular','active','1091'),
(303,304,303,'MHT/UN/23033',13,1,5,300,'regular','active','1092'),
(304,305,304,'MHT/UN/23021',13,1,5,300,'regular','active','1093'),
(305,306,305,'MLT/UN/24003',4,1,4,100,'regular','active','1096'),
(306,307,306,'CHEW/UN/24058',1,1,6,300,'regular','active','1097'),
(307,308,307,'PHT/UN/24014',3,1,4,100,'regular','active','1098'),
(308,309,308,'CHEW/UN/24031',1,1,6,300,'regular','active','1099'),
(309,310,309,'DST/UN/24002',9,1,6,200,'regular','active','1100'),
(310,311,310,'DST/UN/24050',9,1,6,200,'regular','active','1101'),
(311,312,311,'DST/UN/24001',9,1,6,200,'regular','active','1102'),
(312,313,312,'DST/UN/24004',9,1,6,200,'regular','active','1103'),
(313,314,313,'DST/UN/24003',9,1,6,200,'regular','active','1104'),
(314,315,314,'DST/UN/242006',9,1,6,200,'regular','active','1105'),
(315,316,315,'MHT/UN/24054',13,1,6,300,'regular','active','1108'),
(316,317,316,'MHT/UN/24004',13,1,6,300,'regular','active','1111'),
(317,318,317,'MHSW/UN/242025',15,1,6,200,'regular','active','1112'),
(318,319,318,'MHT/UN/24069',13,1,6,300,'regular','active','1116'),
(319,320,319,'CHEW/UN/24090',1,1,6,300,'regular','active','1117'),
(320,321,320,'CHEW/UN/24018',1,1,6,300,'regular','active','1118'),
(321,322,321,'MLT/UN/24012',4,1,6,300,'regular','active','1119'),
(322,323,322,'CHEW/UN/24013',1,1,6,300,'regular','active','1121'),
(323,324,323,'CHEW/UN/24032',1,1,6,300,'regular','active','1122'),
(324,325,324,'CHEW/UN/24033',1,1,6,300,'regular','active','1123'),
(325,326,325,'MLT/UN/24016',4,1,6,300,'regular','active','1126'),
(326,327,326,'MLT/UN/24008',4,1,6,300,'regular','active','1127'),
(327,328,327,'MLT/UN/250096',4,1,6,100,'regular','active','1129'),
(328,329,328,'MLT/UN/250100',4,1,6,100,'regular','active','1130'),
(329,330,329,'MLT/UN/250094',4,1,6,100,'regular','active','1131'),
(330,331,330,'MLT/UN/250098',4,1,6,100,'regular','active','1132'),
(331,332,331,'MHSW/UN/250061',15,1,6,100,'regular','active','1133'),
(332,333,332,'MHSW/UN/250056',15,1,6,100,'regular','active','1134'),
(333,334,333,'MHSW/UN/250058',15,1,6,100,'regular','active','1135'),
(334,335,334,'MHSW/UN/250063',15,1,6,100,'regular','active','1136'),
(335,336,335,'MHSW/UN/250062',15,1,6,100,'regular','active','1137'),
(336,337,336,'MLT/UN/250090',4,1,6,100,'regular','active','1138'),
(337,338,337,'CHEW/UN/250024',1,1,6,100,'regular','active','1139'),
(338,339,338,'MLT/UN/250093',4,1,6,100,'regular','active','1140'),
(339,340,339,'CHEW/UN/250049',1,1,6,100,'regular','active','1141'),
(340,341,340,'CHEW/UN/250027',1,1,6,100,'regular','active','1142'),
(341,342,341,'CHEW/UN/250034',1,1,6,100,'regular','active','1144'),
(342,343,342,'CHEW/UN/250042',1,1,6,100,'regular','active','1145'),
(343,344,343,'CHEW/UN/250036',1,1,6,100,'regular','active','1146'),
(344,345,344,'CHEW/UN/250037',1,1,6,100,'regular','active','1147'),
(345,346,345,'CHEW/UN/250012',1,1,6,100,'regular','active','1148'),
(346,347,346,'MLT/UN/250091',4,1,6,100,'regular','active','1149'),
(347,348,347,'CHEW/UN/250041',1,1,6,100,'regular','active','1150'),
(348,349,348,'CHEW/UN/250040',1,1,6,100,'regular','active','1151'),
(349,350,349,'CHEW/UN/250016',1,1,6,100,'regular','active','1152'),
(350,351,350,'CHEW/UN/250038',1,1,6,100,'regular','active','1153'),
(351,352,351,'CHEW/UN/250018',1,1,6,100,'regular','active','1154'),
(352,353,352,'CHEW/UN/250039',1,1,6,100,'regular','active','1155'),
(353,354,353,'DST/UN/250079',9,1,6,100,'regular','active','1156'),
(354,355,354,'CHEW/UN/250050',1,1,6,100,'regular','active','1157'),
(355,356,355,'CHEW/UN/250068',1,1,6,100,'regular','active','1159'),
(356,357,356,'CHEW/UN/250022',1,1,6,100,'regular','active','1160'),
(357,358,357,'CHEW/UN/250044',1,1,6,100,'regular','active','1161'),
(358,359,358,'CHEW/UN/250011',1,1,6,100,'regular','active','1162'),
(359,360,359,'MHSW/UN/250057',15,1,6,100,'regular','active','1163'),
(360,361,360,'MHSW/UN/250060',15,1,6,100,'regular','active','1164'),
(361,362,361,'PHT/UN/250074',3,1,6,100,'regular','active','1165'),
(362,363,362,'CHEW/UN/250021',1,1,6,100,'regular','active','1166'),
(363,364,363,'MLT/UN/250092',4,1,6,100,'regular','active','1167'),
(364,365,364,'CHEW/UN/250023',1,1,6,100,'regular','active','1168'),
(365,366,365,'CHEW/UN/250078',1,1,6,100,'regular','active','1169'),
(366,367,366,'CHEW/UN/250033',1,1,6,100,'regular','active','1170'),
(367,368,367,'CHEW/UN/250045',1,1,6,200,'regular','active','1171'),
(368,369,368,'DST/UN/250082',9,1,6,100,'regular','active','1172'),
(369,370,369,'DST/UN/250085',9,1,6,100,'regular','active','1173'),
(370,371,370,'PHT/UN/250076',3,1,6,100,'regular','active','1174'),
(371,372,371,'PHT/UN/250072',3,1,6,100,'regular','active','1175'),
(372,373,372,'PHT/UN/250071',3,1,6,100,'regular','active','1176'),
(373,374,373,'PHT/UN/250075',3,1,6,100,'regular','active','1177'),
(374,375,374,'CHEW/UN/250087',1,1,6,100,'regular','active','1178'),
(375,376,375,'PHT/UN/250069',3,1,6,100,'regular','active','1179'),
(376,377,376,'CHEW/UN/250015',1,1,6,100,'regular','active','1180'),
(377,378,377,'CHEW/UN/250031',1,1,6,100,'regular','active','1181'),
(378,379,378,'CHEW/UN/250028',1,1,6,100,'regular','active','1182'),
(379,380,379,'MHSW/UN/250065',15,1,6,100,'regular','active','1183'),
(380,381,380,'CHEW/UN/250052',1,1,6,100,'regular','active','1184'),
(381,382,381,'CHEW/UN/250013',1,1,6,100,'regular','active','1185'),
(382,383,382,'CHEW/UN/250115',1,1,6,100,'regular','active','1186'),
(383,384,383,'DST/UN/250086',9,1,6,100,'regular','active','1188'),
(384,385,384,'CHEW/UN/250116',1,1,6,100,'regular','active','1189'),
(385,386,385,'MLT/UN/250095',4,1,6,100,'regular','active','1190'),
(386,387,386,'MLT/UN/250089',4,1,6,100,'regular','active','1192'),
(387,388,387,'CHEW/UN/250088',1,1,6,200,'regular','active','1193'),
(388,389,388,'DST/UN/250080',9,1,6,100,'regular','active','1202'),
(389,390,389,'DST/UN/250081',9,1,6,100,'regular','active','1203'),
(390,391,390,'CHEW/UN/250200',1,1,6,100,'regular','active','1204'),
(391,392,391,'CHEW/UN/250025',1,1,6,100,'regular','active','1205'),
(392,393,392,'CHEW/UN/250112',1,1,6,100,'regular','active','1206'),
(393,394,393,'CHEW/UN/250043',1,1,6,100,'regular','active','1207'),
(394,395,394,'CHEW/UN/250026',1,1,6,100,'regular','active','1208'),
(395,396,395,'CHEW/UN/250029',1,1,6,100,'regular','active','1210'),
(396,397,396,'DST/UN/250213',9,1,6,100,'regular','active','1211'),
(397,398,397,'DST/UN/250084',9,1,6,100,'regular','active','1212'),
(398,399,398,'DST/UN/250083',9,1,6,100,'regular','active','1213'),
(399,400,399,'MLT/UN/250097',4,1,6,100,'regular','active','1214'),
(400,401,400,'MLT/UN/250099',4,1,6,100,'regular','active','1215'),
(401,402,401,'CHEW/UN/250032',1,1,6,100,'regular','active','1216'),
(402,403,402,'MLT/UN/250204',4,1,6,100,'regular','active','1217'),
(403,404,403,'PHT/UN/250118',3,1,6,100,'regular','active','1218'),
(404,405,404,'PHT/UN/250067',3,1,6,100,'regular','active','1219'),
(405,406,405,'MHSW/UN/250206',15,1,6,100,'regular','active','1220'),
(406,407,406,'CHEW/UN/250020',1,1,6,100,'regular','active','1221'),
(407,408,407,'MHSW/UN/250053',15,1,6,100,'regular','active','1222'),
(408,409,408,'CHEW/UN/250046',1,1,6,200,'regular','active','1223'),
(409,410,409,'MLT/UN/250207',4,1,6,100,'regular','active','1224'),
(410,411,410,'MLT/UN/242008',4,1,5,100,'regular','active','1225'),
(411,412,411,'CHEW/UN/250211',1,1,6,200,'regular','active','1226'),
(412,413,412,'CHEW/UN/250113',1,1,6,100,'regular','active','1227'),
(413,414,413,'CHEW/UN/250117',1,1,6,100,'regular','active','1228');

-- staff_profiles: 0 records


-- courses: 383 records
INSERT INTO `courses` (`id`,`department_id`,`code`,`title`,`credit_units`,`level`,`description`,`is_active`) VALUES
(1,1,'GNS101','USE OF ENGLISH',2,100,NULL,1),
(2,1,'CHE101','PROFESSIONAL ETHICS',1,100,NULL,1),
(3,1,'CHE103','ANATOMY AND PHYSIOLOGY 1',2,100,NULL,1),
(4,1,'CHE105','SOCIAL BEHAVIOUR CHANGE COMMUNICATIONS',2,100,NULL,1),
(5,1,'GNS103','CITIZENSHIP EDUCATION',1,100,NULL,1),
(6,1,'CHE107','HUMAN NUTRITION',2,100,NULL,1),
(7,1,'GNS105','INTRODUCTION TO MEDICAL PSYCHOLOGY',1,100,NULL,1),
(8,1,'EHT101','INTRODUCTION TO ENVIRONMENTAL HEALTH',2,100,NULL,1),
(9,1,'FOT101','GEOGRAPHY',1,100,NULL,1),
(10,1,'COM101','INTRODUCTION TO COMPUTER',2,100,NULL,1),
(11,1,'GNS107','INTRODUCTION TO MEDICAL SOCIOLOGY',2,100,NULL,1),
(12,1,'CHE109','INTRODUCTION TO PRIMARY HEALTH CARE',2,100,NULL,1),
(13,3,'ELS101','COMMUNICATION SKILLS 1/USE OF ENGLISH',2,100,NULL,1),
(14,3,'CHM101','GENERAL CHEMISTRY 1',3,100,NULL,1),
(15,3,'CSC101','INTRODUCTION TO IT 1',2,100,NULL,1),
(16,3,'BIO101','GENEARL BIOLOGY 1',3,100,NULL,1),
(17,3,'GST101','CITIZENSHIP EDUCATION',2,100,NULL,1),
(18,3,'MTH101','GENERAL MATHEMATICS 1',2,100,NULL,1),
(19,3,'GST103','HISTORY AND PHILOSOPHY OF SCIENC',2,100,NULL,1),
(20,3,'FRN101','FUNCTIONAL FRENCH 1 2',2,100,NULL,1),
(21,2,'BIO111','GENERAL BIOLOGY 1',3,100,NULL,1),
(22,2,'CHM111','GENERAL CHEMISTRY I (PHYSICAL &AMP; ORGANIC) 3',3,100,NULL,1),
(23,2,'PHY111','GENERAL PHYSICS I',2,100,NULL,1),
(24,2,'MTH111','GENERAL MATHEMATICS 1',3,100,NULL,1),
(25,2,'ICT101','INTRODUCTION TO COMPUTER',2,100,NULL,1),
(26,2,'ENG101','USE OF ENGLISH',2,100,NULL,1),
(27,2,'CTZ101','CITIZENSHIP',2,100,NULL,1),
(28,2,'BDT151','INTRODUCTION TO LABORATORY TECHNIQUES',2,100,NULL,1),
(29,2,'ETP101','INTRODUCTION TO ENTREPRENEURSHIP',1,100,NULL,1),
(30,2,'PTP111','INTRODUCTION TO PRINCIPLE OF PHARMACY TECHNICIAN',2,100,NULL,1),
(31,1,'CHE102','SYMPTOMATOLOGY',2,100,NULL,1),
(32,1,'CHE207','POPULATION DYNAMICS AND FAMILY PLANNING',2,100,NULL,1),
(33,1,'CHE108','CLINICAL SKILLS I',3,100,NULL,1),
(34,1,'STB211','SCIENCE LABORATORY TECHNOLOGY',3,100,NULL,1),
(35,1,'CHE110','IMMUNITY AND IMMUNIZATION',2,100,NULL,1),
(36,1,'CHE112','CONTROL OF COMMUNICABLE DISEASES',2,100,NULL,1),
(37,1,'CHE114','ACCIDENT AND EMERGENCY',2,100,NULL,1),
(38,1,'CHE116','SUPERVISED CLINICAL EXPERIENCE 1',3,100,NULL,1),
(39,1,'GNS102','COMMUNICATION IN ENGLISH',2,100,NULL,1),
(40,1,'CHE104','ANATOMY AND PHYSICOLOGY II',2,100,NULL,1),
(41,1,'CHE203','ORAL HEALTH',2,200,NULL,1),
(42,1,'CHE205','COMMUNITY MENTAL HEALTH',2,200,NULL,1),
(43,1,'CHE106','REPRODUCTIVE HEALTH',2,100,NULL,1),
(44,1,'CHE209','CHILD HEALTH',3,200,NULL,1),
(45,1,'CHE211','SCHOOL HEALTH PROGRAMME',2,200,NULL,1),
(46,8,'CHE213','CONTROL OF NON-COMMUNICABLE DISEASES',2,200,NULL,1),
(47,1,'BCH111','INTRODUCTION TO PHYSICAL CHEMISTRY',1,200,NULL,1),
(48,1,'CHE215','COMMUNITY LINKAGES AND DEVELOPMENT',3,200,NULL,1),
(49,1,'CHE239','CARE AND MANAGEMENT OF HIV AND AIDS',2,200,NULL,1),
(50,1,'CHE217','OCCUPATIONAL HEALTH AND SAFETY EDUCATION',2,200,NULL,1),
(51,1,'CHE201','ANATOMY AND PHYSIOLOGY III',2,200,NULL,1),
(52,2,'BIO112','GENERAL BIOLOGY II',3,100,NULL,1),
(53,2,'CHM112','GENERAL CHEMISTRY II (ORGANIC CHEMISTRY)',3,100,NULL,1),
(54,2,'PHY112','GENERAL PHYSICS II 2',2,100,NULL,1),
(55,2,'BIO122','GENERAL BIOLOGY PRACTICAL',1,100,NULL,1),
(56,2,'CHM122','GENERAL CHEMISTRY PRACTICAL 1',1,100,NULL,1),
(57,2,'PHY122','GENERAL PHYSICS PRACTICAL',1,100,NULL,1),
(58,2,'MTH112','GENERAL MATHEMATICS II',2,100,NULL,1),
(59,2,'ENG102','COMMUNICATION SKILLS',2,100,NULL,1),
(60,2,'ANM122','INTRODUCTION TO ACTION AND USES OF MEDICINES',3,100,NULL,1),
(61,2,'BDT152','BASIC DISPENSING THEORY I',3,100,NULL,1),
(62,2,'MCB112','BASIC MICROBIOLOGY I',2,100,NULL,1),
(63,2,'AUM221','ACTION AND USES OF MEDICINES I',3,200,NULL,1),
(64,2,'BDP231','BASIC DISPENSING PRACTICAL I',3,200,NULL,1),
(65,2,'BDT251','BASIC DISPENSING THEORY II',3,200,NULL,1),
(66,2,'BDT253','PHARMACEUTICAL CALCULATIONS',3,200,NULL,1),
(67,2,'BDT225','LOGISTICS AND SUPPLY CHAIN MANAGEMENT SYSTEM',2,200,NULL,1),
(68,2,'PHC201','PRIMARY HEALTH CARE I',2,200,NULL,1),
(69,2,'STA211','INTRODUCTION TO STATISTICS',2,200,NULL,1),
(70,2,'MCB211','BASIC MICROBIOLOGY II',1,200,NULL,1),
(71,2,'ANA241','ANATOMY AND PHYSIOLOGY I',3,200,NULL,1),
(72,2,'ANM222','ACTION AND USES OF MEDICINE II',3,200,NULL,1),
(73,2,'BDT252','BASIC DISPENSING THEORY II',2,200,NULL,1),
(74,2,'BDP232','BASIC DISPENSING PRACTICAL II',3,200,NULL,1),
(75,2,'ANA242','ANATOMY AND PHYSIOLOGY II',3,200,NULL,1),
(76,2,'DTT254','LOGISTICS AND SUPPLY CHAIN MANAGEMENT 2',2,200,NULL,1),
(77,2,'ETP202','PRACTISE OF ENTREPRENEURSHIP',3,200,NULL,1),
(78,2,'PSY202','INTRODUCTION TO PSYCHOLOGY',2,200,NULL,1),
(79,1,'CHE204','CLINICAL SKILLS II',3,200,NULL,1),
(80,1,'CHE206','MATERNAL HEALTH',4,200,NULL,1),
(81,1,'CHE208','MODIFIED ESSENTIAL NEW BORN CARE',3,200,NULL,1),
(82,1,'CHE210','COMMUNITY EAR, NOSE AND THROAT CARE (ENT)',3,200,NULL,1),
(83,1,'CHE245','COMMUNITY EYE CARE',1,200,NULL,1),
(84,1,'CHE214','USE OF STANDING ORDERS',3,200,NULL,1),
(85,1,'CHE311','NIGERIAN HEALTH SYSTEM',2,200,NULL,1),
(86,1,'CHE218','SUPERVISED CLINICAL EXPERIENCE II',4,200,NULL,1),
(87,1,'CHE231','ANATOMY AND PHYSIOLOGY',2,200,NULL,1),
(88,1,'CHE216','INTRODUCTION TO PHARMACOLOGY',2,200,NULL,1),
(89,1,'CHE301','CARE OF THE OLDER PERSONS',1,300,NULL,1),
(90,1,'CHE303','CARE OF PERSONS WITH SPECIAL NEEDS',2,300,NULL,1),
(91,1,'CHE305','HEALTH STATISTICS',2,300,NULL,1),
(92,1,'CHE307','ESSENTIAL MEDICINES',2,300,NULL,1),
(93,1,'CHE309','HUMAN RESOURCE FOR HEALTH',1,300,NULL,1),
(94,1,'CHE256','RESEARCH METHODOLOGY 2',2,300,NULL,1),
(95,1,'CHE313','COMMUNITY BASED NEWBORN CARE',3,300,NULL,1),
(96,1,'CHE317','SUPERVISED COMMUNITY BASED EXPERIENCE',8,300,NULL,1),
(97,1,'CHE302','PRIMARY HEALTH CARE MANAGEMENT',2,300,NULL,1),
(98,1,'CHE304','REFERRAL SYSTEM AND OUTREACH SERVICES',2,300,NULL,1),
(99,1,'CHE306','ACCOUNTING SYSTEM IN PRIMARY HEALTH CARE',1,300,NULL,1),
(100,1,'CHE264','HEALTH MANAGEMENT INFORMATION SYSTEM',2,300,NULL,1),
(101,1,'CHE265','RESEARCH PROJECT',4,300,NULL,1),
(102,3,'ELS102','COMMUNICATION SKILL II/ USE OF ENGLISH II',2,100,NULL,1),
(103,3,'CSC102','INTRODUCTION TO IT II',2,100,NULL,1),
(104,3,'PHY102','GENERAL PHYSICS II',3,100,NULL,1),
(105,3,'CHM102','ORGANIC CHEMISTRY II',3,100,NULL,1),
(106,3,'BIO102','GENERAL BIOLOGY II 3',3,100,NULL,1),
(107,3,'MTH102','GENERAL MATHEMATICS II',2,100,NULL,1),
(108,3,'GST102','PHILOSOPHY&AMP;LOGIC/ CRITICAL REASONING 2',2,100,NULL,1),
(109,3,'FRN102','FUNCTIONAL FRENCH II',2,100,NULL,1),
(110,3,'ANA201','B ASIC ANATOMY',3,200,NULL,1),
(111,3,'PHS201','BASIC PHYSIOLOGY',3,200,NULL,1),
(112,3,'BCH201','BASIC BIOCHEMISTRY',3,200,NULL,1),
(113,3,'MLT201','INTRODUCTION TO MLS',2,200,NULL,1),
(114,3,'MLT203','INTRODUCTION TO IMMUNOLOGY',2,200,NULL,1),
(115,3,'MLT205','CLINICAL LABORATORY POSTING I',3,200,NULL,1),
(116,3,'MLT207','BASIC LABORATORY TECHNIQUES',2,200,NULL,1),
(117,3,'BIO201','BASIC CYTOLOGY AND GENETICS',2,200,NULL,1),
(118,3,'MLT202','MEDICAL MICROBIOLOGY I',3,200,NULL,1),
(119,3,'MLT204','HAEMATOLOGY I',3,200,NULL,1),
(120,3,'MLT206','CLINICAL CHEMISTRY I',3,200,NULL,1),
(121,3,'MLT208','HISTOPATHOLOGY',3,200,NULL,1),
(122,3,'MLT210','RESEARCH METHODOLOGY',2,200,NULL,1),
(123,3,'MLT212','INTRODUCTION TO MANAGEMENT, LAB ORGANIZATION & ETHICS',2,200,NULL,1),
(124,3,'MLT214','CLINICAL LABORATORY POSTING II',3,200,NULL,1),
(125,3,'MLT216','BASIC LABORATORY TECHNIQUES II',2,200,NULL,1),
(126,3,'MLT301','MEDICAL PARASITOLOGY',3,200,NULL,1),
(127,3,'MLT303','BLOOD TRANSFUSSION SCIENCE',3,300,NULL,1),
(128,3,'MLT305','CLINICAL CHEMISTRY II',3,300,NULL,1),
(129,3,'MLT307','HISTOPATHOLOGY II',3,300,NULL,1),
(130,3,'MLT309','SEMINAR IN LABORATORY',2,300,NULL,1),
(131,3,'MLT311','CLINICAL LABORATORY POSTING III',3,300,NULL,1),
(132,3,'MLT313','INTRODUCTORY VIROLOGY',2,300,NULL,1),
(133,3,'MLT302','MEDICAL MICROBIOLOGY II',3,300,NULL,1),
(134,3,'MLT304','HAEMATOLOGY II',3,300,NULL,1),
(135,3,'MLT306','CLINICAL CHEMISTRY III',3,300,NULL,1),
(136,3,'MLT308','HISTOPATHOLOGY III',3,300,NULL,1),
(137,3,'MLT312','RESEARCH PROJECT',6,300,NULL,1),
(138,3,'MLT310','GOOD LABORATORY PRACTICE',2,300,NULL,1),
(139,5,'DST111','FOUNDATION OF DENTAL SURGERY TECHNICIAN I',2,100,NULL,1),
(140,5,'DST112','HUMAN BIOLOGY I',2,100,NULL,1),
(141,5,'DST113','PHYSICS AND CHEMISTRY',1,100,NULL,1),
(142,5,'DST114','BEHAVIOURAL SCIENCE I',2,100,NULL,1),
(143,5,'DST115','ORAL HEALTH SCIENCE (ORAL ANATOMY & ORAL PHYSIOLOGY )',3,100,NULL,1),
(144,5,'DST116','DENTAL INSTRUMENTS',3,100,NULL,1),
(145,5,'DST108','CITIZENSHIP EDUCATION',2,100,NULL,1),
(146,5,'COM109','INTRODUCTION TO COMPUTER SCIENCE',1,100,NULL,1),
(147,5,'DST121','HUMAN BIOLOGY II',2,100,NULL,1),
(148,5,'DST122','FOUNDATION OF DENTAL SURGERY TECHNICIAN II',2,100,NULL,1),
(149,5,'DST123','NUTRITION & HEALTH',2,100,NULL,1),
(150,8,'DST124','INTRODUCTION TO PHARMACOLOGY',2,100,NULL,1),
(151,5,'GNS125','BEHAVIOURAL SCIENCE II',2,100,NULL,1),
(152,5,'DST126','GENERAL PATHOLOGY',3,100,NULL,1),
(153,5,'DST127','DENTAL INSTRUMENTS II',2,100,NULL,1),
(154,5,'STM115','INTRODUCTION TO MICROBIOLOGY',1,100,NULL,1),
(155,5,'DST211','PHARMACOLOGY II',2,200,NULL,1),
(156,5,'DST212','DENTAL RADIOGRAPHY I',2,200,NULL,1),
(157,5,'DST213','PHC',3,200,NULL,1),
(158,5,'DST214','DENTAL INSTRUMENTS III',2,200,NULL,1),
(159,5,'DST215','STERILIZATION AND INFECTION CONTROL',2,200,NULL,1),
(160,5,'GNS213','MEDICAL SOCIOLOGY',2,200,NULL,1),
(161,5,'GNS202','USE OF ENGLISH',2,200,NULL,1),
(162,5,'DST221','MEDICAL EMERGENCIES IN DENTAL PRACTICE/HOSPITAL PROTOCOLS',3,200,NULL,1),
(163,5,'DST222','DENTAL MATERIALS SCIENCE (IDENTIFICATION PURPOSE AND USE)',4,200,NULL,1),
(164,5,'DST223','PAIN AND ANXIETY CONTROL IN DENTAL PRACTICE',3,200,NULL,1),
(165,5,'DST224','DENTAL RADIOGRAPHY II',3,200,NULL,1),
(166,5,'DST225','CLINICAL DISEASE & DIET THERAPY',4,200,NULL,1),
(167,5,'DST226','POHC',3,200,NULL,1),
(168,5,'DST227','RESEARCH METHOD AND STATISTICS',3,200,NULL,1),
(169,5,'EED216','ENTERPRENEURSHIP STUDIES',2,200,NULL,1),
(170,5,'DST311','ORAL HEALTH EDUCATION',3,300,NULL,1),
(171,5,'DST312','RESTORATIVE DENTISTRY & INTRODUCTION TO DENTAL IMPLANTOLOGY',3,300,NULL,1),
(172,5,'DST313','CHILD DENTAL HEALTH & ORTHODONTICS',3,300,NULL,1),
(173,5,'DST314','ORAL AND MAXILLOFACIAL SURGERY',4,300,NULL,1),
(174,5,'DST315','ORAL PATHOLOGY AND MEDICINE',2,300,NULL,1),
(175,5,'DST316','SEMINAR PRESENTATION',1,300,NULL,1),
(176,5,'DST321','DETAL OFFICE MANAGEMENT',1,300,NULL,1),
(177,5,'DST322','COMMUNICATION SKILL /HEALTH FORMATICS',2,300,NULL,1),
(178,5,'DST323','ADMISTRATION AND LEADERSHIP TRAINING',1,300,NULL,1),
(179,5,'DST324','SEMINAR PRESENTATION II',1,300,NULL,1),
(180,5,'DST325','PROJECT',6,300,NULL,1),
(181,7,'COM111','Introduction To Computer',3,100,NULL,1),
(182,7,'HIT111','HEALTH INFORMATION MANAGEMENT',3,100,NULL,1),
(183,7,'HIT112','FUNDAMENTAL OF MEDICAL PRACTICE',2,100,NULL,1),
(184,7,'HIT113','COMMUNICATION IN HEALTH INFORMATION MANAGEMENT',3,100,NULL,1),
(185,7,'HIS113','HUMAN ANATOMY AND PHYSIOLOGY',3,100,NULL,1),
(186,7,'STA111','DESCRIPTIVE STATISTICS I',2,100,NULL,1),
(187,7,'HIT121','DISEASE CLASSIFICATION &AMP; CLINICAL CODING',3,100,NULL,1),
(188,7,'HIS121','HEALTH PLANNING AND MANAGEMENT I',2,100,NULL,1),
(189,7,'HIS123','INTRODUCTION TO PROGRAMMING',3,100,NULL,1),
(190,7,'HIS125','PRIMARY HEALTH CARE FOR HIM',2,100,NULL,1),
(191,7,'EED126','ENTREPRENEURSHIP',3,100,NULL,1),
(192,7,'HIS114','OPERATING SYSTEM',3,100,NULL,1),
(193,7,'GNS111','CITIZENSHIP EDUCATION',2,100,NULL,1),
(194,7,'HIS126','DESCRIPTIVE STATISTICS II',3,100,NULL,1),
(195,7,'HIS211H','EALTH INFORMATICS',2,200,NULL,1),
(196,7,'HIT211','HEALTH INFORMATION MANAGEMENT',3,200,NULL,1),
(197,7,'HIS213','MEDICAL DEMOGRAPHY',3,200,NULL,1),
(198,7,'HIT212','DISEASES CLASSIFICATION AND CLINICAL CODING I &AMP; II',3,200,NULL,1),
(199,7,'HIS214','HUMAN ANATOMY AND PHYSIOLOGY',3,200,NULL,1),
(200,7,'HIT213','MONITORING AND EVALUATION I',2,200,NULL,1),
(201,7,'HIS122','STATISTICAL THEORY FOR HEALTH INFORMATION MANAGEMENT',3,200,NULL,1),
(202,7,'HIS124','COMPUTER PACKAGES I',3,200,NULL,1),
(203,7,'HIS221','APPLIED GENERAL STATISTICS',3,200,NULL,1),
(204,7,'HIT221','ELECTRONIC HEALTH RECORDS I',3,200,NULL,1),
(205,7,'HIT222','LEGAL &AMP; ETHICAL ASPECTS OF HIM I',2,200,NULL,1),
(206,7,'HIT223','DATA SHARING, DISSEMINATION &AMP; USE I',2,200,NULL,1),
(207,7,'HIT225','HOSPITAL STATISTICS',3,200,NULL,1),
(208,7,'GNS228','RESEARCH METHODS',2,200,NULL,1),
(209,7,'HIS222','HEALTH PLANNING &AMP; MANAGEMENT II',2,200,NULL,1),
(210,7,'HIS311','DATABASE MANAGEMENT SYSTEM',2,300,NULL,1),
(211,7,'HIS312','MONITORING AND EVALUATION II',3,300,NULL,1),
(212,7,'HIT311','RECORDS DOCUMENTATION SYSTEM',2,300,NULL,1),
(213,7,'GNS121','CITIZENSHIP EDUCATION',2,300,NULL,1),
(214,7,'LIS206','INTRO.TO CONSERVATION AND PRESERVATION',3,300,NULL,1),
(215,7,'HIS313','INTRO TO SAMPLING TECHNIQUES',3,300,NULL,1),
(216,7,'HIT321','DXS CLASSIFICATION AND DATA CLINICAL CODING II',3,300,NULL,1),
(217,7,'HIT322','HEALTH PLANNING AND MANAGEMENT III',2,300,NULL,1),
(218,7,'HIT323','HEALTH INFORMATION MANAGEMENT III',3,300,NULL,1),
(219,7,'HIT324','INDEPENDENT STUDY (PROJECT)',6,300,NULL,1),
(220,7,'HIT325','HOSPITAL STATISTICS',3,300,NULL,1),
(221,7,'HIS321','FUNDAMENTAL OF DATA ANALYSIS',2,300,NULL,1),
(222,6,'EHT111','INTRODUCTION TO ENVIRONMENTAL HEALTH',2,100,NULL,1),
(223,6,'HET103','HEALTH EDUCATION',2,100,NULL,1),
(224,6,'GHT132','NIGERIAN HEALTH SYSTEM',1,100,NULL,1),
(225,6,'CHE123','CLINICAL SKILLS I',2,100,NULL,1),
(226,6,'HET109','ADOLESCENT HEALTH',2,100,NULL,1),
(227,6,'CHE125','IMMUNITY AND IMMUNIZATION',2,100,NULL,1),
(228,6,'HET106','DEMOGRAPHY',2,100,NULL,1),
(229,6,'CHE121','MEDICAL ETHICS',2,100,NULL,1),
(230,6,'HET101','REPRODUCTIVE HEALTH',3,100,NULL,1),
(231,6,'CHE146','ACCIDENT AND EMERGENCY',2,100,NULL,1),
(232,6,'EHT146','PRINCIPLE OF EPIDEMIOLOGY',2,100,NULL,1),
(233,6,'CHE212','BASIC HUMAN NUTRITION',1,200,NULL,1),
(234,6,'STB212','INTRODUCTION TO MICROBIOLOGY',4,200,NULL,1),
(235,8,'HET212','CLINICAL PROCEDURE',2,200,NULL,1),
(236,6,'CHE232','ADVOCACY, SITUATION ANALYSIS AND COMMUNITY DIAGNOSIS',4,200,NULL,1),
(237,6,'HIM207','MEDICAL TERMINOLOGY',2,200,NULL,1),
(238,6,'CHE235','OCCUPATIONAL HEALTH AND SAFETY',2,200,NULL,1),
(239,6,'GUT214','MATERNAL AND CHILD HEALTH',2,200,NULL,1),
(240,6,'CHE233','FAMILY PLANING',1,200,NULL,1),
(241,6,'PHT221','PHARMACOLOGY',2,200,NULL,1),
(242,6,'MET244','COMMUNICABLE AND NON COMMUNICABLE',3,200,NULL,1),
(243,6,'CHE244','MENTAL HEALTH',2,200,NULL,1),
(244,6,'HET221','MANAGEMENT AND ADMINISTRATION HEALTH PROGRAMME',2,200,NULL,1),
(245,6,'HET222','SCHOOL HEALTH SERVICES',2,200,NULL,1),
(246,6,'CHE255','MANAGEMENT OF ESSENTIAL DRUGS',2,200,NULL,1),
(247,6,'CHE242','CLINICAL SKILLS II',4,200,NULL,1),
(248,6,'HET305','COMMUNITY EYE CARE',1,300,NULL,1),
(249,6,'HET308','CARE OF HANDICAP',1,300,NULL,1),
(250,6,'HET302','VECTOR OF MEDICAL IMPORTANCE',3,300,NULL,1);
INSERT INTO `courses` (`id`,`department_id`,`code`,`title`,`credit_units`,`level`,`description`,`is_active`) VALUES
(251,6,'HET304','COMMUNITY EAR, NOSE AND THROAT CARE (ENT)',2,300,NULL,1),
(252,6,'HET307','HUMAN ANATOMY',3,300,NULL,1),
(253,6,'HET301','MEDICAL DIAGNOSIS',1,300,NULL,1),
(254,6,'HET313','RESEARCH METHODOLOGY',2,300,NULL,1),
(255,6,'HET320','ORAL HEALTH',2,300,NULL,1),
(256,6,'HET312','INTRODUCTION TO IMMUNOLOGY',3,300,NULL,1),
(257,6,'HET318','PRINCIPLE AND PRACTISE OF FOOD HYGIENE',2,300,NULL,1),
(258,6,'GHT102','HEALTH EDUCATION',2,100,NULL,1),
(259,6,'SWK101','INTRODUCTION TO SOCIAL WORK',2,100,NULL,1),
(260,6,'SWK111','COMMUNICATION IN SOCIAL WORK',2,100,NULL,1),
(261,6,'SWK201','SOCIAL WORK THEORY',2,100,NULL,1),
(262,3,'FAP102','FIRST AID AND PRIMARY HEALTH CARE',2,100,NULL,1),
(263,2,'HCP361','HOSPITAL/COMMUNITY AND INDUSTRIAL PRACTICE',6,300,NULL,1),
(264,6,'SWK231','CRIME AND DELINGUENCY',2,200,NULL,1),
(265,1,'BCH101','INTRODUCTION TO PHYSICAL CHEMISTRY',1,100,NULL,1),
(266,6,'EHT214','PRINCIPLE OF EPIDEMIOLOGY / DISEASES CONTROL',2,300,NULL,1),
(267,6,'HIM212','HEALTH MANAGEMENT INFORMATION',2,300,NULL,1),
(268,6,'GHT311','CARE OF HOSPITAL EQUIPMENT',2,300,NULL,1),
(269,6,'DTH217','INTRODUCTORY RADIOGRAPHY',1,300,NULL,1),
(270,6,'BDP331','BASIC DISPENSING PRACTICAL III',3,300,NULL,1),
(271,6,'BDT351','BASIC DISPENSING THEORY IV',3,300,NULL,1),
(272,2,'AUM321','ACTION USES OF MEDICINE S',3,300,NULL,1),
(273,2,'ICT301','COMPUTER APPLICATION IN PHARMACY',2,300,NULL,1),
(274,2,'SEM301','SEMINAR PRESENTATION I',2,300,NULL,1),
(275,2,'ANA342','ANATOMY AND PHYSIOLOGY',3,300,NULL,1),
(276,2,'PHC302','PRIMARY HEALTH CARE II',2,300,NULL,1),
(277,2,'312','PRINCIPLES OF PHARMACY TECHNICIAN',2,300,NULL,1),
(278,2,'PCL322','ACTION USES OF MEDICINE S IV',3,300,NULL,1),
(279,2,'BDP332','BASIC DISPENSING PRACTICAL IV',3,300,NULL,1),
(280,2,'BDT352','BASIC DISPENSING THEORY V',3,300,NULL,1),
(281,2,'SEM302','SEMINAR PRESENTATION II',2,300,NULL,1),
(282,6,'GNS112','CITIZENSHI II',1,100,NULL,1),
(283,6,'GHT216','MENTAL HEALTH',2,100,NULL,1),
(284,6,'CHE223','CLINICAL SKILLS',3,100,NULL,1),
(285,6,'EHT125','INTRO TO PUBLIC HEALTH',1,100,NULL,1),
(286,6,'EHT112','PRINCIPPLE OF EPIDEMIOLOGY',1,100,NULL,1),
(287,6,'COM112','CHILD HEALTH',2,100,NULL,1),
(288,6,'GNS118','GEOGRAPHY',1,100,NULL,1),
(289,6,'HIM106','BEHAVIORAL SCIENCE',1,100,NULL,1),
(290,6,'GNS201','SOCIAL WORK',2,200,NULL,1),
(291,6,'EHT205','HAZARDOUS WASTE',2,200,NULL,1),
(292,6,'GNS209','FAMILY CASE STUDY',1,200,NULL,1),
(293,6,'PHM101','PHARMACOLOGY',1,100,NULL,1),
(294,6,'GHT101','INTRODUCTION TO MEDICAL SOCIOLOGY',3,100,NULL,1),
(295,6,'GHT204','FIRST AID',1,100,NULL,1),
(296,6,'MHT101','GENERAL MATHEMATICS',2,100,NULL,1),
(297,6,'PHY101','GENERAL PHYSICS',2,100,NULL,1),
(298,8,'GHT103','SIMPLE CLINICAL SKILL',2,100,NULL,1),
(299,1,'CHE202','ANATOMY AND PHYSIOLOGY IV',2,200,NULL,1),
(300,1,'CHE315','COMMUNITY DISASTER AND COMPLEX',2,300,NULL,1),
(301,2,'PTP312','PRIINCIPLES OF PHARMACY TECHNICIAN PRACTICE II',2,300,NULL,1),
(302,1,'CHE118','CARE AND MANAGEMENT OF HIV/AIDS',1,100,NULL,1),
(303,8,'STB102','MEDICAL LABORATORY SCIENCE TECHNOLOHY',3,100,NULL,1),
(304,1,'CHE220','RESEARCH METHODOLOGY',2,200,NULL,1),
(305,6,'GNS222','SEMINARR',3,300,NULL,1),
(306,6,'DST210','ORAL PACHOLOGYY',2,300,NULL,1),
(307,6,'GHT207','TOXICOLOGYY',2,300,NULL,1),
(308,6,'COM203','CARE OF THE AGEDD',1,300,NULL,1),
(309,6,'HET317','REFFERRAL SYSTEMM',1,300,NULL,1),
(310,6,'HET316','HEALTH STATISTIC C',2,300,NULL,1),
(311,6,'PUB316','ENTOMOLOGYY',2,300,NULL,1),
(312,6,'PUB201','EAR, NOSE AND THROATCAREE',2,300,NULL,1),
(313,6,'HET315','HEAITH STATISTIC',2,300,NULL,1),
(314,6,'PUB312','CARE OF THE PHYSICAL CHALLENGED',2,300,NULL,1),
(315,6,'GNS319','ENTREPRENEUR/SKILL ACQUISITION',2,300,NULL,1),
(316,6,'GNS321','RESEARCH PROJECT',6,300,NULL,1),
(317,6,'PUB320','SUPERVISED CLINICAL BASE EXPERIENCE',4,300,NULL,1),
(318,6,'GHT210','HERBAL AND NATURAL PRODUCTS',2,200,NULL,1),
(319,6,'GNS218','CONTROL OF COMMUNICABLE DISEASE',2,200,NULL,1),
(320,6,'EHT207','PRINCIPLE OF HEALTH PROMOTION',1,200,NULL,1),
(321,6,'PHT201','MEDICINE USE REVIEW',1,200,NULL,1),
(322,6,'DST218','PAIN AND ANXIETY',2,200,NULL,1),
(323,6,'HIM216','HEAITH RECORD MANAGEMENT',1,200,NULL,1),
(324,6,'GHT105','ORAL HYGIENE',1,200,NULL,1),
(325,6,'FDN221','FOOD AND NUTRITION',3,200,NULL,1),
(326,6,'PUB223','PATIENT EXAMINATION',2,200,NULL,1),
(327,6,'MED223','MEDICAL LAW AND ETHICS',3,200,NULL,1),
(328,6,'HET125','ADOLESECENT HEALTH',2,100,NULL,1),
(329,6,'MET125','MEDICAL TERMINOLOGY',3,100,NULL,1),
(330,6,'POM106','PRINCILE OF MANAGEMENT',3,100,NULL,1),
(331,6,'PUB111','SUPERVISE PRACTICAL EXPERIENCE',4,100,NULL,1),
(332,6,'PUB119','ENTREPENEUR AND SKILL ACQUISITION',2,100,NULL,1),
(333,6,'EHT203','.RESEARCH METHODOLOGY',2,300,NULL,1),
(334,8,'PUB315','EAR, NOSE, AND THROAT CARE..',2,300,NULL,1),
(335,6,'HET314','PATHOGENIC MICROBIOLOGY..',1,300,NULL,1),
(336,9,'DST101','DST101',0,100,NULL,1),
(337,9,'ACC111','ACC111',0,100,NULL,1),
(338,9,'ACC112','ACC112',0,100,NULL,1),
(339,9,'ACC113','ACC113',0,100,NULL,1),
(340,9,'ACC114','ACC114',0,100,NULL,1),
(341,9,'ACC115','ACC115',0,100,NULL,1),
(342,9,'COURSE9322','COURSE9322',0,100,NULL,1),
(343,9,'COURSE9323','COURSE9323',0,100,NULL,1),
(344,9,'COURSE9324','COURSE9324',0,100,NULL,1),
(345,9,'COURSE9325','COURSE9325',0,100,NULL,1),
(346,9,'COURSE9326','COURSE9326',0,100,NULL,1),
(347,9,'COURSE9327','COURSE9327',0,100,NULL,1),
(348,9,'COURSE9328','COURSE9328',0,100,NULL,1),
(349,9,'COURSE9329','COURSE9329',0,100,NULL,1),
(350,9,'COURSE9330','COURSE9330',0,100,NULL,1),
(351,9,'COURSE9331','COURSE9331',0,100,NULL,1),
(352,9,'COURSE9332','COURSE9332',0,100,NULL,1),
(353,9,'GNS411','INTRODUCTION TO PSYCHOLOGY',2,100,NULL,1),
(354,9,'FOT111','GEOGRAPHY',1,100,NULL,1),
(355,9,'CHE221','SYMPTOMATOLOGY',2,100,NULL,1),
(356,9,'CHE222','POPULATION DYNAMICS AND FAMILY PLANNING',3,100,NULL,1),
(357,9,'CHE224','IMMUNITY AND IMMUNIZATION 2',2,100,NULL,1),
(358,9,'CHE225','CONTROL OF COMMUNICABLE DISEASES',2,100,NULL,1),
(359,9,'CHE226','ACCIDENT AND EMERGENCY 2',2,100,NULL,1),
(360,9,'CHE227','SUPERVISED CLINICAL EXPERIENCE 1',3,100,NULL,1),
(361,9,'CHE251','CARE OF THE OLDER PERSONS',1,300,NULL,1),
(362,9,'CHE252','CARE OF PERSONS WITH SPECIAL NEEDS',2,300,NULL,1),
(363,9,'CHE253','HEALTH STATISTICS',2,300,NULL,1),
(364,9,'CHE257','COMMUNITY BASED NEWBORN CARE 2',2,300,NULL,1),
(365,9,'CHE258','SUPERVISED COMMUNITY BASED EXPERIENCE',4,300,NULL,1),
(366,9,'CHE254','ESSENTIAL MEDICINES',2,300,NULL,1),
(367,9,'CHE261','PRIMARY HEALTH CARE MANAGEMENT 2',2,300,NULL,1),
(368,9,'CHE262','REFERRAL SYSTEM AND OUTREACH SERVICES',2,300,NULL,1),
(369,9,'CHE263','ACCOUNTING SYSTEM IN PUBLIC HEALTH CARE',1,300,NULL,1),
(370,9,'CHE241','CLINICAL SKILLS II',3,200,NULL,1),
(371,9,'CHE243','MODIFIED ESSENTIAL NEWBORN CARE',3,200,NULL,1),
(372,9,'CHE246','USE OF STANDING ORDERS',3,200,NULL,1),
(373,9,'CHE247','NIGERIAN HEALTH SYSTEM',2,200,NULL,1),
(374,9,'CHE248','SUPERVISED CLINICAL EXPERIENCE II 4',4,200,NULL,1),
(375,9,'GNP123','INTRODUCTION TO PHARMACOLOGY',2,200,NULL,1),
(376,9,'CHE234','REPRODUCTIVE HEALTH',2,200,NULL,1),
(377,9,'CHE236','SCHOOL HEALTH PROGRAMME',2,200,NULL,1),
(378,9,'CHE240','OCCUPATIONAL HEALTH AND SAFETY',2,200,NULL,1),
(379,9,'CHE238','COMMUNITY LINKAGES AND DEVELOPMENT',3,200,NULL,1),
(380,9,'EHT103','HEALTH EDUCATION',3,100,NULL,1),
(381,9,'CHE237','CONTROL OF NON COMMUNICABLE DISEASES',2,200,NULL,1),
(382,9,'201','ANATOMY AND PHYSIOLOGY III',2,200,NULL,1),
(383,9,'CHE2307','ESSENTIAL MEDICINES',2,300,NULL,1);

-- course_offerings: 848 records
INSERT INTO `course_offerings` (`id`,`course_id`,`programme_id`,`semester_id`,`lecturer_user_id`,`status`,`max_students`) VALUES
(1,1,1,9,NULL,'compulsory',NULL),
(2,222,13,7,NULL,'compulsory',NULL),
(3,45,1,9,NULL,'compulsory',NULL),
(4,233,1,9,NULL,'compulsory',NULL),
(5,46,1,9,NULL,'compulsory',NULL),
(6,193,1,9,NULL,'compulsory',NULL),
(7,84,1,9,NULL,'compulsory',NULL),
(8,353,1,9,NULL,'compulsory',NULL),
(9,222,1,9,NULL,'compulsory',NULL),
(10,354,1,9,NULL,'compulsory',NULL),
(11,181,1,9,NULL,'compulsory',NULL),
(12,160,1,9,NULL,'compulsory',NULL),
(13,47,13,7,NULL,'compulsory',NULL),
(14,38,13,7,NULL,'compulsory',NULL),
(15,39,13,7,NULL,'compulsory',NULL),
(16,36,13,7,NULL,'compulsory',NULL),
(17,181,13,7,NULL,'compulsory',NULL),
(18,193,13,7,NULL,'compulsory',NULL),
(19,223,13,7,NULL,'compulsory',NULL),
(20,224,13,8,NULL,'compulsory',NULL),
(21,225,13,8,NULL,'compulsory',NULL),
(22,226,13,8,NULL,'compulsory',NULL),
(23,227,13,8,NULL,'compulsory',NULL),
(24,228,13,8,NULL,'compulsory',NULL),
(25,229,13,8,NULL,'compulsory',NULL),
(26,230,13,8,NULL,'compulsory',NULL),
(27,231,13,8,NULL,'compulsory',NULL),
(28,232,13,8,NULL,'compulsory',NULL),
(29,13,4,7,NULL,'compulsory',NULL),
(30,14,4,7,NULL,'compulsory',NULL),
(31,16,4,7,NULL,'compulsory',NULL),
(32,15,4,7,NULL,'compulsory',NULL),
(33,17,4,7,NULL,'compulsory',NULL),
(34,18,4,7,NULL,'compulsory',NULL),
(35,8,4,7,NULL,'compulsory',NULL),
(36,19,4,7,NULL,'compulsory',NULL),
(37,20,4,7,NULL,'compulsory',NULL),
(38,110,4,9,NULL,'compulsory',NULL),
(39,111,4,9,NULL,'compulsory',NULL),
(40,112,4,9,NULL,'compulsory',NULL),
(41,113,4,9,NULL,'compulsory',NULL),
(42,114,4,9,NULL,'compulsory',NULL),
(43,115,4,9,NULL,'compulsory',NULL),
(44,116,4,9,NULL,'compulsory',NULL),
(45,117,4,9,NULL,'compulsory',NULL),
(46,234,13,9,NULL,'compulsory',NULL),
(47,236,13,9,NULL,'compulsory',NULL),
(48,46,13,9,NULL,'compulsory',NULL),
(49,239,13,9,NULL,'compulsory',NULL),
(50,240,13,9,NULL,'compulsory',NULL),
(51,87,13,10,NULL,'compulsory',NULL),
(52,244,13,10,NULL,'compulsory',NULL),
(53,246,13,10,NULL,'compulsory',NULL),
(54,355,1,10,NULL,'compulsory',NULL),
(55,356,1,10,NULL,'compulsory',NULL),
(56,284,1,10,NULL,'compulsory',NULL),
(57,34,1,10,NULL,'compulsory',NULL),
(58,357,1,10,NULL,'compulsory',NULL),
(59,358,1,10,NULL,'compulsory',NULL),
(60,359,1,10,NULL,'compulsory',NULL),
(61,360,1,10,NULL,'compulsory',NULL),
(62,39,1,10,NULL,'compulsory',NULL),
(63,58,3,9,NULL,'compulsory',NULL),
(64,30,3,9,NULL,'compulsory',NULL),
(65,29,3,9,NULL,'compulsory',NULL),
(66,28,3,9,NULL,'compulsory',NULL),
(67,27,3,9,NULL,'compulsory',NULL),
(68,26,3,9,NULL,'compulsory',NULL),
(69,25,3,9,NULL,'compulsory',NULL),
(70,24,3,9,NULL,'compulsory',NULL),
(71,23,3,9,NULL,'compulsory',NULL),
(72,22,3,9,NULL,'compulsory',NULL),
(73,21,3,9,NULL,'compulsory',NULL),
(74,61,3,10,NULL,'compulsory',NULL),
(75,60,3,10,NULL,'compulsory',NULL),
(76,59,3,10,NULL,'compulsory',NULL),
(77,57,3,10,NULL,'compulsory',NULL),
(78,56,3,10,NULL,'compulsory',NULL),
(79,55,3,10,NULL,'compulsory',NULL),
(80,54,3,10,NULL,'compulsory',NULL),
(81,53,3,10,NULL,'compulsory',NULL),
(82,52,3,10,NULL,'compulsory',NULL),
(83,13,4,9,NULL,'compulsory',NULL),
(84,14,4,9,NULL,'compulsory',NULL),
(85,15,4,9,NULL,'compulsory',NULL),
(86,16,4,9,NULL,'compulsory',NULL),
(87,17,4,9,NULL,'compulsory',NULL),
(88,18,4,9,NULL,'compulsory',NULL),
(89,8,4,9,NULL,'compulsory',NULL),
(90,19,4,9,NULL,'compulsory',NULL),
(91,20,4,9,NULL,'compulsory',NULL),
(92,361,1,9,NULL,'compulsory',NULL),
(93,362,1,9,NULL,'compulsory',NULL),
(94,246,1,9,NULL,'compulsory',NULL),
(95,363,1,9,NULL,'compulsory',NULL),
(96,94,1,9,NULL,'compulsory',NULL),
(97,364,1,9,NULL,'compulsory',NULL),
(98,365,1,9,NULL,'compulsory',NULL),
(99,366,1,10,NULL,'compulsory',NULL),
(100,367,1,10,NULL,'compulsory',NULL),
(101,368,1,10,NULL,'compulsory',NULL),
(102,369,1,10,NULL,'compulsory',NULL),
(103,100,1,10,NULL,'compulsory',NULL),
(104,46,1,10,NULL,'compulsory',NULL),
(105,101,1,10,NULL,'compulsory',NULL),
(106,87,1,10,NULL,'compulsory',NULL),
(107,62,3,10,NULL,'compulsory',NULL),
(108,102,4,10,NULL,'compulsory',NULL),
(109,103,4,10,NULL,'compulsory',NULL),
(110,104,4,10,NULL,'compulsory',NULL),
(111,105,4,10,NULL,'compulsory',NULL),
(112,106,4,10,NULL,'compulsory',NULL),
(113,107,4,10,NULL,'compulsory',NULL),
(114,108,4,10,NULL,'compulsory',NULL),
(115,109,4,10,NULL,'compulsory',NULL),
(116,234,13,7,NULL,'compulsory',NULL),
(117,236,13,7,NULL,'compulsory',NULL),
(118,46,13,7,NULL,'compulsory',NULL),
(119,238,13,7,NULL,'compulsory',NULL),
(120,239,13,7,NULL,'compulsory',NULL),
(121,240,13,7,NULL,'compulsory',NULL),
(122,118,4,10,NULL,'compulsory',NULL),
(123,119,4,10,NULL,'compulsory',NULL),
(124,120,4,10,NULL,'compulsory',NULL),
(125,122,4,10,NULL,'compulsory',NULL),
(126,123,4,10,NULL,'compulsory',NULL),
(127,238,13,9,NULL,'compulsory',NULL),
(128,121,4,10,NULL,'compulsory',NULL),
(129,124,4,10,NULL,'compulsory',NULL),
(130,125,4,10,NULL,'compulsory',NULL),
(131,110,4,7,NULL,'compulsory',NULL),
(132,112,4,7,NULL,'compulsory',NULL),
(133,115,4,7,NULL,'compulsory',NULL),
(134,114,4,7,NULL,'compulsory',NULL),
(135,113,4,7,NULL,'compulsory',NULL),
(136,116,4,7,NULL,'compulsory',NULL),
(137,117,4,7,NULL,'compulsory',NULL),
(138,63,3,9,NULL,'compulsory',NULL),
(139,64,3,9,NULL,'compulsory',NULL),
(140,65,3,9,NULL,'compulsory',NULL),
(141,66,3,9,NULL,'compulsory',NULL),
(142,67,3,9,NULL,'compulsory',NULL),
(143,68,3,9,NULL,'compulsory',NULL),
(144,69,3,9,NULL,'compulsory',NULL),
(145,70,3,9,NULL,'compulsory',NULL),
(146,71,3,9,NULL,'compulsory',NULL),
(147,72,3,10,NULL,'compulsory',NULL),
(148,73,3,10,NULL,'compulsory',NULL),
(149,74,3,10,NULL,'compulsory',NULL),
(150,75,3,10,NULL,'compulsory',NULL),
(151,76,3,10,NULL,'compulsory',NULL),
(152,77,3,10,NULL,'compulsory',NULL),
(153,78,3,10,NULL,'compulsory',NULL),
(154,21,3,7,NULL,'compulsory',NULL),
(155,22,3,7,NULL,'compulsory',NULL),
(156,23,3,7,NULL,'compulsory',NULL),
(157,24,3,7,NULL,'compulsory',NULL),
(158,25,3,7,NULL,'compulsory',NULL),
(159,26,3,7,NULL,'compulsory',NULL),
(160,27,3,7,NULL,'compulsory',NULL),
(161,28,3,7,NULL,'compulsory',NULL),
(162,29,3,7,NULL,'compulsory',NULL),
(163,30,3,7,NULL,'compulsory',NULL),
(164,58,3,7,NULL,'compulsory',NULL),
(165,52,3,8,NULL,'compulsory',NULL),
(166,53,3,8,NULL,'compulsory',NULL),
(167,54,3,8,NULL,'compulsory',NULL),
(168,55,3,8,NULL,'compulsory',NULL),
(169,56,3,8,NULL,'compulsory',NULL),
(170,57,3,8,NULL,'compulsory',NULL),
(171,59,3,8,NULL,'compulsory',NULL),
(172,60,3,8,NULL,'compulsory',NULL),
(173,61,3,8,NULL,'compulsory',NULL),
(174,62,3,8,NULL,'compulsory',NULL),
(175,370,1,10,NULL,'compulsory',NULL),
(176,247,1,10,NULL,'compulsory',NULL),
(177,371,1,10,NULL,'compulsory',NULL),
(178,243,1,10,NULL,'compulsory',NULL),
(179,83,1,10,NULL,'compulsory',NULL),
(180,372,1,10,NULL,'compulsory',NULL),
(181,373,1,10,NULL,'compulsory',NULL),
(182,374,1,10,NULL,'compulsory',NULL),
(183,375,1,10,NULL,'compulsory',NULL),
(184,240,1,9,NULL,'compulsory',NULL),
(185,236,1,9,NULL,'compulsory',NULL),
(186,102,4,8,NULL,'compulsory',NULL),
(187,103,4,8,NULL,'compulsory',NULL),
(188,104,4,8,NULL,'compulsory',NULL),
(189,105,4,8,NULL,'compulsory',NULL),
(190,106,4,8,NULL,'compulsory',NULL),
(191,108,4,8,NULL,'compulsory',NULL),
(192,107,4,8,NULL,'compulsory',NULL),
(193,376,1,9,NULL,'compulsory',NULL),
(194,238,1,9,NULL,'compulsory',NULL),
(195,377,1,9,NULL,'compulsory',NULL),
(196,87,1,9,NULL,'compulsory',NULL),
(197,378,1,9,NULL,'compulsory',NULL),
(198,49,1,9,NULL,'compulsory',NULL),
(199,379,1,9,NULL,'compulsory',NULL),
(200,222,15,9,NULL,'compulsory',NULL),
(201,47,15,9,NULL,'compulsory',NULL),
(202,38,15,9,NULL,'compulsory',NULL),
(203,39,15,9,NULL,'compulsory',NULL),
(204,36,15,9,NULL,'compulsory',NULL),
(205,181,15,9,NULL,'compulsory',NULL),
(206,193,15,9,NULL,'compulsory',NULL),
(207,380,15,9,NULL,'compulsory',NULL),
(208,259,15,9,NULL,'compulsory',NULL),
(209,260,15,9,NULL,'compulsory',NULL),
(210,261,15,9,NULL,'compulsory',NULL),
(211,262,4,10,NULL,'compulsory',NULL),
(212,1,1,7,NULL,'compulsory',NULL),
(213,45,1,7,NULL,'compulsory',NULL),
(214,233,1,7,NULL,'compulsory',NULL),
(215,46,1,7,NULL,'compulsory',NULL),
(216,193,1,7,NULL,'compulsory',NULL),
(217,84,1,7,NULL,'compulsory',NULL),
(218,353,1,7,NULL,'compulsory',NULL),
(219,222,1,7,NULL,'compulsory',NULL),
(220,354,1,7,NULL,'compulsory',NULL),
(221,181,1,7,NULL,'compulsory',NULL),
(222,160,1,7,NULL,'compulsory',NULL),
(223,355,1,8,NULL,'compulsory',NULL),
(224,356,1,8,NULL,'compulsory',NULL),
(225,284,1,8,NULL,'compulsory',NULL),
(226,34,1,8,NULL,'compulsory',NULL),
(227,357,1,8,NULL,'compulsory',NULL),
(228,358,1,8,NULL,'compulsory',NULL),
(229,359,1,8,NULL,'compulsory',NULL),
(230,360,1,8,NULL,'compulsory',NULL),
(231,39,1,8,NULL,'compulsory',NULL),
(232,87,1,8,NULL,'compulsory',NULL),
(233,47,1,10,NULL,'compulsory',NULL),
(234,48,1,7,NULL,'compulsory',NULL),
(235,1,1,5,NULL,'compulsory',NULL),
(236,45,1,5,NULL,'compulsory',NULL),
(237,233,1,5,NULL,'compulsory',NULL),
(238,46,1,5,NULL,'compulsory',NULL),
(239,193,1,5,NULL,'compulsory',NULL),
(240,84,1,5,NULL,'compulsory',NULL),
(241,353,1,5,NULL,'compulsory',NULL),
(242,222,1,5,NULL,'compulsory',NULL),
(243,354,1,5,NULL,'compulsory',NULL),
(244,181,1,5,NULL,'compulsory',NULL),
(245,160,1,5,NULL,'compulsory',NULL),
(246,48,1,5,NULL,'compulsory',NULL),
(247,355,1,6,NULL,'compulsory',NULL),
(248,356,1,6,NULL,'compulsory',NULL),
(249,284,1,6,NULL,'compulsory',NULL),
(250,34,1,6,NULL,'compulsory',NULL);
INSERT INTO `course_offerings` (`id`,`course_id`,`programme_id`,`semester_id`,`lecturer_user_id`,`status`,`max_students`) VALUES
(251,357,1,6,NULL,'compulsory',NULL),
(252,358,1,6,NULL,'compulsory',NULL),
(253,359,1,6,NULL,'compulsory',NULL),
(254,360,1,6,NULL,'compulsory',NULL),
(255,39,1,6,NULL,'compulsory',NULL),
(256,87,1,6,NULL,'compulsory',NULL),
(257,236,1,7,NULL,'compulsory',NULL),
(258,240,1,7,NULL,'compulsory',NULL),
(259,376,1,7,NULL,'compulsory',NULL),
(260,238,1,7,NULL,'compulsory',NULL),
(261,377,1,7,NULL,'compulsory',NULL),
(262,379,1,7,NULL,'compulsory',NULL),
(263,49,1,7,NULL,'compulsory',NULL),
(264,378,1,7,NULL,'compulsory',NULL),
(265,87,1,7,NULL,'compulsory',NULL),
(266,47,1,8,NULL,'compulsory',NULL),
(267,370,1,8,NULL,'compulsory',NULL),
(268,247,1,8,NULL,'compulsory',NULL),
(269,371,1,8,NULL,'compulsory',NULL),
(270,243,1,8,NULL,'compulsory',NULL),
(271,83,1,8,NULL,'compulsory',NULL),
(272,372,1,8,NULL,'compulsory',NULL),
(273,373,1,8,NULL,'compulsory',NULL),
(274,374,1,8,NULL,'compulsory',NULL),
(275,375,1,8,NULL,'compulsory',NULL),
(276,48,1,9,NULL,'compulsory',NULL),
(277,126,4,10,NULL,'compulsory',NULL),
(278,109,4,8,NULL,'compulsory',NULL),
(279,262,4,8,NULL,'compulsory',NULL),
(280,47,13,5,NULL,'compulsory',NULL),
(281,222,13,5,NULL,'compulsory',NULL),
(282,38,13,5,NULL,'compulsory',NULL),
(283,39,13,5,NULL,'compulsory',NULL),
(284,36,13,5,NULL,'compulsory',NULL),
(285,193,13,5,NULL,'compulsory',NULL),
(286,223,13,5,NULL,'compulsory',NULL),
(287,181,13,5,NULL,'compulsory',NULL),
(288,13,4,5,NULL,'compulsory',NULL),
(289,14,4,5,NULL,'compulsory',NULL),
(290,15,4,5,NULL,'compulsory',NULL),
(291,16,4,5,NULL,'compulsory',NULL),
(292,17,4,5,NULL,'compulsory',NULL),
(293,18,4,5,NULL,'compulsory',NULL),
(294,8,4,5,NULL,'compulsory',NULL),
(295,19,4,5,NULL,'compulsory',NULL),
(296,20,4,5,NULL,'compulsory',NULL),
(297,102,4,6,NULL,'compulsory',NULL),
(298,103,4,6,NULL,'compulsory',NULL),
(299,104,4,6,NULL,'compulsory',NULL),
(300,105,4,6,NULL,'compulsory',NULL),
(301,106,4,6,NULL,'compulsory',NULL),
(302,107,4,6,NULL,'compulsory',NULL),
(303,108,4,6,NULL,'compulsory',NULL),
(304,109,4,6,NULL,'compulsory',NULL),
(305,262,4,6,NULL,'compulsory',NULL),
(306,224,13,6,NULL,'compulsory',NULL),
(307,225,13,6,NULL,'compulsory',NULL),
(308,226,13,6,NULL,'compulsory',NULL),
(309,227,13,6,NULL,'compulsory',NULL),
(310,228,13,6,NULL,'compulsory',NULL),
(311,229,13,6,NULL,'compulsory',NULL),
(312,230,13,6,NULL,'compulsory',NULL),
(313,231,13,6,NULL,'compulsory',NULL),
(314,232,13,6,NULL,'compulsory',NULL),
(315,248,13,9,NULL,'compulsory',NULL),
(316,249,13,9,NULL,'compulsory',NULL),
(317,250,13,9,NULL,'compulsory',NULL),
(318,251,13,9,NULL,'compulsory',NULL),
(319,252,13,9,NULL,'compulsory',NULL),
(320,253,13,9,NULL,'compulsory',NULL),
(321,254,13,9,NULL,'compulsory',NULL),
(322,233,13,9,NULL,'compulsory',NULL),
(323,237,13,9,NULL,'compulsory',NULL),
(324,245,13,10,NULL,'compulsory',NULL),
(325,247,13,10,NULL,'compulsory',NULL),
(326,241,13,10,NULL,'compulsory',NULL),
(327,242,13,10,NULL,'compulsory',NULL),
(328,243,13,10,NULL,'compulsory',NULL),
(329,160,13,10,NULL,'compulsory',NULL),
(330,233,13,7,NULL,'compulsory',NULL),
(331,237,13,7,NULL,'compulsory',NULL),
(332,87,13,8,NULL,'compulsory',NULL),
(333,241,13,8,NULL,'compulsory',NULL),
(334,242,13,8,NULL,'compulsory',NULL),
(335,243,13,8,NULL,'compulsory',NULL),
(336,160,13,8,NULL,'compulsory',NULL),
(337,244,13,8,NULL,'compulsory',NULL),
(338,245,13,8,NULL,'compulsory',NULL),
(339,246,13,8,NULL,'compulsory',NULL),
(340,247,13,8,NULL,'compulsory',NULL),
(341,255,13,10,NULL,'compulsory',NULL),
(342,256,13,10,NULL,'compulsory',NULL),
(343,257,13,10,NULL,'compulsory',NULL),
(344,264,13,9,NULL,'compulsory',NULL),
(345,235,13,9,NULL,'compulsory',NULL),
(346,264,13,7,NULL,'compulsory',NULL),
(347,235,13,7,NULL,'compulsory',NULL),
(348,110,13,9,NULL,'compulsory',NULL),
(349,111,4,7,NULL,'compulsory',NULL),
(350,47,1,7,NULL,'compulsory',NULL),
(351,381,1,7,NULL,'compulsory',NULL),
(352,47,1,9,NULL,'compulsory',NULL),
(353,381,1,9,NULL,'compulsory',NULL),
(354,63,3,7,NULL,'compulsory',NULL),
(355,64,3,7,NULL,'compulsory',NULL),
(356,65,3,7,NULL,'compulsory',NULL),
(357,66,3,7,NULL,'compulsory',NULL),
(358,67,3,7,NULL,'compulsory',NULL),
(359,68,3,7,NULL,'compulsory',NULL),
(360,69,3,7,NULL,'compulsory',NULL),
(361,70,3,7,NULL,'compulsory',NULL),
(362,71,3,7,NULL,'compulsory',NULL),
(363,21,3,5,NULL,'compulsory',NULL),
(364,22,3,5,NULL,'compulsory',NULL),
(365,27,3,5,NULL,'compulsory',NULL),
(366,26,3,5,NULL,'compulsory',NULL),
(367,25,3,5,NULL,'compulsory',NULL),
(368,24,3,5,NULL,'compulsory',NULL),
(369,23,3,5,NULL,'compulsory',NULL),
(370,29,3,5,NULL,'compulsory',NULL),
(371,62,3,6,NULL,'compulsory',NULL),
(372,61,3,6,NULL,'compulsory',NULL),
(373,60,3,6,NULL,'compulsory',NULL),
(374,59,3,6,NULL,'compulsory',NULL),
(375,72,3,8,NULL,'compulsory',NULL),
(376,78,3,8,NULL,'compulsory',NULL),
(377,76,3,8,NULL,'compulsory',NULL),
(378,77,3,8,NULL,'compulsory',NULL),
(379,75,3,8,NULL,'compulsory',NULL),
(380,74,3,8,NULL,'compulsory',NULL),
(381,73,3,8,NULL,'compulsory',NULL),
(382,263,3,9,NULL,'compulsory',NULL),
(383,127,4,9,NULL,'compulsory',NULL),
(384,128,4,9,NULL,'compulsory',NULL),
(385,129,4,9,NULL,'compulsory',NULL),
(386,130,4,9,NULL,'compulsory',NULL),
(387,131,4,9,NULL,'compulsory',NULL),
(388,132,4,9,NULL,'compulsory',NULL),
(389,133,4,10,NULL,'compulsory',NULL),
(390,134,4,10,NULL,'compulsory',NULL),
(391,135,4,10,NULL,'compulsory',NULL),
(392,136,4,10,NULL,'compulsory',NULL),
(393,137,4,10,NULL,'compulsory',NULL),
(394,138,4,10,NULL,'compulsory',NULL),
(395,118,4,8,NULL,'compulsory',NULL),
(396,119,4,8,NULL,'compulsory',NULL),
(397,120,4,8,NULL,'compulsory',NULL),
(398,121,4,8,NULL,'compulsory',NULL),
(399,122,4,8,NULL,'compulsory',NULL),
(400,123,4,8,NULL,'compulsory',NULL),
(401,124,4,8,NULL,'compulsory',NULL),
(402,125,4,8,NULL,'compulsory',NULL),
(403,126,4,8,NULL,'compulsory',NULL),
(404,266,13,10,NULL,'compulsory',NULL),
(405,268,13,10,NULL,'compulsory',NULL),
(406,269,13,10,NULL,'compulsory',NULL),
(407,267,13,10,NULL,'compulsory',NULL),
(408,139,9,9,NULL,'compulsory',NULL),
(409,140,9,9,NULL,'compulsory',NULL),
(410,141,9,9,NULL,'compulsory',NULL),
(411,142,9,9,NULL,'compulsory',NULL),
(412,143,9,9,NULL,'compulsory',NULL),
(413,144,9,9,NULL,'compulsory',NULL),
(414,145,9,9,NULL,'compulsory',NULL),
(415,146,9,9,NULL,'compulsory',NULL),
(416,147,9,10,NULL,'compulsory',NULL),
(417,148,9,10,NULL,'compulsory',NULL),
(418,151,9,10,NULL,'compulsory',NULL),
(419,152,9,10,NULL,'compulsory',NULL),
(420,153,9,10,NULL,'compulsory',NULL),
(421,154,9,10,NULL,'compulsory',NULL),
(422,272,3,9,NULL,'compulsory',NULL),
(423,7,15,10,NULL,'compulsory',NULL),
(424,284,15,10,NULL,'compulsory',NULL),
(425,285,15,10,NULL,'compulsory',NULL),
(426,286,15,10,NULL,'compulsory',NULL),
(427,283,15,10,NULL,'compulsory',NULL),
(428,287,15,10,NULL,'compulsory',NULL),
(429,282,15,10,NULL,'compulsory',NULL),
(430,288,15,10,NULL,'compulsory',NULL),
(431,289,15,10,NULL,'compulsory',NULL),
(432,39,15,10,NULL,'compulsory',NULL),
(433,292,13,10,NULL,'compulsory',NULL),
(434,113,13,10,NULL,'compulsory',NULL),
(435,291,13,10,NULL,'compulsory',NULL),
(436,290,13,10,NULL,'compulsory',NULL),
(437,292,13,8,NULL,'compulsory',NULL),
(438,291,13,8,NULL,'compulsory',NULL),
(439,113,13,8,NULL,'compulsory',NULL),
(440,290,13,8,NULL,'compulsory',NULL),
(441,127,4,11,NULL,'compulsory',NULL),
(442,128,4,11,NULL,'compulsory',NULL),
(443,129,4,11,NULL,'compulsory',NULL),
(444,131,4,11,NULL,'compulsory',NULL),
(445,132,4,11,NULL,'compulsory',NULL),
(446,130,4,11,NULL,'compulsory',NULL),
(447,361,1,11,NULL,'compulsory',NULL),
(448,362,1,11,NULL,'compulsory',NULL),
(449,363,1,11,NULL,'compulsory',NULL),
(450,246,1,11,NULL,'compulsory',NULL),
(451,94,1,11,NULL,'compulsory',NULL),
(452,364,1,11,NULL,'compulsory',NULL),
(453,365,1,11,NULL,'compulsory',NULL),
(454,366,1,12,NULL,'compulsory',NULL),
(455,367,1,12,NULL,'compulsory',NULL),
(456,368,1,12,NULL,'compulsory',NULL),
(457,369,1,12,NULL,'compulsory',NULL),
(458,100,1,12,NULL,'compulsory',NULL),
(459,46,1,12,NULL,'compulsory',NULL),
(460,101,1,12,NULL,'compulsory',NULL),
(461,110,4,11,NULL,'compulsory',NULL),
(462,111,4,11,NULL,'compulsory',NULL),
(463,112,4,11,NULL,'compulsory',NULL),
(464,113,4,11,NULL,'compulsory',NULL),
(465,254,13,11,NULL,'compulsory',NULL),
(466,114,4,11,NULL,'compulsory',NULL),
(467,115,4,11,NULL,'compulsory',NULL),
(468,116,4,11,NULL,'compulsory',NULL),
(469,117,4,11,NULL,'compulsory',NULL),
(470,47,1,12,NULL,'compulsory',NULL),
(471,370,1,12,NULL,'compulsory',NULL),
(472,247,1,12,NULL,'compulsory',NULL),
(473,371,1,12,NULL,'compulsory',NULL),
(474,243,1,12,NULL,'compulsory',NULL),
(475,83,1,12,NULL,'compulsory',NULL),
(476,372,1,12,NULL,'compulsory',NULL),
(477,373,1,12,NULL,'compulsory',NULL),
(478,374,1,12,NULL,'compulsory',NULL),
(479,87,1,12,NULL,'compulsory',NULL),
(480,375,1,12,NULL,'compulsory',NULL),
(481,236,1,11,NULL,'compulsory',NULL),
(482,240,1,11,NULL,'compulsory',NULL),
(483,376,1,11,NULL,'compulsory',NULL),
(484,238,1,11,NULL,'compulsory',NULL),
(485,377,1,11,NULL,'compulsory',NULL),
(486,379,1,11,NULL,'compulsory',NULL),
(487,49,1,11,NULL,'compulsory',NULL),
(488,378,1,11,NULL,'compulsory',NULL),
(489,87,1,11,NULL,'compulsory',NULL),
(490,47,1,11,NULL,'compulsory',NULL),
(491,381,1,11,NULL,'compulsory',NULL),
(492,263,3,11,NULL,'compulsory',NULL),
(493,272,3,11,NULL,'compulsory',NULL),
(494,273,3,12,NULL,'compulsory',NULL),
(495,274,3,12,NULL,'compulsory',NULL),
(496,275,3,12,NULL,'compulsory',NULL),
(497,276,3,12,NULL,'compulsory',NULL),
(498,277,3,12,NULL,'compulsory',NULL),
(499,278,3,12,NULL,'compulsory',NULL),
(500,279,3,12,NULL,'compulsory',NULL);
INSERT INTO `course_offerings` (`id`,`course_id`,`programme_id`,`semester_id`,`lecturer_user_id`,`status`,`max_students`) VALUES
(501,280,3,12,NULL,'compulsory',NULL),
(502,133,4,12,NULL,'compulsory',NULL),
(503,134,4,12,NULL,'compulsory',NULL),
(504,135,4,12,NULL,'compulsory',NULL),
(505,136,4,12,NULL,'compulsory',NULL),
(506,138,4,12,NULL,'compulsory',NULL),
(507,269,13,12,NULL,'compulsory',NULL),
(508,268,13,12,NULL,'compulsory',NULL),
(509,267,13,12,NULL,'compulsory',NULL),
(510,257,13,12,NULL,'compulsory',NULL),
(511,256,13,12,NULL,'compulsory',NULL),
(512,255,13,12,NULL,'compulsory',NULL),
(513,63,3,11,NULL,'compulsory',NULL),
(514,64,3,11,NULL,'compulsory',NULL),
(515,66,3,11,NULL,'compulsory',NULL),
(516,67,3,11,NULL,'compulsory',NULL),
(517,68,3,11,NULL,'compulsory',NULL),
(518,69,3,11,NULL,'compulsory',NULL),
(519,70,3,11,NULL,'compulsory',NULL),
(520,71,3,11,NULL,'compulsory',NULL),
(521,155,9,11,NULL,'compulsory',NULL),
(522,157,9,11,NULL,'compulsory',NULL),
(523,159,9,11,NULL,'compulsory',NULL),
(524,161,9,11,NULL,'compulsory',NULL),
(525,156,9,11,NULL,'compulsory',NULL),
(526,158,9,11,NULL,'compulsory',NULL),
(527,160,9,11,NULL,'compulsory',NULL),
(528,162,9,12,NULL,'compulsory',NULL),
(529,163,9,12,NULL,'compulsory',NULL),
(530,164,9,12,NULL,'compulsory',NULL),
(531,165,9,12,NULL,'compulsory',NULL),
(532,167,9,12,NULL,'compulsory',NULL),
(533,168,9,12,NULL,'compulsory',NULL),
(534,169,9,12,NULL,'compulsory',NULL),
(535,150,9,10,NULL,'compulsory',NULL),
(536,65,3,11,NULL,'compulsory',NULL),
(537,266,13,12,NULL,'compulsory',NULL),
(538,13,4,11,NULL,'compulsory',NULL),
(539,14,4,11,NULL,'compulsory',NULL),
(540,15,4,11,NULL,'compulsory',NULL),
(541,16,4,11,NULL,'compulsory',NULL),
(542,17,4,11,NULL,'compulsory',NULL),
(543,18,4,11,NULL,'compulsory',NULL),
(544,8,4,11,NULL,'compulsory',NULL),
(545,19,4,11,NULL,'compulsory',NULL),
(546,19,15,11,NULL,'compulsory',NULL),
(547,298,15,11,NULL,'compulsory',NULL),
(548,297,15,11,NULL,'compulsory',NULL),
(549,14,15,11,NULL,'compulsory',NULL),
(550,296,15,11,NULL,'compulsory',NULL),
(551,193,15,11,NULL,'compulsory',NULL),
(552,295,15,11,NULL,'compulsory',NULL),
(553,1,15,11,NULL,'compulsory',NULL),
(554,294,15,11,NULL,'compulsory',NULL),
(555,16,15,11,NULL,'compulsory',NULL),
(556,293,15,11,NULL,'compulsory',NULL),
(557,258,15,11,NULL,'compulsory',NULL),
(558,10,15,11,NULL,'compulsory',NULL),
(559,222,15,11,NULL,'compulsory',NULL),
(560,265,1,11,NULL,'compulsory',NULL),
(561,12,1,11,NULL,'compulsory',NULL),
(562,11,1,11,NULL,'compulsory',NULL),
(563,5,1,11,NULL,'compulsory',NULL),
(564,3,1,11,NULL,'compulsory',NULL),
(565,9,1,11,NULL,'compulsory',NULL),
(566,6,1,11,NULL,'compulsory',NULL),
(567,2,1,11,NULL,'compulsory',NULL),
(568,4,1,11,NULL,'compulsory',NULL),
(569,8,1,11,NULL,'compulsory',NULL),
(570,10,1,11,NULL,'compulsory',NULL),
(571,1,1,11,NULL,'compulsory',NULL),
(572,7,1,11,NULL,'compulsory',NULL),
(573,126,4,11,NULL,'compulsory',NULL),
(574,139,9,11,NULL,'compulsory',NULL),
(575,140,9,11,NULL,'compulsory',NULL),
(576,141,9,11,NULL,'compulsory',NULL),
(577,142,9,11,NULL,'compulsory',NULL),
(578,143,9,11,NULL,'compulsory',NULL),
(579,144,9,11,NULL,'compulsory',NULL),
(580,145,9,11,NULL,'compulsory',NULL),
(581,146,9,11,NULL,'compulsory',NULL),
(582,39,9,11,NULL,'compulsory',NULL),
(583,2,1,9,NULL,'compulsory',NULL),
(584,7,1,9,NULL,'compulsory',NULL),
(585,3,1,9,NULL,'compulsory',NULL),
(586,4,1,9,NULL,'compulsory',NULL),
(587,6,1,9,NULL,'compulsory',NULL),
(588,8,1,9,NULL,'compulsory',NULL),
(589,10,1,9,NULL,'compulsory',NULL),
(590,12,1,9,NULL,'compulsory',NULL),
(591,5,1,9,NULL,'compulsory',NULL),
(592,9,1,9,NULL,'compulsory',NULL),
(593,11,1,9,NULL,'compulsory',NULL),
(594,21,3,11,NULL,'compulsory',NULL),
(595,22,3,11,NULL,'compulsory',NULL),
(596,23,3,11,NULL,'compulsory',NULL),
(597,24,3,11,NULL,'compulsory',NULL),
(598,25,3,11,NULL,'compulsory',NULL),
(599,26,3,11,NULL,'compulsory',NULL),
(600,27,3,11,NULL,'compulsory',NULL),
(601,28,3,11,NULL,'compulsory',NULL),
(602,29,3,11,NULL,'compulsory',NULL),
(603,30,3,11,NULL,'compulsory',NULL),
(604,41,1,11,NULL,'compulsory',NULL),
(605,42,1,11,NULL,'compulsory',NULL),
(606,44,1,11,NULL,'compulsory',NULL),
(607,45,1,11,NULL,'compulsory',NULL),
(608,48,1,11,NULL,'compulsory',NULL),
(609,50,1,11,NULL,'compulsory',NULL),
(610,46,1,11,NULL,'compulsory',NULL),
(611,85,1,11,NULL,'compulsory',NULL),
(612,382,1,11,NULL,'compulsory',NULL),
(613,89,1,11,NULL,'compulsory',NULL),
(614,90,1,11,NULL,'compulsory',NULL),
(615,91,1,11,NULL,'compulsory',NULL),
(616,93,1,11,NULL,'compulsory',NULL),
(617,95,1,11,NULL,'compulsory',NULL),
(618,300,1,11,NULL,'compulsory',NULL),
(619,58,3,11,NULL,'compulsory',NULL),
(620,137,4,12,NULL,'compulsory',NULL),
(621,41,1,9,NULL,'compulsory',NULL),
(622,42,1,9,NULL,'compulsory',NULL),
(623,44,1,9,NULL,'compulsory',NULL),
(624,50,1,9,NULL,'compulsory',NULL),
(625,85,1,9,NULL,'compulsory',NULL),
(626,382,1,9,NULL,'compulsory',NULL),
(627,32,1,10,NULL,'compulsory',NULL),
(628,265,1,9,NULL,'compulsory',NULL),
(629,383,1,12,NULL,'compulsory',NULL),
(630,118,4,12,NULL,'compulsory',NULL),
(631,119,4,12,NULL,'compulsory',NULL),
(632,120,4,12,NULL,'compulsory',NULL),
(633,121,4,12,NULL,'compulsory',NULL),
(634,122,4,12,NULL,'compulsory',NULL),
(635,126,4,12,NULL,'compulsory',NULL),
(636,123,4,12,NULL,'compulsory',NULL),
(637,124,4,12,NULL,'compulsory',NULL),
(638,125,4,12,NULL,'compulsory',NULL),
(639,19,15,9,NULL,'compulsory',NULL),
(640,298,15,9,NULL,'compulsory',NULL),
(641,297,15,9,NULL,'compulsory',NULL),
(642,14,15,9,NULL,'compulsory',NULL),
(643,296,15,9,NULL,'compulsory',NULL),
(644,295,15,9,NULL,'compulsory',NULL),
(645,1,15,9,NULL,'compulsory',NULL),
(646,294,15,9,NULL,'compulsory',NULL),
(647,16,15,9,NULL,'compulsory',NULL),
(648,293,15,9,NULL,'compulsory',NULL),
(649,281,3,12,NULL,'compulsory',NULL),
(650,39,1,12,NULL,'compulsory',NULL),
(651,355,1,12,NULL,'compulsory',NULL),
(652,284,1,12,NULL,'compulsory',NULL),
(653,357,1,12,NULL,'compulsory',NULL),
(654,359,1,12,NULL,'compulsory',NULL),
(655,360,1,12,NULL,'compulsory',NULL),
(656,276,3,10,NULL,'compulsory',NULL),
(657,279,3,10,NULL,'compulsory',NULL),
(658,280,3,10,NULL,'compulsory',NULL),
(659,275,3,10,NULL,'compulsory',NULL),
(660,278,3,10,NULL,'compulsory',NULL),
(661,301,3,12,NULL,'compulsory',NULL),
(662,270,3,11,NULL,'compulsory',NULL),
(663,271,3,11,NULL,'compulsory',NULL),
(664,273,3,11,NULL,'compulsory',NULL),
(665,274,3,11,NULL,'compulsory',NULL),
(666,31,1,12,NULL,'compulsory',NULL),
(667,35,1,12,NULL,'compulsory',NULL),
(668,36,1,12,NULL,'compulsory',NULL),
(669,38,1,12,NULL,'compulsory',NULL),
(670,40,1,12,NULL,'compulsory',NULL),
(671,302,1,12,NULL,'compulsory',NULL),
(672,303,1,12,NULL,'compulsory',NULL),
(673,79,1,12,NULL,'compulsory',NULL),
(674,80,1,12,NULL,'compulsory',NULL),
(675,81,1,12,NULL,'compulsory',NULL),
(676,82,1,12,NULL,'compulsory',NULL),
(677,84,1,12,NULL,'compulsory',NULL),
(678,86,1,12,NULL,'compulsory',NULL),
(679,88,1,12,NULL,'compulsory',NULL),
(680,299,1,12,NULL,'compulsory',NULL),
(681,233,1,12,NULL,'compulsory',NULL),
(682,304,1,12,NULL,'compulsory',NULL),
(683,99,1,12,NULL,'compulsory',NULL),
(684,98,1,12,NULL,'compulsory',NULL),
(685,97,1,12,NULL,'compulsory',NULL),
(686,318,15,11,NULL,'compulsory',NULL),
(687,118,15,11,NULL,'compulsory',NULL),
(688,319,15,11,NULL,'compulsory',NULL),
(689,119,15,11,NULL,'compulsory',NULL),
(690,115,15,11,NULL,'compulsory',NULL),
(691,320,15,11,NULL,'compulsory',NULL),
(692,321,15,11,NULL,'compulsory',NULL),
(693,323,15,11,NULL,'compulsory',NULL),
(694,324,15,11,NULL,'compulsory',NULL),
(695,322,15,11,NULL,'compulsory',NULL),
(696,87,15,12,NULL,'compulsory',NULL),
(697,244,15,12,NULL,'compulsory',NULL),
(698,325,15,12,NULL,'compulsory',NULL),
(699,326,15,12,NULL,'compulsory',NULL),
(700,327,15,12,NULL,'compulsory',NULL),
(701,96,1,11,NULL,'compulsory',NULL),
(702,89,1,9,NULL,'compulsory',NULL),
(703,90,1,9,NULL,'compulsory',NULL),
(704,91,1,9,NULL,'compulsory',NULL),
(705,93,1,9,NULL,'compulsory',NULL),
(706,95,1,9,NULL,'compulsory',NULL),
(707,96,1,9,NULL,'compulsory',NULL),
(708,300,1,9,NULL,'compulsory',NULL),
(709,273,3,9,NULL,'compulsory',NULL),
(710,270,3,9,NULL,'compulsory',NULL),
(711,271,3,9,NULL,'compulsory',NULL),
(712,281,3,10,NULL,'compulsory',NULL),
(713,301,3,10,NULL,'compulsory',NULL),
(714,274,3,9,NULL,'compulsory',NULL),
(715,92,1,12,NULL,'compulsory',NULL),
(716,92,1,11,NULL,'compulsory',NULL),
(717,43,1,12,NULL,'compulsory',NULL),
(718,102,4,12,NULL,'compulsory',NULL),
(719,103,4,12,NULL,'compulsory',NULL),
(720,104,4,12,NULL,'compulsory',NULL),
(721,105,4,12,NULL,'compulsory',NULL),
(722,106,4,12,NULL,'compulsory',NULL),
(723,107,4,12,NULL,'compulsory',NULL),
(724,108,4,12,NULL,'compulsory',NULL),
(725,262,4,12,NULL,'compulsory',NULL),
(726,109,4,12,NULL,'compulsory',NULL),
(727,286,15,12,NULL,'compulsory',NULL),
(728,224,15,12,NULL,'compulsory',NULL),
(729,225,15,12,NULL,'compulsory',NULL),
(730,328,15,12,NULL,'compulsory',NULL),
(731,227,15,12,NULL,'compulsory',NULL),
(732,228,15,12,NULL,'compulsory',NULL),
(733,229,15,12,NULL,'compulsory',NULL),
(734,230,15,12,NULL,'compulsory',NULL),
(735,295,15,12,NULL,'compulsory',NULL),
(736,231,15,12,NULL,'compulsory',NULL),
(737,329,15,12,NULL,'compulsory',NULL),
(738,330,15,12,NULL,'compulsory',NULL),
(739,213,15,12,NULL,'compulsory',NULL),
(740,331,15,12,NULL,'compulsory',NULL),
(741,332,15,12,NULL,'compulsory',NULL),
(742,308,13,11,NULL,'compulsory',NULL),
(743,307,13,11,NULL,'compulsory',NULL),
(744,333,13,11,NULL,'compulsory',NULL),
(745,305,13,11,NULL,'compulsory',NULL),
(746,306,13,11,NULL,'compulsory',NULL),
(747,37,1,12,NULL,'compulsory',NULL),
(748,33,1,12,NULL,'compulsory',NULL),
(749,307,13,9,NULL,'compulsory',NULL),
(750,306,13,9,NULL,'compulsory',NULL);
INSERT INTO `course_offerings` (`id`,`course_id`,`programme_id`,`semester_id`,`lecturer_user_id`,`status`,`max_students`) VALUES
(751,333,13,9,NULL,'compulsory',NULL),
(752,305,13,9,NULL,'compulsory',NULL),
(753,32,1,12,NULL,'compulsory',NULL),
(754,10,15,9,NULL,'compulsory',NULL),
(755,258,15,9,NULL,'compulsory',NULL),
(756,51,1,11,NULL,'compulsory',NULL),
(757,225,15,10,NULL,'compulsory',NULL),
(758,227,15,10,NULL,'compulsory',NULL),
(759,228,15,10,NULL,'compulsory',NULL),
(760,51,1,9,NULL,'compulsory',NULL),
(761,7,1,7,NULL,'compulsory',NULL),
(762,79,1,10,NULL,'compulsory',NULL),
(763,80,1,10,NULL,'compulsory',NULL),
(764,81,1,10,NULL,'compulsory',NULL),
(765,82,1,10,NULL,'compulsory',NULL),
(766,84,1,10,NULL,'compulsory',NULL),
(767,86,1,10,NULL,'compulsory',NULL),
(768,46,16,11,NULL,'compulsory',NULL),
(769,304,1,10,NULL,'compulsory',NULL),
(770,233,1,10,NULL,'compulsory',NULL),
(771,88,1,10,NULL,'compulsory',NULL),
(772,148,9,12,NULL,'compulsory',NULL),
(773,151,9,12,NULL,'compulsory',NULL),
(774,147,9,12,NULL,'compulsory',NULL),
(775,149,9,12,NULL,'compulsory',NULL),
(776,152,9,12,NULL,'compulsory',NULL),
(777,153,9,12,NULL,'compulsory',NULL),
(778,154,9,12,NULL,'compulsory',NULL),
(779,150,9,12,NULL,'compulsory',NULL),
(780,43,1,10,NULL,'compulsory',NULL),
(781,7,15,12,NULL,'compulsory',NULL),
(782,284,15,12,NULL,'compulsory',NULL),
(783,288,15,12,NULL,'compulsory',NULL),
(784,34,1,12,NULL,'compulsory',NULL),
(785,72,3,12,NULL,'compulsory',NULL),
(786,73,3,12,NULL,'compulsory',NULL),
(787,74,3,12,NULL,'compulsory',NULL),
(788,75,3,12,NULL,'compulsory',NULL),
(789,76,3,12,NULL,'compulsory',NULL),
(790,77,3,12,NULL,'compulsory',NULL),
(791,78,3,12,NULL,'compulsory',NULL),
(792,47,15,11,NULL,'compulsory',NULL),
(793,36,15,11,NULL,'compulsory',NULL),
(794,38,15,11,NULL,'compulsory',NULL),
(795,39,15,11,NULL,'compulsory',NULL),
(796,52,3,12,NULL,'compulsory',NULL),
(797,53,3,12,NULL,'compulsory',NULL),
(798,55,3,12,NULL,'compulsory',NULL),
(799,54,3,12,NULL,'compulsory',NULL),
(800,56,3,12,NULL,'compulsory',NULL),
(801,57,3,12,NULL,'compulsory',NULL),
(802,59,3,12,NULL,'compulsory',NULL),
(803,60,3,12,NULL,'compulsory',NULL),
(804,61,3,12,NULL,'compulsory',NULL),
(805,62,3,12,NULL,'compulsory',NULL),
(806,166,9,12,NULL,'compulsory',NULL),
(807,36,1,10,NULL,'compulsory',NULL),
(808,302,1,10,NULL,'compulsory',NULL),
(809,303,1,10,NULL,'compulsory',NULL),
(810,97,1,10,NULL,'compulsory',NULL),
(811,98,1,10,NULL,'compulsory',NULL),
(812,99,1,10,NULL,'compulsory',NULL),
(813,97,1,8,NULL,'compulsory',NULL),
(814,98,1,8,NULL,'compulsory',NULL),
(815,99,1,8,NULL,'compulsory',NULL),
(816,100,1,8,NULL,'compulsory',NULL),
(817,46,1,8,NULL,'compulsory',NULL),
(818,309,13,12,NULL,'compulsory',NULL),
(819,311,13,12,NULL,'compulsory',NULL),
(820,314,13,12,NULL,'compulsory',NULL),
(821,313,13,12,NULL,'compulsory',NULL),
(822,335,13,12,NULL,'compulsory',NULL),
(823,334,13,12,NULL,'compulsory',NULL),
(824,113,13,12,NULL,'compulsory',NULL),
(825,309,13,10,NULL,'compulsory',NULL),
(826,311,13,10,NULL,'compulsory',NULL),
(827,314,13,10,NULL,'compulsory',NULL),
(828,313,13,10,NULL,'compulsory',NULL),
(829,335,13,10,NULL,'compulsory',NULL),
(830,334,13,10,NULL,'compulsory',NULL),
(831,308,13,9,NULL,'compulsory',NULL),
(832,336,1,9,NULL,'compulsory',NULL),
(833,337,1,9,NULL,'compulsory',NULL),
(834,338,1,9,NULL,'compulsory',NULL),
(835,339,1,9,NULL,'compulsory',NULL),
(836,340,1,9,NULL,'compulsory',NULL),
(837,341,1,9,NULL,'compulsory',NULL),
(838,342,1,9,NULL,'compulsory',NULL),
(839,343,1,9,NULL,'compulsory',NULL),
(840,344,1,9,NULL,'compulsory',NULL),
(841,345,1,9,NULL,'compulsory',NULL),
(842,346,1,9,NULL,'compulsory',NULL),
(843,347,1,9,NULL,'compulsory',NULL),
(844,348,1,9,NULL,'compulsory',NULL),
(845,349,1,9,NULL,'compulsory',NULL),
(846,350,1,9,NULL,'compulsory',NULL),
(847,351,1,9,NULL,'compulsory',NULL),
(848,352,1,9,NULL,'compulsory',NULL);

-- course_registrations: 1117 records
INSERT INTO `course_registrations` (`id`,`student_id`,`semester_id`,`status`,`registered_at`,`approved_at`) VALUES
(1,166,9,'approved','2025-04-18','2025-04-18'),
(2,38,7,'approved','2025-04-18','2025-04-18'),
(3,87,7,'approved','2025-04-19','2025-04-19'),
(4,87,8,'approved','2025-04-19','2025-04-19'),
(5,51,7,'approved','2025-04-19','2025-04-19'),
(6,8,7,'approved','2025-04-19','2025-04-19'),
(7,8,8,'approved','2025-04-19','2025-04-19'),
(8,23,7,'approved','2025-04-19','2025-04-19'),
(9,23,8,'approved','2025-04-19','2025-04-19'),
(10,88,7,'approved','2025-04-19','2025-04-19'),
(11,12,7,'approved','2025-04-19','2025-04-19'),
(12,83,7,'approved','2025-04-19','2025-04-19'),
(13,51,8,'approved','2025-04-19','2025-04-19'),
(14,83,8,'approved','2025-04-19','2025-04-19'),
(15,22,7,'approved','2025-04-19','2025-04-19'),
(16,79,7,'approved','2025-04-20','2025-04-20'),
(17,79,8,'approved','2025-04-20','2025-04-20'),
(18,38,8,'approved','2025-04-20','2025-04-20'),
(19,97,9,'approved','2025-04-21','2025-04-21'),
(20,4,9,'approved','2025-04-21','2025-04-21'),
(21,4,10,'approved','2025-04-21','2025-04-21'),
(22,155,9,'approved','2025-04-22','2025-04-22'),
(23,155,10,'approved','2025-04-22','2025-04-22'),
(24,142,9,'approved','2025-04-22','2025-04-22'),
(25,142,10,'approved','2025-04-22','2025-04-22'),
(26,145,9,'approved','2025-04-22','2025-04-22'),
(27,72,9,'approved','2025-04-22','2025-04-22'),
(28,72,10,'approved','2025-04-22','2025-04-22'),
(29,156,9,'approved','2025-04-23','2025-04-23'),
(30,149,9,'approved','2025-04-23','2025-04-23'),
(31,146,9,'approved','2025-04-23','2025-04-23'),
(32,167,10,'approved','2025-04-23','2025-04-23'),
(33,167,9,'approved','2025-04-23','2025-04-23'),
(34,137,9,'approved','2025-04-23','2025-04-23'),
(35,146,10,'approved','2025-04-23','2025-04-23'),
(36,144,9,'approved','2025-04-23','2025-04-23'),
(37,137,10,'approved','2025-04-23','2025-04-23'),
(38,124,9,'approved','2025-04-23','2025-04-23'),
(39,149,10,'approved','2025-04-23','2025-04-23'),
(40,124,10,'approved','2025-04-23','2025-04-23'),
(41,130,9,'approved','2025-04-23','2025-04-23'),
(42,144,10,'approved','2025-04-23','2025-04-23'),
(43,128,9,'approved','2025-04-23','2025-04-23'),
(44,116,10,'approved','2025-04-23','2025-04-23'),
(45,156,10,'approved','2025-04-23','2025-04-23'),
(46,128,10,'approved','2025-04-23','2025-04-23'),
(47,130,10,'approved','2025-04-23','2025-04-23'),
(48,147,9,'approved','2025-04-23','2025-04-23'),
(49,147,10,'approved','2025-04-23','2025-04-23'),
(50,135,9,'approved','2025-04-23','2025-04-23'),
(51,173,9,'approved','2025-04-23','2025-04-23'),
(52,154,10,'approved','2025-04-23','2025-04-23'),
(53,173,10,'approved','2025-04-23','2025-04-23'),
(54,154,9,'approved','2025-04-23','2025-04-23'),
(55,135,10,'approved','2025-04-23','2025-04-23'),
(56,145,10,'approved','2025-04-23','2025-04-23'),
(57,114,10,'approved','2025-04-23','2025-04-23'),
(58,117,9,'approved','2025-04-23','2025-04-23'),
(59,114,9,'approved','2025-04-23','2025-04-23'),
(60,117,10,'approved','2025-04-23','2025-04-23'),
(61,22,8,'approved','2025-04-23','2025-04-23'),
(62,10,9,'approved','2025-04-23','2025-04-23'),
(63,39,7,'approved','2025-04-23','2025-04-23'),
(64,10,10,'approved','2025-04-23','2025-04-23'),
(65,22,9,'approved','2025-04-23','2025-04-23'),
(66,7,9,'approved','2025-04-23','2025-04-23'),
(67,7,10,'approved','2025-04-23','2025-04-23'),
(68,121,10,'approved','2025-04-23','2025-04-23'),
(69,115,9,'approved','2025-04-24','2025-04-24'),
(70,115,10,'approved','2025-04-24','2025-04-24'),
(71,94,9,'approved','2025-04-24','2025-04-24'),
(72,94,10,'approved','2025-04-24','2025-04-24'),
(73,83,9,'approved','2025-04-24','2025-04-24'),
(74,40,7,'approved','2025-04-24','2025-04-24'),
(75,105,9,'approved','2025-04-24','2025-04-24'),
(76,35,9,'approved','2025-04-24','2025-04-24'),
(77,21,9,'approved','2025-04-24','2025-04-24'),
(78,21,10,'approved','2025-04-24','2025-04-24'),
(79,21,7,'approved','2025-04-24','2025-04-24'),
(80,21,8,'approved','2025-04-24','2025-04-24'),
(81,99,9,'approved','2025-04-24','2025-04-24'),
(82,99,10,'approved','2025-04-24','2025-04-24'),
(83,24,9,'approved','2025-04-24','2025-04-24'),
(84,24,10,'approved','2025-04-24','2025-04-24'),
(85,88,9,'approved','2025-04-24','2025-04-24'),
(86,69,10,'approved','2025-04-24','2025-04-24'),
(87,102,9,'approved','2025-04-24','2025-04-24'),
(88,80,9,'approved','2025-04-24','2025-04-24'),
(89,78,9,'approved','2025-04-24','2025-04-24'),
(90,10,7,'approved','2025-04-24','2025-04-24'),
(91,10,8,'approved','2025-04-24','2025-04-24'),
(92,77,9,'approved','2025-04-24','2025-04-24'),
(93,110,9,'approved','2025-04-24','2025-04-24'),
(94,108,9,'approved','2025-04-24','2025-04-24'),
(95,100,9,'approved','2025-04-24','2025-04-24'),
(96,100,10,'approved','2025-04-24','2025-04-24'),
(97,100,7,'approved','2025-04-24','2025-04-24'),
(98,100,8,'approved','2025-04-24','2025-04-24'),
(99,168,9,'approved','2025-04-25','2025-04-25'),
(100,159,9,'approved','2025-04-25','2025-04-25'),
(101,118,9,'approved','2025-04-25','2025-04-25'),
(102,162,9,'approved','2025-04-25','2025-04-25'),
(103,118,10,'approved','2025-04-25','2025-04-25'),
(104,131,10,'approved','2025-04-25','2025-04-25'),
(105,163,9,'approved','2025-04-25','2025-04-25'),
(106,148,9,'approved','2025-04-25','2025-04-25'),
(107,177,9,'approved','2025-04-25','2025-04-25'),
(108,179,9,'approved','2025-04-25','2025-04-25'),
(109,178,9,'approved','2025-04-25','2025-04-25'),
(110,176,9,'approved','2025-04-25','2025-04-25'),
(111,180,9,'approved','2025-04-25','2025-04-25'),
(112,181,9,'approved','2025-04-25','2025-04-25'),
(113,182,9,'approved','2025-04-25','2025-04-25'),
(114,98,9,'approved','2025-04-25','2025-04-25'),
(115,123,10,'approved','2025-04-26','2025-04-26'),
(116,185,9,'approved','2025-04-26','2025-04-26'),
(117,185,10,'approved','2025-04-26','2025-04-26'),
(118,184,9,'approved','2025-04-26','2025-04-26'),
(119,171,10,'approved','2025-04-26','2025-04-26'),
(120,184,10,'approved','2025-04-26','2025-04-26'),
(121,186,9,'approved','2025-04-26','2025-04-26'),
(122,186,10,'approved','2025-04-26','2025-04-26'),
(123,20,9,'approved','2025-04-27','2025-04-27'),
(124,20,7,'approved','2025-04-27','2025-04-27'),
(125,20,8,'approved','2025-04-27','2025-04-27'),
(126,20,10,'approved','2025-04-27','2025-04-27'),
(127,19,7,'approved','2025-04-27','2025-04-27'),
(128,19,8,'approved','2025-04-27','2025-04-27'),
(129,19,9,'approved','2025-04-27','2025-04-27'),
(130,119,10,'approved','2025-04-27','2025-04-27'),
(131,119,9,'approved','2025-04-27','2025-04-27'),
(132,81,9,'approved','2025-04-28','2025-04-28'),
(133,187,7,'approved','2025-04-28','2025-04-28'),
(134,187,8,'approved','2025-04-28','2025-04-28'),
(135,161,9,'approved','2025-04-28','2025-04-28'),
(136,152,9,'approved','2025-04-28','2025-04-28'),
(137,140,9,'approved','2025-04-28','2025-04-28'),
(138,140,10,'approved','2025-04-28','2025-04-28'),
(139,183,10,'approved','2025-04-28','2025-04-28'),
(140,160,9,'approved','2025-04-28','2025-04-28'),
(141,138,9,'approved','2025-04-28','2025-04-28'),
(142,181,10,'approved','2025-04-28','2025-04-28'),
(143,157,9,'approved','2025-04-28','2025-04-28'),
(144,136,9,'approved','2025-04-28','2025-04-28'),
(145,129,9,'approved','2025-04-28','2025-04-28'),
(146,138,10,'approved','2025-04-28','2025-04-28'),
(147,136,10,'approved','2025-04-28','2025-04-28'),
(148,134,10,'approved','2025-04-28','2025-04-28'),
(149,129,10,'approved','2025-04-28','2025-04-28'),
(150,133,9,'approved','2025-04-28','2025-04-28'),
(151,133,10,'approved','2025-04-28','2025-04-28'),
(152,164,9,'approved','2025-04-28','2025-04-28'),
(153,188,9,'approved','2025-04-28','2025-04-28'),
(154,141,9,'approved','2025-04-28','2025-04-28'),
(155,141,10,'approved','2025-04-28','2025-04-28'),
(156,109,9,'approved','2025-04-29','2025-04-29'),
(157,109,10,'approved','2025-04-29','2025-04-29'),
(158,109,7,'approved','2025-04-29','2025-04-29'),
(159,109,8,'approved','2025-04-29','2025-04-29'),
(160,102,10,'approved','2025-04-29','2025-04-29'),
(161,199,8,'approved','2025-04-29','2025-04-29'),
(162,69,9,'approved','2025-04-29','2025-04-29'),
(163,72,5,'approved','2025-04-29','2025-04-29'),
(164,72,6,'approved','2025-04-29','2025-04-29'),
(165,72,7,'approved','2025-04-29','2025-04-29'),
(166,72,8,'approved','2025-04-29','2025-04-29'),
(167,198,9,'approved','2025-04-29','2025-04-29'),
(168,18,9,'approved','2025-04-30','2025-04-30'),
(169,18,10,'approved','2025-04-30','2025-04-30'),
(170,11,7,'approved','2025-04-30','2025-04-30'),
(171,120,9,'approved','2025-04-30','2025-04-30'),
(172,12,10,'approved','2025-04-30','2025-04-30'),
(173,199,9,'approved','2025-04-30','2025-04-30'),
(174,12,9,'approved','2025-04-30','2025-04-30'),
(175,11,8,'approved','2025-04-30','2025-04-30'),
(176,199,10,'approved','2025-04-30','2025-04-30'),
(177,18,7,'approved','2025-04-30','2025-04-30'),
(178,12,8,'approved','2025-04-30','2025-04-30'),
(179,199,7,'approved','2025-04-30','2025-04-30'),
(180,120,10,'approved','2025-04-30','2025-04-30'),
(181,18,8,'approved','2025-04-30','2025-04-30'),
(182,197,7,'approved','2025-04-30','2025-04-30'),
(183,197,8,'approved','2025-04-30','2025-04-30'),
(184,197,9,'approved','2025-04-30','2025-04-30'),
(185,197,10,'approved','2025-04-30','2025-04-30'),
(186,82,9,'approved','2025-04-30','2025-04-30'),
(187,23,9,'approved','2025-04-30','2025-04-30'),
(188,82,10,'approved','2025-04-30','2025-04-30'),
(189,97,7,'approved','2025-04-30','2025-04-30'),
(190,97,8,'approved','2025-04-30','2025-04-30'),
(191,230,5,'approved','2025-04-30','2025-04-30'),
(192,237,5,'approved','2025-04-30','2025-04-30'),
(193,97,10,'approved','2025-04-30','2025-04-30'),
(194,83,10,'approved','2025-04-30','2025-04-30'),
(195,40,5,'approved','2025-04-30','2025-04-30'),
(196,40,6,'approved','2025-04-30','2025-04-30'),
(197,8,10,'approved','2025-04-30','2025-04-30'),
(198,8,9,'approved','2025-04-30','2025-04-30'),
(199,241,7,'approved','2025-04-30','2025-04-30'),
(200,236,5,'approved','2025-04-30','2025-04-30'),
(201,236,6,'approved','2025-04-30','2025-04-30'),
(202,241,8,'approved','2025-04-30','2025-04-30'),
(203,240,9,'approved','2025-04-30','2025-04-30'),
(204,240,10,'approved','2025-04-30','2025-04-30'),
(205,111,9,'approved','2025-04-30','2025-04-30'),
(206,111,10,'approved','2025-04-30','2025-04-30'),
(207,111,7,'approved','2025-04-30','2025-04-30'),
(208,111,8,'approved','2025-04-30','2025-04-30'),
(209,193,9,'approved','2025-04-30','2025-04-30'),
(210,198,7,'approved','2025-04-30','2025-04-30'),
(211,198,8,'approved','2025-04-30','2025-04-30'),
(212,45,9,'approved','2025-04-30','2025-04-30'),
(213,45,10,'approved','2025-04-30','2025-04-30'),
(214,98,7,'approved','2025-04-30','2025-04-30'),
(215,98,8,'approved','2025-04-30','2025-04-30'),
(216,98,10,'approved','2025-04-30','2025-04-30'),
(217,27,9,'approved','2025-05-01','2025-05-01'),
(218,226,6,'approved','2025-05-01','2025-05-01'),
(219,242,8,'approved','2025-05-02','2025-05-02'),
(220,242,7,'approved','2025-05-02','2025-05-02'),
(221,243,7,'approved','2025-05-02','2025-05-02'),
(222,243,8,'approved','2025-05-02','2025-05-02'),
(223,213,9,'approved','2025-05-02','2025-05-02'),
(224,244,5,'approved','2025-05-02','2025-05-02'),
(225,221,5,'approved','2025-05-02','2025-05-02'),
(226,244,6,'approved','2025-05-02','2025-05-02'),
(227,221,6,'approved','2025-05-02','2025-05-02'),
(228,244,7,'approved','2025-05-02','2025-05-02'),
(229,244,8,'approved','2025-05-02','2025-05-02'),
(230,219,5,'approved','2025-05-02','2025-05-02'),
(231,221,8,'approved','2025-05-02','2025-05-02'),
(232,221,7,'approved','2025-05-02','2025-05-02'),
(233,248,5,'approved','2025-05-02','2025-05-02'),
(234,248,6,'approved','2025-05-02','2025-05-02'),
(235,214,9,'approved','2025-05-02','2025-05-02'),
(236,215,9,'approved','2025-05-02','2025-05-02'),
(237,249,5,'approved','2025-05-02','2025-05-02'),
(238,215,10,'approved','2025-05-02','2025-05-02'),
(239,249,6,'approved','2025-05-02','2025-05-02'),
(240,231,7,'approved','2025-05-02','2025-05-02'),
(241,231,8,'approved','2025-05-02','2025-05-02'),
(242,231,5,'approved','2025-05-02','2025-05-02'),
(243,231,6,'approved','2025-05-02','2025-05-02'),
(244,151,10,'approved','2025-05-02','2025-05-02'),
(245,250,9,'approved','2025-05-02','2025-05-02'),
(246,151,9,'approved','2025-05-02','2025-05-02'),
(247,150,9,'approved','2025-05-02','2025-05-02'),
(248,227,7,'approved','2025-05-02','2025-05-02'),
(249,227,8,'approved','2025-05-02','2025-05-02'),
(250,219,6,'approved','2025-05-02','2025-05-02');
INSERT INTO `course_registrations` (`id`,`student_id`,`semester_id`,`status`,`registered_at`,`approved_at`) VALUES
(251,219,7,'approved','2025-05-02','2025-05-02'),
(252,219,8,'approved','2025-05-02','2025-05-02'),
(253,218,5,'approved','2025-05-02','2025-05-02'),
(254,218,6,'approved','2025-05-02','2025-05-02'),
(255,218,7,'approved','2025-05-02','2025-05-02'),
(256,218,8,'approved','2025-05-02','2025-05-02'),
(257,237,8,'approved','2025-05-02','2025-05-02'),
(258,237,7,'approved','2025-05-02','2025-05-02'),
(259,203,9,'approved','2025-05-02','2025-05-02'),
(260,211,9,'approved','2025-05-02','2025-05-02'),
(261,36,9,'approved','2025-05-02','2025-05-02'),
(262,36,8,'approved','2025-05-02','2025-05-02'),
(263,36,7,'approved','2025-05-02','2025-05-02'),
(264,36,10,'approved','2025-05-02','2025-05-02'),
(265,229,9,'approved','2025-05-04','2025-05-04'),
(266,230,9,'approved','2025-05-04','2025-05-04'),
(267,236,9,'approved','2025-05-05','2025-05-05'),
(268,236,10,'approved','2025-05-05','2025-05-05'),
(269,236,7,'approved','2025-05-05','2025-05-05'),
(270,245,9,'approved','2025-05-05','2025-05-05'),
(271,245,10,'approved','2025-05-05','2025-05-05'),
(272,245,5,'approved','2025-05-05','2025-05-05'),
(273,245,6,'approved','2025-05-05','2025-05-05'),
(274,245,7,'approved','2025-05-05','2025-05-05'),
(275,245,8,'approved','2025-05-05','2025-05-05'),
(276,242,9,'approved','2025-05-05','2025-05-05'),
(277,253,9,'approved','2025-05-05','2025-05-05'),
(278,253,10,'approved','2025-05-05','2025-05-05'),
(279,237,9,'approved','2025-05-05','2025-05-05'),
(280,69,8,'approved','2025-05-05','2025-05-05'),
(281,25,9,'approved','2025-05-05','2025-05-05'),
(282,25,10,'approved','2025-05-05','2025-05-05'),
(283,158,9,'approved','2025-05-05','2025-05-05'),
(284,35,7,'approved','2025-05-06','2025-05-06'),
(285,35,8,'approved','2025-05-06','2025-05-06'),
(286,255,5,'approved','2025-05-06','2025-05-06'),
(287,255,6,'approved','2025-05-06','2025-05-06'),
(288,256,5,'approved','2025-05-06','2025-05-06'),
(289,256,6,'approved','2025-05-06','2025-05-06'),
(290,259,5,'approved','2025-05-06','2025-05-06'),
(291,259,6,'approved','2025-05-06','2025-05-06'),
(292,257,5,'approved','2025-05-06','2025-05-06'),
(293,257,6,'approved','2025-05-06','2025-05-06'),
(294,108,10,'approved','2025-05-07','2025-05-07'),
(295,3,7,'approved','2025-05-07','2025-05-07'),
(296,3,8,'approved','2025-05-07','2025-05-07'),
(297,3,9,'approved','2025-05-07','2025-05-07'),
(298,3,10,'approved','2025-05-07','2025-05-07'),
(299,39,5,'approved','2025-05-07','2025-05-07'),
(300,39,6,'approved','2025-05-07','2025-05-07'),
(301,103,10,'approved','2025-05-07','2025-05-07'),
(302,103,9,'approved','2025-05-07','2025-05-07'),
(303,93,9,'approved','2025-05-07','2025-05-07'),
(304,243,9,'approved','2025-05-08','2025-05-08'),
(305,244,9,'approved','2025-05-08','2025-05-08'),
(306,244,10,'approved','2025-05-08','2025-05-08'),
(307,243,10,'approved','2025-05-08','2025-05-08'),
(308,272,9,'approved','2025-05-08','2025-05-08'),
(309,272,10,'approved','2025-05-08','2025-05-08'),
(310,201,9,'approved','2025-05-08','2025-05-08'),
(311,201,7,'approved','2025-05-08','2025-05-08'),
(312,165,9,'approved','2025-05-08','2025-05-08'),
(313,46,9,'approved','2025-05-08','2025-05-08'),
(314,93,7,'approved','2025-05-08','2025-05-08'),
(315,93,8,'approved','2025-05-08','2025-05-08'),
(316,93,10,'approved','2025-05-08','2025-05-08'),
(317,113,10,'approved','2025-05-08','2025-05-08'),
(318,32,9,'approved','2025-05-08','2025-05-08'),
(319,32,7,'approved','2025-05-08','2025-05-08'),
(320,32,8,'approved','2025-05-08','2025-05-08'),
(321,113,9,'approved','2025-05-08','2025-05-08'),
(322,73,10,'approved','2025-05-09','2025-05-09'),
(323,34,9,'approved','2025-05-09','2025-05-09'),
(324,34,10,'approved','2025-05-09','2025-05-09'),
(325,30,9,'approved','2025-05-09','2025-05-09'),
(326,69,7,'approved','2025-05-09','2025-05-09'),
(327,92,10,'approved','2025-05-09','2025-05-09'),
(328,42,9,'approved','2025-05-09','2025-05-09'),
(329,107,9,'approved','2025-05-10','2025-05-10'),
(330,107,10,'approved','2025-05-10','2025-05-10'),
(331,51,9,'approved','2025-05-10','2025-05-10'),
(332,7,7,'approved','2025-05-11','2025-05-11'),
(333,7,8,'approved','2025-05-11','2025-05-11'),
(334,38,9,'approved','2025-05-12','2025-05-12'),
(335,6,9,'approved','2025-05-12','2025-05-12'),
(336,26,9,'approved','2025-05-12','2025-05-12'),
(337,26,10,'approved','2025-05-12','2025-05-12'),
(338,26,7,'approved','2025-05-12','2025-05-12'),
(339,26,8,'approved','2025-05-12','2025-05-12'),
(340,211,10,'approved','2025-05-13','2025-05-13'),
(341,272,8,'approved','2025-05-14','2025-05-14'),
(342,272,7,'approved','2025-05-14','2025-05-14'),
(343,249,10,'approved','2025-05-14','2025-05-14'),
(344,89,9,'approved','2025-05-14','2025-05-14'),
(345,91,10,'approved','2025-05-14','2025-05-14'),
(346,50,9,'approved','2025-05-14','2025-05-14'),
(347,50,10,'approved','2025-05-14','2025-05-14'),
(348,41,7,'approved','2025-05-15','2025-05-15'),
(349,84,9,'approved','2025-05-15','2025-05-15'),
(350,27,10,'approved','2025-05-16','2025-05-16'),
(351,52,9,'approved','2025-05-18','2025-05-18'),
(352,273,9,'approved','2025-05-19','2025-05-19'),
(353,273,10,'approved','2025-05-19','2025-05-19'),
(354,254,9,'approved','2025-05-19','2025-05-19'),
(355,254,10,'approved','2025-05-19','2025-05-19'),
(356,84,10,'approved','2025-05-19','2025-05-19'),
(357,241,9,'approved','2025-05-20','2025-05-20'),
(358,241,10,'approved','2025-05-20','2025-05-20'),
(359,96,9,'approved','2025-05-20','2025-05-20'),
(360,89,10,'approved','2025-05-22','2025-05-22'),
(361,202,9,'approved','2025-05-23','2025-05-23'),
(362,265,7,'approved','2025-05-23','2025-05-23'),
(363,265,8,'approved','2025-05-23','2025-05-23'),
(364,275,5,'approved','2025-05-23','2025-05-23'),
(365,275,6,'approved','2025-05-23','2025-05-23'),
(366,122,10,'approved','2025-05-23','2025-05-23'),
(367,122,9,'approved','2025-05-23','2025-05-23'),
(368,90,9,'approved','2025-05-28','2025-05-28'),
(369,153,9,'approved','2025-06-01','2025-06-01'),
(370,74,5,'approved','2025-06-04','2025-06-04'),
(371,74,6,'approved','2025-06-04','2025-06-04'),
(372,74,7,'approved','2025-06-04','2025-06-04'),
(373,74,8,'approved','2025-06-04','2025-06-04'),
(374,74,9,'approved','2025-06-04','2025-06-04'),
(375,63,9,'approved','2025-06-18','2025-06-18'),
(376,63,10,'approved','2025-06-18','2025-06-18'),
(377,63,6,'approved','2025-06-18','2025-06-18'),
(378,63,5,'approved','2025-06-18','2025-06-18'),
(379,63,7,'approved','2025-06-18','2025-06-18'),
(380,63,8,'approved','2025-06-18','2025-06-18'),
(381,247,9,'approved','2025-06-23','2025-06-23'),
(382,247,5,'approved','2025-06-23','2025-06-23'),
(383,247,6,'approved','2025-06-23','2025-06-23'),
(384,247,7,'approved','2025-06-23','2025-06-23'),
(385,247,8,'approved','2025-06-23','2025-06-23'),
(386,248,9,'approved','2025-06-24','2025-06-24'),
(387,281,5,'approved','2025-06-25','2025-06-25'),
(388,281,6,'approved','2025-06-25','2025-06-25'),
(389,207,9,'approved','2025-06-25','2025-06-25'),
(390,210,9,'approved','2025-06-25','2025-06-25'),
(391,277,5,'approved','2025-06-25','2025-06-25'),
(392,209,9,'approved','2025-06-25','2025-06-25'),
(393,206,5,'approved','2025-06-25','2025-06-25'),
(394,206,6,'approved','2025-06-25','2025-06-25'),
(395,206,7,'approved','2025-06-25','2025-06-25'),
(396,206,8,'approved','2025-06-25','2025-06-25'),
(397,206,9,'approved','2025-06-25','2025-06-25'),
(398,189,5,'approved','2025-06-25','2025-06-25'),
(399,189,6,'approved','2025-06-25','2025-06-25'),
(400,189,8,'approved','2025-06-25','2025-06-25'),
(401,189,7,'approved','2025-06-25','2025-06-25'),
(402,189,9,'approved','2025-06-25','2025-06-25'),
(403,232,9,'approved','2025-06-27','2025-06-27'),
(404,232,5,'approved','2025-06-27','2025-06-27'),
(405,232,6,'approved','2025-06-27','2025-06-27'),
(406,232,7,'approved','2025-06-27','2025-06-27'),
(407,232,8,'approved','2025-06-27','2025-06-27'),
(408,194,5,'approved','2025-06-27','2025-06-27'),
(409,194,6,'approved','2025-06-27','2025-06-27'),
(410,194,7,'approved','2025-06-27','2025-06-27'),
(411,194,8,'approved','2025-06-27','2025-06-27'),
(412,194,9,'approved','2025-06-27','2025-06-27'),
(413,194,10,'approved','2025-06-27','2025-06-27'),
(414,190,7,'approved','2025-06-27','2025-06-27'),
(415,190,8,'approved','2025-06-27','2025-06-27'),
(416,190,9,'approved','2025-06-27','2025-06-27'),
(417,190,10,'approved','2025-06-27','2025-06-27'),
(418,274,6,'approved','2025-06-27','2025-06-27'),
(419,283,6,'approved','2025-06-30','2025-06-30'),
(420,285,5,'approved','2025-06-30','2025-06-30'),
(421,283,5,'approved','2025-06-30','2025-06-30'),
(422,286,5,'approved','2025-06-30','2025-06-30'),
(423,285,6,'approved','2025-06-30','2025-06-30'),
(424,261,5,'approved','2025-06-30','2025-06-30'),
(425,192,10,'approved','2025-06-30','2025-06-30'),
(426,262,5,'approved','2025-06-30','2025-06-30'),
(427,262,6,'approved','2025-06-30','2025-06-30'),
(428,193,5,'approved','2025-06-30','2025-06-30'),
(429,237,10,'approved','2025-07-03','2025-07-03'),
(430,212,5,'approved','2025-07-17','2025-07-17'),
(431,212,6,'approved','2025-07-17','2025-07-17'),
(432,212,7,'approved','2025-07-17','2025-07-17'),
(433,212,8,'approved','2025-07-17','2025-07-17'),
(434,212,9,'approved','2025-07-17','2025-07-17'),
(435,212,10,'approved','2025-07-17','2025-07-17'),
(436,261,6,'approved','2025-07-24','2025-07-24'),
(437,201,10,'approved','2025-07-30','2025-07-30'),
(438,183,9,'approved','2025-07-30','2025-07-30'),
(439,77,10,'approved','2025-07-30','2025-07-30'),
(440,78,10,'approved','2025-08-04','2025-08-04'),
(441,198,10,'approved','2025-08-06','2025-08-06'),
(442,80,10,'approved','2025-08-19','2025-08-19'),
(443,90,10,'approved','2025-08-19','2025-08-19'),
(444,22,10,'approved','2025-09-03','2025-09-03'),
(445,23,10,'approved','2025-09-03','2025-09-03'),
(446,39,8,'approved','2025-09-04','2025-09-04'),
(447,40,10,'approved','2025-09-06','2025-09-06'),
(448,40,8,'approved','2025-09-06','2025-09-06'),
(449,305,9,'approved','2025-09-08','2025-09-08'),
(450,305,10,'approved','2025-09-08','2025-09-08'),
(451,96,10,'approved','2025-09-08','2025-09-08'),
(452,306,7,'approved','2025-09-09','2025-09-09'),
(453,306,8,'approved','2025-09-09','2025-09-09'),
(454,307,7,'approved','2025-09-10','2025-09-10'),
(455,307,8,'approved','2025-09-10','2025-09-10'),
(456,307,9,'approved','2025-09-10','2025-09-10'),
(457,307,10,'approved','2025-09-10','2025-09-10'),
(458,308,7,'approved','2025-09-10','2025-09-10'),
(459,308,8,'approved','2025-09-10','2025-09-10'),
(460,49,9,'approved','2025-09-10','2025-09-10'),
(461,49,10,'approved','2025-09-10','2025-09-10'),
(462,309,9,'approved','2025-09-17','2025-09-17'),
(463,309,10,'approved','2025-09-17','2025-09-17'),
(464,310,9,'approved','2025-09-17','2025-09-17'),
(465,312,9,'approved','2025-09-17','2025-09-17'),
(466,312,10,'approved','2025-09-17','2025-09-17'),
(467,310,10,'approved','2025-09-17','2025-09-17'),
(468,311,10,'approved','2025-09-17','2025-09-17'),
(469,313,9,'approved','2025-09-17','2025-09-17'),
(470,313,10,'approved','2025-09-17','2025-09-17'),
(471,311,9,'approved','2025-09-17','2025-09-17'),
(472,314,9,'approved','2025-09-17','2025-09-17'),
(473,314,10,'approved','2025-09-17','2025-09-17'),
(474,276,6,'approved','2025-09-29','2025-09-29'),
(475,5,9,'approved','2025-10-13','2025-10-13'),
(476,5,10,'approved','2025-10-13','2025-10-13'),
(477,92,9,'approved','2025-10-14','2025-10-14'),
(478,92,7,'approved','2025-10-14','2025-10-14'),
(479,92,8,'approved','2025-10-14','2025-10-14'),
(480,202,10,'approved','2025-10-14','2025-10-14'),
(481,202,7,'approved','2025-10-14','2025-10-14'),
(482,176,10,'approved','2025-10-16','2025-10-16'),
(483,182,10,'approved','2025-10-16','2025-10-16'),
(484,79,9,'approved','2025-10-16','2025-10-16'),
(485,315,7,'approved','2025-10-20','2025-10-20'),
(486,315,8,'approved','2025-10-20','2025-10-20'),
(487,41,8,'approved','2025-10-22','2025-10-22'),
(488,161,10,'approved','2025-10-22','2025-10-22'),
(489,165,10,'approved','2025-10-22','2025-10-22'),
(490,163,10,'approved','2025-10-22','2025-10-22'),
(491,162,10,'approved','2025-10-22','2025-10-22'),
(492,159,10,'approved','2025-10-22','2025-10-22'),
(493,30,10,'approved','2025-10-22','2025-10-22'),
(494,29,9,'approved','2025-10-22','2025-10-22'),
(495,29,10,'approved','2025-10-22','2025-10-22'),
(496,153,10,'approved','2025-10-22','2025-10-22'),
(497,188,10,'approved','2025-10-22','2025-10-22'),
(498,42,10,'approved','2025-10-22','2025-10-22'),
(499,179,10,'approved','2025-10-22','2025-10-22'),
(500,157,10,'approved','2025-10-22','2025-10-22');
INSERT INTO `course_registrations` (`id`,`student_id`,`semester_id`,`status`,`registered_at`,`approved_at`) VALUES
(501,9,9,'approved','2025-10-22','2025-10-22'),
(502,172,10,'approved','2025-10-22','2025-10-22'),
(503,9,10,'approved','2025-10-22','2025-10-22'),
(504,6,10,'approved','2025-10-22','2025-10-22'),
(505,29,7,'approved','2025-10-22','2025-10-22'),
(506,29,8,'approved','2025-10-22','2025-10-22'),
(507,317,10,'approved','2025-10-22','2025-10-22'),
(508,172,9,'approved','2025-10-22','2025-10-22'),
(509,164,10,'approved','2025-10-22','2025-10-22'),
(510,19,10,'approved','2025-10-22','2025-10-22'),
(511,10,11,'approved','2025-10-23','2025-10-23'),
(512,105,10,'approved','2025-10-23','2025-10-23'),
(513,158,10,'approved','2025-10-23','2025-10-23'),
(514,266,9,'approved','2025-10-23','2025-10-23'),
(515,160,10,'approved','2025-10-23','2025-10-23'),
(516,266,10,'approved','2025-10-23','2025-10-23'),
(517,266,11,'approved','2025-10-23','2025-10-23'),
(518,266,12,'approved','2025-10-23','2025-10-23'),
(519,147,11,'approved','2025-10-23','2025-10-23'),
(520,266,7,'approved','2025-10-23','2025-10-23'),
(521,108,7,'approved','2025-10-23','2025-10-23'),
(522,108,8,'approved','2025-10-23','2025-10-23'),
(523,108,11,'approved','2025-10-23','2025-10-23'),
(524,150,11,'approved','2025-10-23','2025-10-23'),
(525,44,7,'approved','2025-10-23','2025-10-23'),
(526,44,8,'approved','2025-10-23','2025-10-23'),
(527,180,12,'approved','2025-10-23','2025-10-23'),
(528,180,11,'approved','2025-10-23','2025-10-23'),
(529,180,10,'approved','2025-10-23','2025-10-23'),
(530,100,11,'approved','2025-10-23','2025-10-23'),
(531,7,11,'approved','2025-10-23','2025-10-23'),
(532,133,11,'approved','2025-10-23','2025-10-23'),
(533,44,11,'approved','2025-10-24','2025-10-24'),
(534,44,9,'approved','2025-10-24','2025-10-24'),
(535,44,10,'approved','2025-10-24','2025-10-24'),
(536,44,12,'approved','2025-10-24','2025-10-24'),
(537,101,9,'approved','2025-10-24','2025-10-24'),
(538,101,10,'approved','2025-10-24','2025-10-24'),
(539,101,7,'approved','2025-10-24','2025-10-24'),
(540,101,8,'approved','2025-10-24','2025-10-24'),
(541,31,9,'approved','2025-10-24','2025-10-24'),
(542,31,10,'approved','2025-10-24','2025-10-24'),
(543,31,7,'approved','2025-10-24','2025-10-24'),
(544,31,8,'approved','2025-10-24','2025-10-24'),
(545,95,7,'approved','2025-10-24','2025-10-24'),
(546,95,8,'approved','2025-10-24','2025-10-24'),
(547,95,9,'approved','2025-10-24','2025-10-24'),
(548,95,10,'approved','2025-10-24','2025-10-24'),
(549,42,11,'approved','2025-10-24','2025-10-24'),
(550,117,11,'approved','2025-10-24','2025-10-24'),
(551,35,10,'approved','2025-10-24','2025-10-24'),
(552,110,10,'approved','2025-10-24','2025-10-24'),
(553,81,10,'approved','2025-10-24','2025-10-24'),
(554,178,10,'approved','2025-10-24','2025-10-24'),
(555,199,11,'approved','2025-10-27','2025-10-27'),
(556,46,10,'approved','2025-10-27','2025-10-27'),
(557,36,11,'approved','2025-10-27','2025-10-27'),
(558,269,9,'approved','2025-10-27','2025-10-27'),
(559,269,10,'approved','2025-10-27','2025-10-27'),
(560,269,11,'approved','2025-10-27','2025-10-27'),
(561,269,12,'approved','2025-10-27','2025-10-27'),
(562,267,9,'approved','2025-10-27','2025-10-27'),
(563,267,10,'approved','2025-10-27','2025-10-27'),
(564,102,7,'approved','2025-10-27','2025-10-27'),
(565,267,7,'approved','2025-10-27','2025-10-27'),
(566,267,8,'approved','2025-10-27','2025-10-27'),
(567,102,8,'approved','2025-10-27','2025-10-27'),
(568,268,7,'approved','2025-10-27','2025-10-27'),
(569,268,8,'approved','2025-10-27','2025-10-27'),
(570,268,9,'approved','2025-10-27','2025-10-27'),
(571,268,10,'approved','2025-10-27','2025-10-27'),
(572,91,12,'approved','2025-10-27','2025-10-27'),
(573,91,9,'approved','2025-10-27','2025-10-27'),
(574,211,11,'approved','2025-10-27','2025-10-27'),
(575,91,7,'approved','2025-10-27','2025-10-27'),
(576,91,8,'approved','2025-10-27','2025-10-27'),
(577,265,9,'approved','2025-10-27','2025-10-27'),
(578,126,10,'approved','2025-10-27','2025-10-27'),
(579,265,10,'approved','2025-10-27','2025-10-27'),
(580,116,11,'approved','2025-10-27','2025-10-27'),
(581,318,7,'approved','2025-10-27','2025-10-27'),
(582,318,8,'approved','2025-10-27','2025-10-27'),
(583,319,7,'approved','2025-10-27','2025-10-27'),
(584,319,8,'approved','2025-10-27','2025-10-27'),
(585,306,9,'approved','2025-10-27','2025-10-27'),
(586,306,10,'approved','2025-10-27','2025-10-27'),
(587,125,9,'approved','2025-10-27','2025-10-27'),
(588,125,10,'approved','2025-10-27','2025-10-27'),
(589,127,9,'approved','2025-10-27','2025-10-27'),
(590,127,10,'approved','2025-10-27','2025-10-27'),
(591,315,9,'approved','2025-10-27','2025-10-27'),
(592,315,10,'approved','2025-10-27','2025-10-27'),
(593,93,11,'approved','2025-10-27','2025-10-27'),
(594,93,12,'approved','2025-10-27','2025-10-27'),
(595,45,12,'approved','2025-10-27','2025-10-27'),
(596,32,10,'approved','2025-10-27','2025-10-27'),
(597,51,10,'approved','2025-10-28','2025-10-28'),
(598,28,7,'approved','2025-10-28','2025-10-28'),
(599,28,8,'approved','2025-10-28','2025-10-28'),
(600,28,9,'approved','2025-10-28','2025-10-28'),
(601,28,10,'approved','2025-10-28','2025-10-28'),
(602,152,10,'approved','2025-10-28','2025-10-28'),
(603,242,10,'approved','2025-10-28','2025-10-28'),
(604,88,10,'approved','2025-10-28','2025-10-28'),
(605,144,11,'approved','2025-10-28','2025-10-28'),
(606,128,11,'approved','2025-10-28','2025-10-28'),
(607,320,7,'approved','2025-10-29','2025-10-29'),
(608,320,8,'approved','2025-10-29','2025-10-29'),
(609,316,9,'approved','2025-10-29','2025-10-29'),
(610,316,10,'approved','2025-10-29','2025-10-29'),
(611,246,10,'approved','2025-10-29','2025-10-29'),
(612,167,11,'approved','2025-10-29','2025-10-29'),
(613,130,11,'approved','2025-10-29','2025-10-29'),
(614,176,11,'approved','2025-10-29','2025-10-29'),
(615,114,11,'approved','2025-10-30','2025-10-30'),
(616,150,10,'approved','2025-10-30','2025-10-30'),
(617,310,11,'approved','2025-10-30','2025-10-30'),
(618,310,12,'approved','2025-10-30','2025-10-30'),
(619,52,11,'approved','2025-11-01','2025-11-01'),
(620,40,9,'approved','2025-11-02','2025-11-02'),
(621,19,11,'approved','2025-11-03','2025-11-03'),
(622,91,11,'approved','2025-11-06','2025-11-06'),
(623,324,7,'approved','2025-11-10','2025-11-10'),
(624,323,7,'approved','2025-11-10','2025-11-10'),
(625,323,8,'approved','2025-11-10','2025-11-10'),
(626,324,8,'approved','2025-11-10','2025-11-10'),
(627,79,11,'approved','2025-11-12','2025-11-12'),
(628,69,12,'approved','2025-11-17','2025-11-17'),
(629,50,11,'approved','2025-11-18','2025-11-18'),
(630,129,11,'approved','2025-11-18','2025-11-18'),
(631,326,7,'approved','2025-11-19','2025-11-19'),
(632,326,8,'approved','2025-11-19','2025-11-19'),
(633,308,10,'approved','2025-11-19','2025-11-19'),
(634,308,9,'approved','2025-11-19','2025-11-19'),
(635,308,11,'approved','2025-11-19','2025-11-19'),
(636,80,11,'approved','2025-11-20','2025-11-20'),
(637,79,10,'approved','2025-11-20','2025-11-20'),
(638,315,12,'approved','2025-11-20','2025-11-20'),
(639,327,11,'approved','2025-11-20','2025-11-20'),
(640,328,11,'approved','2025-11-20','2025-11-20'),
(641,329,11,'approved','2025-11-20','2025-11-20'),
(642,330,11,'approved','2025-11-20','2025-11-20'),
(643,331,11,'approved','2025-11-20','2025-11-20'),
(644,333,11,'approved','2025-11-20','2025-11-20'),
(645,332,11,'approved','2025-11-20','2025-11-20'),
(646,38,12,'approved','2025-11-20','2025-11-20'),
(647,334,11,'approved','2025-11-21','2025-11-21'),
(648,335,11,'approved','2025-11-21','2025-11-21'),
(649,336,11,'approved','2025-11-21','2025-11-21'),
(650,338,11,'approved','2025-11-21','2025-11-21'),
(651,339,11,'approved','2025-11-21','2025-11-21'),
(652,340,11,'approved','2025-11-21','2025-11-21'),
(653,337,11,'approved','2025-11-21','2025-11-21'),
(654,139,10,'approved','2025-11-21','2025-11-21'),
(655,342,11,'approved','2025-11-24','2025-11-24'),
(656,343,11,'approved','2025-11-24','2025-11-24'),
(657,344,11,'approved','2025-11-24','2025-11-24'),
(658,341,11,'approved','2025-11-24','2025-11-24'),
(659,345,11,'approved','2025-11-24','2025-11-24'),
(660,346,11,'approved','2025-11-24','2025-11-24'),
(661,348,11,'approved','2025-11-24','2025-11-24'),
(662,347,11,'approved','2025-11-24','2025-11-24'),
(663,112,7,'approved','2025-11-24','2025-11-24'),
(664,112,8,'approved','2025-11-24','2025-11-24'),
(665,112,9,'approved','2025-11-24','2025-11-24'),
(666,112,10,'approved','2025-11-24','2025-11-24'),
(667,112,11,'approved','2025-11-24','2025-11-24'),
(668,243,11,'approved','2025-11-25','2025-11-25'),
(669,88,11,'approved','2025-11-25','2025-11-25'),
(670,349,11,'approved','2025-11-25','2025-11-25'),
(671,350,11,'approved','2025-11-26','2025-11-26'),
(672,351,11,'approved','2025-11-26','2025-11-26'),
(673,352,11,'approved','2025-11-26','2025-11-26'),
(674,353,11,'approved','2025-11-26','2025-11-26'),
(675,354,11,'approved','2025-11-26','2025-11-26'),
(676,116,9,'approved','2025-11-26','2025-11-26'),
(677,355,11,'approved','2025-11-27','2025-11-27'),
(678,356,11,'approved','2025-11-27','2025-11-27'),
(679,357,11,'approved','2025-11-27','2025-11-27'),
(680,359,11,'approved','2025-11-27','2025-11-27'),
(681,27,11,'approved','2025-11-27','2025-11-27'),
(682,360,11,'approved','2025-11-27','2025-11-27'),
(683,358,11,'approved','2025-11-27','2025-11-27'),
(684,361,11,'approved','2025-11-27','2025-11-27'),
(685,363,11,'approved','2025-11-28','2025-11-28'),
(686,362,11,'approved','2025-11-28','2025-11-28'),
(687,364,11,'approved','2025-11-28','2025-11-28'),
(688,365,11,'approved','2025-11-28','2025-11-28'),
(689,366,11,'approved','2025-11-28','2025-11-28'),
(690,131,11,'approved','2025-12-01','2025-12-01'),
(691,135,11,'approved','2025-12-01','2025-12-01'),
(692,155,11,'approved','2025-12-01','2025-12-01'),
(693,145,11,'approved','2025-12-01','2025-12-01'),
(694,182,11,'approved','2025-12-01','2025-12-01'),
(695,115,11,'approved','2025-12-01','2025-12-01'),
(696,118,11,'approved','2025-12-01','2025-12-01'),
(697,154,11,'approved','2025-12-01','2025-12-01'),
(698,367,11,'approved','2025-12-01','2025-12-01'),
(699,181,11,'approved','2025-12-01','2025-12-01'),
(700,368,11,'approved','2025-12-01','2025-12-01'),
(701,369,11,'approved','2025-12-01','2025-12-01'),
(702,119,11,'approved','2025-12-01','2025-12-01'),
(703,183,11,'approved','2025-12-01','2025-12-01'),
(704,89,11,'approved','2025-12-01','2025-12-01'),
(705,142,11,'approved','2025-12-02','2025-12-02'),
(706,41,9,'approved','2025-12-02','2025-12-02'),
(707,370,11,'approved','2025-12-02','2025-12-02'),
(708,9,11,'approved','2025-12-02','2025-12-02'),
(709,371,11,'approved','2025-12-02','2025-12-02'),
(710,372,11,'approved','2025-12-02','2025-12-02'),
(711,373,11,'approved','2025-12-02','2025-12-02'),
(712,38,10,'approved','2025-12-02','2025-12-02'),
(713,374,11,'approved','2025-12-02','2025-12-02'),
(714,375,11,'approved','2025-12-02','2025-12-02'),
(715,376,11,'approved','2025-12-02','2025-12-02'),
(716,378,11,'approved','2025-12-02','2025-12-02'),
(717,377,11,'approved','2025-12-02','2025-12-02'),
(718,379,11,'approved','2025-12-02','2025-12-02'),
(719,380,11,'approved','2025-12-02','2025-12-02'),
(720,381,11,'approved','2025-12-02','2025-12-02'),
(721,383,11,'approved','2025-12-02','2025-12-02'),
(722,384,11,'approved','2025-12-02','2025-12-02'),
(723,382,11,'approved','2025-12-02','2025-12-02'),
(724,385,11,'approved','2025-12-02','2025-12-02'),
(725,386,11,'approved','2025-12-02','2025-12-02'),
(726,122,11,'approved','2025-12-03','2025-12-03'),
(727,387,11,'approved','2025-12-03','2025-12-03'),
(728,26,11,'approved','2025-12-03','2025-12-03'),
(729,102,11,'approved','2025-12-04','2025-12-04'),
(730,18,11,'approved','2025-12-04','2025-12-04'),
(731,197,11,'approved','2025-12-04','2025-12-04'),
(732,97,11,'approved','2025-12-04','2025-12-04'),
(733,97,12,'approved','2025-12-04','2025-12-04'),
(734,96,11,'approved','2025-12-04','2025-12-04'),
(735,187,11,'approved','2025-12-04','2025-12-04'),
(736,187,10,'approved','2025-12-04','2025-12-04'),
(737,187,9,'approved','2025-12-04','2025-12-04'),
(738,132,10,'approved','2025-12-04','2025-12-04'),
(739,132,11,'approved','2025-12-04','2025-12-04'),
(740,138,11,'approved','2025-12-04','2025-12-04'),
(741,132,9,'approved','2025-12-04','2025-12-04'),
(742,123,11,'approved','2025-12-04','2025-12-04'),
(743,324,9,'approved','2025-12-05','2025-12-05'),
(744,323,9,'approved','2025-12-05','2025-12-05'),
(745,324,10,'approved','2025-12-05','2025-12-05'),
(746,323,10,'approved','2025-12-05','2025-12-05'),
(747,324,11,'approved','2025-12-05','2025-12-05'),
(748,323,11,'approved','2025-12-05','2025-12-05'),
(749,326,11,'approved','2025-12-05','2025-12-05'),
(750,326,10,'approved','2025-12-05','2025-12-05');
INSERT INTO `course_registrations` (`id`,`student_id`,`semester_id`,`status`,`registered_at`,`approved_at`) VALUES
(751,319,9,'approved','2025-12-08','2025-12-08'),
(752,242,11,'approved','2025-12-08','2025-12-08'),
(753,319,10,'approved','2025-12-08','2025-12-08'),
(754,318,9,'approved','2025-12-08','2025-12-08'),
(755,318,10,'approved','2025-12-08','2025-12-08'),
(756,148,11,'approved','2025-12-08','2025-12-08'),
(757,325,9,'approved','2025-12-08','2025-12-08'),
(758,325,10,'approved','2025-12-08','2025-12-08'),
(759,325,11,'approved','2025-12-08','2025-12-08'),
(760,325,12,'approved','2025-12-08','2025-12-08'),
(761,148,10,'approved','2025-12-08','2025-12-08'),
(762,177,10,'approved','2025-12-08','2025-12-08'),
(763,177,11,'approved','2025-12-08','2025-12-08'),
(764,326,9,'approved','2025-12-08','2025-12-08'),
(765,201,11,'approved','2025-12-09','2025-12-09'),
(766,98,11,'approved','2025-12-09','2025-12-09'),
(767,123,9,'approved','2025-12-09','2025-12-09'),
(768,77,11,'approved','2025-12-11','2025-12-11'),
(769,28,11,'approved','2025-12-12','2025-12-12'),
(770,69,11,'approved','2025-12-13','2025-12-13'),
(771,198,11,'approved','2025-12-16','2025-12-16'),
(772,84,11,'approved','2026-01-10','2026-01-10'),
(773,84,12,'approved','2026-01-10','2026-01-10'),
(774,51,11,'approved','2026-01-12','2026-01-12'),
(775,147,12,'approved','2026-01-13','2026-01-13'),
(776,150,12,'approved','2026-01-13','2026-01-13'),
(777,153,11,'approved','2026-01-14','2026-01-14'),
(778,139,11,'approved','2026-01-16','2026-01-16'),
(779,10,12,'approved','2026-01-18','2026-01-18'),
(780,45,11,'approved','2026-01-21','2026-01-21'),
(781,311,11,'approved','2026-01-23','2026-01-23'),
(782,182,12,'approved','2026-01-26','2026-01-26'),
(783,123,12,'approved','2026-01-26','2026-01-26'),
(784,130,12,'approved','2026-01-27','2026-01-27'),
(785,113,11,'approved','2026-02-04','2026-02-04'),
(786,113,12,'approved','2026-02-04','2026-02-04'),
(787,312,11,'approved','2026-02-13','2026-02-13'),
(788,312,12,'approved','2026-02-13','2026-02-13'),
(789,313,11,'approved','2026-02-13','2026-02-13'),
(790,313,12,'approved','2026-02-13','2026-02-13'),
(791,323,12,'approved','2026-03-09','2026-03-09'),
(792,52,12,'approved','2026-03-10','2026-03-10'),
(793,31,11,'approved','2026-03-10','2026-03-10'),
(794,132,12,'approved','2026-03-10','2026-03-10'),
(795,129,12,'approved','2026-03-10','2026-03-10'),
(796,121,9,'approved','2026-03-11','2026-03-11'),
(797,141,12,'approved','2026-03-11','2026-03-11'),
(798,388,11,'approved','2026-03-13','2026-03-13'),
(799,389,11,'approved','2026-03-13','2026-03-13'),
(800,391,11,'approved','2026-03-13','2026-03-13'),
(801,392,11,'approved','2026-03-13','2026-03-13'),
(802,393,11,'approved','2026-03-13','2026-03-13'),
(803,390,11,'approved','2026-03-13','2026-03-13'),
(804,394,11,'approved','2026-03-13','2026-03-13'),
(805,395,11,'approved','2026-03-13','2026-03-13'),
(806,396,11,'approved','2026-03-13','2026-03-13'),
(807,398,11,'approved','2026-03-13','2026-03-13'),
(808,397,11,'approved','2026-03-13','2026-03-13'),
(809,399,11,'approved','2026-03-13','2026-03-13'),
(810,401,11,'approved','2026-03-13','2026-03-13'),
(811,30,11,'approved','2026-03-15','2026-03-15'),
(812,384,12,'approved','2026-03-16','2026-03-16'),
(813,92,11,'approved','2026-03-16','2026-03-16'),
(814,95,11,'approved','2026-03-16','2026-03-16'),
(815,337,12,'approved','2026-03-16','2026-03-16'),
(816,352,12,'approved','2026-03-17','2026-03-17'),
(817,41,10,'approved','2026-03-18','2026-03-18'),
(818,21,12,'approved','2026-03-18','2026-03-18'),
(819,128,12,'approved','2026-03-18','2026-03-18'),
(820,21,11,'approved','2026-03-18','2026-03-18'),
(821,103,11,'approved','2026-03-18','2026-03-18'),
(822,339,12,'approved','2026-03-20','2026-03-20'),
(823,99,11,'approved','2026-03-20','2026-03-20'),
(824,354,12,'approved','2026-03-20','2026-03-20'),
(825,154,12,'approved','2026-03-21','2026-03-21'),
(826,145,12,'approved','2026-03-21','2026-03-21'),
(827,197,12,'approved','2026-03-21','2026-03-21'),
(828,82,11,'approved','2026-03-23','2026-03-23'),
(829,5,11,'approved','2026-03-23','2026-03-23'),
(830,343,12,'approved','2026-03-23','2026-03-23'),
(831,161,11,'approved','2026-03-23','2026-03-23'),
(832,161,12,'approved','2026-03-23','2026-03-23'),
(833,348,12,'approved','2026-03-24','2026-03-24'),
(834,344,12,'approved','2026-03-25','2026-03-25'),
(835,109,11,'approved','2026-03-25','2026-03-25'),
(836,98,12,'approved','2026-03-25','2026-03-25'),
(837,151,12,'approved','2026-03-26','2026-03-26'),
(838,151,11,'approved','2026-03-26','2026-03-26'),
(839,11,9,'approved','2026-03-26','2026-03-26'),
(840,156,11,'approved','2026-03-26','2026-03-26'),
(841,12,11,'approved','2026-03-26','2026-03-26'),
(842,101,11,'approved','2026-03-27','2026-03-27'),
(843,31,12,'approved','2026-03-27','2026-03-27'),
(844,101,12,'approved','2026-03-27','2026-03-27'),
(845,29,11,'approved','2026-03-27','2026-03-27'),
(846,29,12,'approved','2026-03-27','2026-03-27'),
(847,103,12,'approved','2026-03-27','2026-03-27'),
(848,28,12,'approved','2026-03-27','2026-03-27'),
(849,268,11,'approved','2026-03-27','2026-03-27'),
(850,133,12,'approved','2026-03-28','2026-03-28'),
(851,319,12,'approved','2026-04-01','2026-04-01'),
(852,319,11,'approved','2026-04-01','2026-04-01'),
(853,306,11,'approved','2026-04-01','2026-04-01'),
(854,306,12,'approved','2026-04-01','2026-04-01'),
(855,92,12,'approved','2026-04-01','2026-04-01'),
(856,330,12,'approved','2026-04-02','2026-04-02'),
(857,402,11,'approved','2026-04-02','2026-04-02'),
(858,402,12,'approved','2026-04-02','2026-04-02'),
(859,333,12,'approved','2026-04-02','2026-04-02'),
(860,335,12,'approved','2026-04-02','2026-04-02'),
(861,334,12,'approved','2026-04-02','2026-04-02'),
(862,332,12,'approved','2026-04-02','2026-04-02'),
(863,359,12,'approved','2026-04-02','2026-04-02'),
(864,331,12,'approved','2026-04-02','2026-04-02'),
(865,34,11,'approved','2026-04-08','2026-04-08'),
(866,377,12,'approved','2026-04-08','2026-04-08'),
(867,364,12,'approved','2026-04-08','2026-04-08'),
(868,35,11,'approved','2026-04-09','2026-04-09'),
(869,23,11,'approved','2026-04-09','2026-04-09'),
(870,39,9,'approved','2026-04-09','2026-04-09'),
(871,105,11,'approved','2026-04-09','2026-04-09'),
(872,392,12,'approved','2026-04-09','2026-04-09'),
(873,318,11,'approved','2026-04-09','2026-04-09'),
(874,78,11,'approved','2026-04-09','2026-04-09'),
(875,90,11,'approved','2026-04-09','2026-04-09'),
(876,22,11,'approved','2026-04-09','2026-04-09'),
(877,22,12,'approved','2026-04-09','2026-04-09'),
(878,6,11,'approved','2026-04-09','2026-04-09'),
(879,110,11,'approved','2026-04-10','2026-04-10'),
(880,8,11,'approved','2026-04-10','2026-04-10'),
(881,20,11,'approved','2026-04-10','2026-04-10'),
(882,4,11,'approved','2026-04-10','2026-04-10'),
(883,374,12,'approved','2026-04-10','2026-04-10'),
(884,315,11,'approved','2026-04-10','2026-04-10'),
(885,316,11,'approved','2026-04-11','2026-04-11'),
(886,32,11,'approved','2026-04-11','2026-04-11'),
(887,131,9,'approved','2026-04-12','2026-04-12'),
(888,131,12,'approved','2026-04-12','2026-04-12'),
(889,342,12,'approved','2026-04-13','2026-04-13'),
(890,345,12,'approved','2026-04-13','2026-04-13'),
(891,83,11,'approved','2026-04-13','2026-04-13'),
(892,179,11,'approved','2026-04-13','2026-04-13'),
(893,25,11,'approved','2026-04-14','2026-04-14'),
(894,125,11,'approved','2026-04-14','2026-04-14'),
(895,241,11,'approved','2026-04-14','2026-04-14'),
(896,38,11,'approved','2026-04-14','2026-04-14'),
(897,178,11,'approved','2026-04-14','2026-04-14'),
(898,157,11,'approved','2026-04-14','2026-04-14'),
(899,347,12,'approved','2026-04-14','2026-04-14'),
(900,362,12,'approved','2026-04-14','2026-04-14'),
(901,164,11,'approved','2026-04-14','2026-04-14'),
(902,164,12,'approved','2026-04-14','2026-04-14'),
(903,349,12,'approved','2026-04-14','2026-04-14'),
(904,24,11,'approved','2026-04-14','2026-04-14'),
(905,321,11,'approved','2026-04-14','2026-04-14'),
(906,321,12,'approved','2026-04-14','2026-04-14'),
(907,321,9,'approved','2026-04-14','2026-04-14'),
(908,321,10,'approved','2026-04-14','2026-04-14'),
(909,160,11,'approved','2026-04-15','2026-04-15'),
(910,201,12,'approved','2026-04-15','2026-04-15'),
(911,202,12,'approved','2026-04-15','2026-04-15'),
(912,172,12,'approved','2026-04-15','2026-04-15'),
(913,172,11,'approved','2026-04-15','2026-04-15'),
(914,322,11,'approved','2026-04-15','2026-04-15'),
(915,159,11,'approved','2026-04-15','2026-04-15'),
(916,89,12,'approved','2026-04-15','2026-04-15'),
(917,324,12,'approved','2026-04-15','2026-04-15'),
(918,121,11,'approved','2026-04-15','2026-04-15'),
(919,152,11,'approved','2026-04-16','2026-04-16'),
(920,250,11,'approved','2026-04-16','2026-04-16'),
(921,250,10,'approved','2026-04-16','2026-04-16'),
(922,322,9,'approved','2026-04-16','2026-04-16'),
(923,111,11,'approved','2026-04-16','2026-04-16'),
(924,162,11,'approved','2026-04-17','2026-04-17'),
(925,162,12,'approved','2026-04-17','2026-04-17'),
(926,202,11,'approved','2026-04-17','2026-04-17'),
(927,318,12,'approved','2026-04-17','2026-04-17'),
(928,42,12,'approved','2026-04-17','2026-04-17'),
(929,136,11,'approved','2026-04-19','2026-04-19'),
(930,127,11,'approved','2026-04-19','2026-04-19'),
(931,138,12,'approved','2026-04-19','2026-04-19'),
(932,139,12,'approved','2026-04-20','2026-04-20'),
(933,267,11,'approved','2026-04-20','2026-04-20'),
(934,188,11,'approved','2026-04-20','2026-04-20'),
(935,273,11,'approved','2026-04-20','2026-04-20'),
(936,272,11,'approved','2026-04-20','2026-04-20'),
(937,272,12,'approved','2026-04-20','2026-04-20'),
(938,340,12,'approved','2026-04-20','2026-04-20'),
(939,322,10,'approved','2026-04-20','2026-04-20'),
(940,322,12,'approved','2026-04-20','2026-04-20'),
(941,265,12,'approved','2026-04-20','2026-04-20'),
(942,265,11,'approved','2026-04-20','2026-04-20'),
(943,120,11,'approved','2026-04-21','2026-04-21'),
(944,136,12,'approved','2026-04-21','2026-04-21'),
(945,126,11,'approved','2026-04-21','2026-04-21'),
(946,117,12,'approved','2026-04-21','2026-04-21'),
(947,126,9,'approved','2026-04-21','2026-04-21'),
(948,155,12,'approved','2026-04-21','2026-04-21'),
(949,137,11,'approved','2026-04-21','2026-04-21'),
(950,320,11,'approved','2026-04-21','2026-04-21'),
(951,320,10,'approved','2026-04-21','2026-04-21'),
(952,137,12,'approved','2026-04-21','2026-04-21'),
(953,309,11,'approved','2026-04-21','2026-04-21'),
(954,309,12,'approved','2026-04-21','2026-04-21'),
(955,46,11,'approved','2026-04-21','2026-04-21'),
(956,176,12,'approved','2026-04-21','2026-04-21'),
(957,165,12,'approved','2026-04-22','2026-04-22'),
(958,165,11,'approved','2026-04-22','2026-04-22'),
(959,317,12,'approved','2026-04-22','2026-04-22'),
(960,317,11,'approved','2026-04-22','2026-04-22'),
(961,317,9,'approved','2026-04-22','2026-04-22'),
(962,115,12,'approved','2026-04-22','2026-04-22'),
(963,163,11,'approved','2026-04-23','2026-04-23'),
(964,401,12,'approved','2026-04-23','2026-04-23'),
(965,383,12,'approved','2026-04-23','2026-04-23'),
(966,396,12,'approved','2026-04-23','2026-04-23'),
(967,379,12,'approved','2026-04-23','2026-04-23'),
(968,341,12,'approved','2026-04-23','2026-04-23'),
(969,382,12,'approved','2026-04-23','2026-04-23'),
(970,378,12,'approved','2026-04-23','2026-04-23'),
(971,393,12,'approved','2026-04-23','2026-04-23'),
(972,394,12,'approved','2026-04-23','2026-04-23'),
(973,403,11,'approved','2026-04-23','2026-04-23'),
(974,351,12,'approved','2026-04-24','2026-04-24'),
(975,146,11,'approved','2026-04-24','2026-04-24'),
(976,395,12,'approved','2026-04-24','2026-04-24'),
(977,404,11,'approved','2026-04-24','2026-04-24'),
(978,405,12,'approved','2026-04-24','2026-04-24'),
(979,254,11,'approved','2026-04-24','2026-04-24'),
(980,254,12,'approved','2026-04-24','2026-04-24'),
(981,406,11,'approved','2026-04-24','2026-04-24'),
(982,406,12,'approved','2026-04-24','2026-04-24'),
(983,363,12,'approved','2026-04-24','2026-04-24'),
(984,407,11,'approved','2026-04-24','2026-04-24'),
(985,144,12,'approved','2026-04-24','2026-04-24'),
(986,114,12,'approved','2026-04-25','2026-04-25'),
(987,159,12,'approved','2026-04-26','2026-04-26'),
(988,408,11,'approved','2026-04-27','2026-04-27'),
(989,408,12,'approved','2026-04-27','2026-04-27'),
(990,380,12,'approved','2026-04-27','2026-04-27'),
(991,127,12,'approved','2026-04-27','2026-04-27'),
(992,373,12,'approved','2026-04-28','2026-04-28'),
(993,367,12,'approved','2026-04-28','2026-04-28'),
(994,311,12,'approved','2026-04-29','2026-04-29'),
(995,118,12,'approved','2026-04-29','2026-04-29'),
(996,350,12,'approved','2026-04-29','2026-04-29'),
(997,372,12,'approved','2026-04-30','2026-04-30'),
(998,403,12,'approved','2026-04-30','2026-04-30'),
(999,370,12,'approved','2026-04-30','2026-04-30'),
(1000,329,12,'approved','2026-04-30','2026-04-30');
INSERT INTO `course_registrations` (`id`,`student_id`,`semester_id`,`status`,`registered_at`,`approved_at`) VALUES
(1001,404,12,'approved','2026-04-30','2026-04-30'),
(1002,397,12,'approved','2026-04-30','2026-04-30'),
(1003,388,12,'approved','2026-04-30','2026-04-30'),
(1004,369,12,'approved','2026-04-30','2026-04-30'),
(1005,389,12,'approved','2026-04-30','2026-04-30'),
(1006,368,12,'approved','2026-04-30','2026-04-30'),
(1007,338,12,'approved','2026-04-30','2026-04-30'),
(1008,371,12,'approved','2026-04-30','2026-04-30'),
(1009,336,12,'approved','2026-04-30','2026-04-30'),
(1010,327,12,'approved','2026-04-30','2026-04-30'),
(1011,353,12,'approved','2026-04-30','2026-04-30'),
(1012,409,11,'approved','2026-04-30','2026-04-30'),
(1013,409,12,'approved','2026-04-30','2026-04-30'),
(1014,328,12,'approved','2026-05-01','2026-05-01'),
(1015,186,12,'approved','2026-05-01','2026-05-01'),
(1016,184,12,'approved','2026-05-01','2026-05-01'),
(1017,410,9,'approved','2026-05-01','2026-05-01'),
(1018,410,10,'approved','2026-05-01','2026-05-01'),
(1019,412,11,'approved','2026-05-01','2026-05-01'),
(1020,412,12,'approved','2026-05-01','2026-05-01'),
(1021,413,12,'approved','2026-05-01','2026-05-01'),
(1022,413,11,'approved','2026-05-01','2026-05-01'),
(1023,376,12,'approved','2026-05-04','2026-05-04'),
(1024,167,12,'approved','2026-05-04','2026-05-04'),
(1025,122,12,'approved','2026-05-04','2026-05-04'),
(1026,119,12,'approved','2026-05-04','2026-05-04'),
(1027,125,12,'approved','2026-05-04','2026-05-04'),
(1028,121,12,'approved','2026-05-04','2026-05-04'),
(1029,142,12,'approved','2026-05-04','2026-05-04'),
(1030,181,12,'approved','2026-05-04','2026-05-04'),
(1031,126,12,'approved','2026-05-04','2026-05-04'),
(1032,120,12,'approved','2026-05-04','2026-05-04'),
(1033,124,12,'approved','2026-05-04','2026-05-04'),
(1034,270,11,'approved','2026-05-04','2026-05-04'),
(1035,387,12,'approved','2026-05-04','2026-05-04'),
(1036,314,12,'approved','2026-05-04','2026-05-04'),
(1037,355,12,'approved','2026-05-04','2026-05-04'),
(1038,124,11,'approved','2026-05-04','2026-05-04'),
(1039,135,12,'approved','2026-05-04','2026-05-04'),
(1040,407,12,'approved','2026-05-04','2026-05-04'),
(1041,188,12,'approved','2026-05-04','2026-05-04'),
(1042,386,12,'approved','2026-05-04','2026-05-04'),
(1043,360,12,'approved','2026-05-04','2026-05-04'),
(1044,163,12,'approved','2026-05-04','2026-05-04'),
(1045,270,12,'approved','2026-05-04','2026-05-04'),
(1046,158,11,'approved','2026-05-04','2026-05-04'),
(1047,158,12,'approved','2026-05-04','2026-05-04'),
(1048,178,12,'approved','2026-05-04','2026-05-04'),
(1049,361,12,'approved','2026-05-04','2026-05-04'),
(1050,391,12,'approved','2026-05-04','2026-05-04'),
(1051,156,12,'approved','2026-05-04','2026-05-04'),
(1052,160,12,'approved','2026-05-04','2026-05-04'),
(1053,183,12,'approved','2026-05-04','2026-05-04'),
(1054,399,12,'approved','2026-05-04','2026-05-04'),
(1055,400,11,'approved','2026-05-04','2026-05-04'),
(1056,400,12,'approved','2026-05-04','2026-05-04'),
(1057,173,12,'approved','2026-05-04','2026-05-04'),
(1058,366,12,'approved','2026-05-04','2026-05-04'),
(1059,357,12,'approved','2026-05-04','2026-05-04'),
(1060,356,12,'approved','2026-05-04','2026-05-04'),
(1061,358,12,'approved','2026-05-04','2026-05-04'),
(1062,385,12,'approved','2026-05-05','2026-05-05'),
(1063,153,12,'approved','2026-05-05','2026-05-05'),
(1064,375,12,'approved','2026-05-05','2026-05-05'),
(1065,146,12,'approved','2026-05-05','2026-05-05'),
(1066,346,12,'approved','2026-05-05','2026-05-05'),
(1067,177,12,'approved','2026-05-05','2026-05-05'),
(1068,148,12,'approved','2026-05-05','2026-05-05'),
(1069,50,7,'approved','2026-05-11','2026-05-11'),
(1070,77,12,'approved','2026-06-07','2026-06-07'),
(1071,82,12,'approved','2026-06-14','2026-06-14'),
(1072,12,12,'approved','2026-06-15','2026-06-15'),
(1073,36,12,'approved','2026-06-15','2026-06-15'),
(1074,11,10,'approved','2026-06-16','2026-06-16'),
(1075,109,12,'approved','2026-06-16','2026-06-16'),
(1076,273,12,'approved','2026-06-16','2026-06-16'),
(1077,35,12,'approved','2026-06-16','2026-06-16'),
(1078,102,12,'approved','2026-06-17','2026-06-17'),
(1079,18,12,'approved','2026-06-17','2026-06-17'),
(1080,48,8,'approved','2026-06-17','2026-06-17'),
(1081,242,12,'approved','2026-06-17','2026-06-17'),
(1082,179,12,'approved','2026-06-17','2026-06-17'),
(1083,243,12,'approved','2026-06-18','2026-06-18'),
(1084,27,12,'approved','2026-06-18','2026-06-18'),
(1085,100,12,'approved','2026-06-18','2026-06-18'),
(1086,26,12,'approved','2026-06-18','2026-06-18'),
(1087,23,12,'approved','2026-06-18','2026-06-18'),
(1088,7,12,'approved','2026-06-18','2026-06-18'),
(1089,78,12,'approved','2026-06-18','2026-06-18'),
(1090,105,12,'approved','2026-06-18','2026-06-18'),
(1091,4,12,'approved','2026-06-18','2026-06-18'),
(1092,88,12,'approved','2026-06-18','2026-06-18'),
(1093,8,12,'approved','2026-06-18','2026-06-18'),
(1094,39,10,'approved','2026-06-18','2026-06-18'),
(1095,316,12,'approved','2026-06-18','2026-06-18'),
(1096,20,12,'approved','2026-06-18','2026-06-18'),
(1097,5,12,'approved','2026-06-18','2026-06-18'),
(1098,6,12,'approved','2026-06-18','2026-06-18'),
(1099,110,12,'approved','2026-06-18','2026-06-18'),
(1100,34,12,'approved','2026-06-18','2026-06-18'),
(1101,79,12,'approved','2026-06-18','2026-06-18'),
(1102,9,12,'approved','2026-06-18','2026-06-18'),
(1103,51,12,'approved','2026-06-18','2026-06-18'),
(1104,83,12,'approved','2026-06-18','2026-06-18'),
(1105,326,12,'approved','2026-06-18','2026-06-18'),
(1106,24,12,'approved','2026-06-18','2026-06-18'),
(1107,211,12,'approved','2026-06-18','2026-06-18'),
(1108,111,12,'approved','2026-06-18','2026-06-18'),
(1109,96,12,'approved','2026-06-19','2026-06-19'),
(1110,99,12,'approved','2026-06-19','2026-06-19'),
(1111,50,12,'approved','2026-06-19','2026-06-19'),
(1112,320,12,'approved','2026-06-19','2026-06-19'),
(1113,81,12,'approved','2026-06-19','2026-06-19'),
(1114,80,12,'approved','2026-06-19','2026-06-19'),
(1115,30,12,'approved','2026-06-19','2026-06-19'),
(1116,267,12,'approved','2026-06-19','2026-06-19'),
(1117,46,12,'approved','2026-06-19','2026-06-19');

-- course_registration_items: 9825 records
INSERT INTO `course_registration_items` (`registration_id`,`course_offering_id`) VALUES
(1,1),
(1,3),
(1,4),
(1,5),
(1,6),
(1,7),
(1,8),
(1,9),
(1,10),
(1,11),
(1,12),
(2,2),
(2,13),
(2,14),
(2,15),
(2,16),
(2,17),
(2,19),
(2,18),
(3,2),
(3,13),
(3,14),
(3,15),
(3,16),
(3,17),
(3,18),
(3,19),
(4,20),
(4,21),
(4,22),
(4,23),
(4,24),
(4,25),
(4,26),
(4,27),
(4,28),
(5,2),
(5,13),
(5,14),
(5,15),
(5,16),
(5,17),
(5,18),
(5,19),
(6,2),
(6,13),
(6,14),
(6,15),
(6,16),
(6,17),
(6,18),
(6,19),
(7,20),
(7,21),
(7,22),
(7,23),
(7,24),
(7,25),
(7,26),
(7,27),
(7,28),
(8,2),
(8,13),
(8,14),
(8,15),
(8,16),
(8,17),
(8,18),
(8,19),
(9,20),
(9,21),
(9,22),
(9,23),
(9,24),
(9,25),
(9,26),
(9,27),
(9,28),
(10,2),
(10,13),
(10,14),
(10,15),
(10,16),
(10,17),
(10,18),
(10,19),
(11,29),
(11,30),
(11,31),
(11,32),
(11,33),
(11,34),
(11,35),
(11,36),
(11,37),
(12,13),
(12,2),
(12,14),
(12,15),
(12,16),
(12,17),
(12,18),
(12,19),
(13,20),
(13,21),
(13,22),
(13,23),
(13,24),
(13,25),
(13,26),
(13,27),
(13,28),
(14,20),
(14,21),
(14,22),
(14,23),
(14,24),
(14,25),
(14,26),
(14,27),
(14,28),
(15,2),
(15,13),
(15,14),
(15,15),
(15,16),
(15,17),
(15,18),
(15,19),
(16,13),
(16,2),
(16,14),
(16,15),
(16,16),
(16,17),
(16,18),
(16,19),
(17,20),
(17,21),
(17,22),
(17,23),
(17,24),
(17,25),
(17,26),
(17,27),
(17,28),
(18,20),
(18,21),
(18,22),
(18,23),
(18,24),
(18,25),
(18,26),
(18,27),
(18,28),
(19,38),
(19,39),
(19,40),
(19,41),
(19,42),
(19,43),
(19,44),
(19,45),
(20,46),
(20,47),
(20,48),
(20,49),
(20,50),
(20,344),
(20,345),
(20,127),
(21,51),
(21,52),
(21,53),
(21,436),
(21,435),
(21,434),
(21,433),
(22,1),
(22,3),
(22,4),
(22,5),
(22,12),
(22,11),
(22,10),
(22,9),
(22,8),
(22,7),
(22,6),
(23,54),
(23,55),
(23,56),
(23,57),
(23,58),
(23,59),
(23,60),
(23,61),
(23,62),
(23,780),
(24,63),
(24,64),
(24,65),
(24,66),
(24,67),
(24,68),
(24,69),
(24,70),
(24,71),
(24,72),
(24,73),
(25,74),
(25,75),
(25,76),
(25,77),
(25,78),
(25,79),
(25,80),
(25,81),
(25,82),
(25,107),
(26,83),
(26,84),
(26,85),
(26,86),
(26,87),
(26,88),
(26,89),
(26,90),
(26,91),
(27,92),
(27,93),
(27,94),
(27,95),
(27,96),
(27,97),
(27,98),
(28,99),
(28,100),
(28,101),
(28,102),
(28,103),
(28,104),
(28,105),
(29,63),
(29,64),
(29,65),
(29,66),
(29,67),
(29,68),
(29,69);
INSERT INTO `course_registration_items` (`registration_id`,`course_offering_id`) VALUES
(29,70),
(29,71),
(29,72),
(29,73),
(30,91),
(30,90),
(30,89),
(30,88),
(30,87),
(30,84),
(30,86),
(30,85),
(30,83),
(31,71),
(31,70),
(31,72),
(31,73),
(31,64),
(31,66),
(31,68),
(31,63),
(31,65),
(31,67),
(31,69),
(32,54),
(32,55),
(32,56),
(32,57),
(32,58),
(32,59),
(32,60),
(32,61),
(32,62),
(32,106),
(33,1),
(33,3),
(33,4),
(33,5),
(33,6),
(33,7),
(33,8),
(33,9),
(33,10),
(33,11),
(33,12),
(34,1),
(34,3),
(34,4),
(34,5),
(34,6),
(34,7),
(34,8),
(34,9),
(34,10),
(34,11),
(34,12),
(35,82),
(35,81),
(35,80),
(35,79),
(35,78),
(35,76),
(35,77),
(35,75),
(35,74),
(35,107),
(36,64),
(36,65),
(36,66),
(36,67),
(36,68),
(36,69),
(36,70),
(36,71),
(36,72),
(36,73),
(37,54),
(37,55),
(37,56),
(37,57),
(37,58),
(37,59),
(37,60),
(37,61),
(37,62),
(37,106),
(38,1),
(38,12),
(38,11),
(38,10),
(38,9),
(38,8),
(38,7),
(38,6),
(38,3),
(38,4),
(38,5),
(39,108),
(39,109),
(39,110),
(39,111),
(39,112),
(39,113),
(39,114),
(39,115),
(40,54),
(40,55),
(40,56),
(40,57),
(40,58),
(40,59),
(40,60),
(40,61),
(40,62),
(41,7),
(41,5),
(41,3),
(41,4),
(41,1),
(41,6),
(41,11),
(41,12),
(41,584),
(41,588),
(41,628),
(42,82),
(42,81),
(42,80),
(42,79),
(42,78),
(42,77),
(42,76),
(42,75),
(42,74),
(42,107),
(43,1),
(43,12),
(43,11),
(43,10),
(43,9),
(43,8),
(43,7),
(43,6),
(43,5),
(43,4),
(43,3),
(44,54),
(44,55),
(44,56),
(44,57),
(44,58),
(44,59),
(44,60),
(44,61),
(44,62),
(45,82),
(45,81),
(45,80),
(45,79),
(45,78),
(45,77),
(45,76),
(45,75),
(45,74),
(45,107),
(46,54),
(46,55),
(46,56),
(46,57),
(46,58),
(46,59),
(46,60),
(46,61),
(46,62),
(46,106),
(47,54),
(47,55),
(47,56),
(47,57),
(47,58),
(47,59),
(47,60),
(47,61),
(47,62),
(47,106),
(48,83),
(48,84),
(48,85),
(48,86),
(48,87),
(48,88),
(48,89),
(48,90),
(49,108),
(49,109),
(49,110),
(49,111),
(49,112),
(49,113),
(49,114),
(50,12),
(50,11),
(50,8),
(50,4),
(50,5),
(50,1),
(50,3),
(50,6),
(50,7),
(50,9),
(50,10),
(51,83),
(51,84),
(51,85),
(51,86),
(51,87),
(51,88),
(51,89),
(51,90),
(52,54),
(52,55),
(52,56),
(52,57),
(52,58),
(52,59),
(52,60),
(52,61),
(52,62),
(52,106),
(53,108),
(53,109),
(53,110),
(53,111),
(53,112),
(53,113),
(53,114),
(54,1),
(54,3),
(54,4),
(54,5),
(54,6),
(54,7),
(54,8),
(54,9),
(54,10),
(54,11),
(54,12),
(55,62),
(55,61),
(55,60);
INSERT INTO `course_registration_items` (`registration_id`,`course_offering_id`) VALUES
(55,59),
(55,58),
(55,57),
(55,56),
(55,55),
(55,54),
(55,780),
(56,108),
(56,109),
(56,110),
(56,111),
(56,112),
(56,113),
(56,114),
(56,115),
(56,211),
(57,55),
(57,56),
(57,57),
(57,58),
(57,59),
(57,60),
(57,61),
(57,54),
(57,62),
(58,1),
(58,3),
(58,4),
(58,5),
(58,6),
(58,7),
(58,8),
(58,9),
(58,10),
(58,11),
(58,12),
(59,1),
(59,3),
(59,4),
(59,5),
(59,6),
(59,7),
(59,8),
(59,9),
(59,10),
(59,11),
(59,12),
(60,54),
(60,55),
(60,56),
(60,57),
(60,58),
(60,59),
(60,60),
(60,61),
(60,62),
(61,20),
(61,21),
(61,22),
(61,23),
(61,24),
(61,25),
(61,26),
(61,27),
(61,28),
(62,39),
(62,38),
(62,40),
(62,41),
(62,42),
(62,43),
(62,44),
(62,45),
(63,116),
(63,117),
(63,118),
(63,119),
(63,120),
(63,121),
(63,346),
(63,347),
(64,122),
(64,123),
(64,124),
(64,125),
(64,126),
(64,128),
(65,46),
(65,47),
(65,48),
(65,127),
(65,49),
(65,50),
(65,344),
(65,345),
(66,46),
(66,47),
(66,48),
(66,50),
(66,49),
(66,127),
(66,345),
(66,344),
(67,51),
(67,53),
(67,52),
(67,435),
(67,434),
(67,436),
(67,433),
(68,54),
(68,55),
(68,56),
(68,57),
(68,58),
(68,59),
(68,60),
(68,61),
(68,62),
(68,106),
(69,1),
(69,3),
(69,4),
(69,5),
(69,6),
(69,7),
(69,8),
(69,9),
(69,10),
(69,11),
(69,12),
(70,54),
(70,55),
(70,56),
(70,57),
(70,58),
(70,59),
(70,60),
(70,61),
(70,62),
(71,38),
(71,39),
(71,40),
(71,41),
(71,42),
(71,43),
(71,44),
(71,45),
(72,122),
(72,123),
(72,124),
(72,128),
(72,125),
(72,126),
(72,129),
(72,130),
(73,46),
(73,47),
(73,48),
(73,127),
(73,49),
(73,50),
(73,344),
(73,345),
(74,131),
(74,132),
(74,133),
(74,134),
(74,135),
(74,136),
(74,137),
(74,349),
(75,46),
(75,47),
(75,48),
(75,127),
(75,49),
(75,50),
(75,344),
(75,345),
(76,46),
(76,47),
(76,48),
(76,127),
(76,49),
(76,50),
(76,344),
(76,345),
(77,138),
(77,139),
(77,140),
(77,141),
(77,142),
(77,143),
(77,144),
(77,145),
(77,146),
(78,147),
(78,148),
(78,149),
(78,150),
(78,151),
(78,152),
(78,153),
(79,154),
(79,155),
(79,156),
(79,157),
(79,158),
(79,159),
(79,160),
(79,161),
(79,162),
(79,163),
(79,164),
(80,165),
(80,166),
(80,167),
(80,168),
(80,169),
(80,170),
(80,171),
(80,172),
(80,173),
(80,174),
(81,38),
(81,39),
(81,40),
(81,41),
(81,42),
(81,43),
(81,44),
(81,45),
(82,122),
(82,123),
(82,124),
(82,128),
(82,125),
(82,126),
(83,38),
(83,39),
(83,40),
(83,41),
(83,42),
(83,43),
(83,44),
(83,45),
(84,122),
(84,123),
(84,124);
INSERT INTO `course_registration_items` (`registration_id`,`course_offering_id`) VALUES
(84,128),
(84,125),
(84,126),
(85,46),
(85,47),
(85,48),
(85,49),
(85,50),
(85,127),
(85,344),
(85,345),
(86,175),
(86,176),
(86,177),
(86,178),
(86,179),
(86,180),
(86,181),
(86,182),
(86,183),
(86,233),
(86,106),
(87,184),
(87,185),
(87,193),
(87,194),
(87,195),
(87,196),
(87,197),
(87,199),
(87,352),
(87,353),
(87,198),
(88,46),
(88,47),
(88,48),
(88,127),
(88,49),
(88,50),
(88,345),
(88,344),
(89,46),
(89,47),
(89,48),
(89,127),
(89,49),
(89,50),
(89,344),
(90,30),
(90,32),
(90,31),
(90,36),
(90,35),
(90,34),
(90,33),
(91,186),
(91,187),
(91,188),
(91,189),
(91,190),
(91,191),
(91,192),
(92,46),
(92,47),
(92,48),
(92,127),
(92,49),
(92,50),
(92,344),
(92,345),
(93,46),
(93,47),
(93,48),
(93,127),
(93,49),
(93,50),
(93,345),
(93,344),
(94,46),
(94,47),
(94,48),
(94,127),
(94,49),
(94,50),
(94,344),
(94,345),
(95,38),
(95,39),
(95,40),
(95,41),
(95,42),
(95,43),
(95,44),
(95,45),
(96,122),
(96,123),
(96,124),
(96,128),
(96,125),
(96,126),
(97,29),
(97,30),
(97,32),
(97,31),
(97,33),
(97,34),
(97,35),
(97,36),
(98,187),
(98,186),
(98,188),
(98,189),
(98,190),
(98,192),
(98,191),
(99,185),
(99,184),
(99,193),
(99,194),
(99,195),
(99,196),
(99,197),
(99,198),
(99,199),
(99,92),
(99,93),
(99,95),
(99,94),
(99,96),
(99,97),
(100,200),
(100,201),
(100,202),
(100,203),
(100,204),
(100,205),
(100,206),
(100,207),
(100,208),
(100,209),
(100,210),
(101,1),
(101,3),
(101,4),
(101,5),
(101,6),
(101,7),
(101,8),
(101,11),
(101,12),
(101,10),
(101,9),
(102,200),
(102,201),
(102,202),
(102,203),
(102,204),
(102,205),
(102,206),
(102,207),
(102,208),
(102,210),
(102,209),
(103,54),
(103,55),
(103,56),
(103,57),
(103,58),
(103,59),
(103,60),
(103,61),
(103,62),
(104,54),
(104,55),
(104,56),
(104,57),
(104,58),
(104,59),
(104,60),
(104,61),
(104,62),
(104,780),
(105,200),
(105,201),
(105,202),
(105,203),
(105,204),
(105,210),
(105,209),
(105,208),
(105,207),
(105,206),
(105,205),
(106,83),
(106,84),
(106,85),
(106,86),
(106,87),
(106,91),
(106,90),
(106,89),
(106,88),
(107,83),
(107,84),
(107,85),
(107,86),
(107,87),
(107,88),
(107,89),
(107,91),
(107,90),
(108,200),
(108,201),
(108,202),
(108,203),
(108,204),
(108,205),
(108,206),
(108,207),
(108,208),
(108,209),
(108,210),
(109,200),
(109,203),
(109,204),
(109,210),
(109,209),
(109,208),
(109,206),
(109,645),
(109,202),
(109,754),
(109,755),
(110,3),
(110,4),
(110,5),
(110,6),
(110,7),
(110,12),
(110,11),
(110,10),
(110,9),
(110,8),
(110,1),
(111,1),
(111,3),
(111,4),
(111,5),
(111,6),
(111,7);
INSERT INTO `course_registration_items` (`registration_id`,`course_offering_id`) VALUES
(111,12),
(111,11),
(111,10),
(111,9),
(111,8),
(112,1),
(112,3),
(112,4),
(112,5),
(112,6),
(112,7),
(112,12),
(112,11),
(112,10),
(112,9),
(112,8),
(113,3),
(113,4),
(113,5),
(113,6),
(113,7),
(113,12),
(113,11),
(113,10),
(113,9),
(113,8),
(113,1),
(114,38),
(114,39),
(114,40),
(114,41),
(114,42),
(114,43),
(114,44),
(114,45),
(115,54),
(115,55),
(115,56),
(115,57),
(115,58),
(115,59),
(115,60),
(115,62),
(115,61),
(116,83),
(116,84),
(116,85),
(116,86),
(116,91),
(116,90),
(116,89),
(116,88),
(116,87),
(117,108),
(117,109),
(117,110),
(117,111),
(117,112),
(117,113),
(117,115),
(117,114),
(117,211),
(118,91),
(118,90),
(118,89),
(118,88),
(118,87),
(118,84),
(118,86),
(118,85),
(118,83),
(119,111),
(119,108),
(119,109),
(119,113),
(119,114),
(119,110),
(119,112),
(120,115),
(120,114),
(120,113),
(120,112),
(120,111),
(120,110),
(120,109),
(120,108),
(120,211),
(121,83),
(121,84),
(121,85),
(121,86),
(121,91),
(121,90),
(121,89),
(121,88),
(121,87),
(122,108),
(122,109),
(122,110),
(122,111),
(122,112),
(122,113),
(122,114),
(122,211),
(122,115),
(123,46),
(123,47),
(123,48),
(123,127),
(123,49),
(123,50),
(123,344),
(123,345),
(124,2),
(124,13),
(124,14),
(124,15),
(124,16),
(124,17),
(124,18),
(124,19),
(125,20),
(125,21),
(125,22),
(125,23),
(125,24),
(125,25),
(125,26),
(125,27),
(125,28),
(126,51),
(126,52),
(126,53),
(126,433),
(126,434),
(126,435),
(126,436),
(127,212),
(127,213),
(127,214),
(127,215),
(127,216),
(127,217),
(127,218),
(127,219),
(127,220),
(127,221),
(127,222),
(128,223),
(128,224),
(128,225),
(128,226),
(128,227),
(128,228),
(128,229),
(128,230),
(128,231),
(128,232),
(129,185),
(129,184),
(129,193),
(129,194),
(129,195),
(129,199),
(129,198),
(129,197),
(129,196),
(130,54),
(130,55),
(130,56),
(130,57),
(130,58),
(130,59),
(130,60),
(130,61),
(130,62),
(130,106),
(131,1),
(131,3),
(131,4),
(131,5),
(131,6),
(131,7),
(131,8),
(131,9),
(131,10),
(131,11),
(131,12),
(132,46),
(132,47),
(132,48),
(132,127),
(132,49),
(132,50),
(132,344),
(132,345),
(133,216),
(133,217),
(133,218),
(133,219),
(133,220),
(133,221),
(133,222),
(134,223),
(134,224),
(134,225),
(134,226),
(134,227),
(134,228),
(134,229),
(134,230),
(134,231),
(134,232),
(135,201),
(135,200),
(135,210),
(135,209),
(135,208),
(135,207),
(135,206),
(135,205),
(135,204),
(135,203),
(135,202),
(136,200),
(136,202),
(136,201),
(136,204),
(136,205),
(136,206),
(136,207),
(136,208),
(136,209),
(136,210),
(137,1),
(137,3),
(137,4),
(137,5),
(137,6),
(137,7),
(137,8),
(137,9),
(137,10),
(137,11),
(137,12),
(138,54),
(138,55),
(138,56),
(138,57),
(138,58);
INSERT INTO `course_registration_items` (`registration_id`,`course_offering_id`) VALUES
(138,59),
(138,60),
(138,61),
(138,62),
(138,106),
(139,54),
(139,56),
(139,57),
(139,58),
(139,106),
(139,62),
(139,61),
(139,60),
(139,59),
(139,55),
(140,200),
(140,202),
(140,201),
(140,203),
(140,204),
(140,205),
(140,206),
(140,207),
(140,208),
(140,209),
(140,210),
(141,1),
(141,3),
(141,4),
(141,5),
(141,6),
(141,7),
(141,8),
(141,9),
(141,10),
(141,11),
(141,12),
(142,54),
(142,55),
(142,56),
(142,57),
(142,58),
(142,59),
(142,60),
(142,61),
(142,62),
(142,106),
(143,200),
(143,201),
(143,202),
(143,203),
(143,205),
(143,206),
(143,207),
(143,208),
(143,209),
(143,210),
(143,639),
(143,640),
(143,641),
(143,642),
(143,643),
(143,644),
(143,645),
(143,646),
(143,647),
(143,648),
(144,1),
(144,3),
(144,4),
(144,5),
(144,6),
(144,7),
(144,8),
(144,9),
(144,10),
(144,11),
(144,12),
(145,1),
(145,3),
(145,4),
(145,5),
(145,6),
(145,7),
(145,8),
(145,9),
(145,10),
(145,11),
(145,12),
(146,54),
(146,55),
(146,56),
(146,62),
(146,61),
(146,60),
(146,59),
(146,58),
(146,57),
(147,54),
(147,55),
(147,56),
(147,57),
(147,58),
(147,59),
(147,60),
(147,61),
(147,62),
(148,54),
(148,55),
(148,56),
(148,57),
(148,58),
(148,59),
(148,60),
(148,61),
(148,62),
(148,106),
(149,54),
(149,55),
(149,56),
(149,57),
(149,58),
(149,59),
(149,61),
(149,62),
(150,1),
(150,3),
(150,4),
(150,5),
(150,6),
(150,7),
(150,8),
(150,9),
(150,10),
(150,11),
(150,12),
(151,54),
(151,55),
(151,56),
(151,57),
(151,58),
(151,59),
(151,60),
(151,61),
(151,62),
(152,200),
(152,201),
(152,202),
(152,203),
(152,204),
(152,205),
(152,206),
(152,207),
(152,208),
(152,209),
(152,210),
(153,200),
(153,201),
(153,202),
(153,203),
(153,204),
(153,205),
(153,206),
(153,207),
(153,208),
(153,209),
(153,210),
(154,1),
(154,3),
(154,4),
(154,5),
(154,6),
(154,7),
(154,8),
(154,9),
(154,10),
(154,11),
(154,12),
(155,54),
(155,55),
(155,56),
(155,57),
(155,58),
(155,59),
(155,60),
(155,61),
(155,62),
(155,106),
(156,185),
(156,184),
(156,193),
(156,194),
(156,195),
(156,199),
(156,198),
(156,197),
(156,196),
(156,5),
(157,233),
(157,175),
(157,176),
(157,177),
(157,178),
(157,179),
(157,180),
(157,181),
(157,182),
(157,106),
(157,183),
(158,212),
(158,213),
(158,214),
(158,215),
(158,216),
(158,217),
(158,218),
(158,219),
(158,220),
(158,221),
(158,222),
(158,234),
(159,223),
(159,224),
(159,225),
(159,226),
(159,227),
(159,228),
(159,229),
(159,230),
(159,231),
(159,232),
(160,175),
(160,176),
(160,177),
(160,178),
(160,179),
(160,180),
(160,181),
(160,182),
(160,183),
(161,223),
(161,224),
(161,226),
(161,227),
(161,228),
(161,229),
(161,230),
(161,231),
(161,232),
(162,185);
INSERT INTO `course_registration_items` (`registration_id`,`course_offering_id`) VALUES
(162,184),
(162,193),
(162,194),
(162,195),
(162,199),
(162,198),
(162,197),
(162,196),
(162,352),
(162,353),
(163,235),
(163,236),
(163,237),
(163,238),
(163,239),
(163,240),
(163,241),
(163,242),
(163,243),
(163,244),
(163,245),
(163,246),
(164,247),
(164,248),
(164,249),
(164,250),
(164,251),
(164,252),
(164,253),
(164,254),
(164,255),
(164,256),
(165,257),
(165,258),
(165,259),
(165,260),
(165,261),
(165,262),
(165,263),
(165,264),
(165,265),
(166,266),
(166,267),
(166,268),
(166,269),
(166,270),
(166,271),
(166,272),
(166,273),
(166,274),
(166,232),
(166,275),
(167,185),
(167,184),
(167,193),
(167,194),
(167,195),
(167,199),
(167,198),
(167,197),
(167,196),
(168,185),
(168,184),
(168,193),
(168,194),
(168,195),
(168,199),
(168,198),
(168,197),
(168,196),
(168,352),
(168,353),
(169,175),
(169,176),
(169,177),
(169,178),
(169,179),
(169,180),
(169,181),
(169,182),
(169,183),
(170,257),
(170,258),
(170,259),
(170,260),
(170,261),
(170,262),
(170,263),
(170,264),
(170,265),
(170,350),
(170,351),
(171,1),
(171,3),
(171,5),
(171,6),
(171,7),
(171,8),
(171,9),
(171,10),
(171,11),
(171,12),
(171,276),
(171,4),
(172,122),
(172,123),
(172,124),
(172,128),
(172,125),
(172,126),
(172,129),
(172,130),
(172,277),
(173,185),
(173,184),
(173,193),
(173,194),
(173,195),
(173,199),
(173,198),
(173,197),
(173,196),
(173,353),
(173,352),
(174,38),
(174,39),
(174,40),
(174,41),
(174,42),
(174,43),
(174,44),
(174,45),
(175,267),
(175,268),
(175,269),
(175,270),
(175,271),
(175,272),
(175,273),
(175,274),
(175,275),
(176,176),
(176,177),
(176,178),
(176,179),
(176,180),
(176,181),
(176,182),
(176,183),
(176,175),
(177,212),
(177,213),
(177,214),
(177,215),
(177,234),
(177,222),
(177,221),
(177,220),
(177,219),
(177,218),
(177,217),
(177,216),
(178,186),
(178,187),
(178,188),
(178,189),
(178,190),
(178,192),
(178,191),
(178,278),
(178,279),
(179,212),
(179,213),
(179,214),
(179,215),
(179,216),
(179,217),
(179,218),
(179,219),
(179,220),
(179,221),
(179,222),
(179,234),
(180,54),
(180,55),
(180,56),
(180,57),
(180,58),
(180,59),
(180,60),
(180,61),
(180,62),
(181,223),
(181,224),
(181,225),
(181,226),
(181,227),
(181,228),
(181,229),
(181,230),
(181,231),
(181,232),
(182,212),
(182,213),
(182,214),
(182,215),
(182,216),
(182,217),
(182,218),
(182,219),
(182,220),
(182,221),
(182,222),
(182,234),
(183,223),
(183,224),
(183,225),
(183,226),
(183,227),
(183,228),
(183,229),
(183,230),
(183,231),
(183,232),
(184,185),
(184,184),
(184,193),
(184,194),
(184,195),
(184,199),
(184,198),
(184,197),
(184,196),
(184,352),
(184,353),
(185,233),
(185,175),
(185,176),
(185,177),
(185,178),
(185,179),
(185,180),
(185,181),
(185,182),
(185,106),
(185,183),
(186,46),
(186,47),
(186,48),
(186,127);
INSERT INTO `course_registration_items` (`registration_id`,`course_offering_id`) VALUES
(186,49),
(186,50),
(186,344),
(186,345),
(187,46),
(187,47),
(187,48),
(187,127),
(187,49),
(187,50),
(187,344),
(187,345),
(188,51),
(188,52),
(188,53),
(188,436),
(188,433),
(188,435),
(188,434),
(189,29),
(189,30),
(189,32),
(189,31),
(189,33),
(189,34),
(189,35),
(189,36),
(189,37),
(190,186),
(190,187),
(190,188),
(190,189),
(190,190),
(190,192),
(190,191),
(190,278),
(190,279),
(191,280),
(191,281),
(191,282),
(191,283),
(191,284),
(191,285),
(191,286),
(191,287),
(192,281),
(192,280),
(192,282),
(192,287),
(192,283),
(192,285),
(192,286),
(192,284),
(193,122),
(193,123),
(193,124),
(193,128),
(193,125),
(193,126),
(193,129),
(193,130),
(193,277),
(194,52),
(194,53),
(194,51),
(194,436),
(194,435),
(194,434),
(194,433),
(195,288),
(195,289),
(195,290),
(195,291),
(195,292),
(195,293),
(195,294),
(195,295),
(195,296),
(196,297),
(196,298),
(196,299),
(196,300),
(196,301),
(196,302),
(196,303),
(196,304),
(196,305),
(197,51),
(197,52),
(197,53),
(197,433),
(197,434),
(197,435),
(197,436),
(198,46),
(198,47),
(198,48),
(198,127),
(198,49),
(198,50),
(198,344),
(198,345),
(199,2),
(199,13),
(199,14),
(199,15),
(199,16),
(199,17),
(199,18),
(199,19),
(200,281),
(200,280),
(200,282),
(200,283),
(200,284),
(200,287),
(200,285),
(200,286),
(201,306),
(201,307),
(201,308),
(201,309),
(201,310),
(201,311),
(201,312),
(201,313),
(201,314),
(202,20),
(202,21),
(202,22),
(202,23),
(202,24),
(202,25),
(202,26),
(202,27),
(202,28),
(203,1),
(203,3),
(203,4),
(203,5),
(203,10),
(203,11),
(203,12),
(203,276),
(203,6),
(203,7),
(203,8),
(203,9),
(204,54),
(204,55),
(204,56),
(204,57),
(204,58),
(204,59),
(204,60),
(204,61),
(204,62),
(205,49),
(205,50),
(205,127),
(205,48),
(205,46),
(205,345),
(205,344),
(205,47),
(206,51),
(206,52),
(206,53),
(206,433),
(206,434),
(206,435),
(206,436),
(207,13),
(207,14),
(207,2),
(207,17),
(207,16),
(207,15),
(207,18),
(207,19),
(208,21),
(208,20),
(208,22),
(208,23),
(208,24),
(208,25),
(208,26),
(208,27),
(208,28),
(209,315),
(209,316),
(209,317),
(209,318),
(209,319),
(209,320),
(209,321),
(210,212),
(210,213),
(210,214),
(210,215),
(210,216),
(210,217),
(210,218),
(210,219),
(210,220),
(210,221),
(210,222),
(210,234),
(211,223),
(211,224),
(211,225),
(211,226),
(211,227),
(211,228),
(211,229),
(211,230),
(211,231),
(211,232),
(212,48),
(212,127),
(212,49),
(212,50),
(212,322),
(212,46),
(212,47),
(212,323),
(212,345),
(212,344),
(213,52),
(213,324),
(213,53),
(213,325),
(213,51),
(213,326),
(213,327),
(213,328),
(213,329),
(213,436),
(213,435),
(213,434),
(213,433),
(214,29),
(214,30),
(214,32),
(214,31),
(214,33),
(214,34),
(214,35),
(214,36),
(214,37);
INSERT INTO `course_registration_items` (`registration_id`,`course_offering_id`) VALUES
(215,186),
(215,187),
(215,188),
(215,189),
(215,190),
(215,192),
(215,191),
(215,278),
(215,279),
(216,122),
(216,123),
(216,124),
(216,128),
(216,125),
(216,126),
(216,129),
(216,130),
(216,277),
(217,40),
(217,41),
(217,42),
(217,43),
(217,44),
(217,45),
(217,38),
(217,39),
(218,314),
(219,223),
(219,224),
(219,225),
(219,226),
(219,227),
(219,228),
(219,229),
(219,230),
(219,231),
(219,232),
(220,212),
(220,213),
(220,214),
(220,215),
(220,216),
(220,217),
(220,218),
(220,219),
(220,220),
(220,221),
(220,222),
(220,234),
(221,2),
(221,14),
(221,16),
(221,18),
(221,19),
(221,13),
(221,15),
(221,17),
(222,20),
(222,21),
(222,22),
(222,23),
(222,24),
(222,25),
(222,26),
(222,27),
(222,28),
(223,315),
(223,316),
(223,317),
(223,318),
(223,321),
(223,320),
(224,281),
(224,280),
(224,282),
(224,283),
(224,286),
(224,285),
(224,287),
(224,284),
(225,235),
(225,237),
(225,238),
(225,239),
(225,243),
(225,244),
(225,240),
(225,236),
(225,242),
(225,241),
(225,245),
(225,246),
(226,306),
(226,307),
(226,308),
(226,309),
(226,310),
(226,311),
(226,312),
(226,313),
(226,314),
(227,247),
(227,248),
(227,249),
(227,250),
(227,251),
(227,252),
(227,253),
(227,254),
(227,255),
(227,256),
(228,330),
(228,116),
(228,117),
(228,331),
(228,118),
(228,119),
(228,120),
(228,121),
(229,332),
(229,333),
(229,334),
(229,335),
(229,336),
(229,337),
(229,338),
(229,339),
(229,340),
(230,282),
(230,281),
(230,280),
(230,283),
(230,284),
(230,287),
(230,285),
(230,286),
(231,275),
(232,257),
(233,281),
(233,280),
(233,282),
(233,283),
(233,284),
(233,287),
(233,285),
(233,286),
(234,306),
(234,307),
(234,308),
(234,309),
(234,310),
(234,311),
(234,312),
(234,313),
(235,316),
(235,315),
(235,317),
(235,318),
(235,320),
(235,321),
(236,92),
(236,93),
(236,95),
(236,94),
(236,96),
(236,97),
(236,98),
(237,235),
(237,236),
(237,238),
(237,237),
(237,239),
(237,240),
(237,241),
(237,246),
(237,245),
(237,244),
(237,243),
(237,242),
(238,99),
(238,100),
(238,101),
(238,102),
(238,103),
(238,104),
(238,105),
(239,247),
(239,248),
(239,249),
(239,250),
(239,251),
(239,252),
(239,253),
(239,254),
(239,255),
(239,256),
(240,331),
(240,118),
(240,119),
(240,120),
(240,121),
(241,337),
(241,338),
(241,339),
(241,340),
(241,336),
(241,335),
(241,334),
(241,333),
(241,332),
(242,281),
(242,282),
(242,283),
(242,284),
(242,287),
(242,285),
(242,286),
(243,307),
(243,308),
(243,309),
(243,310),
(243,311),
(243,312),
(243,313),
(243,314),
(244,108),
(244,109),
(244,110),
(244,111),
(244,112),
(244,114),
(244,113),
(244,211),
(245,200),
(245,209),
(245,208),
(245,206),
(246,83),
(246,84),
(246,85),
(246,86),
(246,87),
(246,88),
(246,89),
(246,90),
(247,86),
(247,83),
(247,84),
(247,85),
(247,87);
INSERT INTO `course_registration_items` (`registration_id`,`course_offering_id`) VALUES
(247,88),
(247,89),
(247,90),
(248,330),
(248,116),
(248,117),
(248,331),
(248,119),
(248,118),
(248,120),
(248,121),
(249,332),
(249,333),
(249,334),
(249,335),
(249,336),
(249,337),
(249,338),
(249,339),
(249,340),
(250,306),
(250,307),
(250,308),
(250,309),
(250,310),
(250,311),
(250,312),
(250,313),
(250,314),
(251,330),
(251,116),
(251,117),
(251,331),
(251,118),
(251,119),
(251,120),
(251,121),
(252,332),
(252,333),
(252,334),
(252,335),
(252,336),
(252,337),
(252,338),
(252,339),
(252,340),
(253,281),
(253,280),
(253,282),
(253,283),
(253,284),
(253,287),
(253,285),
(253,286),
(254,306),
(254,307),
(254,308),
(254,309),
(254,310),
(254,311),
(254,312),
(254,313),
(254,314),
(255,330),
(255,116),
(255,117),
(255,331),
(255,118),
(255,119),
(255,120),
(255,121),
(256,332),
(256,333),
(256,334),
(256,335),
(256,336),
(256,337),
(256,338),
(256,339),
(256,340),
(257,333),
(257,334),
(257,335),
(257,336),
(257,337),
(257,338),
(257,339),
(257,340),
(257,332),
(258,116),
(258,117),
(258,330),
(258,331),
(258,118),
(258,119),
(258,120),
(258,121),
(259,315),
(259,316),
(259,317),
(259,318),
(259,320),
(259,321),
(260,185),
(260,184),
(260,193),
(260,194),
(260,195),
(260,199),
(260,198),
(260,197),
(260,196),
(260,353),
(261,185),
(261,184),
(261,193),
(261,194),
(261,195),
(261,197),
(261,196),
(261,199),
(261,352),
(261,353),
(261,198),
(262,223),
(262,224),
(262,225),
(262,226),
(262,227),
(262,228),
(262,229),
(262,230),
(262,231),
(262,232),
(263,212),
(263,213),
(263,214),
(263,215),
(263,216),
(263,217),
(263,218),
(263,219),
(263,220),
(263,221),
(263,222),
(263,234),
(264,175),
(264,176),
(264,177),
(264,178),
(264,179),
(264,180),
(264,181),
(264,182),
(264,183),
(265,317),
(265,318),
(265,319),
(265,315),
(265,316),
(265,320),
(265,321),
(266,315),
(266,316),
(266,317),
(266,318),
(266,319),
(266,320),
(266,321),
(267,315),
(267,316),
(267,318),
(267,317),
(267,319),
(267,320),
(267,321),
(268,341),
(268,342),
(268,343),
(269,330),
(269,116),
(269,117),
(269,331),
(269,118),
(269,119),
(269,120),
(269,121),
(270,315),
(270,316),
(270,317),
(270,318),
(270,319),
(270,321),
(270,320),
(271,341),
(271,342),
(271,343),
(272,281),
(272,280),
(272,282),
(272,283),
(272,284),
(272,287),
(272,285),
(272,286),
(273,314),
(273,313),
(273,312),
(273,311),
(273,310),
(273,306),
(273,307),
(273,308),
(273,309),
(274,330),
(274,116),
(274,117),
(274,331),
(274,118),
(274,119),
(274,120),
(274,121),
(275,340),
(275,339),
(275,338),
(275,337),
(275,336),
(275,335),
(275,334),
(275,333),
(275,332),
(276,195),
(276,193),
(276,185),
(276,184),
(276,194),
(276,199),
(276,198),
(276,196),
(276,197),
(276,352),
(276,353),
(277,83),
(277,84),
(277,85),
(277,86),
(277,91),
(277,90),
(277,89),
(277,88);
INSERT INTO `course_registration_items` (`registration_id`,`course_offering_id`) VALUES
(277,87),
(278,108),
(278,109),
(278,110),
(278,111),
(278,211),
(278,115),
(278,114),
(278,113),
(278,112),
(279,315),
(279,316),
(279,317),
(279,318),
(279,319),
(279,320),
(279,321),
(280,232),
(280,231),
(280,230),
(280,229),
(280,228),
(280,227),
(280,226),
(280,225),
(280,224),
(280,223),
(281,46),
(281,47),
(281,48),
(281,127),
(281,49),
(281,50),
(281,344),
(281,345),
(282,51),
(282,52),
(282,53),
(282,433),
(282,435),
(282,434),
(282,436),
(283,200),
(283,201),
(283,202),
(283,203),
(283,204),
(283,205),
(283,206),
(283,207),
(283,208),
(283,209),
(283,210),
(284,2),
(285,20),
(285,21),
(285,22),
(285,23),
(285,24),
(285,25),
(285,26),
(285,27),
(285,28),
(286,281),
(286,280),
(286,282),
(286,284),
(286,287),
(286,285),
(286,286),
(286,283),
(287,306),
(287,307),
(287,308),
(287,309),
(287,310),
(287,311),
(287,312),
(287,313),
(287,314),
(288,281),
(288,280),
(288,282),
(288,283),
(288,284),
(288,287),
(288,285),
(288,286),
(289,306),
(289,308),
(289,309),
(289,310),
(289,311),
(289,312),
(289,313),
(289,314),
(290,281),
(290,280),
(290,282),
(290,283),
(290,284),
(290,287),
(290,285),
(290,286),
(291,314),
(291,313),
(291,312),
(291,311),
(291,310),
(291,309),
(291,308),
(291,307),
(291,306),
(292,281),
(292,280),
(292,282),
(292,283),
(292,284),
(292,286),
(292,285),
(292,287),
(293,306),
(293,307),
(293,308),
(293,309),
(293,310),
(293,311),
(293,312),
(293,313),
(293,314),
(294,51),
(294,52),
(294,53),
(294,436),
(294,435),
(294,434),
(294,433),
(295,154),
(295,155),
(295,156),
(295,157),
(295,158),
(295,159),
(295,160),
(295,161),
(295,162),
(295,163),
(295,164),
(296,165),
(296,166),
(296,167),
(296,168),
(296,169),
(296,170),
(296,171),
(296,172),
(296,173),
(296,174),
(297,138),
(297,139),
(297,140),
(297,141),
(297,142),
(297,143),
(297,144),
(297,145),
(297,146),
(298,147),
(298,148),
(298,149),
(298,150),
(298,151),
(298,152),
(298,153),
(299,281),
(299,280),
(299,283),
(299,284),
(299,287),
(300,306),
(300,307),
(300,308),
(300,309),
(300,310),
(300,311),
(300,312),
(300,313),
(300,314),
(301,147),
(301,149),
(301,148),
(301,150),
(301,151),
(301,152),
(301,153),
(302,138),
(302,139),
(302,140),
(302,141),
(302,142),
(302,143),
(302,144),
(302,145),
(302,146),
(303,40),
(303,41),
(303,42),
(303,43),
(303,44),
(303,45),
(303,38),
(303,39),
(304,46),
(304,47),
(304,48),
(304,127),
(304,49),
(304,50),
(304,344),
(304,345),
(304,322),
(305,315),
(305,316),
(305,317),
(305,318),
(305,319),
(305,320),
(305,321),
(306,342),
(306,404),
(306,405),
(306,406),
(307,51),
(307,53),
(307,52),
(307,434),
(307,433),
(307,435),
(307,436),
(308,185),
(308,184),
(308,196),
(308,197),
(308,198),
(308,199),
(308,195),
(308,194),
(308,193),
(308,353),
(308,352);
INSERT INTO `course_registration_items` (`registration_id`,`course_offering_id`) VALUES
(309,183),
(309,182),
(309,181),
(309,180),
(309,179),
(309,178),
(309,177),
(309,176),
(309,175),
(310,185),
(310,184),
(310,193),
(310,194),
(310,195),
(310,199),
(310,198),
(310,197),
(310,196),
(310,353),
(310,352),
(311,220),
(311,219),
(311,221),
(311,222),
(311,218),
(311,212),
(311,213),
(311,214),
(312,200),
(312,201),
(312,202),
(312,203),
(312,205),
(312,206),
(312,207),
(312,208),
(312,209),
(312,210),
(312,204),
(313,198),
(313,197),
(313,199),
(313,195),
(313,185),
(313,184),
(313,193),
(313,194),
(313,196),
(313,353),
(313,352),
(314,29),
(314,30),
(314,32),
(314,31),
(314,33),
(314,34),
(314,35),
(314,36),
(314,37),
(315,186),
(315,187),
(315,188),
(315,189),
(315,190),
(315,192),
(315,191),
(315,278),
(315,279),
(316,122),
(316,123),
(316,124),
(316,128),
(316,125),
(316,126),
(317,233),
(317,175),
(317,176),
(317,177),
(317,178),
(317,179),
(317,180),
(317,182),
(317,181),
(318,46),
(318,47),
(318,50),
(318,48),
(318,49),
(318,127),
(318,345),
(318,344),
(319,2),
(319,13),
(319,14),
(319,15),
(319,16),
(319,17),
(319,18),
(319,19),
(320,20),
(320,21),
(320,22),
(320,23),
(320,24),
(320,25),
(320,26),
(320,27),
(320,28),
(321,185),
(321,184),
(321,196),
(321,197),
(321,198),
(321,199),
(321,195),
(321,194),
(321,193),
(322,101),
(322,103),
(322,104),
(322,100),
(322,102),
(323,46),
(323,47),
(323,48),
(323,127),
(323,49),
(323,50),
(323,344),
(323,345),
(324,51),
(324,52),
(324,53),
(324,433),
(324,434),
(324,435),
(324,436),
(325,46),
(325,47),
(325,48),
(325,127),
(325,49),
(325,50),
(325,344),
(325,345),
(326,212),
(326,213),
(326,214),
(326,215),
(326,216),
(326,217),
(326,218),
(326,219),
(326,220),
(326,221),
(326,222),
(326,234),
(327,175),
(327,176),
(327,177),
(327,178),
(327,179),
(327,180),
(327,181),
(327,182),
(327,183),
(328,139),
(328,140),
(328,141),
(328,142),
(328,143),
(328,144),
(328,145),
(328,146),
(328,138),
(329,322),
(329,46),
(329,47),
(329,323),
(329,48),
(329,127),
(329,49),
(329,50),
(329,345),
(329,344),
(330,51),
(330,326),
(330,328),
(330,52),
(330,53),
(330,325),
(330,436),
(330,435),
(330,433),
(331,46),
(331,47),
(331,48),
(331,127),
(331,49),
(331,50),
(331,344),
(331,345),
(332,2),
(332,13),
(332,15),
(332,16),
(333,20),
(333,21),
(333,22),
(333,23),
(333,24),
(333,25),
(333,26),
(333,27),
(333,28),
(334,345),
(334,46),
(334,47),
(334,48),
(334,127),
(334,49),
(334,50),
(334,344),
(335,348),
(335,46),
(335,47),
(335,48),
(335,127),
(335,345),
(335,49),
(335,50),
(335,344),
(336,39),
(336,38),
(336,40),
(336,41),
(336,42),
(336,43),
(336,44),
(337,123),
(337,122),
(337,125),
(337,128),
(337,129),
(337,126),
(337,130),
(337,277),
(338,29),
(338,30),
(338,31);
INSERT INTO `course_registration_items` (`registration_id`,`course_offering_id`) VALUES
(338,33),
(338,35),
(338,34),
(338,36),
(338,37),
(339,187),
(339,186),
(339,188),
(339,190),
(339,192),
(339,279),
(339,278),
(340,175),
(340,176),
(340,177),
(340,178),
(340,179),
(340,180),
(340,181),
(340,182),
(340,183),
(341,223),
(341,224),
(341,225),
(341,226),
(341,227),
(341,228),
(341,229),
(341,230),
(341,231),
(341,232),
(342,212),
(342,234),
(342,222),
(342,221),
(342,220),
(342,219),
(342,218),
(342,217),
(342,216),
(342,215),
(342,214),
(342,213),
(343,99),
(343,100),
(343,101),
(343,102),
(343,103),
(343,104),
(343,105),
(344,195),
(344,199),
(344,198),
(344,197),
(344,196),
(344,352),
(344,353),
(344,185),
(344,194),
(344,184),
(344,193),
(345,233),
(345,175),
(345,176),
(345,177),
(345,178),
(345,179),
(345,180),
(345,181),
(345,182),
(345,106),
(345,183),
(346,38),
(346,39),
(346,40),
(346,42),
(346,43),
(346,44),
(346,45),
(346,41),
(347,122),
(347,123),
(347,124),
(347,128),
(347,125),
(347,126),
(347,129),
(347,130),
(347,277),
(348,354),
(348,355),
(348,356),
(348,357),
(348,358),
(348,359),
(348,360),
(348,361),
(348,362),
(349,185),
(349,184),
(349,193),
(349,194),
(349,195),
(349,199),
(349,198),
(349,197),
(349,196),
(349,352),
(349,353),
(350,122),
(350,123),
(350,124),
(350,128),
(350,125),
(350,126),
(351,138),
(351,139),
(351,140),
(351,141),
(351,142),
(351,143),
(351,144),
(351,145),
(351,146),
(352,46),
(352,47),
(352,48),
(352,127),
(352,49),
(352,50),
(352,344),
(352,345),
(353,53),
(353,52),
(353,51),
(353,436),
(353,435),
(353,434),
(353,433),
(354,73),
(354,72),
(354,71),
(354,70),
(354,69),
(354,68),
(354,67),
(354,66),
(354,65),
(354,64),
(354,63),
(355,82),
(355,81),
(355,80),
(355,79),
(355,78),
(355,77),
(355,76),
(355,75),
(355,74),
(355,107),
(356,175),
(356,176),
(356,177),
(356,178),
(356,179),
(356,180),
(356,181),
(356,182),
(356,183),
(357,46),
(357,47),
(357,48),
(357,127),
(357,49),
(357,50),
(357,344),
(357,345),
(358,51),
(358,52),
(358,436),
(358,435),
(358,434),
(358,433),
(358,53),
(359,38),
(359,39),
(359,40),
(359,41),
(359,42),
(359,43),
(359,44),
(359,45),
(360,233),
(360,175),
(360,176),
(360,177),
(360,178),
(360,179),
(360,180),
(360,181),
(360,182),
(360,106),
(360,183),
(361,185),
(361,184),
(361,193),
(361,194),
(361,195),
(361,199),
(361,198),
(361,197),
(361,196),
(361,352),
(361,353),
(362,212),
(362,213),
(362,234),
(362,222),
(362,221),
(362,220),
(362,219),
(362,218),
(362,217),
(362,216),
(362,214),
(362,215),
(363,224),
(363,223),
(363,225),
(363,226),
(363,227),
(363,228),
(363,232),
(363,231),
(363,230),
(363,229),
(364,235),
(364,238),
(364,239),
(364,240),
(364,241),
(364,242),
(364,243),
(364,244),
(364,245),
(364,246),
(365,247),
(365,248),
(365,249),
(365,250);
INSERT INTO `course_registration_items` (`registration_id`,`course_offering_id`) VALUES
(365,251),
(365,252),
(365,253),
(365,254),
(365,255),
(365,256),
(366,54),
(366,55),
(366,56),
(366,62),
(366,61),
(366,60),
(366,59),
(366,58),
(366,57),
(367,276),
(367,12),
(367,11),
(367,10),
(367,9),
(367,8),
(367,7),
(367,6),
(367,5),
(367,4),
(367,3),
(367,1),
(368,46),
(368,47),
(368,48),
(368,127),
(368,49),
(368,50),
(368,344),
(368,345),
(369,90),
(369,89),
(369,88),
(369,87),
(369,84),
(369,86),
(369,85),
(369,83),
(370,363),
(370,364),
(370,365),
(370,366),
(370,367),
(370,368),
(370,369),
(370,370),
(371,371),
(371,372),
(371,373),
(371,374),
(372,354),
(372,362),
(372,360),
(372,358),
(372,357),
(372,356),
(372,355),
(373,375),
(373,376),
(373,377),
(373,378),
(373,379),
(373,380),
(373,381),
(374,382),
(374,422),
(375,383),
(375,384),
(375,385),
(375,386),
(375,387),
(375,388),
(376,389),
(376,390),
(376,391),
(376,392),
(376,393),
(376,394),
(377,297),
(377,298),
(377,299),
(377,300),
(377,301),
(377,302),
(377,303),
(377,304),
(377,305),
(378,288),
(378,289),
(378,290),
(378,291),
(378,292),
(378,293),
(378,294),
(378,295),
(378,296),
(379,131),
(379,349),
(379,132),
(379,135),
(379,134),
(379,133),
(379,136),
(379,137),
(380,395),
(380,396),
(380,397),
(380,398),
(380,399),
(380,400),
(380,401),
(380,402),
(380,403),
(381,315),
(381,316),
(381,317),
(381,318),
(381,319),
(381,320),
(381,321),
(382,281),
(382,280),
(382,282),
(382,283),
(382,284),
(382,287),
(382,285),
(382,286),
(383,306),
(383,307),
(383,308),
(383,309),
(383,310),
(383,311),
(383,312),
(383,313),
(383,314),
(384,330),
(384,116),
(384,117),
(384,331),
(384,118),
(384,119),
(384,120),
(384,121),
(384,346),
(384,347),
(385,332),
(385,333),
(385,334),
(385,335),
(385,336),
(385,337),
(385,338),
(385,339),
(385,340),
(386,315),
(386,316),
(386,317),
(386,318),
(386,319),
(386,320),
(386,321),
(387,281),
(387,280),
(387,282),
(387,283),
(387,284),
(387,287),
(387,285),
(387,286),
(388,306),
(388,307),
(388,308),
(388,309),
(388,310),
(388,311),
(388,312),
(388,313),
(388,314),
(389,315),
(389,316),
(389,317),
(389,318),
(389,320),
(389,321),
(390,315),
(390,316),
(390,317),
(390,318),
(390,320),
(390,321),
(391,281),
(391,280),
(391,282),
(391,283),
(391,286),
(391,285),
(392,315),
(392,316),
(392,317),
(392,318),
(392,320),
(392,321),
(393,281),
(393,280),
(393,282),
(393,283),
(393,284),
(393,287),
(393,285),
(393,286),
(394,306),
(394,307),
(394,308),
(394,309),
(394,310),
(394,311),
(394,312),
(394,313),
(394,314),
(395,330),
(395,116),
(395,117),
(395,331),
(395,118),
(395,119),
(395,120),
(395,121),
(395,346),
(395,347),
(396,332),
(396,333),
(396,334),
(396,335),
(396,336),
(396,337),
(396,338),
(396,339),
(396,340),
(397,315),
(397,316),
(397,317),
(397,318),
(397,319);
INSERT INTO `course_registration_items` (`registration_id`,`course_offering_id`) VALUES
(397,320),
(397,321),
(398,281),
(398,280),
(398,282),
(398,283),
(398,284),
(398,287),
(398,285),
(398,286),
(399,306),
(399,307),
(399,308),
(399,309),
(399,310),
(399,311),
(399,312),
(399,313),
(399,314),
(400,332),
(400,333),
(400,334),
(400,335),
(400,336),
(400,337),
(400,338),
(400,339),
(400,340),
(401,330),
(401,116),
(401,117),
(401,331),
(401,118),
(401,119),
(401,120),
(401,121),
(401,346),
(401,347),
(402,315),
(402,316),
(402,317),
(402,318),
(402,319),
(402,320),
(402,321),
(403,315),
(403,316),
(403,317),
(403,318),
(403,320),
(403,321),
(404,281),
(404,283),
(404,284),
(404,287),
(405,306),
(405,307),
(405,308),
(405,309),
(405,310),
(405,311),
(405,312),
(405,313),
(405,314),
(406,330),
(406,116),
(406,117),
(406,331),
(406,118),
(406,119),
(406,120),
(406,121),
(406,347),
(407,333),
(407,334),
(407,332),
(407,335),
(407,336),
(407,338),
(407,339),
(407,340),
(407,337),
(408,281),
(408,280),
(408,282),
(408,283),
(408,284),
(408,287),
(408,285),
(408,286),
(409,306),
(409,307),
(409,308),
(409,309),
(409,310),
(409,311),
(409,312),
(409,313),
(409,314),
(410,330),
(410,116),
(410,117),
(410,331),
(410,118),
(410,119),
(410,120),
(410,121),
(410,346),
(410,347),
(411,332),
(411,333),
(411,334),
(411,335),
(411,336),
(411,337),
(411,338),
(411,339),
(411,340),
(412,321),
(412,320),
(412,319),
(412,318),
(412,317),
(412,316),
(412,315),
(413,341),
(414,2),
(414,13),
(414,14),
(414,15),
(414,16),
(414,17),
(414,18),
(414,19),
(415,20),
(415,21),
(415,22),
(415,23),
(415,24),
(415,25),
(415,26),
(415,27),
(415,28),
(416,322),
(416,46),
(416,47),
(416,323),
(416,48),
(416,127),
(416,49),
(416,50),
(416,344),
(416,345),
(417,51),
(417,326),
(417,327),
(417,328),
(417,329),
(417,52),
(417,324),
(417,53),
(417,325),
(418,306),
(418,307),
(418,308),
(418,309),
(418,310),
(418,314),
(418,313),
(418,312),
(418,311),
(419,308),
(419,307),
(419,306),
(419,309),
(419,310),
(419,311),
(419,312),
(419,313),
(419,314),
(420,281),
(420,283),
(420,284),
(420,287),
(420,285),
(420,280),
(421,281),
(421,280),
(421,282),
(421,283),
(421,284),
(421,287),
(421,285),
(421,286),
(422,281),
(422,280),
(422,282),
(422,283),
(422,284),
(422,287),
(422,286),
(422,285),
(423,306),
(423,307),
(423,308),
(423,309),
(423,310),
(423,311),
(423,312),
(423,313),
(423,314),
(424,280),
(424,281),
(424,282),
(424,283),
(424,284),
(424,287),
(424,285),
(424,286),
(425,51),
(425,326),
(425,327),
(425,328),
(425,329),
(425,52),
(425,324),
(425,53),
(425,325),
(426,281),
(426,280),
(426,282),
(426,283),
(426,284),
(426,287),
(426,285),
(426,286),
(427,306),
(427,307),
(427,308),
(427,309),
(427,310),
(427,311),
(427,312),
(427,313),
(427,314),
(428,281),
(428,280),
(428,282),
(428,284),
(428,283);
INSERT INTO `course_registration_items` (`registration_id`,`course_offering_id`) VALUES
(428,287),
(428,285),
(428,286),
(429,406),
(429,405),
(429,407),
(429,404),
(430,235),
(430,236),
(430,237),
(430,238),
(430,239),
(430,240),
(430,241),
(430,242),
(430,243),
(430,244),
(430,245),
(430,246),
(431,247),
(431,248),
(431,249),
(431,250),
(431,251),
(431,252),
(431,253),
(431,254),
(431,255),
(431,256),
(432,257),
(432,258),
(432,259),
(432,260),
(432,261),
(432,262),
(432,263),
(432,264),
(432,265),
(432,350),
(432,351),
(433,266),
(433,267),
(433,268),
(433,269),
(433,270),
(433,271),
(433,272),
(433,273),
(433,274),
(433,232),
(433,275),
(434,92),
(434,93),
(434,95),
(434,94),
(434,96),
(434,97),
(434,98),
(435,99),
(435,100),
(435,101),
(435,102),
(435,103),
(435,104),
(435,105),
(436,306),
(436,307),
(436,308),
(436,309),
(436,310),
(436,311),
(436,312),
(436,313),
(436,314),
(437,183),
(437,182),
(437,181),
(437,180),
(437,179),
(437,178),
(437,177),
(437,176),
(437,175),
(438,276),
(438,12),
(438,11),
(438,10),
(438,9),
(438,8),
(438,7),
(438,6),
(438,5),
(438,4),
(438,3),
(438,1),
(439,51),
(439,52),
(439,53),
(439,433),
(439,434),
(439,435),
(439,436),
(440,51),
(440,52),
(440,53),
(440,436),
(440,435),
(440,434),
(440,433),
(441,233),
(441,175),
(441,176),
(441,177),
(441,178),
(441,179),
(441,180),
(441,181),
(441,182),
(441,106),
(441,183),
(442,51),
(442,52),
(442,53),
(442,436),
(442,435),
(442,434),
(442,433),
(443,51),
(443,52),
(443,53),
(443,325),
(443,433),
(443,434),
(443,435),
(443,436),
(444,51),
(444,52),
(444,53),
(444,436),
(444,435),
(444,434),
(444,433),
(445,51),
(445,52),
(445,53),
(445,434),
(445,433),
(445,436),
(445,435),
(446,332),
(446,337),
(446,339),
(446,437),
(446,438),
(446,439),
(446,440),
(447,390),
(447,394),
(447,393),
(447,392),
(447,391),
(447,389),
(448,397),
(448,398),
(448,399),
(448,400),
(448,396),
(448,395),
(449,39),
(449,40),
(449,41),
(449,42),
(449,43),
(449,45),
(449,44),
(450,122),
(450,123),
(450,124),
(450,128),
(450,125),
(450,126),
(450,129),
(451,122),
(451,124),
(451,123),
(451,128),
(451,125),
(451,126),
(451,129),
(451,277),
(451,130),
(452,212),
(452,214),
(452,215),
(452,216),
(452,217),
(452,234),
(452,221),
(452,220),
(452,219),
(452,218),
(453,223),
(453,232),
(453,231),
(453,230),
(453,229),
(453,228),
(453,227),
(453,226),
(453,225),
(453,224),
(454,155),
(454,156),
(454,157),
(454,154),
(454,158),
(454,159),
(454,160),
(454,161),
(454,162),
(454,163),
(454,164),
(455,165),
(455,166),
(455,167),
(455,168),
(455,169),
(455,170),
(455,171),
(455,172),
(455,173),
(455,174),
(456,138),
(456,139),
(456,140),
(456,141),
(456,142),
(456,143),
(456,144),
(456,145),
(456,146),
(457,147),
(457,148),
(457,149),
(457,150),
(457,151),
(457,152),
(457,153),
(458,212),
(458,213);
INSERT INTO `course_registration_items` (`registration_id`,`course_offering_id`) VALUES
(458,214),
(458,215),
(458,216),
(458,217),
(458,218),
(458,219),
(458,220),
(458,221),
(458,222),
(458,234),
(459,223),
(459,224),
(459,226),
(459,227),
(459,228),
(459,229),
(459,230),
(459,231),
(459,232),
(460,38),
(460,39),
(460,40),
(460,41),
(460,42),
(460,43),
(460,44),
(460,45),
(461,122),
(461,123),
(461,124),
(461,125),
(461,128),
(461,130),
(461,129),
(461,126),
(462,408),
(462,409),
(462,410),
(462,411),
(462,412),
(462,413),
(462,414),
(462,415),
(463,416),
(463,417),
(463,418),
(463,419),
(463,420),
(463,421),
(464,408),
(464,410),
(464,411),
(464,412),
(464,414),
(464,409),
(464,415),
(464,413),
(465,409),
(465,410),
(465,411),
(465,412),
(465,413),
(465,414),
(465,415),
(465,408),
(466,416),
(466,417),
(466,418),
(466,419),
(466,420),
(466,421),
(467,416),
(467,417),
(467,418),
(467,419),
(467,420),
(467,421),
(467,535),
(468,416),
(468,417),
(468,419),
(468,420),
(468,421),
(468,418),
(469,408),
(469,409),
(469,410),
(469,411),
(469,412),
(469,413),
(469,414),
(469,415),
(470,416),
(470,417),
(470,418),
(470,419),
(470,420),
(470,421),
(471,408),
(471,409),
(471,410),
(471,411),
(471,412),
(471,413),
(471,414),
(471,415),
(472,408),
(472,409),
(472,410),
(472,411),
(472,412),
(472,413),
(472,414),
(472,415),
(473,416),
(473,417),
(473,418),
(473,419),
(473,420),
(473,421),
(473,535),
(474,313),
(474,314),
(474,312),
(474,311),
(474,310),
(474,309),
(474,308),
(474,307),
(474,306),
(475,46),
(475,47),
(475,48),
(475,127),
(475,49),
(475,50),
(475,344),
(475,345),
(475,323),
(476,51),
(476,52),
(476,433),
(476,434),
(476,435),
(476,436),
(476,53),
(477,184),
(477,193),
(477,194),
(477,195),
(477,198),
(477,197),
(477,196),
(477,352),
(477,353),
(477,199),
(477,185),
(478,212),
(478,213),
(478,214),
(478,215),
(478,216),
(478,217),
(478,219),
(478,220),
(478,221),
(478,222),
(478,234),
(478,761),
(479,223),
(479,224),
(479,225),
(479,226),
(479,227),
(479,228),
(479,229),
(479,230),
(479,231),
(479,232),
(480,175),
(480,176),
(480,177),
(480,178),
(480,179),
(480,180),
(480,181),
(480,182),
(480,183),
(481,212),
(481,213),
(481,214),
(481,215),
(481,216),
(481,217),
(481,218),
(481,219),
(481,220),
(481,221),
(481,222),
(481,234),
(482,55),
(482,54),
(482,57),
(482,58),
(482,60),
(482,62),
(482,56),
(482,59),
(482,61),
(482,780),
(483,54),
(483,55),
(483,56),
(483,58),
(483,60),
(483,61),
(483,62),
(483,57),
(483,807),
(483,780),
(483,808),
(483,809),
(484,322),
(484,46),
(484,47),
(484,323),
(484,48),
(484,127),
(484,49),
(484,50),
(484,344),
(484,345),
(485,2),
(485,13),
(485,15),
(485,16),
(485,17),
(485,18),
(485,19),
(486,20),
(486,21),
(486,22),
(486,23),
(486,24),
(486,25),
(486,26),
(486,27),
(486,28),
(487,375),
(487,381);
INSERT INTO `course_registration_items` (`registration_id`,`course_offering_id`) VALUES
(487,380),
(487,379),
(487,377),
(487,378),
(487,376),
(488,423),
(488,432),
(488,431),
(488,430),
(488,428),
(488,426),
(488,425),
(488,424),
(488,427),
(488,429),
(489,423),
(489,429),
(489,427),
(489,424),
(489,425),
(489,426),
(489,428),
(489,430),
(489,431),
(489,432),
(490,424),
(490,425),
(490,426),
(490,427),
(490,428),
(490,423),
(490,429),
(490,430),
(490,431),
(490,432),
(491,423),
(491,427),
(491,425),
(491,428),
(491,431),
(491,429),
(491,430),
(491,424),
(491,426),
(491,432),
(492,423),
(492,429),
(492,427),
(492,424),
(492,425),
(492,426),
(492,428),
(492,430),
(492,431),
(492,432),
(493,51),
(493,52),
(493,53),
(493,436),
(493,435),
(493,434),
(493,433),
(494,138),
(494,139),
(494,140),
(494,141),
(494,142),
(494,146),
(494,145),
(494,144),
(494,143),
(495,147),
(495,148),
(495,149),
(495,151),
(495,152),
(495,153),
(495,150),
(496,108),
(496,109),
(496,110),
(496,111),
(496,112),
(496,113),
(496,114),
(496,115),
(496,211),
(497,423),
(497,429),
(497,427),
(497,424),
(497,425),
(497,426),
(497,428),
(497,430),
(497,431),
(497,432),
(498,147),
(498,148),
(498,149),
(498,150),
(498,151),
(498,152),
(498,153),
(499,423),
(499,429),
(499,427),
(499,424),
(499,425),
(499,426),
(499,428),
(499,430),
(499,431),
(499,432),
(500,423),
(500,429),
(500,427),
(500,424),
(500,425),
(500,426),
(500,428),
(500,430),
(500,431),
(500,432),
(501,47),
(501,46),
(501,48),
(501,127),
(501,49),
(501,50),
(501,344),
(501,345),
(502,423),
(502,429),
(502,427),
(502,424),
(502,425),
(502,426),
(502,428),
(502,430),
(502,431),
(502,432),
(503,433),
(503,436),
(503,435),
(503,434),
(503,53),
(503,52),
(503,51),
(504,51),
(504,53),
(504,435),
(504,434),
(504,433),
(504,436),
(504,52),
(505,154),
(505,155),
(505,156),
(505,157),
(505,158),
(505,159),
(505,161),
(505,162),
(505,163),
(505,164),
(505,160),
(506,174),
(506,173),
(506,172),
(506,166),
(506,168),
(506,165),
(506,167),
(506,169),
(506,170),
(506,171),
(507,423),
(507,429),
(507,427),
(507,424),
(507,425),
(507,426),
(507,428),
(507,430),
(507,431),
(507,432),
(508,210),
(508,200),
(508,201),
(508,202),
(508,203),
(508,204),
(508,205),
(508,206),
(508,207),
(508,208),
(508,209),
(509,423),
(509,429),
(509,427),
(509,425),
(509,426),
(509,428),
(509,430),
(509,431),
(509,432),
(509,424),
(510,177),
(510,178),
(510,179),
(510,180),
(510,181),
(510,183),
(510,176),
(510,175),
(510,182),
(511,441),
(511,442),
(511,443),
(511,444),
(511,445),
(511,446),
(511,573),
(512,51),
(512,52),
(512,53),
(512,436),
(512,435),
(512,434),
(512,433),
(513,429),
(513,424),
(513,431),
(513,425),
(513,423),
(513,430),
(513,426),
(513,427),
(513,428),
(513,432),
(514,185),
(514,184),
(514,193),
(514,194),
(514,195),
(514,199),
(514,198),
(514,197),
(514,196);
INSERT INTO `course_registration_items` (`registration_id`,`course_offering_id`) VALUES
(514,352),
(514,353),
(515,423),
(515,429),
(515,427),
(515,424),
(515,425),
(515,426),
(515,428),
(515,430),
(515,431),
(515,432),
(516,175),
(516,176),
(516,177),
(516,178),
(516,179),
(516,180),
(516,181),
(516,182),
(516,183),
(517,447),
(517,448),
(517,449),
(517,450),
(517,451),
(517,452),
(517,453),
(517,618),
(517,716),
(517,611),
(518,454),
(518,455),
(518,456),
(518,457),
(518,458),
(518,459),
(518,460),
(519,461),
(519,462),
(519,463),
(519,464),
(519,466),
(519,467),
(519,468),
(519,469),
(520,212),
(520,213),
(520,214),
(520,215),
(520,216),
(520,217),
(520,218),
(520,219),
(520,220),
(520,221),
(520,222),
(520,234),
(521,2),
(521,13),
(521,15),
(521,16),
(521,17),
(522,20),
(522,21),
(522,22),
(522,23),
(522,24),
(522,25),
(522,26),
(522,27),
(522,28),
(523,465),
(523,743),
(523,742),
(523,746),
(523,745),
(524,469),
(524,461),
(524,462),
(524,463),
(524,468),
(524,467),
(524,466),
(524,464),
(525,154),
(525,155),
(525,156),
(525,157),
(525,158),
(525,159),
(525,161),
(525,163),
(525,164),
(525,162),
(525,160),
(526,165),
(526,166),
(526,167),
(526,168),
(526,169),
(526,170),
(526,171),
(526,172),
(526,173),
(526,174),
(527,470),
(527,471),
(527,472),
(527,473),
(527,474),
(527,475),
(527,476),
(527,477),
(527,478),
(527,479),
(527,480),
(528,481),
(528,482),
(528,483),
(528,484),
(528,485),
(528,486),
(528,487),
(528,488),
(528,489),
(528,490),
(528,491),
(529,54),
(529,55),
(529,56),
(529,57),
(529,58),
(529,59),
(529,60),
(529,61),
(529,62),
(529,106),
(530,441),
(530,443),
(530,446),
(530,444),
(530,445),
(530,442),
(531,465),
(531,742),
(531,743),
(531,746),
(531,745),
(532,481),
(532,482),
(532,484),
(532,485),
(532,486),
(532,488),
(532,489),
(532,491),
(533,492),
(533,493),
(533,664),
(533,665),
(534,139),
(534,140),
(534,143),
(534,144),
(534,145),
(534,146),
(534,138),
(534,141),
(534,142),
(535,147),
(535,148),
(535,149),
(535,150),
(535,151),
(535,152),
(535,153),
(536,494),
(536,495),
(536,496),
(536,497),
(536,498),
(536,499),
(536,500),
(536,501),
(537,138),
(537,139),
(537,140),
(537,141),
(537,142),
(537,143),
(537,144),
(537,145),
(537,146),
(538,147),
(538,148),
(538,149),
(538,150),
(538,151),
(538,152),
(538,153),
(539,154),
(539,155),
(539,156),
(539,157),
(539,158),
(539,159),
(539,160),
(539,161),
(539,162),
(539,163),
(539,164),
(540,165),
(540,166),
(540,167),
(540,168),
(540,169),
(540,170),
(540,171),
(540,172),
(540,173),
(540,174),
(541,138),
(541,139),
(541,140),
(541,141),
(541,146),
(541,145),
(541,144),
(541,143),
(541,142),
(542,147),
(542,148),
(542,149),
(542,150),
(542,151),
(542,152),
(542,153),
(543,154),
(543,155),
(543,156),
(543,157),
(543,158),
(543,159),
(543,160),
(543,161),
(543,162),
(543,163),
(543,164),
(544,165);
INSERT INTO `course_registration_items` (`registration_id`,`course_offering_id`) VALUES
(544,166),
(544,167),
(544,168),
(544,169),
(544,170),
(544,171),
(544,173),
(544,174),
(544,172),
(545,154),
(545,156),
(545,158),
(545,160),
(545,162),
(545,163),
(545,164),
(545,161),
(546,166),
(546,167),
(546,168),
(546,169),
(546,170),
(546,171),
(546,172),
(546,173),
(546,174),
(547,138),
(547,140),
(547,141),
(547,142),
(547,143),
(547,144),
(547,145),
(547,146),
(548,147),
(548,148),
(548,149),
(548,150),
(548,151),
(548,152),
(548,153),
(549,492),
(549,493),
(549,664),
(549,662),
(549,663),
(549,665),
(550,481),
(550,482),
(550,483),
(550,484),
(550,485),
(550,486),
(550,487),
(550,488),
(550,489),
(550,490),
(550,491),
(551,51),
(551,52),
(551,53),
(551,435),
(551,433),
(551,436),
(551,434),
(552,436),
(552,435),
(552,434),
(552,433),
(552,53),
(552,52),
(552,51),
(553,51),
(553,52),
(553,436),
(553,53),
(553,434),
(553,435),
(553,433),
(554,423),
(554,429),
(554,427),
(554,424),
(554,425),
(554,426),
(554,428),
(554,430),
(554,431),
(554,432),
(555,447),
(555,448),
(555,449),
(555,450),
(555,451),
(555,452),
(555,453),
(555,618),
(556,183),
(556,182),
(556,181),
(556,180),
(556,179),
(556,178),
(556,177),
(556,176),
(556,175),
(557,447),
(557,448),
(557,449),
(557,450),
(557,451),
(557,452),
(557,453),
(557,618),
(557,716),
(557,611),
(558,185),
(558,184),
(558,193),
(558,194),
(558,195),
(558,199),
(558,198),
(558,197),
(558,196),
(558,352),
(558,353),
(559,175),
(559,176),
(559,177),
(559,178),
(559,179),
(559,180),
(559,181),
(559,182),
(559,183),
(560,447),
(560,448),
(560,449),
(560,450),
(560,451),
(560,452),
(560,453),
(561,455),
(561,456),
(561,457),
(561,458),
(561,459),
(561,460),
(562,185),
(562,184),
(562,193),
(562,194),
(562,195),
(562,199),
(562,198),
(562,197),
(562,196),
(562,352),
(562,353),
(563,233),
(563,175),
(563,176),
(563,177),
(563,178),
(563,179),
(563,180),
(563,181),
(563,182),
(563,106),
(563,183),
(564,212),
(564,213),
(564,215),
(564,216),
(564,218),
(564,219),
(564,220),
(564,221),
(564,222),
(564,234),
(564,214),
(564,217),
(565,212),
(565,213),
(565,214),
(565,215),
(565,216),
(565,217),
(565,218),
(565,219),
(565,220),
(565,221),
(565,222),
(565,234),
(566,225),
(566,226),
(566,227),
(566,228),
(566,229),
(566,230),
(566,231),
(566,232),
(566,224),
(566,223),
(567,223),
(567,224),
(567,225),
(567,226),
(567,227),
(567,228),
(567,229),
(567,230),
(567,231),
(567,232),
(568,212),
(568,213),
(568,214),
(568,215),
(568,216),
(568,217),
(568,218),
(568,219),
(568,220),
(568,221),
(568,222),
(568,234),
(569,223),
(569,224),
(569,225),
(569,226),
(569,227),
(569,228),
(569,229),
(569,230),
(569,231),
(569,232),
(570,185),
(570,184),
(570,193),
(570,194),
(570,195),
(570,199),
(570,198),
(570,197),
(570,196),
(570,352),
(570,353),
(571,233),
(571,175);
INSERT INTO `course_registration_items` (`registration_id`,`course_offering_id`) VALUES
(571,176),
(571,177),
(571,178),
(571,179),
(571,180),
(571,181),
(571,182),
(571,106),
(571,183),
(572,455),
(572,456),
(572,460),
(572,459),
(572,458),
(572,683),
(573,185),
(573,184),
(573,193),
(573,195),
(573,199),
(573,196),
(573,352),
(573,353),
(573,197),
(573,198),
(573,194),
(574,447),
(574,449),
(574,614),
(574,716),
(574,616),
(574,451),
(574,617),
(574,701),
(574,618),
(574,611),
(575,212),
(575,213),
(575,214),
(575,215),
(575,216),
(575,217),
(575,218),
(575,219),
(575,220),
(575,221),
(575,222),
(575,234),
(576,223),
(576,224),
(576,225),
(576,226),
(576,227),
(576,228),
(576,229),
(576,230),
(576,231),
(576,232),
(577,195),
(577,198),
(577,197),
(577,199),
(577,185),
(577,184),
(577,193),
(577,194),
(577,352),
(577,353),
(577,196),
(578,54),
(578,62),
(578,61),
(578,60),
(578,59),
(578,58),
(578,57),
(578,56),
(578,55),
(579,175),
(579,176),
(579,177),
(579,178),
(579,179),
(579,180),
(579,181),
(579,182),
(579,183),
(580,481),
(580,482),
(580,491),
(580,489),
(580,488),
(580,486),
(580,485),
(580,484),
(581,2),
(581,13),
(581,15),
(581,14),
(581,16),
(581,17),
(581,18),
(581,19),
(582,21),
(582,20),
(582,22),
(582,23),
(582,24),
(582,25),
(582,26),
(582,27),
(582,28),
(583,212),
(583,215),
(583,213),
(583,214),
(583,217),
(583,219),
(583,220),
(583,221),
(583,216),
(584,223),
(584,224),
(584,225),
(584,226),
(584,227),
(584,228),
(584,229),
(584,230),
(584,231),
(585,353),
(585,185),
(585,352),
(585,196),
(585,197),
(585,198),
(585,199),
(585,195),
(585,194),
(585,193),
(585,184),
(586,183),
(586,106),
(586,181),
(586,182),
(586,180),
(586,179),
(586,178),
(586,177),
(586,176),
(586,175),
(586,233),
(587,1),
(587,3),
(587,4),
(587,5),
(587,6),
(587,7),
(587,9),
(587,10),
(587,11),
(587,12),
(587,276),
(587,8),
(588,54),
(588,55),
(588,56),
(588,57),
(588,58),
(588,59),
(588,60),
(588,61),
(588,62),
(588,106),
(589,1),
(589,3),
(589,4),
(589,5),
(589,6),
(589,7),
(589,8),
(589,9),
(589,10),
(589,11),
(589,12),
(589,276),
(590,54),
(590,55),
(590,56),
(590,57),
(590,58),
(590,59),
(590,60),
(590,61),
(590,62),
(590,106),
(591,322),
(591,46),
(591,47),
(591,323),
(591,48),
(591,127),
(591,49),
(591,50),
(591,344),
(591,345),
(592,51),
(592,326),
(592,327),
(592,328),
(592,329),
(592,52),
(592,324),
(592,53),
(592,325),
(592,436),
(592,435),
(592,434),
(592,433),
(593,441),
(593,442),
(593,443),
(593,446),
(593,444),
(593,445),
(593,573),
(594,502),
(594,503),
(594,504),
(594,505),
(594,506),
(595,507),
(595,508),
(595,509),
(595,510),
(595,511),
(595,512),
(596,51),
(596,436),
(596,433),
(596,53),
(596,52),
(596,434),
(596,435),
(597,51),
(597,52),
(597,53),
(597,436),
(597,435),
(597,434);
INSERT INTO `course_registration_items` (`registration_id`,`course_offering_id`) VALUES
(597,433),
(598,212),
(598,213),
(598,214),
(598,215),
(598,216),
(598,217),
(598,218),
(598,219),
(598,220),
(598,221),
(598,222),
(598,234),
(599,223),
(599,224),
(599,225),
(599,226),
(599,227),
(599,228),
(599,229),
(599,230),
(599,231),
(599,232),
(600,185),
(600,184),
(600,193),
(600,194),
(600,195),
(600,199),
(600,198),
(600,197),
(600,196),
(600,352),
(600,353),
(601,175),
(601,176),
(601,177),
(601,178),
(601,179),
(601,180),
(601,181),
(601,182),
(601,183),
(602,432),
(602,431),
(602,430),
(602,428),
(602,426),
(602,425),
(602,424),
(602,427),
(602,429),
(602,423),
(603,175),
(603,176),
(603,177),
(603,178),
(603,179),
(603,180),
(603,181),
(603,182),
(603,183),
(604,51),
(604,52),
(604,53),
(604,436),
(604,435),
(604,434),
(604,433),
(605,513),
(605,514),
(605,515),
(605,516),
(605,517),
(605,518),
(605,519),
(605,520),
(605,536),
(606,481),
(606,482),
(606,484),
(606,485),
(606,486),
(606,488),
(606,489),
(606,491),
(607,212),
(607,213),
(607,214),
(607,215),
(607,216),
(607,217),
(607,218),
(607,219),
(607,220),
(607,221),
(607,222),
(607,234),
(608,223),
(608,224),
(608,225),
(608,226),
(608,227),
(608,228),
(608,229),
(608,230),
(608,231),
(608,232),
(609,46),
(609,127),
(609,49),
(609,50),
(609,344),
(609,345),
(609,48),
(609,47),
(610,51),
(610,52),
(610,53),
(610,436),
(610,435),
(610,434),
(610,433),
(611,54),
(611,55),
(611,56),
(611,57),
(611,58),
(611,59),
(611,60),
(611,61),
(611,106),
(611,62),
(612,481),
(612,482),
(612,484),
(612,485),
(612,486),
(612,488),
(612,489),
(612,491),
(613,481),
(613,482),
(613,484),
(613,486),
(613,485),
(613,488),
(613,489),
(613,491),
(614,481),
(614,482),
(614,485),
(614,486),
(614,488),
(614,489),
(614,491),
(614,606),
(615,481),
(615,482),
(615,484),
(615,485),
(615,486),
(615,488),
(615,489),
(615,491),
(616,108),
(616,109),
(616,110),
(616,211),
(616,114),
(616,113),
(616,112),
(616,111),
(617,521),
(617,522),
(617,523),
(617,524),
(617,525),
(617,526),
(617,527),
(618,528),
(618,529),
(618,530),
(618,531),
(618,532),
(618,533),
(618,534),
(619,492),
(619,493),
(619,664),
(619,665),
(619,662),
(619,663),
(620,383),
(620,384),
(620,385),
(620,386),
(620,387),
(620,388),
(621,447),
(621,614),
(621,615),
(621,716),
(621,616),
(621,451),
(621,617),
(621,701),
(621,618),
(621,611),
(622,451),
(622,613),
(622,614),
(622,615),
(622,616),
(622,618),
(622,611),
(622,617),
(622,701),
(622,716),
(623,212),
(623,213),
(623,214),
(623,215),
(623,216),
(623,217),
(623,218),
(623,219),
(623,220),
(623,221),
(623,222),
(623,234),
(624,212),
(624,213),
(624,214),
(624,215),
(624,216),
(624,217),
(624,218),
(624,219),
(624,220),
(624,221),
(624,222),
(624,234),
(625,223),
(625,224),
(625,232),
(625,231),
(625,230),
(625,229),
(625,228);
INSERT INTO `course_registration_items` (`registration_id`,`course_offering_id`) VALUES
(625,227),
(625,226),
(625,225),
(626,225),
(626,226),
(626,232),
(626,231),
(626,230),
(626,229),
(626,228),
(626,227),
(626,224),
(626,223),
(627,465),
(627,745),
(627,746),
(627,743),
(627,742),
(628,454),
(628,458),
(628,456),
(628,457),
(628,455),
(628,459),
(628,460),
(629,441),
(629,442),
(629,443),
(629,446),
(629,444),
(629,445),
(629,573),
(630,481),
(630,482),
(630,484),
(630,485),
(630,486),
(630,488),
(630,489),
(630,491),
(630,612),
(631,29),
(631,30),
(631,32),
(631,31),
(631,33),
(631,34),
(631,35),
(631,36),
(632,186),
(632,187),
(632,188),
(632,189),
(632,190),
(632,192),
(632,191),
(632,279),
(633,233),
(633,175),
(633,176),
(633,177),
(633,178),
(633,179),
(633,180),
(633,181),
(633,182),
(633,106),
(633,183),
(634,185),
(634,184),
(634,193),
(634,194),
(634,195),
(634,199),
(634,198),
(634,197),
(634,196),
(634,352),
(634,353),
(635,453),
(635,452),
(635,451),
(635,450),
(635,449),
(635,448),
(635,447),
(636,465),
(636,742),
(636,743),
(636,746),
(636,745),
(637,51),
(637,326),
(637,327),
(637,328),
(637,329),
(637,52),
(637,324),
(637,53),
(637,325),
(637,436),
(637,435),
(637,434),
(637,433),
(638,512),
(638,507),
(638,537),
(638,509),
(639,538),
(639,539),
(639,540),
(639,541),
(639,542),
(639,543),
(639,544),
(639,545),
(640,540),
(640,539),
(640,541),
(640,538),
(640,543),
(640,545),
(640,544),
(640,542),
(641,538),
(641,539),
(641,540),
(641,541),
(641,542),
(641,543),
(641,544),
(641,545),
(642,538),
(642,539),
(642,540),
(642,541),
(642,542),
(642,543),
(642,544),
(642,545),
(643,546),
(643,547),
(643,548),
(643,549),
(643,550),
(643,551),
(643,552),
(643,553),
(643,554),
(643,555),
(643,556),
(643,557),
(643,558),
(643,559),
(644,546),
(644,547),
(644,548),
(644,549),
(644,559),
(644,558),
(644,557),
(644,556),
(644,555),
(644,554),
(644,552),
(644,551),
(644,550),
(644,553),
(645,559),
(645,558),
(645,557),
(645,556),
(645,555),
(645,554),
(645,553),
(645,552),
(645,551),
(645,550),
(645,549),
(645,548),
(645,547),
(645,546),
(646,512),
(647,556),
(647,555),
(647,554),
(647,553),
(647,552),
(647,547),
(647,550),
(647,548),
(647,549),
(647,546),
(647,551),
(647,557),
(647,558),
(647,559),
(648,559),
(648,558),
(648,557),
(648,556),
(648,555),
(648,554),
(648,552),
(648,550),
(648,547),
(648,549),
(648,548),
(648,546),
(648,551),
(648,553),
(649,538),
(649,543),
(649,541),
(649,539),
(649,540),
(649,542),
(649,545),
(649,544),
(650,539),
(650,545),
(650,540),
(650,544),
(650,538),
(650,542),
(650,543),
(650,541),
(651,560),
(651,561),
(651,562),
(651,563),
(651,564),
(651,565),
(651,566),
(651,567),
(651,568),
(651,569),
(651,570),
(651,571),
(651,572),
(652,567),
(652,571),
(652,564),
(652,563),
(652,572),
(652,565),
(652,562),
(652,560),
(652,566),
(652,570);
INSERT INTO `course_registration_items` (`registration_id`,`course_offering_id`) VALUES
(652,561),
(652,569),
(652,568),
(653,571),
(653,567),
(653,564),
(653,568),
(653,563),
(653,566),
(653,572),
(653,569),
(653,565),
(653,570),
(653,562),
(653,561),
(653,560),
(654,55),
(654,54),
(654,56),
(654,57),
(654,58),
(654,59),
(654,60),
(654,61),
(654,62),
(655,571),
(655,564),
(655,567),
(655,568),
(655,563),
(655,566),
(655,572),
(655,569),
(655,565),
(655,570),
(655,562),
(655,561),
(655,560),
(656,571),
(656,564),
(656,563),
(656,572),
(656,565),
(656,562),
(656,561),
(656,560),
(656,570),
(656,569),
(656,566),
(656,568),
(656,567),
(657,571),
(657,567),
(657,564),
(657,568),
(657,566),
(657,572),
(657,569),
(657,570),
(657,562),
(657,561),
(657,563),
(657,560),
(657,565),
(658,564),
(658,571),
(658,567),
(658,568),
(658,563),
(658,566),
(658,572),
(658,569),
(658,565),
(658,570),
(658,562),
(658,561),
(658,560),
(659,560),
(659,561),
(659,570),
(659,562),
(659,569),
(659,572),
(659,566),
(659,563),
(659,568),
(659,564),
(659,567),
(659,571),
(659,565),
(660,545),
(660,544),
(660,543),
(660,542),
(660,539),
(660,541),
(660,540),
(660,538),
(661,571),
(661,564),
(661,567),
(661,568),
(661,566),
(661,563),
(661,569),
(661,570),
(661,562),
(661,561),
(661,560),
(661,565),
(661,572),
(662,571),
(662,567),
(662,564),
(662,568),
(662,563),
(662,566),
(662,572),
(662,560),
(662,561),
(662,562),
(662,570),
(662,565),
(662,569),
(663,29),
(663,30),
(663,32),
(663,31),
(663,33),
(663,34),
(663,35),
(663,36),
(663,37),
(664,186),
(664,187),
(664,188),
(664,189),
(664,190),
(664,192),
(664,278),
(664,279),
(664,191),
(665,45),
(665,44),
(665,43),
(665,42),
(665,41),
(665,40),
(665,39),
(665,38),
(666,122),
(666,123),
(666,124),
(666,128),
(666,125),
(666,126),
(666,129),
(666,130),
(666,277),
(667,573),
(667,445),
(667,444),
(667,446),
(667,443),
(667,442),
(667,441),
(668,465),
(668,742),
(668,743),
(668,746),
(668,745),
(669,465),
(669,742),
(669,743),
(669,746),
(669,745),
(670,560),
(670,561),
(670,562),
(670,570),
(670,569),
(670,572),
(670,566),
(670,563),
(670,568),
(670,564),
(670,567),
(670,571),
(670,565),
(671,560),
(671,561),
(671,562),
(671,570),
(671,571),
(671,567),
(671,564),
(671,568),
(671,563),
(671,566),
(671,572),
(671,569),
(671,565),
(672,571),
(672,567),
(672,564),
(672,568),
(672,563),
(672,566),
(672,572),
(672,569),
(672,565),
(672,570),
(672,562),
(672,561),
(672,560),
(673,571),
(673,567),
(673,564),
(673,568),
(673,563),
(673,566),
(673,572),
(673,569),
(673,565),
(673,570),
(673,562),
(673,560),
(673,561),
(674,574),
(674,575),
(674,576),
(674,577),
(674,578),
(674,579),
(674,580),
(674,581),
(674,582),
(675,567),
(675,564),
(675,568),
(675,563),
(675,566),
(675,572),
(675,569),
(675,565),
(675,570),
(675,562),
(675,561),
(675,560),
(675,571);
INSERT INTO `course_registration_items` (`registration_id`,`course_offering_id`) VALUES
(676,583),
(676,1),
(676,584),
(676,585),
(676,586),
(676,587),
(676,588),
(676,589),
(676,590),
(676,591),
(676,592),
(676,593),
(677,571),
(677,567),
(677,564),
(677,568),
(677,563),
(677,566),
(677,572),
(677,569),
(677,565),
(677,570),
(677,562),
(677,561),
(677,560),
(678,571),
(678,567),
(678,564),
(678,568),
(678,563),
(678,566),
(678,572),
(678,569),
(678,565),
(678,570),
(678,562),
(678,561),
(678,560),
(679,567),
(679,564),
(679,568),
(679,563),
(679,566),
(679,572),
(679,569),
(679,565),
(679,570),
(679,562),
(679,561),
(679,560),
(679,571),
(680,546),
(680,547),
(680,548),
(680,549),
(680,550),
(680,551),
(680,552),
(680,553),
(680,554),
(680,555),
(680,556),
(680,557),
(680,559),
(680,558),
(681,441),
(681,446),
(681,442),
(681,443),
(681,445),
(681,573),
(681,444),
(682,559),
(682,558),
(682,557),
(682,556),
(682,555),
(682,554),
(682,553),
(682,552),
(682,551),
(682,550),
(682,549),
(682,548),
(682,547),
(682,546),
(683,571),
(683,567),
(683,564),
(683,568),
(683,563),
(683,566),
(683,572),
(683,569),
(683,560),
(683,561),
(683,562),
(683,570),
(683,565),
(684,594),
(684,595),
(684,596),
(684,597),
(684,598),
(684,599),
(684,600),
(684,601),
(684,602),
(684,603),
(685,538),
(685,539),
(685,540),
(685,541),
(685,542),
(685,543),
(685,544),
(685,545),
(686,567),
(686,564),
(686,568),
(686,563),
(686,562),
(686,565),
(686,560),
(686,561),
(686,570),
(686,569),
(686,572),
(686,571),
(686,566),
(687,571),
(687,564),
(687,568),
(687,566),
(687,572),
(687,569),
(687,562),
(687,570),
(687,561),
(687,565),
(687,567),
(687,560),
(687,563),
(688,571),
(688,567),
(688,564),
(688,568),
(688,563),
(688,566),
(688,572),
(688,560),
(688,561),
(688,562),
(688,570),
(688,565),
(688,569),
(689,571),
(689,567),
(689,568),
(689,566),
(689,569),
(689,565),
(689,562),
(689,570),
(689,561),
(689,564),
(689,572),
(689,560),
(689,563),
(690,604),
(690,605),
(690,606),
(690,607),
(690,608),
(690,609),
(690,489),
(690,610),
(691,604),
(691,605),
(691,606),
(691,607),
(691,608),
(691,609),
(691,489),
(691,610),
(692,604),
(692,605),
(692,606),
(692,607),
(692,608),
(692,609),
(692,489),
(692,610),
(693,461),
(693,462),
(693,463),
(693,464),
(693,466),
(693,467),
(693,468),
(693,469),
(694,604),
(694,606),
(694,607),
(694,608),
(694,489),
(694,609),
(694,610),
(694,605),
(695,604),
(695,605),
(695,606),
(695,607),
(695,608),
(695,489),
(695,609),
(695,610),
(696,604),
(696,605),
(696,483),
(696,606),
(696,607),
(696,608),
(696,487),
(696,609),
(696,489),
(696,611),
(696,610),
(696,612),
(697,604),
(697,605),
(697,606),
(697,607),
(697,608),
(697,609),
(697,610),
(697,487),
(697,756),
(698,604),
(698,605),
(698,608),
(698,609),
(698,610),
(698,612),
(698,607),
(698,606),
(699,604),
(699,605),
(699,606),
(699,607);
INSERT INTO `course_registration_items` (`registration_id`,`course_offering_id`) VALUES
(699,608),
(699,609),
(699,489),
(699,610),
(700,574),
(700,575),
(700,576),
(700,577),
(700,578),
(700,580),
(700,579),
(700,581),
(700,582),
(701,582),
(701,581),
(701,580),
(701,579),
(701,578),
(701,577),
(701,576),
(701,575),
(701,574),
(702,604),
(702,605),
(702,606),
(702,607),
(702,608),
(702,609),
(702,489),
(702,610),
(703,604),
(703,605),
(703,483),
(703,606),
(703,607),
(703,608),
(703,487),
(703,612),
(703,610),
(703,611),
(703,489),
(703,609),
(704,613),
(704,614),
(704,615),
(704,616),
(704,451),
(704,617),
(704,618),
(704,716),
(704,611),
(705,513),
(705,514),
(705,536),
(705,515),
(705,516),
(705,517),
(705,518),
(705,519),
(705,520),
(706,382),
(706,709),
(706,710),
(706,711),
(706,422),
(706,714),
(707,594),
(707,595),
(707,596),
(707,598),
(707,597),
(707,599),
(707,600),
(707,601),
(707,602),
(707,603),
(707,619),
(708,465),
(708,746),
(708,742),
(708,745),
(708,743),
(709,619),
(709,603),
(709,602),
(709,601),
(709,600),
(709,598),
(709,599),
(709,594),
(709,595),
(709,596),
(709,597),
(710,594),
(710,595),
(710,596),
(710,597),
(710,598),
(710,599),
(710,600),
(710,601),
(710,602),
(710,603),
(711,594),
(711,595),
(711,596),
(711,597),
(711,598),
(711,599),
(711,619),
(711,603),
(711,601),
(711,600),
(711,602),
(712,51),
(712,52),
(712,53),
(712,436),
(712,435),
(712,434),
(712,433),
(713,571),
(713,567),
(713,568),
(713,563),
(713,566),
(713,572),
(713,569),
(713,570),
(713,562),
(713,561),
(713,560),
(713,565),
(713,564),
(714,594),
(714,595),
(714,596),
(714,597),
(714,598),
(714,599),
(714,600),
(714,601),
(714,602),
(714,603),
(714,619),
(715,571),
(715,567),
(715,564),
(715,568),
(715,563),
(715,566),
(715,569),
(715,572),
(715,565),
(715,570),
(715,560),
(715,561),
(715,562),
(716,571),
(716,567),
(716,564),
(716,568),
(716,563),
(716,566),
(716,572),
(716,569),
(716,565),
(716,570),
(716,562),
(716,561),
(716,560),
(717,571),
(717,567),
(717,564),
(717,568),
(717,563),
(717,566),
(717,572),
(717,569),
(717,565),
(717,570),
(717,562),
(717,561),
(717,560),
(718,546),
(718,547),
(718,548),
(718,549),
(718,550),
(718,551),
(718,552),
(718,553),
(718,554),
(718,555),
(718,556),
(718,559),
(718,557),
(718,558),
(719,571),
(719,567),
(719,564),
(719,568),
(719,563),
(719,566),
(719,572),
(719,569),
(719,565),
(719,570),
(719,562),
(719,561),
(719,560),
(720,571),
(720,567),
(720,564),
(720,568),
(720,563),
(720,566),
(720,569),
(720,565),
(720,570),
(720,562),
(720,561),
(720,560),
(721,574),
(721,575),
(721,576),
(721,577),
(721,578),
(721,579),
(721,580),
(721,581),
(721,582),
(722,571),
(722,567),
(722,564),
(722,568),
(722,563),
(722,566),
(722,572),
(722,569),
(722,565),
(722,570),
(722,562),
(722,561),
(722,560),
(723,571),
(723,567),
(723,564),
(723,568),
(723,563);
INSERT INTO `course_registration_items` (`registration_id`,`course_offering_id`) VALUES
(723,566),
(723,572),
(723,569),
(723,565),
(723,570),
(723,562),
(723,561),
(723,560),
(724,538),
(724,539),
(724,540),
(724,541),
(724,542),
(724,543),
(724,544),
(724,545),
(725,538),
(725,539),
(725,541),
(725,542),
(725,543),
(725,545),
(725,540),
(725,544),
(726,489),
(726,604),
(726,605),
(726,606),
(726,608),
(726,609),
(726,607),
(726,610),
(726,612),
(727,604),
(727,605),
(727,483),
(727,606),
(727,607),
(727,608),
(727,487),
(727,609),
(727,489),
(727,611),
(727,610),
(727,612),
(728,441),
(728,442),
(728,443),
(728,446),
(728,445),
(728,573),
(729,613),
(729,614),
(729,615),
(729,616),
(729,451),
(729,617),
(729,618),
(729,716),
(730,613),
(730,614),
(730,615),
(730,616),
(730,451),
(730,617),
(730,618),
(730,716),
(731,613),
(731,614),
(731,615),
(731,616),
(731,451),
(731,617),
(731,618),
(731,716),
(732,441),
(732,442),
(732,443),
(732,446),
(732,444),
(732,445),
(732,573),
(733,502),
(733,503),
(733,504),
(733,505),
(733,620),
(733,506),
(734,441),
(734,442),
(734,443),
(734,446),
(734,444),
(734,445),
(734,573),
(735,613),
(735,618),
(735,617),
(735,451),
(735,616),
(735,615),
(735,614),
(736,233),
(736,175),
(736,176),
(736,177),
(736,178),
(736,179),
(736,180),
(736,182),
(736,106),
(736,183),
(737,621),
(737,622),
(737,193),
(737,623),
(737,3),
(737,276),
(737,198),
(737,624),
(737,196),
(737,625),
(737,5),
(737,626),
(738,54),
(738,627),
(738,56),
(738,57),
(738,58),
(738,59),
(738,61),
(738,60),
(738,62),
(739,604),
(739,605),
(739,606),
(739,607),
(739,608),
(739,609),
(739,489),
(739,610),
(740,604),
(740,612),
(740,610),
(740,605),
(740,606),
(740,607),
(740,608),
(740,609),
(741,585),
(741,587),
(741,584),
(741,583),
(741,586),
(741,592),
(741,590),
(742,604),
(742,483),
(742,606),
(742,607),
(742,608),
(742,487),
(742,610),
(742,612),
(742,611),
(742,609),
(743,196),
(743,622),
(743,3),
(743,624),
(743,623),
(743,198),
(743,193),
(743,276),
(743,621),
(744,621),
(744,5),
(744,625),
(744,196),
(744,624),
(744,198),
(744,276),
(744,3),
(744,623),
(744,193),
(744,622),
(745,233),
(745,175),
(745,176),
(745,177),
(745,178),
(745,179),
(745,180),
(745,182),
(745,106),
(745,183),
(746,233),
(746,175),
(746,176),
(746,106),
(746,182),
(746,180),
(746,179),
(746,178),
(746,177),
(746,183),
(747,614),
(747,615),
(747,613),
(747,616),
(747,451),
(747,617),
(747,618),
(748,618),
(748,617),
(748,451),
(748,616),
(748,615),
(748,614),
(748,613),
(749,441),
(749,442),
(749,573),
(749,445),
(749,444),
(749,443),
(750,277),
(750,130),
(750,129),
(750,126),
(750,125),
(750,128),
(750,124),
(750,123),
(750,122),
(751,621),
(751,622),
(751,193),
(751,623),
(751,3),
(751,276),
(751,198),
(751,624),
(751,196),
(751,625),
(751,5),
(752,613),
(752,614),
(752,615),
(752,616);
INSERT INTO `course_registration_items` (`registration_id`,`course_offering_id`) VALUES
(752,451),
(752,617),
(752,618),
(753,233),
(753,175),
(753,176),
(753,177),
(753,178),
(753,179),
(753,180),
(753,182),
(753,106),
(753,183),
(754,46),
(754,322),
(754,47),
(754,48),
(754,127),
(754,49),
(754,50),
(754,344),
(754,345),
(755,51),
(755,52),
(755,53),
(755,325),
(755,436),
(755,435),
(755,434),
(755,433),
(756,462),
(756,461),
(756,463),
(756,464),
(756,466),
(756,467),
(756,468),
(756,469),
(757,38),
(757,39),
(757,40),
(757,41),
(757,42),
(757,43),
(757,44),
(757,45),
(758,122),
(758,123),
(758,124),
(758,128),
(758,125),
(758,129),
(758,130),
(758,277),
(758,126),
(759,441),
(759,442),
(759,443),
(759,446),
(759,444),
(759,445),
(759,573),
(760,502),
(760,503),
(760,504),
(760,505),
(760,620),
(760,506),
(761,108),
(761,109),
(761,110),
(761,111),
(761,112),
(761,113),
(761,114),
(761,211),
(762,108),
(762,109),
(762,110),
(762,111),
(762,112),
(762,113),
(762,114),
(762,211),
(763,462),
(763,461),
(763,463),
(763,464),
(763,466),
(763,467),
(763,468),
(763,469),
(764,38),
(764,42),
(764,41),
(764,39),
(764,40),
(764,43),
(764,44),
(764,45),
(765,613),
(765,614),
(765,615),
(765,616),
(765,451),
(765,617),
(765,618),
(765,611),
(765,716),
(766,441),
(766,442),
(766,443),
(766,446),
(766,445),
(766,573),
(767,1),
(767,583),
(767,585),
(767,584),
(767,592),
(767,591),
(767,587),
(767,628),
(767,590),
(767,593),
(768,465),
(768,745),
(768,746),
(768,743),
(768,742),
(769,613),
(769,614),
(769,615),
(769,616),
(769,451),
(769,617),
(769,618),
(770,613),
(770,614),
(770,615),
(770,616),
(770,451),
(770,617),
(770,618),
(771,613),
(771,614),
(771,615),
(771,616),
(771,451),
(771,617),
(771,618),
(771,716),
(772,613),
(772,614),
(772,615),
(772,616),
(772,451),
(772,617),
(772,618),
(773,455),
(773,629),
(773,456),
(773,457),
(773,458),
(773,460),
(774,465),
(774,745),
(774,746),
(774,743),
(774,742),
(775,630),
(775,631),
(775,632),
(775,633),
(775,634),
(775,635),
(775,636),
(775,637),
(775,638),
(776,631),
(776,635),
(776,638),
(776,637),
(776,636),
(776,633),
(776,632),
(776,634),
(776,630),
(777,461),
(777,462),
(777,463),
(777,464),
(777,466),
(777,467),
(777,468),
(777,469),
(778,612),
(778,607),
(778,608),
(778,609),
(778,756),
(778,610),
(778,604),
(778,605),
(778,606),
(779,503),
(779,502),
(779,504),
(779,505),
(779,620),
(779,506),
(780,465),
(780,742),
(780,746),
(780,745),
(780,743),
(781,522),
(781,526),
(781,525),
(781,521),
(781,527),
(781,524),
(781,523),
(782,471),
(782,480),
(782,476),
(782,474),
(782,472),
(782,473),
(782,681),
(782,680),
(782,678),
(782,682),
(783,475),
(783,480),
(783,476),
(783,682),
(783,674),
(783,673),
(783,675),
(783,676),
(783,680),
(784,471),
(784,472),
(784,474),
(784,473),
(784,476),
(784,478),
(784,480),
(784,682);
INSERT INTO `course_registration_items` (`registration_id`,`course_offering_id`) VALUES
(784,680),
(784,681),
(785,613),
(785,614),
(785,615),
(785,616),
(785,451),
(785,617),
(785,618),
(785,716),
(786,629),
(786,455),
(786,456),
(786,457),
(786,458),
(786,459),
(787,521),
(787,525),
(787,522),
(787,526),
(787,523),
(787,527),
(787,524),
(788,528),
(788,529),
(788,530),
(788,531),
(788,532),
(788,533),
(788,534),
(789,521),
(789,525),
(789,522),
(789,526),
(789,523),
(789,527),
(789,524),
(790,528),
(790,529),
(790,530),
(790,531),
(790,532),
(790,533),
(790,534),
(791,629),
(791,455),
(791,456),
(791,457),
(791,458),
(791,459),
(791,460),
(792,494),
(792,495),
(792,496),
(792,497),
(792,500),
(792,499),
(792,501),
(792,649),
(793,492),
(793,493),
(793,664),
(793,665),
(793,662),
(793,663),
(794,471),
(794,472),
(794,473),
(794,474),
(794,475),
(794,476),
(794,479),
(794,480),
(795,471),
(795,472),
(795,473),
(795,474),
(795,475),
(795,476),
(795,479),
(795,480),
(796,1),
(796,591),
(796,587),
(796,590),
(796,592),
(796,586),
(796,583),
(796,585),
(796,593),
(797,471),
(797,472),
(797,474),
(797,475),
(797,476),
(797,478),
(797,479),
(797,480),
(798,574),
(798,575),
(798,576),
(798,577),
(798,578),
(798,579),
(798,580),
(798,581),
(798,582),
(799,574),
(799,575),
(799,576),
(799,577),
(799,578),
(799,579),
(799,580),
(799,581),
(799,582),
(800,571),
(800,567),
(800,564),
(800,568),
(800,563),
(800,566),
(800,572),
(800,569),
(800,565),
(800,570),
(800,562),
(800,561),
(800,560),
(801,571),
(801,567),
(801,564),
(801,568),
(801,563),
(801,566),
(801,572),
(801,569),
(801,565),
(801,570),
(801,562),
(801,561),
(801,560),
(802,567),
(802,571),
(802,564),
(802,568),
(802,563),
(802,572),
(802,566),
(802,569),
(802,565),
(802,570),
(802,562),
(802,561),
(802,560),
(803,571),
(803,567),
(803,564),
(803,568),
(803,563),
(803,566),
(803,572),
(803,569),
(803,565),
(803,570),
(803,562),
(803,561),
(803,560),
(804,571),
(804,567),
(804,564),
(804,568),
(804,563),
(804,566),
(804,572),
(804,569),
(804,565),
(804,570),
(804,562),
(804,561),
(804,560),
(805,571),
(805,567),
(805,564),
(805,568),
(805,563),
(805,566),
(805,572),
(805,569),
(805,565),
(805,570),
(805,562),
(805,561),
(805,560),
(806,574),
(806,576),
(806,575),
(806,577),
(806,580),
(806,581),
(806,582),
(806,578),
(806,579),
(807,574),
(807,575),
(807,576),
(807,577),
(807,578),
(807,579),
(807,580),
(807,581),
(807,582),
(808,574),
(808,575),
(808,577),
(808,576),
(808,579),
(808,578),
(808,580),
(808,581),
(808,582),
(809,538),
(809,539),
(809,540),
(809,541),
(809,542),
(809,543),
(809,544),
(809,545),
(810,571),
(810,564),
(810,567),
(810,568),
(810,563),
(810,566),
(810,572),
(810,569),
(810,565),
(810,570),
(810,562),
(810,561),
(810,560),
(811,465),
(811,745),
(811,746),
(811,743),
(811,742),
(812,650),
(812,717),
(812,666);
INSERT INTO `course_registration_items` (`registration_id`,`course_offering_id`) VALUES
(812,748),
(812,667),
(812,747),
(812,669),
(812,668),
(812,670),
(812,671),
(812,672),
(813,613),
(813,614),
(813,615),
(813,451),
(813,617),
(813,618),
(813,716),
(813,611),
(813,616),
(814,492),
(814,493),
(815,650),
(815,671),
(815,672),
(815,666),
(815,748),
(815,747),
(815,669),
(815,668),
(815,667),
(815,717),
(815,670),
(816,651),
(816,652),
(816,653),
(816,654),
(816,655),
(816,650),
(816,479),
(816,668),
(816,672),
(816,671),
(816,717),
(817,656),
(817,657),
(817,658),
(817,659),
(817,660),
(817,712),
(817,713),
(818,497),
(818,500),
(818,501),
(818,649),
(818,499),
(818,496),
(818,661),
(819,471),
(819,472),
(819,473),
(819,474),
(819,476),
(819,480),
(819,680),
(819,682),
(819,678),
(819,681),
(820,492),
(820,662),
(820,663),
(820,493),
(820,664),
(820,665),
(821,492),
(821,493),
(821,663),
(821,664),
(821,665),
(822,666),
(822,652),
(822,667),
(822,668),
(822,654),
(822,669),
(822,650),
(822,670),
(822,671),
(822,672),
(822,717),
(823,441),
(823,442),
(823,443),
(823,446),
(823,444),
(823,445),
(823,573),
(824,666),
(824,667),
(824,668),
(824,654),
(824,650),
(824,671),
(824,669),
(824,670),
(824,672),
(824,652),
(824,717),
(825,673),
(825,674),
(825,675),
(825,676),
(825,677),
(825,678),
(825,679),
(825,680),
(825,681),
(825,682),
(826,630),
(826,638),
(826,637),
(826,636),
(826,634),
(826,633),
(826,632),
(826,631),
(827,683),
(827,458),
(827,460),
(827,459),
(827,684),
(827,685),
(828,465),
(828,743),
(828,745),
(828,746),
(828,742),
(829,465),
(829,745),
(829,746),
(829,743),
(829,742),
(830,666),
(830,652),
(830,667),
(830,668),
(830,654),
(830,669),
(830,650),
(830,670),
(830,671),
(830,672),
(830,717),
(831,686),
(831,687),
(831,688),
(831,689),
(831,690),
(831,691),
(831,692),
(831,693),
(831,694),
(831,695),
(832,696),
(832,697),
(832,698),
(832,699),
(832,700),
(833,666),
(833,652),
(833,672),
(833,671),
(833,670),
(833,650),
(833,654),
(833,668),
(833,667),
(833,717),
(833,669),
(834,666),
(834,652),
(834,667),
(834,668),
(834,654),
(834,669),
(834,650),
(834,670),
(834,671),
(834,672),
(834,717),
(835,615),
(835,616),
(835,451),
(835,617),
(835,701),
(835,618),
(835,611),
(835,613),
(835,614),
(836,502),
(836,503),
(836,504),
(836,505),
(836,620),
(836,506),
(837,630),
(837,631),
(837,632),
(837,633),
(837,634),
(837,636),
(837,637),
(837,638),
(838,461),
(838,462),
(838,463),
(838,464),
(838,466),
(838,467),
(838,468),
(838,469),
(839,702),
(839,703),
(839,704),
(839,705),
(839,96),
(839,706),
(839,707),
(839,708),
(839,625),
(840,513),
(840,514),
(840,536),
(840,515),
(840,516),
(840,517),
(840,518),
(840,519),
(840,520),
(841,441),
(841,445),
(841,446),
(841,444),
(841,442),
(841,443),
(841,573),
(842,664),
(842,665),
(842,492),
(842,662),
(842,663),
(842,493),
(843,496);
INSERT INTO `course_registration_items` (`registration_id`,`course_offering_id`) VALUES
(843,497),
(843,661),
(843,499),
(843,501),
(843,649),
(843,500),
(843,498),
(844,496),
(844,497),
(844,661),
(844,649),
(844,501),
(844,500),
(844,499),
(845,493),
(845,664),
(845,665),
(845,492),
(845,663),
(845,662),
(846,497),
(846,498),
(846,496),
(846,499),
(846,501),
(846,649),
(846,500),
(847,497),
(847,498),
(847,499),
(847,500),
(847,501),
(847,649),
(847,496),
(848,684),
(848,683),
(848,685),
(848,715),
(848,458),
(848,459),
(848,460),
(849,614),
(849,613),
(849,615),
(849,616),
(849,451),
(849,617),
(849,701),
(849,618),
(849,611),
(850,673),
(850,674),
(850,675),
(850,676),
(850,475),
(850,677),
(850,479),
(850,679),
(850,682),
(851,685),
(851,684),
(851,683),
(851,458),
(851,459),
(851,460),
(852,616),
(852,615),
(852,614),
(852,613),
(852,617),
(852,618),
(852,611),
(852,451),
(852,701),
(852,716),
(853,716),
(853,611),
(853,618),
(853,613),
(853,614),
(853,615),
(853,616),
(853,451),
(853,617),
(853,701),
(854,685),
(854,684),
(854,683),
(854,458),
(854,459),
(854,460),
(855,685),
(855,684),
(855,683),
(855,458),
(855,459),
(855,460),
(856,718),
(856,719),
(856,720),
(856,721),
(856,722),
(856,723),
(856,724),
(856,725),
(857,538),
(857,539),
(857,540),
(857,541),
(857,542),
(857,543),
(857,544),
(857,545),
(858,718),
(858,719),
(858,720),
(858,721),
(858,722),
(858,723),
(858,724),
(858,726),
(858,725),
(859,727),
(859,729),
(859,728),
(859,730),
(859,731),
(859,732),
(859,733),
(859,734),
(859,735),
(859,736),
(859,737),
(859,738),
(859,739),
(859,740),
(859,741),
(860,727),
(860,728),
(860,729),
(860,730),
(860,731),
(860,732),
(860,733),
(860,734),
(860,735),
(860,736),
(860,737),
(860,738),
(860,739),
(860,740),
(860,741),
(861,727),
(861,728),
(861,729),
(861,730),
(861,731),
(861,732),
(861,733),
(861,734),
(861,735),
(861,736),
(861,737),
(861,738),
(861,739),
(861,740),
(861,741),
(862,727),
(862,728),
(862,729),
(862,730),
(862,731),
(862,732),
(862,733),
(862,734),
(862,735),
(862,736),
(862,737),
(862,738),
(862,739),
(862,740),
(862,741),
(863,731),
(863,730),
(863,729),
(863,727),
(863,728),
(863,732),
(863,733),
(863,734),
(863,735),
(863,736),
(863,737),
(863,738),
(863,739),
(863,740),
(863,741),
(864,731),
(864,730),
(864,728),
(864,727),
(864,729),
(864,732),
(864,733),
(864,734),
(864,735),
(864,736),
(864,737),
(864,738),
(864,739),
(864,740),
(864,741),
(865,465),
(865,745),
(865,746),
(865,743),
(865,742),
(866,666),
(866,670),
(866,717),
(866,671),
(866,672),
(866,667),
(866,668),
(866,669),
(866,650),
(866,747),
(866,748),
(867,666),
(867,748),
(867,667),
(867,668),
(867,747),
(867,672),
(867,671),
(867,717),
(867,670),
(867,650),
(867,669),
(868,745),
(868,743),
(868,742),
(868,465),
(868,746),
(869,465),
(869,745),
(869,746),
(869,742),
(869,743),
(869,744);
INSERT INTO `course_registration_items` (`registration_id`,`course_offering_id`) VALUES
(870,749),
(870,750),
(870,751),
(870,752),
(870,316),
(870,318),
(870,831),
(871,742),
(871,744),
(871,746),
(871,745),
(871,743),
(872,666),
(872,748),
(872,667),
(872,668),
(872,747),
(872,669),
(872,650),
(872,670),
(872,717),
(872,671),
(872,672),
(873,742),
(873,743),
(873,746),
(873,745),
(873,744),
(874,742),
(874,743),
(874,744),
(874,746),
(874,745),
(875,745),
(875,746),
(875,744),
(875,743),
(875,742),
(876,742),
(876,743),
(876,744),
(876,746),
(876,745),
(877,511),
(877,824),
(877,818),
(877,823),
(877,822),
(877,821),
(877,820),
(877,819),
(878,745),
(878,746),
(878,744),
(878,743),
(878,742),
(879,742),
(879,743),
(879,744),
(879,746),
(879,745),
(880,745),
(880,746),
(880,744),
(880,743),
(880,742),
(881,465),
(881,745),
(881,744),
(881,742),
(881,746),
(881,743),
(882,742),
(882,743),
(882,744),
(882,746),
(882,745),
(883,666),
(883,753),
(883,748),
(883,667),
(883,668),
(883,747),
(883,669),
(883,650),
(883,670),
(883,717),
(883,671),
(883,672),
(884,742),
(884,743),
(884,744),
(884,746),
(884,745),
(885,742),
(885,745),
(885,746),
(885,744),
(885,743),
(885,465),
(886,743),
(886,742),
(886,744),
(886,746),
(886,745),
(887,1),
(887,583),
(887,585),
(887,586),
(887,591),
(887,587),
(887,584),
(887,588),
(887,592),
(887,589),
(887,593),
(887,590),
(888,673),
(888,674),
(888,675),
(888,676),
(888,677),
(888,679),
(888,680),
(888,681),
(888,682),
(888,678),
(889,666),
(889,748),
(889,668),
(889,667),
(889,747),
(889,669),
(889,650),
(889,670),
(889,717),
(889,671),
(889,672),
(890,666),
(890,748),
(890,667),
(890,668),
(890,747),
(890,669),
(890,650),
(890,670),
(890,717),
(890,671),
(890,672),
(891,742),
(891,743),
(891,744),
(891,746),
(891,745),
(892,686),
(892,688),
(892,687),
(892,689),
(892,690),
(892,691),
(892,692),
(892,695),
(892,693),
(892,694),
(893,465),
(893,745),
(893,746),
(893,743),
(893,742),
(894,604),
(894,605),
(894,607),
(894,609),
(894,610),
(894,756),
(894,608),
(894,606),
(895,745),
(895,746),
(895,744),
(895,743),
(895,742),
(896,465),
(896,745),
(896,746),
(896,743),
(896,742),
(897,687),
(897,688),
(897,689),
(897,690),
(897,691),
(897,694),
(897,693),
(897,695),
(897,692),
(897,686),
(898,686),
(898,687),
(898,688),
(898,689),
(898,690),
(898,691),
(898,692),
(898,695),
(898,693),
(898,694),
(899,666),
(899,748),
(899,667),
(899,668),
(899,747),
(899,669),
(899,650),
(899,670),
(899,717),
(899,671),
(899,672),
(900,666),
(900,748),
(900,667),
(900,668),
(900,747),
(900,669),
(900,650),
(900,670),
(900,717),
(900,671),
(900,672),
(901,686),
(901,687),
(901,688),
(901,690),
(901,689),
(901,691),
(901,692),
(901,695),
(901,693),
(901,694),
(902,696),
(902,697),
(902,698),
(902,699),
(902,700),
(903,666),
(903,748),
(903,667),
(903,668),
(903,747),
(903,669);
INSERT INTO `course_registration_items` (`registration_id`,`course_offering_id`) VALUES
(903,650),
(903,670),
(903,717),
(903,671),
(903,672),
(904,441),
(904,442),
(904,443),
(904,446),
(904,444),
(904,445),
(904,573),
(905,441),
(905,442),
(905,443),
(905,446),
(905,444),
(905,445),
(905,573),
(906,506),
(906,620),
(906,505),
(906,504),
(906,503),
(906,502),
(907,38),
(907,39),
(907,40),
(907,41),
(907,42),
(907,43),
(907,44),
(907,45),
(908,129),
(908,126),
(908,125),
(908,128),
(908,124),
(908,123),
(909,695),
(909,691),
(909,686),
(909,687),
(909,688),
(909,689),
(909,692),
(909,693),
(909,694),
(909,690),
(910,459),
(910,458),
(910,685),
(910,460),
(910,683),
(910,684),
(911,685),
(911,684),
(911,683),
(911,458),
(911,459),
(911,460),
(912,696),
(912,697),
(912,698),
(912,699),
(912,700),
(913,686),
(913,687),
(913,688),
(913,689),
(913,690),
(913,691),
(913,692),
(913,695),
(913,693),
(913,694),
(914,613),
(914,614),
(914,615),
(914,611),
(914,618),
(914,616),
(914,716),
(914,451),
(914,617),
(914,701),
(915,686),
(915,687),
(915,688),
(915,689),
(915,691),
(915,692),
(915,695),
(915,693),
(915,694),
(915,690),
(916,685),
(916,684),
(916,683),
(916,458),
(916,459),
(916,460),
(917,685),
(917,684),
(917,683),
(917,458),
(917,459),
(917,460),
(918,756),
(918,609),
(918,608),
(918,607),
(918,606),
(918,605),
(918,604),
(918,610),
(919,686),
(919,687),
(919,688),
(919,689),
(919,690),
(919,691),
(919,692),
(919,695),
(919,693),
(919,694),
(920,686),
(920,687),
(920,688),
(920,689),
(920,690),
(920,691),
(920,692),
(920,695),
(920,693),
(920,694),
(921,423),
(921,429),
(921,427),
(921,424),
(921,425),
(921,426),
(921,428),
(921,430),
(921,431),
(921,432),
(921,757),
(921,758),
(921,759),
(922,624),
(922,621),
(922,622),
(922,623),
(922,3),
(922,198),
(922,760),
(922,276),
(922,625),
(922,5),
(923,742),
(923,743),
(923,744),
(923,746),
(923,745),
(924,686),
(924,687),
(924,688),
(924,689),
(924,690),
(924,691),
(924,692),
(924,695),
(924,693),
(924,694),
(925,696),
(925,697),
(925,698),
(925,699),
(925,700),
(926,613),
(926,614),
(926,615),
(926,616),
(926,716),
(926,451),
(926,617),
(926,701),
(927,511),
(927,818),
(927,819),
(927,820),
(927,821),
(927,822),
(927,823),
(927,824),
(928,497),
(928,496),
(928,498),
(928,499),
(928,500),
(928,501),
(928,649),
(929,604),
(929,605),
(929,606),
(929,607),
(929,608),
(929,609),
(929,756),
(929,610),
(930,604),
(930,605),
(930,606),
(930,608),
(930,607),
(930,610),
(930,756),
(930,609),
(931,673),
(931,674),
(931,676),
(931,475),
(931,677),
(931,479),
(931,679),
(931,682),
(931,681),
(931,675),
(932,673),
(932,674),
(933,613),
(933,614),
(933,615),
(933,716),
(933,616),
(933,451),
(933,617),
(933,701),
(933,618),
(933,611),
(934,686),
(934,694),
(934,693),
(934,695),
(934,692),
(934,691),
(934,690),
(934,689),
(934,688),
(934,687);
INSERT INTO `course_registration_items` (`registration_id`,`course_offering_id`) VALUES
(935,745),
(935,746),
(935,744),
(935,743),
(935,742),
(936,613),
(936,614),
(936,615),
(936,716),
(936,616),
(936,451),
(936,617),
(936,701),
(936,618),
(937,685),
(937,684),
(937,683),
(937,458),
(937,459),
(937,460),
(938,666),
(938,748),
(938,667),
(938,668),
(938,747),
(938,669),
(938,650),
(938,670),
(938,717),
(938,671),
(938,672),
(939,233),
(939,762),
(939,763),
(939,764),
(939,765),
(939,179),
(939,766),
(939,767),
(940,685),
(940,684),
(940,683),
(940,458),
(940,459),
(940,460),
(941,685),
(941,684),
(941,683),
(941,458),
(941,459),
(941,460),
(942,613),
(942,615),
(942,614),
(942,716),
(942,616),
(942,451),
(942,617),
(942,701),
(942,618),
(942,611),
(943,604),
(943,605),
(943,606),
(943,607),
(943,608),
(943,609),
(943,756),
(943,610),
(944,682),
(944,681),
(944,679),
(944,677),
(944,676),
(944,680),
(944,674),
(944,673),
(944,675),
(945,604),
(945,605),
(945,606),
(945,607),
(945,608),
(945,609),
(945,756),
(945,610),
(946,673),
(946,674),
(946,675),
(946,676),
(946,677),
(946,679),
(946,681),
(946,682),
(946,680),
(946,678),
(947,1),
(947,583),
(947,585),
(947,586),
(947,592),
(947,590),
(947,587),
(947,593),
(948,673),
(948,674),
(948,675),
(948,676),
(948,475),
(948,677),
(948,679),
(948,680),
(948,682),
(948,681),
(948,678),
(949,604),
(949,605),
(949,606),
(949,607),
(949,608),
(949,609),
(949,756),
(949,610),
(950,613),
(950,615),
(950,616),
(950,617),
(950,618),
(950,716),
(950,451),
(950,701),
(950,614),
(951,769),
(951,770),
(951,771),
(951,767),
(951,766),
(951,179),
(951,765),
(951,764),
(951,763),
(951,762),
(952,675),
(952,677),
(952,676),
(952,678),
(952,475),
(952,479),
(952,679),
(952,681),
(952,682),
(952,673),
(952,674),
(952,680),
(953,521),
(953,525),
(953,522),
(953,526),
(953,523),
(953,524),
(953,527),
(954,528),
(954,530),
(954,531),
(954,532),
(954,533),
(954,534),
(954,529),
(955,614),
(955,613),
(955,615),
(955,616),
(955,451),
(955,617),
(955,701),
(955,611),
(956,673),
(956,674),
(956,675),
(956,676),
(956,475),
(956,677),
(956,682),
(956,680),
(956,679),
(956,678),
(957,696),
(957,697),
(957,698),
(957,700),
(957,699),
(958,686),
(958,687),
(958,688),
(958,689),
(958,690),
(958,692),
(958,691),
(958,695),
(958,693),
(958,694),
(959,696),
(959,697),
(959,698),
(959,699),
(959,700),
(960,686),
(960,687),
(960,688),
(960,689),
(960,690),
(960,691),
(960,692),
(960,695),
(960,693),
(960,694),
(961,200),
(961,201),
(961,202),
(961,203),
(961,204),
(961,754),
(961,206),
(961,755),
(961,208),
(961,209),
(961,210),
(961,648),
(961,647),
(961,646),
(961,645),
(961,643),
(961,642),
(961,641),
(961,640),
(961,639),
(962,674),
(962,675),
(962,676),
(962,475),
(962,677),
(962,479),
(962,679),
(962,682),
(963,686),
(963,687),
(963,688),
(963,689),
(963,690),
(963,691);
INSERT INTO `course_registration_items` (`registration_id`,`course_offering_id`) VALUES
(963,692),
(963,695),
(963,693),
(963,694),
(964,666),
(964,748),
(964,667),
(964,668),
(964,747),
(964,669),
(964,650),
(964,670),
(964,717),
(964,671),
(964,672),
(965,772),
(965,773),
(965,774),
(965,775),
(965,776),
(965,777),
(965,778),
(965,779),
(966,774),
(966,772),
(966,775),
(966,773),
(966,776),
(966,777),
(966,778),
(966,779),
(967,781),
(967,782),
(967,727),
(967,783),
(967,735),
(967,728),
(967,729),
(967,738),
(967,739),
(967,737),
(967,736),
(967,734),
(967,732),
(967,740),
(967,741),
(967,730),
(967,731),
(968,666),
(968,748),
(968,667),
(968,668),
(968,747),
(968,669),
(968,650),
(968,670),
(968,717),
(968,671),
(968,672),
(969,666),
(969,748),
(969,667),
(969,668),
(969,747),
(969,669),
(969,650),
(969,672),
(969,671),
(969,717),
(969,670),
(970,666),
(970,748),
(970,667),
(970,668),
(970,747),
(970,669),
(970,650),
(970,670),
(970,717),
(970,671),
(970,672),
(971,666),
(971,748),
(971,667),
(971,668),
(971,672),
(971,717),
(971,650),
(971,669),
(971,747),
(971,670),
(971,671),
(972,666),
(972,748),
(972,784),
(972,668),
(972,747),
(972,669),
(972,650),
(972,670),
(972,717),
(972,671),
(972,672),
(973,594),
(973,595),
(973,596),
(973,597),
(973,598),
(973,599),
(973,600),
(973,601),
(973,602),
(973,603),
(973,619),
(974,666),
(974,748),
(974,667),
(974,668),
(974,747),
(974,669),
(974,650),
(974,670),
(974,717),
(974,672),
(974,671),
(975,513),
(975,514),
(975,536),
(975,515),
(975,516),
(975,517),
(975,518),
(975,519),
(975,520),
(976,666),
(976,748),
(976,667),
(976,668),
(976,747),
(976,669),
(976,650),
(976,670),
(976,717),
(976,671),
(976,672),
(977,594),
(977,595),
(977,596),
(977,597),
(977,599),
(977,601),
(977,602),
(977,603),
(977,619),
(978,731),
(978,735),
(978,729),
(978,732),
(978,733),
(978,728),
(978,736),
(978,737),
(978,738),
(978,739),
(978,740),
(978,741),
(978,730),
(978,734),
(978,727),
(979,513),
(979,514),
(979,536),
(979,515),
(979,516),
(979,517),
(979,518),
(979,519),
(979,520),
(980,785),
(980,786),
(980,787),
(980,788),
(980,789),
(980,790),
(980,791),
(981,571),
(981,564),
(981,567),
(981,568),
(981,563),
(981,566),
(981,572),
(981,569),
(981,570),
(981,562),
(981,561),
(981,560),
(981,565),
(982,666),
(982,748),
(982,667),
(982,668),
(982,747),
(982,669),
(982,650),
(982,670),
(982,717),
(982,671),
(982,672),
(983,718),
(983,720),
(983,719),
(983,724),
(983,723),
(983,725),
(983,722),
(983,721),
(984,551),
(984,548),
(984,546),
(984,550),
(984,553),
(984,554),
(984,555),
(984,556),
(984,559),
(984,547),
(984,558),
(984,792),
(984,793),
(984,557),
(984,549),
(984,794),
(984,795),
(985,785),
(985,786),
(985,787),
(985,788),
(985,789),
(985,790),
(985,791),
(986,673),
(986,674),
(986,675),
(986,676),
(986,475),
(986,677),
(986,680),
(986,679),
(986,678);
INSERT INTO `course_registration_items` (`registration_id`,`course_offering_id`) VALUES
(986,682),
(987,696),
(987,697),
(987,698),
(987,699),
(987,700),
(988,604),
(988,605),
(988,606),
(988,607),
(988,608),
(988,487),
(988,609),
(988,756),
(988,610),
(989,681),
(989,682),
(989,680),
(989,679),
(989,678),
(989,677),
(989,676),
(989,675),
(989,674),
(989,673),
(990,666),
(990,784),
(990,667),
(990,747),
(990,650),
(990,670),
(990,717),
(990,672),
(990,753),
(990,668),
(990,669),
(990,748),
(990,671),
(991,673),
(991,674),
(991,675),
(991,676),
(991,677),
(991,479),
(991,682),
(991,681),
(991,680),
(991,679),
(992,796),
(992,797),
(992,798),
(992,799),
(992,800),
(992,801),
(992,802),
(992,803),
(992,804),
(992,805),
(993,673),
(993,677),
(993,475),
(993,674),
(993,675),
(993,676),
(993,479),
(993,679),
(993,682),
(993,680),
(994,528),
(994,529),
(994,531),
(994,532),
(994,533),
(994,534),
(994,530),
(995,673),
(995,674),
(995,675),
(995,676),
(995,475),
(995,677),
(995,679),
(995,680),
(995,682),
(996,666),
(996,748),
(996,667),
(996,668),
(996,747),
(996,669),
(996,650),
(996,670),
(996,717),
(996,671),
(996,672),
(997,799),
(997,798),
(997,800),
(997,801),
(997,802),
(997,803),
(997,804),
(997,805),
(997,797),
(997,796),
(998,796),
(998,797),
(998,799),
(998,798),
(998,800),
(998,801),
(998,802),
(998,803),
(998,804),
(998,805),
(999,796),
(999,797),
(999,799),
(999,798),
(999,800),
(999,801),
(999,802),
(999,803),
(999,804),
(999,805),
(1000,719),
(1000,721),
(1000,718),
(1000,720),
(1000,722),
(1000,723),
(1000,724),
(1000,725),
(1001,796),
(1001,797),
(1001,799),
(1001,798),
(1001,800),
(1001,801),
(1001,802),
(1001,803),
(1001,804),
(1001,805),
(1002,774),
(1002,772),
(1002,775),
(1002,773),
(1002,777),
(1002,778),
(1002,779),
(1003,774),
(1003,772),
(1003,775),
(1003,773),
(1003,777),
(1003,778),
(1003,779),
(1004,772),
(1004,775),
(1004,774),
(1004,773),
(1004,777),
(1004,778),
(1004,779),
(1005,774),
(1005,772),
(1005,775),
(1005,773),
(1005,777),
(1005,778),
(1005,779),
(1006,774),
(1006,772),
(1006,775),
(1006,773),
(1006,777),
(1006,778),
(1006,779),
(1007,718),
(1007,719),
(1007,720),
(1007,721),
(1007,722),
(1007,723),
(1007,724),
(1007,725),
(1008,799),
(1008,798),
(1008,800),
(1008,801),
(1008,802),
(1008,803),
(1008,804),
(1008,805),
(1008,796),
(1008,797),
(1009,718),
(1009,719),
(1009,720),
(1009,721),
(1009,722),
(1009,723),
(1009,724),
(1009,725),
(1010,718),
(1010,719),
(1010,720),
(1010,721),
(1010,722),
(1010,723),
(1010,724),
(1010,725),
(1011,774),
(1011,772),
(1011,775),
(1011,773),
(1011,777),
(1011,778),
(1011,779),
(1012,538),
(1012,539),
(1012,545),
(1012,540),
(1012,541),
(1012,542),
(1012,543),
(1012,544),
(1013,718),
(1013,719),
(1013,720),
(1013,721),
(1013,722),
(1013,723),
(1013,724),
(1013,725),
(1014,718),
(1014,719),
(1014,720),
(1014,722),
(1014,721),
(1014,723),
(1014,724),
(1014,725),
(1015,630),
(1015,633),
(1015,631),
(1015,632),
(1015,634),
(1015,636),
(1015,637);
INSERT INTO `course_registration_items` (`registration_id`,`course_offering_id`) VALUES
(1015,638),
(1016,630),
(1016,631),
(1016,632),
(1016,633),
(1016,634),
(1016,636),
(1016,637),
(1016,638),
(1017,83),
(1017,84),
(1017,85),
(1017,86),
(1017,87),
(1017,88),
(1017,89),
(1017,90),
(1018,108),
(1018,109),
(1018,110),
(1018,111),
(1018,112),
(1018,113),
(1018,114),
(1018,211),
(1019,571),
(1019,567),
(1019,564),
(1019,563),
(1019,572),
(1019,569),
(1019,561),
(1019,560),
(1019,562),
(1019,570),
(1019,565),
(1019,568),
(1019,566),
(1020,666),
(1020,748),
(1020,667),
(1020,668),
(1020,747),
(1020,669),
(1020,650),
(1020,670),
(1020,717),
(1020,671),
(1020,672),
(1021,666),
(1021,748),
(1021,667),
(1021,668),
(1021,747),
(1021,669),
(1021,650),
(1021,670),
(1021,717),
(1021,671),
(1021,672),
(1022,564),
(1022,571),
(1022,567),
(1022,568),
(1022,563),
(1022,566),
(1022,572),
(1022,569),
(1022,570),
(1022,562),
(1022,561),
(1022,560),
(1022,565),
(1023,666),
(1023,748),
(1023,668),
(1023,667),
(1023,747),
(1023,669),
(1023,650),
(1023,670),
(1023,717),
(1023,671),
(1023,672),
(1024,673),
(1024,674),
(1024,675),
(1024,676),
(1024,475),
(1024,677),
(1024,679),
(1024,680),
(1024,681),
(1024,682),
(1025,673),
(1025,674),
(1025,675),
(1025,676),
(1025,677),
(1025,479),
(1025,678),
(1025,682),
(1025,680),
(1025,681),
(1026,673),
(1026,674),
(1026,675),
(1026,676),
(1026,475),
(1026,677),
(1026,479),
(1026,679),
(1026,682),
(1027,673),
(1027,674),
(1027,676),
(1027,475),
(1027,479),
(1027,679),
(1027,680),
(1027,682),
(1027,677),
(1027,675),
(1028,673),
(1028,674),
(1028,675),
(1028,676),
(1028,475),
(1028,677),
(1028,479),
(1028,679),
(1028,682),
(1028,680),
(1029,785),
(1029,786),
(1029,787),
(1029,788),
(1029,789),
(1029,790),
(1029,791),
(1030,674),
(1030,676),
(1030,475),
(1030,677),
(1030,679),
(1030,682),
(1030,681),
(1030,680),
(1030,675),
(1031,682),
(1031,673),
(1031,674),
(1031,675),
(1031,676),
(1031,479),
(1031,677),
(1031,680),
(1031,681),
(1032,680),
(1032,673),
(1032,674),
(1032,675),
(1032,676),
(1032,475),
(1032,677),
(1032,679),
(1032,682),
(1032,678),
(1033,673),
(1033,674),
(1033,675),
(1033,676),
(1033,677),
(1033,479),
(1033,679),
(1033,682),
(1033,681),
(1034,466),
(1034,469),
(1034,468),
(1034,467),
(1034,464),
(1034,463),
(1034,462),
(1034,461),
(1035,673),
(1035,674),
(1035,675),
(1035,676),
(1035,475),
(1035,677),
(1035,680),
(1035,682),
(1035,679),
(1035,479),
(1036,528),
(1036,529),
(1036,531),
(1036,806),
(1036,532),
(1036,533),
(1036,534),
(1037,666),
(1037,748),
(1037,747),
(1037,667),
(1037,668),
(1037,669),
(1037,650),
(1037,670),
(1037,717),
(1037,671),
(1037,672),
(1038,604),
(1038,607),
(1038,606),
(1038,605),
(1038,608),
(1038,609),
(1038,756),
(1038,610),
(1039,680),
(1039,682),
(1039,673),
(1039,674),
(1039,675),
(1039,676),
(1039,677),
(1039,679),
(1039,681),
(1039,678),
(1040,727),
(1040,735),
(1040,728),
(1040,729),
(1040,730),
(1040,731),
(1040,732),
(1040,733),
(1040,734),
(1040,736),
(1040,737),
(1040,738),
(1040,739),
(1040,740),
(1040,741),
(1041,697),
(1041,696),
(1041,698),
(1041,699);
INSERT INTO `course_registration_items` (`registration_id`,`course_offering_id`) VALUES
(1041,700),
(1042,718),
(1042,719),
(1042,720),
(1042,721),
(1042,722),
(1042,724),
(1042,725),
(1042,723),
(1043,736),
(1043,737),
(1043,738),
(1043,739),
(1043,740),
(1043,741),
(1043,733),
(1043,734),
(1043,732),
(1043,731),
(1043,730),
(1043,729),
(1043,728),
(1043,735),
(1043,727),
(1044,696),
(1044,697),
(1044,698),
(1044,699),
(1044,700),
(1045,630),
(1045,631),
(1045,632),
(1045,633),
(1045,634),
(1045,636),
(1045,637),
(1045,638),
(1046,686),
(1046,687),
(1046,689),
(1046,688),
(1046,690),
(1046,691),
(1046,692),
(1046,695),
(1046,693),
(1046,694),
(1047,696),
(1047,697),
(1047,698),
(1047,699),
(1047,700),
(1048,696),
(1048,697),
(1048,698),
(1048,699),
(1048,700),
(1049,797),
(1049,796),
(1049,799),
(1049,798),
(1049,800),
(1049,801),
(1049,805),
(1049,803),
(1049,802),
(1049,804),
(1050,672),
(1050,671),
(1050,717),
(1050,670),
(1050,666),
(1050,748),
(1050,667),
(1050,668),
(1050,747),
(1050,669),
(1050,650),
(1051,785),
(1051,786),
(1051,787),
(1051,788),
(1051,789),
(1051,790),
(1051,791),
(1052,696),
(1052,697),
(1052,698),
(1052,699),
(1052,700),
(1053,673),
(1053,674),
(1053,675),
(1053,676),
(1053,475),
(1053,677),
(1053,479),
(1053,682),
(1053,679),
(1054,718),
(1054,719),
(1054,720),
(1054,721),
(1054,722),
(1054,723),
(1054,724),
(1054,725),
(1055,538),
(1055,539),
(1055,540),
(1055,542),
(1055,543),
(1055,544),
(1055,545),
(1056,718),
(1056,719),
(1056,720),
(1056,721),
(1056,722),
(1056,723),
(1056,724),
(1056,725),
(1057,630),
(1057,631),
(1057,632),
(1057,633),
(1057,634),
(1057,636),
(1057,637),
(1057,638),
(1057,635),
(1058,666),
(1058,748),
(1058,667),
(1058,668),
(1058,747),
(1058,669),
(1058,650),
(1058,670),
(1058,717),
(1058,671),
(1058,672),
(1059,666),
(1059,748),
(1059,667),
(1059,668),
(1059,747),
(1059,669),
(1059,650),
(1059,670),
(1059,717),
(1059,671),
(1059,672),
(1060,666),
(1060,748),
(1060,667),
(1060,668),
(1060,747),
(1060,669),
(1060,650),
(1060,670),
(1060,717),
(1060,671),
(1060,672),
(1061,666),
(1061,748),
(1061,667),
(1061,668),
(1061,747),
(1061,669),
(1061,650),
(1061,670),
(1061,717),
(1061,671),
(1061,672),
(1062,718),
(1062,719),
(1062,720),
(1062,721),
(1062,722),
(1062,723),
(1062,724),
(1062,725),
(1063,630),
(1063,631),
(1063,632),
(1063,633),
(1063,634),
(1063,636),
(1063,637),
(1063,638),
(1063,635),
(1064,796),
(1064,797),
(1064,799),
(1064,798),
(1064,800),
(1064,801),
(1064,802),
(1064,803),
(1064,804),
(1064,805),
(1065,785),
(1065,786),
(1065,787),
(1065,788),
(1065,790),
(1065,791),
(1065,789),
(1066,718),
(1066,719),
(1066,720),
(1066,721),
(1066,722),
(1066,723),
(1066,724),
(1066,725),
(1067,630),
(1067,631),
(1067,632),
(1067,633),
(1067,634),
(1067,636),
(1067,637),
(1067,638),
(1068,630),
(1068,631),
(1068,632),
(1068,633),
(1068,634),
(1068,636),
(1068,637),
(1068,638),
(1069,29),
(1069,30),
(1069,32),
(1069,34),
(1070,511),
(1070,818),
(1070,819),
(1070,820),
(1070,821),
(1070,822),
(1070,823),
(1070,824),
(1071,511),
(1071,818),
(1071,820),
(1071,821),
(1071,822);
INSERT INTO `course_registration_items` (`registration_id`,`course_offering_id`) VALUES
(1071,823),
(1071,824),
(1072,506),
(1072,620),
(1072,505),
(1072,504),
(1072,503),
(1072,502),
(1073,685),
(1073,684),
(1073,683),
(1073,458),
(1073,459),
(1073,460),
(1074,810),
(1074,811),
(1074,812),
(1074,103),
(1074,104),
(1074,105),
(1075,685),
(1075,684),
(1075,683),
(1075,458),
(1075,459),
(1075,460),
(1076,511),
(1076,818),
(1076,819),
(1076,820),
(1076,821),
(1076,822),
(1076,823),
(1076,824),
(1077,511),
(1077,818),
(1077,819),
(1077,820),
(1077,821),
(1077,822),
(1077,823),
(1077,824),
(1078,685),
(1078,684),
(1078,683),
(1078,458),
(1078,459),
(1078,460),
(1079,685),
(1079,684),
(1079,683),
(1079,458),
(1079,459),
(1079,460),
(1080,813),
(1080,814),
(1080,815),
(1080,816),
(1080,817),
(1081,685),
(1081,684),
(1081,683),
(1081,458),
(1081,459),
(1082,698),
(1082,697),
(1082,696),
(1082,699),
(1082,700),
(1083,511),
(1083,823),
(1083,824),
(1083,822),
(1083,820),
(1083,821),
(1083,819),
(1083,818),
(1084,502),
(1084,503),
(1084,504),
(1084,505),
(1084,620),
(1084,506),
(1085,502),
(1085,503),
(1085,504),
(1085,505),
(1085,620),
(1085,506),
(1086,502),
(1086,503),
(1086,504),
(1086,505),
(1086,620),
(1086,506),
(1087,511),
(1087,818),
(1087,819),
(1087,820),
(1087,821),
(1087,822),
(1087,823),
(1087,824),
(1088,511),
(1088,818),
(1088,819),
(1088,820),
(1088,821),
(1088,822),
(1088,823),
(1088,824),
(1089,820),
(1089,818),
(1089,819),
(1089,821),
(1089,822),
(1089,823),
(1089,824),
(1089,511),
(1090,820),
(1090,823),
(1090,818),
(1090,821),
(1090,822),
(1090,511),
(1090,819),
(1090,824),
(1091,824),
(1091,823),
(1091,822),
(1091,821),
(1091,820),
(1091,819),
(1091,818),
(1091,511),
(1092,511),
(1092,818),
(1092,819),
(1092,820),
(1092,821),
(1092,822),
(1092,823),
(1092,824),
(1093,511),
(1093,818),
(1093,819),
(1093,820),
(1093,821),
(1093,822),
(1093,823),
(1093,824),
(1094,342),
(1094,825),
(1094,826),
(1094,827),
(1094,828),
(1094,829),
(1094,830),
(1094,434),
(1095,511),
(1095,820),
(1095,821),
(1095,822),
(1095,824),
(1095,818),
(1095,819),
(1095,823),
(1096,824),
(1096,823),
(1096,822),
(1096,821),
(1096,820),
(1096,819),
(1096,818),
(1096,511),
(1097,511),
(1097,818),
(1097,820),
(1097,824),
(1097,823),
(1097,822),
(1097,821),
(1097,819),
(1098,511),
(1098,818),
(1098,819),
(1098,820),
(1098,821),
(1098,822),
(1098,823),
(1098,824),
(1099,511),
(1099,819),
(1099,818),
(1099,824),
(1099,823),
(1099,821),
(1099,820),
(1099,822),
(1100,511),
(1100,818),
(1100,819),
(1100,820),
(1100,821),
(1100,822),
(1100,823),
(1100,824),
(1101,511),
(1101,824),
(1101,823),
(1101,822),
(1101,821),
(1101,820),
(1101,819),
(1101,818),
(1102,511),
(1102,818),
(1102,820),
(1102,821),
(1102,822),
(1102,823),
(1102,824),
(1102,819),
(1103,511),
(1103,818),
(1103,824),
(1103,823),
(1103,822),
(1103,821),
(1103,820),
(1103,819),
(1104,819),
(1104,818),
(1104,822),
(1104,823),
(1104,824),
(1104,511),
(1104,821),
(1104,820),
(1105,502),
(1105,503),
(1105,504),
(1105,505),
(1105,620),
(1105,506),
(1106,502),
(1106,503),
(1106,504),
(1106,505),
(1106,506);
INSERT INTO `course_registration_items` (`registration_id`,`course_offering_id`) VALUES
(1106,620),
(1107,685),
(1107,684),
(1107,683),
(1107,458),
(1107,459),
(1107,460),
(1108,511),
(1108,818),
(1108,819),
(1108,820),
(1108,821),
(1108,822),
(1108,823),
(1108,824),
(1109,502),
(1109,503),
(1109,504),
(1109,505),
(1109,620),
(1109,506),
(1110,502),
(1110,503),
(1110,504),
(1110,505),
(1110,620),
(1110,506),
(1111,503),
(1111,502),
(1111,504),
(1111,505),
(1111,620),
(1111,506),
(1112,685),
(1112,684),
(1112,683),
(1112,458),
(1112,459),
(1112,460),
(1113,824),
(1113,823),
(1113,822),
(1113,821),
(1113,820),
(1113,819),
(1113,818),
(1113,511),
(1114,511),
(1114,819),
(1114,820),
(1114,821),
(1114,822),
(1114,823),
(1114,824),
(1114,818),
(1115,511),
(1115,818),
(1115,819),
(1115,820),
(1115,821),
(1115,822),
(1115,823),
(1115,824),
(1116,685),
(1116,684),
(1116,683),
(1116,458),
(1116,459),
(1116,460),
(1117,685),
(1117,684),
(1117,458),
(1117,683),
(1117,459),
(1117,460);

-- results: 9842 records
INSERT INTO `results` (`id`,`student_id`,`course_offering_id`,`continuous_assessment`,`exam_score`,`total_score`,`letter_grade`,`grade_point`,`status`,`published_at`,`updated_by`,`updated_at`) VALUES
(1,166,832,12,70,82,'A',5,'published','2020-01-01',1,'2020-01-01'),
(2,166,833,13,54,67,'B',4,'published','2020-01-01',1,'2020-01-01'),
(3,166,834,23,45,68,'B',4,'published','2020-01-01',1,'2020-01-01'),
(4,166,835,21,56,77,'A',5,'published','2020-01-01',1,'2020-01-01'),
(5,166,836,22,63,85,'A',5,'published','2020-01-01',1,'2020-01-01'),
(6,166,837,24,12,36,'F',0,'published','2020-01-01',1,'2020-01-01'),
(7,166,838,0,0,0,'F',0,'published','2020-01-01',1,'2020-01-01'),
(8,166,839,0,0,0,'F',0,'published','2020-01-01',1,'2020-01-01'),
(9,166,840,0,0,0,'F',0,'published','2020-01-01',1,'2020-01-01'),
(10,166,841,0,0,0,'F',0,'published','2020-01-01',1,'2020-01-01'),
(11,166,842,0,0,0,'F',0,'published','2020-01-01',1,'2020-01-01'),
(12,166,843,0,0,0,'F',0,'published','2020-01-01',1,'2020-01-01'),
(13,166,844,0,0,0,'F',0,'published','2020-01-01',1,'2020-01-01'),
(14,166,845,0,0,0,'F',0,'published','2020-01-01',1,'2020-01-01'),
(15,166,846,0,0,0,'F',0,'published','2020-01-01',1,'2020-01-01'),
(16,166,847,0,0,0,'F',0,'published','2020-01-01',1,'2020-01-01'),
(17,166,848,0,0,0,'F',0,'published','2020-01-01',1,'2020-01-01'),
(18,166,1,0,0,0,'F',0,'published','2025-04-18',1,'2025-04-18'),
(19,38,2,0,0,0,'F',0,'published','2025-04-18',1,'2025-04-18'),
(20,166,3,0,0,0,'F',0,'published','2025-04-18',1,'2025-04-18'),
(21,166,4,0,0,0,'F',0,'published','2025-04-18',1,'2025-04-18'),
(22,166,5,0,0,0,'F',0,'published','2025-04-18',1,'2025-04-18'),
(23,166,6,0,0,0,'F',0,'published','2025-04-18',1,'2025-04-18'),
(24,166,7,0,0,0,'F',0,'published','2025-04-18',1,'2025-04-18'),
(25,166,8,0,0,0,'F',0,'published','2025-04-18',1,'2025-04-18'),
(26,166,9,0,0,0,'F',0,'published','2025-04-18',1,'2025-04-18'),
(27,166,10,0,0,0,'F',0,'published','2025-04-18',1,'2025-04-18'),
(28,166,11,0,0,0,'F',0,'published','2025-04-18',1,'2025-04-18'),
(29,166,12,0,0,0,'F',0,'published','2025-04-18',1,'2025-04-18'),
(30,87,2,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(31,87,13,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(32,87,14,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(33,87,15,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(34,87,16,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(35,87,17,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(36,87,18,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(37,87,19,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(38,87,20,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(39,87,21,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(40,87,22,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(41,87,23,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(42,87,24,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(43,87,25,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(44,87,26,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(45,87,27,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(46,87,28,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(47,51,2,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(48,51,13,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(49,8,2,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(50,8,13,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(51,8,14,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(52,8,15,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(53,8,16,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(54,8,17,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(55,8,18,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(56,8,19,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(57,51,14,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(58,51,15,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(59,51,16,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(60,51,17,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(61,51,18,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(62,51,19,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(63,8,20,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(64,8,21,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(65,8,22,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(66,8,23,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(67,8,24,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(68,8,25,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(69,8,26,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(70,8,27,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(71,8,28,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(72,23,2,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(73,23,13,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(74,23,14,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(75,23,15,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(76,23,16,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(77,23,17,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(78,23,18,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(79,23,19,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(80,23,20,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(81,23,21,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(82,23,22,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(83,23,23,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(84,23,24,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(85,23,25,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(86,23,26,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(87,23,27,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(88,23,28,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(89,88,2,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(90,88,13,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(91,88,14,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(92,88,15,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(93,88,16,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(94,88,17,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(95,88,18,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(96,88,19,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(97,12,29,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(98,12,30,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(99,12,31,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(100,12,32,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(101,12,33,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(102,12,34,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(103,12,35,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(104,12,36,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(105,12,37,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(106,83,13,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(107,83,2,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(108,83,14,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(109,83,15,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(110,83,16,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(111,83,17,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(112,83,18,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(113,83,19,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(114,51,20,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(115,51,21,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(116,83,20,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(117,83,21,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(118,51,22,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(119,83,22,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(120,83,23,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(121,51,23,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(122,83,24,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(123,83,25,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(124,51,24,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(125,83,26,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(126,83,27,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(127,83,28,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(128,51,25,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(129,51,26,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(130,51,27,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(131,51,28,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(132,22,2,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(133,22,13,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(134,22,14,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(135,22,15,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(136,22,16,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(137,22,17,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(138,22,18,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(139,22,19,0,0,0,'F',0,'published','2025-04-19',1,'2025-04-19'),
(140,79,13,0,0,0,'F',0,'published','2025-04-20',1,'2025-04-20'),
(141,79,2,0,0,0,'F',0,'published','2025-04-20',1,'2025-04-20'),
(142,79,14,0,0,0,'F',0,'published','2025-04-20',1,'2025-04-20'),
(143,79,15,0,0,0,'F',0,'published','2025-04-20',1,'2025-04-20'),
(144,79,16,0,0,0,'F',0,'published','2025-04-20',1,'2025-04-20'),
(145,79,17,0,0,0,'F',0,'published','2025-04-20',1,'2025-04-20'),
(146,79,18,0,0,0,'F',0,'published','2025-04-20',1,'2025-04-20'),
(147,79,19,0,0,0,'F',0,'published','2025-04-20',1,'2025-04-20'),
(148,79,20,0,0,0,'F',0,'published','2025-04-20',1,'2025-04-20'),
(149,79,21,0,0,0,'F',0,'published','2025-04-20',1,'2025-04-20'),
(150,79,22,0,0,0,'F',0,'published','2025-04-20',1,'2025-04-20'),
(151,79,23,0,0,0,'F',0,'published','2025-04-20',1,'2025-04-20'),
(152,79,24,0,0,0,'F',0,'published','2025-04-20',1,'2025-04-20'),
(153,79,25,0,0,0,'F',0,'published','2025-04-20',1,'2025-04-20'),
(154,79,26,0,0,0,'F',0,'published','2025-04-20',1,'2025-04-20'),
(155,79,27,0,0,0,'F',0,'published','2025-04-20',1,'2025-04-20'),
(156,79,28,0,0,0,'F',0,'published','2025-04-20',1,'2025-04-20'),
(157,38,13,0,0,0,'F',0,'published','2025-04-20',1,'2025-04-20'),
(158,38,14,0,0,0,'F',0,'published','2025-04-20',1,'2025-04-20'),
(159,38,15,0,0,0,'F',0,'published','2025-04-20',1,'2025-04-20'),
(160,38,16,0,0,0,'F',0,'published','2025-04-20',1,'2025-04-20'),
(161,38,17,0,0,0,'F',0,'published','2025-04-20',1,'2025-04-20'),
(162,38,19,0,0,0,'F',0,'published','2025-04-20',1,'2025-04-20'),
(163,38,18,0,0,0,'F',0,'published','2025-04-20',1,'2025-04-20'),
(164,38,20,0,0,0,'F',0,'published','2025-04-20',1,'2025-04-20'),
(165,38,21,0,0,0,'F',0,'published','2025-04-20',1,'2025-04-20'),
(166,38,22,0,0,0,'F',0,'published','2025-04-20',1,'2025-04-20'),
(167,38,23,0,0,0,'F',0,'published','2025-04-20',1,'2025-04-20'),
(168,38,24,0,0,0,'F',0,'published','2025-04-20',1,'2025-04-20'),
(169,38,25,0,0,0,'F',0,'published','2025-04-20',1,'2025-04-20'),
(170,38,26,0,0,0,'F',0,'published','2025-04-20',1,'2025-04-20'),
(171,38,27,0,0,0,'F',0,'published','2025-04-20',1,'2025-04-20'),
(172,38,28,0,0,0,'F',0,'published','2025-04-20',1,'2025-04-20'),
(173,97,38,0,0,0,'F',0,'published','2025-04-21',1,'2025-04-21'),
(174,97,39,20,44,64,'B',4,'published','2025-04-21',1,'2025-04-21'),
(175,97,40,18,42,60,'B',4,'published','2025-04-21',1,'2025-04-21'),
(176,97,41,0,0,0,'F',0,'published','2025-04-21',1,'2025-04-21'),
(177,97,42,10,47,57,'C',3,'published','2025-04-21',1,'2025-04-21'),
(178,97,43,10,47,57,'C',3,'published','2025-04-21',1,'2025-04-21'),
(179,97,44,20,40,60,'B',4,'published','2025-04-21',1,'2025-04-21'),
(180,97,45,18,36,54,'C',3,'published','2025-04-21',1,'2025-04-21'),
(181,4,46,33,11,44,'E',1,'published','2025-04-21',1,'2025-04-21'),
(182,4,47,29,24,53,'C',3,'published','2025-04-21',1,'2025-04-21'),
(183,4,48,27,28,55,'C',3,'published','2025-04-21',1,'2025-04-21'),
(184,4,49,28,25,53,'C',3,'published','2025-04-21',1,'2025-04-21'),
(185,4,50,28,24,52,'C',3,'published','2025-04-21',1,'2025-04-21'),
(186,4,51,23,35,58,'C',3,'published','2025-04-21',1,'2025-04-21'),
(187,4,52,0,0,0,'F',0,'published','2025-04-21',1,'2025-04-21'),
(188,4,53,0,0,0,'F',0,'published','2025-04-21',1,'2025-04-21'),
(189,155,1,0,0,0,'F',0,'published','2025-04-22',1,'2025-04-22'),
(190,155,3,26,35,61,'B',4,'published','2025-04-22',1,'2025-04-22'),
(191,155,4,20,46,66,'B',4,'published','2025-04-22',1,'2025-04-22'),
(192,155,5,20,45,65,'B',4,'published','2025-04-22',1,'2025-04-22'),
(193,155,12,20,30,50,'C',3,'published','2025-04-22',1,'2025-04-22'),
(194,155,11,28,48,76,'A',5,'published','2025-04-22',1,'2025-04-22'),
(195,155,10,21,53,74,'A',5,'published','2025-04-22',1,'2025-04-22'),
(196,155,9,20,51,71,'A',5,'published','2025-04-22',1,'2025-04-22'),
(197,155,8,20,48,68,'B',4,'published','2025-04-22',1,'2025-04-22'),
(198,155,7,26,42,68,'B',4,'published','2025-04-22',1,'2025-04-22'),
(199,155,6,27,36,63,'B',4,'published','2025-04-22',1,'2025-04-22'),
(200,155,54,0,0,0,'F',0,'published','2025-04-22',1,'2025-04-22'),
(201,155,55,25,48,73,'A',5,'published','2025-04-22',1,'2025-04-22'),
(202,155,56,20,47,67,'B',4,'published','2025-04-22',1,'2025-04-22'),
(203,155,57,25,35,60,'B',4,'published','2025-04-22',1,'2025-04-22'),
(204,155,58,26,66,92,'A',5,'published','2025-04-22',1,'2025-04-22'),
(205,155,59,20,56,76,'A',5,'published','2025-04-22',1,'2025-04-22'),
(206,155,60,20,50,70,'A',5,'published','2025-04-22',1,'2025-04-22'),
(207,155,61,17,41,58,'C',3,'published','2025-04-22',1,'2025-04-22'),
(208,155,62,0,0,0,'F',0,'published','2025-04-22',1,'2025-04-22'),
(209,142,63,17,40,57,'C',3,'published','2025-04-22',1,'2025-04-22'),
(210,142,64,26,0,26,'F',0,'published','2025-04-22',1,'2025-04-22'),
(211,142,65,27,28,55,'C',3,'published','2025-04-22',1,'2025-04-22'),
(212,142,66,12,39,51,'C',3,'published','2025-04-22',1,'2025-04-22'),
(213,142,67,0,0,0,'F',0,'published','2025-04-22',1,'2025-04-22'),
(214,142,68,0,0,0,'F',0,'published','2025-04-22',1,'2025-04-22'),
(215,142,69,26,34,60,'B',4,'published','2025-04-22',1,'2025-04-22'),
(216,142,70,17,40,57,'C',3,'published','2025-04-22',1,'2025-04-22'),
(217,142,71,30,20,50,'C',3,'published','2025-04-22',1,'2025-04-22'),
(218,142,72,0,0,0,'F',0,'published','2025-04-22',1,'2025-04-22'),
(219,142,73,20,50,70,'A',5,'published','2025-04-22',1,'2025-04-22'),
(220,142,74,26,32,58,'C',3,'published','2025-04-22',1,'2025-04-22'),
(221,142,75,23,17,40,'E',1,'published','2025-04-22',1,'2025-04-22'),
(222,142,76,0,0,0,'F',0,'published','2025-04-22',1,'2025-04-22'),
(223,142,77,0,0,0,'F',0,'published','2025-04-22',1,'2025-04-22'),
(224,142,78,22,45,67,'B',4,'published','2025-04-22',1,'2025-04-22'),
(225,142,79,0,0,0,'F',0,'published','2025-04-22',1,'2025-04-22'),
(226,142,80,20,40,60,'B',4,'published','2025-04-22',1,'2025-04-22'),
(227,142,81,20,31,51,'C',3,'published','2025-04-22',1,'2025-04-22'),
(228,142,82,20,40,60,'B',4,'published','2025-04-22',1,'2025-04-22'),
(229,145,83,0,0,0,'F',0,'published','2025-04-22',1,'2025-04-22'),
(230,145,84,25,45,70,'A',5,'published','2025-04-22',1,'2025-04-22'),
(231,145,85,27,33,60,'B',4,'published','2025-04-22',1,'2025-04-22'),
(232,145,86,20,40,60,'B',4,'published','2025-04-22',1,'2025-04-22'),
(233,145,87,28,30,58,'C',3,'published','2025-04-22',1,'2025-04-22'),
(234,145,88,19,46,65,'B',4,'published','2025-04-22',1,'2025-04-22'),
(235,145,89,0,0,0,'F',0,'published','2025-04-22',1,'2025-04-22'),
(236,145,90,15,40,55,'C',3,'published','2025-04-22',1,'2025-04-22'),
(237,145,91,0,0,0,'F',0,'published','2025-04-22',1,'2025-04-22'),
(238,72,92,25,45,70,'A',5,'published','2025-04-22',1,'2025-04-22'),
(239,72,93,20,60,80,'A',5,'published','2025-04-22',1,'2025-04-22'),
(240,72,94,20,50,70,'A',5,'published','2025-04-22',1,'2025-04-22'),
(241,72,95,18,45,63,'B',4,'published','2025-04-22',1,'2025-04-22'),
(242,72,96,30,26,56,'C',3,'published','2025-04-22',1,'2025-04-22'),
(243,72,97,0,0,0,'F',0,'published','2025-04-22',1,'2025-04-22'),
(244,72,98,0,0,0,'F',0,'published','2025-04-22',1,'2025-04-22'),
(245,72,99,15,55,70,'A',5,'published','2025-04-22',1,'2025-04-22'),
(246,72,100,0,0,0,'F',0,'published','2025-04-22',1,'2025-04-22'),
(247,72,101,0,0,0,'F',0,'published','2025-04-22',1,'2025-04-22'),
(248,72,102,0,0,0,'F',0,'published','2025-04-22',1,'2025-04-22'),
(249,72,103,18,36,54,'C',3,'published','2025-04-22',1,'2025-04-22'),
(250,72,104,29,49,78,'A',5,'published','2025-04-22',1,'2025-04-22');
INSERT INTO `results` (`id`,`student_id`,`course_offering_id`,`continuous_assessment`,`exam_score`,`total_score`,`letter_grade`,`grade_point`,`status`,`published_at`,`updated_by`,`updated_at`) VALUES
(251,72,105,0,0,0,'F',0,'published','2025-04-22',1,'2025-04-22'),
(252,156,63,18,40,58,'C',3,'published','2025-04-23',1,'2025-04-23'),
(253,156,64,26,47,73,'A',5,'published','2025-04-23',1,'2025-04-23'),
(254,156,65,26,39,65,'B',4,'published','2025-04-23',1,'2025-04-23'),
(255,156,66,14,54,68,'B',4,'published','2025-04-23',1,'2025-04-23'),
(256,156,67,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(257,156,68,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(258,156,69,26,42,68,'B',4,'published','2025-04-23',1,'2025-04-23'),
(259,156,70,23,58,81,'A',5,'published','2025-04-23',1,'2025-04-23'),
(260,156,71,25,25,50,'C',3,'published','2025-04-23',1,'2025-04-23'),
(261,156,72,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(262,156,73,10,40,50,'C',3,'published','2025-04-23',1,'2025-04-23'),
(263,149,91,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(264,149,90,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(265,149,89,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(266,149,88,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(267,149,87,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(268,149,84,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(269,149,86,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(270,149,85,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(271,149,83,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(272,146,71,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(273,146,70,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(274,146,72,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(275,146,73,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(276,146,64,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(277,146,66,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(278,146,68,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(279,167,54,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(280,167,55,22,63,85,'A',5,'published','2025-04-23',1,'2025-04-23'),
(281,167,56,21,58,79,'A',5,'published','2025-04-23',1,'2025-04-23'),
(282,167,57,25,30,55,'C',3,'published','2025-04-23',1,'2025-04-23'),
(283,167,58,24,62,86,'A',5,'published','2025-04-23',1,'2025-04-23'),
(284,167,59,20,36,56,'C',3,'published','2025-04-23',1,'2025-04-23'),
(285,167,60,20,37,57,'C',3,'published','2025-04-23',1,'2025-04-23'),
(286,167,61,15,41,56,'C',3,'published','2025-04-23',1,'2025-04-23'),
(287,167,62,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(288,167,106,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(289,146,63,21,31,52,'C',3,'published','2025-04-23',1,'2025-04-23'),
(290,146,65,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(291,146,67,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(292,146,69,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(293,167,1,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(294,167,3,25,34,59,'C',3,'published','2025-04-23',1,'2025-04-23'),
(295,167,4,20,35,55,'C',3,'published','2025-04-23',1,'2025-04-23'),
(296,167,5,26,47,73,'A',5,'published','2025-04-23',1,'2025-04-23'),
(297,167,6,28,41,69,'B',4,'published','2025-04-23',1,'2025-04-23'),
(298,167,7,28,29,57,'C',3,'published','2025-04-23',1,'2025-04-23'),
(299,167,8,19,66,85,'A',5,'published','2025-04-23',1,'2025-04-23'),
(300,167,9,20,34,54,'C',3,'published','2025-04-23',1,'2025-04-23'),
(301,167,10,23,60,83,'A',5,'published','2025-04-23',1,'2025-04-23'),
(302,167,11,26,41,67,'B',4,'published','2025-04-23',1,'2025-04-23'),
(303,167,12,18,56,74,'A',5,'published','2025-04-23',1,'2025-04-23'),
(304,137,1,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(305,146,82,22,55,77,'A',5,'published','2025-04-23',1,'2025-04-23'),
(306,146,81,24,33,57,'C',3,'published','2025-04-23',1,'2025-04-23'),
(307,146,80,20,60,80,'A',5,'published','2025-04-23',1,'2025-04-23'),
(308,146,79,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(309,146,78,23,42,65,'B',4,'published','2025-04-23',1,'2025-04-23'),
(310,146,76,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(311,146,77,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(312,137,3,25,32,57,'C',3,'published','2025-04-23',1,'2025-04-23'),
(313,144,64,26,25,51,'C',3,'published','2025-04-23',1,'2025-04-23'),
(314,137,4,20,40,60,'B',4,'published','2025-04-23',1,'2025-04-23'),
(315,137,5,20,24,44,'E',1,'published','2025-04-23',1,'2025-04-23'),
(316,144,65,26,30,56,'C',3,'published','2025-04-23',1,'2025-04-23'),
(317,137,6,28,38,66,'B',4,'published','2025-04-23',1,'2025-04-23'),
(318,144,66,14,34,48,'D',2,'published','2025-04-23',1,'2025-04-23'),
(319,137,7,28,26,54,'C',3,'published','2025-04-23',1,'2025-04-23'),
(320,144,67,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(321,146,75,19,8,27,'F',0,'published','2025-04-23',1,'2025-04-23'),
(322,146,74,24,33,57,'C',3,'published','2025-04-23',1,'2025-04-23'),
(323,137,8,20,61,81,'A',5,'published','2025-04-23',1,'2025-04-23'),
(324,144,68,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(325,146,107,14,10,24,'F',0,'published','2025-04-23',1,'2025-04-23'),
(326,137,9,20,32,52,'C',3,'published','2025-04-23',1,'2025-04-23'),
(327,144,69,27,33,60,'B',4,'published','2025-04-23',1,'2025-04-23'),
(328,144,70,24,58,82,'A',5,'published','2025-04-23',1,'2025-04-23'),
(329,137,10,23,42,65,'B',4,'published','2025-04-23',1,'2025-04-23'),
(330,137,11,26,36,62,'B',4,'published','2025-04-23',1,'2025-04-23'),
(331,144,71,30,30,60,'B',4,'published','2025-04-23',1,'2025-04-23'),
(332,137,12,20,46,66,'B',4,'published','2025-04-23',1,'2025-04-23'),
(333,144,72,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(334,144,73,30,25,55,'C',3,'published','2025-04-23',1,'2025-04-23'),
(335,137,54,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(336,137,55,25,51,76,'A',5,'published','2025-04-23',1,'2025-04-23'),
(337,137,56,20,43,63,'B',4,'published','2025-04-23',1,'2025-04-23'),
(338,137,57,25,30,55,'C',3,'published','2025-04-23',1,'2025-04-23'),
(339,137,58,24,45,69,'B',4,'published','2025-04-23',1,'2025-04-23'),
(340,137,59,20,37,57,'C',3,'published','2025-04-23',1,'2025-04-23'),
(341,137,60,20,42,62,'B',4,'published','2025-04-23',1,'2025-04-23'),
(342,137,61,18,39,57,'C',3,'published','2025-04-23',1,'2025-04-23'),
(343,137,62,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(344,137,106,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(345,124,1,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(346,149,108,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(347,149,109,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(348,149,110,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(349,149,111,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(350,149,112,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(351,149,113,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(352,124,12,20,30,50,'C',3,'published','2025-04-23',1,'2025-04-23'),
(353,149,114,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(354,124,11,28,30,58,'C',3,'published','2025-04-23',1,'2025-04-23'),
(355,124,10,23,38,61,'B',4,'published','2025-04-23',1,'2025-04-23'),
(356,124,9,20,32,52,'C',3,'published','2025-04-23',1,'2025-04-23'),
(357,124,8,18,61,79,'A',5,'published','2025-04-23',1,'2025-04-23'),
(358,124,7,28,44,72,'A',5,'published','2025-04-23',1,'2025-04-23'),
(359,124,6,27,33,60,'B',4,'published','2025-04-23',1,'2025-04-23'),
(360,124,3,28,22,50,'C',3,'published','2025-04-23',1,'2025-04-23'),
(361,124,4,20,38,58,'C',3,'published','2025-04-23',1,'2025-04-23'),
(362,124,5,20,45,65,'B',4,'published','2025-04-23',1,'2025-04-23'),
(363,124,54,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(364,124,55,27,33,60,'B',4,'published','2025-04-23',1,'2025-04-23'),
(365,130,7,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(366,130,5,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(367,130,3,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(368,130,4,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(369,130,1,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(370,130,6,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(371,124,56,18,32,50,'C',3,'published','2025-04-23',1,'2025-04-23'),
(372,130,11,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(373,130,12,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(374,124,57,25,33,58,'C',3,'published','2025-04-23',1,'2025-04-23'),
(375,144,82,21,30,51,'C',3,'published','2025-04-23',1,'2025-04-23'),
(376,124,58,25,51,76,'A',5,'published','2025-04-23',1,'2025-04-23'),
(377,144,81,20,30,50,'C',3,'published','2025-04-23',1,'2025-04-23'),
(378,144,80,21,30,51,'C',3,'published','2025-04-23',1,'2025-04-23'),
(379,144,79,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(380,144,78,21,4,25,'F',0,'published','2025-04-23',1,'2025-04-23'),
(381,124,59,20,19,39,'F',0,'published','2025-04-23',1,'2025-04-23'),
(382,144,77,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(383,144,76,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(384,144,75,20,12,32,'F',0,'published','2025-04-23',1,'2025-04-23'),
(385,124,60,20,37,57,'C',3,'published','2025-04-23',1,'2025-04-23'),
(386,128,1,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(387,144,74,24,26,50,'C',3,'published','2025-04-23',1,'2025-04-23'),
(388,124,61,18,32,50,'C',3,'published','2025-04-23',1,'2025-04-23'),
(389,128,12,25,45,70,'A',5,'published','2025-04-23',1,'2025-04-23'),
(390,144,107,20,15,35,'F',0,'published','2025-04-23',1,'2025-04-23'),
(391,124,62,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(392,128,11,25,42,67,'B',4,'published','2025-04-23',1,'2025-04-23'),
(393,128,10,20,59,79,'A',5,'published','2025-04-23',1,'2025-04-23'),
(394,128,9,20,41,61,'B',4,'published','2025-04-23',1,'2025-04-23'),
(395,128,8,18,66,84,'A',5,'published','2025-04-23',1,'2025-04-23'),
(396,128,7,26,45,71,'A',5,'published','2025-04-23',1,'2025-04-23'),
(397,128,6,28,40,68,'B',4,'published','2025-04-23',1,'2025-04-23'),
(398,128,5,22,51,73,'A',5,'published','2025-04-23',1,'2025-04-23'),
(399,128,4,20,40,60,'B',4,'published','2025-04-23',1,'2025-04-23'),
(400,128,3,25,36,61,'B',4,'published','2025-04-23',1,'2025-04-23'),
(401,149,115,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(402,116,54,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(403,116,55,24,53,77,'A',5,'published','2025-04-23',1,'2025-04-23'),
(404,116,56,18,40,58,'C',3,'published','2025-04-23',1,'2025-04-23'),
(405,116,57,25,42,67,'B',4,'published','2025-04-23',1,'2025-04-23'),
(406,156,82,21,40,61,'B',4,'published','2025-04-23',1,'2025-04-23'),
(407,156,81,21,49,70,'A',5,'published','2025-04-23',1,'2025-04-23'),
(408,116,58,25,46,71,'A',5,'published','2025-04-23',1,'2025-04-23'),
(409,156,80,20,60,80,'A',5,'published','2025-04-23',1,'2025-04-23'),
(410,156,79,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(411,156,78,26,57,83,'A',5,'published','2025-04-23',1,'2025-04-23'),
(412,156,77,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(413,116,59,20,49,69,'B',4,'published','2025-04-23',1,'2025-04-23'),
(414,156,76,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(415,128,54,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(416,156,75,30,37,67,'B',4,'published','2025-04-23',1,'2025-04-23'),
(417,116,60,20,30,50,'C',3,'published','2025-04-23',1,'2025-04-23'),
(418,156,74,26,49,75,'A',5,'published','2025-04-23',1,'2025-04-23'),
(419,156,107,23,35,58,'C',3,'published','2025-04-23',1,'2025-04-23'),
(420,116,61,22,47,69,'B',4,'published','2025-04-23',1,'2025-04-23'),
(421,116,62,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(422,128,55,25,50,75,'A',5,'published','2025-04-23',1,'2025-04-23'),
(423,128,56,20,41,61,'B',4,'published','2025-04-23',1,'2025-04-23'),
(424,128,57,25,35,60,'B',4,'published','2025-04-23',1,'2025-04-23'),
(425,130,54,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(426,130,55,25,31,56,'C',3,'published','2025-04-23',1,'2025-04-23'),
(427,128,58,25,53,78,'A',5,'published','2025-04-23',1,'2025-04-23'),
(428,130,56,18,38,56,'C',3,'published','2025-04-23',1,'2025-04-23'),
(429,128,59,20,40,60,'B',4,'published','2025-04-23',1,'2025-04-23'),
(430,128,60,20,44,64,'B',4,'published','2025-04-23',1,'2025-04-23'),
(431,128,61,19,34,53,'C',3,'published','2025-04-23',1,'2025-04-23'),
(432,128,62,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(433,130,57,25,42,67,'B',4,'published','2025-04-23',1,'2025-04-23'),
(434,130,58,27,67,94,'A',5,'published','2025-04-23',1,'2025-04-23'),
(435,128,106,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(436,130,59,20,44,64,'B',4,'published','2025-04-23',1,'2025-04-23'),
(437,130,60,20,45,65,'B',4,'published','2025-04-23',1,'2025-04-23'),
(438,130,61,18,39,57,'C',3,'published','2025-04-23',1,'2025-04-23'),
(439,130,62,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(440,130,106,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(441,147,83,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(442,147,84,15,40,55,'C',3,'published','2025-04-23',1,'2025-04-23'),
(443,147,85,28,32,60,'B',4,'published','2025-04-23',1,'2025-04-23'),
(444,147,86,20,40,60,'B',4,'published','2025-04-23',1,'2025-04-23'),
(445,147,87,28,35,63,'B',4,'published','2025-04-23',1,'2025-04-23'),
(446,147,88,22,48,70,'A',5,'published','2025-04-23',1,'2025-04-23'),
(447,147,89,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(448,147,90,22,30,52,'C',3,'published','2025-04-23',1,'2025-04-23'),
(449,147,108,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(450,147,109,26,26,52,'C',3,'published','2025-04-23',1,'2025-04-23'),
(451,147,110,16,10,26,'F',0,'published','2025-04-23',1,'2025-04-23'),
(452,147,111,21,36,57,'C',3,'published','2025-04-23',1,'2025-04-23'),
(453,147,112,21,25,46,'D',2,'published','2025-04-23',1,'2025-04-23'),
(454,147,113,19,33,52,'C',3,'published','2025-04-23',1,'2025-04-23'),
(455,147,114,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(456,135,12,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(457,135,11,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(458,173,83,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(459,173,84,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(460,173,85,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(461,173,86,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(462,135,8,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(463,135,4,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(464,135,5,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(465,173,87,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(466,173,88,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(467,173,89,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(468,173,90,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(469,135,1,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(470,135,3,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(471,135,6,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(472,135,7,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(473,135,9,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(474,154,54,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(475,135,10,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(476,154,55,27,37,64,'B',4,'published','2025-04-23',1,'2025-04-23'),
(477,154,56,21,42,63,'B',4,'published','2025-04-23',1,'2025-04-23'),
(478,154,57,25,35,60,'B',4,'published','2025-04-23',1,'2025-04-23'),
(479,154,58,26,43,69,'B',4,'published','2025-04-23',1,'2025-04-23'),
(480,154,59,20,42,62,'B',4,'published','2025-04-23',1,'2025-04-23'),
(481,154,60,20,50,70,'A',5,'published','2025-04-23',1,'2025-04-23'),
(482,154,61,19,38,57,'C',3,'published','2025-04-23',1,'2025-04-23'),
(483,173,108,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(484,154,62,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(485,173,109,27,31,58,'C',3,'published','2025-04-23',1,'2025-04-23'),
(486,173,110,22,40,62,'B',4,'published','2025-04-23',1,'2025-04-23'),
(487,154,106,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(488,173,111,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(489,173,112,21,20,41,'E',1,'published','2025-04-23',1,'2025-04-23'),
(490,173,113,20,60,80,'A',5,'published','2025-04-23',1,'2025-04-23'),
(491,173,114,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(492,154,1,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(493,154,3,28,25,53,'C',3,'published','2025-04-23',1,'2025-04-23'),
(494,154,4,20,58,78,'A',5,'published','2025-04-23',1,'2025-04-23'),
(495,154,5,20,46,66,'B',4,'published','2025-04-23',1,'2025-04-23'),
(496,154,6,26,38,64,'B',4,'published','2025-04-23',1,'2025-04-23'),
(497,154,7,26,45,71,'A',5,'published','2025-04-23',1,'2025-04-23'),
(498,154,8,18,61,79,'A',5,'published','2025-04-23',1,'2025-04-23'),
(499,154,9,20,32,52,'C',3,'published','2025-04-23',1,'2025-04-23'),
(500,154,10,20,55,75,'A',5,'published','2025-04-23',1,'2025-04-23');
INSERT INTO `results` (`id`,`student_id`,`course_offering_id`,`continuous_assessment`,`exam_score`,`total_score`,`letter_grade`,`grade_point`,`status`,`published_at`,`updated_by`,`updated_at`) VALUES
(501,154,11,27,42,69,'B',4,'published','2025-04-23',1,'2025-04-23'),
(502,154,12,20,56,76,'A',5,'published','2025-04-23',1,'2025-04-23'),
(503,135,62,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(504,135,61,22,28,50,'C',3,'published','2025-04-23',1,'2025-04-23'),
(505,135,60,20,40,60,'B',4,'published','2025-04-23',1,'2025-04-23'),
(506,135,59,20,30,50,'C',3,'published','2025-04-23',1,'2025-04-23'),
(507,135,58,29,22,51,'C',3,'published','2025-04-23',1,'2025-04-23'),
(508,135,57,25,32,57,'C',3,'published','2025-04-23',1,'2025-04-23'),
(509,135,56,18,36,54,'C',3,'published','2025-04-23',1,'2025-04-23'),
(510,135,55,30,20,50,'C',3,'published','2025-04-23',1,'2025-04-23'),
(511,135,54,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(512,145,108,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(513,145,109,27,26,53,'C',3,'published','2025-04-23',1,'2025-04-23'),
(514,145,110,20,50,70,'A',5,'published','2025-04-23',1,'2025-04-23'),
(515,145,111,23,34,57,'C',3,'published','2025-04-23',1,'2025-04-23'),
(516,145,112,20,45,65,'B',4,'published','2025-04-23',1,'2025-04-23'),
(517,145,113,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(518,145,114,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(519,145,115,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(520,114,55,27,59,86,'A',5,'published','2025-04-23',1,'2025-04-23'),
(521,114,56,17,36,53,'C',3,'published','2025-04-23',1,'2025-04-23'),
(522,114,57,25,33,58,'C',3,'published','2025-04-23',1,'2025-04-23'),
(523,114,58,26,51,77,'A',5,'published','2025-04-23',1,'2025-04-23'),
(524,114,59,20,43,63,'B',4,'published','2025-04-23',1,'2025-04-23'),
(525,114,60,20,45,65,'B',4,'published','2025-04-23',1,'2025-04-23'),
(526,114,61,22,28,50,'C',3,'published','2025-04-23',1,'2025-04-23'),
(527,117,1,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(528,117,3,27,25,52,'C',3,'published','2025-04-23',1,'2025-04-23'),
(529,117,4,20,43,63,'B',4,'published','2025-04-23',1,'2025-04-23'),
(530,117,5,21,42,63,'B',4,'published','2025-04-23',1,'2025-04-23'),
(531,114,1,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(532,114,3,29,29,58,'C',3,'published','2025-04-23',1,'2025-04-23'),
(533,117,6,26,36,62,'B',4,'published','2025-04-23',1,'2025-04-23'),
(534,114,4,20,44,64,'B',4,'published','2025-04-23',1,'2025-04-23'),
(535,114,5,20,50,70,'A',5,'published','2025-04-23',1,'2025-04-23'),
(536,114,6,28,43,71,'A',5,'published','2025-04-23',1,'2025-04-23'),
(537,117,7,26,33,59,'C',3,'published','2025-04-23',1,'2025-04-23'),
(538,114,7,26,41,67,'B',4,'published','2025-04-23',1,'2025-04-23'),
(539,114,8,20,44,64,'B',4,'published','2025-04-23',1,'2025-04-23'),
(540,114,9,20,40,60,'B',4,'published','2025-04-23',1,'2025-04-23'),
(541,114,10,21,53,74,'A',5,'published','2025-04-23',1,'2025-04-23'),
(542,114,11,27,44,71,'A',5,'published','2025-04-23',1,'2025-04-23'),
(543,114,12,18,54,72,'A',5,'published','2025-04-23',1,'2025-04-23'),
(544,117,8,21,48,69,'B',4,'published','2025-04-23',1,'2025-04-23'),
(545,117,9,20,36,56,'C',3,'published','2025-04-23',1,'2025-04-23'),
(546,117,10,20,59,79,'A',5,'published','2025-04-23',1,'2025-04-23'),
(547,117,11,28,36,64,'B',4,'published','2025-04-23',1,'2025-04-23'),
(548,117,12,18,56,74,'A',5,'published','2025-04-23',1,'2025-04-23'),
(549,117,54,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(550,117,55,24,36,60,'B',4,'published','2025-04-23',1,'2025-04-23'),
(551,114,54,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(552,117,56,18,39,57,'C',3,'published','2025-04-23',1,'2025-04-23'),
(553,117,57,25,32,57,'C',3,'published','2025-04-23',1,'2025-04-23'),
(554,117,58,25,51,76,'A',5,'published','2025-04-23',1,'2025-04-23'),
(555,117,59,20,38,58,'C',3,'published','2025-04-23',1,'2025-04-23'),
(556,117,60,20,25,45,'D',2,'published','2025-04-23',1,'2025-04-23'),
(557,117,61,24,26,50,'C',3,'published','2025-04-23',1,'2025-04-23'),
(558,117,62,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(559,22,20,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(560,22,21,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(561,22,22,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(562,22,23,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(563,22,24,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(564,22,25,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(565,22,26,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(566,22,27,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(567,22,28,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(568,10,39,20,38,58,'C',3,'published','2025-04-23',1,'2025-04-23'),
(569,10,38,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(570,10,40,19,39,58,'C',3,'published','2025-04-23',1,'2025-04-23'),
(571,10,41,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(572,10,42,10,45,55,'C',3,'published','2025-04-23',1,'2025-04-23'),
(573,10,43,10,55,65,'B',4,'published','2025-04-23',1,'2025-04-23'),
(574,10,44,20,57,77,'A',5,'published','2025-04-23',1,'2025-04-23'),
(575,10,45,20,52,72,'A',5,'published','2025-04-23',1,'2025-04-23'),
(576,39,116,34,29,63,'B',4,'published','2025-04-23',1,'2025-04-23'),
(577,39,117,26,32,58,'C',3,'published','2025-04-23',1,'2025-04-23'),
(578,39,118,27,33,60,'B',4,'published','2025-04-23',1,'2025-04-23'),
(579,39,119,29,35,64,'B',4,'published','2025-04-23',1,'2025-04-23'),
(580,39,120,25,49,74,'A',5,'published','2025-04-23',1,'2025-04-23'),
(581,39,121,29,39,68,'B',4,'published','2025-04-23',1,'2025-04-23'),
(582,10,122,26,53,79,'A',5,'published','2025-04-23',1,'2025-04-23'),
(583,10,123,25,62,87,'A',5,'published','2025-04-23',1,'2025-04-23'),
(584,10,124,25,52,77,'A',5,'published','2025-04-23',1,'2025-04-23'),
(585,10,125,20,45,65,'B',4,'published','2025-04-23',1,'2025-04-23'),
(586,10,126,16,50,66,'B',4,'published','2025-04-23',1,'2025-04-23'),
(587,22,46,37,37,74,'A',5,'published','2025-04-23',1,'2025-04-23'),
(588,22,47,28,38,66,'B',4,'published','2025-04-23',1,'2025-04-23'),
(589,22,48,27,36,63,'B',4,'published','2025-04-23',1,'2025-04-23'),
(590,22,127,30,36,66,'B',4,'published','2025-04-23',1,'2025-04-23'),
(591,22,49,23,46,69,'B',4,'published','2025-04-23',1,'2025-04-23'),
(592,22,50,27,34,61,'B',4,'published','2025-04-23',1,'2025-04-23'),
(593,7,46,29,34,63,'B',4,'published','2025-04-23',1,'2025-04-23'),
(594,7,47,28,24,52,'C',3,'published','2025-04-23',1,'2025-04-23'),
(595,7,48,27,45,72,'A',5,'published','2025-04-23',1,'2025-04-23'),
(596,7,50,25,41,66,'B',4,'published','2025-04-23',1,'2025-04-23'),
(597,7,49,23,40,63,'B',4,'published','2025-04-23',1,'2025-04-23'),
(598,7,127,30,48,78,'A',5,'published','2025-04-23',1,'2025-04-23'),
(599,7,51,25,40,65,'B',4,'published','2025-04-23',1,'2025-04-23'),
(600,7,53,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(601,7,52,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(602,121,54,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(603,121,55,25,45,70,'A',5,'published','2025-04-23',1,'2025-04-23'),
(604,121,56,19,37,56,'C',3,'published','2025-04-23',1,'2025-04-23'),
(605,121,57,25,30,55,'C',3,'published','2025-04-23',1,'2025-04-23'),
(606,121,58,26,44,70,'A',5,'published','2025-04-23',1,'2025-04-23'),
(607,121,59,20,34,54,'C',3,'published','2025-04-23',1,'2025-04-23'),
(608,121,60,20,35,55,'C',3,'published','2025-04-23',1,'2025-04-23'),
(609,121,61,19,48,67,'B',4,'published','2025-04-23',1,'2025-04-23'),
(610,121,62,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(611,121,106,0,0,0,'F',0,'published','2025-04-23',1,'2025-04-23'),
(612,115,1,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(613,115,3,24,36,60,'B',4,'published','2025-04-24',1,'2025-04-24'),
(614,115,4,20,47,67,'B',4,'published','2025-04-24',1,'2025-04-24'),
(615,115,5,22,44,66,'B',4,'published','2025-04-24',1,'2025-04-24'),
(616,115,6,28,28,56,'C',3,'published','2025-04-24',1,'2025-04-24'),
(617,115,7,28,47,75,'A',5,'published','2025-04-24',1,'2025-04-24'),
(618,115,8,16,51,67,'B',4,'published','2025-04-24',1,'2025-04-24'),
(619,115,9,20,44,64,'B',4,'published','2025-04-24',1,'2025-04-24'),
(620,115,10,24,53,77,'A',5,'published','2025-04-24',1,'2025-04-24'),
(621,115,11,28,35,63,'B',4,'published','2025-04-24',1,'2025-04-24'),
(622,115,12,18,44,62,'B',4,'published','2025-04-24',1,'2025-04-24'),
(623,115,54,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(624,115,55,25,33,58,'C',3,'published','2025-04-24',1,'2025-04-24'),
(625,115,56,22,49,71,'A',5,'published','2025-04-24',1,'2025-04-24'),
(626,115,57,25,38,63,'B',4,'published','2025-04-24',1,'2025-04-24'),
(627,115,58,26,45,71,'A',5,'published','2025-04-24',1,'2025-04-24'),
(628,115,59,20,30,50,'C',3,'published','2025-04-24',1,'2025-04-24'),
(629,115,60,20,35,55,'C',3,'published','2025-04-24',1,'2025-04-24'),
(630,115,61,20,30,50,'C',3,'published','2025-04-24',1,'2025-04-24'),
(631,115,62,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(632,94,38,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(633,94,39,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(634,94,40,20,36,56,'C',3,'published','2025-04-24',1,'2025-04-24'),
(635,94,41,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(636,94,42,10,47,57,'C',3,'published','2025-04-24',1,'2025-04-24'),
(637,94,43,10,45,55,'C',3,'published','2025-04-24',1,'2025-04-24'),
(638,94,44,18,44,62,'B',4,'published','2025-04-24',1,'2025-04-24'),
(639,94,45,18,32,50,'C',3,'published','2025-04-24',1,'2025-04-24'),
(640,94,122,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(641,94,123,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(642,94,124,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(643,94,128,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(644,94,125,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(645,94,126,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(646,94,129,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(647,94,130,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(648,83,46,30,10,40,'E',1,'published','2025-04-24',1,'2025-04-24'),
(649,83,47,27,12,39,'F',0,'published','2025-04-24',1,'2025-04-24'),
(650,83,48,28,32,60,'B',4,'published','2025-04-24',1,'2025-04-24'),
(651,83,127,30,17,47,'D',2,'published','2025-04-24',1,'2025-04-24'),
(652,83,49,25,35,60,'B',4,'published','2025-04-24',1,'2025-04-24'),
(653,83,50,28,42,70,'A',5,'published','2025-04-24',1,'2025-04-24'),
(654,40,131,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(655,40,132,20,46,66,'B',4,'published','2025-04-24',1,'2025-04-24'),
(656,105,46,35,6,41,'E',1,'published','2025-04-24',1,'2025-04-24'),
(657,105,47,28,30,58,'C',3,'published','2025-04-24',1,'2025-04-24'),
(658,105,48,27,28,55,'C',3,'published','2025-04-24',1,'2025-04-24'),
(659,105,127,30,5,35,'F',0,'published','2025-04-24',1,'2025-04-24'),
(660,105,49,27,25,52,'C',3,'published','2025-04-24',1,'2025-04-24'),
(661,105,50,28,24,52,'C',3,'published','2025-04-24',1,'2025-04-24'),
(662,40,133,10,44,54,'C',3,'published','2025-04-24',1,'2025-04-24'),
(663,40,134,10,44,54,'C',3,'published','2025-04-24',1,'2025-04-24'),
(664,40,135,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(665,40,136,67,0,67,'B',4,'published','2025-04-24',1,'2025-04-24'),
(666,40,137,70,0,70,'A',5,'published','2025-04-24',1,'2025-04-24'),
(667,35,46,31,20,51,'C',3,'published','2025-04-24',1,'2025-04-24'),
(668,35,47,29,25,54,'C',3,'published','2025-04-24',1,'2025-04-24'),
(669,21,138,25,38,63,'B',4,'published','2025-04-24',1,'2025-04-24'),
(670,21,139,25,40,65,'B',4,'published','2025-04-24',1,'2025-04-24'),
(671,21,140,27,47,74,'A',5,'published','2025-04-24',1,'2025-04-24'),
(672,21,141,30,63,93,'A',5,'published','2025-04-24',1,'2025-04-24'),
(673,21,142,30,64,94,'A',5,'published','2025-04-24',1,'2025-04-24'),
(674,21,143,20,35,55,'C',3,'published','2025-04-24',1,'2025-04-24'),
(675,21,144,19,60,79,'A',5,'published','2025-04-24',1,'2025-04-24'),
(676,21,145,38,22,60,'B',4,'published','2025-04-24',1,'2025-04-24'),
(677,21,146,20,51,71,'A',5,'published','2025-04-24',1,'2025-04-24'),
(678,21,147,30,57,87,'A',5,'published','2025-04-24',1,'2025-04-24'),
(679,21,148,23,43,66,'B',4,'published','2025-04-24',1,'2025-04-24'),
(680,21,149,22,55,77,'A',5,'published','2025-04-24',1,'2025-04-24'),
(681,21,150,23,40,63,'B',4,'published','2025-04-24',1,'2025-04-24'),
(682,21,151,27,40,67,'B',4,'published','2025-04-24',1,'2025-04-24'),
(683,21,152,28,34,62,'B',4,'published','2025-04-24',1,'2025-04-24'),
(684,21,153,18,43,61,'B',4,'published','2025-04-24',1,'2025-04-24'),
(685,21,154,20,50,70,'A',5,'published','2025-04-24',1,'2025-04-24'),
(686,21,155,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(687,21,156,30,20,50,'C',3,'published','2025-04-24',1,'2025-04-24'),
(688,21,157,17,40,57,'C',3,'published','2025-04-24',1,'2025-04-24'),
(689,21,158,26,34,60,'B',4,'published','2025-04-24',1,'2025-04-24'),
(690,21,159,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(691,21,160,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(692,21,161,12,39,51,'C',3,'published','2025-04-24',1,'2025-04-24'),
(693,21,162,27,28,55,'C',3,'published','2025-04-24',1,'2025-04-24'),
(694,21,163,26,38,64,'B',4,'published','2025-04-24',1,'2025-04-24'),
(695,21,164,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(696,21,165,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(697,21,166,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(698,21,167,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(699,21,168,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(700,21,169,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(701,21,170,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(702,21,171,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(703,21,172,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(704,21,173,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(705,21,174,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(706,99,38,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(707,99,39,20,40,60,'B',4,'published','2025-04-24',1,'2025-04-24'),
(708,99,40,21,34,55,'C',3,'published','2025-04-24',1,'2025-04-24'),
(709,99,41,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(710,99,42,10,33,43,'E',1,'published','2025-04-24',1,'2025-04-24'),
(711,99,43,10,45,55,'C',3,'published','2025-04-24',1,'2025-04-24'),
(712,99,44,20,41,61,'B',4,'published','2025-04-24',1,'2025-04-24'),
(713,99,45,20,30,50,'C',3,'published','2025-04-24',1,'2025-04-24'),
(714,99,122,26,24,50,'C',3,'published','2025-04-24',1,'2025-04-24'),
(715,99,123,24,26,50,'C',3,'published','2025-04-24',1,'2025-04-24'),
(716,99,124,22,32,54,'C',3,'published','2025-04-24',1,'2025-04-24'),
(717,99,128,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(718,99,125,20,53,73,'A',5,'published','2025-04-24',1,'2025-04-24'),
(719,99,126,15,14,29,'F',0,'published','2025-04-24',1,'2025-04-24'),
(720,24,38,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(721,24,39,20,47,67,'B',4,'published','2025-04-24',1,'2025-04-24'),
(722,24,40,19,45,64,'B',4,'published','2025-04-24',1,'2025-04-24'),
(723,24,41,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(724,24,42,10,40,50,'C',3,'published','2025-04-24',1,'2025-04-24'),
(725,24,43,10,51,61,'B',4,'published','2025-04-24',1,'2025-04-24'),
(726,24,44,22,30,52,'C',3,'published','2025-04-24',1,'2025-04-24'),
(727,24,45,20,31,51,'C',3,'published','2025-04-24',1,'2025-04-24'),
(728,24,122,25,38,63,'B',4,'published','2025-04-24',1,'2025-04-24'),
(729,24,123,22,30,52,'C',3,'published','2025-04-24',1,'2025-04-24'),
(730,24,124,23,46,69,'B',4,'published','2025-04-24',1,'2025-04-24'),
(731,24,128,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(732,24,125,20,15,35,'F',0,'published','2025-04-24',1,'2025-04-24'),
(733,24,126,15,50,65,'B',4,'published','2025-04-24',1,'2025-04-24'),
(734,35,48,27,30,57,'C',3,'published','2025-04-24',1,'2025-04-24'),
(735,35,127,30,32,62,'B',4,'published','2025-04-24',1,'2025-04-24'),
(736,35,49,26,28,54,'C',3,'published','2025-04-24',1,'2025-04-24'),
(737,35,50,27,40,67,'B',4,'published','2025-04-24',1,'2025-04-24'),
(738,88,46,26,30,56,'C',3,'published','2025-04-24',1,'2025-04-24'),
(739,88,47,29,24,53,'C',3,'published','2025-04-24',1,'2025-04-24'),
(740,88,48,27,36,63,'B',4,'published','2025-04-24',1,'2025-04-24'),
(741,88,49,26,27,53,'C',3,'published','2025-04-24',1,'2025-04-24'),
(742,69,175,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(743,69,176,20,65,85,'A',5,'published','2025-04-24',1,'2025-04-24'),
(744,69,177,20,62,82,'A',5,'published','2025-04-24',1,'2025-04-24'),
(745,69,178,20,49,69,'B',4,'published','2025-04-24',1,'2025-04-24'),
(746,69,179,27,37,64,'B',4,'published','2025-04-24',1,'2025-04-24'),
(747,69,180,28,56,84,'A',5,'published','2025-04-24',1,'2025-04-24'),
(748,69,181,20,44,64,'B',4,'published','2025-04-24',1,'2025-04-24'),
(749,69,182,26,47,73,'A',5,'published','2025-04-24',1,'2025-04-24'),
(750,69,183,28,53,81,'A',5,'published','2025-04-24',1,'2025-04-24');
INSERT INTO `results` (`id`,`student_id`,`course_offering_id`,`continuous_assessment`,`exam_score`,`total_score`,`letter_grade`,`grade_point`,`status`,`published_at`,`updated_by`,`updated_at`) VALUES
(751,102,184,17,34,51,'C',3,'published','2025-04-24',1,'2025-04-24'),
(752,102,185,20,33,53,'C',3,'published','2025-04-24',1,'2025-04-24'),
(753,80,46,24,32,56,'C',3,'published','2025-04-24',1,'2025-04-24'),
(754,80,47,29,12,41,'E',1,'published','2025-04-24',1,'2025-04-24'),
(755,80,48,27,33,60,'B',4,'published','2025-04-24',1,'2025-04-24'),
(756,80,127,26,30,56,'C',3,'published','2025-04-24',1,'2025-04-24'),
(757,80,49,28,25,53,'C',3,'published','2025-04-24',1,'2025-04-24'),
(758,80,50,26,37,63,'B',4,'published','2025-04-24',1,'2025-04-24'),
(759,78,46,35,32,67,'B',4,'published','2025-04-24',1,'2025-04-24'),
(760,78,47,27,50,77,'A',5,'published','2025-04-24',1,'2025-04-24'),
(761,78,48,28,32,60,'B',4,'published','2025-04-24',1,'2025-04-24'),
(762,78,127,30,34,64,'B',4,'published','2025-04-24',1,'2025-04-24'),
(763,78,49,27,29,56,'C',3,'published','2025-04-24',1,'2025-04-24'),
(764,78,50,27,28,55,'C',3,'published','2025-04-24',1,'2025-04-24'),
(765,10,128,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(766,10,30,25,45,70,'A',5,'published','2025-04-24',1,'2025-04-24'),
(767,10,32,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(768,10,31,20,40,60,'B',4,'published','2025-04-24',1,'2025-04-24'),
(769,10,36,20,35,55,'C',3,'published','2025-04-24',1,'2025-04-24'),
(770,10,35,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(771,10,34,19,46,65,'B',4,'published','2025-04-24',1,'2025-04-24'),
(772,10,33,28,30,58,'C',3,'published','2025-04-24',1,'2025-04-24'),
(773,10,186,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(774,10,187,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(775,10,188,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(776,10,189,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(777,10,190,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(778,10,191,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(779,10,192,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(780,77,46,37,32,69,'B',4,'published','2025-04-24',1,'2025-04-24'),
(781,77,47,27,28,55,'C',3,'published','2025-04-24',1,'2025-04-24'),
(782,77,48,28,35,63,'B',4,'published','2025-04-24',1,'2025-04-24'),
(783,77,127,30,50,80,'A',5,'published','2025-04-24',1,'2025-04-24'),
(784,77,49,29,20,49,'D',2,'published','2025-04-24',1,'2025-04-24'),
(785,77,50,29,30,59,'C',3,'published','2025-04-24',1,'2025-04-24'),
(786,110,46,37,20,57,'C',3,'published','2025-04-24',1,'2025-04-24'),
(787,110,47,26,27,53,'C',3,'published','2025-04-24',1,'2025-04-24'),
(788,110,48,27,33,60,'B',4,'published','2025-04-24',1,'2025-04-24'),
(789,110,127,20,10,30,'F',0,'published','2025-04-24',1,'2025-04-24'),
(790,110,49,28,36,64,'B',4,'published','2025-04-24',1,'2025-04-24'),
(791,110,50,25,28,53,'C',3,'published','2025-04-24',1,'2025-04-24'),
(792,108,46,31,14,45,'D',2,'published','2025-04-24',1,'2025-04-24'),
(793,108,47,27,33,60,'B',4,'published','2025-04-24',1,'2025-04-24'),
(794,108,48,27,46,73,'A',5,'published','2025-04-24',1,'2025-04-24'),
(795,108,127,29,10,39,'F',0,'published','2025-04-24',1,'2025-04-24'),
(796,108,49,27,33,60,'B',4,'published','2025-04-24',1,'2025-04-24'),
(797,100,38,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(798,100,39,20,44,64,'B',4,'published','2025-04-24',1,'2025-04-24'),
(799,100,40,20,54,74,'A',5,'published','2025-04-24',1,'2025-04-24'),
(800,100,41,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(801,100,42,10,26,36,'F',0,'published','2025-04-24',1,'2025-04-24'),
(802,100,43,10,50,60,'B',4,'published','2025-04-24',1,'2025-04-24'),
(803,100,44,20,40,60,'B',4,'published','2025-04-24',1,'2025-04-24'),
(804,100,45,18,36,54,'C',3,'published','2025-04-24',1,'2025-04-24'),
(805,100,122,21,45,66,'B',4,'published','2025-04-24',1,'2025-04-24'),
(806,100,123,20,30,50,'C',3,'published','2025-04-24',1,'2025-04-24'),
(807,100,124,25,47,72,'A',5,'published','2025-04-24',1,'2025-04-24'),
(808,100,128,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(809,100,125,20,32,52,'C',3,'published','2025-04-24',1,'2025-04-24'),
(810,100,126,13,37,50,'C',3,'published','2025-04-24',1,'2025-04-24'),
(811,100,29,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(812,100,30,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(813,100,32,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(814,100,31,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(815,100,33,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(816,100,34,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(817,100,35,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(818,100,36,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(819,100,187,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(820,100,186,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(821,100,188,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(822,100,189,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(823,100,190,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(824,100,192,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(825,100,191,0,0,0,'F',0,'published','2025-04-24',1,'2025-04-24'),
(826,168,185,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(827,168,184,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(828,168,193,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(829,168,194,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(830,168,195,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(831,168,196,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(832,168,197,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(833,168,198,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(834,168,199,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(835,159,200,20,31,51,'C',3,'published','2025-04-25',1,'2025-04-25'),
(836,159,201,27,54,81,'A',5,'published','2025-04-25',1,'2025-04-25'),
(837,159,202,20,30,50,'C',3,'published','2025-04-25',1,'2025-04-25'),
(838,159,203,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(839,159,204,20,32,52,'C',3,'published','2025-04-25',1,'2025-04-25'),
(840,159,205,24,38,62,'B',4,'published','2025-04-25',1,'2025-04-25'),
(841,159,206,18,65,83,'A',5,'published','2025-04-25',1,'2025-04-25'),
(842,159,207,26,47,73,'A',5,'published','2025-04-25',1,'2025-04-25'),
(843,159,208,23,40,63,'B',4,'published','2025-04-25',1,'2025-04-25'),
(844,159,209,20,42,62,'B',4,'published','2025-04-25',1,'2025-04-25'),
(845,159,210,20,42,62,'B',4,'published','2025-04-25',1,'2025-04-25'),
(846,118,1,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(847,118,3,27,27,54,'C',3,'published','2025-04-25',1,'2025-04-25'),
(848,118,4,20,30,50,'C',3,'published','2025-04-25',1,'2025-04-25'),
(849,118,5,25,48,73,'A',5,'published','2025-04-25',1,'2025-04-25'),
(850,118,6,26,42,68,'B',4,'published','2025-04-25',1,'2025-04-25'),
(851,118,7,26,35,61,'B',4,'published','2025-04-25',1,'2025-04-25'),
(852,118,8,20,60,80,'A',5,'published','2025-04-25',1,'2025-04-25'),
(853,162,200,20,31,51,'C',3,'published','2025-04-25',1,'2025-04-25'),
(854,162,201,27,23,50,'C',3,'published','2025-04-25',1,'2025-04-25'),
(855,162,202,20,35,55,'C',3,'published','2025-04-25',1,'2025-04-25'),
(856,162,203,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(857,162,204,20,30,50,'C',3,'published','2025-04-25',1,'2025-04-25'),
(858,162,205,25,30,55,'C',3,'published','2025-04-25',1,'2025-04-25'),
(859,162,206,19,56,75,'A',5,'published','2025-04-25',1,'2025-04-25'),
(860,162,207,20,40,60,'B',4,'published','2025-04-25',1,'2025-04-25'),
(861,162,208,19,33,52,'C',3,'published','2025-04-25',1,'2025-04-25'),
(862,162,210,20,32,52,'C',3,'published','2025-04-25',1,'2025-04-25'),
(863,162,209,19,33,52,'C',3,'published','2025-04-25',1,'2025-04-25'),
(864,118,54,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(865,118,55,24,40,64,'B',4,'published','2025-04-25',1,'2025-04-25'),
(866,118,56,19,41,60,'B',4,'published','2025-04-25',1,'2025-04-25'),
(867,118,57,25,30,55,'C',3,'published','2025-04-25',1,'2025-04-25'),
(868,118,58,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(869,118,59,20,32,52,'C',3,'published','2025-04-25',1,'2025-04-25'),
(870,118,60,25,25,50,'C',3,'published','2025-04-25',1,'2025-04-25'),
(871,118,61,17,45,62,'B',4,'published','2025-04-25',1,'2025-04-25'),
(872,118,62,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(873,131,54,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(874,163,200,20,31,51,'C',3,'published','2025-04-25',1,'2025-04-25'),
(875,163,201,28,45,73,'A',5,'published','2025-04-25',1,'2025-04-25'),
(876,163,202,20,30,50,'C',3,'published','2025-04-25',1,'2025-04-25'),
(877,163,203,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(878,163,204,20,30,50,'C',3,'published','2025-04-25',1,'2025-04-25'),
(879,131,55,25,56,81,'A',5,'published','2025-04-25',1,'2025-04-25'),
(880,131,56,21,37,58,'C',3,'published','2025-04-25',1,'2025-04-25'),
(881,163,210,20,31,51,'C',3,'published','2025-04-25',1,'2025-04-25'),
(882,131,57,25,57,82,'A',5,'published','2025-04-25',1,'2025-04-25'),
(883,131,58,25,66,91,'A',5,'published','2025-04-25',1,'2025-04-25'),
(884,163,209,23,28,51,'C',3,'published','2025-04-25',1,'2025-04-25'),
(885,131,59,20,46,66,'B',4,'published','2025-04-25',1,'2025-04-25'),
(886,131,60,20,40,60,'B',4,'published','2025-04-25',1,'2025-04-25'),
(887,163,208,20,44,64,'B',4,'published','2025-04-25',1,'2025-04-25'),
(888,131,61,20,41,61,'B',4,'published','2025-04-25',1,'2025-04-25'),
(889,163,207,21,40,61,'B',4,'published','2025-04-25',1,'2025-04-25'),
(890,163,206,21,44,65,'B',4,'published','2025-04-25',1,'2025-04-25'),
(891,131,62,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(892,163,205,25,32,57,'C',3,'published','2025-04-25',1,'2025-04-25'),
(893,118,11,28,42,70,'A',5,'published','2025-04-25',1,'2025-04-25'),
(894,118,12,16,42,58,'C',3,'published','2025-04-25',1,'2025-04-25'),
(895,118,10,21,52,73,'A',5,'published','2025-04-25',1,'2025-04-25'),
(896,118,9,20,33,53,'C',3,'published','2025-04-25',1,'2025-04-25'),
(897,148,83,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(898,148,84,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(899,148,85,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(900,148,86,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(901,148,87,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(902,148,91,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(903,148,90,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(904,148,89,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(905,148,88,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(906,177,83,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(907,177,84,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(908,177,85,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(909,177,86,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(910,177,87,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(911,177,88,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(912,177,89,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(913,177,91,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(914,177,90,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(915,179,200,20,33,53,'C',3,'published','2025-04-25',1,'2025-04-25'),
(916,179,201,23,43,66,'B',4,'published','2025-04-25',1,'2025-04-25'),
(917,179,202,20,35,55,'C',3,'published','2025-04-25',1,'2025-04-25'),
(918,179,203,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(919,179,204,20,32,52,'C',3,'published','2025-04-25',1,'2025-04-25'),
(920,179,205,27,30,57,'C',3,'published','2025-04-25',1,'2025-04-25'),
(921,179,206,20,58,78,'A',5,'published','2025-04-25',1,'2025-04-25'),
(922,179,207,22,38,60,'B',4,'published','2025-04-25',1,'2025-04-25'),
(923,179,208,22,52,74,'A',5,'published','2025-04-25',1,'2025-04-25'),
(924,179,209,21,32,53,'C',3,'published','2025-04-25',1,'2025-04-25'),
(925,179,210,20,33,53,'C',3,'published','2025-04-25',1,'2025-04-25'),
(926,178,200,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(927,178,203,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(928,178,204,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(929,178,210,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(930,178,209,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(931,178,208,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(932,178,206,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(933,176,3,27,29,56,'C',3,'published','2025-04-25',1,'2025-04-25'),
(934,176,4,20,55,75,'A',5,'published','2025-04-25',1,'2025-04-25'),
(935,176,5,20,39,59,'C',3,'published','2025-04-25',1,'2025-04-25'),
(936,176,6,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(937,176,7,26,42,68,'B',4,'published','2025-04-25',1,'2025-04-25'),
(938,176,12,20,35,55,'C',3,'published','2025-04-25',1,'2025-04-25'),
(939,176,11,27,39,66,'B',4,'published','2025-04-25',1,'2025-04-25'),
(940,176,10,21,46,67,'B',4,'published','2025-04-25',1,'2025-04-25'),
(941,176,9,20,37,57,'C',3,'published','2025-04-25',1,'2025-04-25'),
(942,176,8,18,58,76,'A',5,'published','2025-04-25',1,'2025-04-25'),
(943,180,1,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(944,180,3,27,28,55,'C',3,'published','2025-04-25',1,'2025-04-25'),
(945,180,4,20,35,55,'C',3,'published','2025-04-25',1,'2025-04-25'),
(946,180,5,23,37,60,'B',4,'published','2025-04-25',1,'2025-04-25'),
(947,180,6,28,31,59,'C',3,'published','2025-04-25',1,'2025-04-25'),
(948,180,7,26,33,59,'C',3,'published','2025-04-25',1,'2025-04-25'),
(949,180,12,20,30,50,'C',3,'published','2025-04-25',1,'2025-04-25'),
(950,180,11,28,31,59,'C',3,'published','2025-04-25',1,'2025-04-25'),
(951,180,10,21,47,68,'B',4,'published','2025-04-25',1,'2025-04-25'),
(952,180,9,20,31,51,'C',3,'published','2025-04-25',1,'2025-04-25'),
(953,180,8,21,42,63,'B',4,'published','2025-04-25',1,'2025-04-25'),
(954,181,1,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(955,181,3,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(956,181,4,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(957,181,5,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(958,181,6,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(959,181,7,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(960,181,12,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(961,181,11,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(962,181,10,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(963,181,9,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(964,181,8,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(965,182,3,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(966,182,4,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(967,182,5,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(968,182,6,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(969,182,7,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(970,182,12,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(971,182,11,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(972,182,10,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(973,182,9,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(974,182,8,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(975,98,38,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(976,98,39,20,44,64,'B',4,'published','2025-04-25',1,'2025-04-25'),
(977,98,40,22,36,58,'C',3,'published','2025-04-25',1,'2025-04-25'),
(978,98,41,0,0,0,'F',0,'published','2025-04-25',1,'2025-04-25'),
(979,98,42,10,35,45,'D',2,'published','2025-04-25',1,'2025-04-25'),
(980,98,43,10,42,52,'C',3,'published','2025-04-25',1,'2025-04-25'),
(981,98,44,22,35,57,'C',3,'published','2025-04-25',1,'2025-04-25'),
(982,98,45,16,37,53,'C',3,'published','2025-04-25',1,'2025-04-25'),
(983,123,54,0,0,0,'F',0,'published','2025-04-26',1,'2025-04-26'),
(984,123,55,26,31,57,'C',3,'published','2025-04-26',1,'2025-04-26'),
(985,123,56,20,38,58,'C',3,'published','2025-04-26',1,'2025-04-26'),
(986,123,57,25,32,57,'C',3,'published','2025-04-26',1,'2025-04-26'),
(987,123,58,27,24,51,'C',3,'published','2025-04-26',1,'2025-04-26'),
(988,123,59,0,0,0,'F',0,'published','2025-04-26',1,'2025-04-26'),
(989,123,60,25,20,45,'D',2,'published','2025-04-26',1,'2025-04-26'),
(990,123,62,0,0,0,'F',0,'published','2025-04-26',1,'2025-04-26'),
(991,185,83,0,0,0,'F',0,'published','2025-04-26',1,'2025-04-26'),
(992,185,84,0,0,0,'F',0,'published','2025-04-26',1,'2025-04-26'),
(993,185,85,0,0,0,'F',0,'published','2025-04-26',1,'2025-04-26'),
(994,185,86,0,0,0,'F',0,'published','2025-04-26',1,'2025-04-26'),
(995,185,91,0,0,0,'F',0,'published','2025-04-26',1,'2025-04-26'),
(996,185,90,0,0,0,'F',0,'published','2025-04-26',1,'2025-04-26'),
(997,185,89,0,0,0,'F',0,'published','2025-04-26',1,'2025-04-26'),
(998,185,88,0,0,0,'F',0,'published','2025-04-26',1,'2025-04-26'),
(999,185,87,0,0,0,'F',0,'published','2025-04-26',1,'2025-04-26'),
(1000,185,108,0,0,0,'F',0,'published','2025-04-26',1,'2025-04-26');
INSERT INTO `results` (`id`,`student_id`,`course_offering_id`,`continuous_assessment`,`exam_score`,`total_score`,`letter_grade`,`grade_point`,`status`,`published_at`,`updated_by`,`updated_at`) VALUES
(1001,185,109,28,28,56,'C',3,'published','2025-04-26',1,'2025-04-26'),
(1002,185,110,21,20,41,'E',1,'published','2025-04-26',1,'2025-04-26'),
(1003,185,111,25,32,57,'C',3,'published','2025-04-26',1,'2025-04-26'),
(1004,185,112,20,10,30,'F',0,'published','2025-04-26',1,'2025-04-26'),
(1005,185,113,18,33,51,'C',3,'published','2025-04-26',1,'2025-04-26'),
(1006,185,115,0,0,0,'F',0,'published','2025-04-26',1,'2025-04-26'),
(1007,185,114,0,0,0,'F',0,'published','2025-04-26',1,'2025-04-26'),
(1008,184,91,0,0,0,'F',0,'published','2025-04-26',1,'2025-04-26'),
(1009,184,90,22,45,67,'B',4,'published','2025-04-26',1,'2025-04-26'),
(1010,184,89,0,0,0,'F',0,'published','2025-04-26',1,'2025-04-26'),
(1011,184,88,16,38,54,'C',3,'published','2025-04-26',1,'2025-04-26'),
(1012,184,87,28,40,68,'B',4,'published','2025-04-26',1,'2025-04-26'),
(1013,184,84,20,35,55,'C',3,'published','2025-04-26',1,'2025-04-26'),
(1014,184,86,20,50,70,'A',5,'published','2025-04-26',1,'2025-04-26'),
(1015,184,85,24,37,61,'B',4,'published','2025-04-26',1,'2025-04-26'),
(1016,184,83,0,0,0,'F',0,'published','2025-04-26',1,'2025-04-26'),
(1017,171,111,0,0,0,'F',0,'published','2025-04-26',1,'2025-04-26'),
(1018,171,108,0,0,0,'F',0,'published','2025-04-26',1,'2025-04-26'),
(1019,171,109,0,0,0,'F',0,'published','2025-04-26',1,'2025-04-26'),
(1020,184,115,0,0,0,'F',0,'published','2025-04-26',1,'2025-04-26'),
(1021,171,113,0,0,0,'F',0,'published','2025-04-26',1,'2025-04-26'),
(1022,184,114,0,0,0,'F',0,'published','2025-04-26',1,'2025-04-26'),
(1023,171,114,0,0,0,'F',0,'published','2025-04-26',1,'2025-04-26'),
(1024,184,113,18,60,78,'A',5,'published','2025-04-26',1,'2025-04-26'),
(1025,184,112,20,50,70,'A',5,'published','2025-04-26',1,'2025-04-26'),
(1026,171,110,0,0,0,'F',0,'published','2025-04-26',1,'2025-04-26'),
(1027,184,111,27,53,80,'A',5,'published','2025-04-26',1,'2025-04-26'),
(1028,184,110,21,40,61,'B',4,'published','2025-04-26',1,'2025-04-26'),
(1029,171,112,0,0,0,'F',0,'published','2025-04-26',1,'2025-04-26'),
(1030,184,109,27,42,69,'B',4,'published','2025-04-26',1,'2025-04-26'),
(1031,184,108,0,0,0,'F',0,'published','2025-04-26',1,'2025-04-26'),
(1032,184,211,25,61,86,'A',5,'published','2025-04-26',1,'2025-04-26'),
(1033,186,83,0,0,0,'F',0,'published','2025-04-26',1,'2025-04-26'),
(1034,186,84,15,63,78,'A',5,'published','2025-04-26',1,'2025-04-26'),
(1035,186,85,26,39,65,'B',4,'published','2025-04-26',1,'2025-04-26'),
(1036,186,86,5,65,70,'A',5,'published','2025-04-26',1,'2025-04-26'),
(1037,186,91,0,0,0,'F',0,'published','2025-04-26',1,'2025-04-26'),
(1038,186,90,22,31,53,'C',3,'published','2025-04-26',1,'2025-04-26'),
(1039,186,89,0,0,0,'F',0,'published','2025-04-26',1,'2025-04-26'),
(1040,186,88,16,40,56,'C',3,'published','2025-04-26',1,'2025-04-26'),
(1041,186,87,27,48,75,'A',5,'published','2025-04-26',1,'2025-04-26'),
(1042,186,108,0,0,0,'F',0,'published','2025-04-26',1,'2025-04-26'),
(1043,186,109,27,44,71,'A',5,'published','2025-04-26',1,'2025-04-26'),
(1044,186,110,20,30,50,'C',3,'published','2025-04-26',1,'2025-04-26'),
(1045,186,111,21,31,52,'C',3,'published','2025-04-26',1,'2025-04-26'),
(1046,186,112,20,50,70,'A',5,'published','2025-04-26',1,'2025-04-26'),
(1047,186,113,18,43,61,'B',4,'published','2025-04-26',1,'2025-04-26'),
(1048,186,114,0,0,0,'F',0,'published','2025-04-26',1,'2025-04-26'),
(1049,186,211,10,33,43,'E',1,'published','2025-04-26',1,'2025-04-26'),
(1050,186,115,0,0,0,'F',0,'published','2025-04-26',1,'2025-04-26'),
(1051,185,211,10,11,21,'F',0,'published','2025-04-26',1,'2025-04-26'),
(1052,20,46,35,46,81,'A',5,'published','2025-04-27',1,'2025-04-27'),
(1053,20,47,27,43,70,'A',5,'published','2025-04-27',1,'2025-04-27'),
(1054,20,48,28,50,78,'A',5,'published','2025-04-27',1,'2025-04-27'),
(1055,20,127,30,60,90,'A',5,'published','2025-04-27',1,'2025-04-27'),
(1056,20,49,25,49,74,'A',5,'published','2025-04-27',1,'2025-04-27'),
(1057,20,50,27,54,81,'A',5,'published','2025-04-27',1,'2025-04-27'),
(1058,20,2,0,0,0,'F',0,'published','2025-04-27',1,'2025-04-27'),
(1059,20,13,0,0,0,'F',0,'published','2025-04-27',1,'2025-04-27'),
(1060,20,14,0,0,0,'F',0,'published','2025-04-27',1,'2025-04-27'),
(1061,20,15,0,0,0,'F',0,'published','2025-04-27',1,'2025-04-27'),
(1062,20,16,0,0,0,'F',0,'published','2025-04-27',1,'2025-04-27'),
(1063,20,17,0,0,0,'F',0,'published','2025-04-27',1,'2025-04-27'),
(1064,20,18,0,0,0,'F',0,'published','2025-04-27',1,'2025-04-27'),
(1065,20,19,0,0,0,'F',0,'published','2025-04-27',1,'2025-04-27'),
(1066,20,20,0,0,0,'F',0,'published','2025-04-27',1,'2025-04-27'),
(1067,20,21,0,0,0,'F',0,'published','2025-04-27',1,'2025-04-27'),
(1068,20,22,0,0,0,'F',0,'published','2025-04-27',1,'2025-04-27'),
(1069,20,23,0,0,0,'F',0,'published','2025-04-27',1,'2025-04-27'),
(1070,20,24,0,0,0,'F',0,'published','2025-04-27',1,'2025-04-27'),
(1071,20,25,0,0,0,'F',0,'published','2025-04-27',1,'2025-04-27'),
(1072,20,26,0,0,0,'F',0,'published','2025-04-27',1,'2025-04-27'),
(1073,20,27,0,0,0,'F',0,'published','2025-04-27',1,'2025-04-27'),
(1074,20,28,0,0,0,'F',0,'published','2025-04-27',1,'2025-04-27'),
(1075,20,51,25,50,75,'A',5,'published','2025-04-27',1,'2025-04-27'),
(1076,19,212,0,0,0,'F',0,'published','2025-04-27',1,'2025-04-27'),
(1077,19,213,0,0,0,'F',0,'published','2025-04-27',1,'2025-04-27'),
(1078,19,214,0,0,0,'F',0,'published','2025-04-27',1,'2025-04-27'),
(1079,19,215,0,0,0,'F',0,'published','2025-04-27',1,'2025-04-27'),
(1080,19,216,0,0,0,'F',0,'published','2025-04-27',1,'2025-04-27'),
(1081,19,217,0,0,0,'F',0,'published','2025-04-27',1,'2025-04-27'),
(1082,19,218,0,0,0,'F',0,'published','2025-04-27',1,'2025-04-27'),
(1083,19,219,0,0,0,'F',0,'published','2025-04-27',1,'2025-04-27'),
(1084,19,220,0,0,0,'F',0,'published','2025-04-27',1,'2025-04-27'),
(1085,19,221,0,0,0,'F',0,'published','2025-04-27',1,'2025-04-27'),
(1086,19,222,0,0,0,'F',0,'published','2025-04-27',1,'2025-04-27'),
(1087,19,223,0,0,0,'F',0,'published','2025-04-27',1,'2025-04-27'),
(1088,19,224,0,0,0,'F',0,'published','2025-04-27',1,'2025-04-27'),
(1089,19,225,0,0,0,'F',0,'published','2025-04-27',1,'2025-04-27'),
(1090,19,226,0,0,0,'F',0,'published','2025-04-27',1,'2025-04-27'),
(1091,19,227,0,0,0,'F',0,'published','2025-04-27',1,'2025-04-27'),
(1092,19,228,0,0,0,'F',0,'published','2025-04-27',1,'2025-04-27'),
(1093,19,229,0,0,0,'F',0,'published','2025-04-27',1,'2025-04-27'),
(1094,19,230,0,0,0,'F',0,'published','2025-04-27',1,'2025-04-27'),
(1095,19,231,0,0,0,'F',0,'published','2025-04-27',1,'2025-04-27'),
(1096,19,232,0,0,0,'F',0,'published','2025-04-27',1,'2025-04-27'),
(1097,19,185,20,30,50,'C',3,'published','2025-04-27',1,'2025-04-27'),
(1098,19,184,19,30,49,'D',2,'published','2025-04-27',1,'2025-04-27'),
(1099,19,193,20,60,80,'A',5,'published','2025-04-27',1,'2025-04-27'),
(1100,19,194,26,29,55,'C',3,'published','2025-04-27',1,'2025-04-27'),
(1101,19,195,28,41,69,'B',4,'published','2025-04-27',1,'2025-04-27'),
(1102,19,199,20,55,75,'A',5,'published','2025-04-27',1,'2025-04-27'),
(1103,19,198,26,29,55,'C',3,'published','2025-04-27',1,'2025-04-27'),
(1104,19,197,29,3,32,'F',0,'published','2025-04-27',1,'2025-04-27'),
(1105,19,196,20,30,50,'C',3,'published','2025-04-27',1,'2025-04-27'),
(1106,119,54,0,0,0,'F',0,'published','2025-04-27',1,'2025-04-27'),
(1107,119,55,29,22,51,'C',3,'published','2025-04-27',1,'2025-04-27'),
(1108,119,56,19,38,57,'C',3,'published','2025-04-27',1,'2025-04-27'),
(1109,119,57,25,32,57,'C',3,'published','2025-04-27',1,'2025-04-27'),
(1110,119,58,28,37,65,'B',4,'published','2025-04-27',1,'2025-04-27'),
(1111,119,59,20,32,52,'C',3,'published','2025-04-27',1,'2025-04-27'),
(1112,119,60,20,30,50,'C',3,'published','2025-04-27',1,'2025-04-27'),
(1113,119,61,15,32,47,'D',2,'published','2025-04-27',1,'2025-04-27'),
(1114,119,62,0,0,0,'F',0,'published','2025-04-27',1,'2025-04-27'),
(1115,119,106,0,0,0,'F',0,'published','2025-04-27',1,'2025-04-27'),
(1116,119,1,0,0,0,'F',0,'published','2025-04-27',1,'2025-04-27'),
(1117,119,3,29,19,48,'D',2,'published','2025-04-27',1,'2025-04-27'),
(1118,119,4,20,32,52,'C',3,'published','2025-04-27',1,'2025-04-27'),
(1119,119,5,24,45,69,'B',4,'published','2025-04-27',1,'2025-04-27'),
(1120,119,6,26,38,64,'B',4,'published','2025-04-27',1,'2025-04-27'),
(1121,119,7,26,39,65,'B',4,'published','2025-04-27',1,'2025-04-27'),
(1122,119,8,18,40,58,'C',3,'published','2025-04-27',1,'2025-04-27'),
(1123,119,9,20,31,51,'C',3,'published','2025-04-27',1,'2025-04-27'),
(1124,119,10,20,44,64,'B',4,'published','2025-04-27',1,'2025-04-27'),
(1125,119,11,26,42,68,'B',4,'published','2025-04-27',1,'2025-04-27'),
(1126,119,12,20,42,62,'B',4,'published','2025-04-27',1,'2025-04-27'),
(1127,123,61,20,14,34,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1128,81,46,10,5,15,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1129,81,47,27,14,41,'E',1,'published','2025-04-28',1,'2025-04-28'),
(1130,81,48,28,27,55,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1131,81,127,26,5,31,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1132,81,49,28,18,46,'D',2,'published','2025-04-28',1,'2025-04-28'),
(1133,81,50,30,9,39,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1134,187,216,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1135,187,217,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1136,187,218,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1137,187,219,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1138,187,220,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1139,187,221,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1140,187,222,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1141,187,223,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1142,187,224,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1143,187,225,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1144,187,226,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1145,187,227,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1146,187,228,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1147,187,229,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1148,187,230,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1149,187,231,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1150,187,232,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1151,161,201,16,54,70,'A',5,'published','2025-04-28',1,'2025-04-28'),
(1152,161,200,20,43,63,'B',4,'published','2025-04-28',1,'2025-04-28'),
(1153,152,200,20,41,61,'B',4,'published','2025-04-28',1,'2025-04-28'),
(1154,161,210,20,48,68,'B',4,'published','2025-04-28',1,'2025-04-28'),
(1155,161,209,23,45,68,'B',4,'published','2025-04-28',1,'2025-04-28'),
(1156,161,208,23,42,65,'B',4,'published','2025-04-28',1,'2025-04-28'),
(1157,152,202,20,30,50,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1158,161,207,20,40,60,'B',4,'published','2025-04-28',1,'2025-04-28'),
(1159,161,206,20,34,54,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1160,161,205,28,34,62,'B',4,'published','2025-04-28',1,'2025-04-28'),
(1161,161,204,20,37,57,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1162,161,203,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1163,152,201,26,37,63,'B',4,'published','2025-04-28',1,'2025-04-28'),
(1164,161,202,25,45,70,'A',5,'published','2025-04-28',1,'2025-04-28'),
(1165,140,1,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1166,140,3,26,32,58,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1167,140,4,20,54,74,'A',5,'published','2025-04-28',1,'2025-04-28'),
(1168,140,5,23,43,66,'B',4,'published','2025-04-28',1,'2025-04-28'),
(1169,140,6,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1170,140,7,26,43,69,'B',4,'published','2025-04-28',1,'2025-04-28'),
(1171,140,8,20,60,80,'A',5,'published','2025-04-28',1,'2025-04-28'),
(1172,140,9,20,45,65,'B',4,'published','2025-04-28',1,'2025-04-28'),
(1173,140,10,20,48,68,'B',4,'published','2025-04-28',1,'2025-04-28'),
(1174,140,11,26,37,63,'B',4,'published','2025-04-28',1,'2025-04-28'),
(1175,140,12,18,54,72,'A',5,'published','2025-04-28',1,'2025-04-28'),
(1176,152,204,20,30,50,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1177,152,205,26,30,56,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1178,152,206,19,56,75,'A',5,'published','2025-04-28',1,'2025-04-28'),
(1179,152,207,26,40,66,'B',4,'published','2025-04-28',1,'2025-04-28'),
(1180,152,208,25,25,50,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1181,152,209,22,33,55,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1182,140,54,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1183,140,55,25,29,54,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1184,140,56,19,33,52,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1185,152,210,20,35,55,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1186,140,57,25,30,55,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1187,140,58,27,29,56,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1188,140,59,20,33,53,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1189,140,60,20,40,60,'B',4,'published','2025-04-28',1,'2025-04-28'),
(1190,140,61,16,41,57,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1191,140,62,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1192,140,106,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1193,183,54,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1194,183,56,19,35,54,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1195,183,57,25,33,58,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1196,183,58,28,27,55,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1197,183,106,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1198,183,62,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1199,183,61,16,8,24,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1200,183,60,25,20,45,'D',2,'published','2025-04-28',1,'2025-04-28'),
(1201,183,59,20,12,32,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1202,160,200,20,32,52,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1203,160,202,20,35,55,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1204,160,201,26,29,55,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1205,138,1,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1206,160,203,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1207,160,204,20,30,50,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1208,160,205,24,40,64,'B',4,'published','2025-04-28',1,'2025-04-28'),
(1209,160,206,20,61,81,'A',5,'published','2025-04-28',1,'2025-04-28'),
(1210,160,207,20,37,57,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1211,160,208,22,38,60,'B',4,'published','2025-04-28',1,'2025-04-28'),
(1212,160,209,23,38,61,'B',4,'published','2025-04-28',1,'2025-04-28'),
(1213,138,3,25,33,58,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1214,138,4,20,40,60,'B',4,'published','2025-04-28',1,'2025-04-28'),
(1215,160,210,20,41,61,'B',4,'published','2025-04-28',1,'2025-04-28'),
(1216,138,5,22,43,65,'B',4,'published','2025-04-28',1,'2025-04-28'),
(1217,181,54,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1218,138,6,27,41,68,'B',4,'published','2025-04-28',1,'2025-04-28'),
(1219,181,55,29,21,50,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1220,138,7,26,41,67,'B',4,'published','2025-04-28',1,'2025-04-28'),
(1221,181,56,18,38,56,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1222,181,57,25,0,25,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1223,138,8,21,53,74,'A',5,'published','2025-04-28',1,'2025-04-28'),
(1224,181,58,24,57,81,'A',5,'published','2025-04-28',1,'2025-04-28'),
(1225,138,9,20,42,62,'B',4,'published','2025-04-28',1,'2025-04-28'),
(1226,181,59,20,10,30,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1227,138,10,20,40,60,'B',4,'published','2025-04-28',1,'2025-04-28'),
(1228,181,60,25,25,50,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1229,181,61,18,18,36,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1230,138,11,27,36,63,'B',4,'published','2025-04-28',1,'2025-04-28'),
(1231,181,62,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1232,181,106,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1233,138,12,20,44,64,'B',4,'published','2025-04-28',1,'2025-04-28'),
(1234,183,55,29,21,50,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1235,157,200,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1236,157,201,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1237,157,202,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1238,157,203,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1239,157,205,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1240,157,206,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1241,157,207,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1242,157,208,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1243,157,209,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1244,157,210,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1245,136,1,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1246,136,3,29,21,50,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1247,136,4,20,34,54,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1248,136,5,23,36,59,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1249,136,6,28,31,59,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1250,136,7,26,30,56,'C',3,'published','2025-04-28',1,'2025-04-28');
INSERT INTO `results` (`id`,`student_id`,`course_offering_id`,`continuous_assessment`,`exam_score`,`total_score`,`letter_grade`,`grade_point`,`status`,`published_at`,`updated_by`,`updated_at`) VALUES
(1251,136,8,15,58,73,'A',5,'published','2025-04-28',1,'2025-04-28'),
(1252,136,9,20,44,64,'B',4,'published','2025-04-28',1,'2025-04-28'),
(1253,136,10,23,47,70,'A',5,'published','2025-04-28',1,'2025-04-28'),
(1254,136,11,26,42,68,'B',4,'published','2025-04-28',1,'2025-04-28'),
(1255,136,12,20,42,62,'B',4,'published','2025-04-28',1,'2025-04-28'),
(1256,129,1,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1257,129,3,27,40,67,'B',4,'published','2025-04-28',1,'2025-04-28'),
(1258,129,4,20,50,70,'A',5,'published','2025-04-28',1,'2025-04-28'),
(1259,129,5,25,53,78,'A',5,'published','2025-04-28',1,'2025-04-28'),
(1260,129,6,27,35,62,'B',4,'published','2025-04-28',1,'2025-04-28'),
(1261,129,7,26,54,80,'A',5,'published','2025-04-28',1,'2025-04-28'),
(1262,129,8,15,62,77,'A',5,'published','2025-04-28',1,'2025-04-28'),
(1263,129,9,20,51,71,'A',5,'published','2025-04-28',1,'2025-04-28'),
(1264,129,10,21,59,80,'A',5,'published','2025-04-28',1,'2025-04-28'),
(1265,129,11,27,45,72,'A',5,'published','2025-04-28',1,'2025-04-28'),
(1266,129,12,18,64,82,'A',5,'published','2025-04-28',1,'2025-04-28'),
(1267,138,54,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1268,136,54,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1269,136,55,27,31,58,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1270,136,56,18,38,56,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1271,138,55,25,39,64,'B',4,'published','2025-04-28',1,'2025-04-28'),
(1272,138,56,18,42,60,'B',4,'published','2025-04-28',1,'2025-04-28'),
(1273,136,57,25,31,56,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1274,136,58,27,36,63,'B',4,'published','2025-04-28',1,'2025-04-28'),
(1275,136,59,20,27,47,'D',2,'published','2025-04-28',1,'2025-04-28'),
(1276,136,60,20,25,45,'D',2,'published','2025-04-28',1,'2025-04-28'),
(1277,136,61,25,25,50,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1278,138,62,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1279,138,61,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1280,136,62,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1281,138,60,25,30,55,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1282,138,59,20,45,65,'B',4,'published','2025-04-28',1,'2025-04-28'),
(1283,138,58,25,51,76,'A',5,'published','2025-04-28',1,'2025-04-28'),
(1284,134,54,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1285,134,55,24,53,77,'A',5,'published','2025-04-28',1,'2025-04-28'),
(1286,134,56,18,38,56,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1287,134,57,25,30,55,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1288,134,58,27,26,53,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1289,134,59,20,7,27,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1290,134,60,20,30,50,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1291,134,61,20,30,50,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1292,134,62,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1293,134,106,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1294,129,54,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1295,129,55,23,65,88,'A',5,'published','2025-04-28',1,'2025-04-28'),
(1296,129,56,22,39,61,'B',4,'published','2025-04-28',1,'2025-04-28'),
(1297,129,57,25,40,65,'B',4,'published','2025-04-28',1,'2025-04-28'),
(1298,129,58,27,67,94,'A',5,'published','2025-04-28',1,'2025-04-28'),
(1299,129,59,20,41,61,'B',4,'published','2025-04-28',1,'2025-04-28'),
(1300,129,61,27,55,82,'A',5,'published','2025-04-28',1,'2025-04-28'),
(1301,129,62,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1302,133,1,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1303,133,3,28,34,62,'B',4,'published','2025-04-28',1,'2025-04-28'),
(1304,133,4,20,38,58,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1305,133,5,22,40,62,'B',4,'published','2025-04-28',1,'2025-04-28'),
(1306,133,6,28,36,64,'B',4,'published','2025-04-28',1,'2025-04-28'),
(1307,133,7,26,34,60,'B',4,'published','2025-04-28',1,'2025-04-28'),
(1308,133,8,19,59,78,'A',5,'published','2025-04-28',1,'2025-04-28'),
(1309,133,9,20,36,56,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1310,133,10,21,43,64,'B',4,'published','2025-04-28',1,'2025-04-28'),
(1311,133,11,27,40,67,'B',4,'published','2025-04-28',1,'2025-04-28'),
(1312,133,12,21,50,71,'A',5,'published','2025-04-28',1,'2025-04-28'),
(1313,133,54,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1314,133,55,24,36,60,'B',4,'published','2025-04-28',1,'2025-04-28'),
(1315,133,56,21,43,64,'B',4,'published','2025-04-28',1,'2025-04-28'),
(1316,133,57,25,35,60,'B',4,'published','2025-04-28',1,'2025-04-28'),
(1317,133,58,25,63,88,'A',5,'published','2025-04-28',1,'2025-04-28'),
(1318,133,59,20,33,53,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1319,133,60,20,30,50,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1320,133,61,23,27,50,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1321,133,62,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1322,164,200,20,32,52,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1323,188,200,20,31,51,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1324,164,201,15,4,19,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1325,164,202,20,35,55,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1326,188,201,25,35,60,'B',4,'published','2025-04-28',1,'2025-04-28'),
(1327,164,203,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1328,188,202,20,35,55,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1329,164,204,20,30,50,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1330,164,205,26,34,60,'B',4,'published','2025-04-28',1,'2025-04-28'),
(1331,188,203,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1332,188,204,20,32,52,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1333,164,206,19,56,75,'A',5,'published','2025-04-28',1,'2025-04-28'),
(1334,188,205,28,38,66,'B',4,'published','2025-04-28',1,'2025-04-28'),
(1335,164,207,25,38,63,'B',4,'published','2025-04-28',1,'2025-04-28'),
(1336,188,206,20,60,80,'A',5,'published','2025-04-28',1,'2025-04-28'),
(1337,164,208,23,41,64,'B',4,'published','2025-04-28',1,'2025-04-28'),
(1338,188,207,20,40,60,'B',4,'published','2025-04-28',1,'2025-04-28'),
(1339,164,209,18,35,53,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1340,188,208,23,28,51,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1341,164,210,20,33,53,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1342,188,209,21,29,50,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1343,188,210,20,30,50,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1344,141,1,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1345,141,3,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1346,141,4,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1347,141,5,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1348,141,6,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1349,141,7,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1350,141,8,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1351,141,9,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1352,141,10,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1353,141,11,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1354,141,12,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1355,141,54,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1356,141,55,29,23,52,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1357,141,56,20,38,58,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1358,141,57,25,30,55,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1359,141,58,27,31,58,'C',3,'published','2025-04-28',1,'2025-04-28'),
(1360,141,59,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1361,141,60,20,25,45,'D',2,'published','2025-04-28',1,'2025-04-28'),
(1362,141,61,15,11,26,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1363,141,62,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1364,141,106,0,0,0,'F',0,'published','2025-04-28',1,'2025-04-28'),
(1365,109,185,20,34,54,'C',3,'published','2025-04-29',1,'2025-04-29'),
(1366,109,184,26,36,62,'B',4,'published','2025-04-29',1,'2025-04-29'),
(1367,109,193,20,43,63,'B',4,'published','2025-04-29',1,'2025-04-29'),
(1368,109,194,27,24,51,'C',3,'published','2025-04-29',1,'2025-04-29'),
(1369,109,195,26,28,54,'C',3,'published','2025-04-29',1,'2025-04-29'),
(1370,109,199,20,55,75,'A',5,'published','2025-04-29',1,'2025-04-29'),
(1371,109,198,27,24,51,'C',3,'published','2025-04-29',1,'2025-04-29'),
(1372,109,197,26,15,41,'E',1,'published','2025-04-29',1,'2025-04-29'),
(1373,109,196,20,33,53,'C',3,'published','2025-04-29',1,'2025-04-29'),
(1374,109,233,26,29,55,'C',3,'published','2025-04-29',1,'2025-04-29'),
(1375,109,175,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1376,109,176,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1377,109,177,20,46,66,'B',4,'published','2025-04-29',1,'2025-04-29'),
(1378,109,178,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1379,109,179,28,24,52,'C',3,'published','2025-04-29',1,'2025-04-29'),
(1380,109,180,26,36,62,'B',4,'published','2025-04-29',1,'2025-04-29'),
(1381,109,181,20,39,59,'C',3,'published','2025-04-29',1,'2025-04-29'),
(1382,109,182,16,35,51,'C',3,'published','2025-04-29',1,'2025-04-29'),
(1383,109,106,20,33,53,'C',3,'published','2025-04-29',1,'2025-04-29'),
(1384,109,183,26,24,50,'C',3,'published','2025-04-29',1,'2025-04-29'),
(1385,109,212,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1386,109,213,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1387,109,214,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1388,109,215,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1389,109,216,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1390,109,217,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1391,109,218,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1392,109,219,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1393,109,220,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1394,109,221,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1395,109,222,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1396,109,234,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1397,102,193,20,48,68,'B',4,'published','2025-04-29',1,'2025-04-29'),
(1398,102,194,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1399,102,195,27,27,54,'C',3,'published','2025-04-29',1,'2025-04-29'),
(1400,102,196,20,33,53,'C',3,'published','2025-04-29',1,'2025-04-29'),
(1401,102,197,28,20,48,'D',2,'published','2025-04-29',1,'2025-04-29'),
(1402,102,199,15,70,85,'A',5,'published','2025-04-29',1,'2025-04-29'),
(1403,109,223,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1404,109,224,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1405,109,225,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1406,109,226,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1407,109,227,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1408,109,228,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1409,109,229,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1410,109,230,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1411,109,231,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1412,109,232,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1413,102,175,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1414,102,176,20,45,65,'B',4,'published','2025-04-29',1,'2025-04-29'),
(1415,102,177,20,42,62,'B',4,'published','2025-04-29',1,'2025-04-29'),
(1416,102,178,20,48,68,'B',4,'published','2025-04-29',1,'2025-04-29'),
(1417,102,179,27,30,57,'C',3,'published','2025-04-29',1,'2025-04-29'),
(1418,102,180,26,35,61,'B',4,'published','2025-04-29',1,'2025-04-29'),
(1419,102,181,20,26,46,'D',2,'published','2025-04-29',1,'2025-04-29'),
(1420,102,182,15,47,62,'B',4,'published','2025-04-29',1,'2025-04-29'),
(1421,102,183,28,35,63,'B',4,'published','2025-04-29',1,'2025-04-29'),
(1422,199,223,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1423,199,224,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1424,199,226,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1425,199,227,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1426,199,228,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1427,199,229,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1428,199,230,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1429,199,231,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1430,199,232,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1431,69,185,20,54,74,'A',5,'published','2025-04-29',1,'2025-04-29'),
(1432,69,184,26,38,64,'B',4,'published','2025-04-29',1,'2025-04-29'),
(1433,69,193,20,33,53,'C',3,'published','2025-04-29',1,'2025-04-29'),
(1434,69,194,26,28,54,'C',3,'published','2025-04-29',1,'2025-04-29'),
(1435,69,195,26,53,79,'A',5,'published','2025-04-29',1,'2025-04-29'),
(1436,69,199,20,55,75,'A',5,'published','2025-04-29',1,'2025-04-29'),
(1437,69,198,26,28,54,'C',3,'published','2025-04-29',1,'2025-04-29'),
(1438,69,197,29,59,88,'A',5,'published','2025-04-29',1,'2025-04-29'),
(1439,69,196,20,40,60,'B',4,'published','2025-04-29',1,'2025-04-29'),
(1440,72,235,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1441,72,236,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1442,72,237,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1443,72,238,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1444,72,239,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1445,72,240,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1446,72,241,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1447,72,242,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1448,72,243,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1449,72,244,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1450,72,245,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1451,72,246,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1452,72,247,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1453,72,248,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1454,72,249,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1455,72,250,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1456,72,251,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1457,72,252,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1458,72,253,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1459,72,254,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1460,72,255,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1461,72,256,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1462,72,257,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1463,72,258,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1464,72,259,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1465,72,260,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1466,72,261,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1467,72,262,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1468,72,263,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1469,72,264,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1470,72,265,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1471,72,266,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1472,72,267,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1473,72,268,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1474,72,269,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1475,72,270,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1476,72,271,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1477,72,272,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1478,72,273,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1479,72,274,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1480,72,232,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1481,72,275,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1482,198,185,15,5,20,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1483,198,184,22,18,40,'E',1,'published','2025-04-29',1,'2025-04-29'),
(1484,198,193,20,53,73,'A',5,'published','2025-04-29',1,'2025-04-29'),
(1485,198,194,29,19,48,'D',2,'published','2025-04-29',1,'2025-04-29'),
(1486,198,195,0,0,0,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1487,198,199,15,50,65,'B',4,'published','2025-04-29',1,'2025-04-29'),
(1488,198,198,29,19,48,'D',2,'published','2025-04-29',1,'2025-04-29'),
(1489,198,197,0,6,6,'F',0,'published','2025-04-29',1,'2025-04-29'),
(1490,198,196,20,30,50,'C',3,'published','2025-04-29',1,'2025-04-29'),
(1491,18,185,22,44,66,'B',4,'published','2025-04-30',1,'2025-04-30'),
(1492,18,175,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1493,18,176,17,68,85,'A',5,'published','2025-04-30',1,'2025-04-30'),
(1494,18,177,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1495,18,178,20,50,70,'A',5,'published','2025-04-30',1,'2025-04-30'),
(1496,18,179,29,34,63,'B',4,'published','2025-04-30',1,'2025-04-30'),
(1497,18,180,26,34,60,'B',4,'published','2025-04-30',1,'2025-04-30'),
(1498,18,181,20,33,53,'C',3,'published','2025-04-30',1,'2025-04-30'),
(1499,18,182,20,49,69,'B',4,'published','2025-04-30',1,'2025-04-30'),
(1500,18,183,27,36,63,'B',4,'published','2025-04-30',1,'2025-04-30');
INSERT INTO `results` (`id`,`student_id`,`course_offering_id`,`continuous_assessment`,`exam_score`,`total_score`,`letter_grade`,`grade_point`,`status`,`published_at`,`updated_by`,`updated_at`) VALUES
(1501,11,257,22,40,62,'B',4,'published','2025-04-30',1,'2025-04-30'),
(1502,11,258,23,41,64,'B',4,'published','2025-04-30',1,'2025-04-30'),
(1503,120,1,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1504,12,122,12,31,43,'E',1,'published','2025-04-30',1,'2025-04-30'),
(1505,11,259,20,60,80,'A',5,'published','2025-04-30',1,'2025-04-30'),
(1506,12,123,25,25,50,'C',3,'published','2025-04-30',1,'2025-04-30'),
(1507,11,260,27,36,63,'B',4,'published','2025-04-30',1,'2025-04-30'),
(1508,120,3,28,34,62,'B',4,'published','2025-04-30',1,'2025-04-30'),
(1509,12,124,25,35,60,'B',4,'published','2025-04-30',1,'2025-04-30'),
(1510,120,5,22,43,65,'B',4,'published','2025-04-30',1,'2025-04-30'),
(1511,120,6,27,32,59,'C',3,'published','2025-04-30',1,'2025-04-30'),
(1512,12,128,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1513,120,7,26,52,78,'A',5,'published','2025-04-30',1,'2025-04-30'),
(1514,11,261,25,36,61,'B',4,'published','2025-04-30',1,'2025-04-30'),
(1515,12,125,20,34,54,'C',3,'published','2025-04-30',1,'2025-04-30'),
(1516,120,8,20,64,84,'A',5,'published','2025-04-30',1,'2025-04-30'),
(1517,12,126,15,36,51,'C',3,'published','2025-04-30',1,'2025-04-30'),
(1518,120,9,20,51,71,'A',5,'published','2025-04-30',1,'2025-04-30'),
(1519,120,10,24,50,74,'A',5,'published','2025-04-30',1,'2025-04-30'),
(1520,120,11,25,45,70,'A',5,'published','2025-04-30',1,'2025-04-30'),
(1521,120,12,18,62,80,'A',5,'published','2025-04-30',1,'2025-04-30'),
(1522,120,276,25,55,80,'A',5,'published','2025-04-30',1,'2025-04-30'),
(1523,12,129,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1524,12,130,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1525,12,277,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1526,11,262,20,65,85,'A',5,'published','2025-04-30',1,'2025-04-30'),
(1527,11,263,25,36,61,'B',4,'published','2025-04-30',1,'2025-04-30'),
(1528,199,185,20,32,52,'C',3,'published','2025-04-30',1,'2025-04-30'),
(1529,199,184,19,34,53,'C',3,'published','2025-04-30',1,'2025-04-30'),
(1530,199,193,20,50,70,'A',5,'published','2025-04-30',1,'2025-04-30'),
(1531,199,194,27,25,52,'C',3,'published','2025-04-30',1,'2025-04-30'),
(1532,12,38,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1533,199,195,30,30,60,'B',4,'published','2025-04-30',1,'2025-04-30'),
(1534,12,39,20,41,61,'B',4,'published','2025-04-30',1,'2025-04-30'),
(1535,199,199,20,35,55,'C',3,'published','2025-04-30',1,'2025-04-30'),
(1536,11,264,29,15,44,'E',1,'published','2025-04-30',1,'2025-04-30'),
(1537,12,40,22,52,74,'A',5,'published','2025-04-30',1,'2025-04-30'),
(1538,199,198,28,25,53,'C',3,'published','2025-04-30',1,'2025-04-30'),
(1539,11,265,20,42,62,'B',4,'published','2025-04-30',1,'2025-04-30'),
(1540,12,41,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1541,12,42,10,28,38,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1542,12,43,10,44,54,'C',3,'published','2025-04-30',1,'2025-04-30'),
(1543,199,197,29,8,37,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1544,199,196,20,43,63,'B',4,'published','2025-04-30',1,'2025-04-30'),
(1545,12,44,22,59,81,'A',5,'published','2025-04-30',1,'2025-04-30'),
(1546,12,45,20,35,55,'C',3,'published','2025-04-30',1,'2025-04-30'),
(1547,120,4,20,42,62,'B',4,'published','2025-04-30',1,'2025-04-30'),
(1548,11,267,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1549,199,176,20,49,69,'B',4,'published','2025-04-30',1,'2025-04-30'),
(1550,199,177,20,51,71,'A',5,'published','2025-04-30',1,'2025-04-30'),
(1551,199,178,20,48,68,'B',4,'published','2025-04-30',1,'2025-04-30'),
(1552,11,268,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1553,18,212,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1554,199,179,28,25,53,'C',3,'published','2025-04-30',1,'2025-04-30'),
(1555,11,269,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1556,199,180,26,31,57,'C',3,'published','2025-04-30',1,'2025-04-30'),
(1557,199,181,20,25,45,'D',2,'published','2025-04-30',1,'2025-04-30'),
(1558,11,270,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1559,18,213,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1560,11,271,27,32,59,'C',3,'published','2025-04-30',1,'2025-04-30'),
(1561,199,182,19,36,55,'C',3,'published','2025-04-30',1,'2025-04-30'),
(1562,11,272,27,43,70,'A',5,'published','2025-04-30',1,'2025-04-30'),
(1563,18,214,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1564,11,273,20,22,42,'E',1,'published','2025-04-30',1,'2025-04-30'),
(1565,199,183,26,14,40,'E',1,'published','2025-04-30',1,'2025-04-30'),
(1566,18,215,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1567,11,274,15,48,63,'B',4,'published','2025-04-30',1,'2025-04-30'),
(1568,11,275,27,36,63,'B',4,'published','2025-04-30',1,'2025-04-30'),
(1569,12,186,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1570,12,187,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1571,12,188,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1572,12,189,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1573,12,190,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1574,18,234,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1575,18,222,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1576,12,192,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1577,18,221,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1578,18,220,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1579,18,219,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1580,12,191,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1581,18,218,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1582,12,278,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1583,18,217,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1584,18,216,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1585,12,279,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1586,199,212,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1587,199,213,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1588,199,214,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1589,199,215,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1590,199,216,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1591,120,54,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1592,199,217,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1593,199,218,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1594,120,55,25,61,86,'A',5,'published','2025-04-30',1,'2025-04-30'),
(1595,18,223,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1596,199,219,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1597,18,224,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1598,199,220,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1599,120,56,19,44,63,'B',4,'published','2025-04-30',1,'2025-04-30'),
(1600,199,221,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1601,120,57,25,40,65,'B',4,'published','2025-04-30',1,'2025-04-30'),
(1602,199,222,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1603,199,234,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1604,120,58,25,67,92,'A',5,'published','2025-04-30',1,'2025-04-30'),
(1605,120,59,20,60,80,'A',5,'published','2025-04-30',1,'2025-04-30'),
(1606,120,60,20,50,70,'A',5,'published','2025-04-30',1,'2025-04-30'),
(1607,120,61,23,27,50,'C',3,'published','2025-04-30',1,'2025-04-30'),
(1608,120,62,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1609,18,225,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1610,18,226,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1611,18,227,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1612,18,228,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1613,18,229,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1614,18,230,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1615,18,231,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1616,18,232,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1617,18,184,15,34,49,'D',2,'published','2025-04-30',1,'2025-04-30'),
(1618,18,193,20,65,85,'A',5,'published','2025-04-30',1,'2025-04-30'),
(1619,18,194,24,29,53,'C',3,'published','2025-04-30',1,'2025-04-30'),
(1620,18,195,28,33,61,'B',4,'published','2025-04-30',1,'2025-04-30'),
(1621,18,199,20,65,85,'A',5,'published','2025-04-30',1,'2025-04-30'),
(1622,18,198,27,29,56,'C',3,'published','2025-04-30',1,'2025-04-30'),
(1623,18,197,29,13,42,'E',1,'published','2025-04-30',1,'2025-04-30'),
(1624,18,196,20,50,70,'A',5,'published','2025-04-30',1,'2025-04-30'),
(1625,197,212,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1626,197,213,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1627,197,214,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1628,197,215,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1629,197,216,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1630,197,217,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1631,197,218,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1632,197,219,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1633,197,220,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1634,197,221,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1635,197,222,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1636,197,234,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1637,197,223,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1638,197,224,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1639,197,225,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1640,197,226,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1641,197,227,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1642,197,228,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1643,197,229,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1644,197,230,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1645,197,231,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1646,197,232,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1647,197,185,21,53,74,'A',5,'published','2025-04-30',1,'2025-04-30'),
(1648,197,184,19,37,56,'C',3,'published','2025-04-30',1,'2025-04-30'),
(1649,197,193,20,55,75,'A',5,'published','2025-04-30',1,'2025-04-30'),
(1650,197,194,25,32,57,'C',3,'published','2025-04-30',1,'2025-04-30'),
(1651,197,195,28,38,66,'B',4,'published','2025-04-30',1,'2025-04-30'),
(1652,197,199,20,50,70,'A',5,'published','2025-04-30',1,'2025-04-30'),
(1653,197,198,27,32,59,'C',3,'published','2025-04-30',1,'2025-04-30'),
(1654,197,197,28,20,48,'D',2,'published','2025-04-30',1,'2025-04-30'),
(1655,197,196,20,47,67,'B',4,'published','2025-04-30',1,'2025-04-30'),
(1656,197,233,25,46,71,'A',5,'published','2025-04-30',1,'2025-04-30'),
(1657,197,175,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1658,197,176,15,70,85,'A',5,'published','2025-04-30',1,'2025-04-30'),
(1659,197,177,20,52,72,'A',5,'published','2025-04-30',1,'2025-04-30'),
(1660,197,178,20,60,80,'A',5,'published','2025-04-30',1,'2025-04-30'),
(1661,197,179,27,34,61,'B',4,'published','2025-04-30',1,'2025-04-30'),
(1662,197,180,27,47,74,'A',5,'published','2025-04-30',1,'2025-04-30'),
(1663,197,181,20,25,45,'D',2,'published','2025-04-30',1,'2025-04-30'),
(1664,197,182,19,48,67,'B',4,'published','2025-04-30',1,'2025-04-30'),
(1665,197,106,20,47,67,'B',4,'published','2025-04-30',1,'2025-04-30'),
(1666,197,183,30,40,70,'A',5,'published','2025-04-30',1,'2025-04-30'),
(1667,82,46,32,11,43,'E',1,'published','2025-04-30',1,'2025-04-30'),
(1668,23,46,38,34,72,'A',5,'published','2025-04-30',1,'2025-04-30'),
(1669,82,47,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1670,23,47,28,32,60,'B',4,'published','2025-04-30',1,'2025-04-30'),
(1671,23,48,28,36,64,'B',4,'published','2025-04-30',1,'2025-04-30'),
(1672,82,48,27,28,55,'C',3,'published','2025-04-30',1,'2025-04-30'),
(1673,23,127,30,27,57,'C',3,'published','2025-04-30',1,'2025-04-30'),
(1674,23,49,27,33,60,'B',4,'published','2025-04-30',1,'2025-04-30'),
(1675,82,127,28,9,37,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1676,23,50,28,37,65,'B',4,'published','2025-04-30',1,'2025-04-30'),
(1677,82,49,29,24,53,'C',3,'published','2025-04-30',1,'2025-04-30'),
(1678,82,50,30,18,48,'D',2,'published','2025-04-30',1,'2025-04-30'),
(1679,82,51,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1680,97,29,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1681,97,30,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1682,97,32,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1683,97,31,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1684,97,33,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1685,97,34,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1686,82,52,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1687,97,35,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1688,97,36,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1689,97,37,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1690,82,53,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1691,97,186,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1692,97,187,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1693,97,188,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1694,97,189,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1695,97,190,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1696,97,192,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1697,97,191,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1698,97,278,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1699,97,279,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1700,230,280,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1701,230,281,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1702,237,281,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1703,230,282,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1704,237,280,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1705,230,283,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1706,230,284,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1707,237,282,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1708,230,285,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1709,230,286,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1710,230,287,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1711,237,287,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1712,237,283,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1713,237,285,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1714,237,286,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1715,237,284,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1716,97,122,22,29,51,'C',3,'published','2025-04-30',1,'2025-04-30'),
(1717,97,123,26,35,61,'B',4,'published','2025-04-30',1,'2025-04-30'),
(1718,97,124,25,52,77,'A',5,'published','2025-04-30',1,'2025-04-30'),
(1719,97,128,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1720,97,125,20,35,55,'C',3,'published','2025-04-30',1,'2025-04-30'),
(1721,97,126,14,48,62,'B',4,'published','2025-04-30',1,'2025-04-30'),
(1722,97,129,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1723,97,130,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1724,97,277,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1725,83,52,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1726,40,288,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1727,40,289,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1728,40,290,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1729,83,53,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1730,40,291,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1731,40,292,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1732,40,293,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1733,40,294,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1734,40,295,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1735,40,296,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1736,40,297,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1737,40,298,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1738,40,299,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1739,40,300,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1740,40,301,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1741,40,302,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1742,40,303,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1743,40,304,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1744,40,305,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1745,8,51,25,35,60,'B',4,'published','2025-04-30',1,'2025-04-30'),
(1746,8,46,33,22,55,'C',3,'published','2025-04-30',1,'2025-04-30'),
(1747,8,47,27,29,56,'C',3,'published','2025-04-30',1,'2025-04-30'),
(1748,8,48,26,47,73,'A',5,'published','2025-04-30',1,'2025-04-30'),
(1749,8,127,30,44,74,'A',5,'published','2025-04-30',1,'2025-04-30'),
(1750,8,49,25,48,73,'A',5,'published','2025-04-30',1,'2025-04-30');
INSERT INTO `results` (`id`,`student_id`,`course_offering_id`,`continuous_assessment`,`exam_score`,`total_score`,`letter_grade`,`grade_point`,`status`,`published_at`,`updated_by`,`updated_at`) VALUES
(1751,8,50,25,48,73,'A',5,'published','2025-04-30',1,'2025-04-30'),
(1752,241,2,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1753,241,13,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1754,241,14,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1755,241,15,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1756,241,16,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1757,236,281,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1758,241,17,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1759,236,280,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1760,241,18,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1761,236,282,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1762,241,19,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1763,236,283,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1764,236,284,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1765,236,287,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1766,236,285,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1767,236,286,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1768,236,306,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1769,236,307,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1770,236,308,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1771,236,309,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1772,236,310,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1773,236,311,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1774,236,312,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1775,241,20,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1776,241,21,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1777,236,313,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1778,241,22,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1779,236,314,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1780,241,23,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1781,241,24,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1782,241,25,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1783,241,26,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1784,241,27,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1785,241,28,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1786,240,1,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1787,240,3,26,37,63,'B',4,'published','2025-04-30',1,'2025-04-30'),
(1788,240,4,20,42,62,'B',4,'published','2025-04-30',1,'2025-04-30'),
(1789,240,5,21,38,59,'C',3,'published','2025-04-30',1,'2025-04-30'),
(1790,240,10,20,50,70,'A',5,'published','2025-04-30',1,'2025-04-30'),
(1791,240,11,28,32,60,'B',4,'published','2025-04-30',1,'2025-04-30'),
(1792,240,12,16,44,60,'B',4,'published','2025-04-30',1,'2025-04-30'),
(1793,240,276,20,30,50,'C',3,'published','2025-04-30',1,'2025-04-30'),
(1794,240,6,27,30,57,'C',3,'published','2025-04-30',1,'2025-04-30'),
(1795,240,7,26,43,69,'B',4,'published','2025-04-30',1,'2025-04-30'),
(1796,240,8,20,51,71,'A',5,'published','2025-04-30',1,'2025-04-30'),
(1797,240,9,20,41,61,'B',4,'published','2025-04-30',1,'2025-04-30'),
(1798,240,54,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1799,240,55,28,23,51,'C',3,'published','2025-04-30',1,'2025-04-30'),
(1800,240,56,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1801,240,57,25,30,55,'C',3,'published','2025-04-30',1,'2025-04-30'),
(1802,240,58,25,46,71,'A',5,'published','2025-04-30',1,'2025-04-30'),
(1803,240,59,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1804,240,60,20,35,55,'C',3,'published','2025-04-30',1,'2025-04-30'),
(1805,240,61,16,37,53,'C',3,'published','2025-04-30',1,'2025-04-30'),
(1806,240,62,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1807,111,49,28,25,53,'C',3,'published','2025-04-30',1,'2025-04-30'),
(1808,111,50,30,20,50,'C',3,'published','2025-04-30',1,'2025-04-30'),
(1809,111,127,29,6,35,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1810,111,48,27,27,54,'C',3,'published','2025-04-30',1,'2025-04-30'),
(1811,111,46,10,14,24,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1812,111,51,24,34,58,'C',3,'published','2025-04-30',1,'2025-04-30'),
(1813,111,52,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1814,111,53,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1815,111,13,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1816,111,14,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1817,111,2,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1818,111,17,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1819,111,16,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1820,111,15,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1821,111,18,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1822,111,19,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1823,111,21,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1824,111,20,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1825,111,22,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1826,111,23,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1827,111,24,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1828,111,25,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1829,111,26,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1830,111,27,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1831,111,28,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1832,193,315,15,55,70,'A',5,'published','2025-04-30',1,'2025-04-30'),
(1833,193,316,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1834,193,317,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1835,193,318,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1836,193,319,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1837,193,320,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1838,193,321,30,8,38,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1839,198,212,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1840,198,213,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1841,198,214,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1842,198,215,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1843,198,216,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1844,198,217,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1845,198,218,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1846,198,219,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1847,198,220,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1848,198,221,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1849,198,222,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1850,198,234,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1851,198,223,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1852,198,224,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1853,198,225,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1854,198,226,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1855,198,227,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1856,198,228,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1857,198,229,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1858,198,230,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1859,198,231,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1860,198,232,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1861,45,48,27,33,60,'B',4,'published','2025-04-30',1,'2025-04-30'),
(1862,45,127,29,59,88,'A',5,'published','2025-04-30',1,'2025-04-30'),
(1863,45,49,28,24,52,'C',3,'published','2025-04-30',1,'2025-04-30'),
(1864,45,50,28,37,65,'B',4,'published','2025-04-30',1,'2025-04-30'),
(1865,45,322,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1866,45,46,35,13,48,'D',2,'published','2025-04-30',1,'2025-04-30'),
(1867,45,47,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1868,45,323,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1869,45,52,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1870,45,324,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1871,45,53,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1872,45,325,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1873,45,51,23,27,50,'C',3,'published','2025-04-30',1,'2025-04-30'),
(1874,45,326,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1875,45,327,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1876,45,328,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1877,45,329,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1878,98,29,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1879,98,30,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1880,98,32,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1881,98,31,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1882,98,33,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1883,98,34,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1884,98,35,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1885,98,36,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1886,98,37,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1887,98,186,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1888,98,187,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1889,98,188,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1890,98,189,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1891,98,190,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1892,98,192,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1893,98,191,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1894,98,278,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1895,98,279,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1896,98,122,24,44,68,'B',4,'published','2025-04-30',1,'2025-04-30'),
(1897,98,123,25,50,75,'A',5,'published','2025-04-30',1,'2025-04-30'),
(1898,98,124,21,50,71,'A',5,'published','2025-04-30',1,'2025-04-30'),
(1899,98,128,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1900,98,125,20,45,65,'B',4,'published','2025-04-30',1,'2025-04-30'),
(1901,98,126,14,44,58,'C',3,'published','2025-04-30',1,'2025-04-30'),
(1902,98,129,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1903,98,130,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1904,98,277,0,0,0,'F',0,'published','2025-04-30',1,'2025-04-30'),
(1905,27,40,24,68,92,'A',5,'published','2025-05-01',1,'2025-05-01'),
(1906,27,41,0,0,0,'F',0,'published','2025-05-01',1,'2025-05-01'),
(1907,27,42,10,44,54,'C',3,'published','2025-05-01',1,'2025-05-01'),
(1908,27,43,10,52,62,'B',4,'published','2025-05-01',1,'2025-05-01'),
(1909,27,44,22,40,62,'B',4,'published','2025-05-01',1,'2025-05-01'),
(1910,27,45,18,33,51,'C',3,'published','2025-05-01',1,'2025-05-01'),
(1911,27,38,0,0,0,'F',0,'published','2025-05-01',1,'2025-05-01'),
(1912,27,39,20,32,52,'C',3,'published','2025-05-01',1,'2025-05-01'),
(1913,226,314,0,0,0,'F',0,'published','2025-05-01',1,'2025-05-01'),
(1914,242,223,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1915,242,224,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1916,242,225,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1917,242,226,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1918,242,227,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1919,242,228,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1920,242,229,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1921,242,230,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1922,242,231,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1923,242,232,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1924,242,212,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1925,242,213,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1926,242,214,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1927,242,215,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1928,242,216,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1929,242,217,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1930,242,218,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1931,242,219,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1932,242,220,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1933,242,221,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1934,242,222,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1935,242,234,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1936,243,2,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1937,243,14,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1938,243,16,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1939,243,18,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1940,243,19,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1941,243,13,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1942,243,15,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1943,243,17,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1944,243,20,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1945,243,21,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1946,243,22,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1947,243,23,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1948,243,24,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1949,243,25,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1950,243,26,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1951,243,27,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1952,243,28,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1953,213,315,15,35,50,'C',3,'published','2025-05-02',1,'2025-05-02'),
(1954,213,316,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1955,213,317,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1956,213,318,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1957,213,321,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1958,244,281,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1959,244,280,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1960,244,282,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1961,244,283,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1962,244,286,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1963,244,285,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1964,244,287,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1965,244,284,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1966,221,235,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1967,244,306,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1968,244,307,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1969,244,308,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1970,244,309,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1971,244,310,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1972,221,237,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1973,244,311,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1974,244,312,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1975,244,313,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1976,244,314,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1977,221,238,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1978,221,239,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1979,221,243,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1980,221,244,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1981,221,240,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1982,221,236,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1983,221,242,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1984,221,241,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1985,221,245,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1986,221,246,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1987,221,247,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1988,221,248,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1989,221,249,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1990,221,250,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1991,221,251,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1992,221,252,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1993,221,253,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1994,221,254,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1995,221,255,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1996,221,256,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1997,244,330,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1998,244,116,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(1999,244,117,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2000,244,331,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02');
INSERT INTO `results` (`id`,`student_id`,`course_offering_id`,`continuous_assessment`,`exam_score`,`total_score`,`letter_grade`,`grade_point`,`status`,`published_at`,`updated_by`,`updated_at`) VALUES
(2001,244,118,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2002,244,119,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2003,244,120,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2004,244,121,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2005,244,332,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2006,244,333,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2007,244,334,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2008,244,335,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2009,244,336,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2010,244,337,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2011,244,338,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2012,244,339,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2013,244,340,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2014,219,282,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2015,219,281,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2016,219,280,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2017,219,283,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2018,219,284,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2019,221,275,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2020,221,257,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2021,248,281,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2022,248,280,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2023,248,282,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2024,248,283,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2025,248,284,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2026,248,287,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2027,248,285,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2028,248,286,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2029,248,306,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2030,248,307,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2031,248,308,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2032,248,309,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2033,248,310,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2034,248,311,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2035,248,312,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2036,248,313,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2037,214,316,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2038,214,315,15,55,70,'A',5,'published','2025-05-02',1,'2025-05-02'),
(2039,214,317,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2040,214,318,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2041,214,320,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2042,214,321,0,7,7,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2043,213,320,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2044,215,92,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2045,215,93,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2046,249,235,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2047,249,236,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2048,215,95,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2049,249,238,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2050,249,237,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2051,249,239,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2052,249,240,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2053,249,241,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2054,249,246,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2055,215,99,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2056,249,245,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2057,215,100,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2058,249,244,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2059,215,101,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2060,249,243,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2061,215,102,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2062,249,242,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2063,215,103,18,42,60,'B',4,'published','2025-05-02',1,'2025-05-02'),
(2064,215,104,27,34,61,'B',4,'published','2025-05-02',1,'2025-05-02'),
(2065,215,105,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2066,215,94,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2067,215,96,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2068,215,97,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2069,215,98,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2070,249,247,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2071,249,248,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2072,249,249,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2073,249,250,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2074,249,251,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2075,249,252,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2076,249,253,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2077,249,254,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2078,249,255,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2079,249,256,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2080,231,331,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2081,231,118,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2082,231,119,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2083,231,120,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2084,231,121,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2085,231,337,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2086,231,338,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2087,231,339,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2088,231,340,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2089,231,336,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2090,231,335,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2091,231,334,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2092,231,333,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2093,231,332,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2094,231,281,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2095,231,282,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2096,231,283,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2097,231,284,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2098,231,287,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2099,231,285,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2100,231,286,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2101,231,307,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2102,231,308,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2103,231,309,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2104,231,310,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2105,231,311,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2106,231,312,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2107,231,313,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2108,231,314,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2109,151,108,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2110,250,200,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2111,151,83,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2112,151,84,23,49,72,'A',5,'published','2025-05-02',1,'2025-05-02'),
(2113,151,85,25,35,60,'B',4,'published','2025-05-02',1,'2025-05-02'),
(2114,151,86,20,30,50,'C',3,'published','2025-05-02',1,'2025-05-02'),
(2115,151,87,26,38,64,'B',4,'published','2025-05-02',1,'2025-05-02'),
(2116,151,88,21,47,68,'B',4,'published','2025-05-02',1,'2025-05-02'),
(2117,151,89,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2118,151,90,24,29,53,'C',3,'published','2025-05-02',1,'2025-05-02'),
(2119,150,86,20,35,55,'C',3,'published','2025-05-02',1,'2025-05-02'),
(2120,150,83,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2121,150,84,10,47,57,'C',3,'published','2025-05-02',1,'2025-05-02'),
(2122,150,85,26,36,62,'B',4,'published','2025-05-02',1,'2025-05-02'),
(2123,150,87,27,36,63,'B',4,'published','2025-05-02',1,'2025-05-02'),
(2124,150,88,20,47,67,'B',4,'published','2025-05-02',1,'2025-05-02'),
(2125,150,89,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2126,150,90,24,29,53,'C',3,'published','2025-05-02',1,'2025-05-02'),
(2127,227,330,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2128,227,116,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2129,227,117,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2130,227,331,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2131,227,119,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2132,227,118,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2133,227,120,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2134,227,121,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2135,227,332,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2136,227,333,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2137,227,334,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2138,227,335,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2139,227,336,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2140,227,337,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2141,227,338,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2142,227,339,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2143,227,340,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2144,219,287,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2145,219,285,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2146,219,286,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2147,219,306,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2148,219,307,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2149,219,308,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2150,219,309,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2151,219,310,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2152,219,311,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2153,219,312,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2154,219,313,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2155,219,314,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2156,219,330,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2157,219,116,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2158,219,117,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2159,219,331,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2160,219,118,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2161,219,119,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2162,219,120,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2163,219,121,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2164,219,332,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2165,219,333,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2166,219,334,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2167,219,335,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2168,219,336,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2169,219,337,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2170,219,338,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2171,219,339,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2172,219,340,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2173,218,281,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2174,218,280,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2175,218,282,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2176,218,283,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2177,218,284,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2178,218,287,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2179,218,285,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2180,218,286,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2181,218,306,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2182,218,307,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2183,218,308,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2184,218,309,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2185,218,310,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2186,218,311,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2187,218,312,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2188,218,313,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2189,218,314,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2190,218,330,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2191,218,116,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2192,218,117,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2193,218,331,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2194,218,118,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2195,218,119,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2196,218,120,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2197,218,121,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2198,218,332,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2199,218,333,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2200,218,334,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2201,218,335,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2202,218,336,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2203,218,337,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2204,218,338,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2205,218,339,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2206,218,340,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2207,237,333,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2208,237,334,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2209,237,335,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2210,237,336,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2211,237,337,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2212,237,338,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2213,237,339,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2214,237,340,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2215,237,332,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2216,237,116,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2217,237,117,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2218,237,330,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2219,237,331,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2220,237,118,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2221,237,119,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2222,237,120,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2223,237,121,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2224,203,315,15,50,65,'B',4,'published','2025-05-02',1,'2025-05-02'),
(2225,203,316,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2226,203,317,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2227,203,318,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2228,203,320,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2229,203,321,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2230,211,185,20,41,61,'B',4,'published','2025-05-02',1,'2025-05-02'),
(2231,211,184,25,42,67,'B',4,'published','2025-05-02',1,'2025-05-02'),
(2232,211,193,20,45,65,'B',4,'published','2025-05-02',1,'2025-05-02'),
(2233,211,194,29,13,42,'E',1,'published','2025-05-02',1,'2025-05-02'),
(2234,211,195,26,26,52,'C',3,'published','2025-05-02',1,'2025-05-02'),
(2235,211,199,20,53,73,'A',5,'published','2025-05-02',1,'2025-05-02'),
(2236,211,198,28,13,41,'E',1,'published','2025-05-02',1,'2025-05-02'),
(2237,211,197,25,15,40,'E',1,'published','2025-05-02',1,'2025-05-02'),
(2238,211,196,20,36,56,'C',3,'published','2025-05-02',1,'2025-05-02'),
(2239,36,185,21,34,55,'C',3,'published','2025-05-02',1,'2025-05-02'),
(2240,36,184,24,41,65,'B',4,'published','2025-05-02',1,'2025-05-02'),
(2241,36,193,20,50,70,'A',5,'published','2025-05-02',1,'2025-05-02'),
(2242,36,194,28,23,51,'C',3,'published','2025-05-02',1,'2025-05-02'),
(2243,36,195,28,49,77,'A',5,'published','2025-05-02',1,'2025-05-02'),
(2244,36,197,29,22,51,'C',3,'published','2025-05-02',1,'2025-05-02'),
(2245,36,196,20,40,60,'B',4,'published','2025-05-02',1,'2025-05-02'),
(2246,36,199,20,58,78,'A',5,'published','2025-05-02',1,'2025-05-02'),
(2247,36,223,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2248,36,224,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2249,36,225,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2250,36,226,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02');
INSERT INTO `results` (`id`,`student_id`,`course_offering_id`,`continuous_assessment`,`exam_score`,`total_score`,`letter_grade`,`grade_point`,`status`,`published_at`,`updated_by`,`updated_at`) VALUES
(2251,36,227,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2252,36,228,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2253,36,229,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2254,36,230,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2255,36,231,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2256,36,232,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2257,36,212,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2258,36,213,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2259,36,214,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2260,36,215,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2261,36,216,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2262,36,217,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2263,36,218,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2264,36,219,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2265,36,220,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2266,36,221,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2267,36,222,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2268,36,234,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2269,36,175,0,0,0,'F',0,'published','2025-05-02',1,'2025-05-02'),
(2270,36,176,15,70,85,'A',5,'published','2025-05-02',1,'2025-05-02'),
(2271,36,177,15,60,75,'A',5,'published','2025-05-02',1,'2025-05-02'),
(2272,36,178,20,50,70,'A',5,'published','2025-05-02',1,'2025-05-02'),
(2273,36,179,26,38,64,'B',4,'published','2025-05-02',1,'2025-05-02'),
(2274,36,180,29,45,74,'A',5,'published','2025-05-02',1,'2025-05-02'),
(2275,36,181,20,39,59,'C',3,'published','2025-05-02',1,'2025-05-02'),
(2276,36,182,17,47,64,'B',4,'published','2025-05-02',1,'2025-05-02'),
(2277,36,183,30,42,72,'A',5,'published','2025-05-02',1,'2025-05-02'),
(2278,229,317,0,0,0,'F',0,'published','2025-05-04',1,'2025-05-04'),
(2279,229,318,0,0,0,'F',0,'published','2025-05-04',1,'2025-05-04'),
(2280,229,319,0,0,0,'F',0,'published','2025-05-04',1,'2025-05-04'),
(2281,229,315,15,40,55,'C',3,'published','2025-05-04',1,'2025-05-04'),
(2282,229,316,0,0,0,'F',0,'published','2025-05-04',1,'2025-05-04'),
(2283,229,320,0,0,0,'F',0,'published','2025-05-04',1,'2025-05-04'),
(2284,229,321,30,4,34,'F',0,'published','2025-05-04',1,'2025-05-04'),
(2285,230,315,15,55,70,'A',5,'published','2025-05-04',1,'2025-05-04'),
(2286,230,316,0,0,0,'F',0,'published','2025-05-04',1,'2025-05-04'),
(2287,230,317,0,0,0,'F',0,'published','2025-05-04',1,'2025-05-04'),
(2288,230,318,0,0,0,'F',0,'published','2025-05-04',1,'2025-05-04'),
(2289,230,319,0,0,0,'F',0,'published','2025-05-04',1,'2025-05-04'),
(2290,230,320,0,0,0,'F',0,'published','2025-05-04',1,'2025-05-04'),
(2291,230,321,10,9,19,'F',0,'published','2025-05-04',1,'2025-05-04'),
(2292,88,50,27,45,72,'A',5,'published','2025-05-05',1,'2025-05-05'),
(2293,88,127,27,28,55,'C',3,'published','2025-05-05',1,'2025-05-05'),
(2294,236,315,15,50,65,'B',4,'published','2025-05-05',1,'2025-05-05'),
(2295,236,316,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2296,236,318,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2297,236,317,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2298,236,319,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2299,236,320,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2300,236,321,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2301,236,341,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2302,236,342,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2303,236,343,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2304,236,330,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2305,236,116,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2306,236,117,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2307,236,331,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2308,236,118,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2309,236,119,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2310,236,120,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2311,236,121,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2312,245,315,15,50,65,'B',4,'published','2025-05-05',1,'2025-05-05'),
(2313,245,316,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2314,245,317,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2315,245,318,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2316,245,319,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2317,245,321,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2318,245,320,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2319,245,341,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2320,245,342,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2321,245,343,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2322,245,281,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2323,245,280,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2324,245,282,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2325,245,283,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2326,245,284,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2327,245,287,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2328,245,285,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2329,245,286,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2330,245,314,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2331,245,313,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2332,245,312,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2333,245,311,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2334,245,310,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2335,245,306,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2336,245,307,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2337,245,308,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2338,245,309,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2339,245,330,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2340,245,116,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2341,245,117,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2342,245,331,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2343,245,118,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2344,245,119,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2345,245,120,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2346,245,121,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2347,245,340,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2348,245,339,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2349,245,338,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2350,245,337,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2351,245,336,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2352,245,335,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2353,245,334,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2354,245,333,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2355,245,332,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2356,242,195,28,50,78,'A',5,'published','2025-05-05',1,'2025-05-05'),
(2357,242,193,20,57,77,'A',5,'published','2025-05-05',1,'2025-05-05'),
(2358,242,185,21,38,59,'C',3,'published','2025-05-05',1,'2025-05-05'),
(2359,242,184,17,30,47,'D',2,'published','2025-05-05',1,'2025-05-05'),
(2360,242,194,26,35,61,'B',4,'published','2025-05-05',1,'2025-05-05'),
(2361,242,199,20,55,75,'A',5,'published','2025-05-05',1,'2025-05-05'),
(2362,242,198,27,35,62,'B',4,'published','2025-05-05',1,'2025-05-05'),
(2363,242,196,20,42,62,'B',4,'published','2025-05-05',1,'2025-05-05'),
(2364,242,197,27,33,60,'B',4,'published','2025-05-05',1,'2025-05-05'),
(2365,253,83,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2366,253,84,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2367,253,85,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2368,253,86,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2369,253,91,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2370,253,90,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2371,253,89,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2372,253,88,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2373,253,87,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2374,253,108,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2375,253,109,28,23,51,'C',3,'published','2025-05-05',1,'2025-05-05'),
(2376,253,110,22,30,52,'C',3,'published','2025-05-05',1,'2025-05-05'),
(2377,253,111,23,32,55,'C',3,'published','2025-05-05',1,'2025-05-05'),
(2378,253,211,10,18,28,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2379,253,115,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2380,253,114,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2381,253,113,16,38,54,'C',3,'published','2025-05-05',1,'2025-05-05'),
(2382,253,112,21,30,51,'C',3,'published','2025-05-05',1,'2025-05-05'),
(2383,237,315,15,50,65,'B',4,'published','2025-05-05',1,'2025-05-05'),
(2384,237,316,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2385,237,317,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2386,237,318,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2387,237,319,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2388,237,320,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2389,237,321,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2390,69,232,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2391,69,231,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2392,69,230,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2393,69,229,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2394,69,228,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2395,69,227,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2396,69,226,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2397,69,225,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2398,69,224,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2399,69,223,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2400,25,46,36,27,63,'B',4,'published','2025-05-05',1,'2025-05-05'),
(2401,25,47,27,28,55,'C',3,'published','2025-05-05',1,'2025-05-05'),
(2402,25,48,28,39,67,'B',4,'published','2025-05-05',1,'2025-05-05'),
(2403,25,127,29,19,48,'D',2,'published','2025-05-05',1,'2025-05-05'),
(2404,25,49,25,40,65,'B',4,'published','2025-05-05',1,'2025-05-05'),
(2405,25,50,28,37,65,'B',4,'published','2025-05-05',1,'2025-05-05'),
(2406,25,51,20,30,50,'C',3,'published','2025-05-05',1,'2025-05-05'),
(2407,25,52,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2408,25,53,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2409,158,200,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2410,158,201,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2411,158,202,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2412,158,203,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2413,158,204,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2414,158,205,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2415,158,206,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2416,158,207,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2417,158,208,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2418,158,209,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2419,158,210,0,0,0,'F',0,'published','2025-05-05',1,'2025-05-05'),
(2420,35,2,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2421,35,20,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2422,35,21,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2423,35,22,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2424,35,23,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2425,35,24,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2426,35,25,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2427,35,26,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2428,35,27,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2429,35,28,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2430,255,281,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2431,255,280,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2432,255,282,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2433,255,284,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2434,255,287,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2435,255,285,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2436,255,286,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2437,255,283,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2438,255,306,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2439,255,307,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2440,255,308,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2441,255,309,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2442,255,310,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2443,255,311,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2444,255,312,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2445,255,313,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2446,255,314,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2447,256,281,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2448,256,280,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2449,256,282,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2450,256,283,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2451,256,284,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2452,256,287,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2453,256,285,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2454,256,286,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2455,256,306,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2456,256,308,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2457,256,309,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2458,256,310,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2459,256,311,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2460,256,312,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2461,256,313,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2462,256,314,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2463,259,281,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2464,259,280,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2465,259,282,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2466,259,283,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2467,259,284,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2468,259,287,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2469,259,285,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2470,259,286,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2471,259,314,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2472,259,313,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2473,259,312,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2474,259,311,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2475,259,310,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2476,259,309,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2477,259,308,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2478,259,307,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2479,259,306,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2480,257,281,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2481,257,280,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2482,257,282,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2483,257,283,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2484,257,284,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2485,257,286,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2486,257,285,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2487,257,287,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2488,257,306,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2489,257,307,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2490,257,308,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2491,257,309,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2492,257,310,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2493,257,311,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2494,257,312,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2495,257,313,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2496,257,314,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2497,168,92,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2498,168,93,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2499,168,95,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2500,168,94,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06');
INSERT INTO `results` (`id`,`student_id`,`course_offering_id`,`continuous_assessment`,`exam_score`,`total_score`,`letter_grade`,`grade_point`,`status`,`published_at`,`updated_by`,`updated_at`) VALUES
(2501,168,96,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2502,168,97,0,0,0,'F',0,'published','2025-05-06',1,'2025-05-06'),
(2503,108,51,25,40,65,'B',4,'published','2025-05-07',1,'2025-05-07'),
(2504,108,52,0,0,0,'F',0,'published','2025-05-07',1,'2025-05-07'),
(2505,108,53,0,0,0,'F',0,'published','2025-05-07',1,'2025-05-07'),
(2506,108,50,27,37,64,'B',4,'published','2025-05-07',1,'2025-05-07'),
(2507,3,154,0,0,0,'F',0,'published','2025-05-07',1,'2025-05-07'),
(2508,3,155,0,0,0,'F',0,'published','2025-05-07',1,'2025-05-07'),
(2509,3,156,0,0,0,'F',0,'published','2025-05-07',1,'2025-05-07'),
(2510,3,157,0,0,0,'F',0,'published','2025-05-07',1,'2025-05-07'),
(2511,3,158,0,0,0,'F',0,'published','2025-05-07',1,'2025-05-07'),
(2512,3,159,0,0,0,'F',0,'published','2025-05-07',1,'2025-05-07'),
(2513,3,160,0,0,0,'F',0,'published','2025-05-07',1,'2025-05-07'),
(2514,3,161,0,0,0,'F',0,'published','2025-05-07',1,'2025-05-07'),
(2515,3,162,0,0,0,'F',0,'published','2025-05-07',1,'2025-05-07'),
(2516,3,163,0,0,0,'F',0,'published','2025-05-07',1,'2025-05-07'),
(2517,3,164,0,0,0,'F',0,'published','2025-05-07',1,'2025-05-07'),
(2518,3,165,0,0,0,'F',0,'published','2025-05-07',1,'2025-05-07'),
(2519,3,166,0,0,0,'F',0,'published','2025-05-07',1,'2025-05-07'),
(2520,3,167,0,0,0,'F',0,'published','2025-05-07',1,'2025-05-07'),
(2521,3,168,0,0,0,'F',0,'published','2025-05-07',1,'2025-05-07'),
(2522,3,169,0,0,0,'F',0,'published','2025-05-07',1,'2025-05-07'),
(2523,3,170,0,0,0,'F',0,'published','2025-05-07',1,'2025-05-07'),
(2524,3,171,0,0,0,'F',0,'published','2025-05-07',1,'2025-05-07'),
(2525,3,172,0,0,0,'F',0,'published','2025-05-07',1,'2025-05-07'),
(2526,3,173,0,0,0,'F',0,'published','2025-05-07',1,'2025-05-07'),
(2527,3,174,0,0,0,'F',0,'published','2025-05-07',1,'2025-05-07'),
(2528,3,138,0,0,0,'F',0,'published','2025-05-07',1,'2025-05-07'),
(2529,3,139,21,8,29,'F',0,'published','2025-05-07',1,'2025-05-07'),
(2530,3,140,18,22,40,'E',1,'published','2025-05-07',1,'2025-05-07'),
(2531,3,141,25,23,48,'D',2,'published','2025-05-07',1,'2025-05-07'),
(2532,3,142,30,26,56,'C',3,'published','2025-05-07',1,'2025-05-07'),
(2533,3,143,20,35,55,'C',3,'published','2025-05-07',1,'2025-05-07'),
(2534,3,144,15,35,50,'C',3,'published','2025-05-07',1,'2025-05-07'),
(2535,3,145,36,7,43,'E',1,'published','2025-05-07',1,'2025-05-07'),
(2536,3,146,20,30,50,'C',3,'published','2025-05-07',1,'2025-05-07'),
(2537,3,147,26,11,37,'F',0,'published','2025-05-07',1,'2025-05-07'),
(2538,3,148,23,25,48,'D',2,'published','2025-05-07',1,'2025-05-07'),
(2539,3,149,21,20,41,'E',1,'published','2025-05-07',1,'2025-05-07'),
(2540,3,150,23,30,53,'C',3,'published','2025-05-07',1,'2025-05-07'),
(2541,3,151,29,21,50,'C',3,'published','2025-05-07',1,'2025-05-07'),
(2542,3,152,26,26,52,'C',3,'published','2025-05-07',1,'2025-05-07'),
(2543,3,153,20,14,34,'F',0,'published','2025-05-07',1,'2025-05-07'),
(2544,39,281,0,0,0,'F',0,'published','2025-05-07',1,'2025-05-07'),
(2545,39,280,0,0,0,'F',0,'published','2025-05-07',1,'2025-05-07'),
(2546,39,283,0,0,0,'F',0,'published','2025-05-07',1,'2025-05-07'),
(2547,39,284,0,0,0,'F',0,'published','2025-05-07',1,'2025-05-07'),
(2548,39,287,0,0,0,'F',0,'published','2025-05-07',1,'2025-05-07'),
(2549,39,306,0,0,0,'F',0,'published','2025-05-07',1,'2025-05-07'),
(2550,39,307,0,0,0,'F',0,'published','2025-05-07',1,'2025-05-07'),
(2551,39,308,0,0,0,'F',0,'published','2025-05-07',1,'2025-05-07'),
(2552,39,309,0,0,0,'F',0,'published','2025-05-07',1,'2025-05-07'),
(2553,39,310,0,0,0,'F',0,'published','2025-05-07',1,'2025-05-07'),
(2554,39,311,0,0,0,'F',0,'published','2025-05-07',1,'2025-05-07'),
(2555,39,312,0,0,0,'F',0,'published','2025-05-07',1,'2025-05-07'),
(2556,39,313,0,0,0,'F',0,'published','2025-05-07',1,'2025-05-07'),
(2557,39,314,0,0,0,'F',0,'published','2025-05-07',1,'2025-05-07'),
(2558,103,147,0,0,0,'F',0,'published','2025-05-07',1,'2025-05-07'),
(2559,103,149,0,0,0,'F',0,'published','2025-05-07',1,'2025-05-07'),
(2560,103,148,0,0,0,'F',0,'published','2025-05-07',1,'2025-05-07'),
(2561,103,150,0,0,0,'F',0,'published','2025-05-07',1,'2025-05-07'),
(2562,103,151,0,0,0,'F',0,'published','2025-05-07',1,'2025-05-07'),
(2563,103,152,0,0,0,'F',0,'published','2025-05-07',1,'2025-05-07'),
(2564,103,153,0,0,0,'F',0,'published','2025-05-07',1,'2025-05-07'),
(2565,103,138,0,0,0,'F',0,'published','2025-05-07',1,'2025-05-07'),
(2566,103,139,22,36,58,'C',3,'published','2025-05-07',1,'2025-05-07'),
(2567,103,140,17,33,50,'C',3,'published','2025-05-07',1,'2025-05-07'),
(2568,103,141,25,36,61,'B',4,'published','2025-05-07',1,'2025-05-07'),
(2569,103,142,20,36,56,'C',3,'published','2025-05-07',1,'2025-05-07'),
(2570,103,143,20,30,50,'C',3,'published','2025-05-07',1,'2025-05-07'),
(2571,103,144,19,51,70,'A',5,'published','2025-05-07',1,'2025-05-07'),
(2572,103,145,34,14,48,'D',2,'published','2025-05-07',1,'2025-05-07'),
(2573,103,146,20,30,50,'C',3,'published','2025-05-07',1,'2025-05-07'),
(2574,93,40,20,32,52,'C',3,'published','2025-05-07',1,'2025-05-07'),
(2575,93,41,0,0,0,'F',0,'published','2025-05-07',1,'2025-05-07'),
(2576,93,42,10,36,46,'D',2,'published','2025-05-07',1,'2025-05-07'),
(2577,93,43,10,53,63,'B',4,'published','2025-05-07',1,'2025-05-07'),
(2578,93,44,22,55,77,'A',5,'published','2025-05-07',1,'2025-05-07'),
(2579,93,45,18,42,60,'B',4,'published','2025-05-07',1,'2025-05-07'),
(2580,243,46,28,20,48,'D',2,'published','2025-05-08',1,'2025-05-08'),
(2581,243,47,28,8,36,'F',0,'published','2025-05-08',1,'2025-05-08'),
(2582,244,315,15,45,60,'B',4,'published','2025-05-08',1,'2025-05-08'),
(2583,243,48,28,28,56,'C',3,'published','2025-05-08',1,'2025-05-08'),
(2584,244,316,0,0,0,'F',0,'published','2025-05-08',1,'2025-05-08'),
(2585,243,127,29,21,50,'C',3,'published','2025-05-08',1,'2025-05-08'),
(2586,244,317,0,0,0,'F',0,'published','2025-05-08',1,'2025-05-08'),
(2587,243,49,29,23,52,'C',3,'published','2025-05-08',1,'2025-05-08'),
(2588,244,318,0,0,0,'F',0,'published','2025-05-08',1,'2025-05-08'),
(2589,244,319,0,0,0,'F',0,'published','2025-05-08',1,'2025-05-08'),
(2590,243,50,29,29,58,'C',3,'published','2025-05-08',1,'2025-05-08'),
(2591,244,320,0,0,0,'F',0,'published','2025-05-08',1,'2025-05-08'),
(2592,244,321,30,28,58,'C',3,'published','2025-05-08',1,'2025-05-08'),
(2593,244,342,0,0,0,'F',0,'published','2025-05-08',1,'2025-05-08'),
(2594,243,51,22,32,54,'C',3,'published','2025-05-08',1,'2025-05-08'),
(2595,243,53,0,0,0,'F',0,'published','2025-05-08',1,'2025-05-08'),
(2596,243,52,0,0,0,'F',0,'published','2025-05-08',1,'2025-05-08'),
(2597,272,185,23,42,65,'B',4,'published','2025-05-08',1,'2025-05-08'),
(2598,272,184,17,40,57,'C',3,'published','2025-05-08',1,'2025-05-08'),
(2599,272,196,20,35,55,'C',3,'published','2025-05-08',1,'2025-05-08'),
(2600,272,197,29,27,56,'C',3,'published','2025-05-08',1,'2025-05-08'),
(2601,272,198,25,18,43,'E',1,'published','2025-05-08',1,'2025-05-08'),
(2602,272,199,20,55,75,'A',5,'published','2025-05-08',1,'2025-05-08'),
(2603,272,195,25,53,78,'A',5,'published','2025-05-08',1,'2025-05-08'),
(2604,272,194,28,18,46,'D',2,'published','2025-05-08',1,'2025-05-08'),
(2605,272,193,20,58,78,'A',5,'published','2025-05-08',1,'2025-05-08'),
(2606,272,183,28,43,71,'A',5,'published','2025-05-08',1,'2025-05-08'),
(2607,201,185,19,42,61,'B',4,'published','2025-05-08',1,'2025-05-08'),
(2608,201,184,20,39,59,'C',3,'published','2025-05-08',1,'2025-05-08'),
(2609,201,193,20,58,78,'A',5,'published','2025-05-08',1,'2025-05-08'),
(2610,201,194,25,30,55,'C',3,'published','2025-05-08',1,'2025-05-08'),
(2611,201,195,29,49,78,'A',5,'published','2025-05-08',1,'2025-05-08'),
(2612,201,199,20,55,75,'A',5,'published','2025-05-08',1,'2025-05-08'),
(2613,201,198,28,30,58,'C',3,'published','2025-05-08',1,'2025-05-08'),
(2614,201,197,25,29,54,'C',3,'published','2025-05-08',1,'2025-05-08'),
(2615,201,196,20,37,57,'C',3,'published','2025-05-08',1,'2025-05-08'),
(2616,201,220,0,0,0,'F',0,'published','2025-05-08',1,'2025-05-08'),
(2617,201,219,0,0,0,'F',0,'published','2025-05-08',1,'2025-05-08'),
(2618,201,221,0,0,0,'F',0,'published','2025-05-08',1,'2025-05-08'),
(2619,201,222,0,0,0,'F',0,'published','2025-05-08',1,'2025-05-08'),
(2620,201,218,0,0,0,'F',0,'published','2025-05-08',1,'2025-05-08'),
(2621,201,212,0,0,0,'F',0,'published','2025-05-08',1,'2025-05-08'),
(2622,201,213,0,0,0,'F',0,'published','2025-05-08',1,'2025-05-08'),
(2623,201,214,0,0,0,'F',0,'published','2025-05-08',1,'2025-05-08'),
(2624,272,182,19,49,68,'B',4,'published','2025-05-08',1,'2025-05-08'),
(2625,272,181,20,37,57,'C',3,'published','2025-05-08',1,'2025-05-08'),
(2626,272,180,26,48,74,'A',5,'published','2025-05-08',1,'2025-05-08'),
(2627,272,179,26,34,60,'B',4,'published','2025-05-08',1,'2025-05-08'),
(2628,272,178,20,50,70,'A',5,'published','2025-05-08',1,'2025-05-08'),
(2629,272,177,15,64,79,'A',5,'published','2025-05-08',1,'2025-05-08'),
(2630,272,176,19,48,67,'B',4,'published','2025-05-08',1,'2025-05-08'),
(2631,272,175,0,0,0,'F',0,'published','2025-05-08',1,'2025-05-08'),
(2632,165,200,20,32,52,'C',3,'published','2025-05-08',1,'2025-05-08'),
(2633,165,201,23,43,66,'B',4,'published','2025-05-08',1,'2025-05-08'),
(2634,165,202,20,40,60,'B',4,'published','2025-05-08',1,'2025-05-08'),
(2635,165,203,0,0,0,'F',0,'published','2025-05-08',1,'2025-05-08'),
(2636,165,205,27,33,60,'B',4,'published','2025-05-08',1,'2025-05-08'),
(2637,165,206,20,40,60,'B',4,'published','2025-05-08',1,'2025-05-08'),
(2638,165,207,20,40,60,'B',4,'published','2025-05-08',1,'2025-05-08'),
(2639,165,208,24,29,53,'C',3,'published','2025-05-08',1,'2025-05-08'),
(2640,165,209,0,0,0,'F',0,'published','2025-05-08',1,'2025-05-08'),
(2641,165,210,0,0,0,'F',0,'published','2025-05-08',1,'2025-05-08'),
(2642,176,1,0,0,0,'F',0,'published','2025-05-08',1,'2025-05-08'),
(2643,46,198,27,28,55,'C',3,'published','2025-05-08',1,'2025-05-08'),
(2644,46,197,29,13,42,'E',1,'published','2025-05-08',1,'2025-05-08'),
(2645,46,199,20,35,55,'C',3,'published','2025-05-08',1,'2025-05-08'),
(2646,46,195,30,17,47,'D',2,'published','2025-05-08',1,'2025-05-08'),
(2647,46,185,22,30,52,'C',3,'published','2025-05-08',1,'2025-05-08'),
(2648,46,184,23,26,49,'D',2,'published','2025-05-08',1,'2025-05-08'),
(2649,46,193,20,53,73,'A',5,'published','2025-05-08',1,'2025-05-08'),
(2650,46,194,26,28,54,'C',3,'published','2025-05-08',1,'2025-05-08'),
(2651,46,196,20,30,50,'C',3,'published','2025-05-08',1,'2025-05-08'),
(2652,93,29,0,0,0,'F',0,'published','2025-05-08',1,'2025-05-08'),
(2653,93,30,0,0,0,'F',0,'published','2025-05-08',1,'2025-05-08'),
(2654,93,32,0,0,0,'F',0,'published','2025-05-08',1,'2025-05-08'),
(2655,93,31,0,0,0,'F',0,'published','2025-05-08',1,'2025-05-08'),
(2656,93,33,0,0,0,'F',0,'published','2025-05-08',1,'2025-05-08'),
(2657,93,34,0,0,0,'F',0,'published','2025-05-08',1,'2025-05-08'),
(2658,93,35,0,0,0,'F',0,'published','2025-05-08',1,'2025-05-08'),
(2659,93,36,0,0,0,'F',0,'published','2025-05-08',1,'2025-05-08'),
(2660,93,37,0,0,0,'F',0,'published','2025-05-08',1,'2025-05-08'),
(2661,93,186,0,0,0,'F',0,'published','2025-05-08',1,'2025-05-08'),
(2662,93,187,0,0,0,'F',0,'published','2025-05-08',1,'2025-05-08'),
(2663,93,188,0,0,0,'F',0,'published','2025-05-08',1,'2025-05-08'),
(2664,93,189,0,0,0,'F',0,'published','2025-05-08',1,'2025-05-08'),
(2665,93,190,0,0,0,'F',0,'published','2025-05-08',1,'2025-05-08'),
(2666,93,192,0,0,0,'F',0,'published','2025-05-08',1,'2025-05-08'),
(2667,93,191,0,0,0,'F',0,'published','2025-05-08',1,'2025-05-08'),
(2668,93,278,0,0,0,'F',0,'published','2025-05-08',1,'2025-05-08'),
(2669,93,279,0,0,0,'F',0,'published','2025-05-08',1,'2025-05-08'),
(2670,93,122,20,43,63,'B',4,'published','2025-05-08',1,'2025-05-08'),
(2671,93,123,25,57,82,'A',5,'published','2025-05-08',1,'2025-05-08'),
(2672,93,124,20,60,80,'A',5,'published','2025-05-08',1,'2025-05-08'),
(2673,93,128,0,0,0,'F',0,'published','2025-05-08',1,'2025-05-08'),
(2674,93,125,20,43,63,'B',4,'published','2025-05-08',1,'2025-05-08'),
(2675,93,126,13,47,60,'B',4,'published','2025-05-08',1,'2025-05-08'),
(2676,165,204,20,38,58,'C',3,'published','2025-05-08',1,'2025-05-08'),
(2677,113,233,25,42,67,'B',4,'published','2025-05-08',1,'2025-05-08'),
(2678,32,46,34,26,60,'B',4,'published','2025-05-08',1,'2025-05-08'),
(2679,32,47,27,23,50,'C',3,'published','2025-05-08',1,'2025-05-08'),
(2680,32,50,29,30,59,'C',3,'published','2025-05-08',1,'2025-05-08'),
(2681,32,48,28,34,62,'B',4,'published','2025-05-08',1,'2025-05-08'),
(2682,32,49,29,31,60,'B',4,'published','2025-05-08',1,'2025-05-08'),
(2683,32,127,29,17,46,'D',2,'published','2025-05-08',1,'2025-05-08'),
(2684,32,2,0,0,0,'F',0,'published','2025-05-08',1,'2025-05-08'),
(2685,32,13,0,0,0,'F',0,'published','2025-05-08',1,'2025-05-08'),
(2686,32,14,0,0,0,'F',0,'published','2025-05-08',1,'2025-05-08'),
(2687,32,15,0,0,0,'F',0,'published','2025-05-08',1,'2025-05-08'),
(2688,32,16,0,0,0,'F',0,'published','2025-05-08',1,'2025-05-08'),
(2689,32,17,0,0,0,'F',0,'published','2025-05-08',1,'2025-05-08'),
(2690,32,18,0,0,0,'F',0,'published','2025-05-08',1,'2025-05-08'),
(2691,32,19,0,0,0,'F',0,'published','2025-05-08',1,'2025-05-08'),
(2692,32,20,0,0,0,'F',0,'published','2025-05-08',1,'2025-05-08'),
(2693,32,21,0,0,0,'F',0,'published','2025-05-08',1,'2025-05-08'),
(2694,32,22,0,0,0,'F',0,'published','2025-05-08',1,'2025-05-08'),
(2695,32,23,0,0,0,'F',0,'published','2025-05-08',1,'2025-05-08'),
(2696,32,24,0,0,0,'F',0,'published','2025-05-08',1,'2025-05-08'),
(2697,32,25,0,0,0,'F',0,'published','2025-05-08',1,'2025-05-08'),
(2698,32,26,0,0,0,'F',0,'published','2025-05-08',1,'2025-05-08'),
(2699,32,27,0,0,0,'F',0,'published','2025-05-08',1,'2025-05-08'),
(2700,32,28,0,0,0,'F',0,'published','2025-05-08',1,'2025-05-08'),
(2701,113,185,23,45,68,'B',4,'published','2025-05-08',1,'2025-05-08'),
(2702,113,184,17,30,47,'D',2,'published','2025-05-08',1,'2025-05-08'),
(2703,113,196,20,43,63,'B',4,'published','2025-05-08',1,'2025-05-08'),
(2704,113,197,28,15,43,'E',1,'published','2025-05-08',1,'2025-05-08'),
(2705,113,198,29,21,50,'C',3,'published','2025-05-08',1,'2025-05-08'),
(2706,113,199,20,55,75,'A',5,'published','2025-05-08',1,'2025-05-08'),
(2707,113,195,25,44,69,'B',4,'published','2025-05-08',1,'2025-05-08'),
(2708,113,194,29,21,50,'C',3,'published','2025-05-08',1,'2025-05-08'),
(2709,113,193,20,55,75,'A',5,'published','2025-05-08',1,'2025-05-08'),
(2710,73,101,0,0,0,'F',0,'published','2025-05-09',1,'2025-05-09'),
(2711,73,103,22,49,71,'A',5,'published','2025-05-09',1,'2025-05-09'),
(2712,73,104,29,47,76,'A',5,'published','2025-05-09',1,'2025-05-09'),
(2713,73,100,0,0,0,'F',0,'published','2025-05-09',1,'2025-05-09'),
(2714,73,102,0,0,0,'F',0,'published','2025-05-09',1,'2025-05-09'),
(2715,34,46,35,12,47,'D',2,'published','2025-05-09',1,'2025-05-09'),
(2716,34,47,0,0,0,'F',0,'published','2025-05-09',1,'2025-05-09'),
(2717,34,48,27,28,55,'C',3,'published','2025-05-09',1,'2025-05-09'),
(2718,34,127,27,19,46,'D',2,'published','2025-05-09',1,'2025-05-09'),
(2719,34,49,27,21,48,'D',2,'published','2025-05-09',1,'2025-05-09'),
(2720,34,50,28,39,67,'B',4,'published','2025-05-09',1,'2025-05-09'),
(2721,34,51,25,32,57,'C',3,'published','2025-05-09',1,'2025-05-09'),
(2722,34,52,0,0,0,'F',0,'published','2025-05-09',1,'2025-05-09'),
(2723,30,46,31,22,53,'C',3,'published','2025-05-09',1,'2025-05-09'),
(2724,30,47,27,25,52,'C',3,'published','2025-05-09',1,'2025-05-09'),
(2725,30,48,26,29,55,'C',3,'published','2025-05-09',1,'2025-05-09'),
(2726,30,127,26,14,40,'E',1,'published','2025-05-09',1,'2025-05-09'),
(2727,30,49,24,27,51,'C',3,'published','2025-05-09',1,'2025-05-09'),
(2728,30,50,27,45,72,'A',5,'published','2025-05-09',1,'2025-05-09'),
(2729,69,212,0,0,0,'F',0,'published','2025-05-09',1,'2025-05-09'),
(2730,69,213,0,0,0,'F',0,'published','2025-05-09',1,'2025-05-09'),
(2731,69,214,0,0,0,'F',0,'published','2025-05-09',1,'2025-05-09'),
(2732,69,215,0,0,0,'F',0,'published','2025-05-09',1,'2025-05-09'),
(2733,69,216,0,0,0,'F',0,'published','2025-05-09',1,'2025-05-09'),
(2734,69,217,0,0,0,'F',0,'published','2025-05-09',1,'2025-05-09'),
(2735,69,218,0,0,0,'F',0,'published','2025-05-09',1,'2025-05-09'),
(2736,69,219,0,0,0,'F',0,'published','2025-05-09',1,'2025-05-09'),
(2737,69,220,0,0,0,'F',0,'published','2025-05-09',1,'2025-05-09'),
(2738,69,221,0,0,0,'F',0,'published','2025-05-09',1,'2025-05-09'),
(2739,69,222,0,0,0,'F',0,'published','2025-05-09',1,'2025-05-09'),
(2740,69,234,0,0,0,'F',0,'published','2025-05-09',1,'2025-05-09'),
(2741,30,344,22,29,51,'C',3,'published','2025-05-09',1,'2025-05-09'),
(2742,30,345,25,33,58,'C',3,'published','2025-05-09',1,'2025-05-09'),
(2743,92,175,0,0,0,'F',0,'published','2025-05-09',1,'2025-05-09'),
(2744,22,344,22,48,70,'A',5,'published','2025-05-09',1,'2025-05-09'),
(2745,22,345,23,47,70,'A',5,'published','2025-05-09',1,'2025-05-09'),
(2746,105,344,22,18,40,'E',1,'published','2025-05-09',1,'2025-05-09'),
(2747,105,345,29,14,43,'E',1,'published','2025-05-09',1,'2025-05-09'),
(2748,39,346,22,33,55,'C',3,'published','2025-05-09',1,'2025-05-09'),
(2749,39,347,23,52,75,'A',5,'published','2025-05-09',1,'2025-05-09'),
(2750,20,344,22,43,65,'B',4,'published','2025-05-09',1,'2025-05-09');
INSERT INTO `results` (`id`,`student_id`,`course_offering_id`,`continuous_assessment`,`exam_score`,`total_score`,`letter_grade`,`grade_point`,`status`,`published_at`,`updated_by`,`updated_at`) VALUES
(2751,20,345,24,61,85,'A',5,'published','2025-05-09',1,'2025-05-09'),
(2752,23,344,22,34,56,'C',3,'published','2025-05-09',1,'2025-05-09'),
(2753,23,345,23,43,66,'B',4,'published','2025-05-09',1,'2025-05-09'),
(2754,42,139,20,40,60,'B',4,'published','2025-05-09',1,'2025-05-09'),
(2755,42,140,25,43,68,'B',4,'published','2025-05-09',1,'2025-05-09'),
(2756,42,141,25,27,52,'C',3,'published','2025-05-09',1,'2025-05-09'),
(2757,42,142,20,26,46,'D',2,'published','2025-05-09',1,'2025-05-09'),
(2758,42,143,25,50,75,'A',5,'published','2025-05-09',1,'2025-05-09'),
(2759,42,144,16,45,61,'B',4,'published','2025-05-09',1,'2025-05-09'),
(2760,42,145,27,14,41,'E',1,'published','2025-05-09',1,'2025-05-09'),
(2761,42,146,20,42,62,'B',4,'published','2025-05-09',1,'2025-05-09'),
(2762,7,345,25,46,71,'A',5,'published','2025-05-10',1,'2025-05-10'),
(2763,7,344,22,49,71,'A',5,'published','2025-05-10',1,'2025-05-10'),
(2764,110,345,28,23,51,'C',3,'published','2025-05-10',1,'2025-05-10'),
(2765,110,344,22,65,87,'A',5,'published','2025-05-10',1,'2025-05-10'),
(2766,78,344,22,37,59,'C',3,'published','2025-05-10',1,'2025-05-10'),
(2767,107,322,0,0,0,'F',0,'published','2025-05-10',1,'2025-05-10'),
(2768,107,46,0,5,5,'F',0,'published','2025-05-10',1,'2025-05-10'),
(2769,107,47,30,22,52,'C',3,'published','2025-05-10',1,'2025-05-10'),
(2770,107,323,0,0,0,'F',0,'published','2025-05-10',1,'2025-05-10'),
(2771,107,48,27,28,55,'C',3,'published','2025-05-10',1,'2025-05-10'),
(2772,107,127,22,18,40,'E',1,'published','2025-05-10',1,'2025-05-10'),
(2773,107,49,0,0,0,'F',0,'published','2025-05-10',1,'2025-05-10'),
(2774,107,50,28,32,60,'B',4,'published','2025-05-10',1,'2025-05-10'),
(2775,107,345,26,29,55,'C',3,'published','2025-05-10',1,'2025-05-10'),
(2776,107,344,22,23,45,'D',2,'published','2025-05-10',1,'2025-05-10'),
(2777,107,51,20,30,50,'C',3,'published','2025-05-10',1,'2025-05-10'),
(2778,107,326,0,0,0,'F',0,'published','2025-05-10',1,'2025-05-10'),
(2779,107,328,0,0,0,'F',0,'published','2025-05-10',1,'2025-05-10'),
(2780,107,52,0,0,0,'F',0,'published','2025-05-10',1,'2025-05-10'),
(2781,107,53,0,0,0,'F',0,'published','2025-05-10',1,'2025-05-10'),
(2782,107,325,0,0,0,'F',0,'published','2025-05-10',1,'2025-05-10'),
(2783,51,46,37,48,85,'A',5,'published','2025-05-10',1,'2025-05-10'),
(2784,51,47,27,53,80,'A',5,'published','2025-05-10',1,'2025-05-10'),
(2785,51,48,26,42,68,'B',4,'published','2025-05-10',1,'2025-05-10'),
(2786,243,344,22,32,54,'C',3,'published','2025-05-10',1,'2025-05-10'),
(2787,243,345,23,43,66,'B',4,'published','2025-05-10',1,'2025-05-10'),
(2788,51,127,29,36,65,'B',4,'published','2025-05-10',1,'2025-05-10'),
(2789,51,49,24,62,86,'A',5,'published','2025-05-10',1,'2025-05-10'),
(2790,51,50,29,43,72,'A',5,'published','2025-05-10',1,'2025-05-10'),
(2791,51,344,22,48,70,'A',5,'published','2025-05-10',1,'2025-05-10'),
(2792,51,345,23,44,67,'B',4,'published','2025-05-10',1,'2025-05-10'),
(2793,7,2,0,0,0,'F',0,'published','2025-05-11',1,'2025-05-11'),
(2794,7,13,0,0,0,'F',0,'published','2025-05-11',1,'2025-05-11'),
(2795,7,15,0,0,0,'F',0,'published','2025-05-11',1,'2025-05-11'),
(2796,7,16,0,0,0,'F',0,'published','2025-05-11',1,'2025-05-11'),
(2797,7,20,0,0,0,'F',0,'published','2025-05-11',1,'2025-05-11'),
(2798,7,21,0,0,0,'F',0,'published','2025-05-11',1,'2025-05-11'),
(2799,7,22,0,0,0,'F',0,'published','2025-05-11',1,'2025-05-11'),
(2800,7,23,0,0,0,'F',0,'published','2025-05-11',1,'2025-05-11'),
(2801,7,24,0,0,0,'F',0,'published','2025-05-11',1,'2025-05-11'),
(2802,7,25,0,0,0,'F',0,'published','2025-05-11',1,'2025-05-11'),
(2803,7,26,0,0,0,'F',0,'published','2025-05-11',1,'2025-05-11'),
(2804,7,27,0,0,0,'F',0,'published','2025-05-11',1,'2025-05-11'),
(2805,7,28,0,0,0,'F',0,'published','2025-05-11',1,'2025-05-11'),
(2806,8,344,22,44,66,'B',4,'published','2025-05-12',1,'2025-05-12'),
(2807,8,345,24,46,70,'A',5,'published','2025-05-12',1,'2025-05-12'),
(2808,108,344,22,25,47,'D',2,'published','2025-05-12',1,'2025-05-12'),
(2809,38,345,0,0,0,'F',0,'published','2025-05-12',1,'2025-05-12'),
(2810,38,46,0,0,0,'F',0,'published','2025-05-12',1,'2025-05-12'),
(2811,38,47,0,0,0,'F',0,'published','2025-05-12',1,'2025-05-12'),
(2812,38,48,0,0,0,'F',0,'published','2025-05-12',1,'2025-05-12'),
(2813,38,127,28,0,28,'F',0,'published','2025-05-12',1,'2025-05-12'),
(2814,38,49,0,0,0,'F',0,'published','2025-05-12',1,'2025-05-12'),
(2815,38,50,0,0,0,'F',0,'published','2025-05-12',1,'2025-05-12'),
(2816,6,348,0,0,0,'F',0,'published','2025-05-12',1,'2025-05-12'),
(2817,83,344,22,30,52,'C',3,'published','2025-05-12',1,'2025-05-12'),
(2818,83,345,25,47,72,'A',5,'published','2025-05-12',1,'2025-05-12'),
(2819,26,39,20,33,53,'C',3,'published','2025-05-12',1,'2025-05-12'),
(2820,26,38,0,0,0,'F',0,'published','2025-05-12',1,'2025-05-12'),
(2821,26,40,19,61,80,'A',5,'published','2025-05-12',1,'2025-05-12'),
(2822,26,41,0,0,0,'F',0,'published','2025-05-12',1,'2025-05-12'),
(2823,26,42,10,41,51,'C',3,'published','2025-05-12',1,'2025-05-12'),
(2824,26,43,10,36,46,'D',2,'published','2025-05-12',1,'2025-05-12'),
(2825,26,44,20,52,72,'A',5,'published','2025-05-12',1,'2025-05-12'),
(2826,26,123,25,30,55,'C',3,'published','2025-05-12',1,'2025-05-12'),
(2827,26,122,21,16,37,'F',0,'published','2025-05-12',1,'2025-05-12'),
(2828,26,125,20,22,42,'E',1,'published','2025-05-12',1,'2025-05-12'),
(2829,26,128,0,0,0,'F',0,'published','2025-05-12',1,'2025-05-12'),
(2830,26,129,0,0,0,'F',0,'published','2025-05-12',1,'2025-05-12'),
(2831,26,126,15,26,41,'E',1,'published','2025-05-12',1,'2025-05-12'),
(2832,26,130,0,0,0,'F',0,'published','2025-05-12',1,'2025-05-12'),
(2833,26,277,0,0,0,'F',0,'published','2025-05-12',1,'2025-05-12'),
(2834,26,29,0,0,0,'F',0,'published','2025-05-12',1,'2025-05-12'),
(2835,26,30,0,0,0,'F',0,'published','2025-05-12',1,'2025-05-12'),
(2836,26,31,0,0,0,'F',0,'published','2025-05-12',1,'2025-05-12'),
(2837,26,33,0,0,0,'F',0,'published','2025-05-12',1,'2025-05-12'),
(2838,26,35,0,0,0,'F',0,'published','2025-05-12',1,'2025-05-12'),
(2839,26,34,0,0,0,'F',0,'published','2025-05-12',1,'2025-05-12'),
(2840,26,36,0,0,0,'F',0,'published','2025-05-12',1,'2025-05-12'),
(2841,26,37,0,0,0,'F',0,'published','2025-05-12',1,'2025-05-12'),
(2842,26,187,0,0,0,'F',0,'published','2025-05-12',1,'2025-05-12'),
(2843,26,186,0,0,0,'F',0,'published','2025-05-12',1,'2025-05-12'),
(2844,26,188,0,0,0,'F',0,'published','2025-05-12',1,'2025-05-12'),
(2845,26,190,0,0,0,'F',0,'published','2025-05-12',1,'2025-05-12'),
(2846,26,192,0,0,0,'F',0,'published','2025-05-12',1,'2025-05-12'),
(2847,26,279,0,0,0,'F',0,'published','2025-05-12',1,'2025-05-12'),
(2848,26,278,0,0,0,'F',0,'published','2025-05-12',1,'2025-05-12'),
(2849,40,349,61,0,61,'B',4,'published','2025-05-12',1,'2025-05-12'),
(2850,11,350,23,48,71,'A',5,'published','2025-05-13',1,'2025-05-13'),
(2851,11,351,20,40,60,'B',4,'published','2025-05-13',1,'2025-05-13'),
(2852,18,352,25,32,57,'C',3,'published','2025-05-13',1,'2025-05-13'),
(2853,18,353,21,49,70,'A',5,'published','2025-05-13',1,'2025-05-13'),
(2854,197,352,25,46,71,'A',5,'published','2025-05-13',1,'2025-05-13'),
(2855,197,353,19,34,53,'C',3,'published','2025-05-13',1,'2025-05-13'),
(2856,211,353,15,33,48,'D',2,'published','2025-05-13',1,'2025-05-13'),
(2857,211,175,0,0,0,'F',0,'published','2025-05-13',1,'2025-05-13'),
(2858,211,176,20,51,71,'A',5,'published','2025-05-13',1,'2025-05-13'),
(2859,211,177,20,50,70,'A',5,'published','2025-05-13',1,'2025-05-13'),
(2860,211,178,20,48,68,'B',4,'published','2025-05-13',1,'2025-05-13'),
(2861,211,179,26,38,64,'B',4,'published','2025-05-13',1,'2025-05-13'),
(2862,211,180,26,39,65,'B',4,'published','2025-05-13',1,'2025-05-13'),
(2863,211,181,20,36,56,'C',3,'published','2025-05-13',1,'2025-05-13'),
(2864,211,182,19,42,61,'B',4,'published','2025-05-13',1,'2025-05-13'),
(2865,211,183,29,41,70,'A',5,'published','2025-05-13',1,'2025-05-13'),
(2866,77,344,22,41,63,'B',4,'published','2025-05-14',1,'2025-05-14'),
(2867,77,345,25,40,65,'B',4,'published','2025-05-14',1,'2025-05-14'),
(2868,272,223,0,0,0,'F',0,'published','2025-05-14',1,'2025-05-14'),
(2869,272,224,0,0,0,'F',0,'published','2025-05-14',1,'2025-05-14'),
(2870,272,225,0,0,0,'F',0,'published','2025-05-14',1,'2025-05-14'),
(2871,272,226,0,0,0,'F',0,'published','2025-05-14',1,'2025-05-14'),
(2872,272,227,0,0,0,'F',0,'published','2025-05-14',1,'2025-05-14'),
(2873,272,228,0,0,0,'F',0,'published','2025-05-14',1,'2025-05-14'),
(2874,272,229,0,0,0,'F',0,'published','2025-05-14',1,'2025-05-14'),
(2875,272,230,0,0,0,'F',0,'published','2025-05-14',1,'2025-05-14'),
(2876,272,231,0,0,0,'F',0,'published','2025-05-14',1,'2025-05-14'),
(2877,272,232,0,0,0,'F',0,'published','2025-05-14',1,'2025-05-14'),
(2878,272,212,0,0,0,'F',0,'published','2025-05-14',1,'2025-05-14'),
(2879,272,234,0,0,0,'F',0,'published','2025-05-14',1,'2025-05-14'),
(2880,272,222,0,0,0,'F',0,'published','2025-05-14',1,'2025-05-14'),
(2881,272,221,0,0,0,'F',0,'published','2025-05-14',1,'2025-05-14'),
(2882,272,220,0,0,0,'F',0,'published','2025-05-14',1,'2025-05-14'),
(2883,272,219,0,0,0,'F',0,'published','2025-05-14',1,'2025-05-14'),
(2884,272,218,0,0,0,'F',0,'published','2025-05-14',1,'2025-05-14'),
(2885,272,217,0,0,0,'F',0,'published','2025-05-14',1,'2025-05-14'),
(2886,272,216,0,0,0,'F',0,'published','2025-05-14',1,'2025-05-14'),
(2887,272,215,0,0,0,'F',0,'published','2025-05-14',1,'2025-05-14'),
(2888,272,214,0,0,0,'F',0,'published','2025-05-14',1,'2025-05-14'),
(2889,272,213,0,0,0,'F',0,'published','2025-05-14',1,'2025-05-14'),
(2890,272,353,24,45,69,'B',4,'published','2025-05-14',1,'2025-05-14'),
(2891,272,352,20,43,63,'B',4,'published','2025-05-14',1,'2025-05-14'),
(2892,249,99,0,0,0,'F',0,'published','2025-05-14',1,'2025-05-14'),
(2893,249,100,0,0,0,'F',0,'published','2025-05-14',1,'2025-05-14'),
(2894,249,101,0,0,0,'F',0,'published','2025-05-14',1,'2025-05-14'),
(2895,249,102,0,0,0,'F',0,'published','2025-05-14',1,'2025-05-14'),
(2896,249,103,23,49,72,'A',5,'published','2025-05-14',1,'2025-05-14'),
(2897,249,104,28,26,54,'C',3,'published','2025-05-14',1,'2025-05-14'),
(2898,249,105,0,0,0,'F',0,'published','2025-05-14',1,'2025-05-14'),
(2899,89,195,29,21,50,'C',3,'published','2025-05-14',1,'2025-05-14'),
(2900,89,199,20,55,75,'A',5,'published','2025-05-14',1,'2025-05-14'),
(2901,89,198,29,20,49,'D',2,'published','2025-05-14',1,'2025-05-14'),
(2902,89,197,29,21,50,'C',3,'published','2025-05-14',1,'2025-05-14'),
(2903,89,196,20,30,50,'C',3,'published','2025-05-14',1,'2025-05-14'),
(2904,89,352,20,31,51,'C',3,'published','2025-05-14',1,'2025-05-14'),
(2905,89,353,17,48,65,'B',4,'published','2025-05-14',1,'2025-05-14'),
(2906,89,185,22,49,71,'A',5,'published','2025-05-14',1,'2025-05-14'),
(2907,89,194,29,20,49,'D',2,'published','2025-05-14',1,'2025-05-14'),
(2908,89,184,15,45,60,'B',4,'published','2025-05-14',1,'2025-05-14'),
(2909,89,193,20,45,65,'B',4,'published','2025-05-14',1,'2025-05-14'),
(2910,69,352,27,40,67,'B',4,'published','2025-05-14',1,'2025-05-14'),
(2911,69,353,26,46,72,'A',5,'published','2025-05-14',1,'2025-05-14'),
(2912,91,233,25,35,60,'B',4,'published','2025-05-14',1,'2025-05-14'),
(2913,91,175,0,0,0,'F',0,'published','2025-05-14',1,'2025-05-14'),
(2914,91,176,20,38,58,'C',3,'published','2025-05-14',1,'2025-05-14'),
(2915,91,177,20,44,64,'B',4,'published','2025-05-14',1,'2025-05-14'),
(2916,91,178,20,25,45,'D',2,'published','2025-05-14',1,'2025-05-14'),
(2917,91,179,27,28,55,'C',3,'published','2025-05-14',1,'2025-05-14'),
(2918,91,180,0,0,0,'F',0,'published','2025-05-14',1,'2025-05-14'),
(2919,91,181,20,28,48,'D',2,'published','2025-05-14',1,'2025-05-14'),
(2920,91,182,19,32,51,'C',3,'published','2025-05-14',1,'2025-05-14'),
(2921,91,106,0,0,0,'F',0,'published','2025-05-14',1,'2025-05-14'),
(2922,91,183,20,17,37,'F',0,'published','2025-05-14',1,'2025-05-14'),
(2923,114,62,0,0,0,'F',0,'published','2025-05-14',1,'2025-05-14'),
(2924,50,38,0,0,0,'F',0,'published','2025-05-14',1,'2025-05-14'),
(2925,50,39,20,44,64,'B',4,'published','2025-05-14',1,'2025-05-14'),
(2926,50,40,20,30,50,'C',3,'published','2025-05-14',1,'2025-05-14'),
(2927,50,42,0,0,0,'F',0,'published','2025-05-14',1,'2025-05-14'),
(2928,50,43,10,45,55,'C',3,'published','2025-05-14',1,'2025-05-14'),
(2929,50,44,20,40,60,'B',4,'published','2025-05-14',1,'2025-05-14'),
(2930,50,45,18,36,54,'C',3,'published','2025-05-14',1,'2025-05-14'),
(2931,50,41,0,0,0,'F',0,'published','2025-05-14',1,'2025-05-14'),
(2932,50,122,15,48,63,'B',4,'published','2025-05-14',1,'2025-05-14'),
(2933,50,123,0,0,0,'F',0,'published','2025-05-14',1,'2025-05-14'),
(2934,50,124,25,52,77,'A',5,'published','2025-05-14',1,'2025-05-14'),
(2935,50,128,0,0,0,'F',0,'published','2025-05-14',1,'2025-05-14'),
(2936,50,125,20,30,50,'C',3,'published','2025-05-14',1,'2025-05-14'),
(2937,50,126,15,46,61,'B',4,'published','2025-05-14',1,'2025-05-14'),
(2938,50,129,0,0,0,'F',0,'published','2025-05-14',1,'2025-05-14'),
(2939,50,130,0,0,0,'F',0,'published','2025-05-14',1,'2025-05-14'),
(2940,50,277,0,0,0,'F',0,'published','2025-05-14',1,'2025-05-14'),
(2941,199,353,19,41,60,'B',4,'published','2025-05-15',1,'2025-05-15'),
(2942,199,352,21,52,73,'A',5,'published','2025-05-15',1,'2025-05-15'),
(2943,35,344,22,46,68,'B',4,'published','2025-05-15',1,'2025-05-15'),
(2944,35,345,25,41,66,'B',4,'published','2025-05-15',1,'2025-05-15'),
(2945,243,322,0,0,0,'F',0,'published','2025-05-15',1,'2025-05-15'),
(2946,36,352,23,46,69,'B',4,'published','2025-05-15',1,'2025-05-15'),
(2947,36,353,19,47,66,'B',4,'published','2025-05-15',1,'2025-05-15'),
(2948,36,198,28,23,51,'C',3,'published','2025-05-15',1,'2025-05-15'),
(2949,41,354,0,0,0,'F',0,'published','2025-05-15',1,'2025-05-15'),
(2950,41,355,8,34,42,'E',1,'published','2025-05-15',1,'2025-05-15'),
(2951,41,356,23,43,66,'B',4,'published','2025-05-15',1,'2025-05-15'),
(2952,41,357,25,28,53,'C',3,'published','2025-05-15',1,'2025-05-15'),
(2953,41,358,20,37,57,'C',3,'published','2025-05-15',1,'2025-05-15'),
(2954,41,359,20,30,50,'C',3,'published','2025-05-15',1,'2025-05-15'),
(2955,41,360,21,56,77,'A',5,'published','2025-05-15',1,'2025-05-15'),
(2956,41,361,33,6,39,'F',0,'published','2025-05-15',1,'2025-05-15'),
(2957,41,362,20,34,54,'C',3,'published','2025-05-15',1,'2025-05-15'),
(2958,84,185,21,30,51,'C',3,'published','2025-05-15',1,'2025-05-15'),
(2959,84,184,17,38,55,'C',3,'published','2025-05-15',1,'2025-05-15'),
(2960,84,193,20,48,68,'B',4,'published','2025-05-15',1,'2025-05-15'),
(2961,84,194,25,38,63,'B',4,'published','2025-05-15',1,'2025-05-15'),
(2962,84,195,23,46,69,'B',4,'published','2025-05-15',1,'2025-05-15'),
(2963,84,199,20,55,75,'A',5,'published','2025-05-15',1,'2025-05-15'),
(2964,84,198,28,38,66,'B',4,'published','2025-05-15',1,'2025-05-15'),
(2965,84,197,28,40,68,'B',4,'published','2025-05-15',1,'2025-05-15'),
(2966,84,196,20,40,60,'B',4,'published','2025-05-15',1,'2025-05-15'),
(2967,84,352,24,48,72,'A',5,'published','2025-05-15',1,'2025-05-15'),
(2968,84,353,19,45,64,'B',4,'published','2025-05-15',1,'2025-05-15'),
(2969,27,122,15,46,61,'B',4,'published','2025-05-16',1,'2025-05-16'),
(2970,27,123,0,0,0,'F',0,'published','2025-05-16',1,'2025-05-16'),
(2971,27,124,23,51,74,'A',5,'published','2025-05-16',1,'2025-05-16'),
(2972,27,128,0,0,0,'F',0,'published','2025-05-16',1,'2025-05-16'),
(2973,27,125,20,30,50,'C',3,'published','2025-05-16',1,'2025-05-16'),
(2974,27,126,15,43,58,'C',3,'published','2025-05-16',1,'2025-05-16'),
(2975,201,353,20,39,59,'C',3,'published','2025-05-16',1,'2025-05-16'),
(2976,201,352,22,48,70,'A',5,'published','2025-05-16',1,'2025-05-16'),
(2977,242,352,26,34,60,'B',4,'published','2025-05-18',1,'2025-05-18'),
(2978,242,353,19,39,58,'C',3,'published','2025-05-18',1,'2025-05-18'),
(2979,52,138,20,18,38,'F',0,'published','2025-05-18',1,'2025-05-18'),
(2980,52,139,8,8,16,'F',0,'published','2025-05-18',1,'2025-05-18'),
(2981,52,140,26,24,50,'C',3,'published','2025-05-18',1,'2025-05-18'),
(2982,52,141,25,5,30,'F',0,'published','2025-05-18',1,'2025-05-18'),
(2983,52,142,20,26,46,'D',2,'published','2025-05-18',1,'2025-05-18'),
(2984,52,143,20,35,55,'C',3,'published','2025-05-18',1,'2025-05-18'),
(2985,52,144,16,34,50,'C',3,'published','2025-05-18',1,'2025-05-18'),
(2986,52,145,0,4,4,'F',0,'published','2025-05-18',1,'2025-05-18'),
(2987,52,146,20,38,58,'C',3,'published','2025-05-18',1,'2025-05-18'),
(2988,273,46,32,11,43,'E',1,'published','2025-05-19',1,'2025-05-19'),
(2989,273,47,29,9,38,'F',0,'published','2025-05-19',1,'2025-05-19'),
(2990,273,48,28,28,56,'C',3,'published','2025-05-19',1,'2025-05-19'),
(2991,273,127,29,13,42,'E',1,'published','2025-05-19',1,'2025-05-19'),
(2992,273,49,26,30,56,'C',3,'published','2025-05-19',1,'2025-05-19'),
(2993,273,50,25,37,62,'B',4,'published','2025-05-19',1,'2025-05-19'),
(2994,273,344,22,23,45,'D',2,'published','2025-05-19',1,'2025-05-19'),
(2995,273,345,26,31,57,'C',3,'published','2025-05-19',1,'2025-05-19'),
(2996,273,53,0,0,0,'F',0,'published','2025-05-19',1,'2025-05-19'),
(2997,273,52,0,0,0,'F',0,'published','2025-05-19',1,'2025-05-19'),
(2998,273,51,20,33,53,'C',3,'published','2025-05-19',1,'2025-05-19'),
(2999,254,73,0,0,0,'F',0,'published','2025-05-19',1,'2025-05-19'),
(3000,254,72,0,0,0,'F',0,'published','2025-05-19',1,'2025-05-19');
INSERT INTO `results` (`id`,`student_id`,`course_offering_id`,`continuous_assessment`,`exam_score`,`total_score`,`letter_grade`,`grade_point`,`status`,`published_at`,`updated_by`,`updated_at`) VALUES
(3001,254,71,0,0,0,'F',0,'published','2025-05-19',1,'2025-05-19'),
(3002,254,70,0,0,0,'F',0,'published','2025-05-19',1,'2025-05-19'),
(3003,254,69,0,0,0,'F',0,'published','2025-05-19',1,'2025-05-19'),
(3004,254,68,0,0,0,'F',0,'published','2025-05-19',1,'2025-05-19'),
(3005,254,67,0,0,0,'F',0,'published','2025-05-19',1,'2025-05-19'),
(3006,254,66,0,0,0,'F',0,'published','2025-05-19',1,'2025-05-19'),
(3007,254,65,0,0,0,'F',0,'published','2025-05-19',1,'2025-05-19'),
(3008,254,64,0,0,0,'F',0,'published','2025-05-19',1,'2025-05-19'),
(3009,254,63,16,39,55,'C',3,'published','2025-05-19',1,'2025-05-19'),
(3010,254,82,20,50,70,'A',5,'published','2025-05-19',1,'2025-05-19'),
(3011,254,81,24,28,52,'C',3,'published','2025-05-19',1,'2025-05-19'),
(3012,254,80,21,40,61,'B',4,'published','2025-05-19',1,'2025-05-19'),
(3013,254,79,0,0,0,'F',0,'published','2025-05-19',1,'2025-05-19'),
(3014,254,78,22,28,50,'C',3,'published','2025-05-19',1,'2025-05-19'),
(3015,254,77,0,0,0,'F',0,'published','2025-05-19',1,'2025-05-19'),
(3016,254,76,0,0,0,'F',0,'published','2025-05-19',1,'2025-05-19'),
(3017,254,75,18,4,22,'F',0,'published','2025-05-19',1,'2025-05-19'),
(3018,254,74,22,29,51,'C',3,'published','2025-05-19',1,'2025-05-19'),
(3019,254,107,20,5,25,'F',0,'published','2025-05-19',1,'2025-05-19'),
(3020,84,175,0,0,0,'F',0,'published','2025-05-19',1,'2025-05-19'),
(3021,84,176,20,63,83,'A',5,'published','2025-05-19',1,'2025-05-19'),
(3022,84,177,20,60,80,'A',5,'published','2025-05-19',1,'2025-05-19'),
(3023,84,178,20,45,65,'B',4,'published','2025-05-19',1,'2025-05-19'),
(3024,84,179,25,49,74,'A',5,'published','2025-05-19',1,'2025-05-19'),
(3025,84,180,26,35,61,'B',4,'published','2025-05-19',1,'2025-05-19'),
(3026,84,181,20,32,52,'C',3,'published','2025-05-19',1,'2025-05-19'),
(3027,84,182,18,40,58,'C',3,'published','2025-05-19',1,'2025-05-19'),
(3028,84,183,28,36,64,'B',4,'published','2025-05-19',1,'2025-05-19'),
(3029,241,46,27,9,36,'F',0,'published','2025-05-20',1,'2025-05-20'),
(3030,241,47,25,7,32,'F',0,'published','2025-05-20',1,'2025-05-20'),
(3031,241,48,29,28,57,'C',3,'published','2025-05-20',1,'2025-05-20'),
(3032,241,127,30,7,37,'F',0,'published','2025-05-20',1,'2025-05-20'),
(3033,241,49,25,28,53,'C',3,'published','2025-05-20',1,'2025-05-20'),
(3034,241,50,27,34,61,'B',4,'published','2025-05-20',1,'2025-05-20'),
(3035,241,344,0,0,0,'F',0,'published','2025-05-20',1,'2025-05-20'),
(3036,241,345,27,30,57,'C',3,'published','2025-05-20',1,'2025-05-20'),
(3037,241,51,20,30,50,'C',3,'published','2025-05-20',1,'2025-05-20'),
(3038,241,52,0,0,0,'F',0,'published','2025-05-20',1,'2025-05-20'),
(3039,96,38,0,0,0,'F',0,'published','2025-05-20',1,'2025-05-20'),
(3040,96,39,20,46,66,'B',4,'published','2025-05-20',1,'2025-05-20'),
(3041,96,40,23,33,56,'C',3,'published','2025-05-20',1,'2025-05-20'),
(3042,96,41,0,0,0,'F',0,'published','2025-05-20',1,'2025-05-20'),
(3043,96,42,10,38,48,'D',2,'published','2025-05-20',1,'2025-05-20'),
(3044,96,43,10,46,56,'C',3,'published','2025-05-20',1,'2025-05-20'),
(3045,96,44,22,51,73,'A',5,'published','2025-05-20',1,'2025-05-20'),
(3046,96,45,18,33,51,'C',3,'published','2025-05-20',1,'2025-05-20'),
(3047,108,345,23,33,56,'C',3,'published','2025-05-22',1,'2025-05-22'),
(3048,89,233,20,31,51,'C',3,'published','2025-05-22',1,'2025-05-22'),
(3049,89,175,0,0,0,'F',0,'published','2025-05-22',1,'2025-05-22'),
(3050,89,176,20,45,65,'B',4,'published','2025-05-22',1,'2025-05-22'),
(3051,89,177,20,51,71,'A',5,'published','2025-05-22',1,'2025-05-22'),
(3052,89,178,20,45,65,'B',4,'published','2025-05-22',1,'2025-05-22'),
(3053,89,179,25,33,58,'C',3,'published','2025-05-22',1,'2025-05-22'),
(3054,89,180,24,44,68,'B',4,'published','2025-05-22',1,'2025-05-22'),
(3055,89,181,20,36,56,'C',3,'published','2025-05-22',1,'2025-05-22'),
(3056,89,182,21,45,66,'B',4,'published','2025-05-22',1,'2025-05-22'),
(3057,89,106,0,0,0,'F',0,'published','2025-05-22',1,'2025-05-22'),
(3058,89,183,30,49,79,'A',5,'published','2025-05-22',1,'2025-05-22'),
(3059,202,185,21,30,51,'C',3,'published','2025-05-23',1,'2025-05-23'),
(3060,202,184,16,33,49,'D',2,'published','2025-05-23',1,'2025-05-23'),
(3061,202,193,20,58,78,'A',5,'published','2025-05-23',1,'2025-05-23'),
(3062,202,194,28,17,45,'D',2,'published','2025-05-23',1,'2025-05-23'),
(3063,202,195,29,29,58,'C',3,'published','2025-05-23',1,'2025-05-23'),
(3064,202,199,15,57,72,'A',5,'published','2025-05-23',1,'2025-05-23'),
(3065,202,198,28,17,45,'D',2,'published','2025-05-23',1,'2025-05-23'),
(3066,202,197,27,32,59,'C',3,'published','2025-05-23',1,'2025-05-23'),
(3067,202,196,20,40,60,'B',4,'published','2025-05-23',1,'2025-05-23'),
(3068,202,352,0,0,0,'F',0,'published','2025-05-23',1,'2025-05-23'),
(3069,202,353,15,41,56,'C',3,'published','2025-05-23',1,'2025-05-23'),
(3070,265,212,0,0,0,'F',0,'published','2025-05-23',1,'2025-05-23'),
(3071,265,213,0,0,0,'F',0,'published','2025-05-23',1,'2025-05-23'),
(3072,265,234,0,0,0,'F',0,'published','2025-05-23',1,'2025-05-23'),
(3073,265,222,0,0,0,'F',0,'published','2025-05-23',1,'2025-05-23'),
(3074,265,221,0,0,0,'F',0,'published','2025-05-23',1,'2025-05-23'),
(3075,265,220,0,0,0,'F',0,'published','2025-05-23',1,'2025-05-23'),
(3076,265,219,0,0,0,'F',0,'published','2025-05-23',1,'2025-05-23'),
(3077,265,218,0,0,0,'F',0,'published','2025-05-23',1,'2025-05-23'),
(3078,265,217,0,0,0,'F',0,'published','2025-05-23',1,'2025-05-23'),
(3079,265,216,0,0,0,'F',0,'published','2025-05-23',1,'2025-05-23'),
(3080,265,214,0,0,0,'F',0,'published','2025-05-23',1,'2025-05-23'),
(3081,265,215,0,0,0,'F',0,'published','2025-05-23',1,'2025-05-23'),
(3082,265,224,0,0,0,'F',0,'published','2025-05-23',1,'2025-05-23'),
(3083,265,223,0,0,0,'F',0,'published','2025-05-23',1,'2025-05-23'),
(3084,265,225,0,0,0,'F',0,'published','2025-05-23',1,'2025-05-23'),
(3085,265,226,0,0,0,'F',0,'published','2025-05-23',1,'2025-05-23'),
(3086,265,227,0,0,0,'F',0,'published','2025-05-23',1,'2025-05-23'),
(3087,265,228,0,0,0,'F',0,'published','2025-05-23',1,'2025-05-23'),
(3088,265,232,0,0,0,'F',0,'published','2025-05-23',1,'2025-05-23'),
(3089,265,231,0,0,0,'F',0,'published','2025-05-23',1,'2025-05-23'),
(3090,265,230,0,0,0,'F',0,'published','2025-05-23',1,'2025-05-23'),
(3091,265,229,0,0,0,'F',0,'published','2025-05-23',1,'2025-05-23'),
(3092,275,235,0,0,0,'F',0,'published','2025-05-23',1,'2025-05-23'),
(3093,275,238,0,0,0,'F',0,'published','2025-05-23',1,'2025-05-23'),
(3094,275,239,0,0,0,'F',0,'published','2025-05-23',1,'2025-05-23'),
(3095,275,240,0,0,0,'F',0,'published','2025-05-23',1,'2025-05-23'),
(3096,275,241,0,0,0,'F',0,'published','2025-05-23',1,'2025-05-23'),
(3097,275,242,0,0,0,'F',0,'published','2025-05-23',1,'2025-05-23'),
(3098,275,243,0,0,0,'F',0,'published','2025-05-23',1,'2025-05-23'),
(3099,275,244,0,0,0,'F',0,'published','2025-05-23',1,'2025-05-23'),
(3100,275,245,0,0,0,'F',0,'published','2025-05-23',1,'2025-05-23'),
(3101,275,246,0,0,0,'F',0,'published','2025-05-23',1,'2025-05-23'),
(3102,275,247,0,0,0,'F',0,'published','2025-05-23',1,'2025-05-23'),
(3103,275,248,0,0,0,'F',0,'published','2025-05-23',1,'2025-05-23'),
(3104,275,249,0,0,0,'F',0,'published','2025-05-23',1,'2025-05-23'),
(3105,275,250,0,0,0,'F',0,'published','2025-05-23',1,'2025-05-23'),
(3106,275,251,0,0,0,'F',0,'published','2025-05-23',1,'2025-05-23'),
(3107,275,252,0,0,0,'F',0,'published','2025-05-23',1,'2025-05-23'),
(3108,275,253,0,0,0,'F',0,'published','2025-05-23',1,'2025-05-23'),
(3109,275,254,0,0,0,'F',0,'published','2025-05-23',1,'2025-05-23'),
(3110,275,255,0,0,0,'F',0,'published','2025-05-23',1,'2025-05-23'),
(3111,275,256,0,0,0,'F',0,'published','2025-05-23',1,'2025-05-23'),
(3112,122,54,0,0,0,'F',0,'published','2025-05-23',1,'2025-05-23'),
(3113,122,55,28,25,53,'C',3,'published','2025-05-23',1,'2025-05-23'),
(3114,122,56,0,0,0,'F',0,'published','2025-05-23',1,'2025-05-23'),
(3115,122,62,0,0,0,'F',0,'published','2025-05-23',1,'2025-05-23'),
(3116,122,61,24,26,50,'C',3,'published','2025-05-23',1,'2025-05-23'),
(3117,122,60,20,35,55,'C',3,'published','2025-05-23',1,'2025-05-23'),
(3118,122,59,20,23,43,'E',1,'published','2025-05-23',1,'2025-05-23'),
(3119,122,58,25,43,68,'B',4,'published','2025-05-23',1,'2025-05-23'),
(3120,122,57,25,26,51,'C',3,'published','2025-05-23',1,'2025-05-23'),
(3121,122,276,20,30,50,'C',3,'published','2025-05-23',1,'2025-05-23'),
(3122,122,12,18,58,76,'A',5,'published','2025-05-23',1,'2025-05-23'),
(3123,122,11,25,31,56,'C',3,'published','2025-05-23',1,'2025-05-23'),
(3124,122,10,24,39,63,'B',4,'published','2025-05-23',1,'2025-05-23'),
(3125,122,9,0,0,0,'F',0,'published','2025-05-23',1,'2025-05-23'),
(3126,122,8,15,50,65,'B',4,'published','2025-05-23',1,'2025-05-23'),
(3127,122,7,28,37,65,'B',4,'published','2025-05-23',1,'2025-05-23'),
(3128,122,6,0,0,0,'F',0,'published','2025-05-23',1,'2025-05-23'),
(3129,122,5,21,33,54,'C',3,'published','2025-05-23',1,'2025-05-23'),
(3130,122,4,0,0,0,'F',0,'published','2025-05-23',1,'2025-05-23'),
(3131,122,3,25,23,48,'D',2,'published','2025-05-23',1,'2025-05-23'),
(3132,122,1,0,0,0,'F',0,'published','2025-05-23',1,'2025-05-23'),
(3133,34,344,22,45,67,'B',4,'published','2025-05-26',1,'2025-05-26'),
(3134,34,345,27,37,64,'B',4,'published','2025-05-26',1,'2025-05-26'),
(3135,93,38,0,0,0,'F',0,'published','2025-05-26',1,'2025-05-26'),
(3136,93,39,20,46,66,'B',4,'published','2025-05-26',1,'2025-05-26'),
(3137,90,46,31,24,55,'C',3,'published','2025-05-28',1,'2025-05-28'),
(3138,90,47,27,12,39,'F',0,'published','2025-05-28',1,'2025-05-28'),
(3139,90,48,27,31,58,'C',3,'published','2025-05-28',1,'2025-05-28'),
(3140,90,127,30,25,55,'C',3,'published','2025-05-28',1,'2025-05-28'),
(3141,90,49,23,31,54,'C',3,'published','2025-05-28',1,'2025-05-28'),
(3142,90,50,0,0,0,'F',0,'published','2025-05-28',1,'2025-05-28'),
(3143,90,344,22,30,52,'C',3,'published','2025-05-28',1,'2025-05-28'),
(3144,90,345,23,35,58,'C',3,'published','2025-05-28',1,'2025-05-28'),
(3145,153,90,54,0,54,'C',3,'published','2025-06-01',1,'2025-06-01'),
(3146,153,89,0,0,0,'F',0,'published','2025-06-01',1,'2025-06-01'),
(3147,153,88,23,58,81,'A',5,'published','2025-06-01',1,'2025-06-01'),
(3148,153,87,26,34,60,'B',4,'published','2025-06-01',1,'2025-06-01'),
(3149,153,84,0,0,0,'F',0,'published','2025-06-01',1,'2025-06-01'),
(3150,153,86,20,30,50,'C',3,'published','2025-06-01',1,'2025-06-01'),
(3151,153,85,25,41,66,'B',4,'published','2025-06-01',1,'2025-06-01'),
(3152,153,83,0,0,0,'F',0,'published','2025-06-01',1,'2025-06-01'),
(3153,74,363,0,0,0,'F',0,'published','2025-06-04',1,'2025-06-04'),
(3154,74,364,0,0,0,'F',0,'published','2025-06-04',1,'2025-06-04'),
(3155,74,365,0,0,0,'F',0,'published','2025-06-04',1,'2025-06-04'),
(3156,74,366,0,0,0,'F',0,'published','2025-06-04',1,'2025-06-04'),
(3157,74,367,0,0,0,'F',0,'published','2025-06-04',1,'2025-06-04'),
(3158,74,368,0,0,0,'F',0,'published','2025-06-04',1,'2025-06-04'),
(3159,74,369,0,0,0,'F',0,'published','2025-06-04',1,'2025-06-04'),
(3160,74,370,0,0,0,'F',0,'published','2025-06-04',1,'2025-06-04'),
(3161,74,371,0,0,0,'F',0,'published','2025-06-04',1,'2025-06-04'),
(3162,74,372,0,0,0,'F',0,'published','2025-06-04',1,'2025-06-04'),
(3163,74,373,0,0,0,'F',0,'published','2025-06-04',1,'2025-06-04'),
(3164,74,374,0,0,0,'F',0,'published','2025-06-04',1,'2025-06-04'),
(3165,74,354,0,0,0,'F',0,'published','2025-06-04',1,'2025-06-04'),
(3166,74,362,0,0,0,'F',0,'published','2025-06-04',1,'2025-06-04'),
(3167,74,360,0,0,0,'F',0,'published','2025-06-04',1,'2025-06-04'),
(3168,74,358,0,0,0,'F',0,'published','2025-06-04',1,'2025-06-04'),
(3169,74,357,0,0,0,'F',0,'published','2025-06-04',1,'2025-06-04'),
(3170,74,356,0,0,0,'F',0,'published','2025-06-04',1,'2025-06-04'),
(3171,74,355,0,0,0,'F',0,'published','2025-06-04',1,'2025-06-04'),
(3172,74,375,0,0,0,'F',0,'published','2025-06-04',1,'2025-06-04'),
(3173,74,376,0,0,0,'F',0,'published','2025-06-04',1,'2025-06-04'),
(3174,74,377,0,0,0,'F',0,'published','2025-06-04',1,'2025-06-04'),
(3175,74,378,0,0,0,'F',0,'published','2025-06-04',1,'2025-06-04'),
(3176,74,379,0,0,0,'F',0,'published','2025-06-04',1,'2025-06-04'),
(3177,74,380,0,0,0,'F',0,'published','2025-06-04',1,'2025-06-04'),
(3178,74,381,0,0,0,'F',0,'published','2025-06-04',1,'2025-06-04'),
(3179,74,382,0,0,0,'F',0,'published','2025-06-04',1,'2025-06-04'),
(3180,63,383,0,0,0,'F',0,'published','2025-06-18',1,'2025-06-18'),
(3181,63,384,0,0,0,'F',0,'published','2025-06-18',1,'2025-06-18'),
(3182,63,385,0,0,0,'F',0,'published','2025-06-18',1,'2025-06-18'),
(3183,63,386,0,0,0,'F',0,'published','2025-06-18',1,'2025-06-18'),
(3184,63,387,0,0,0,'F',0,'published','2025-06-18',1,'2025-06-18'),
(3185,63,388,0,0,0,'F',0,'published','2025-06-18',1,'2025-06-18'),
(3186,63,389,0,0,0,'F',0,'published','2025-06-18',1,'2025-06-18'),
(3187,63,390,0,0,0,'F',0,'published','2025-06-18',1,'2025-06-18'),
(3188,63,391,25,25,50,'C',3,'published','2025-06-18',1,'2025-06-18'),
(3189,63,392,0,0,0,'F',0,'published','2025-06-18',1,'2025-06-18'),
(3190,63,393,0,0,0,'F',0,'published','2025-06-18',1,'2025-06-18'),
(3191,63,394,0,0,0,'F',0,'published','2025-06-18',1,'2025-06-18'),
(3192,63,297,0,0,0,'F',0,'published','2025-06-18',1,'2025-06-18'),
(3193,63,298,0,0,0,'F',0,'published','2025-06-18',1,'2025-06-18'),
(3194,63,299,0,0,0,'F',0,'published','2025-06-18',1,'2025-06-18'),
(3195,63,300,0,0,0,'F',0,'published','2025-06-18',1,'2025-06-18'),
(3196,63,301,0,0,0,'F',0,'published','2025-06-18',1,'2025-06-18'),
(3197,63,302,0,0,0,'F',0,'published','2025-06-18',1,'2025-06-18'),
(3198,63,303,0,0,0,'F',0,'published','2025-06-18',1,'2025-06-18'),
(3199,63,304,0,0,0,'F',0,'published','2025-06-18',1,'2025-06-18'),
(3200,63,305,0,0,0,'F',0,'published','2025-06-18',1,'2025-06-18'),
(3201,63,288,0,0,0,'F',0,'published','2025-06-18',1,'2025-06-18'),
(3202,63,289,0,0,0,'F',0,'published','2025-06-18',1,'2025-06-18'),
(3203,63,290,0,0,0,'F',0,'published','2025-06-18',1,'2025-06-18'),
(3204,63,291,0,0,0,'F',0,'published','2025-06-18',1,'2025-06-18'),
(3205,63,292,0,0,0,'F',0,'published','2025-06-18',1,'2025-06-18'),
(3206,63,293,0,0,0,'F',0,'published','2025-06-18',1,'2025-06-18'),
(3207,63,294,0,0,0,'F',0,'published','2025-06-18',1,'2025-06-18'),
(3208,63,295,0,0,0,'F',0,'published','2025-06-18',1,'2025-06-18'),
(3209,63,296,0,0,0,'F',0,'published','2025-06-18',1,'2025-06-18'),
(3210,63,131,0,0,0,'F',0,'published','2025-06-18',1,'2025-06-18'),
(3211,63,349,0,0,0,'F',0,'published','2025-06-18',1,'2025-06-18'),
(3212,63,132,0,0,0,'F',0,'published','2025-06-18',1,'2025-06-18'),
(3213,63,135,0,0,0,'F',0,'published','2025-06-18',1,'2025-06-18'),
(3214,63,134,0,0,0,'F',0,'published','2025-06-18',1,'2025-06-18'),
(3215,63,133,0,0,0,'F',0,'published','2025-06-18',1,'2025-06-18'),
(3216,63,136,0,0,0,'F',0,'published','2025-06-18',1,'2025-06-18'),
(3217,63,137,0,0,0,'F',0,'published','2025-06-18',1,'2025-06-18'),
(3218,63,395,0,0,0,'F',0,'published','2025-06-18',1,'2025-06-18'),
(3219,63,396,0,0,0,'F',0,'published','2025-06-18',1,'2025-06-18'),
(3220,63,397,0,0,0,'F',0,'published','2025-06-18',1,'2025-06-18'),
(3221,63,398,0,0,0,'F',0,'published','2025-06-18',1,'2025-06-18'),
(3222,63,399,0,0,0,'F',0,'published','2025-06-18',1,'2025-06-18'),
(3223,63,400,0,0,0,'F',0,'published','2025-06-18',1,'2025-06-18'),
(3224,63,401,0,0,0,'F',0,'published','2025-06-18',1,'2025-06-18'),
(3225,63,402,0,0,0,'F',0,'published','2025-06-18',1,'2025-06-18'),
(3226,63,403,0,0,0,'F',0,'published','2025-06-18',1,'2025-06-18'),
(3227,247,315,15,50,65,'B',4,'published','2025-06-23',1,'2025-06-23'),
(3228,247,316,0,0,0,'F',0,'published','2025-06-23',1,'2025-06-23'),
(3229,247,317,0,0,0,'F',0,'published','2025-06-23',1,'2025-06-23'),
(3230,247,318,0,0,0,'F',0,'published','2025-06-23',1,'2025-06-23'),
(3231,247,319,0,0,0,'F',0,'published','2025-06-23',1,'2025-06-23'),
(3232,247,320,0,0,0,'F',0,'published','2025-06-23',1,'2025-06-23'),
(3233,247,321,10,10,20,'F',0,'published','2025-06-23',1,'2025-06-23'),
(3234,247,281,0,0,0,'F',0,'published','2025-06-23',1,'2025-06-23'),
(3235,247,280,0,0,0,'F',0,'published','2025-06-23',1,'2025-06-23'),
(3236,247,282,0,0,0,'F',0,'published','2025-06-23',1,'2025-06-23'),
(3237,247,283,0,0,0,'F',0,'published','2025-06-23',1,'2025-06-23'),
(3238,247,284,0,0,0,'F',0,'published','2025-06-23',1,'2025-06-23'),
(3239,247,287,0,0,0,'F',0,'published','2025-06-23',1,'2025-06-23'),
(3240,247,285,0,0,0,'F',0,'published','2025-06-23',1,'2025-06-23'),
(3241,247,286,0,0,0,'F',0,'published','2025-06-23',1,'2025-06-23'),
(3242,247,306,0,0,0,'F',0,'published','2025-06-23',1,'2025-06-23'),
(3243,247,307,0,0,0,'F',0,'published','2025-06-23',1,'2025-06-23'),
(3244,247,308,0,0,0,'F',0,'published','2025-06-23',1,'2025-06-23'),
(3245,247,309,0,0,0,'F',0,'published','2025-06-23',1,'2025-06-23'),
(3246,247,310,0,0,0,'F',0,'published','2025-06-23',1,'2025-06-23'),
(3247,247,311,0,0,0,'F',0,'published','2025-06-23',1,'2025-06-23'),
(3248,247,312,0,0,0,'F',0,'published','2025-06-23',1,'2025-06-23'),
(3249,247,313,0,0,0,'F',0,'published','2025-06-23',1,'2025-06-23'),
(3250,247,314,0,0,0,'F',0,'published','2025-06-23',1,'2025-06-23');
INSERT INTO `results` (`id`,`student_id`,`course_offering_id`,`continuous_assessment`,`exam_score`,`total_score`,`letter_grade`,`grade_point`,`status`,`published_at`,`updated_by`,`updated_at`) VALUES
(3251,247,330,0,0,0,'F',0,'published','2025-06-23',1,'2025-06-23'),
(3252,247,116,0,0,0,'F',0,'published','2025-06-23',1,'2025-06-23'),
(3253,247,117,0,0,0,'F',0,'published','2025-06-23',1,'2025-06-23'),
(3254,247,331,0,0,0,'F',0,'published','2025-06-23',1,'2025-06-23'),
(3255,247,118,0,0,0,'F',0,'published','2025-06-23',1,'2025-06-23'),
(3256,247,119,0,0,0,'F',0,'published','2025-06-23',1,'2025-06-23'),
(3257,247,120,0,0,0,'F',0,'published','2025-06-23',1,'2025-06-23'),
(3258,247,121,0,0,0,'F',0,'published','2025-06-23',1,'2025-06-23'),
(3259,247,346,0,0,0,'F',0,'published','2025-06-23',1,'2025-06-23'),
(3260,247,347,0,0,0,'F',0,'published','2025-06-23',1,'2025-06-23'),
(3261,247,332,0,0,0,'F',0,'published','2025-06-23',1,'2025-06-23'),
(3262,247,333,0,0,0,'F',0,'published','2025-06-23',1,'2025-06-23'),
(3263,247,334,0,0,0,'F',0,'published','2025-06-23',1,'2025-06-23'),
(3264,247,335,0,0,0,'F',0,'published','2025-06-23',1,'2025-06-23'),
(3265,247,336,0,0,0,'F',0,'published','2025-06-23',1,'2025-06-23'),
(3266,247,337,0,0,0,'F',0,'published','2025-06-23',1,'2025-06-23'),
(3267,247,338,0,0,0,'F',0,'published','2025-06-23',1,'2025-06-23'),
(3268,247,339,0,0,0,'F',0,'published','2025-06-23',1,'2025-06-23'),
(3269,247,340,0,0,0,'F',0,'published','2025-06-23',1,'2025-06-23'),
(3270,248,315,15,55,70,'A',5,'published','2025-06-24',1,'2025-06-24'),
(3271,248,316,0,0,0,'F',0,'published','2025-06-24',1,'2025-06-24'),
(3272,248,317,0,0,0,'F',0,'published','2025-06-24',1,'2025-06-24'),
(3273,248,318,0,0,0,'F',0,'published','2025-06-24',1,'2025-06-24'),
(3274,248,319,0,0,0,'F',0,'published','2025-06-24',1,'2025-06-24'),
(3275,248,320,0,0,0,'F',0,'published','2025-06-24',1,'2025-06-24'),
(3276,248,321,10,10,20,'F',0,'published','2025-06-24',1,'2025-06-24'),
(3277,281,281,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3278,281,280,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3279,281,282,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3280,281,283,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3281,281,284,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3282,281,287,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3283,281,285,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3284,281,286,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3285,281,306,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3286,281,307,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3287,281,308,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3288,281,309,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3289,281,310,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3290,281,311,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3291,281,312,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3292,281,313,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3293,281,314,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3294,207,315,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3295,207,316,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3296,207,317,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3297,207,318,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3298,207,320,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3299,207,321,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3300,210,315,15,50,65,'B',4,'published','2025-06-25',1,'2025-06-25'),
(3301,210,316,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3302,210,317,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3303,210,318,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3304,210,320,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3305,210,321,10,8,18,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3306,277,281,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3307,277,280,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3308,277,282,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3309,277,283,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3310,277,286,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3311,277,285,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3312,209,315,15,55,70,'A',5,'published','2025-06-25',1,'2025-06-25'),
(3313,209,316,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3314,209,317,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3315,209,318,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3316,209,320,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3317,209,321,20,35,55,'C',3,'published','2025-06-25',1,'2025-06-25'),
(3318,206,281,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3319,206,280,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3320,206,282,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3321,206,283,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3322,206,284,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3323,206,287,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3324,206,285,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3325,206,286,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3326,206,306,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3327,206,307,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3328,206,308,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3329,206,309,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3330,206,310,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3331,206,311,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3332,206,312,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3333,206,313,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3334,206,314,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3335,206,330,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3336,206,116,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3337,206,117,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3338,206,331,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3339,206,118,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3340,206,119,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3341,206,120,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3342,206,121,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3343,206,346,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3344,206,347,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3345,206,332,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3346,206,333,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3347,206,334,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3348,206,335,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3349,206,336,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3350,206,337,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3351,206,338,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3352,206,339,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3353,206,340,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3354,206,315,15,60,75,'A',5,'published','2025-06-25',1,'2025-06-25'),
(3355,206,316,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3356,206,317,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3357,206,318,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3358,206,319,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3359,206,320,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3360,206,321,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3361,189,281,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3362,189,280,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3363,189,282,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3364,189,283,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3365,189,284,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3366,189,287,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3367,189,285,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3368,189,286,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3369,189,306,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3370,189,307,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3371,189,308,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3372,189,309,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3373,189,310,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3374,189,311,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3375,189,312,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3376,189,313,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3377,189,314,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3378,189,332,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3379,189,333,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3380,189,334,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3381,189,335,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3382,189,336,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3383,189,337,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3384,189,338,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3385,189,339,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3386,189,340,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3387,189,330,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3388,189,116,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3389,189,117,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3390,189,331,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3391,189,118,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3392,189,119,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3393,189,120,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3394,189,121,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3395,189,346,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3396,189,347,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3397,189,315,15,50,65,'B',4,'published','2025-06-25',1,'2025-06-25'),
(3398,189,316,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3399,189,317,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3400,189,318,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3401,189,319,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3402,189,320,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3403,189,321,0,0,0,'F',0,'published','2025-06-25',1,'2025-06-25'),
(3404,32,345,23,42,65,'B',4,'published','2025-06-26',1,'2025-06-26'),
(3405,32,344,22,35,57,'C',3,'published','2025-06-26',1,'2025-06-26'),
(3406,232,315,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3407,232,316,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3408,232,317,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3409,232,318,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3410,232,320,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3411,232,321,30,11,41,'E',1,'published','2025-06-27',1,'2025-06-27'),
(3412,232,281,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3413,232,283,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3414,232,284,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3415,232,287,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3416,232,306,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3417,232,307,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3418,232,308,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3419,232,309,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3420,232,310,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3421,232,311,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3422,232,312,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3423,232,313,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3424,232,314,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3425,232,330,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3426,232,116,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3427,232,117,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3428,232,331,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3429,232,118,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3430,232,119,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3431,232,120,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3432,232,121,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3433,232,347,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3434,232,333,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3435,232,334,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3436,232,332,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3437,232,335,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3438,232,336,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3439,232,338,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3440,232,339,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3441,232,340,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3442,232,337,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3443,194,281,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3444,194,280,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3445,194,282,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3446,194,283,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3447,194,284,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3448,194,287,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3449,194,285,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3450,194,286,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3451,194,306,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3452,194,307,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3453,194,308,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3454,194,309,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3455,194,310,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3456,194,311,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3457,194,312,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3458,194,313,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3459,194,314,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3460,194,330,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3461,194,116,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3462,194,117,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3463,194,331,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3464,194,118,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3465,194,119,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3466,194,120,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3467,194,121,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3468,194,346,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3469,194,347,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3470,194,332,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3471,194,333,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3472,194,334,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3473,194,335,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3474,194,336,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3475,194,337,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3476,194,338,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3477,194,339,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3478,194,340,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3479,194,321,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3480,194,320,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3481,194,319,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3482,194,318,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3483,194,317,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3484,194,316,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3485,194,315,15,55,70,'A',5,'published','2025-06-27',1,'2025-06-27'),
(3486,194,341,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3487,190,2,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3488,190,13,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3489,190,14,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3490,190,15,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3491,190,16,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3492,190,17,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3493,190,18,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3494,190,19,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3495,190,20,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3496,190,21,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3497,190,22,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3498,190,23,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3499,190,24,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3500,190,25,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27');
INSERT INTO `results` (`id`,`student_id`,`course_offering_id`,`continuous_assessment`,`exam_score`,`total_score`,`letter_grade`,`grade_point`,`status`,`published_at`,`updated_by`,`updated_at`) VALUES
(3501,190,26,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3502,190,27,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3503,190,28,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3504,190,322,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3505,190,46,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3506,190,47,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3507,190,323,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3508,190,48,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3509,190,127,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3510,190,49,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3511,190,50,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3512,190,344,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3513,190,345,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3514,190,51,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3515,190,326,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3516,190,327,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3517,190,328,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3518,190,329,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3519,190,52,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3520,190,324,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3521,190,53,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3522,190,325,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3523,274,306,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3524,274,307,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3525,274,308,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3526,274,309,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3527,274,310,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3528,274,314,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3529,274,313,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3530,274,312,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3531,274,311,0,0,0,'F',0,'published','2025-06-27',1,'2025-06-27'),
(3532,244,404,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3533,244,405,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3534,244,406,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3535,283,308,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3536,283,307,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3537,285,281,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3538,283,306,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3539,283,309,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3540,285,283,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3541,283,310,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3542,283,311,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3543,285,284,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3544,283,312,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3545,283,313,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3546,283,314,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3547,285,287,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3548,285,285,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3549,283,281,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3550,283,280,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3551,283,282,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3552,283,283,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3553,283,284,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3554,283,287,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3555,283,285,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3556,283,286,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3557,285,280,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3558,286,281,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3559,286,280,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3560,286,282,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3561,286,283,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3562,286,284,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3563,286,287,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3564,286,286,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3565,285,306,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3566,285,307,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3567,285,308,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3568,285,309,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3569,286,285,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3570,285,310,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3571,285,311,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3572,285,312,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3573,285,313,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3574,285,314,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3575,261,280,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3576,261,281,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3577,261,282,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3578,261,283,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3579,261,284,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3580,261,287,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3581,261,285,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3582,261,286,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3583,192,51,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3584,192,326,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3585,192,327,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3586,192,328,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3587,192,329,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3588,192,52,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3589,192,324,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3590,192,53,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3591,192,325,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3592,262,281,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3593,262,280,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3594,262,282,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3595,262,283,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3596,262,284,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3597,262,287,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3598,262,285,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3599,262,286,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3600,262,306,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3601,262,307,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3602,262,308,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3603,262,309,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3604,262,310,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3605,262,311,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3606,262,312,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3607,262,313,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3608,262,314,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3609,193,281,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3610,193,280,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3611,193,282,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3612,193,284,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3613,193,283,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3614,193,287,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3615,193,285,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3616,193,286,0,0,0,'F',0,'published','2025-06-30',1,'2025-06-30'),
(3617,69,233,27,40,67,'B',4,'published','2025-07-02',1,'2025-07-02'),
(3618,69,106,0,0,0,'F',0,'published','2025-07-02',1,'2025-07-02'),
(3619,237,406,0,0,0,'F',0,'published','2025-07-03',1,'2025-07-03'),
(3620,237,405,0,0,0,'F',0,'published','2025-07-03',1,'2025-07-03'),
(3621,237,407,0,0,0,'F',0,'published','2025-07-03',1,'2025-07-03'),
(3622,237,404,0,0,0,'F',0,'published','2025-07-03',1,'2025-07-03'),
(3623,212,235,0,0,0,'F',0,'published','2025-07-17',1,'2025-07-17'),
(3624,212,236,0,0,0,'F',0,'published','2025-07-17',1,'2025-07-17'),
(3625,212,237,0,0,0,'F',0,'published','2025-07-17',1,'2025-07-17'),
(3626,212,238,0,0,0,'F',0,'published','2025-07-17',1,'2025-07-17'),
(3627,212,239,0,0,0,'F',0,'published','2025-07-17',1,'2025-07-17'),
(3628,212,240,0,0,0,'F',0,'published','2025-07-17',1,'2025-07-17'),
(3629,212,241,0,0,0,'F',0,'published','2025-07-17',1,'2025-07-17'),
(3630,212,242,0,0,0,'F',0,'published','2025-07-17',1,'2025-07-17'),
(3631,212,243,0,0,0,'F',0,'published','2025-07-17',1,'2025-07-17'),
(3632,212,244,0,0,0,'F',0,'published','2025-07-17',1,'2025-07-17'),
(3633,212,245,0,0,0,'F',0,'published','2025-07-17',1,'2025-07-17'),
(3634,212,246,0,0,0,'F',0,'published','2025-07-17',1,'2025-07-17'),
(3635,212,247,0,0,0,'F',0,'published','2025-07-17',1,'2025-07-17'),
(3636,212,248,0,0,0,'F',0,'published','2025-07-17',1,'2025-07-17'),
(3637,212,249,0,0,0,'F',0,'published','2025-07-17',1,'2025-07-17'),
(3638,212,250,0,0,0,'F',0,'published','2025-07-17',1,'2025-07-17'),
(3639,212,251,0,0,0,'F',0,'published','2025-07-17',1,'2025-07-17'),
(3640,212,252,0,0,0,'F',0,'published','2025-07-17',1,'2025-07-17'),
(3641,212,253,0,0,0,'F',0,'published','2025-07-17',1,'2025-07-17'),
(3642,212,254,0,0,0,'F',0,'published','2025-07-17',1,'2025-07-17'),
(3643,212,255,0,0,0,'F',0,'published','2025-07-17',1,'2025-07-17'),
(3644,212,256,0,0,0,'F',0,'published','2025-07-17',1,'2025-07-17'),
(3645,212,257,0,0,0,'F',0,'published','2025-07-17',1,'2025-07-17'),
(3646,212,258,0,0,0,'F',0,'published','2025-07-17',1,'2025-07-17'),
(3647,212,259,0,0,0,'F',0,'published','2025-07-17',1,'2025-07-17'),
(3648,212,260,0,0,0,'F',0,'published','2025-07-17',1,'2025-07-17'),
(3649,212,261,0,0,0,'F',0,'published','2025-07-17',1,'2025-07-17'),
(3650,212,262,0,0,0,'F',0,'published','2025-07-17',1,'2025-07-17'),
(3651,212,263,0,0,0,'F',0,'published','2025-07-17',1,'2025-07-17'),
(3652,212,264,0,0,0,'F',0,'published','2025-07-17',1,'2025-07-17'),
(3653,212,265,0,0,0,'F',0,'published','2025-07-17',1,'2025-07-17'),
(3654,212,350,0,0,0,'F',0,'published','2025-07-17',1,'2025-07-17'),
(3655,212,351,0,0,0,'F',0,'published','2025-07-17',1,'2025-07-17'),
(3656,212,266,0,0,0,'F',0,'published','2025-07-17',1,'2025-07-17'),
(3657,212,267,0,0,0,'F',0,'published','2025-07-17',1,'2025-07-17'),
(3658,212,268,0,0,0,'F',0,'published','2025-07-17',1,'2025-07-17'),
(3659,212,269,0,0,0,'F',0,'published','2025-07-17',1,'2025-07-17'),
(3660,212,270,0,0,0,'F',0,'published','2025-07-17',1,'2025-07-17'),
(3661,212,271,0,0,0,'F',0,'published','2025-07-17',1,'2025-07-17'),
(3662,212,272,0,0,0,'F',0,'published','2025-07-17',1,'2025-07-17'),
(3663,212,273,0,0,0,'F',0,'published','2025-07-17',1,'2025-07-17'),
(3664,212,274,0,0,0,'F',0,'published','2025-07-17',1,'2025-07-17'),
(3665,212,232,0,0,0,'F',0,'published','2025-07-17',1,'2025-07-17'),
(3666,212,275,0,0,0,'F',0,'published','2025-07-17',1,'2025-07-17'),
(3667,212,92,0,0,0,'F',0,'published','2025-07-17',1,'2025-07-17'),
(3668,212,93,0,0,0,'F',0,'published','2025-07-17',1,'2025-07-17'),
(3669,212,95,0,0,0,'F',0,'published','2025-07-17',1,'2025-07-17'),
(3670,212,94,0,0,0,'F',0,'published','2025-07-17',1,'2025-07-17'),
(3671,212,96,0,0,0,'F',0,'published','2025-07-17',1,'2025-07-17'),
(3672,212,97,0,0,0,'F',0,'published','2025-07-17',1,'2025-07-17'),
(3673,212,98,0,0,0,'F',0,'published','2025-07-17',1,'2025-07-17'),
(3674,212,99,0,0,0,'F',0,'published','2025-07-17',1,'2025-07-17'),
(3675,212,100,0,0,0,'F',0,'published','2025-07-17',1,'2025-07-17'),
(3676,212,101,0,0,0,'F',0,'published','2025-07-17',1,'2025-07-17'),
(3677,212,102,0,0,0,'F',0,'published','2025-07-17',1,'2025-07-17'),
(3678,212,103,21,33,54,'C',3,'published','2025-07-17',1,'2025-07-17'),
(3679,212,104,28,45,73,'A',5,'published','2025-07-17',1,'2025-07-17'),
(3680,212,105,0,0,0,'F',0,'published','2025-07-17',1,'2025-07-17'),
(3681,261,306,0,0,0,'F',0,'published','2025-07-24',1,'2025-07-24'),
(3682,261,307,0,0,0,'F',0,'published','2025-07-24',1,'2025-07-24'),
(3683,261,308,0,0,0,'F',0,'published','2025-07-24',1,'2025-07-24'),
(3684,261,309,0,0,0,'F',0,'published','2025-07-24',1,'2025-07-24'),
(3685,261,310,0,0,0,'F',0,'published','2025-07-24',1,'2025-07-24'),
(3686,261,311,0,0,0,'F',0,'published','2025-07-24',1,'2025-07-24'),
(3687,261,312,0,0,0,'F',0,'published','2025-07-24',1,'2025-07-24'),
(3688,261,313,0,0,0,'F',0,'published','2025-07-24',1,'2025-07-24'),
(3689,261,314,0,0,0,'F',0,'published','2025-07-24',1,'2025-07-24'),
(3690,201,183,29,37,66,'B',4,'published','2025-07-30',1,'2025-07-30'),
(3691,201,182,18,45,63,'B',4,'published','2025-07-30',1,'2025-07-30'),
(3692,201,181,20,27,47,'D',2,'published','2025-07-30',1,'2025-07-30'),
(3693,201,180,26,43,69,'B',4,'published','2025-07-30',1,'2025-07-30'),
(3694,201,179,27,30,57,'C',3,'published','2025-07-30',1,'2025-07-30'),
(3695,201,178,20,42,62,'B',4,'published','2025-07-30',1,'2025-07-30'),
(3696,201,177,15,62,77,'A',5,'published','2025-07-30',1,'2025-07-30'),
(3697,201,176,20,65,85,'A',5,'published','2025-07-30',1,'2025-07-30'),
(3698,201,175,0,0,0,'F',0,'published','2025-07-30',1,'2025-07-30'),
(3699,183,276,0,0,0,'F',0,'published','2025-07-30',1,'2025-07-30'),
(3700,183,12,0,0,0,'F',0,'published','2025-07-30',1,'2025-07-30'),
(3701,183,11,0,0,0,'F',0,'published','2025-07-30',1,'2025-07-30'),
(3702,183,10,0,0,0,'F',0,'published','2025-07-30',1,'2025-07-30'),
(3703,183,9,0,0,0,'F',0,'published','2025-07-30',1,'2025-07-30'),
(3704,183,8,0,0,0,'F',0,'published','2025-07-30',1,'2025-07-30'),
(3705,183,7,0,0,0,'F',0,'published','2025-07-30',1,'2025-07-30'),
(3706,183,6,0,0,0,'F',0,'published','2025-07-30',1,'2025-07-30'),
(3707,183,5,0,0,0,'F',0,'published','2025-07-30',1,'2025-07-30'),
(3708,183,4,0,0,0,'F',0,'published','2025-07-30',1,'2025-07-30'),
(3709,183,3,0,0,0,'F',0,'published','2025-07-30',1,'2025-07-30'),
(3710,183,1,0,0,0,'F',0,'published','2025-07-30',1,'2025-07-30'),
(3711,77,51,24,32,56,'C',3,'published','2025-07-30',1,'2025-07-30'),
(3712,77,52,0,0,0,'F',0,'published','2025-07-30',1,'2025-07-30'),
(3713,77,53,0,0,0,'F',0,'published','2025-07-30',1,'2025-07-30'),
(3714,78,51,20,30,50,'C',3,'published','2025-08-04',1,'2025-08-04'),
(3715,78,52,0,0,0,'F',0,'published','2025-08-04',1,'2025-08-04'),
(3716,78,53,0,0,0,'F',0,'published','2025-08-04',1,'2025-08-04'),
(3717,198,233,20,10,30,'F',0,'published','2025-08-06',1,'2025-08-06'),
(3718,198,175,0,0,0,'F',0,'published','2025-08-06',1,'2025-08-06'),
(3719,198,176,0,0,0,'F',0,'published','2025-08-06',1,'2025-08-06'),
(3720,198,177,20,36,56,'C',3,'published','2025-08-06',1,'2025-08-06'),
(3721,198,178,0,0,0,'F',0,'published','2025-08-06',1,'2025-08-06'),
(3722,198,179,0,0,0,'F',0,'published','2025-08-06',1,'2025-08-06'),
(3723,198,180,27,26,53,'C',3,'published','2025-08-06',1,'2025-08-06'),
(3724,198,181,0,0,0,'F',0,'published','2025-08-06',1,'2025-08-06'),
(3725,198,182,20,30,50,'C',3,'published','2025-08-06',1,'2025-08-06'),
(3726,198,106,0,0,0,'F',0,'published','2025-08-06',1,'2025-08-06'),
(3727,198,183,0,0,0,'F',0,'published','2025-08-06',1,'2025-08-06'),
(3728,80,51,0,0,0,'F',0,'published','2025-08-19',1,'2025-08-19'),
(3729,80,52,0,0,0,'F',0,'published','2025-08-19',1,'2025-08-19'),
(3730,80,53,0,0,0,'F',0,'published','2025-08-19',1,'2025-08-19'),
(3731,90,51,23,30,53,'C',3,'published','2025-08-19',1,'2025-08-19'),
(3732,90,52,0,0,0,'F',0,'published','2025-08-19',1,'2025-08-19'),
(3733,90,53,0,0,0,'F',0,'published','2025-08-19',1,'2025-08-19'),
(3734,90,325,0,0,0,'F',0,'published','2025-08-19',1,'2025-08-19'),
(3735,22,51,20,30,50,'C',3,'published','2025-09-03',1,'2025-09-03'),
(3736,22,52,0,0,0,'F',0,'published','2025-09-03',1,'2025-09-03'),
(3737,22,53,0,0,0,'F',0,'published','2025-09-03',1,'2025-09-03'),
(3738,23,51,20,30,50,'C',3,'published','2025-09-03',1,'2025-09-03'),
(3739,23,52,0,0,0,'F',0,'published','2025-09-03',1,'2025-09-03'),
(3740,23,53,0,0,0,'F',0,'published','2025-09-03',1,'2025-09-03'),
(3741,39,332,28,22,50,'C',3,'published','2025-09-04',1,'2025-09-04'),
(3742,40,390,0,0,0,'F',0,'published','2025-09-06',1,'2025-09-06'),
(3743,40,394,0,0,0,'F',0,'published','2025-09-06',1,'2025-09-06'),
(3744,40,393,0,0,0,'F',0,'published','2025-09-06',1,'2025-09-06'),
(3745,40,392,0,0,0,'F',0,'published','2025-09-06',1,'2025-09-06'),
(3746,40,397,23,50,73,'A',5,'published','2025-09-06',1,'2025-09-06'),
(3747,40,398,0,0,0,'F',0,'published','2025-09-06',1,'2025-09-06'),
(3748,40,399,58,0,58,'C',3,'published','2025-09-06',1,'2025-09-06'),
(3749,40,400,17,54,71,'A',5,'published','2025-09-06',1,'2025-09-06'),
(3750,40,396,20,60,80,'A',5,'published','2025-09-06',1,'2025-09-06');
INSERT INTO `results` (`id`,`student_id`,`course_offering_id`,`continuous_assessment`,`exam_score`,`total_score`,`letter_grade`,`grade_point`,`status`,`published_at`,`updated_by`,`updated_at`) VALUES
(3751,305,39,20,34,54,'C',3,'published','2025-09-08',1,'2025-09-08'),
(3752,305,40,21,42,63,'B',4,'published','2025-09-08',1,'2025-09-08'),
(3753,305,41,0,0,0,'F',0,'published','2025-09-08',1,'2025-09-08'),
(3754,305,42,10,37,47,'D',2,'published','2025-09-08',1,'2025-09-08'),
(3755,305,43,10,38,48,'D',2,'published','2025-09-08',1,'2025-09-08'),
(3756,305,45,18,35,53,'C',3,'published','2025-09-08',1,'2025-09-08'),
(3757,305,44,20,33,53,'C',3,'published','2025-09-08',1,'2025-09-08'),
(3758,305,122,10,14,24,'F',0,'published','2025-09-08',1,'2025-09-08'),
(3759,305,123,25,32,57,'C',3,'published','2025-09-08',1,'2025-09-08'),
(3760,305,124,25,28,53,'C',3,'published','2025-09-08',1,'2025-09-08'),
(3761,305,128,0,0,0,'F',0,'published','2025-09-08',1,'2025-09-08'),
(3762,305,125,20,18,38,'F',0,'published','2025-09-08',1,'2025-09-08'),
(3763,305,126,14,14,28,'F',0,'published','2025-09-08',1,'2025-09-08'),
(3764,305,129,0,0,0,'F',0,'published','2025-09-08',1,'2025-09-08'),
(3765,34,53,0,0,0,'F',0,'published','2025-09-08',1,'2025-09-08'),
(3766,96,122,20,35,55,'C',3,'published','2025-09-08',1,'2025-09-08'),
(3767,96,124,25,52,77,'A',5,'published','2025-09-08',1,'2025-09-08'),
(3768,96,123,25,45,70,'A',5,'published','2025-09-08',1,'2025-09-08'),
(3769,96,128,0,0,0,'F',0,'published','2025-09-08',1,'2025-09-08'),
(3770,96,125,20,43,63,'B',4,'published','2025-09-08',1,'2025-09-08'),
(3771,96,126,13,38,51,'C',3,'published','2025-09-08',1,'2025-09-08'),
(3772,96,129,0,0,0,'F',0,'published','2025-09-08',1,'2025-09-08'),
(3773,96,277,0,0,0,'F',0,'published','2025-09-08',1,'2025-09-08'),
(3774,96,130,0,0,0,'F',0,'published','2025-09-08',1,'2025-09-08'),
(3775,306,212,0,0,0,'F',0,'published','2025-09-09',1,'2025-09-09'),
(3776,306,214,0,0,0,'F',0,'published','2025-09-09',1,'2025-09-09'),
(3777,306,215,0,0,0,'F',0,'published','2025-09-09',1,'2025-09-09'),
(3778,306,216,0,0,0,'F',0,'published','2025-09-09',1,'2025-09-09'),
(3779,306,217,0,0,0,'F',0,'published','2025-09-09',1,'2025-09-09'),
(3780,306,234,0,0,0,'F',0,'published','2025-09-09',1,'2025-09-09'),
(3781,306,221,0,0,0,'F',0,'published','2025-09-09',1,'2025-09-09'),
(3782,306,220,0,0,0,'F',0,'published','2025-09-09',1,'2025-09-09'),
(3783,306,219,0,0,0,'F',0,'published','2025-09-09',1,'2025-09-09'),
(3784,306,218,0,0,0,'F',0,'published','2025-09-09',1,'2025-09-09'),
(3785,306,223,0,0,0,'F',0,'published','2025-09-09',1,'2025-09-09'),
(3786,306,232,0,0,0,'F',0,'published','2025-09-09',1,'2025-09-09'),
(3787,306,231,0,0,0,'F',0,'published','2025-09-09',1,'2025-09-09'),
(3788,306,230,0,0,0,'F',0,'published','2025-09-09',1,'2025-09-09'),
(3789,306,229,0,0,0,'F',0,'published','2025-09-09',1,'2025-09-09'),
(3790,306,228,0,0,0,'F',0,'published','2025-09-09',1,'2025-09-09'),
(3791,306,227,0,0,0,'F',0,'published','2025-09-09',1,'2025-09-09'),
(3792,306,226,0,0,0,'F',0,'published','2025-09-09',1,'2025-09-09'),
(3793,306,225,0,0,0,'F',0,'published','2025-09-09',1,'2025-09-09'),
(3794,306,224,0,0,0,'F',0,'published','2025-09-09',1,'2025-09-09'),
(3795,307,155,0,0,0,'F',0,'published','2025-09-10',1,'2025-09-10'),
(3796,307,156,0,0,0,'F',0,'published','2025-09-10',1,'2025-09-10'),
(3797,307,157,0,0,0,'F',0,'published','2025-09-10',1,'2025-09-10'),
(3798,307,154,0,0,0,'F',0,'published','2025-09-10',1,'2025-09-10'),
(3799,307,158,0,0,0,'F',0,'published','2025-09-10',1,'2025-09-10'),
(3800,307,159,0,0,0,'F',0,'published','2025-09-10',1,'2025-09-10'),
(3801,307,160,0,0,0,'F',0,'published','2025-09-10',1,'2025-09-10'),
(3802,307,161,0,0,0,'F',0,'published','2025-09-10',1,'2025-09-10'),
(3803,307,162,0,0,0,'F',0,'published','2025-09-10',1,'2025-09-10'),
(3804,307,163,0,0,0,'F',0,'published','2025-09-10',1,'2025-09-10'),
(3805,307,164,0,0,0,'F',0,'published','2025-09-10',1,'2025-09-10'),
(3806,307,165,0,0,0,'F',0,'published','2025-09-10',1,'2025-09-10'),
(3807,307,166,0,0,0,'F',0,'published','2025-09-10',1,'2025-09-10'),
(3808,307,167,0,0,0,'F',0,'published','2025-09-10',1,'2025-09-10'),
(3809,307,168,0,0,0,'F',0,'published','2025-09-10',1,'2025-09-10'),
(3810,307,169,0,0,0,'F',0,'published','2025-09-10',1,'2025-09-10'),
(3811,307,170,0,0,0,'F',0,'published','2025-09-10',1,'2025-09-10'),
(3812,307,171,0,0,0,'F',0,'published','2025-09-10',1,'2025-09-10'),
(3813,307,172,0,0,0,'F',0,'published','2025-09-10',1,'2025-09-10'),
(3814,307,173,0,0,0,'F',0,'published','2025-09-10',1,'2025-09-10'),
(3815,307,174,0,0,0,'F',0,'published','2025-09-10',1,'2025-09-10'),
(3816,307,138,0,0,0,'F',0,'published','2025-09-10',1,'2025-09-10'),
(3817,307,139,26,44,70,'A',5,'published','2025-09-10',1,'2025-09-10'),
(3818,307,140,28,55,83,'A',5,'published','2025-09-10',1,'2025-09-10'),
(3819,307,141,25,31,56,'C',3,'published','2025-09-10',1,'2025-09-10'),
(3820,307,142,20,41,61,'B',4,'published','2025-09-10',1,'2025-09-10'),
(3821,307,143,25,55,80,'A',5,'published','2025-09-10',1,'2025-09-10'),
(3822,307,144,24,68,92,'A',5,'published','2025-09-10',1,'2025-09-10'),
(3823,307,145,28,10,38,'F',0,'published','2025-09-10',1,'2025-09-10'),
(3824,307,146,20,35,55,'C',3,'published','2025-09-10',1,'2025-09-10'),
(3825,307,147,30,45,75,'A',5,'published','2025-09-10',1,'2025-09-10'),
(3826,307,148,24,35,59,'C',3,'published','2025-09-10',1,'2025-09-10'),
(3827,307,149,21,45,66,'B',4,'published','2025-09-10',1,'2025-09-10'),
(3828,307,150,0,0,0,'F',0,'published','2025-09-10',1,'2025-09-10'),
(3829,307,151,23,47,70,'A',5,'published','2025-09-10',1,'2025-09-10'),
(3830,307,152,27,44,71,'A',5,'published','2025-09-10',1,'2025-09-10'),
(3831,307,153,22,50,72,'A',5,'published','2025-09-10',1,'2025-09-10'),
(3832,308,212,0,0,0,'F',0,'published','2025-09-10',1,'2025-09-10'),
(3833,308,213,0,0,0,'F',0,'published','2025-09-10',1,'2025-09-10'),
(3834,308,214,0,0,0,'F',0,'published','2025-09-10',1,'2025-09-10'),
(3835,308,215,0,0,0,'F',0,'published','2025-09-10',1,'2025-09-10'),
(3836,308,216,0,0,0,'F',0,'published','2025-09-10',1,'2025-09-10'),
(3837,308,217,0,0,0,'F',0,'published','2025-09-10',1,'2025-09-10'),
(3838,308,218,0,0,0,'F',0,'published','2025-09-10',1,'2025-09-10'),
(3839,308,219,0,0,0,'F',0,'published','2025-09-10',1,'2025-09-10'),
(3840,308,220,0,0,0,'F',0,'published','2025-09-10',1,'2025-09-10'),
(3841,308,221,0,0,0,'F',0,'published','2025-09-10',1,'2025-09-10'),
(3842,308,222,0,0,0,'F',0,'published','2025-09-10',1,'2025-09-10'),
(3843,308,234,0,0,0,'F',0,'published','2025-09-10',1,'2025-09-10'),
(3844,308,223,0,0,0,'F',0,'published','2025-09-10',1,'2025-09-10'),
(3845,308,224,0,0,0,'F',0,'published','2025-09-10',1,'2025-09-10'),
(3846,308,226,0,0,0,'F',0,'published','2025-09-10',1,'2025-09-10'),
(3847,308,227,0,0,0,'F',0,'published','2025-09-10',1,'2025-09-10'),
(3848,308,228,0,0,0,'F',0,'published','2025-09-10',1,'2025-09-10'),
(3849,308,229,0,0,0,'F',0,'published','2025-09-10',1,'2025-09-10'),
(3850,308,230,0,0,0,'F',0,'published','2025-09-10',1,'2025-09-10'),
(3851,308,231,0,0,0,'F',0,'published','2025-09-10',1,'2025-09-10'),
(3852,308,232,0,0,0,'F',0,'published','2025-09-10',1,'2025-09-10'),
(3853,49,38,0,0,0,'F',0,'published','2025-09-10',1,'2025-09-10'),
(3854,49,39,0,0,0,'F',0,'published','2025-09-10',1,'2025-09-10'),
(3855,49,40,21,42,63,'B',4,'published','2025-09-10',1,'2025-09-10'),
(3856,49,41,0,0,0,'F',0,'published','2025-09-10',1,'2025-09-10'),
(3857,49,42,10,45,55,'C',3,'published','2025-09-10',1,'2025-09-10'),
(3858,49,43,10,45,55,'C',3,'published','2025-09-10',1,'2025-09-10'),
(3859,49,44,22,57,79,'A',5,'published','2025-09-10',1,'2025-09-10'),
(3860,49,45,21,55,76,'A',5,'published','2025-09-10',1,'2025-09-10'),
(3861,49,122,24,49,73,'A',5,'published','2025-09-10',1,'2025-09-10'),
(3862,49,123,23,58,81,'A',5,'published','2025-09-10',1,'2025-09-10'),
(3863,49,124,25,60,85,'A',5,'published','2025-09-10',1,'2025-09-10'),
(3864,49,125,20,53,73,'A',5,'published','2025-09-10',1,'2025-09-10'),
(3865,49,128,0,0,0,'F',0,'published','2025-09-10',1,'2025-09-10'),
(3866,49,130,0,0,0,'F',0,'published','2025-09-10',1,'2025-09-10'),
(3867,49,129,0,0,0,'F',0,'published','2025-09-10',1,'2025-09-10'),
(3868,49,126,14,36,50,'C',3,'published','2025-09-10',1,'2025-09-10'),
(3869,40,395,72,0,72,'A',5,'published','2025-09-10',1,'2025-09-10'),
(3870,309,408,22,48,70,'A',5,'published','2025-09-17',1,'2025-09-17'),
(3871,309,409,10,60,70,'A',5,'published','2025-09-17',1,'2025-09-17'),
(3872,309,410,11,59,70,'A',5,'published','2025-09-17',1,'2025-09-17'),
(3873,309,411,25,41,66,'B',4,'published','2025-09-17',1,'2025-09-17'),
(3874,309,412,25,50,75,'A',5,'published','2025-09-17',1,'2025-09-17'),
(3875,309,413,20,51,71,'A',5,'published','2025-09-17',1,'2025-09-17'),
(3876,309,414,27,43,70,'A',5,'published','2025-09-17',1,'2025-09-17'),
(3877,309,415,27,43,70,'A',5,'published','2025-09-17',1,'2025-09-17'),
(3878,309,416,21,40,61,'B',4,'published','2025-09-17',1,'2025-09-17'),
(3879,309,417,22,36,58,'C',3,'published','2025-09-17',1,'2025-09-17'),
(3880,309,418,22,60,82,'A',5,'published','2025-09-17',1,'2025-09-17'),
(3881,309,419,0,0,0,'F',0,'published','2025-09-17',1,'2025-09-17'),
(3882,309,420,20,37,57,'C',3,'published','2025-09-17',1,'2025-09-17'),
(3883,309,421,25,15,40,'E',1,'published','2025-09-17',1,'2025-09-17'),
(3884,310,408,25,70,95,'A',5,'published','2025-09-17',1,'2025-09-17'),
(3885,310,410,20,50,70,'A',5,'published','2025-09-17',1,'2025-09-17'),
(3886,310,411,0,0,0,'F',0,'published','2025-09-17',1,'2025-09-17'),
(3887,310,412,22,68,90,'A',5,'published','2025-09-17',1,'2025-09-17'),
(3888,310,414,27,31,58,'C',3,'published','2025-09-17',1,'2025-09-17'),
(3889,312,409,20,40,60,'B',4,'published','2025-09-17',1,'2025-09-17'),
(3890,312,410,14,46,60,'B',4,'published','2025-09-17',1,'2025-09-17'),
(3891,312,411,24,45,69,'B',4,'published','2025-09-17',1,'2025-09-17'),
(3892,312,412,25,29,54,'C',3,'published','2025-09-17',1,'2025-09-17'),
(3893,312,413,18,65,83,'A',5,'published','2025-09-17',1,'2025-09-17'),
(3894,312,414,28,37,65,'B',4,'published','2025-09-17',1,'2025-09-17'),
(3895,310,409,19,42,61,'B',4,'published','2025-09-17',1,'2025-09-17'),
(3896,312,415,28,37,65,'B',4,'published','2025-09-17',1,'2025-09-17'),
(3897,312,408,27,41,68,'B',4,'published','2025-09-17',1,'2025-09-17'),
(3898,310,415,29,48,77,'A',5,'published','2025-09-17',1,'2025-09-17'),
(3899,312,416,20,25,45,'D',2,'published','2025-09-17',1,'2025-09-17'),
(3900,312,417,20,39,59,'C',3,'published','2025-09-17',1,'2025-09-17'),
(3901,312,418,20,43,63,'B',4,'published','2025-09-17',1,'2025-09-17'),
(3902,312,419,0,0,0,'F',0,'published','2025-09-17',1,'2025-09-17'),
(3903,312,420,20,32,52,'C',3,'published','2025-09-17',1,'2025-09-17'),
(3904,312,421,20,24,44,'E',1,'published','2025-09-17',1,'2025-09-17'),
(3905,310,416,22,55,77,'A',5,'published','2025-09-17',1,'2025-09-17'),
(3906,310,417,22,57,79,'A',5,'published','2025-09-17',1,'2025-09-17'),
(3907,310,418,21,60,81,'A',5,'published','2025-09-17',1,'2025-09-17'),
(3908,310,419,0,0,0,'F',0,'published','2025-09-17',1,'2025-09-17'),
(3909,310,420,20,40,60,'B',4,'published','2025-09-17',1,'2025-09-17'),
(3910,310,421,25,60,85,'A',5,'published','2025-09-17',1,'2025-09-17'),
(3911,74,422,0,0,0,'F',0,'published','2025-09-17',1,'2025-09-17'),
(3912,311,416,21,45,66,'B',4,'published','2025-09-17',1,'2025-09-17'),
(3913,311,417,21,55,76,'A',5,'published','2025-09-17',1,'2025-09-17'),
(3914,311,419,0,0,0,'F',0,'published','2025-09-17',1,'2025-09-17'),
(3915,311,420,20,44,64,'B',4,'published','2025-09-17',1,'2025-09-17'),
(3916,311,421,26,45,71,'A',5,'published','2025-09-17',1,'2025-09-17'),
(3917,311,418,20,52,72,'A',5,'published','2025-09-17',1,'2025-09-17'),
(3918,313,408,28,34,62,'B',4,'published','2025-09-17',1,'2025-09-17'),
(3919,313,409,20,35,55,'C',3,'published','2025-09-17',1,'2025-09-17'),
(3920,313,410,13,47,60,'B',4,'published','2025-09-17',1,'2025-09-17'),
(3921,313,411,26,35,61,'B',4,'published','2025-09-17',1,'2025-09-17'),
(3922,313,412,28,24,52,'C',3,'published','2025-09-17',1,'2025-09-17'),
(3923,313,413,20,58,78,'A',5,'published','2025-09-17',1,'2025-09-17'),
(3924,313,414,26,49,75,'A',5,'published','2025-09-17',1,'2025-09-17'),
(3925,313,415,28,32,60,'B',4,'published','2025-09-17',1,'2025-09-17'),
(3926,313,416,20,40,60,'B',4,'published','2025-09-17',1,'2025-09-17'),
(3927,313,417,23,34,57,'C',3,'published','2025-09-17',1,'2025-09-17'),
(3928,313,418,18,52,70,'A',5,'published','2025-09-17',1,'2025-09-17'),
(3929,313,419,0,0,0,'F',0,'published','2025-09-17',1,'2025-09-17'),
(3930,313,420,20,32,52,'C',3,'published','2025-09-17',1,'2025-09-17'),
(3931,313,421,20,35,55,'C',3,'published','2025-09-17',1,'2025-09-17'),
(3932,311,408,22,59,81,'A',5,'published','2025-09-17',1,'2025-09-17'),
(3933,311,409,20,50,70,'A',5,'published','2025-09-17',1,'2025-09-17'),
(3934,311,410,26,59,85,'A',5,'published','2025-09-17',1,'2025-09-17'),
(3935,311,411,22,40,62,'B',4,'published','2025-09-17',1,'2025-09-17'),
(3936,311,412,27,54,81,'A',5,'published','2025-09-17',1,'2025-09-17'),
(3937,311,413,18,68,86,'A',5,'published','2025-09-17',1,'2025-09-17'),
(3938,311,414,27,44,71,'A',5,'published','2025-09-17',1,'2025-09-17'),
(3939,311,415,26,38,64,'B',4,'published','2025-09-17',1,'2025-09-17'),
(3940,314,408,0,0,0,'F',0,'published','2025-09-17',1,'2025-09-17'),
(3941,314,409,0,0,0,'F',0,'published','2025-09-17',1,'2025-09-17'),
(3942,314,410,0,0,0,'F',0,'published','2025-09-17',1,'2025-09-17'),
(3943,314,411,0,0,0,'F',0,'published','2025-09-17',1,'2025-09-17'),
(3944,314,412,0,0,0,'F',0,'published','2025-09-17',1,'2025-09-17'),
(3945,314,413,0,0,0,'F',0,'published','2025-09-17',1,'2025-09-17'),
(3946,314,414,0,0,0,'F',0,'published','2025-09-17',1,'2025-09-17'),
(3947,314,415,0,0,0,'F',0,'published','2025-09-17',1,'2025-09-17'),
(3948,314,416,20,32,52,'C',3,'published','2025-09-17',1,'2025-09-17'),
(3949,314,417,20,30,50,'C',3,'published','2025-09-17',1,'2025-09-17'),
(3950,314,418,0,0,0,'F',0,'published','2025-09-17',1,'2025-09-17'),
(3951,314,419,0,0,0,'F',0,'published','2025-09-17',1,'2025-09-17'),
(3952,314,420,0,0,0,'F',0,'published','2025-09-17',1,'2025-09-17'),
(3953,314,421,18,15,33,'F',0,'published','2025-09-17',1,'2025-09-17'),
(3954,310,413,18,66,84,'A',5,'published','2025-09-17',1,'2025-09-17'),
(3955,142,107,0,0,0,'F',0,'published','2025-09-22',1,'2025-09-22'),
(3956,276,313,0,0,0,'F',0,'published','2025-09-29',1,'2025-09-29'),
(3957,276,314,0,0,0,'F',0,'published','2025-09-29',1,'2025-09-29'),
(3958,276,312,0,0,0,'F',0,'published','2025-09-29',1,'2025-09-29'),
(3959,276,311,0,0,0,'F',0,'published','2025-09-29',1,'2025-09-29'),
(3960,276,310,0,0,0,'F',0,'published','2025-09-29',1,'2025-09-29'),
(3961,276,309,0,0,0,'F',0,'published','2025-09-29',1,'2025-09-29'),
(3962,276,308,0,0,0,'F',0,'published','2025-09-29',1,'2025-09-29'),
(3963,276,307,0,0,0,'F',0,'published','2025-09-29',1,'2025-09-29'),
(3964,276,306,0,0,0,'F',0,'published','2025-09-29',1,'2025-09-29'),
(3965,5,46,30,15,45,'D',2,'published','2025-10-13',1,'2025-10-13'),
(3966,5,47,29,13,42,'E',1,'published','2025-10-13',1,'2025-10-13'),
(3967,5,48,28,41,69,'B',4,'published','2025-10-13',1,'2025-10-13'),
(3968,5,127,28,10,38,'F',0,'published','2025-10-13',1,'2025-10-13'),
(3969,5,49,0,0,0,'F',0,'published','2025-10-13',1,'2025-10-13'),
(3970,5,50,26,41,67,'B',4,'published','2025-10-13',1,'2025-10-13'),
(3971,5,344,22,46,68,'B',4,'published','2025-10-13',1,'2025-10-13'),
(3972,5,345,22,50,72,'A',5,'published','2025-10-13',1,'2025-10-13'),
(3973,5,51,26,48,74,'A',5,'published','2025-10-13',1,'2025-10-13'),
(3974,5,52,0,0,0,'F',0,'published','2025-10-13',1,'2025-10-13'),
(3975,92,184,25,40,65,'B',4,'published','2025-10-14',1,'2025-10-14'),
(3976,92,193,20,53,73,'A',5,'published','2025-10-14',1,'2025-10-14'),
(3977,92,194,26,32,58,'C',3,'published','2025-10-14',1,'2025-10-14'),
(3978,92,195,25,26,51,'C',3,'published','2025-10-14',1,'2025-10-14'),
(3979,92,198,27,32,59,'C',3,'published','2025-10-14',1,'2025-10-14'),
(3980,92,197,29,11,40,'E',1,'published','2025-10-14',1,'2025-10-14'),
(3981,92,196,20,20,40,'E',1,'published','2025-10-14',1,'2025-10-14'),
(3982,92,352,0,0,0,'F',0,'published','2025-10-14',1,'2025-10-14'),
(3983,92,353,26,45,71,'A',5,'published','2025-10-14',1,'2025-10-14'),
(3984,92,199,20,40,60,'B',4,'published','2025-10-14',1,'2025-10-14'),
(3985,92,176,25,30,55,'C',3,'published','2025-10-14',1,'2025-10-14'),
(3986,92,177,20,34,54,'C',3,'published','2025-10-14',1,'2025-10-14'),
(3987,92,178,20,35,55,'C',3,'published','2025-10-14',1,'2025-10-14'),
(3988,92,179,29,21,50,'C',3,'published','2025-10-14',1,'2025-10-14'),
(3989,92,180,29,25,54,'C',3,'published','2025-10-14',1,'2025-10-14'),
(3990,92,181,0,0,0,'F',0,'published','2025-10-14',1,'2025-10-14'),
(3991,92,182,22,28,50,'C',3,'published','2025-10-14',1,'2025-10-14'),
(3992,92,183,21,6,27,'F',0,'published','2025-10-14',1,'2025-10-14'),
(3993,92,212,0,0,0,'F',0,'published','2025-10-14',1,'2025-10-14'),
(3994,92,213,0,0,0,'F',0,'published','2025-10-14',1,'2025-10-14'),
(3995,92,214,0,0,0,'F',0,'published','2025-10-14',1,'2025-10-14'),
(3996,92,215,0,0,0,'F',0,'published','2025-10-14',1,'2025-10-14'),
(3997,92,216,0,0,0,'F',0,'published','2025-10-14',1,'2025-10-14'),
(3998,92,217,0,0,0,'F',0,'published','2025-10-14',1,'2025-10-14'),
(3999,92,219,0,0,0,'F',0,'published','2025-10-14',1,'2025-10-14'),
(4000,92,220,0,0,0,'F',0,'published','2025-10-14',1,'2025-10-14');
INSERT INTO `results` (`id`,`student_id`,`course_offering_id`,`continuous_assessment`,`exam_score`,`total_score`,`letter_grade`,`grade_point`,`status`,`published_at`,`updated_by`,`updated_at`) VALUES
(4001,92,221,0,0,0,'F',0,'published','2025-10-14',1,'2025-10-14'),
(4002,92,222,0,0,0,'F',0,'published','2025-10-14',1,'2025-10-14'),
(4003,92,234,0,0,0,'F',0,'published','2025-10-14',1,'2025-10-14'),
(4004,92,223,0,0,0,'F',0,'published','2025-10-14',1,'2025-10-14'),
(4005,92,224,0,0,0,'F',0,'published','2025-10-14',1,'2025-10-14'),
(4006,92,225,0,0,0,'F',0,'published','2025-10-14',1,'2025-10-14'),
(4007,92,226,0,0,0,'F',0,'published','2025-10-14',1,'2025-10-14'),
(4008,92,227,0,0,0,'F',0,'published','2025-10-14',1,'2025-10-14'),
(4009,92,228,0,0,0,'F',0,'published','2025-10-14',1,'2025-10-14'),
(4010,92,229,0,0,0,'F',0,'published','2025-10-14',1,'2025-10-14'),
(4011,92,230,0,0,0,'F',0,'published','2025-10-14',1,'2025-10-14'),
(4012,92,231,0,0,0,'F',0,'published','2025-10-14',1,'2025-10-14'),
(4013,92,232,0,0,0,'F',0,'published','2025-10-14',1,'2025-10-14'),
(4014,202,175,0,0,0,'F',0,'published','2025-10-14',1,'2025-10-14'),
(4015,202,176,20,50,70,'A',5,'published','2025-10-14',1,'2025-10-14'),
(4016,202,177,15,61,76,'A',5,'published','2025-10-14',1,'2025-10-14'),
(4017,202,178,20,50,70,'A',5,'published','2025-10-14',1,'2025-10-14'),
(4018,202,179,26,29,55,'C',3,'published','2025-10-14',1,'2025-10-14'),
(4019,202,180,25,29,54,'C',3,'published','2025-10-14',1,'2025-10-14'),
(4020,202,181,20,33,53,'C',3,'published','2025-10-14',1,'2025-10-14'),
(4021,202,182,16,45,61,'B',4,'published','2025-10-14',1,'2025-10-14'),
(4022,202,183,28,29,57,'C',3,'published','2025-10-14',1,'2025-10-14'),
(4023,202,212,0,0,0,'F',0,'published','2025-10-14',1,'2025-10-14'),
(4024,202,213,0,0,0,'F',0,'published','2025-10-14',1,'2025-10-14'),
(4025,202,214,0,0,0,'F',0,'published','2025-10-14',1,'2025-10-14'),
(4026,202,215,0,0,0,'F',0,'published','2025-10-14',1,'2025-10-14'),
(4027,202,216,0,0,0,'F',0,'published','2025-10-14',1,'2025-10-14'),
(4028,202,217,0,0,0,'F',0,'published','2025-10-14',1,'2025-10-14'),
(4029,202,218,0,0,0,'F',0,'published','2025-10-14',1,'2025-10-14'),
(4030,202,219,0,0,0,'F',0,'published','2025-10-14',1,'2025-10-14'),
(4031,202,220,0,0,0,'F',0,'published','2025-10-14',1,'2025-10-14'),
(4032,202,221,0,0,0,'F',0,'published','2025-10-14',1,'2025-10-14'),
(4033,202,222,0,0,0,'F',0,'published','2025-10-14',1,'2025-10-14'),
(4034,202,234,0,0,0,'F',0,'published','2025-10-14',1,'2025-10-14'),
(4035,176,55,22,45,67,'B',4,'published','2025-10-16',1,'2025-10-16'),
(4036,176,54,0,0,0,'F',0,'published','2025-10-16',1,'2025-10-16'),
(4037,176,57,26,34,60,'B',4,'published','2025-10-16',1,'2025-10-16'),
(4038,176,58,22,40,62,'B',4,'published','2025-10-16',1,'2025-10-16'),
(4039,176,60,25,20,45,'D',2,'published','2025-10-16',1,'2025-10-16'),
(4040,176,62,0,0,0,'F',0,'published','2025-10-16',1,'2025-10-16'),
(4041,176,56,20,41,61,'B',4,'published','2025-10-16',1,'2025-10-16'),
(4042,176,59,20,58,78,'A',5,'published','2025-10-16',1,'2025-10-16'),
(4043,176,61,22,28,50,'C',3,'published','2025-10-16',1,'2025-10-16'),
(4044,182,54,0,0,0,'F',0,'published','2025-10-16',1,'2025-10-16'),
(4045,182,55,25,26,51,'C',3,'published','2025-10-16',1,'2025-10-16'),
(4046,182,56,21,38,59,'C',3,'published','2025-10-16',1,'2025-10-16'),
(4047,182,58,25,42,67,'B',4,'published','2025-10-16',1,'2025-10-16'),
(4048,182,60,20,30,50,'C',3,'published','2025-10-16',1,'2025-10-16'),
(4049,182,61,0,0,0,'F',0,'published','2025-10-16',1,'2025-10-16'),
(4050,182,62,0,0,0,'F',0,'published','2025-10-16',1,'2025-10-16'),
(4051,79,322,0,0,0,'F',0,'published','2025-10-16',1,'2025-10-16'),
(4052,79,46,31,3,34,'F',0,'published','2025-10-16',1,'2025-10-16'),
(4053,138,57,0,0,0,'F',0,'published','2025-10-17',1,'2025-10-17'),
(4054,315,2,0,0,0,'F',0,'published','2025-10-20',1,'2025-10-20'),
(4055,315,13,0,0,0,'F',0,'published','2025-10-20',1,'2025-10-20'),
(4056,315,15,0,0,0,'F',0,'published','2025-10-20',1,'2025-10-20'),
(4057,315,16,0,0,0,'F',0,'published','2025-10-20',1,'2025-10-20'),
(4058,315,17,0,0,0,'F',0,'published','2025-10-20',1,'2025-10-20'),
(4059,315,18,0,0,0,'F',0,'published','2025-10-20',1,'2025-10-20'),
(4060,315,19,0,0,0,'F',0,'published','2025-10-20',1,'2025-10-20'),
(4061,315,20,0,0,0,'F',0,'published','2025-10-20',1,'2025-10-20'),
(4062,315,21,0,0,0,'F',0,'published','2025-10-20',1,'2025-10-20'),
(4063,315,22,0,0,0,'F',0,'published','2025-10-20',1,'2025-10-20'),
(4064,315,23,0,0,0,'F',0,'published','2025-10-20',1,'2025-10-20'),
(4065,315,24,0,0,0,'F',0,'published','2025-10-20',1,'2025-10-20'),
(4066,315,25,0,0,0,'F',0,'published','2025-10-20',1,'2025-10-20'),
(4067,315,26,0,0,0,'F',0,'published','2025-10-20',1,'2025-10-20'),
(4068,315,27,0,0,0,'F',0,'published','2025-10-20',1,'2025-10-20'),
(4069,315,28,0,0,0,'F',0,'published','2025-10-20',1,'2025-10-20'),
(4070,41,375,28,33,61,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4071,41,381,14,48,62,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4072,41,380,23,45,68,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4073,41,379,26,24,50,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4074,41,377,25,32,57,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4075,41,378,27,28,55,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4076,41,376,21,41,62,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4077,161,423,27,41,68,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4078,165,423,27,39,66,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4079,163,424,18,30,48,'D',2,'published','2025-10-22',1,'2025-10-22'),
(4080,163,425,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4081,163,426,20,27,47,'D',2,'published','2025-10-22',1,'2025-10-22'),
(4082,163,427,20,57,77,'A',5,'published','2025-10-22',1,'2025-10-22'),
(4083,163,428,14,36,50,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4084,163,423,25,40,65,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4085,163,429,27,24,51,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4086,163,430,18,33,51,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4087,163,431,20,39,59,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4088,163,432,15,60,75,'A',5,'published','2025-10-22',1,'2025-10-22'),
(4089,161,432,15,55,70,'A',5,'published','2025-10-22',1,'2025-10-22'),
(4090,161,431,20,53,73,'A',5,'published','2025-10-22',1,'2025-10-22'),
(4091,161,430,24,53,77,'A',5,'published','2025-10-22',1,'2025-10-22'),
(4092,161,428,30,45,75,'A',5,'published','2025-10-22',1,'2025-10-22'),
(4093,161,426,20,45,65,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4094,161,425,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4095,161,424,22,28,50,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4096,161,427,19,54,73,'A',5,'published','2025-10-22',1,'2025-10-22'),
(4097,161,429,28,38,66,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4098,165,429,28,28,56,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4099,165,427,18,42,60,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4100,165,424,15,29,44,'E',1,'published','2025-10-22',1,'2025-10-22'),
(4101,165,425,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4102,165,426,20,34,54,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4103,165,428,29,32,61,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4104,165,430,20,59,79,'A',5,'published','2025-10-22',1,'2025-10-22'),
(4105,165,431,20,44,64,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4106,162,423,29,33,62,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4107,162,427,19,38,57,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4108,162,425,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4109,162,428,28,44,72,'A',5,'published','2025-10-22',1,'2025-10-22'),
(4110,162,431,20,44,64,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4111,162,429,27,29,56,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4112,162,430,20,25,45,'D',2,'published','2025-10-22',1,'2025-10-22'),
(4113,162,424,18,32,50,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4114,77,433,17,46,63,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4115,162,426,20,43,63,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4116,77,434,25,33,58,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4117,77,435,20,48,68,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4118,77,436,20,42,62,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4119,34,433,22,55,77,'A',5,'published','2025-10-22',1,'2025-10-22'),
(4120,34,434,20,30,50,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4121,34,435,20,36,56,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4122,34,436,20,40,60,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4123,22,436,20,43,63,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4124,22,435,20,53,73,'A',5,'published','2025-10-22',1,'2025-10-22'),
(4125,22,434,25,36,61,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4126,22,433,20,47,67,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4127,159,423,25,41,66,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4128,159,429,29,42,71,'A',5,'published','2025-10-22',1,'2025-10-22'),
(4129,159,427,20,54,74,'A',5,'published','2025-10-22',1,'2025-10-22'),
(4130,159,424,24,42,66,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4131,159,425,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4132,159,426,20,44,64,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4133,159,428,30,43,73,'A',5,'published','2025-10-22',1,'2025-10-22'),
(4134,159,430,20,52,72,'A',5,'published','2025-10-22',1,'2025-10-22'),
(4135,159,431,22,55,77,'A',5,'published','2025-10-22',1,'2025-10-22'),
(4136,5,433,18,32,50,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4137,5,434,25,26,51,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4138,5,435,20,43,63,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4139,5,436,23,47,70,'A',5,'published','2025-10-22',1,'2025-10-22'),
(4140,5,53,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4141,30,51,25,28,53,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4142,30,52,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4143,30,53,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4144,30,436,20,42,62,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4145,30,435,20,47,67,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4146,30,434,25,40,65,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4147,30,433,23,53,76,'A',5,'published','2025-10-22',1,'2025-10-22'),
(4148,29,138,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4149,29,139,8,23,31,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4150,29,140,20,30,50,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4151,29,141,25,20,45,'D',2,'published','2025-10-22',1,'2025-10-22'),
(4152,29,142,25,32,57,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4153,29,146,20,24,44,'E',1,'published','2025-10-22',1,'2025-10-22'),
(4154,29,145,22,3,25,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4155,29,144,16,36,52,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4156,29,143,20,30,50,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4157,29,147,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4158,29,148,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4159,29,149,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4160,29,151,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4161,29,152,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4162,29,153,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4163,29,150,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4164,153,108,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4165,153,109,28,28,56,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4166,153,110,20,50,70,'A',5,'published','2025-10-22',1,'2025-10-22'),
(4167,153,111,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4168,153,112,21,40,61,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4169,153,113,17,41,58,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4170,153,114,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4171,153,115,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4172,153,211,10,56,66,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4173,188,423,28,32,60,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4174,188,429,27,23,50,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4175,188,427,19,32,51,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4176,188,424,18,28,46,'D',2,'published','2025-10-22',1,'2025-10-22'),
(4177,188,425,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4178,188,426,20,32,52,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4179,188,428,14,36,50,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4180,188,430,21,33,54,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4181,188,431,18,30,48,'D',2,'published','2025-10-22',1,'2025-10-22'),
(4182,42,147,28,54,82,'A',5,'published','2025-10-22',1,'2025-10-22'),
(4183,42,148,22,47,69,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4184,42,149,22,55,77,'A',5,'published','2025-10-22',1,'2025-10-22'),
(4185,42,150,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4186,42,151,26,36,62,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4187,42,152,28,39,67,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4188,42,153,22,39,61,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4189,179,423,25,64,89,'A',5,'published','2025-10-22',1,'2025-10-22'),
(4190,179,429,29,35,64,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4191,179,427,21,59,80,'A',5,'published','2025-10-22',1,'2025-10-22'),
(4192,179,424,19,29,48,'D',2,'published','2025-10-22',1,'2025-10-22'),
(4193,179,425,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4194,179,426,20,56,76,'A',5,'published','2025-10-22',1,'2025-10-22'),
(4195,179,428,29,63,92,'A',5,'published','2025-10-22',1,'2025-10-22'),
(4196,179,430,24,50,74,'A',5,'published','2025-10-22',1,'2025-10-22'),
(4197,179,431,20,55,75,'A',5,'published','2025-10-22',1,'2025-10-22'),
(4198,157,423,29,24,53,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4199,157,429,27,24,51,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4200,157,427,20,30,50,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4201,157,424,17,36,53,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4202,157,425,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4203,157,426,20,10,30,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4204,157,428,22,24,46,'D',2,'published','2025-10-22',1,'2025-10-22'),
(4205,157,430,21,30,51,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4206,157,431,19,40,59,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4207,6,46,32,10,42,'E',1,'published','2025-10-22',1,'2025-10-22'),
(4208,6,47,28,10,38,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4209,6,48,28,30,58,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4210,6,127,30,22,52,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4211,6,345,29,21,50,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4212,9,47,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4213,9,46,32,14,46,'D',2,'published','2025-10-22',1,'2025-10-22'),
(4214,9,48,28,28,56,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4215,9,127,29,8,37,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4216,9,49,29,8,37,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4217,6,49,29,20,49,'D',2,'published','2025-10-22',1,'2025-10-22'),
(4218,9,50,27,35,62,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4219,9,344,22,35,57,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4220,6,50,26,33,59,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4221,6,344,22,32,54,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4222,9,345,28,25,53,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4223,172,423,28,25,53,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4224,172,429,28,28,56,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4225,172,427,20,52,72,'A',5,'published','2025-10-22',1,'2025-10-22'),
(4226,172,424,16,31,47,'D',2,'published','2025-10-22',1,'2025-10-22'),
(4227,172,425,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4228,172,426,20,50,70,'A',5,'published','2025-10-22',1,'2025-10-22'),
(4229,172,428,28,21,49,'D',2,'published','2025-10-22',1,'2025-10-22'),
(4230,172,430,18,35,53,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4231,172,431,20,31,51,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4232,172,432,18,65,83,'A',5,'published','2025-10-22',1,'2025-10-22'),
(4233,9,433,20,47,67,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4234,9,436,21,31,52,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4235,9,435,20,30,50,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4236,9,434,25,38,63,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4237,9,53,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4238,9,52,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4239,9,51,25,25,50,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4240,6,51,26,38,64,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4241,6,53,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4242,6,435,20,19,39,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4243,6,434,25,28,53,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4244,6,433,22,43,65,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4245,6,436,20,32,52,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4246,29,154,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4247,29,155,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4248,29,156,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4249,29,157,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4250,29,158,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22');
INSERT INTO `results` (`id`,`student_id`,`course_offering_id`,`continuous_assessment`,`exam_score`,`total_score`,`letter_grade`,`grade_point`,`status`,`published_at`,`updated_by`,`updated_at`) VALUES
(4251,29,159,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4252,29,161,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4253,29,162,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4254,29,163,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4255,29,164,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4256,29,160,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4257,29,174,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4258,29,173,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4259,29,172,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4260,29,166,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4261,29,168,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4262,29,165,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4263,29,167,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4264,29,169,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4265,29,170,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4266,29,171,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4267,5,323,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4268,162,432,20,55,75,'A',5,'published','2025-10-22',1,'2025-10-22'),
(4269,165,432,20,53,73,'A',5,'published','2025-10-22',1,'2025-10-22'),
(4270,159,432,20,60,80,'A',5,'published','2025-10-22',1,'2025-10-22'),
(4271,157,432,15,50,65,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4272,188,432,15,65,80,'A',5,'published','2025-10-22',1,'2025-10-22'),
(4273,179,432,15,68,83,'A',5,'published','2025-10-22',1,'2025-10-22'),
(4274,20,52,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4275,20,53,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4276,20,433,19,50,69,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4277,20,434,20,62,82,'A',5,'published','2025-10-22',1,'2025-10-22'),
(4278,20,435,20,57,77,'A',5,'published','2025-10-22',1,'2025-10-22'),
(4279,20,436,20,52,72,'A',5,'published','2025-10-22',1,'2025-10-22'),
(4280,39,337,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4281,39,339,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4282,39,437,19,50,69,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4283,39,438,20,37,57,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4284,39,439,25,45,70,'A',5,'published','2025-10-22',1,'2025-10-22'),
(4285,39,440,22,48,70,'A',5,'published','2025-10-22',1,'2025-10-22'),
(4286,83,51,26,33,59,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4287,83,436,21,49,70,'A',5,'published','2025-10-22',1,'2025-10-22'),
(4288,83,435,20,38,58,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4289,83,434,27,23,50,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4290,83,433,17,55,72,'A',5,'published','2025-10-22',1,'2025-10-22'),
(4291,108,436,20,40,60,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4292,108,435,20,38,58,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4293,108,434,21,32,53,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4294,108,433,19,42,61,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4295,8,52,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4296,8,53,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4297,8,433,18,44,62,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4298,8,434,25,57,82,'A',5,'published','2025-10-22',1,'2025-10-22'),
(4299,8,435,20,52,72,'A',5,'published','2025-10-22',1,'2025-10-22'),
(4300,8,436,20,44,64,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4301,317,423,27,34,61,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4302,317,429,28,31,59,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4303,317,427,19,46,65,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4304,317,424,19,32,51,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4305,317,425,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4306,317,426,20,35,55,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4307,317,428,26,31,57,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4308,317,430,25,34,59,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4309,317,431,20,31,51,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4310,317,432,20,45,65,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4311,80,436,20,52,72,'A',5,'published','2025-10-22',1,'2025-10-22'),
(4312,80,435,20,28,48,'D',2,'published','2025-10-22',1,'2025-10-22'),
(4313,80,434,28,25,53,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4314,80,433,19,43,62,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4315,4,436,21,39,60,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4316,4,435,20,24,44,'E',1,'published','2025-10-22',1,'2025-10-22'),
(4317,4,434,25,25,50,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4318,4,433,21,41,62,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4319,172,210,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4320,172,200,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4321,172,201,10,10,20,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4322,172,202,20,30,50,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4323,172,203,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4324,172,204,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4325,172,205,26,32,58,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4326,172,206,17,56,73,'A',5,'published','2025-10-22',1,'2025-10-22'),
(4327,172,207,20,40,60,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4328,172,208,21,30,51,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4329,172,209,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4330,164,423,25,40,65,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4331,164,429,26,27,53,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4332,164,427,19,51,70,'A',5,'published','2025-10-22',1,'2025-10-22'),
(4333,164,425,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4334,164,426,20,19,39,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4335,164,428,26,39,65,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4336,164,430,20,36,56,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4337,164,431,22,49,71,'A',5,'published','2025-10-22',1,'2025-10-22'),
(4338,164,432,15,60,75,'A',5,'published','2025-10-22',1,'2025-10-22'),
(4339,164,424,13,31,44,'E',1,'published','2025-10-22',1,'2025-10-22'),
(4340,273,436,20,42,62,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4341,273,435,20,31,51,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4342,273,434,25,30,55,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4343,273,433,25,48,73,'A',5,'published','2025-10-22',1,'2025-10-22'),
(4344,19,177,16,63,79,'A',5,'published','2025-10-22',1,'2025-10-22'),
(4345,19,178,20,45,65,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4346,19,179,26,37,63,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4347,19,180,25,34,59,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4348,19,181,20,40,60,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4349,19,183,24,42,66,'B',4,'published','2025-10-22',1,'2025-10-22'),
(4350,19,176,10,45,55,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4351,19,175,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4352,82,436,20,32,52,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4353,82,433,19,40,59,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4354,82,435,0,0,0,'F',0,'published','2025-10-22',1,'2025-10-22'),
(4355,82,434,23,27,50,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4356,82,344,22,30,52,'C',3,'published','2025-10-22',1,'2025-10-22'),
(4357,23,434,25,55,80,'A',5,'published','2025-10-23',1,'2025-10-23'),
(4358,23,433,27,47,74,'A',5,'published','2025-10-23',1,'2025-10-23'),
(4359,23,436,20,58,78,'A',5,'published','2025-10-23',1,'2025-10-23'),
(4360,23,435,20,36,56,'C',3,'published','2025-10-23',1,'2025-10-23'),
(4361,10,441,25,31,56,'C',3,'published','2025-10-23',1,'2025-10-23'),
(4362,10,442,23,50,73,'A',5,'published','2025-10-23',1,'2025-10-23'),
(4363,10,443,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4364,10,444,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4365,10,445,17,34,51,'C',3,'published','2025-10-23',1,'2025-10-23'),
(4366,10,446,20,47,67,'B',4,'published','2025-10-23',1,'2025-10-23'),
(4367,105,51,25,26,51,'C',3,'published','2025-10-23',1,'2025-10-23'),
(4368,105,52,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4369,105,53,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4370,105,436,20,36,56,'C',3,'published','2025-10-23',1,'2025-10-23'),
(4371,105,435,20,26,46,'D',2,'published','2025-10-23',1,'2025-10-23'),
(4372,105,434,20,30,50,'C',3,'published','2025-10-23',1,'2025-10-23'),
(4373,105,433,19,34,53,'C',3,'published','2025-10-23',1,'2025-10-23'),
(4374,7,435,20,44,64,'B',4,'published','2025-10-23',1,'2025-10-23'),
(4375,7,434,25,58,83,'A',5,'published','2025-10-23',1,'2025-10-23'),
(4376,7,436,20,42,62,'B',4,'published','2025-10-23',1,'2025-10-23'),
(4377,7,433,20,48,68,'B',4,'published','2025-10-23',1,'2025-10-23'),
(4378,158,429,27,23,50,'C',3,'published','2025-10-23',1,'2025-10-23'),
(4379,158,424,17,33,50,'C',3,'published','2025-10-23',1,'2025-10-23'),
(4380,158,431,21,48,69,'B',4,'published','2025-10-23',1,'2025-10-23'),
(4381,158,425,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4382,158,423,27,29,56,'C',3,'published','2025-10-23',1,'2025-10-23'),
(4383,158,430,22,40,62,'B',4,'published','2025-10-23',1,'2025-10-23'),
(4384,158,426,20,5,25,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4385,158,427,18,18,36,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4386,158,428,28,25,53,'C',3,'published','2025-10-23',1,'2025-10-23'),
(4387,158,432,29,35,64,'B',4,'published','2025-10-23',1,'2025-10-23'),
(4388,266,185,20,33,53,'C',3,'published','2025-10-23',1,'2025-10-23'),
(4389,266,184,26,36,62,'B',4,'published','2025-10-23',1,'2025-10-23'),
(4390,266,193,20,25,45,'D',2,'published','2025-10-23',1,'2025-10-23'),
(4391,266,194,28,23,51,'C',3,'published','2025-10-23',1,'2025-10-23'),
(4392,266,195,30,20,50,'C',3,'published','2025-10-23',1,'2025-10-23'),
(4393,266,199,15,50,65,'B',4,'published','2025-10-23',1,'2025-10-23'),
(4394,266,198,29,29,58,'C',3,'published','2025-10-23',1,'2025-10-23'),
(4395,266,197,28,24,52,'C',3,'published','2025-10-23',1,'2025-10-23'),
(4396,266,196,20,33,53,'C',3,'published','2025-10-23',1,'2025-10-23'),
(4397,266,352,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4398,266,353,17,48,65,'B',4,'published','2025-10-23',1,'2025-10-23'),
(4399,160,423,26,35,61,'B',4,'published','2025-10-23',1,'2025-10-23'),
(4400,160,429,27,24,51,'C',3,'published','2025-10-23',1,'2025-10-23'),
(4401,160,427,21,39,60,'B',4,'published','2025-10-23',1,'2025-10-23'),
(4402,160,424,17,28,45,'D',2,'published','2025-10-23',1,'2025-10-23'),
(4403,160,425,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4404,160,426,20,38,58,'C',3,'published','2025-10-23',1,'2025-10-23'),
(4405,160,428,28,43,71,'A',5,'published','2025-10-23',1,'2025-10-23'),
(4406,160,430,21,33,54,'C',3,'published','2025-10-23',1,'2025-10-23'),
(4407,160,431,22,46,68,'B',4,'published','2025-10-23',1,'2025-10-23'),
(4408,160,432,25,55,80,'A',5,'published','2025-10-23',1,'2025-10-23'),
(4409,266,175,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4410,266,176,20,35,55,'C',3,'published','2025-10-23',1,'2025-10-23'),
(4411,266,177,20,31,51,'C',3,'published','2025-10-23',1,'2025-10-23'),
(4412,266,178,20,20,40,'E',1,'published','2025-10-23',1,'2025-10-23'),
(4413,266,179,28,25,53,'C',3,'published','2025-10-23',1,'2025-10-23'),
(4414,266,180,28,23,51,'C',3,'published','2025-10-23',1,'2025-10-23'),
(4415,266,181,20,19,39,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4416,266,182,18,46,64,'B',4,'published','2025-10-23',1,'2025-10-23'),
(4417,266,183,28,27,55,'C',3,'published','2025-10-23',1,'2025-10-23'),
(4418,266,447,19,48,67,'B',4,'published','2025-10-23',1,'2025-10-23'),
(4419,266,448,20,45,65,'B',4,'published','2025-10-23',1,'2025-10-23'),
(4420,266,449,9,20,29,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4421,266,450,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4422,266,451,15,25,40,'E',1,'published','2025-10-23',1,'2025-10-23'),
(4423,266,452,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4424,266,453,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4425,266,454,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4426,266,455,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4427,266,456,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4428,266,457,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4429,266,458,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4430,266,459,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4431,266,460,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4432,147,461,25,27,52,'C',3,'published','2025-10-23',1,'2025-10-23'),
(4433,147,462,25,35,60,'B',4,'published','2025-10-23',1,'2025-10-23'),
(4434,147,463,25,17,42,'E',1,'published','2025-10-23',1,'2025-10-23'),
(4435,147,464,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4436,266,212,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4437,266,213,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4438,266,214,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4439,266,215,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4440,266,216,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4441,266,217,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4442,266,218,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4443,266,219,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4444,266,220,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4445,266,221,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4446,266,222,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4447,266,234,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4448,108,2,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4449,108,13,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4450,108,15,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4451,108,16,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4452,108,17,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4453,108,20,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4454,108,21,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4455,108,22,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4456,108,23,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4457,108,24,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4458,108,25,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4459,108,26,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4460,108,27,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4461,108,28,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4462,108,465,20,40,60,'B',4,'published','2025-10-23',1,'2025-10-23'),
(4463,147,466,17,37,54,'C',3,'published','2025-10-23',1,'2025-10-23'),
(4464,147,467,17,54,71,'A',5,'published','2025-10-23',1,'2025-10-23'),
(4465,147,468,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4466,147,469,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4467,150,469,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4468,150,461,25,25,50,'C',3,'published','2025-10-23',1,'2025-10-23'),
(4469,150,462,25,26,51,'C',3,'published','2025-10-23',1,'2025-10-23'),
(4470,150,463,25,23,48,'D',2,'published','2025-10-23',1,'2025-10-23'),
(4471,150,468,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4472,150,467,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4473,150,466,17,35,52,'C',3,'published','2025-10-23',1,'2025-10-23'),
(4474,150,464,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4475,44,154,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4476,44,155,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4477,44,156,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4478,44,157,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4479,44,158,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4480,44,159,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4481,44,161,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4482,44,163,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4483,44,164,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4484,44,162,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4485,44,160,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4486,44,165,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4487,44,166,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4488,44,167,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4489,44,168,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4490,44,169,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4491,44,170,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4492,44,171,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4493,44,172,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4494,44,173,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4495,44,174,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4496,180,470,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4497,180,471,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4498,180,472,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4499,180,473,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4500,180,474,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23');
INSERT INTO `results` (`id`,`student_id`,`course_offering_id`,`continuous_assessment`,`exam_score`,`total_score`,`letter_grade`,`grade_point`,`status`,`published_at`,`updated_by`,`updated_at`) VALUES
(4501,180,475,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4502,180,476,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4503,180,477,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4504,180,478,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4505,180,479,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4506,180,480,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4507,180,481,21,34,55,'C',3,'published','2025-10-23',1,'2025-10-23'),
(4508,180,482,22,45,67,'B',4,'published','2025-10-23',1,'2025-10-23'),
(4509,180,483,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4510,180,484,12,46,58,'C',3,'published','2025-10-23',1,'2025-10-23'),
(4511,180,485,5,20,25,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4512,180,486,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4513,180,487,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4514,180,488,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4515,180,489,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4516,180,490,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4517,180,491,17,47,64,'B',4,'published','2025-10-23',1,'2025-10-23'),
(4518,180,54,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4519,180,55,27,29,56,'C',3,'published','2025-10-23',1,'2025-10-23'),
(4520,180,56,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4521,180,57,25,32,57,'C',3,'published','2025-10-23',1,'2025-10-23'),
(4522,180,58,28,30,58,'C',3,'published','2025-10-23',1,'2025-10-23'),
(4523,180,59,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4524,180,60,20,36,56,'C',3,'published','2025-10-23',1,'2025-10-23'),
(4525,180,61,24,26,50,'C',3,'published','2025-10-23',1,'2025-10-23'),
(4526,180,62,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4527,180,106,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4528,100,441,25,40,65,'B',4,'published','2025-10-23',1,'2025-10-23'),
(4529,100,443,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4530,100,446,20,40,60,'B',4,'published','2025-10-23',1,'2025-10-23'),
(4531,100,444,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4532,100,445,17,45,62,'B',4,'published','2025-10-23',1,'2025-10-23'),
(4533,100,442,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4534,7,465,20,20,40,'E',1,'published','2025-10-23',1,'2025-10-23'),
(4535,133,481,21,39,60,'B',4,'published','2025-10-23',1,'2025-10-23'),
(4536,133,482,19,33,52,'C',3,'published','2025-10-23',1,'2025-10-23'),
(4537,133,484,14,35,49,'D',2,'published','2025-10-23',1,'2025-10-23'),
(4538,133,485,16,34,50,'C',3,'published','2025-10-23',1,'2025-10-23'),
(4539,133,486,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4540,133,488,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4541,133,489,0,0,0,'F',0,'published','2025-10-23',1,'2025-10-23'),
(4542,133,491,19,35,54,'C',3,'published','2025-10-23',1,'2025-10-23'),
(4543,44,492,26,25,51,'C',3,'published','2025-10-24',1,'2025-10-24'),
(4544,44,493,26,34,60,'B',4,'published','2025-10-24',1,'2025-10-24'),
(4545,44,139,14,30,44,'E',1,'published','2025-10-24',1,'2025-10-24'),
(4546,44,140,20,46,66,'B',4,'published','2025-10-24',1,'2025-10-24'),
(4547,44,143,20,30,50,'C',3,'published','2025-10-24',1,'2025-10-24'),
(4548,44,144,20,45,65,'B',4,'published','2025-10-24',1,'2025-10-24'),
(4549,44,145,26,9,35,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4550,44,146,20,32,52,'C',3,'published','2025-10-24',1,'2025-10-24'),
(4551,44,138,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4552,44,141,25,20,45,'D',2,'published','2025-10-24',1,'2025-10-24'),
(4553,44,142,25,41,66,'B',4,'published','2025-10-24',1,'2025-10-24'),
(4554,44,147,27,23,50,'C',3,'published','2025-10-24',1,'2025-10-24'),
(4555,44,148,18,33,51,'C',3,'published','2025-10-24',1,'2025-10-24'),
(4556,44,149,22,40,62,'B',4,'published','2025-10-24',1,'2025-10-24'),
(4557,44,150,24,30,54,'C',3,'published','2025-10-24',1,'2025-10-24'),
(4558,44,151,29,32,61,'B',4,'published','2025-10-24',1,'2025-10-24'),
(4559,44,152,28,25,53,'C',3,'published','2025-10-24',1,'2025-10-24'),
(4560,44,153,22,38,60,'B',4,'published','2025-10-24',1,'2025-10-24'),
(4561,44,494,26,32,58,'C',3,'published','2025-10-24',1,'2025-10-24'),
(4562,44,495,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4563,44,496,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4564,44,497,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4565,44,498,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4566,44,499,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4567,44,500,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4568,44,501,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4569,101,138,25,40,65,'B',4,'published','2025-10-24',1,'2025-10-24'),
(4570,101,139,22,39,61,'B',4,'published','2025-10-24',1,'2025-10-24'),
(4571,101,140,26,41,67,'B',4,'published','2025-10-24',1,'2025-10-24'),
(4572,101,141,25,36,61,'B',4,'published','2025-10-24',1,'2025-10-24'),
(4573,101,142,25,35,60,'B',4,'published','2025-10-24',1,'2025-10-24'),
(4574,101,143,25,45,70,'A',5,'published','2025-10-24',1,'2025-10-24'),
(4575,101,144,18,47,65,'B',4,'published','2025-10-24',1,'2025-10-24'),
(4576,101,145,35,18,53,'C',3,'published','2025-10-24',1,'2025-10-24'),
(4577,101,146,20,32,52,'C',3,'published','2025-10-24',1,'2025-10-24'),
(4578,101,147,30,59,89,'A',5,'published','2025-10-24',1,'2025-10-24'),
(4579,101,148,22,60,82,'A',5,'published','2025-10-24',1,'2025-10-24'),
(4580,101,149,24,27,51,'C',3,'published','2025-10-24',1,'2025-10-24'),
(4581,101,150,25,25,50,'C',3,'published','2025-10-24',1,'2025-10-24'),
(4582,101,151,30,50,80,'A',5,'published','2025-10-24',1,'2025-10-24'),
(4583,101,152,27,32,59,'C',3,'published','2025-10-24',1,'2025-10-24'),
(4584,101,153,22,46,68,'B',4,'published','2025-10-24',1,'2025-10-24'),
(4585,101,154,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4586,101,155,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4587,101,156,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4588,101,157,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4589,101,158,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4590,101,159,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4591,101,160,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4592,101,161,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4593,101,162,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4594,101,163,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4595,101,164,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4596,101,165,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4597,101,166,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4598,101,167,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4599,101,168,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4600,101,169,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4601,101,170,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4602,101,171,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4603,101,172,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4604,101,173,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4605,101,174,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4606,31,138,20,45,65,'B',4,'published','2025-10-24',1,'2025-10-24'),
(4607,31,139,26,39,65,'B',4,'published','2025-10-24',1,'2025-10-24'),
(4608,31,140,26,36,62,'B',4,'published','2025-10-24',1,'2025-10-24'),
(4609,31,141,25,35,60,'B',4,'published','2025-10-24',1,'2025-10-24'),
(4610,31,146,20,34,54,'C',3,'published','2025-10-24',1,'2025-10-24'),
(4611,31,145,33,22,55,'C',3,'published','2025-10-24',1,'2025-10-24'),
(4612,31,144,21,54,75,'A',5,'published','2025-10-24',1,'2025-10-24'),
(4613,31,143,20,35,55,'C',3,'published','2025-10-24',1,'2025-10-24'),
(4614,31,142,20,44,64,'B',4,'published','2025-10-24',1,'2025-10-24'),
(4615,31,147,29,42,71,'A',5,'published','2025-10-24',1,'2025-10-24'),
(4616,31,148,23,46,69,'B',4,'published','2025-10-24',1,'2025-10-24'),
(4617,31,149,20,50,70,'A',5,'published','2025-10-24',1,'2025-10-24'),
(4618,31,150,25,45,70,'A',5,'published','2025-10-24',1,'2025-10-24'),
(4619,31,151,24,34,58,'C',3,'published','2025-10-24',1,'2025-10-24'),
(4620,31,152,28,32,60,'B',4,'published','2025-10-24',1,'2025-10-24'),
(4621,31,153,20,51,71,'A',5,'published','2025-10-24',1,'2025-10-24'),
(4622,31,154,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4623,31,155,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4624,31,156,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4625,31,157,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4626,31,158,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4627,31,159,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4628,31,160,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4629,31,161,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4630,31,162,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4631,31,163,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4632,31,164,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4633,31,165,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4634,31,166,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4635,31,167,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4636,31,168,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4637,31,169,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4638,31,170,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4639,31,171,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4640,31,173,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4641,31,174,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4642,31,172,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4643,95,154,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4644,95,156,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4645,95,158,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4646,95,160,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4647,95,162,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4648,95,163,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4649,95,164,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4650,95,161,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4651,95,166,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4652,95,167,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4653,95,168,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4654,95,169,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4655,95,170,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4656,95,171,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4657,95,172,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4658,95,173,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4659,95,174,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4660,95,138,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4661,95,140,20,29,49,'D',2,'published','2025-10-24',1,'2025-10-24'),
(4662,95,141,25,11,36,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4663,95,142,25,10,35,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4664,95,143,20,30,50,'C',3,'published','2025-10-24',1,'2025-10-24'),
(4665,95,144,20,62,82,'A',5,'published','2025-10-24',1,'2025-10-24'),
(4666,95,145,32,4,36,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4667,95,146,20,30,50,'C',3,'published','2025-10-24',1,'2025-10-24'),
(4668,95,147,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4669,95,148,21,19,40,'E',1,'published','2025-10-24',1,'2025-10-24'),
(4670,95,149,18,35,53,'C',3,'published','2025-10-24',1,'2025-10-24'),
(4671,95,150,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4672,95,151,27,27,54,'C',3,'published','2025-10-24',1,'2025-10-24'),
(4673,95,152,28,29,57,'C',3,'published','2025-10-24',1,'2025-10-24'),
(4674,95,153,21,37,58,'C',3,'published','2025-10-24',1,'2025-10-24'),
(4675,42,492,29,47,76,'A',5,'published','2025-10-24',1,'2025-10-24'),
(4676,42,493,25,35,60,'B',4,'published','2025-10-24',1,'2025-10-24'),
(4677,117,481,22,32,54,'C',3,'published','2025-10-24',1,'2025-10-24'),
(4678,117,482,22,51,73,'A',5,'published','2025-10-24',1,'2025-10-24'),
(4679,117,483,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4680,117,484,12,46,58,'C',3,'published','2025-10-24',1,'2025-10-24'),
(4681,117,485,17,40,57,'C',3,'published','2025-10-24',1,'2025-10-24'),
(4682,117,486,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4683,117,487,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4684,117,488,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4685,117,489,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4686,117,490,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4687,117,491,20,42,62,'B',4,'published','2025-10-24',1,'2025-10-24'),
(4688,35,51,26,44,70,'A',5,'published','2025-10-24',1,'2025-10-24'),
(4689,35,52,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4690,35,53,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4691,35,435,20,37,57,'C',3,'published','2025-10-24',1,'2025-10-24'),
(4692,35,433,27,52,79,'A',5,'published','2025-10-24',1,'2025-10-24'),
(4693,35,436,20,50,70,'A',5,'published','2025-10-24',1,'2025-10-24'),
(4694,35,434,20,38,58,'C',3,'published','2025-10-24',1,'2025-10-24'),
(4695,110,436,18,38,56,'C',3,'published','2025-10-24',1,'2025-10-24'),
(4696,110,435,20,20,40,'E',1,'published','2025-10-24',1,'2025-10-24'),
(4697,110,434,25,42,67,'B',4,'published','2025-10-24',1,'2025-10-24'),
(4698,110,433,19,43,62,'B',4,'published','2025-10-24',1,'2025-10-24'),
(4699,110,53,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4700,110,52,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4701,110,51,25,37,62,'B',4,'published','2025-10-24',1,'2025-10-24'),
(4702,243,434,22,32,54,'C',3,'published','2025-10-24',1,'2025-10-24'),
(4703,243,433,18,57,75,'A',5,'published','2025-10-24',1,'2025-10-24'),
(4704,243,435,20,27,47,'D',2,'published','2025-10-24',1,'2025-10-24'),
(4705,111,433,19,40,59,'C',3,'published','2025-10-24',1,'2025-10-24'),
(4706,111,434,23,38,61,'B',4,'published','2025-10-24',1,'2025-10-24'),
(4707,111,435,20,30,50,'C',3,'published','2025-10-24',1,'2025-10-24'),
(4708,111,436,20,33,53,'C',3,'published','2025-10-24',1,'2025-10-24'),
(4709,6,52,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4710,243,436,20,40,60,'B',4,'published','2025-10-24',1,'2025-10-24'),
(4711,81,51,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4712,81,52,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4713,81,436,21,29,50,'C',3,'published','2025-10-24',1,'2025-10-24'),
(4714,81,53,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4715,81,434,26,25,51,'C',3,'published','2025-10-24',1,'2025-10-24'),
(4716,81,435,20,20,40,'E',1,'published','2025-10-24',1,'2025-10-24'),
(4717,81,433,20,36,56,'C',3,'published','2025-10-24',1,'2025-10-24'),
(4718,178,423,29,67,96,'A',5,'published','2025-10-24',1,'2025-10-24'),
(4719,178,429,28,36,64,'B',4,'published','2025-10-24',1,'2025-10-24'),
(4720,178,427,20,46,66,'B',4,'published','2025-10-24',1,'2025-10-24'),
(4721,178,424,18,33,51,'C',3,'published','2025-10-24',1,'2025-10-24'),
(4722,178,425,0,0,0,'F',0,'published','2025-10-24',1,'2025-10-24'),
(4723,178,426,20,41,61,'B',4,'published','2025-10-24',1,'2025-10-24'),
(4724,178,428,27,44,71,'A',5,'published','2025-10-24',1,'2025-10-24'),
(4725,178,430,20,39,59,'C',3,'published','2025-10-24',1,'2025-10-24'),
(4726,178,431,18,37,55,'C',3,'published','2025-10-24',1,'2025-10-24'),
(4727,178,432,20,55,75,'A',5,'published','2025-10-24',1,'2025-10-24'),
(4728,199,447,19,53,72,'A',5,'published','2025-10-27',1,'2025-10-27'),
(4729,199,448,20,50,70,'A',5,'published','2025-10-27',1,'2025-10-27'),
(4730,199,449,12,28,40,'E',1,'published','2025-10-27',1,'2025-10-27'),
(4731,199,450,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4732,199,451,15,36,51,'C',3,'published','2025-10-27',1,'2025-10-27'),
(4733,199,452,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4734,199,453,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4735,78,436,20,50,70,'A',5,'published','2025-10-27',1,'2025-10-27'),
(4736,78,435,20,45,65,'B',4,'published','2025-10-27',1,'2025-10-27'),
(4737,78,434,20,30,50,'C',3,'published','2025-10-27',1,'2025-10-27'),
(4738,78,433,20,39,59,'C',3,'published','2025-10-27',1,'2025-10-27'),
(4739,199,175,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4740,46,183,29,21,50,'C',3,'published','2025-10-27',1,'2025-10-27'),
(4741,46,182,15,46,61,'B',4,'published','2025-10-27',1,'2025-10-27'),
(4742,46,181,20,17,37,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4743,46,180,27,28,55,'C',3,'published','2025-10-27',1,'2025-10-27'),
(4744,46,179,28,24,52,'C',3,'published','2025-10-27',1,'2025-10-27'),
(4745,46,178,20,25,45,'D',2,'published','2025-10-27',1,'2025-10-27'),
(4746,46,177,20,35,55,'C',3,'published','2025-10-27',1,'2025-10-27'),
(4747,46,176,20,53,73,'A',5,'published','2025-10-27',1,'2025-10-27'),
(4748,46,175,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4749,36,447,20,62,82,'A',5,'published','2025-10-27',1,'2025-10-27'),
(4750,36,448,20,70,90,'A',5,'published','2025-10-27',1,'2025-10-27');
INSERT INTO `results` (`id`,`student_id`,`course_offering_id`,`continuous_assessment`,`exam_score`,`total_score`,`letter_grade`,`grade_point`,`status`,`published_at`,`updated_by`,`updated_at`) VALUES
(4751,36,449,20,70,90,'A',5,'published','2025-10-27',1,'2025-10-27'),
(4752,36,450,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4753,36,451,15,46,61,'B',4,'published','2025-10-27',1,'2025-10-27'),
(4754,36,452,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4755,36,453,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4756,269,185,22,18,40,'E',1,'published','2025-10-27',1,'2025-10-27'),
(4757,269,184,26,20,46,'D',2,'published','2025-10-27',1,'2025-10-27'),
(4758,269,193,20,33,53,'C',3,'published','2025-10-27',1,'2025-10-27'),
(4759,269,194,25,13,38,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4760,269,195,29,17,46,'D',2,'published','2025-10-27',1,'2025-10-27'),
(4761,269,199,20,55,75,'A',5,'published','2025-10-27',1,'2025-10-27'),
(4762,269,198,29,13,42,'E',1,'published','2025-10-27',1,'2025-10-27'),
(4763,269,197,27,6,33,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4764,269,196,20,34,54,'C',3,'published','2025-10-27',1,'2025-10-27'),
(4765,269,352,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4766,269,353,19,28,47,'D',2,'published','2025-10-27',1,'2025-10-27'),
(4767,269,175,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4768,269,176,25,20,45,'D',2,'published','2025-10-27',1,'2025-10-27'),
(4769,269,177,20,40,60,'B',4,'published','2025-10-27',1,'2025-10-27'),
(4770,269,178,20,20,40,'E',1,'published','2025-10-27',1,'2025-10-27'),
(4771,269,179,28,25,53,'C',3,'published','2025-10-27',1,'2025-10-27'),
(4772,269,180,26,24,50,'C',3,'published','2025-10-27',1,'2025-10-27'),
(4773,269,181,20,19,39,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4774,269,182,19,39,58,'C',3,'published','2025-10-27',1,'2025-10-27'),
(4775,269,183,29,12,41,'E',1,'published','2025-10-27',1,'2025-10-27'),
(4776,269,447,25,28,53,'C',3,'published','2025-10-27',1,'2025-10-27'),
(4777,269,448,20,65,85,'A',5,'published','2025-10-27',1,'2025-10-27'),
(4778,269,449,11,8,19,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4779,269,450,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4780,269,451,15,47,62,'B',4,'published','2025-10-27',1,'2025-10-27'),
(4781,269,452,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4782,269,453,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4783,269,455,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4784,269,456,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4785,269,457,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4786,269,458,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4787,269,459,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4788,269,460,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4789,46,353,19,44,63,'B',4,'published','2025-10-27',1,'2025-10-27'),
(4790,46,352,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4791,267,185,10,30,40,'E',1,'published','2025-10-27',1,'2025-10-27'),
(4792,267,184,17,34,51,'C',3,'published','2025-10-27',1,'2025-10-27'),
(4793,267,193,20,38,58,'C',3,'published','2025-10-27',1,'2025-10-27'),
(4794,267,194,28,29,57,'C',3,'published','2025-10-27',1,'2025-10-27'),
(4795,267,195,28,26,54,'C',3,'published','2025-10-27',1,'2025-10-27'),
(4796,267,199,20,55,75,'A',5,'published','2025-10-27',1,'2025-10-27'),
(4797,267,198,27,29,56,'C',3,'published','2025-10-27',1,'2025-10-27'),
(4798,267,197,25,9,34,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4799,267,196,20,30,50,'C',3,'published','2025-10-27',1,'2025-10-27'),
(4800,267,352,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4801,267,353,21,46,67,'B',4,'published','2025-10-27',1,'2025-10-27'),
(4802,102,352,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4803,102,353,22,45,67,'B',4,'published','2025-10-27',1,'2025-10-27'),
(4804,102,198,27,34,61,'B',4,'published','2025-10-27',1,'2025-10-27'),
(4805,267,233,22,32,54,'C',3,'published','2025-10-27',1,'2025-10-27'),
(4806,267,175,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4807,267,176,19,45,64,'B',4,'published','2025-10-27',1,'2025-10-27'),
(4808,267,177,25,31,56,'C',3,'published','2025-10-27',1,'2025-10-27'),
(4809,267,178,20,30,50,'C',3,'published','2025-10-27',1,'2025-10-27'),
(4810,267,179,25,49,74,'A',5,'published','2025-10-27',1,'2025-10-27'),
(4811,267,180,27,24,51,'C',3,'published','2025-10-27',1,'2025-10-27'),
(4812,267,181,20,27,47,'D',2,'published','2025-10-27',1,'2025-10-27'),
(4813,267,182,17,40,57,'C',3,'published','2025-10-27',1,'2025-10-27'),
(4814,267,106,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4815,267,183,27,33,60,'B',4,'published','2025-10-27',1,'2025-10-27'),
(4816,102,212,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4817,102,213,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4818,102,215,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4819,102,216,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4820,102,218,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4821,102,219,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4822,102,220,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4823,102,221,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4824,102,222,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4825,267,212,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4826,102,234,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4827,267,213,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4828,267,214,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4829,267,215,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4830,267,216,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4831,267,217,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4832,267,218,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4833,267,219,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4834,267,220,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4835,267,221,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4836,267,222,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4837,267,234,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4838,102,214,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4839,102,217,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4840,267,225,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4841,267,226,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4842,267,227,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4843,267,228,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4844,267,229,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4845,267,230,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4846,267,231,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4847,267,232,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4848,102,223,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4849,102,224,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4850,102,225,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4851,102,226,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4852,102,227,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4853,102,228,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4854,102,229,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4855,102,230,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4856,102,231,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4857,102,232,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4858,267,224,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4859,267,223,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4860,268,212,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4861,268,213,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4862,268,214,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4863,268,215,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4864,268,216,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4865,268,217,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4866,268,218,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4867,268,219,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4868,268,220,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4869,268,221,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4870,268,222,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4871,268,234,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4872,268,223,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4873,268,224,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4874,268,225,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4875,268,226,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4876,268,227,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4877,268,228,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4878,268,229,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4879,268,230,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4880,268,231,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4881,268,232,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4882,268,185,21,30,51,'C',3,'published','2025-10-27',1,'2025-10-27'),
(4883,268,184,17,37,54,'C',3,'published','2025-10-27',1,'2025-10-27'),
(4884,268,193,20,38,58,'C',3,'published','2025-10-27',1,'2025-10-27'),
(4885,268,194,29,15,44,'E',1,'published','2025-10-27',1,'2025-10-27'),
(4886,268,195,30,20,50,'C',3,'published','2025-10-27',1,'2025-10-27'),
(4887,268,199,20,60,80,'A',5,'published','2025-10-27',1,'2025-10-27'),
(4888,268,198,29,15,44,'E',1,'published','2025-10-27',1,'2025-10-27'),
(4889,268,197,27,10,37,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4890,268,196,20,30,50,'C',3,'published','2025-10-27',1,'2025-10-27'),
(4891,268,352,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4892,268,353,16,42,58,'C',3,'published','2025-10-27',1,'2025-10-27'),
(4893,268,233,20,30,50,'C',3,'published','2025-10-27',1,'2025-10-27'),
(4894,268,175,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4895,268,176,20,30,50,'C',3,'published','2025-10-27',1,'2025-10-27'),
(4896,268,177,15,57,72,'A',5,'published','2025-10-27',1,'2025-10-27'),
(4897,268,178,20,31,51,'C',3,'published','2025-10-27',1,'2025-10-27'),
(4898,268,179,26,32,58,'C',3,'published','2025-10-27',1,'2025-10-27'),
(4899,268,180,26,34,60,'B',4,'published','2025-10-27',1,'2025-10-27'),
(4900,268,181,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4901,268,182,19,35,54,'C',3,'published','2025-10-27',1,'2025-10-27'),
(4902,268,106,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4903,268,183,23,17,40,'E',1,'published','2025-10-27',1,'2025-10-27'),
(4904,91,455,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4905,91,456,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4906,91,460,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4907,91,459,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4908,91,185,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4909,91,184,22,19,41,'E',1,'published','2025-10-27',1,'2025-10-27'),
(4910,91,193,20,48,68,'B',4,'published','2025-10-27',1,'2025-10-27'),
(4911,91,195,29,35,64,'B',4,'published','2025-10-27',1,'2025-10-27'),
(4912,91,199,20,55,75,'A',5,'published','2025-10-27',1,'2025-10-27'),
(4913,91,196,20,25,45,'D',2,'published','2025-10-27',1,'2025-10-27'),
(4914,91,352,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4915,91,353,17,34,51,'C',3,'published','2025-10-27',1,'2025-10-27'),
(4916,91,197,27,10,37,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4917,91,198,27,34,61,'B',4,'published','2025-10-27',1,'2025-10-27'),
(4918,91,194,28,23,51,'C',3,'published','2025-10-27',1,'2025-10-27'),
(4919,211,447,19,58,77,'A',5,'published','2025-10-27',1,'2025-10-27'),
(4920,211,449,12,45,57,'C',3,'published','2025-10-27',1,'2025-10-27'),
(4921,91,212,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4922,91,213,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4923,91,214,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4924,91,215,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4925,91,216,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4926,91,217,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4927,91,218,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4928,91,219,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4929,91,220,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4930,91,221,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4931,91,222,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4932,91,234,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4933,91,223,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4934,91,224,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4935,91,225,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4936,91,226,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4937,91,227,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4938,91,228,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4939,91,229,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4940,91,230,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4941,91,231,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4942,91,232,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4943,265,195,25,34,59,'C',3,'published','2025-10-27',1,'2025-10-27'),
(4944,265,198,25,15,40,'E',1,'published','2025-10-27',1,'2025-10-27'),
(4945,265,197,30,48,78,'A',5,'published','2025-10-27',1,'2025-10-27'),
(4946,265,199,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4947,265,185,21,33,54,'C',3,'published','2025-10-27',1,'2025-10-27'),
(4948,265,184,17,42,59,'C',3,'published','2025-10-27',1,'2025-10-27'),
(4949,265,193,20,48,68,'B',4,'published','2025-10-27',1,'2025-10-27'),
(4950,265,194,29,15,44,'E',1,'published','2025-10-27',1,'2025-10-27'),
(4951,126,54,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4952,126,62,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4953,126,61,19,38,57,'C',3,'published','2025-10-27',1,'2025-10-27'),
(4954,126,60,20,40,60,'B',4,'published','2025-10-27',1,'2025-10-27'),
(4955,126,59,20,24,44,'E',1,'published','2025-10-27',1,'2025-10-27'),
(4956,126,58,25,50,75,'A',5,'published','2025-10-27',1,'2025-10-27'),
(4957,126,57,25,32,57,'C',3,'published','2025-10-27',1,'2025-10-27'),
(4958,126,56,18,44,62,'B',4,'published','2025-10-27',1,'2025-10-27'),
(4959,126,55,25,54,79,'A',5,'published','2025-10-27',1,'2025-10-27'),
(4960,265,352,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4961,265,353,16,40,56,'C',3,'published','2025-10-27',1,'2025-10-27'),
(4962,265,196,20,30,50,'C',3,'published','2025-10-27',1,'2025-10-27'),
(4963,265,175,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4964,265,176,21,45,66,'B',4,'published','2025-10-27',1,'2025-10-27'),
(4965,265,177,20,56,76,'A',5,'published','2025-10-27',1,'2025-10-27'),
(4966,265,178,20,40,60,'B',4,'published','2025-10-27',1,'2025-10-27'),
(4967,265,179,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4968,265,180,27,37,64,'B',4,'published','2025-10-27',1,'2025-10-27'),
(4969,265,181,20,37,57,'C',3,'published','2025-10-27',1,'2025-10-27'),
(4970,265,182,21,43,64,'B',4,'published','2025-10-27',1,'2025-10-27'),
(4971,265,183,23,17,40,'E',1,'published','2025-10-27',1,'2025-10-27'),
(4972,116,481,21,39,60,'B',4,'published','2025-10-27',1,'2025-10-27'),
(4973,116,482,21,46,67,'B',4,'published','2025-10-27',1,'2025-10-27'),
(4974,116,491,17,46,63,'B',4,'published','2025-10-27',1,'2025-10-27'),
(4975,116,489,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4976,116,488,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4977,116,486,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4978,116,485,22,35,57,'C',3,'published','2025-10-27',1,'2025-10-27'),
(4979,116,484,12,43,55,'C',3,'published','2025-10-27',1,'2025-10-27'),
(4980,113,175,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4981,113,176,15,48,63,'B',4,'published','2025-10-27',1,'2025-10-27'),
(4982,113,177,20,37,57,'C',3,'published','2025-10-27',1,'2025-10-27'),
(4983,113,178,20,25,45,'D',2,'published','2025-10-27',1,'2025-10-27'),
(4984,113,179,25,36,61,'B',4,'published','2025-10-27',1,'2025-10-27'),
(4985,113,180,24,48,72,'A',5,'published','2025-10-27',1,'2025-10-27'),
(4986,113,182,20,43,63,'B',4,'published','2025-10-27',1,'2025-10-27'),
(4987,113,181,20,37,57,'C',3,'published','2025-10-27',1,'2025-10-27'),
(4988,318,2,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4989,318,13,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4990,318,15,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4991,318,14,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4992,318,16,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4993,318,17,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4994,318,18,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4995,92,185,20,33,53,'C',3,'published','2025-10-27',1,'2025-10-27'),
(4996,318,21,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4997,318,20,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4998,318,22,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(4999,318,23,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5000,318,24,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27');
INSERT INTO `results` (`id`,`student_id`,`course_offering_id`,`continuous_assessment`,`exam_score`,`total_score`,`letter_grade`,`grade_point`,`status`,`published_at`,`updated_by`,`updated_at`) VALUES
(5001,318,25,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5002,318,26,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5003,318,27,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5004,318,28,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5005,319,212,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5006,319,215,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5007,319,213,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5008,319,214,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5009,319,217,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5010,319,219,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5011,319,220,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5012,319,221,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5013,319,216,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5014,319,223,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5015,319,224,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5016,319,225,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5017,319,226,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5018,319,227,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5019,319,228,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5020,319,229,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5021,319,230,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5022,319,231,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5023,306,353,17,47,64,'B',4,'published','2025-10-27',1,'2025-10-27'),
(5024,306,185,22,30,52,'C',3,'published','2025-10-27',1,'2025-10-27'),
(5025,306,352,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5026,306,196,20,13,33,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5027,306,197,29,6,35,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5028,306,198,29,20,49,'D',2,'published','2025-10-27',1,'2025-10-27'),
(5029,306,199,20,40,60,'B',4,'published','2025-10-27',1,'2025-10-27'),
(5030,306,195,25,32,57,'C',3,'published','2025-10-27',1,'2025-10-27'),
(5031,306,194,29,20,49,'D',2,'published','2025-10-27',1,'2025-10-27'),
(5032,306,193,20,55,75,'A',5,'published','2025-10-27',1,'2025-10-27'),
(5033,306,184,20,36,56,'C',3,'published','2025-10-27',1,'2025-10-27'),
(5034,306,183,22,18,40,'E',1,'published','2025-10-27',1,'2025-10-27'),
(5035,306,106,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5036,306,181,20,19,39,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5037,306,182,17,33,50,'C',3,'published','2025-10-27',1,'2025-10-27'),
(5038,306,180,28,27,55,'C',3,'published','2025-10-27',1,'2025-10-27'),
(5039,306,179,26,25,51,'C',3,'published','2025-10-27',1,'2025-10-27'),
(5040,306,178,20,20,40,'E',1,'published','2025-10-27',1,'2025-10-27'),
(5041,306,177,20,36,56,'C',3,'published','2025-10-27',1,'2025-10-27'),
(5042,306,176,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5043,306,175,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5044,306,233,20,14,34,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5045,125,1,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5046,125,3,29,21,50,'C',3,'published','2025-10-27',1,'2025-10-27'),
(5047,125,4,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5048,125,5,24,57,81,'A',5,'published','2025-10-27',1,'2025-10-27'),
(5049,125,6,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5050,125,7,27,28,55,'C',3,'published','2025-10-27',1,'2025-10-27'),
(5051,125,9,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5052,125,10,20,49,69,'B',4,'published','2025-10-27',1,'2025-10-27'),
(5053,125,11,27,33,60,'B',4,'published','2025-10-27',1,'2025-10-27'),
(5054,125,12,20,48,68,'B',4,'published','2025-10-27',1,'2025-10-27'),
(5055,125,276,20,30,50,'C',3,'published','2025-10-27',1,'2025-10-27'),
(5056,125,8,19,64,83,'A',5,'published','2025-10-27',1,'2025-10-27'),
(5057,125,54,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5058,125,55,26,39,65,'B',4,'published','2025-10-27',1,'2025-10-27'),
(5059,125,56,19,38,57,'C',3,'published','2025-10-27',1,'2025-10-27'),
(5060,125,57,25,32,57,'C',3,'published','2025-10-27',1,'2025-10-27'),
(5061,125,58,25,54,79,'A',5,'published','2025-10-27',1,'2025-10-27'),
(5062,125,59,20,35,55,'C',3,'published','2025-10-27',1,'2025-10-27'),
(5063,125,60,20,40,60,'B',4,'published','2025-10-27',1,'2025-10-27'),
(5064,125,61,17,42,59,'C',3,'published','2025-10-27',1,'2025-10-27'),
(5065,125,62,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5066,125,106,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5067,127,1,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5068,127,3,26,28,54,'C',3,'published','2025-10-27',1,'2025-10-27'),
(5069,127,4,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5070,127,5,21,50,71,'A',5,'published','2025-10-27',1,'2025-10-27'),
(5071,127,6,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5072,127,7,8,54,62,'B',4,'published','2025-10-27',1,'2025-10-27'),
(5073,127,8,19,66,85,'A',5,'published','2025-10-27',1,'2025-10-27'),
(5074,127,9,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5075,127,10,21,54,75,'A',5,'published','2025-10-27',1,'2025-10-27'),
(5076,127,11,27,35,62,'B',4,'published','2025-10-27',1,'2025-10-27'),
(5077,127,12,15,48,63,'B',4,'published','2025-10-27',1,'2025-10-27'),
(5078,127,276,20,30,50,'C',3,'published','2025-10-27',1,'2025-10-27'),
(5079,127,54,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5080,127,55,27,61,88,'A',5,'published','2025-10-27',1,'2025-10-27'),
(5081,127,56,22,39,61,'B',4,'published','2025-10-27',1,'2025-10-27'),
(5082,127,57,25,47,72,'A',5,'published','2025-10-27',1,'2025-10-27'),
(5083,127,58,25,46,71,'A',5,'published','2025-10-27',1,'2025-10-27'),
(5084,127,59,20,40,60,'B',4,'published','2025-10-27',1,'2025-10-27'),
(5085,127,60,20,35,55,'C',3,'published','2025-10-27',1,'2025-10-27'),
(5086,127,61,17,48,65,'B',4,'published','2025-10-27',1,'2025-10-27'),
(5087,127,62,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5088,127,106,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5089,315,322,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5090,315,46,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5091,315,47,28,27,55,'C',3,'published','2025-10-27',1,'2025-10-27'),
(5092,315,323,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5093,315,48,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5094,315,127,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5095,315,49,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5096,315,50,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5097,315,344,22,30,52,'C',3,'published','2025-10-27',1,'2025-10-27'),
(5098,315,345,24,26,50,'C',3,'published','2025-10-27',1,'2025-10-27'),
(5099,315,51,25,46,71,'A',5,'published','2025-10-27',1,'2025-10-27'),
(5100,315,326,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5101,315,327,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5102,315,328,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5103,315,329,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5104,315,52,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5105,315,324,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5106,315,53,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5107,315,325,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5108,315,436,20,45,65,'B',4,'published','2025-10-27',1,'2025-10-27'),
(5109,315,435,20,26,46,'D',2,'published','2025-10-27',1,'2025-10-27'),
(5110,315,434,28,40,68,'B',4,'published','2025-10-27',1,'2025-10-27'),
(5111,315,433,19,57,76,'A',5,'published','2025-10-27',1,'2025-10-27'),
(5112,93,441,25,33,58,'C',3,'published','2025-10-27',1,'2025-10-27'),
(5113,93,442,26,58,84,'A',5,'published','2025-10-27',1,'2025-10-27'),
(5114,93,443,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5115,93,446,20,40,60,'B',4,'published','2025-10-27',1,'2025-10-27'),
(5116,93,444,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5117,93,445,17,34,51,'C',3,'published','2025-10-27',1,'2025-10-27'),
(5118,93,502,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5119,93,503,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5120,93,504,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5121,93,505,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5122,93,506,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5123,45,507,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5124,45,508,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5125,45,509,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5126,45,510,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5127,45,511,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5128,45,512,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5129,32,51,25,25,50,'C',3,'published','2025-10-27',1,'2025-10-27'),
(5130,32,436,20,40,60,'B',4,'published','2025-10-27',1,'2025-10-27'),
(5131,32,433,26,54,80,'A',5,'published','2025-10-27',1,'2025-10-27'),
(5132,32,53,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5133,32,52,0,0,0,'F',0,'published','2025-10-27',1,'2025-10-27'),
(5134,32,434,25,50,75,'A',5,'published','2025-10-27',1,'2025-10-27'),
(5135,32,435,20,23,43,'E',1,'published','2025-10-28',1,'2025-10-28'),
(5136,318,19,0,0,0,'F',0,'published','2025-10-28',1,'2025-10-28'),
(5137,51,51,26,44,70,'A',5,'published','2025-10-28',1,'2025-10-28'),
(5138,51,52,0,0,0,'F',0,'published','2025-10-28',1,'2025-10-28'),
(5139,51,53,0,0,0,'F',0,'published','2025-10-28',1,'2025-10-28'),
(5140,51,436,20,53,73,'A',5,'published','2025-10-28',1,'2025-10-28'),
(5141,51,435,20,57,77,'A',5,'published','2025-10-28',1,'2025-10-28'),
(5142,51,434,20,61,81,'A',5,'published','2025-10-28',1,'2025-10-28'),
(5143,51,433,20,59,79,'A',5,'published','2025-10-28',1,'2025-10-28'),
(5144,28,212,0,0,0,'F',0,'published','2025-10-28',1,'2025-10-28'),
(5145,28,213,0,0,0,'F',0,'published','2025-10-28',1,'2025-10-28'),
(5146,28,214,0,0,0,'F',0,'published','2025-10-28',1,'2025-10-28'),
(5147,28,215,0,0,0,'F',0,'published','2025-10-28',1,'2025-10-28'),
(5148,28,216,0,0,0,'F',0,'published','2025-10-28',1,'2025-10-28'),
(5149,28,217,0,0,0,'F',0,'published','2025-10-28',1,'2025-10-28'),
(5150,28,218,0,0,0,'F',0,'published','2025-10-28',1,'2025-10-28'),
(5151,28,219,0,0,0,'F',0,'published','2025-10-28',1,'2025-10-28'),
(5152,28,220,0,0,0,'F',0,'published','2025-10-28',1,'2025-10-28'),
(5153,28,221,0,0,0,'F',0,'published','2025-10-28',1,'2025-10-28'),
(5154,28,222,0,0,0,'F',0,'published','2025-10-28',1,'2025-10-28'),
(5155,28,234,0,0,0,'F',0,'published','2025-10-28',1,'2025-10-28'),
(5156,28,223,0,0,0,'F',0,'published','2025-10-28',1,'2025-10-28'),
(5157,28,224,0,0,0,'F',0,'published','2025-10-28',1,'2025-10-28'),
(5158,28,225,0,0,0,'F',0,'published','2025-10-28',1,'2025-10-28'),
(5159,28,226,0,0,0,'F',0,'published','2025-10-28',1,'2025-10-28'),
(5160,28,227,0,0,0,'F',0,'published','2025-10-28',1,'2025-10-28'),
(5161,28,228,0,0,0,'F',0,'published','2025-10-28',1,'2025-10-28'),
(5162,28,229,0,0,0,'F',0,'published','2025-10-28',1,'2025-10-28'),
(5163,28,230,0,0,0,'F',0,'published','2025-10-28',1,'2025-10-28'),
(5164,28,231,0,0,0,'F',0,'published','2025-10-28',1,'2025-10-28'),
(5165,28,232,0,0,0,'F',0,'published','2025-10-28',1,'2025-10-28'),
(5166,28,185,2,45,47,'D',2,'published','2025-10-28',1,'2025-10-28'),
(5167,28,184,25,51,76,'A',5,'published','2025-10-28',1,'2025-10-28'),
(5168,28,193,20,40,60,'B',4,'published','2025-10-28',1,'2025-10-28'),
(5169,28,194,25,29,54,'C',3,'published','2025-10-28',1,'2025-10-28'),
(5170,28,195,28,38,66,'B',4,'published','2025-10-28',1,'2025-10-28'),
(5171,28,199,20,60,80,'A',5,'published','2025-10-28',1,'2025-10-28'),
(5172,28,198,28,29,57,'C',3,'published','2025-10-28',1,'2025-10-28'),
(5173,28,197,26,14,40,'E',1,'published','2025-10-28',1,'2025-10-28'),
(5174,28,196,20,32,52,'C',3,'published','2025-10-28',1,'2025-10-28'),
(5175,28,352,0,0,0,'F',0,'published','2025-10-28',1,'2025-10-28'),
(5176,28,353,0,0,0,'F',0,'published','2025-10-28',1,'2025-10-28'),
(5177,28,175,0,0,0,'F',0,'published','2025-10-28',1,'2025-10-28'),
(5178,28,176,25,36,61,'B',4,'published','2025-10-28',1,'2025-10-28'),
(5179,28,177,15,53,68,'B',4,'published','2025-10-28',1,'2025-10-28'),
(5180,28,178,20,45,65,'B',4,'published','2025-10-28',1,'2025-10-28'),
(5181,28,179,25,44,69,'B',4,'published','2025-10-28',1,'2025-10-28'),
(5182,28,180,27,34,61,'B',4,'published','2025-10-28',1,'2025-10-28'),
(5183,28,181,20,34,54,'C',3,'published','2025-10-28',1,'2025-10-28'),
(5184,28,182,21,29,50,'C',3,'published','2025-10-28',1,'2025-10-28'),
(5185,28,183,28,27,55,'C',3,'published','2025-10-28',1,'2025-10-28'),
(5186,152,432,15,60,75,'A',5,'published','2025-10-28',1,'2025-10-28'),
(5187,152,431,20,33,53,'C',3,'published','2025-10-28',1,'2025-10-28'),
(5188,152,430,20,31,51,'C',3,'published','2025-10-28',1,'2025-10-28'),
(5189,152,428,28,42,70,'A',5,'published','2025-10-28',1,'2025-10-28'),
(5190,152,426,20,33,53,'C',3,'published','2025-10-28',1,'2025-10-28'),
(5191,152,425,0,0,0,'F',0,'published','2025-10-28',1,'2025-10-28'),
(5192,152,424,17,29,46,'D',2,'published','2025-10-28',1,'2025-10-28'),
(5193,152,427,20,33,53,'C',3,'published','2025-10-28',1,'2025-10-28'),
(5194,152,429,26,25,51,'C',3,'published','2025-10-28',1,'2025-10-28'),
(5195,152,423,27,28,55,'C',3,'published','2025-10-28',1,'2025-10-28'),
(5196,242,175,0,0,0,'F',0,'published','2025-10-28',1,'2025-10-28'),
(5197,242,176,20,70,90,'A',5,'published','2025-10-28',1,'2025-10-28'),
(5198,242,177,16,64,80,'A',5,'published','2025-10-28',1,'2025-10-28'),
(5199,242,178,20,50,70,'A',5,'published','2025-10-28',1,'2025-10-28'),
(5200,242,179,26,45,71,'A',5,'published','2025-10-28',1,'2025-10-28'),
(5201,242,180,25,54,79,'A',5,'published','2025-10-28',1,'2025-10-28'),
(5202,242,181,20,28,48,'D',2,'published','2025-10-28',1,'2025-10-28'),
(5203,242,182,20,45,65,'B',4,'published','2025-10-28',1,'2025-10-28'),
(5204,242,183,28,32,60,'B',4,'published','2025-10-28',1,'2025-10-28'),
(5205,145,211,25,0,25,'F',0,'published','2025-10-28',1,'2025-10-28'),
(5206,88,51,25,35,60,'B',4,'published','2025-10-28',1,'2025-10-28'),
(5207,88,52,0,0,0,'F',0,'published','2025-10-28',1,'2025-10-28'),
(5208,88,53,0,0,0,'F',0,'published','2025-10-28',1,'2025-10-28'),
(5209,88,436,20,55,75,'A',5,'published','2025-10-28',1,'2025-10-28'),
(5210,88,435,20,47,67,'B',4,'published','2025-10-28',1,'2025-10-28'),
(5211,88,434,25,53,78,'A',5,'published','2025-10-28',1,'2025-10-28'),
(5212,88,433,19,46,65,'B',4,'published','2025-10-28',1,'2025-10-28'),
(5213,25,344,22,42,64,'B',4,'published','2025-10-28',1,'2025-10-28'),
(5214,25,345,25,41,66,'B',4,'published','2025-10-28',1,'2025-10-28'),
(5215,25,433,20,49,69,'B',4,'published','2025-10-28',1,'2025-10-28'),
(5216,25,435,20,44,64,'B',4,'published','2025-10-28',1,'2025-10-28'),
(5217,25,434,25,42,67,'B',4,'published','2025-10-28',1,'2025-10-28'),
(5218,144,513,28,23,51,'C',3,'published','2025-10-28',1,'2025-10-28'),
(5219,144,514,28,25,53,'C',3,'published','2025-10-28',1,'2025-10-28'),
(5220,144,515,26,25,51,'C',3,'published','2025-10-28',1,'2025-10-28'),
(5221,144,516,30,36,66,'B',4,'published','2025-10-28',1,'2025-10-28'),
(5222,144,517,0,0,0,'F',0,'published','2025-10-28',1,'2025-10-28'),
(5223,144,518,18,34,52,'C',3,'published','2025-10-28',1,'2025-10-28'),
(5224,144,519,12,58,70,'A',5,'published','2025-10-28',1,'2025-10-28'),
(5225,144,520,25,15,40,'E',1,'published','2025-10-28',1,'2025-10-28'),
(5226,88,344,22,39,61,'B',4,'published','2025-10-28',1,'2025-10-28'),
(5227,88,345,20,39,59,'C',3,'published','2025-10-28',1,'2025-10-28'),
(5228,241,436,20,45,65,'B',4,'published','2025-10-28',1,'2025-10-28'),
(5229,241,435,20,8,28,'F',0,'published','2025-10-28',1,'2025-10-28'),
(5230,241,434,26,24,50,'C',3,'published','2025-10-28',1,'2025-10-28'),
(5231,241,433,19,52,71,'A',5,'published','2025-10-28',1,'2025-10-28'),
(5232,241,53,0,0,0,'F',0,'published','2025-10-28',1,'2025-10-28'),
(5233,45,345,26,36,62,'B',4,'published','2025-10-28',1,'2025-10-28'),
(5234,45,344,22,43,65,'B',4,'published','2025-10-28',1,'2025-10-28'),
(5235,128,481,20,40,60,'B',4,'published','2025-10-28',1,'2025-10-28'),
(5236,128,482,25,50,75,'A',5,'published','2025-10-28',1,'2025-10-28'),
(5237,128,484,10,46,56,'C',3,'published','2025-10-28',1,'2025-10-28'),
(5238,128,485,23,45,68,'B',4,'published','2025-10-28',1,'2025-10-28'),
(5239,128,486,0,0,0,'F',0,'published','2025-10-28',1,'2025-10-28'),
(5240,128,488,0,0,0,'F',0,'published','2025-10-28',1,'2025-10-28'),
(5241,128,489,0,0,0,'F',0,'published','2025-10-28',1,'2025-10-28'),
(5242,128,491,19,49,68,'B',4,'published','2025-10-28',1,'2025-10-28'),
(5243,320,212,0,0,0,'F',0,'published','2025-10-29',1,'2025-10-29'),
(5244,320,213,0,0,0,'F',0,'published','2025-10-29',1,'2025-10-29'),
(5245,320,214,0,0,0,'F',0,'published','2025-10-29',1,'2025-10-29'),
(5246,320,215,0,0,0,'F',0,'published','2025-10-29',1,'2025-10-29'),
(5247,320,216,0,0,0,'F',0,'published','2025-10-29',1,'2025-10-29'),
(5248,320,217,0,0,0,'F',0,'published','2025-10-29',1,'2025-10-29'),
(5249,320,218,0,0,0,'F',0,'published','2025-10-29',1,'2025-10-29'),
(5250,320,219,0,0,0,'F',0,'published','2025-10-29',1,'2025-10-29');
INSERT INTO `results` (`id`,`student_id`,`course_offering_id`,`continuous_assessment`,`exam_score`,`total_score`,`letter_grade`,`grade_point`,`status`,`published_at`,`updated_by`,`updated_at`) VALUES
(5251,320,220,0,0,0,'F',0,'published','2025-10-29',1,'2025-10-29'),
(5252,320,221,0,0,0,'F',0,'published','2025-10-29',1,'2025-10-29'),
(5253,320,222,0,0,0,'F',0,'published','2025-10-29',1,'2025-10-29'),
(5254,320,234,0,0,0,'F',0,'published','2025-10-29',1,'2025-10-29'),
(5255,320,223,0,0,0,'F',0,'published','2025-10-29',1,'2025-10-29'),
(5256,320,224,0,0,0,'F',0,'published','2025-10-29',1,'2025-10-29'),
(5257,320,225,0,0,0,'F',0,'published','2025-10-29',1,'2025-10-29'),
(5258,320,226,0,0,0,'F',0,'published','2025-10-29',1,'2025-10-29'),
(5259,320,227,0,0,0,'F',0,'published','2025-10-29',1,'2025-10-29'),
(5260,320,228,0,0,0,'F',0,'published','2025-10-29',1,'2025-10-29'),
(5261,320,229,0,0,0,'F',0,'published','2025-10-29',1,'2025-10-29'),
(5262,320,230,0,0,0,'F',0,'published','2025-10-29',1,'2025-10-29'),
(5263,320,231,0,0,0,'F',0,'published','2025-10-29',1,'2025-10-29'),
(5264,320,232,0,0,0,'F',0,'published','2025-10-29',1,'2025-10-29'),
(5265,316,46,0,0,0,'F',0,'published','2025-10-29',1,'2025-10-29'),
(5266,316,127,0,0,0,'F',0,'published','2025-10-29',1,'2025-10-29'),
(5267,316,49,0,0,0,'F',0,'published','2025-10-29',1,'2025-10-29'),
(5268,316,50,0,0,0,'F',0,'published','2025-10-29',1,'2025-10-29'),
(5269,316,344,22,18,40,'E',1,'published','2025-10-29',1,'2025-10-29'),
(5270,316,345,28,25,53,'C',3,'published','2025-10-29',1,'2025-10-29'),
(5271,316,48,0,0,0,'F',0,'published','2025-10-29',1,'2025-10-29'),
(5272,316,47,27,17,44,'E',1,'published','2025-10-29',1,'2025-10-29'),
(5273,316,51,0,0,0,'F',0,'published','2025-10-29',1,'2025-10-29'),
(5274,316,52,0,0,0,'F',0,'published','2025-10-29',1,'2025-10-29'),
(5275,316,53,0,0,0,'F',0,'published','2025-10-29',1,'2025-10-29'),
(5276,316,436,18,37,55,'C',3,'published','2025-10-29',1,'2025-10-29'),
(5277,316,435,20,25,45,'D',2,'published','2025-10-29',1,'2025-10-29'),
(5278,316,434,23,34,57,'C',3,'published','2025-10-29',1,'2025-10-29'),
(5279,316,433,24,53,77,'A',5,'published','2025-10-29',1,'2025-10-29'),
(5280,246,54,0,0,0,'F',0,'published','2025-10-29',1,'2025-10-29'),
(5281,246,55,26,35,61,'B',4,'published','2025-10-29',1,'2025-10-29'),
(5282,246,56,20,41,61,'B',4,'published','2025-10-29',1,'2025-10-29'),
(5283,246,57,25,31,56,'C',3,'published','2025-10-29',1,'2025-10-29'),
(5284,246,58,25,41,66,'B',4,'published','2025-10-29',1,'2025-10-29'),
(5285,246,59,20,31,51,'C',3,'published','2025-10-29',1,'2025-10-29'),
(5286,246,60,20,35,55,'C',3,'published','2025-10-29',1,'2025-10-29'),
(5287,246,61,0,0,0,'F',0,'published','2025-10-29',1,'2025-10-29'),
(5288,246,106,0,0,0,'F',0,'published','2025-10-29',1,'2025-10-29'),
(5289,246,62,0,0,0,'F',0,'published','2025-10-29',1,'2025-10-29'),
(5290,167,481,0,0,0,'F',0,'published','2025-10-29',1,'2025-10-29'),
(5291,167,482,18,52,70,'A',5,'published','2025-10-29',1,'2025-10-29'),
(5292,167,484,14,49,63,'B',4,'published','2025-10-29',1,'2025-10-29'),
(5293,167,485,21,46,67,'B',4,'published','2025-10-29',1,'2025-10-29'),
(5294,167,486,0,0,0,'F',0,'published','2025-10-29',1,'2025-10-29'),
(5295,167,488,0,0,0,'F',0,'published','2025-10-29',1,'2025-10-29'),
(5296,167,489,0,0,0,'F',0,'published','2025-10-29',1,'2025-10-29'),
(5297,167,491,21,48,69,'B',4,'published','2025-10-29',1,'2025-10-29'),
(5298,130,481,0,0,0,'F',0,'published','2025-10-29',1,'2025-10-29'),
(5299,130,482,19,59,78,'A',5,'published','2025-10-29',1,'2025-10-29'),
(5300,130,484,10,67,77,'A',5,'published','2025-10-29',1,'2025-10-29'),
(5301,130,486,0,0,0,'F',0,'published','2025-10-29',1,'2025-10-29'),
(5302,130,485,9,47,56,'C',3,'published','2025-10-29',1,'2025-10-29'),
(5303,130,488,0,0,0,'F',0,'published','2025-10-29',1,'2025-10-29'),
(5304,130,489,0,0,0,'F',0,'published','2025-10-29',1,'2025-10-29'),
(5305,130,491,19,53,72,'A',5,'published','2025-10-29',1,'2025-10-29'),
(5306,176,481,22,43,65,'B',4,'published','2025-10-29',1,'2025-10-29'),
(5307,176,482,18,53,71,'A',5,'published','2025-10-29',1,'2025-10-29'),
(5308,176,485,23,39,62,'B',4,'published','2025-10-29',1,'2025-10-29'),
(5309,176,486,0,0,0,'F',0,'published','2025-10-29',1,'2025-10-29'),
(5310,176,488,0,0,0,'F',0,'published','2025-10-29',1,'2025-10-29'),
(5311,176,489,0,0,0,'F',0,'published','2025-10-29',1,'2025-10-29'),
(5312,176,491,25,52,77,'A',5,'published','2025-10-29',1,'2025-10-29'),
(5313,114,481,22,38,60,'B',4,'published','2025-10-30',1,'2025-10-30'),
(5314,114,482,19,51,70,'A',5,'published','2025-10-30',1,'2025-10-30'),
(5315,114,484,14,40,54,'C',3,'published','2025-10-30',1,'2025-10-30'),
(5316,114,485,17,46,63,'B',4,'published','2025-10-30',1,'2025-10-30'),
(5317,114,486,0,0,0,'F',0,'published','2025-10-30',1,'2025-10-30'),
(5318,114,488,0,0,0,'F',0,'published','2025-10-30',1,'2025-10-30'),
(5319,114,489,0,0,0,'F',0,'published','2025-10-30',1,'2025-10-30'),
(5320,114,491,19,56,75,'A',5,'published','2025-10-30',1,'2025-10-30'),
(5321,150,108,0,0,0,'F',0,'published','2025-10-30',1,'2025-10-30'),
(5322,150,109,0,0,0,'F',0,'published','2025-10-30',1,'2025-10-30'),
(5323,150,110,0,0,0,'F',0,'published','2025-10-30',1,'2025-10-30'),
(5324,150,211,0,0,0,'F',0,'published','2025-10-30',1,'2025-10-30'),
(5325,150,114,0,0,0,'F',0,'published','2025-10-30',1,'2025-10-30'),
(5326,150,113,0,0,0,'F',0,'published','2025-10-30',1,'2025-10-30'),
(5327,150,112,0,0,0,'F',0,'published','2025-10-30',1,'2025-10-30'),
(5328,150,111,0,0,0,'F',0,'published','2025-10-30',1,'2025-10-30'),
(5329,151,109,0,0,0,'F',0,'published','2025-10-30',1,'2025-10-30'),
(5330,151,110,0,0,0,'F',0,'published','2025-10-30',1,'2025-10-30'),
(5331,151,111,0,0,0,'F',0,'published','2025-10-30',1,'2025-10-30'),
(5332,151,112,0,0,0,'F',0,'published','2025-10-30',1,'2025-10-30'),
(5333,151,114,0,0,0,'F',0,'published','2025-10-30',1,'2025-10-30'),
(5334,151,113,0,0,0,'F',0,'published','2025-10-30',1,'2025-10-30'),
(5335,151,211,0,0,0,'F',0,'published','2025-10-30',1,'2025-10-30'),
(5336,310,521,28,56,84,'A',5,'published','2025-10-30',1,'2025-10-30'),
(5337,310,522,0,0,0,'F',0,'published','2025-10-30',1,'2025-10-30'),
(5338,310,523,23,70,93,'A',5,'published','2025-10-30',1,'2025-10-30'),
(5339,310,524,0,0,0,'F',0,'published','2025-10-30',1,'2025-10-30'),
(5340,310,525,75,0,75,'A',5,'published','2025-10-30',1,'2025-10-30'),
(5341,310,526,20,63,83,'A',5,'published','2025-10-30',1,'2025-10-30'),
(5342,310,527,0,0,0,'F',0,'published','2025-10-30',1,'2025-10-30'),
(5343,310,528,0,0,0,'F',0,'published','2025-10-30',1,'2025-10-30'),
(5344,310,529,0,0,0,'F',0,'published','2025-10-30',1,'2025-10-30'),
(5345,310,530,0,0,0,'F',0,'published','2025-10-30',1,'2025-10-30'),
(5346,310,531,0,0,0,'F',0,'published','2025-10-30',1,'2025-10-30'),
(5347,310,532,0,0,0,'F',0,'published','2025-10-30',1,'2025-10-30'),
(5348,310,533,0,0,0,'F',0,'published','2025-10-30',1,'2025-10-30'),
(5349,310,534,0,0,0,'F',0,'published','2025-10-30',1,'2025-10-30'),
(5350,310,535,29,60,89,'A',5,'published','2025-10-30',1,'2025-10-30'),
(5351,314,535,0,0,0,'F',0,'published','2025-10-30',1,'2025-10-30'),
(5352,42,138,25,37,62,'B',4,'published','2025-10-31',1,'2025-10-31'),
(5353,52,492,27,25,52,'C',3,'published','2025-11-01',1,'2025-11-01'),
(5354,52,493,28,22,50,'C',3,'published','2025-11-01',1,'2025-11-01'),
(5355,25,436,20,44,64,'B',4,'published','2025-11-01',1,'2025-11-01'),
(5356,40,383,25,46,71,'A',5,'published','2025-11-02',1,'2025-11-02'),
(5357,40,384,20,48,68,'B',4,'published','2025-11-02',1,'2025-11-02'),
(5358,40,385,0,0,0,'F',0,'published','2025-11-02',1,'2025-11-02'),
(5359,40,386,0,0,0,'F',0,'published','2025-11-02',1,'2025-11-02'),
(5360,40,387,0,0,0,'F',0,'published','2025-11-02',1,'2025-11-02'),
(5361,40,388,17,50,67,'B',4,'published','2025-11-02',1,'2025-11-02'),
(5362,19,447,18,39,57,'C',3,'published','2025-11-03',1,'2025-11-03'),
(5363,19,182,0,0,0,'F',0,'published','2025-11-05',1,'2025-11-05'),
(5364,91,451,15,26,41,'E',1,'published','2025-11-06',1,'2025-11-06'),
(5365,324,212,0,0,0,'F',0,'published','2025-11-10',1,'2025-11-10'),
(5366,324,213,0,0,0,'F',0,'published','2025-11-10',1,'2025-11-10'),
(5367,324,214,0,0,0,'F',0,'published','2025-11-10',1,'2025-11-10'),
(5368,324,215,0,0,0,'F',0,'published','2025-11-10',1,'2025-11-10'),
(5369,324,216,0,0,0,'F',0,'published','2025-11-10',1,'2025-11-10'),
(5370,324,217,0,0,0,'F',0,'published','2025-11-10',1,'2025-11-10'),
(5371,324,218,0,0,0,'F',0,'published','2025-11-10',1,'2025-11-10'),
(5372,324,219,0,0,0,'F',0,'published','2025-11-10',1,'2025-11-10'),
(5373,324,220,0,0,0,'F',0,'published','2025-11-10',1,'2025-11-10'),
(5374,324,221,0,0,0,'F',0,'published','2025-11-10',1,'2025-11-10'),
(5375,324,222,0,0,0,'F',0,'published','2025-11-10',1,'2025-11-10'),
(5376,324,234,0,0,0,'F',0,'published','2025-11-10',1,'2025-11-10'),
(5377,323,212,0,0,0,'F',0,'published','2025-11-10',1,'2025-11-10'),
(5378,323,213,0,0,0,'F',0,'published','2025-11-10',1,'2025-11-10'),
(5379,323,214,0,0,0,'F',0,'published','2025-11-10',1,'2025-11-10'),
(5380,323,215,0,0,0,'F',0,'published','2025-11-10',1,'2025-11-10'),
(5381,323,216,0,0,0,'F',0,'published','2025-11-10',1,'2025-11-10'),
(5382,323,217,0,0,0,'F',0,'published','2025-11-10',1,'2025-11-10'),
(5383,323,218,0,0,0,'F',0,'published','2025-11-10',1,'2025-11-10'),
(5384,323,219,0,0,0,'F',0,'published','2025-11-10',1,'2025-11-10'),
(5385,323,220,0,0,0,'F',0,'published','2025-11-10',1,'2025-11-10'),
(5386,323,221,0,0,0,'F',0,'published','2025-11-10',1,'2025-11-10'),
(5387,323,222,0,0,0,'F',0,'published','2025-11-10',1,'2025-11-10'),
(5388,323,234,0,0,0,'F',0,'published','2025-11-10',1,'2025-11-10'),
(5389,323,223,0,0,0,'F',0,'published','2025-11-10',1,'2025-11-10'),
(5390,324,225,0,0,0,'F',0,'published','2025-11-10',1,'2025-11-10'),
(5391,323,224,0,0,0,'F',0,'published','2025-11-10',1,'2025-11-10'),
(5392,324,226,0,0,0,'F',0,'published','2025-11-10',1,'2025-11-10'),
(5393,324,232,0,0,0,'F',0,'published','2025-11-10',1,'2025-11-10'),
(5394,323,232,0,0,0,'F',0,'published','2025-11-10',1,'2025-11-10'),
(5395,324,231,0,0,0,'F',0,'published','2025-11-10',1,'2025-11-10'),
(5396,323,231,0,0,0,'F',0,'published','2025-11-10',1,'2025-11-10'),
(5397,323,230,0,0,0,'F',0,'published','2025-11-10',1,'2025-11-10'),
(5398,323,229,0,0,0,'F',0,'published','2025-11-10',1,'2025-11-10'),
(5399,323,228,0,0,0,'F',0,'published','2025-11-10',1,'2025-11-10'),
(5400,323,227,0,0,0,'F',0,'published','2025-11-10',1,'2025-11-10'),
(5401,323,226,0,0,0,'F',0,'published','2025-11-10',1,'2025-11-10'),
(5402,324,230,0,0,0,'F',0,'published','2025-11-10',1,'2025-11-10'),
(5403,323,225,0,0,0,'F',0,'published','2025-11-10',1,'2025-11-10'),
(5404,324,229,0,0,0,'F',0,'published','2025-11-10',1,'2025-11-10'),
(5405,324,228,0,0,0,'F',0,'published','2025-11-10',1,'2025-11-10'),
(5406,324,227,0,0,0,'F',0,'published','2025-11-10',1,'2025-11-10'),
(5407,324,224,0,0,0,'F',0,'published','2025-11-10',1,'2025-11-10'),
(5408,324,223,0,0,0,'F',0,'published','2025-11-10',1,'2025-11-10'),
(5409,79,465,20,20,40,'E',1,'published','2025-11-12',1,'2025-11-12'),
(5410,90,433,0,0,0,'F',0,'published','2025-11-13',1,'2025-11-13'),
(5411,90,434,0,0,0,'F',0,'published','2025-11-13',1,'2025-11-13'),
(5412,90,435,0,0,0,'F',0,'published','2025-11-13',1,'2025-11-13'),
(5413,144,536,20,23,43,'E',1,'published','2025-11-17',1,'2025-11-17'),
(5414,69,454,15,75,90,'A',5,'published','2025-11-17',1,'2025-11-17'),
(5415,69,458,0,0,0,'F',0,'published','2025-11-17',1,'2025-11-17'),
(5416,69,456,0,0,0,'F',0,'published','2025-11-17',1,'2025-11-17'),
(5417,69,457,0,0,0,'F',0,'published','2025-11-17',1,'2025-11-17'),
(5418,69,455,0,0,0,'F',0,'published','2025-11-17',1,'2025-11-17'),
(5419,69,459,0,0,0,'F',0,'published','2025-11-17',1,'2025-11-17'),
(5420,69,460,0,0,0,'F',0,'published','2025-11-17',1,'2025-11-17'),
(5421,50,441,25,36,61,'B',4,'published','2025-11-18',1,'2025-11-18'),
(5422,50,442,25,60,85,'A',5,'published','2025-11-18',1,'2025-11-18'),
(5423,129,481,21,46,67,'B',4,'published','2025-11-18',1,'2025-11-18'),
(5424,129,482,21,57,78,'A',5,'published','2025-11-18',1,'2025-11-18'),
(5425,129,484,12,56,68,'B',4,'published','2025-11-18',1,'2025-11-18'),
(5426,129,485,25,62,87,'A',5,'published','2025-11-18',1,'2025-11-18'),
(5427,129,486,0,0,0,'F',0,'published','2025-11-18',1,'2025-11-18'),
(5428,129,488,0,0,0,'F',0,'published','2025-11-18',1,'2025-11-18'),
(5429,129,489,0,0,0,'F',0,'published','2025-11-18',1,'2025-11-18'),
(5430,129,491,20,45,65,'B',4,'published','2025-11-18',1,'2025-11-18'),
(5431,326,29,0,0,0,'F',0,'published','2025-11-19',1,'2025-11-19'),
(5432,326,30,0,0,0,'F',0,'published','2025-11-19',1,'2025-11-19'),
(5433,326,32,0,0,0,'F',0,'published','2025-11-19',1,'2025-11-19'),
(5434,326,31,0,0,0,'F',0,'published','2025-11-19',1,'2025-11-19'),
(5435,326,33,0,0,0,'F',0,'published','2025-11-19',1,'2025-11-19'),
(5436,326,34,0,0,0,'F',0,'published','2025-11-19',1,'2025-11-19'),
(5437,326,35,0,0,0,'F',0,'published','2025-11-19',1,'2025-11-19'),
(5438,326,36,0,0,0,'F',0,'published','2025-11-19',1,'2025-11-19'),
(5439,326,186,0,0,0,'F',0,'published','2025-11-19',1,'2025-11-19'),
(5440,326,187,0,0,0,'F',0,'published','2025-11-19',1,'2025-11-19'),
(5441,326,188,0,0,0,'F',0,'published','2025-11-19',1,'2025-11-19'),
(5442,326,189,0,0,0,'F',0,'published','2025-11-19',1,'2025-11-19'),
(5443,326,190,0,0,0,'F',0,'published','2025-11-19',1,'2025-11-19'),
(5444,326,192,0,0,0,'F',0,'published','2025-11-19',1,'2025-11-19'),
(5445,326,191,0,0,0,'F',0,'published','2025-11-19',1,'2025-11-19'),
(5446,326,279,0,0,0,'F',0,'published','2025-11-19',1,'2025-11-19'),
(5447,308,233,0,0,0,'F',0,'published','2025-11-19',1,'2025-11-19'),
(5448,308,175,0,0,0,'F',0,'published','2025-11-19',1,'2025-11-19'),
(5449,308,176,15,45,60,'B',4,'published','2025-11-19',1,'2025-11-19'),
(5450,308,177,20,57,77,'A',5,'published','2025-11-19',1,'2025-11-19'),
(5451,308,178,20,51,71,'A',5,'published','2025-11-19',1,'2025-11-19'),
(5452,308,179,0,0,0,'F',0,'published','2025-11-19',1,'2025-11-19'),
(5453,308,180,0,0,0,'F',0,'published','2025-11-19',1,'2025-11-19'),
(5454,308,181,0,0,0,'F',0,'published','2025-11-19',1,'2025-11-19'),
(5455,308,182,0,0,0,'F',0,'published','2025-11-19',1,'2025-11-19'),
(5456,308,106,0,0,0,'F',0,'published','2025-11-19',1,'2025-11-19'),
(5457,308,183,0,0,0,'F',0,'published','2025-11-19',1,'2025-11-19'),
(5458,308,185,0,0,0,'F',0,'published','2025-11-19',1,'2025-11-19'),
(5459,308,184,0,0,0,'F',0,'published','2025-11-19',1,'2025-11-19'),
(5460,308,193,0,0,0,'F',0,'published','2025-11-19',1,'2025-11-19'),
(5461,308,194,0,0,0,'F',0,'published','2025-11-19',1,'2025-11-19'),
(5462,308,195,0,0,0,'F',0,'published','2025-11-19',1,'2025-11-19'),
(5463,308,199,0,0,0,'F',0,'published','2025-11-19',1,'2025-11-19'),
(5464,308,198,0,0,0,'F',0,'published','2025-11-19',1,'2025-11-19'),
(5465,308,197,0,0,0,'F',0,'published','2025-11-19',1,'2025-11-19'),
(5466,308,196,0,0,0,'F',0,'published','2025-11-19',1,'2025-11-19'),
(5467,308,352,0,0,0,'F',0,'published','2025-11-19',1,'2025-11-19'),
(5468,308,353,0,0,0,'F',0,'published','2025-11-19',1,'2025-11-19'),
(5469,308,453,0,0,0,'F',0,'published','2025-11-19',1,'2025-11-19'),
(5470,308,452,0,0,0,'F',0,'published','2025-11-19',1,'2025-11-19'),
(5471,308,451,15,56,71,'A',5,'published','2025-11-19',1,'2025-11-19'),
(5472,308,450,0,0,0,'F',0,'published','2025-11-19',1,'2025-11-19'),
(5473,308,449,12,28,40,'E',1,'published','2025-11-19',1,'2025-11-19'),
(5474,308,448,15,80,95,'A',5,'published','2025-11-19',1,'2025-11-19'),
(5475,308,447,27,38,65,'B',4,'published','2025-11-19',1,'2025-11-19'),
(5476,80,345,24,34,58,'C',3,'published','2025-11-20',1,'2025-11-20'),
(5477,80,344,22,56,78,'A',5,'published','2025-11-20',1,'2025-11-20'),
(5478,79,47,0,0,0,'F',0,'published','2025-11-20',1,'2025-11-20'),
(5479,79,323,0,0,0,'F',0,'published','2025-11-20',1,'2025-11-20'),
(5480,79,48,0,0,0,'F',0,'published','2025-11-20',1,'2025-11-20'),
(5481,79,127,0,0,0,'F',0,'published','2025-11-20',1,'2025-11-20'),
(5482,79,49,0,0,0,'F',0,'published','2025-11-20',1,'2025-11-20'),
(5483,79,50,0,0,0,'F',0,'published','2025-11-20',1,'2025-11-20'),
(5484,79,344,22,21,43,'E',1,'published','2025-11-20',1,'2025-11-20'),
(5485,79,345,29,18,47,'D',2,'published','2025-11-20',1,'2025-11-20'),
(5486,80,465,20,20,40,'E',1,'published','2025-11-20',1,'2025-11-20'),
(5487,79,51,0,0,0,'F',0,'published','2025-11-20',1,'2025-11-20'),
(5488,79,326,0,0,0,'F',0,'published','2025-11-20',1,'2025-11-20'),
(5489,79,327,0,0,0,'F',0,'published','2025-11-20',1,'2025-11-20'),
(5490,79,328,0,0,0,'F',0,'published','2025-11-20',1,'2025-11-20'),
(5491,79,329,0,0,0,'F',0,'published','2025-11-20',1,'2025-11-20'),
(5492,79,52,0,0,0,'F',0,'published','2025-11-20',1,'2025-11-20'),
(5493,79,324,0,0,0,'F',0,'published','2025-11-20',1,'2025-11-20'),
(5494,79,53,0,0,0,'F',0,'published','2025-11-20',1,'2025-11-20'),
(5495,79,325,0,0,0,'F',0,'published','2025-11-20',1,'2025-11-20'),
(5496,79,436,0,0,0,'F',0,'published','2025-11-20',1,'2025-11-20'),
(5497,79,435,0,0,0,'F',0,'published','2025-11-20',1,'2025-11-20'),
(5498,79,434,0,0,0,'F',0,'published','2025-11-20',1,'2025-11-20'),
(5499,79,433,0,0,0,'F',0,'published','2025-11-20',1,'2025-11-20'),
(5500,315,512,0,0,0,'F',0,'published','2025-11-20',1,'2025-11-20');
INSERT INTO `results` (`id`,`student_id`,`course_offering_id`,`continuous_assessment`,`exam_score`,`total_score`,`letter_grade`,`grade_point`,`status`,`published_at`,`updated_by`,`updated_at`) VALUES
(5501,315,507,0,0,0,'F',0,'published','2025-11-20',1,'2025-11-20'),
(5502,315,537,0,0,0,'F',0,'published','2025-11-20',1,'2025-11-20'),
(5503,315,509,0,0,0,'F',0,'published','2025-11-20',1,'2025-11-20'),
(5504,327,538,0,0,0,'F',0,'published','2025-11-20',1,'2025-11-20'),
(5505,327,539,19,46,65,'B',4,'published','2025-11-20',1,'2025-11-20'),
(5506,327,540,27,36,63,'B',4,'published','2025-11-20',1,'2025-11-20'),
(5507,327,541,28,50,78,'A',5,'published','2025-11-20',1,'2025-11-20'),
(5508,327,542,27,45,72,'A',5,'published','2025-11-20',1,'2025-11-20'),
(5509,327,543,24,58,82,'A',5,'published','2025-11-20',1,'2025-11-20'),
(5510,327,544,21,41,62,'B',4,'published','2025-11-20',1,'2025-11-20'),
(5511,327,545,25,28,53,'C',3,'published','2025-11-20',1,'2025-11-20'),
(5512,328,540,25,37,62,'B',4,'published','2025-11-20',1,'2025-11-20'),
(5513,328,539,24,28,52,'C',3,'published','2025-11-20',1,'2025-11-20'),
(5514,328,541,28,45,73,'A',5,'published','2025-11-20',1,'2025-11-20'),
(5515,328,538,0,0,0,'F',0,'published','2025-11-20',1,'2025-11-20'),
(5516,328,543,19,46,65,'B',4,'published','2025-11-20',1,'2025-11-20'),
(5517,328,545,25,35,60,'B',4,'published','2025-11-20',1,'2025-11-20'),
(5518,328,544,20,40,60,'B',4,'published','2025-11-20',1,'2025-11-20'),
(5519,328,542,28,40,68,'B',4,'published','2025-11-20',1,'2025-11-20'),
(5520,329,538,0,0,0,'F',0,'published','2025-11-20',1,'2025-11-20'),
(5521,329,539,28,57,85,'A',5,'published','2025-11-20',1,'2025-11-20'),
(5522,329,540,28,41,69,'B',4,'published','2025-11-20',1,'2025-11-20'),
(5523,329,541,24,58,82,'A',5,'published','2025-11-20',1,'2025-11-20'),
(5524,329,542,28,49,77,'A',5,'published','2025-11-20',1,'2025-11-20'),
(5525,329,543,20,48,68,'B',4,'published','2025-11-20',1,'2025-11-20'),
(5526,329,544,15,56,71,'A',5,'published','2025-11-20',1,'2025-11-20'),
(5527,329,545,25,43,68,'B',4,'published','2025-11-20',1,'2025-11-20'),
(5528,330,538,0,0,0,'F',0,'published','2025-11-20',1,'2025-11-20'),
(5529,330,539,19,59,78,'A',5,'published','2025-11-20',1,'2025-11-20'),
(5530,330,540,27,43,70,'A',5,'published','2025-11-20',1,'2025-11-20'),
(5531,330,541,26,51,77,'A',5,'published','2025-11-20',1,'2025-11-20'),
(5532,330,542,28,44,72,'A',5,'published','2025-11-20',1,'2025-11-20'),
(5533,330,543,17,40,57,'C',3,'published','2025-11-20',1,'2025-11-20'),
(5534,330,544,10,51,61,'B',4,'published','2025-11-20',1,'2025-11-20'),
(5535,330,545,25,38,63,'B',4,'published','2025-11-20',1,'2025-11-20'),
(5536,331,546,25,35,60,'B',4,'published','2025-11-20',1,'2025-11-20'),
(5537,331,547,0,0,0,'F',0,'published','2025-11-20',1,'2025-11-20'),
(5538,331,548,27,25,52,'C',3,'published','2025-11-20',1,'2025-11-20'),
(5539,331,549,0,0,0,'F',0,'published','2025-11-20',1,'2025-11-20'),
(5540,331,550,20,46,66,'B',4,'published','2025-11-20',1,'2025-11-20'),
(5541,331,551,26,35,61,'B',4,'published','2025-11-20',1,'2025-11-20'),
(5542,331,552,0,0,0,'F',0,'published','2025-11-20',1,'2025-11-20'),
(5543,331,553,0,0,0,'F',0,'published','2025-11-20',1,'2025-11-20'),
(5544,331,554,15,30,45,'D',2,'published','2025-11-20',1,'2025-11-20'),
(5545,331,555,25,25,50,'C',3,'published','2025-11-20',1,'2025-11-20'),
(5546,331,556,28,23,51,'C',3,'published','2025-11-20',1,'2025-11-20'),
(5547,331,557,0,0,0,'F',0,'published','2025-11-20',1,'2025-11-20'),
(5548,331,558,28,34,62,'B',4,'published','2025-11-20',1,'2025-11-20'),
(5549,331,559,20,38,58,'C',3,'published','2025-11-20',1,'2025-11-20'),
(5550,333,546,25,37,62,'B',4,'published','2025-11-20',1,'2025-11-20'),
(5551,333,547,0,0,0,'F',0,'published','2025-11-20',1,'2025-11-20'),
(5552,333,548,27,35,62,'B',4,'published','2025-11-20',1,'2025-11-20'),
(5553,333,549,0,0,0,'F',0,'published','2025-11-20',1,'2025-11-20'),
(5554,333,559,19,51,70,'A',5,'published','2025-11-20',1,'2025-11-20'),
(5555,333,558,27,32,59,'C',3,'published','2025-11-20',1,'2025-11-20'),
(5556,333,557,0,0,0,'F',0,'published','2025-11-20',1,'2025-11-20'),
(5557,333,556,26,34,60,'B',4,'published','2025-11-20',1,'2025-11-20'),
(5558,333,555,25,25,50,'C',3,'published','2025-11-20',1,'2025-11-20'),
(5559,333,554,0,0,0,'F',0,'published','2025-11-20',1,'2025-11-20'),
(5560,333,552,0,0,0,'F',0,'published','2025-11-20',1,'2025-11-20'),
(5561,333,551,28,30,58,'C',3,'published','2025-11-20',1,'2025-11-20'),
(5562,333,550,19,32,51,'C',3,'published','2025-11-20',1,'2025-11-20'),
(5563,332,559,0,0,0,'F',0,'published','2025-11-20',1,'2025-11-20'),
(5564,332,558,28,40,68,'B',4,'published','2025-11-20',1,'2025-11-20'),
(5565,332,557,0,0,0,'F',0,'published','2025-11-20',1,'2025-11-20'),
(5566,332,556,23,45,68,'B',4,'published','2025-11-20',1,'2025-11-20'),
(5567,332,555,25,25,50,'C',3,'published','2025-11-20',1,'2025-11-20'),
(5568,332,554,0,0,0,'F',0,'published','2025-11-20',1,'2025-11-20'),
(5569,332,553,0,0,0,'F',0,'published','2025-11-20',1,'2025-11-20'),
(5570,332,552,0,0,0,'F',0,'published','2025-11-20',1,'2025-11-20'),
(5571,332,551,26,27,53,'C',3,'published','2025-11-20',1,'2025-11-20'),
(5572,332,550,19,45,64,'B',4,'published','2025-11-20',1,'2025-11-20'),
(5573,332,549,0,0,0,'F',0,'published','2025-11-20',1,'2025-11-20'),
(5574,332,548,20,25,45,'D',2,'published','2025-11-20',1,'2025-11-20'),
(5575,332,547,0,0,0,'F',0,'published','2025-11-20',1,'2025-11-20'),
(5576,332,546,25,34,59,'C',3,'published','2025-11-20',1,'2025-11-20'),
(5577,333,553,0,0,0,'F',0,'published','2025-11-20',1,'2025-11-20'),
(5578,38,512,0,0,0,'F',0,'published','2025-11-20',1,'2025-11-20'),
(5579,334,556,26,20,46,'D',2,'published','2025-11-21',1,'2025-11-21'),
(5580,334,555,25,6,31,'F',0,'published','2025-11-21',1,'2025-11-21'),
(5581,334,554,0,0,0,'F',0,'published','2025-11-21',1,'2025-11-21'),
(5582,334,553,0,0,0,'F',0,'published','2025-11-21',1,'2025-11-21'),
(5583,334,552,0,0,0,'F',0,'published','2025-11-21',1,'2025-11-21'),
(5584,334,547,0,0,0,'F',0,'published','2025-11-21',1,'2025-11-21'),
(5585,334,550,10,25,35,'F',0,'published','2025-11-21',1,'2025-11-21'),
(5586,334,548,26,30,56,'C',3,'published','2025-11-21',1,'2025-11-21'),
(5587,334,549,0,0,0,'F',0,'published','2025-11-21',1,'2025-11-21'),
(5588,334,546,25,32,57,'C',3,'published','2025-11-21',1,'2025-11-21'),
(5589,334,551,27,26,53,'C',3,'published','2025-11-21',1,'2025-11-21'),
(5590,335,559,20,30,50,'C',3,'published','2025-11-21',1,'2025-11-21'),
(5591,335,558,28,31,59,'C',3,'published','2025-11-21',1,'2025-11-21'),
(5592,335,557,0,0,0,'F',0,'published','2025-11-21',1,'2025-11-21'),
(5593,335,556,29,34,63,'B',4,'published','2025-11-21',1,'2025-11-21'),
(5594,335,555,25,25,50,'C',3,'published','2025-11-21',1,'2025-11-21'),
(5595,335,554,0,0,0,'F',0,'published','2025-11-21',1,'2025-11-21'),
(5596,335,552,0,0,0,'F',0,'published','2025-11-21',1,'2025-11-21'),
(5597,335,550,17,41,58,'C',3,'published','2025-11-21',1,'2025-11-21'),
(5598,335,547,0,0,0,'F',0,'published','2025-11-21',1,'2025-11-21'),
(5599,335,549,0,0,0,'F',0,'published','2025-11-21',1,'2025-11-21'),
(5600,335,548,25,35,60,'B',4,'published','2025-11-21',1,'2025-11-21'),
(5601,334,557,0,0,0,'F',0,'published','2025-11-21',1,'2025-11-21'),
(5602,335,546,25,40,65,'B',4,'published','2025-11-21',1,'2025-11-21'),
(5603,335,551,27,32,59,'C',3,'published','2025-11-21',1,'2025-11-21'),
(5604,335,553,0,0,0,'F',0,'published','2025-11-21',1,'2025-11-21'),
(5605,334,558,27,35,62,'B',4,'published','2025-11-21',1,'2025-11-21'),
(5606,334,559,24,26,50,'C',3,'published','2025-11-21',1,'2025-11-21'),
(5607,336,538,0,0,0,'F',0,'published','2025-11-21',1,'2025-11-21'),
(5608,336,543,16,44,60,'B',4,'published','2025-11-21',1,'2025-11-21'),
(5609,336,541,24,46,70,'A',5,'published','2025-11-21',1,'2025-11-21'),
(5610,336,539,25,25,50,'C',3,'published','2025-11-21',1,'2025-11-21'),
(5611,336,540,26,30,56,'C',3,'published','2025-11-21',1,'2025-11-21'),
(5612,336,542,28,39,67,'B',4,'published','2025-11-21',1,'2025-11-21'),
(5613,336,545,25,32,57,'C',3,'published','2025-11-21',1,'2025-11-21'),
(5614,336,544,20,33,53,'C',3,'published','2025-11-21',1,'2025-11-21'),
(5615,338,539,26,52,78,'A',5,'published','2025-11-21',1,'2025-11-21'),
(5616,338,545,25,35,60,'B',4,'published','2025-11-21',1,'2025-11-21'),
(5617,338,540,27,43,70,'A',5,'published','2025-11-21',1,'2025-11-21'),
(5618,338,544,16,35,51,'C',3,'published','2025-11-21',1,'2025-11-21'),
(5619,338,538,0,0,0,'F',0,'published','2025-11-21',1,'2025-11-21'),
(5620,338,542,28,37,65,'B',4,'published','2025-11-21',1,'2025-11-21'),
(5621,338,543,18,40,58,'C',3,'published','2025-11-21',1,'2025-11-21'),
(5622,338,541,27,62,89,'A',5,'published','2025-11-21',1,'2025-11-21'),
(5623,339,560,25,45,70,'A',5,'published','2025-11-21',1,'2025-11-21'),
(5624,339,561,12,40,52,'C',3,'published','2025-11-21',1,'2025-11-21'),
(5625,339,562,15,25,40,'E',1,'published','2025-11-21',1,'2025-11-21'),
(5626,339,563,28,41,69,'B',4,'published','2025-11-21',1,'2025-11-21'),
(5627,339,564,25,28,53,'C',3,'published','2025-11-21',1,'2025-11-21'),
(5628,339,565,27,54,81,'A',5,'published','2025-11-21',1,'2025-11-21'),
(5629,339,566,14,26,40,'E',1,'published','2025-11-21',1,'2025-11-21'),
(5630,339,567,26,20,46,'D',2,'published','2025-11-21',1,'2025-11-21'),
(5631,339,568,20,58,78,'A',5,'published','2025-11-21',1,'2025-11-21'),
(5632,339,569,17,33,50,'C',3,'published','2025-11-21',1,'2025-11-21'),
(5633,339,570,28,29,57,'C',3,'published','2025-11-21',1,'2025-11-21'),
(5634,339,571,0,0,0,'F',0,'published','2025-11-21',1,'2025-11-21'),
(5635,340,567,22,25,47,'D',2,'published','2025-11-21',1,'2025-11-21'),
(5636,340,571,0,0,0,'F',0,'published','2025-11-21',1,'2025-11-21'),
(5637,340,564,25,35,60,'B',4,'published','2025-11-21',1,'2025-11-21'),
(5638,340,563,27,25,52,'C',3,'published','2025-11-21',1,'2025-11-21'),
(5639,340,572,25,40,65,'B',4,'published','2025-11-21',1,'2025-11-21'),
(5640,340,565,20,48,68,'B',4,'published','2025-11-21',1,'2025-11-21'),
(5641,340,562,15,32,47,'D',2,'published','2025-11-21',1,'2025-11-21'),
(5642,340,560,23,33,56,'C',3,'published','2025-11-21',1,'2025-11-21'),
(5643,339,572,20,45,65,'B',4,'published','2025-11-21',1,'2025-11-21'),
(5644,340,566,14,45,59,'C',3,'published','2025-11-21',1,'2025-11-21'),
(5645,340,570,27,25,52,'C',3,'published','2025-11-21',1,'2025-11-21'),
(5646,340,561,14,30,44,'E',1,'published','2025-11-21',1,'2025-11-21'),
(5647,340,569,11,27,38,'F',0,'published','2025-11-21',1,'2025-11-21'),
(5648,337,571,0,0,0,'F',0,'published','2025-11-21',1,'2025-11-21'),
(5649,337,567,25,21,46,'D',2,'published','2025-11-21',1,'2025-11-21'),
(5650,340,568,20,39,59,'C',3,'published','2025-11-21',1,'2025-11-21'),
(5651,337,564,25,25,50,'C',3,'published','2025-11-21',1,'2025-11-21'),
(5652,337,568,20,35,55,'C',3,'published','2025-11-21',1,'2025-11-21'),
(5653,337,563,28,34,62,'B',4,'published','2025-11-21',1,'2025-11-21'),
(5654,337,566,12,20,32,'F',0,'published','2025-11-21',1,'2025-11-21'),
(5655,337,572,20,60,80,'A',5,'published','2025-11-21',1,'2025-11-21'),
(5656,337,569,20,60,80,'A',5,'published','2025-11-21',1,'2025-11-21'),
(5657,337,565,24,41,65,'B',4,'published','2025-11-21',1,'2025-11-21'),
(5658,337,570,28,26,54,'C',3,'published','2025-11-21',1,'2025-11-21'),
(5659,337,562,15,25,40,'E',1,'published','2025-11-21',1,'2025-11-21'),
(5660,337,561,14,30,44,'E',1,'published','2025-11-21',1,'2025-11-21'),
(5661,337,560,27,33,60,'B',4,'published','2025-11-21',1,'2025-11-21'),
(5662,139,55,0,0,0,'F',0,'published','2025-11-21',1,'2025-11-21'),
(5663,139,54,0,0,0,'F',0,'published','2025-11-21',1,'2025-11-21'),
(5664,139,56,0,0,0,'F',0,'published','2025-11-21',1,'2025-11-21'),
(5665,139,57,0,0,0,'F',0,'published','2025-11-21',1,'2025-11-21'),
(5666,139,58,0,0,0,'F',0,'published','2025-11-21',1,'2025-11-21'),
(5667,139,59,0,0,0,'F',0,'published','2025-11-21',1,'2025-11-21'),
(5668,139,60,25,20,45,'D',2,'published','2025-11-21',1,'2025-11-21'),
(5669,139,61,0,0,0,'F',0,'published','2025-11-21',1,'2025-11-21'),
(5670,139,62,0,0,0,'F',0,'published','2025-11-21',1,'2025-11-21'),
(5671,342,571,0,0,0,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5672,342,564,25,12,37,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5673,342,567,24,52,76,'A',5,'published','2025-11-24',1,'2025-11-24'),
(5674,342,568,26,43,69,'B',4,'published','2025-11-24',1,'2025-11-24'),
(5675,342,563,28,38,66,'B',4,'published','2025-11-24',1,'2025-11-24'),
(5676,342,566,10,42,52,'C',3,'published','2025-11-24',1,'2025-11-24'),
(5677,342,572,20,22,42,'E',1,'published','2025-11-24',1,'2025-11-24'),
(5678,342,569,18,50,68,'B',4,'published','2025-11-24',1,'2025-11-24'),
(5679,342,565,20,48,68,'B',4,'published','2025-11-24',1,'2025-11-24'),
(5680,342,570,26,36,62,'B',4,'published','2025-11-24',1,'2025-11-24'),
(5681,342,562,0,0,0,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5682,342,561,14,48,62,'B',4,'published','2025-11-24',1,'2025-11-24'),
(5683,342,560,27,39,66,'B',4,'published','2025-11-24',1,'2025-11-24'),
(5684,343,571,0,0,0,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5685,343,564,25,25,50,'C',3,'published','2025-11-24',1,'2025-11-24'),
(5686,343,563,27,37,64,'B',4,'published','2025-11-24',1,'2025-11-24'),
(5687,343,572,20,57,77,'A',5,'published','2025-11-24',1,'2025-11-24'),
(5688,343,565,23,55,78,'A',5,'published','2025-11-24',1,'2025-11-24'),
(5689,343,562,15,45,60,'B',4,'published','2025-11-24',1,'2025-11-24'),
(5690,343,561,14,31,45,'D',2,'published','2025-11-24',1,'2025-11-24'),
(5691,343,560,28,22,50,'C',3,'published','2025-11-24',1,'2025-11-24'),
(5692,343,570,28,32,60,'B',4,'published','2025-11-24',1,'2025-11-24'),
(5693,343,569,17,46,63,'B',4,'published','2025-11-24',1,'2025-11-24'),
(5694,343,566,12,29,41,'E',1,'published','2025-11-24',1,'2025-11-24'),
(5695,343,568,20,54,74,'A',5,'published','2025-11-24',1,'2025-11-24'),
(5696,343,567,22,22,44,'E',1,'published','2025-11-24',1,'2025-11-24'),
(5697,344,571,0,0,0,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5698,344,567,22,13,35,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5699,344,564,25,36,61,'B',4,'published','2025-11-24',1,'2025-11-24'),
(5700,344,568,22,56,78,'A',5,'published','2025-11-24',1,'2025-11-24'),
(5701,344,566,14,35,49,'D',2,'published','2025-11-24',1,'2025-11-24'),
(5702,344,572,20,45,65,'B',4,'published','2025-11-24',1,'2025-11-24'),
(5703,344,569,16,34,50,'C',3,'published','2025-11-24',1,'2025-11-24'),
(5704,344,570,27,30,57,'C',3,'published','2025-11-24',1,'2025-11-24'),
(5705,344,562,15,44,59,'C',3,'published','2025-11-24',1,'2025-11-24'),
(5706,344,561,14,41,55,'C',3,'published','2025-11-24',1,'2025-11-24'),
(5707,344,563,26,35,61,'B',4,'published','2025-11-24',1,'2025-11-24'),
(5708,344,560,30,37,67,'B',4,'published','2025-11-24',1,'2025-11-24'),
(5709,344,565,22,29,51,'C',3,'published','2025-11-24',1,'2025-11-24'),
(5710,341,564,25,12,37,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5711,341,571,0,0,0,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5712,341,567,23,16,39,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5713,341,568,0,0,0,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5714,341,563,27,29,56,'C',3,'published','2025-11-24',1,'2025-11-24'),
(5715,341,566,13,30,43,'E',1,'published','2025-11-24',1,'2025-11-24'),
(5716,341,572,8,18,26,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5717,341,569,13,22,35,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5718,341,565,20,26,46,'D',2,'published','2025-11-24',1,'2025-11-24'),
(5719,341,570,26,25,51,'C',3,'published','2025-11-24',1,'2025-11-24'),
(5720,341,562,15,25,40,'E',1,'published','2025-11-24',1,'2025-11-24'),
(5721,341,561,17,22,39,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5722,341,560,27,18,45,'D',2,'published','2025-11-24',1,'2025-11-24'),
(5723,345,560,28,38,66,'B',4,'published','2025-11-24',1,'2025-11-24'),
(5724,345,561,16,40,56,'C',3,'published','2025-11-24',1,'2025-11-24'),
(5725,345,570,28,32,60,'B',4,'published','2025-11-24',1,'2025-11-24'),
(5726,345,562,0,0,0,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5727,345,569,18,46,64,'B',4,'published','2025-11-24',1,'2025-11-24'),
(5728,345,572,15,45,60,'B',4,'published','2025-11-24',1,'2025-11-24'),
(5729,345,566,16,32,48,'D',2,'published','2025-11-24',1,'2025-11-24'),
(5730,345,563,27,25,52,'C',3,'published','2025-11-24',1,'2025-11-24'),
(5731,345,568,20,45,65,'B',4,'published','2025-11-24',1,'2025-11-24'),
(5732,345,564,28,22,50,'C',3,'published','2025-11-24',1,'2025-11-24'),
(5733,345,567,24,33,57,'C',3,'published','2025-11-24',1,'2025-11-24'),
(5734,345,571,0,0,0,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5735,345,565,24,52,76,'A',5,'published','2025-11-24',1,'2025-11-24'),
(5736,346,545,25,36,61,'B',4,'published','2025-11-24',1,'2025-11-24'),
(5737,346,544,21,29,50,'C',3,'published','2025-11-24',1,'2025-11-24'),
(5738,346,543,15,21,36,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5739,346,542,28,8,36,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5740,346,539,20,30,50,'C',3,'published','2025-11-24',1,'2025-11-24'),
(5741,346,541,26,53,79,'A',5,'published','2025-11-24',1,'2025-11-24'),
(5742,346,540,26,28,54,'C',3,'published','2025-11-24',1,'2025-11-24'),
(5743,346,538,0,0,0,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5744,348,571,0,0,0,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5745,348,564,25,35,60,'B',4,'published','2025-11-24',1,'2025-11-24'),
(5746,348,567,24,15,39,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5747,348,568,25,0,25,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5748,348,566,12,15,27,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5749,348,563,28,25,53,'C',3,'published','2025-11-24',1,'2025-11-24'),
(5750,348,569,23,27,50,'C',3,'published','2025-11-24',1,'2025-11-24');
INSERT INTO `results` (`id`,`student_id`,`course_offering_id`,`continuous_assessment`,`exam_score`,`total_score`,`letter_grade`,`grade_point`,`status`,`published_at`,`updated_by`,`updated_at`) VALUES
(5751,348,570,28,31,59,'C',3,'published','2025-11-24',1,'2025-11-24'),
(5752,348,562,0,0,0,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5753,348,561,14,20,34,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5754,348,560,23,28,51,'C',3,'published','2025-11-24',1,'2025-11-24'),
(5755,348,565,23,40,63,'B',4,'published','2025-11-24',1,'2025-11-24'),
(5756,348,572,20,40,60,'B',4,'published','2025-11-24',1,'2025-11-24'),
(5757,347,571,0,0,0,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5758,347,567,24,41,65,'B',4,'published','2025-11-24',1,'2025-11-24'),
(5759,347,564,25,31,56,'C',3,'published','2025-11-24',1,'2025-11-24'),
(5760,347,568,23,36,59,'C',3,'published','2025-11-24',1,'2025-11-24'),
(5761,347,563,28,38,66,'B',4,'published','2025-11-24',1,'2025-11-24'),
(5762,347,566,12,45,57,'C',3,'published','2025-11-24',1,'2025-11-24'),
(5763,347,572,20,60,80,'A',5,'published','2025-11-24',1,'2025-11-24'),
(5764,347,560,25,25,50,'C',3,'published','2025-11-24',1,'2025-11-24'),
(5765,347,561,15,23,38,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5766,347,562,0,0,0,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5767,347,570,28,26,54,'C',3,'published','2025-11-24',1,'2025-11-24'),
(5768,347,565,27,33,60,'B',4,'published','2025-11-24',1,'2025-11-24'),
(5769,347,569,24,46,70,'A',5,'published','2025-11-24',1,'2025-11-24'),
(5770,112,29,0,0,0,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5771,112,30,0,0,0,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5772,112,32,0,0,0,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5773,112,31,0,0,0,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5774,112,33,0,0,0,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5775,112,34,0,0,0,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5776,112,35,0,0,0,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5777,112,36,0,0,0,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5778,112,37,0,0,0,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5779,112,186,0,0,0,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5780,112,187,0,0,0,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5781,112,188,0,0,0,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5782,112,189,0,0,0,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5783,112,190,0,0,0,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5784,112,192,0,0,0,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5785,112,278,0,0,0,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5786,112,279,0,0,0,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5787,112,191,0,0,0,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5788,112,45,0,0,0,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5789,112,44,0,0,0,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5790,112,43,0,0,0,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5791,112,42,0,0,0,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5792,112,41,0,0,0,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5793,112,40,0,0,0,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5794,112,39,0,0,0,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5795,112,38,0,0,0,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5796,112,122,0,0,0,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5797,112,123,0,0,0,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5798,112,124,0,0,0,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5799,112,128,0,0,0,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5800,112,125,0,0,0,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5801,112,126,0,0,0,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5802,112,129,0,0,0,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5803,112,130,0,0,0,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5804,112,277,0,0,0,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5805,112,573,15,25,40,'E',1,'published','2025-11-24',1,'2025-11-24'),
(5806,112,445,17,41,58,'C',3,'published','2025-11-24',1,'2025-11-24'),
(5807,112,444,0,0,0,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5808,112,446,20,45,65,'B',4,'published','2025-11-24',1,'2025-11-24'),
(5809,112,443,0,0,0,'F',0,'published','2025-11-24',1,'2025-11-24'),
(5810,112,442,25,30,55,'C',3,'published','2025-11-24',1,'2025-11-24'),
(5811,112,441,25,35,60,'B',4,'published','2025-11-24',1,'2025-11-24'),
(5812,243,465,20,20,40,'E',1,'published','2025-11-25',1,'2025-11-25'),
(5813,88,465,20,38,58,'C',3,'published','2025-11-25',1,'2025-11-25'),
(5814,349,560,28,23,51,'C',3,'published','2025-11-25',1,'2025-11-25'),
(5815,349,561,16,45,61,'B',4,'published','2025-11-25',1,'2025-11-25'),
(5816,349,562,0,0,0,'F',0,'published','2025-11-25',1,'2025-11-25'),
(5817,349,570,27,26,53,'C',3,'published','2025-11-25',1,'2025-11-25'),
(5818,349,569,14,52,66,'B',4,'published','2025-11-25',1,'2025-11-25'),
(5819,349,572,20,42,62,'B',4,'published','2025-11-25',1,'2025-11-25'),
(5820,349,566,14,24,38,'F',0,'published','2025-11-25',1,'2025-11-25'),
(5821,349,563,26,29,55,'C',3,'published','2025-11-25',1,'2025-11-25'),
(5822,349,568,20,54,74,'A',5,'published','2025-11-25',1,'2025-11-25'),
(5823,349,564,25,35,60,'B',4,'published','2025-11-25',1,'2025-11-25'),
(5824,349,567,23,26,49,'D',2,'published','2025-11-25',1,'2025-11-25'),
(5825,349,571,0,0,0,'F',0,'published','2025-11-25',1,'2025-11-25'),
(5826,349,565,25,47,72,'A',5,'published','2025-11-25',1,'2025-11-25'),
(5827,111,345,29,21,50,'C',3,'published','2025-11-25',1,'2025-11-25'),
(5828,111,344,22,29,51,'C',3,'published','2025-11-25',1,'2025-11-25'),
(5829,4,344,22,26,48,'D',2,'published','2025-11-25',1,'2025-11-25'),
(5830,4,345,0,0,0,'F',0,'published','2025-11-25',1,'2025-11-25'),
(5831,111,47,0,0,0,'F',0,'published','2025-11-25',1,'2025-11-25'),
(5832,350,560,24,26,50,'C',3,'published','2025-11-26',1,'2025-11-26'),
(5833,350,561,17,33,50,'C',3,'published','2025-11-26',1,'2025-11-26'),
(5834,350,562,0,0,0,'F',0,'published','2025-11-26',1,'2025-11-26'),
(5835,350,570,27,44,71,'A',5,'published','2025-11-26',1,'2025-11-26'),
(5836,350,571,0,0,0,'F',0,'published','2025-11-26',1,'2025-11-26'),
(5837,350,567,0,0,0,'F',0,'published','2025-11-26',1,'2025-11-26'),
(5838,350,564,25,30,55,'C',3,'published','2025-11-26',1,'2025-11-26'),
(5839,350,568,20,41,61,'B',4,'published','2025-11-26',1,'2025-11-26'),
(5840,350,563,28,38,66,'B',4,'published','2025-11-26',1,'2025-11-26'),
(5841,350,566,16,26,42,'E',1,'published','2025-11-26',1,'2025-11-26'),
(5842,350,572,20,31,51,'C',3,'published','2025-11-26',1,'2025-11-26'),
(5843,350,569,13,46,59,'C',3,'published','2025-11-26',1,'2025-11-26'),
(5844,350,565,24,40,64,'B',4,'published','2025-11-26',1,'2025-11-26'),
(5845,351,571,0,0,0,'F',0,'published','2025-11-26',1,'2025-11-26'),
(5846,351,567,24,32,56,'C',3,'published','2025-11-26',1,'2025-11-26'),
(5847,351,564,25,27,52,'C',3,'published','2025-11-26',1,'2025-11-26'),
(5848,351,568,23,39,62,'B',4,'published','2025-11-26',1,'2025-11-26'),
(5849,351,563,28,34,62,'B',4,'published','2025-11-26',1,'2025-11-26'),
(5850,351,566,14,25,39,'F',0,'published','2025-11-26',1,'2025-11-26'),
(5851,351,572,10,45,55,'C',3,'published','2025-11-26',1,'2025-11-26'),
(5852,351,569,15,53,68,'B',4,'published','2025-11-26',1,'2025-11-26'),
(5853,351,565,22,42,64,'B',4,'published','2025-11-26',1,'2025-11-26'),
(5854,351,570,27,29,56,'C',3,'published','2025-11-26',1,'2025-11-26'),
(5855,351,562,15,35,50,'C',3,'published','2025-11-26',1,'2025-11-26'),
(5856,351,561,12,40,52,'C',3,'published','2025-11-26',1,'2025-11-26'),
(5857,351,560,30,22,52,'C',3,'published','2025-11-26',1,'2025-11-26'),
(5858,352,571,0,0,0,'F',0,'published','2025-11-26',1,'2025-11-26'),
(5859,352,567,24,25,49,'D',2,'published','2025-11-26',1,'2025-11-26'),
(5860,352,564,28,36,64,'B',4,'published','2025-11-26',1,'2025-11-26'),
(5861,352,568,25,33,58,'C',3,'published','2025-11-26',1,'2025-11-26'),
(5862,352,563,28,35,63,'B',4,'published','2025-11-26',1,'2025-11-26'),
(5863,352,566,12,42,54,'C',3,'published','2025-11-26',1,'2025-11-26'),
(5864,352,572,15,38,53,'C',3,'published','2025-11-26',1,'2025-11-26'),
(5865,352,569,25,55,80,'A',5,'published','2025-11-26',1,'2025-11-26'),
(5866,352,565,22,43,65,'B',4,'published','2025-11-26',1,'2025-11-26'),
(5867,352,570,27,29,56,'C',3,'published','2025-11-26',1,'2025-11-26'),
(5868,352,562,0,0,0,'F',0,'published','2025-11-26',1,'2025-11-26'),
(5869,352,560,28,42,70,'A',5,'published','2025-11-26',1,'2025-11-26'),
(5870,352,561,15,50,65,'B',4,'published','2025-11-26',1,'2025-11-26'),
(5871,353,574,20,50,70,'A',5,'published','2025-11-26',1,'2025-11-26'),
(5872,353,575,26,48,74,'A',5,'published','2025-11-26',1,'2025-11-26'),
(5873,353,576,24,36,60,'B',4,'published','2025-11-26',1,'2025-11-26'),
(5874,353,577,25,42,67,'B',4,'published','2025-11-26',1,'2025-11-26'),
(5875,353,578,20,53,73,'A',5,'published','2025-11-26',1,'2025-11-26'),
(5876,353,579,20,50,70,'A',5,'published','2025-11-26',1,'2025-11-26'),
(5877,353,580,26,43,69,'B',4,'published','2025-11-26',1,'2025-11-26'),
(5878,353,581,27,47,74,'A',5,'published','2025-11-26',1,'2025-11-26'),
(5879,353,582,0,0,0,'F',0,'published','2025-11-26',1,'2025-11-26'),
(5880,354,567,20,20,40,'E',1,'published','2025-11-26',1,'2025-11-26'),
(5881,354,564,25,30,55,'C',3,'published','2025-11-26',1,'2025-11-26'),
(5882,354,568,21,47,68,'B',4,'published','2025-11-26',1,'2025-11-26'),
(5883,354,563,27,35,62,'B',4,'published','2025-11-26',1,'2025-11-26'),
(5884,354,566,10,34,44,'E',1,'published','2025-11-26',1,'2025-11-26'),
(5885,354,572,20,40,60,'B',4,'published','2025-11-26',1,'2025-11-26'),
(5886,354,569,9,41,50,'C',3,'published','2025-11-26',1,'2025-11-26'),
(5887,354,565,21,53,74,'A',5,'published','2025-11-26',1,'2025-11-26'),
(5888,354,570,28,17,45,'D',2,'published','2025-11-26',1,'2025-11-26'),
(5889,354,562,15,25,40,'E',1,'published','2025-11-26',1,'2025-11-26'),
(5890,354,561,12,43,55,'C',3,'published','2025-11-26',1,'2025-11-26'),
(5891,354,560,15,36,51,'C',3,'published','2025-11-26',1,'2025-11-26'),
(5892,354,571,0,0,0,'F',0,'published','2025-11-26',1,'2025-11-26'),
(5893,116,583,0,0,0,'F',0,'published','2025-11-26',1,'2025-11-26'),
(5894,116,1,0,0,0,'F',0,'published','2025-11-26',1,'2025-11-26'),
(5895,116,584,20,34,54,'C',3,'published','2025-11-26',1,'2025-11-26'),
(5896,116,585,0,0,0,'F',0,'published','2025-11-26',1,'2025-11-26'),
(5897,116,586,0,0,0,'F',0,'published','2025-11-26',1,'2025-11-26'),
(5898,116,587,0,0,0,'F',0,'published','2025-11-26',1,'2025-11-26'),
(5899,116,588,0,0,0,'F',0,'published','2025-11-26',1,'2025-11-26'),
(5900,116,589,28,34,62,'B',4,'published','2025-11-26',1,'2025-11-26'),
(5901,116,590,25,45,70,'A',5,'published','2025-11-26',1,'2025-11-26'),
(5902,116,591,0,0,0,'F',0,'published','2025-11-26',1,'2025-11-26'),
(5903,116,592,0,0,0,'F',0,'published','2025-11-26',1,'2025-11-26'),
(5904,116,593,0,0,0,'F',0,'published','2025-11-26',1,'2025-11-26'),
(5905,90,436,0,0,0,'F',0,'published','2025-11-26',1,'2025-11-26'),
(5906,355,571,0,0,0,'F',0,'published','2025-11-27',1,'2025-11-27'),
(5907,355,567,20,16,36,'F',0,'published','2025-11-27',1,'2025-11-27'),
(5908,355,564,28,25,53,'C',3,'published','2025-11-27',1,'2025-11-27'),
(5909,355,568,16,16,32,'F',0,'published','2025-11-27',1,'2025-11-27'),
(5910,355,563,27,38,65,'B',4,'published','2025-11-27',1,'2025-11-27'),
(5911,355,566,12,21,33,'F',0,'published','2025-11-27',1,'2025-11-27'),
(5912,355,572,8,26,34,'F',0,'published','2025-11-27',1,'2025-11-27'),
(5913,355,569,20,38,58,'C',3,'published','2025-11-27',1,'2025-11-27'),
(5914,355,565,21,21,42,'E',1,'published','2025-11-27',1,'2025-11-27'),
(5915,355,570,28,32,60,'B',4,'published','2025-11-27',1,'2025-11-27'),
(5916,355,562,0,0,0,'F',0,'published','2025-11-27',1,'2025-11-27'),
(5917,355,561,13,31,44,'E',1,'published','2025-11-27',1,'2025-11-27'),
(5918,355,560,29,31,60,'B',4,'published','2025-11-27',1,'2025-11-27'),
(5919,356,571,0,0,0,'F',0,'published','2025-11-27',1,'2025-11-27'),
(5920,357,567,24,2,26,'F',0,'published','2025-11-27',1,'2025-11-27'),
(5921,357,564,25,12,37,'F',0,'published','2025-11-27',1,'2025-11-27'),
(5922,357,568,18,10,28,'F',0,'published','2025-11-27',1,'2025-11-27'),
(5923,356,567,24,20,44,'E',1,'published','2025-11-27',1,'2025-11-27'),
(5924,357,563,26,3,29,'F',0,'published','2025-11-27',1,'2025-11-27'),
(5925,356,564,28,22,50,'C',3,'published','2025-11-27',1,'2025-11-27'),
(5926,357,566,12,12,24,'F',0,'published','2025-11-27',1,'2025-11-27'),
(5927,356,568,24,42,66,'B',4,'published','2025-11-27',1,'2025-11-27'),
(5928,357,572,20,30,50,'C',3,'published','2025-11-27',1,'2025-11-27'),
(5929,356,563,26,25,51,'C',3,'published','2025-11-27',1,'2025-11-27'),
(5930,357,569,19,31,50,'C',3,'published','2025-11-27',1,'2025-11-27'),
(5931,356,566,12,27,39,'F',0,'published','2025-11-27',1,'2025-11-27'),
(5932,357,565,22,14,36,'F',0,'published','2025-11-27',1,'2025-11-27'),
(5933,356,572,20,45,65,'B',4,'published','2025-11-27',1,'2025-11-27'),
(5934,357,570,26,14,40,'E',1,'published','2025-11-27',1,'2025-11-27'),
(5935,356,569,17,35,52,'C',3,'published','2025-11-27',1,'2025-11-27'),
(5936,357,562,0,0,0,'F',0,'published','2025-11-27',1,'2025-11-27'),
(5937,356,565,24,38,62,'B',4,'published','2025-11-27',1,'2025-11-27'),
(5938,357,561,12,12,24,'F',0,'published','2025-11-27',1,'2025-11-27'),
(5939,356,570,26,27,53,'C',3,'published','2025-11-27',1,'2025-11-27'),
(5940,356,562,15,25,40,'E',1,'published','2025-11-27',1,'2025-11-27'),
(5941,357,560,17,12,29,'F',0,'published','2025-11-27',1,'2025-11-27'),
(5942,356,561,16,33,49,'D',2,'published','2025-11-27',1,'2025-11-27'),
(5943,356,560,28,23,51,'C',3,'published','2025-11-27',1,'2025-11-27'),
(5944,357,571,0,0,0,'F',0,'published','2025-11-27',1,'2025-11-27'),
(5945,359,546,25,48,73,'A',5,'published','2025-11-27',1,'2025-11-27'),
(5946,359,547,0,0,0,'F',0,'published','2025-11-27',1,'2025-11-27'),
(5947,359,548,20,35,55,'C',3,'published','2025-11-27',1,'2025-11-27'),
(5948,359,549,0,0,0,'F',0,'published','2025-11-27',1,'2025-11-27'),
(5949,359,550,21,50,71,'A',5,'published','2025-11-27',1,'2025-11-27'),
(5950,359,551,28,37,65,'B',4,'published','2025-11-27',1,'2025-11-27'),
(5951,359,552,0,0,0,'F',0,'published','2025-11-27',1,'2025-11-27'),
(5952,359,553,0,0,0,'F',0,'published','2025-11-27',1,'2025-11-27'),
(5953,359,554,0,0,0,'F',0,'published','2025-11-27',1,'2025-11-27'),
(5954,359,555,25,26,51,'C',3,'published','2025-11-27',1,'2025-11-27'),
(5955,359,556,29,31,60,'B',4,'published','2025-11-27',1,'2025-11-27'),
(5956,359,557,0,0,0,'F',0,'published','2025-11-27',1,'2025-11-27'),
(5957,359,559,22,55,77,'A',5,'published','2025-11-27',1,'2025-11-27'),
(5958,359,558,27,28,55,'C',3,'published','2025-11-27',1,'2025-11-27'),
(5959,27,441,25,31,56,'C',3,'published','2025-11-27',1,'2025-11-27'),
(5960,27,446,20,45,65,'B',4,'published','2025-11-27',1,'2025-11-27'),
(5961,27,442,23,40,63,'B',4,'published','2025-11-27',1,'2025-11-27'),
(5962,27,443,0,0,0,'F',0,'published','2025-11-27',1,'2025-11-27'),
(5963,27,445,17,43,60,'B',4,'published','2025-11-27',1,'2025-11-27'),
(5964,27,573,20,25,45,'D',2,'published','2025-11-27',1,'2025-11-27'),
(5965,27,444,0,0,0,'F',0,'published','2025-11-27',1,'2025-11-27'),
(5966,360,559,13,10,23,'F',0,'published','2025-11-27',1,'2025-11-27'),
(5967,360,558,26,25,51,'C',3,'published','2025-11-27',1,'2025-11-27'),
(5968,360,557,0,0,0,'F',0,'published','2025-11-27',1,'2025-11-27'),
(5969,360,556,21,14,35,'F',0,'published','2025-11-27',1,'2025-11-27'),
(5970,360,555,25,10,35,'F',0,'published','2025-11-27',1,'2025-11-27'),
(5971,360,554,0,0,0,'F',0,'published','2025-11-27',1,'2025-11-27'),
(5972,360,553,0,0,0,'F',0,'published','2025-11-27',1,'2025-11-27'),
(5973,360,552,0,0,0,'F',0,'published','2025-11-27',1,'2025-11-27'),
(5974,360,551,27,9,36,'F',0,'published','2025-11-27',1,'2025-11-27'),
(5975,360,550,17,40,57,'C',3,'published','2025-11-27',1,'2025-11-27'),
(5976,360,549,0,0,0,'F',0,'published','2025-11-27',1,'2025-11-27'),
(5977,360,548,25,20,45,'D',2,'published','2025-11-27',1,'2025-11-27'),
(5978,360,547,0,0,0,'F',0,'published','2025-11-27',1,'2025-11-27'),
(5979,360,546,25,25,50,'C',3,'published','2025-11-27',1,'2025-11-27'),
(5980,358,571,0,0,0,'F',0,'published','2025-11-27',1,'2025-11-27'),
(5981,358,567,0,0,0,'F',0,'published','2025-11-27',1,'2025-11-27'),
(5982,358,564,25,10,35,'F',0,'published','2025-11-27',1,'2025-11-27'),
(5983,358,568,20,22,42,'E',1,'published','2025-11-27',1,'2025-11-27'),
(5984,358,563,26,31,57,'C',3,'published','2025-11-27',1,'2025-11-27'),
(5985,358,566,14,23,37,'F',0,'published','2025-11-27',1,'2025-11-27'),
(5986,358,572,15,19,34,'F',0,'published','2025-11-27',1,'2025-11-27'),
(5987,358,569,16,40,56,'C',3,'published','2025-11-27',1,'2025-11-27'),
(5988,358,560,30,20,50,'C',3,'published','2025-11-27',1,'2025-11-27'),
(5989,358,561,12,40,52,'C',3,'published','2025-11-27',1,'2025-11-27'),
(5990,358,562,0,0,0,'F',0,'published','2025-11-27',1,'2025-11-27'),
(5991,358,570,26,28,54,'C',3,'published','2025-11-27',1,'2025-11-27'),
(5992,358,565,21,46,67,'B',4,'published','2025-11-27',1,'2025-11-27'),
(5993,361,594,25,45,70,'A',5,'published','2025-11-27',1,'2025-11-27'),
(5994,361,595,0,0,0,'F',0,'published','2025-11-27',1,'2025-11-27'),
(5995,361,596,23,30,53,'C',3,'published','2025-11-27',1,'2025-11-27'),
(5996,361,597,10,21,31,'F',0,'published','2025-11-27',1,'2025-11-27'),
(5997,361,598,28,26,54,'C',3,'published','2025-11-27',1,'2025-11-27'),
(5998,361,599,0,0,0,'F',0,'published','2025-11-27',1,'2025-11-27'),
(5999,361,600,28,32,60,'B',4,'published','2025-11-27',1,'2025-11-27'),
(6000,361,601,25,37,62,'B',4,'published','2025-11-27',1,'2025-11-27');
INSERT INTO `results` (`id`,`student_id`,`course_offering_id`,`continuous_assessment`,`exam_score`,`total_score`,`letter_grade`,`grade_point`,`status`,`published_at`,`updated_by`,`updated_at`) VALUES
(6001,361,602,27,30,57,'C',3,'published','2025-11-27',1,'2025-11-27'),
(6002,361,603,28,45,73,'A',5,'published','2025-11-27',1,'2025-11-27'),
(6003,363,538,0,0,0,'F',0,'published','2025-11-28',1,'2025-11-28'),
(6004,363,539,30,63,93,'A',5,'published','2025-11-28',1,'2025-11-28'),
(6005,363,540,27,54,81,'A',5,'published','2025-11-28',1,'2025-11-28'),
(6006,363,541,27,63,90,'A',5,'published','2025-11-28',1,'2025-11-28'),
(6007,363,542,28,52,80,'A',5,'published','2025-11-28',1,'2025-11-28'),
(6008,363,543,21,50,71,'A',5,'published','2025-11-28',1,'2025-11-28'),
(6009,363,544,14,41,55,'C',3,'published','2025-11-28',1,'2025-11-28'),
(6010,363,545,25,48,73,'A',5,'published','2025-11-28',1,'2025-11-28'),
(6011,362,567,22,21,43,'E',1,'published','2025-11-28',1,'2025-11-28'),
(6012,362,564,26,26,52,'C',3,'published','2025-11-28',1,'2025-11-28'),
(6013,362,568,22,38,60,'B',4,'published','2025-11-28',1,'2025-11-28'),
(6014,362,563,27,26,53,'C',3,'published','2025-11-28',1,'2025-11-28'),
(6015,362,562,15,25,40,'E',1,'published','2025-11-28',1,'2025-11-28'),
(6016,362,565,25,50,75,'A',5,'published','2025-11-28',1,'2025-11-28'),
(6017,362,560,27,33,60,'B',4,'published','2025-11-28',1,'2025-11-28'),
(6018,362,561,12,30,42,'E',1,'published','2025-11-28',1,'2025-11-28'),
(6019,362,570,28,30,58,'C',3,'published','2025-11-28',1,'2025-11-28'),
(6020,362,569,17,40,57,'C',3,'published','2025-11-28',1,'2025-11-28'),
(6021,362,572,10,40,50,'C',3,'published','2025-11-28',1,'2025-11-28'),
(6022,362,571,0,0,0,'F',0,'published','2025-11-28',1,'2025-11-28'),
(6023,362,566,14,28,42,'E',1,'published','2025-11-28',1,'2025-11-28'),
(6024,364,571,0,0,0,'F',0,'published','2025-11-28',1,'2025-11-28'),
(6025,364,564,25,30,55,'C',3,'published','2025-11-28',1,'2025-11-28'),
(6026,364,568,24,36,60,'B',4,'published','2025-11-28',1,'2025-11-28'),
(6027,364,566,12,25,37,'F',0,'published','2025-11-28',1,'2025-11-28'),
(6028,364,572,25,40,65,'B',4,'published','2025-11-28',1,'2025-11-28'),
(6029,364,569,19,40,59,'C',3,'published','2025-11-28',1,'2025-11-28'),
(6030,364,562,23,31,54,'C',3,'published','2025-11-28',1,'2025-11-28'),
(6031,364,570,27,28,55,'C',3,'published','2025-11-28',1,'2025-11-28'),
(6032,364,561,12,25,37,'F',0,'published','2025-11-28',1,'2025-11-28'),
(6033,364,565,20,31,51,'C',3,'published','2025-11-28',1,'2025-11-28'),
(6034,364,567,24,22,46,'D',2,'published','2025-11-28',1,'2025-11-28'),
(6035,364,560,26,20,46,'D',2,'published','2025-11-28',1,'2025-11-28'),
(6036,364,563,26,25,51,'C',3,'published','2025-11-28',1,'2025-11-28'),
(6037,365,571,0,0,0,'F',0,'published','2025-11-28',1,'2025-11-28'),
(6038,365,567,0,0,0,'F',0,'published','2025-11-28',1,'2025-11-28'),
(6039,365,564,0,0,0,'F',0,'published','2025-11-28',1,'2025-11-28'),
(6040,365,568,0,0,0,'F',0,'published','2025-11-28',1,'2025-11-28'),
(6041,365,563,0,0,0,'F',0,'published','2025-11-28',1,'2025-11-28'),
(6042,365,566,0,0,0,'F',0,'published','2025-11-28',1,'2025-11-28'),
(6043,365,572,0,0,0,'F',0,'published','2025-11-28',1,'2025-11-28'),
(6044,365,560,0,0,0,'F',0,'published','2025-11-28',1,'2025-11-28'),
(6045,365,561,0,0,0,'F',0,'published','2025-11-28',1,'2025-11-28'),
(6046,365,562,0,0,0,'F',0,'published','2025-11-28',1,'2025-11-28'),
(6047,365,570,0,0,0,'F',0,'published','2025-11-28',1,'2025-11-28'),
(6048,365,565,0,0,0,'F',0,'published','2025-11-28',1,'2025-11-28'),
(6049,365,569,0,0,0,'F',0,'published','2025-11-28',1,'2025-11-28'),
(6050,366,571,0,0,0,'F',0,'published','2025-11-28',1,'2025-11-28'),
(6051,366,567,25,7,32,'F',0,'published','2025-11-28',1,'2025-11-28'),
(6052,366,568,25,29,54,'C',3,'published','2025-11-28',1,'2025-11-28'),
(6053,366,566,12,15,27,'F',0,'published','2025-11-28',1,'2025-11-28'),
(6054,366,569,18,40,58,'C',3,'published','2025-11-28',1,'2025-11-28'),
(6055,366,565,20,24,44,'E',1,'published','2025-11-28',1,'2025-11-28'),
(6056,366,562,0,0,0,'F',0,'published','2025-11-28',1,'2025-11-28'),
(6057,366,570,28,17,45,'D',2,'published','2025-11-28',1,'2025-11-28'),
(6058,366,561,0,0,0,'F',0,'published','2025-11-28',1,'2025-11-28'),
(6059,366,564,25,10,35,'F',0,'published','2025-11-28',1,'2025-11-28'),
(6060,366,572,20,20,40,'E',1,'published','2025-11-28',1,'2025-11-28'),
(6061,366,560,22,19,41,'E',1,'published','2025-11-28',1,'2025-11-28'),
(6062,366,563,27,25,52,'C',3,'published','2025-11-28',1,'2025-11-28'),
(6063,182,57,0,0,0,'F',0,'published','2025-11-28',1,'2025-11-28'),
(6064,131,604,21,46,67,'B',4,'published','2025-12-01',1,'2025-12-01'),
(6065,131,605,18,50,68,'B',4,'published','2025-12-01',1,'2025-12-01'),
(6066,131,606,12,56,68,'B',4,'published','2025-12-01',1,'2025-12-01'),
(6067,131,607,27,57,84,'A',5,'published','2025-12-01',1,'2025-12-01'),
(6068,131,608,0,0,0,'F',0,'published','2025-12-01',1,'2025-12-01'),
(6069,131,609,0,0,0,'F',0,'published','2025-12-01',1,'2025-12-01'),
(6070,131,489,0,0,0,'F',0,'published','2025-12-01',1,'2025-12-01'),
(6071,131,610,21,50,71,'A',5,'published','2025-12-01',1,'2025-12-01'),
(6072,135,604,20,41,61,'B',4,'published','2025-12-01',1,'2025-12-01'),
(6073,135,605,19,52,71,'A',5,'published','2025-12-01',1,'2025-12-01'),
(6074,135,606,12,46,58,'C',3,'published','2025-12-01',1,'2025-12-01'),
(6075,135,607,21,37,58,'C',3,'published','2025-12-01',1,'2025-12-01'),
(6076,135,608,0,0,0,'F',0,'published','2025-12-01',1,'2025-12-01'),
(6077,135,609,0,0,0,'F',0,'published','2025-12-01',1,'2025-12-01'),
(6078,135,489,0,0,0,'F',0,'published','2025-12-01',1,'2025-12-01'),
(6079,135,610,18,53,71,'A',5,'published','2025-12-01',1,'2025-12-01'),
(6080,155,604,22,42,64,'B',4,'published','2025-12-01',1,'2025-12-01'),
(6081,155,605,23,56,79,'A',5,'published','2025-12-01',1,'2025-12-01'),
(6082,155,606,10,52,62,'B',4,'published','2025-12-01',1,'2025-12-01'),
(6083,155,607,20,55,75,'A',5,'published','2025-12-01',1,'2025-12-01'),
(6084,155,608,0,0,0,'F',0,'published','2025-12-01',1,'2025-12-01'),
(6085,155,609,0,0,0,'F',0,'published','2025-12-01',1,'2025-12-01'),
(6086,155,489,0,0,0,'F',0,'published','2025-12-01',1,'2025-12-01'),
(6087,155,610,19,53,72,'A',5,'published','2025-12-01',1,'2025-12-01'),
(6088,145,461,25,26,51,'C',3,'published','2025-12-01',1,'2025-12-01'),
(6089,145,462,25,38,63,'B',4,'published','2025-12-01',1,'2025-12-01'),
(6090,145,463,25,54,79,'A',5,'published','2025-12-01',1,'2025-12-01'),
(6091,145,464,0,0,0,'F',0,'published','2025-12-01',1,'2025-12-01'),
(6092,145,466,15,32,47,'D',2,'published','2025-12-01',1,'2025-12-01'),
(6093,145,467,16,40,56,'C',3,'published','2025-12-01',1,'2025-12-01'),
(6094,145,468,0,0,0,'F',0,'published','2025-12-01',1,'2025-12-01'),
(6095,145,469,0,0,0,'F',0,'published','2025-12-01',1,'2025-12-01'),
(6096,182,604,21,29,50,'C',3,'published','2025-12-01',1,'2025-12-01'),
(6097,182,606,0,0,0,'F',0,'published','2025-12-01',1,'2025-12-01'),
(6098,182,607,15,35,50,'C',3,'published','2025-12-01',1,'2025-12-01'),
(6099,182,608,0,0,0,'F',0,'published','2025-12-01',1,'2025-12-01'),
(6100,182,489,0,0,0,'F',0,'published','2025-12-01',1,'2025-12-01'),
(6101,182,609,0,0,0,'F',0,'published','2025-12-01',1,'2025-12-01'),
(6102,182,610,16,37,53,'C',3,'published','2025-12-01',1,'2025-12-01'),
(6103,182,605,20,44,64,'B',4,'published','2025-12-01',1,'2025-12-01'),
(6104,115,604,20,40,60,'B',4,'published','2025-12-01',1,'2025-12-01'),
(6105,115,605,20,42,62,'B',4,'published','2025-12-01',1,'2025-12-01'),
(6106,115,606,0,0,0,'F',0,'published','2025-12-01',1,'2025-12-01'),
(6107,115,607,25,45,70,'A',5,'published','2025-12-01',1,'2025-12-01'),
(6108,115,608,0,0,0,'F',0,'published','2025-12-01',1,'2025-12-01'),
(6109,115,489,0,0,0,'F',0,'published','2025-12-01',1,'2025-12-01'),
(6110,115,609,0,0,0,'F',0,'published','2025-12-01',1,'2025-12-01'),
(6111,115,610,21,53,74,'A',5,'published','2025-12-01',1,'2025-12-01'),
(6112,118,604,21,45,66,'B',4,'published','2025-12-01',1,'2025-12-01'),
(6113,118,605,19,37,56,'C',3,'published','2025-12-01',1,'2025-12-01'),
(6114,118,483,0,0,0,'F',0,'published','2025-12-01',1,'2025-12-01'),
(6115,118,606,14,59,73,'A',5,'published','2025-12-01',1,'2025-12-01'),
(6116,118,607,23,31,54,'C',3,'published','2025-12-01',1,'2025-12-01'),
(6117,118,608,0,0,0,'F',0,'published','2025-12-01',1,'2025-12-01'),
(6118,118,487,0,0,0,'F',0,'published','2025-12-01',1,'2025-12-01'),
(6119,118,609,0,0,0,'F',0,'published','2025-12-01',1,'2025-12-01'),
(6120,118,489,0,0,0,'F',0,'published','2025-12-01',1,'2025-12-01'),
(6121,118,611,0,0,0,'F',0,'published','2025-12-01',1,'2025-12-01'),
(6122,118,610,20,55,75,'A',5,'published','2025-12-01',1,'2025-12-01'),
(6123,118,612,25,35,60,'B',4,'published','2025-12-01',1,'2025-12-01'),
(6124,154,604,23,47,70,'A',5,'published','2025-12-01',1,'2025-12-01'),
(6125,154,605,19,63,82,'A',5,'published','2025-12-01',1,'2025-12-01'),
(6126,154,606,12,51,63,'B',4,'published','2025-12-01',1,'2025-12-01'),
(6127,154,607,30,53,83,'A',5,'published','2025-12-01',1,'2025-12-01'),
(6128,154,608,0,0,0,'F',0,'published','2025-12-01',1,'2025-12-01'),
(6129,154,609,0,0,0,'F',0,'published','2025-12-01',1,'2025-12-01'),
(6130,154,610,22,56,78,'A',5,'published','2025-12-01',1,'2025-12-01'),
(6131,182,1,0,0,0,'F',0,'published','2025-12-01',1,'2025-12-01'),
(6132,367,604,21,39,60,'B',4,'published','2025-12-01',1,'2025-12-01'),
(6133,367,605,20,30,50,'C',3,'published','2025-12-01',1,'2025-12-01'),
(6134,367,608,0,0,0,'F',0,'published','2025-12-01',1,'2025-12-01'),
(6135,367,609,0,0,0,'F',0,'published','2025-12-01',1,'2025-12-01'),
(6136,367,610,25,41,66,'B',4,'published','2025-12-01',1,'2025-12-01'),
(6137,367,612,25,25,50,'C',3,'published','2025-12-01',1,'2025-12-01'),
(6138,367,607,18,43,61,'B',4,'published','2025-12-01',1,'2025-12-01'),
(6139,181,604,0,0,0,'F',0,'published','2025-12-01',1,'2025-12-01'),
(6140,181,605,24,25,49,'D',2,'published','2025-12-01',1,'2025-12-01'),
(6141,368,574,20,35,55,'C',3,'published','2025-12-01',1,'2025-12-01'),
(6142,368,575,26,43,69,'B',4,'published','2025-12-01',1,'2025-12-01'),
(6143,368,576,28,32,60,'B',4,'published','2025-12-01',1,'2025-12-01'),
(6144,368,577,24,30,54,'C',3,'published','2025-12-01',1,'2025-12-01'),
(6145,368,578,20,43,63,'B',4,'published','2025-12-01',1,'2025-12-01'),
(6146,368,580,26,35,61,'B',4,'published','2025-12-01',1,'2025-12-01'),
(6147,368,579,0,0,0,'F',0,'published','2025-12-01',1,'2025-12-01'),
(6148,368,581,28,30,58,'C',3,'published','2025-12-01',1,'2025-12-01'),
(6149,368,582,0,0,0,'F',0,'published','2025-12-01',1,'2025-12-01'),
(6150,181,606,14,21,35,'F',0,'published','2025-12-01',1,'2025-12-01'),
(6151,181,607,5,5,10,'F',0,'published','2025-12-01',1,'2025-12-01'),
(6152,181,608,0,0,0,'F',0,'published','2025-12-01',1,'2025-12-01'),
(6153,181,609,0,0,0,'F',0,'published','2025-12-01',1,'2025-12-01'),
(6154,181,489,0,0,0,'F',0,'published','2025-12-01',1,'2025-12-01'),
(6155,181,610,20,35,55,'C',3,'published','2025-12-01',1,'2025-12-01'),
(6156,369,582,0,0,0,'F',0,'published','2025-12-01',1,'2025-12-01'),
(6157,369,581,27,26,53,'C',3,'published','2025-12-01',1,'2025-12-01'),
(6158,369,580,28,31,59,'C',3,'published','2025-12-01',1,'2025-12-01'),
(6159,369,579,20,35,55,'C',3,'published','2025-12-01',1,'2025-12-01'),
(6160,369,578,20,41,61,'B',4,'published','2025-12-01',1,'2025-12-01'),
(6161,369,577,20,52,72,'A',5,'published','2025-12-01',1,'2025-12-01'),
(6162,369,576,27,33,60,'B',4,'published','2025-12-01',1,'2025-12-01'),
(6163,369,575,25,45,70,'A',5,'published','2025-12-01',1,'2025-12-01'),
(6164,369,574,20,47,67,'B',4,'published','2025-12-01',1,'2025-12-01'),
(6165,119,604,20,35,55,'C',3,'published','2025-12-01',1,'2025-12-01'),
(6166,119,605,20,50,70,'A',5,'published','2025-12-01',1,'2025-12-01'),
(6167,119,606,10,56,66,'B',4,'published','2025-12-01',1,'2025-12-01'),
(6168,119,607,20,42,62,'B',4,'published','2025-12-01',1,'2025-12-01'),
(6169,119,608,0,0,0,'F',0,'published','2025-12-01',1,'2025-12-01'),
(6170,119,609,0,0,0,'F',0,'published','2025-12-01',1,'2025-12-01'),
(6171,119,489,0,0,0,'F',0,'published','2025-12-01',1,'2025-12-01'),
(6172,119,610,17,47,64,'B',4,'published','2025-12-01',1,'2025-12-01'),
(6173,183,604,22,40,62,'B',4,'published','2025-12-01',1,'2025-12-01'),
(6174,183,605,20,30,50,'C',3,'published','2025-12-01',1,'2025-12-01'),
(6175,183,483,0,0,0,'F',0,'published','2025-12-01',1,'2025-12-01'),
(6176,183,606,0,0,0,'F',0,'published','2025-12-01',1,'2025-12-01'),
(6177,183,607,0,0,0,'F',0,'published','2025-12-01',1,'2025-12-01'),
(6178,183,608,0,0,0,'F',0,'published','2025-12-01',1,'2025-12-01'),
(6179,183,487,0,0,0,'F',0,'published','2025-12-01',1,'2025-12-01'),
(6180,183,612,25,10,35,'F',0,'published','2025-12-01',1,'2025-12-01'),
(6181,183,610,19,33,52,'C',3,'published','2025-12-01',1,'2025-12-01'),
(6182,183,611,0,0,0,'F',0,'published','2025-12-01',1,'2025-12-01'),
(6183,183,489,0,0,0,'F',0,'published','2025-12-01',1,'2025-12-01'),
(6184,183,609,0,0,0,'F',0,'published','2025-12-01',1,'2025-12-01'),
(6185,89,613,22,57,79,'A',5,'published','2025-12-01',1,'2025-12-01'),
(6186,89,614,15,70,85,'A',5,'published','2025-12-01',1,'2025-12-01'),
(6187,89,615,10,48,58,'C',3,'published','2025-12-01',1,'2025-12-01'),
(6188,89,616,0,0,0,'F',0,'published','2025-12-01',1,'2025-12-01'),
(6189,89,451,15,37,52,'C',3,'published','2025-12-01',1,'2025-12-01'),
(6190,89,617,24,21,45,'D',2,'published','2025-12-01',1,'2025-12-01'),
(6191,89,618,0,0,0,'F',0,'published','2025-12-01',1,'2025-12-01'),
(6192,142,513,28,44,72,'A',5,'published','2025-12-02',1,'2025-12-02'),
(6193,142,514,22,51,73,'A',5,'published','2025-12-02',1,'2025-12-02'),
(6194,142,536,26,53,79,'A',5,'published','2025-12-02',1,'2025-12-02'),
(6195,142,515,28,42,70,'A',5,'published','2025-12-02',1,'2025-12-02'),
(6196,142,516,25,32,57,'C',3,'published','2025-12-02',1,'2025-12-02'),
(6197,142,517,0,0,0,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6198,142,518,19,35,54,'C',3,'published','2025-12-02',1,'2025-12-02'),
(6199,142,519,20,51,71,'A',5,'published','2025-12-02',1,'2025-12-02'),
(6200,142,520,25,32,57,'C',3,'published','2025-12-02',1,'2025-12-02'),
(6201,41,382,0,0,0,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6202,370,594,25,65,90,'A',5,'published','2025-12-02',1,'2025-12-02'),
(6203,370,595,0,0,0,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6204,370,596,25,40,65,'B',4,'published','2025-12-02',1,'2025-12-02'),
(6205,370,598,27,39,66,'B',4,'published','2025-12-02',1,'2025-12-02'),
(6206,370,597,19,45,64,'B',4,'published','2025-12-02',1,'2025-12-02'),
(6207,370,599,0,0,0,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6208,370,600,28,40,68,'B',4,'published','2025-12-02',1,'2025-12-02'),
(6209,370,601,25,20,45,'D',2,'published','2025-12-02',1,'2025-12-02'),
(6210,370,602,28,0,28,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6211,370,603,28,66,94,'A',5,'published','2025-12-02',1,'2025-12-02'),
(6212,370,619,0,0,0,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6213,9,465,20,26,46,'D',2,'published','2025-12-02',1,'2025-12-02'),
(6214,199,618,0,0,0,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6215,371,619,0,0,0,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6216,371,603,30,68,98,'A',5,'published','2025-12-02',1,'2025-12-02'),
(6217,371,602,27,0,27,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6218,371,601,25,35,60,'B',4,'published','2025-12-02',1,'2025-12-02'),
(6219,371,600,27,41,68,'B',4,'published','2025-12-02',1,'2025-12-02'),
(6220,371,598,28,45,73,'A',5,'published','2025-12-02',1,'2025-12-02'),
(6221,371,599,0,0,0,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6222,372,594,27,64,91,'A',5,'published','2025-12-02',1,'2025-12-02'),
(6223,372,595,0,0,0,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6224,371,594,26,55,81,'A',5,'published','2025-12-02',1,'2025-12-02'),
(6225,371,595,0,0,0,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6226,371,596,23,45,68,'B',4,'published','2025-12-02',1,'2025-12-02'),
(6227,371,597,20,50,70,'A',5,'published','2025-12-02',1,'2025-12-02'),
(6228,372,596,25,35,60,'B',4,'published','2025-12-02',1,'2025-12-02'),
(6229,372,597,17,39,56,'C',3,'published','2025-12-02',1,'2025-12-02'),
(6230,372,598,28,33,61,'B',4,'published','2025-12-02',1,'2025-12-02'),
(6231,372,599,0,0,0,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6232,372,600,27,37,64,'B',4,'published','2025-12-02',1,'2025-12-02'),
(6233,372,601,25,31,56,'C',3,'published','2025-12-02',1,'2025-12-02'),
(6234,372,602,27,32,59,'C',3,'published','2025-12-02',1,'2025-12-02'),
(6235,372,603,30,68,98,'A',5,'published','2025-12-02',1,'2025-12-02'),
(6236,373,594,25,37,62,'B',4,'published','2025-12-02',1,'2025-12-02'),
(6237,373,595,0,0,0,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6238,373,596,21,29,50,'C',3,'published','2025-12-02',1,'2025-12-02'),
(6239,373,597,17,35,52,'C',3,'published','2025-12-02',1,'2025-12-02'),
(6240,373,598,27,26,53,'C',3,'published','2025-12-02',1,'2025-12-02'),
(6241,373,599,0,0,0,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6242,373,619,0,0,0,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6243,373,603,30,68,98,'A',5,'published','2025-12-02',1,'2025-12-02'),
(6244,373,601,26,29,55,'C',3,'published','2025-12-02',1,'2025-12-02'),
(6245,373,600,28,37,65,'B',4,'published','2025-12-02',1,'2025-12-02'),
(6246,38,51,0,0,0,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6247,38,52,0,0,0,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6248,38,53,0,0,0,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6249,38,436,0,0,0,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6250,38,435,0,0,0,'F',0,'published','2025-12-02',1,'2025-12-02');
INSERT INTO `results` (`id`,`student_id`,`course_offering_id`,`continuous_assessment`,`exam_score`,`total_score`,`letter_grade`,`grade_point`,`status`,`published_at`,`updated_by`,`updated_at`) VALUES
(6251,38,434,0,0,0,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6252,38,433,0,0,0,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6253,38,344,0,0,0,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6254,374,571,0,0,0,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6255,374,567,24,17,41,'E',1,'published','2025-12-02',1,'2025-12-02'),
(6256,374,568,20,52,72,'A',5,'published','2025-12-02',1,'2025-12-02'),
(6257,374,563,28,40,68,'B',4,'published','2025-12-02',1,'2025-12-02'),
(6258,374,566,12,23,35,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6259,374,572,12,31,43,'E',1,'published','2025-12-02',1,'2025-12-02'),
(6260,374,569,12,41,53,'C',3,'published','2025-12-02',1,'2025-12-02'),
(6261,374,570,27,39,66,'B',4,'published','2025-12-02',1,'2025-12-02'),
(6262,374,562,15,36,51,'C',3,'published','2025-12-02',1,'2025-12-02'),
(6263,374,561,12,44,56,'C',3,'published','2025-12-02',1,'2025-12-02'),
(6264,374,560,15,40,55,'C',3,'published','2025-12-02',1,'2025-12-02'),
(6265,374,565,23,48,71,'A',5,'published','2025-12-02',1,'2025-12-02'),
(6266,375,594,23,65,88,'A',5,'published','2025-12-02',1,'2025-12-02'),
(6267,375,595,0,0,0,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6268,375,596,27,30,57,'C',3,'published','2025-12-02',1,'2025-12-02'),
(6269,375,597,11,25,36,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6270,375,598,28,35,63,'B',4,'published','2025-12-02',1,'2025-12-02'),
(6271,375,599,0,0,0,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6272,375,600,26,39,65,'B',4,'published','2025-12-02',1,'2025-12-02'),
(6273,375,601,25,35,60,'B',4,'published','2025-12-02',1,'2025-12-02'),
(6274,375,602,27,39,66,'B',4,'published','2025-12-02',1,'2025-12-02'),
(6275,375,603,30,53,83,'A',5,'published','2025-12-02',1,'2025-12-02'),
(6276,375,619,0,0,0,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6277,376,571,0,0,0,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6278,376,567,24,26,50,'C',3,'published','2025-12-02',1,'2025-12-02'),
(6279,376,564,25,27,52,'C',3,'published','2025-12-02',1,'2025-12-02'),
(6280,376,568,23,22,45,'D',2,'published','2025-12-02',1,'2025-12-02'),
(6281,376,563,28,35,63,'B',4,'published','2025-12-02',1,'2025-12-02'),
(6282,376,566,14,12,26,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6283,376,569,18,32,50,'C',3,'published','2025-12-02',1,'2025-12-02'),
(6284,376,572,15,35,50,'C',3,'published','2025-12-02',1,'2025-12-02'),
(6285,376,565,24,52,76,'A',5,'published','2025-12-02',1,'2025-12-02'),
(6286,376,570,28,32,60,'B',4,'published','2025-12-02',1,'2025-12-02'),
(6287,376,560,29,42,71,'A',5,'published','2025-12-02',1,'2025-12-02'),
(6288,376,561,15,32,47,'D',2,'published','2025-12-02',1,'2025-12-02'),
(6289,376,562,15,25,40,'E',1,'published','2025-12-02',1,'2025-12-02'),
(6290,378,571,0,0,0,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6291,378,567,24,28,52,'C',3,'published','2025-12-02',1,'2025-12-02'),
(6292,378,564,25,20,45,'D',2,'published','2025-12-02',1,'2025-12-02'),
(6293,377,571,0,0,0,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6294,378,568,20,27,47,'D',2,'published','2025-12-02',1,'2025-12-02'),
(6295,377,567,26,36,62,'B',4,'published','2025-12-02',1,'2025-12-02'),
(6296,378,563,28,50,78,'A',5,'published','2025-12-02',1,'2025-12-02'),
(6297,377,564,25,15,40,'E',1,'published','2025-12-02',1,'2025-12-02'),
(6298,378,566,12,40,52,'C',3,'published','2025-12-02',1,'2025-12-02'),
(6299,378,572,12,42,54,'C',3,'published','2025-12-02',1,'2025-12-02'),
(6300,377,568,23,39,62,'B',4,'published','2025-12-02',1,'2025-12-02'),
(6301,378,569,3,47,50,'C',3,'published','2025-12-02',1,'2025-12-02'),
(6302,377,563,27,16,43,'E',1,'published','2025-12-02',1,'2025-12-02'),
(6303,378,565,24,50,74,'A',5,'published','2025-12-02',1,'2025-12-02'),
(6304,377,566,13,50,63,'B',4,'published','2025-12-02',1,'2025-12-02'),
(6305,378,570,27,46,73,'A',5,'published','2025-12-02',1,'2025-12-02'),
(6306,377,572,10,47,57,'C',3,'published','2025-12-02',1,'2025-12-02'),
(6307,378,562,15,49,64,'B',4,'published','2025-12-02',1,'2025-12-02'),
(6308,377,569,17,35,52,'C',3,'published','2025-12-02',1,'2025-12-02'),
(6309,378,561,14,41,55,'C',3,'published','2025-12-02',1,'2025-12-02'),
(6310,378,560,21,29,50,'C',3,'published','2025-12-02',1,'2025-12-02'),
(6311,377,565,26,29,55,'C',3,'published','2025-12-02',1,'2025-12-02'),
(6312,377,570,28,26,54,'C',3,'published','2025-12-02',1,'2025-12-02'),
(6313,377,562,15,40,55,'C',3,'published','2025-12-02',1,'2025-12-02'),
(6314,377,561,14,29,43,'E',1,'published','2025-12-02',1,'2025-12-02'),
(6315,377,560,22,28,50,'C',3,'published','2025-12-02',1,'2025-12-02'),
(6316,379,546,25,30,55,'C',3,'published','2025-12-02',1,'2025-12-02'),
(6317,379,547,0,0,0,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6318,379,548,28,30,58,'C',3,'published','2025-12-02',1,'2025-12-02'),
(6319,379,549,0,0,0,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6320,379,550,13,30,43,'E',1,'published','2025-12-02',1,'2025-12-02'),
(6321,379,551,28,15,43,'E',1,'published','2025-12-02',1,'2025-12-02'),
(6322,379,552,0,0,0,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6323,379,553,0,0,0,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6324,379,554,15,35,50,'C',3,'published','2025-12-02',1,'2025-12-02'),
(6325,379,555,25,15,40,'E',1,'published','2025-12-02',1,'2025-12-02'),
(6326,379,556,23,13,36,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6327,379,559,16,34,50,'C',3,'published','2025-12-02',1,'2025-12-02'),
(6328,379,557,0,0,0,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6329,379,558,26,27,53,'C',3,'published','2025-12-02',1,'2025-12-02'),
(6330,380,571,0,0,0,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6331,380,567,23,29,52,'C',3,'published','2025-12-02',1,'2025-12-02'),
(6332,380,564,26,37,63,'B',4,'published','2025-12-02',1,'2025-12-02'),
(6333,380,568,20,13,33,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6334,380,563,28,10,38,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6335,380,566,12,26,38,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6336,380,572,15,27,42,'E',1,'published','2025-12-02',1,'2025-12-02'),
(6337,380,569,20,39,59,'C',3,'published','2025-12-02',1,'2025-12-02'),
(6338,380,565,25,18,43,'E',1,'published','2025-12-02',1,'2025-12-02'),
(6339,380,570,27,12,39,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6340,380,562,0,0,0,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6341,380,561,14,30,44,'E',1,'published','2025-12-02',1,'2025-12-02'),
(6342,380,560,25,25,50,'C',3,'published','2025-12-02',1,'2025-12-02'),
(6343,381,571,0,0,0,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6344,381,567,23,0,23,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6345,381,564,25,30,55,'C',3,'published','2025-12-02',1,'2025-12-02'),
(6346,381,568,24,29,53,'C',3,'published','2025-12-02',1,'2025-12-02'),
(6347,381,563,28,25,53,'C',3,'published','2025-12-02',1,'2025-12-02'),
(6348,381,566,14,22,36,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6349,381,569,14,41,55,'C',3,'published','2025-12-02',1,'2025-12-02'),
(6350,381,565,25,45,70,'A',5,'published','2025-12-02',1,'2025-12-02'),
(6351,381,570,26,15,41,'E',1,'published','2025-12-02',1,'2025-12-02'),
(6352,381,562,15,25,40,'E',1,'published','2025-12-02',1,'2025-12-02'),
(6353,381,561,15,27,42,'E',1,'published','2025-12-02',1,'2025-12-02'),
(6354,381,560,22,43,65,'B',4,'published','2025-12-02',1,'2025-12-02'),
(6355,383,574,20,40,60,'B',4,'published','2025-12-02',1,'2025-12-02'),
(6356,383,575,28,46,74,'A',5,'published','2025-12-02',1,'2025-12-02'),
(6357,383,576,30,44,74,'A',5,'published','2025-12-02',1,'2025-12-02'),
(6358,383,577,21,62,83,'A',5,'published','2025-12-02',1,'2025-12-02'),
(6359,383,578,20,57,77,'A',5,'published','2025-12-02',1,'2025-12-02'),
(6360,383,579,20,26,46,'D',2,'published','2025-12-02',1,'2025-12-02'),
(6361,383,580,27,26,53,'C',3,'published','2025-12-02',1,'2025-12-02'),
(6362,383,581,28,25,53,'C',3,'published','2025-12-02',1,'2025-12-02'),
(6363,383,582,0,0,0,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6364,384,571,0,0,0,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6365,384,567,24,20,44,'E',1,'published','2025-12-02',1,'2025-12-02'),
(6366,384,564,25,5,30,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6367,384,568,26,40,66,'B',4,'published','2025-12-02',1,'2025-12-02'),
(6368,384,563,26,25,51,'C',3,'published','2025-12-02',1,'2025-12-02'),
(6369,384,566,14,23,37,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6370,384,572,5,5,10,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6371,384,569,0,0,0,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6372,384,565,25,47,72,'A',5,'published','2025-12-02',1,'2025-12-02'),
(6373,384,570,26,26,52,'C',3,'published','2025-12-02',1,'2025-12-02'),
(6374,384,562,15,25,40,'E',1,'published','2025-12-02',1,'2025-12-02'),
(6375,384,561,14,13,27,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6376,384,560,17,34,51,'C',3,'published','2025-12-02',1,'2025-12-02'),
(6377,382,571,0,0,0,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6378,382,567,24,26,50,'C',3,'published','2025-12-02',1,'2025-12-02'),
(6379,382,564,25,15,40,'E',1,'published','2025-12-02',1,'2025-12-02'),
(6380,382,568,18,14,32,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6381,382,563,27,14,41,'E',1,'published','2025-12-02',1,'2025-12-02'),
(6382,382,566,14,12,26,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6383,382,572,8,17,25,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6384,382,569,13,12,25,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6385,382,565,24,52,76,'A',5,'published','2025-12-02',1,'2025-12-02'),
(6386,382,570,27,17,44,'E',1,'published','2025-12-02',1,'2025-12-02'),
(6387,382,562,0,0,0,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6388,382,561,10,10,20,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6389,382,560,15,10,25,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6390,385,538,0,0,0,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6391,385,539,25,26,51,'C',3,'published','2025-12-02',1,'2025-12-02'),
(6392,385,540,28,10,38,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6393,385,541,28,49,77,'A',5,'published','2025-12-02',1,'2025-12-02'),
(6394,385,542,27,26,53,'C',3,'published','2025-12-02',1,'2025-12-02'),
(6395,385,543,14,15,29,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6396,385,544,13,50,63,'B',4,'published','2025-12-02',1,'2025-12-02'),
(6397,385,545,25,25,50,'C',3,'published','2025-12-02',1,'2025-12-02'),
(6398,386,538,0,0,0,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6399,386,539,26,42,68,'B',4,'published','2025-12-02',1,'2025-12-02'),
(6400,386,541,28,38,66,'B',4,'published','2025-12-02',1,'2025-12-02'),
(6401,386,542,27,30,57,'C',3,'published','2025-12-02',1,'2025-12-02'),
(6402,386,543,12,18,30,'F',0,'published','2025-12-02',1,'2025-12-02'),
(6403,386,545,25,25,50,'C',3,'published','2025-12-02',1,'2025-12-02'),
(6404,386,540,28,21,49,'D',2,'published','2025-12-02',1,'2025-12-02'),
(6405,386,544,19,40,59,'C',3,'published','2025-12-02',1,'2025-12-02'),
(6406,122,489,0,0,0,'F',0,'published','2025-12-03',1,'2025-12-03'),
(6407,122,604,22,38,60,'B',4,'published','2025-12-03',1,'2025-12-03'),
(6408,122,605,19,34,53,'C',3,'published','2025-12-03',1,'2025-12-03'),
(6409,122,606,10,41,51,'C',3,'published','2025-12-03',1,'2025-12-03'),
(6410,122,608,0,0,0,'F',0,'published','2025-12-03',1,'2025-12-03'),
(6411,122,609,0,0,0,'F',0,'published','2025-12-03',1,'2025-12-03'),
(6412,122,607,18,32,50,'C',3,'published','2025-12-03',1,'2025-12-03'),
(6413,122,610,26,49,75,'A',5,'published','2025-12-03',1,'2025-12-03'),
(6414,122,612,25,28,53,'C',3,'published','2025-12-03',1,'2025-12-03'),
(6415,387,604,20,41,61,'B',4,'published','2025-12-03',1,'2025-12-03'),
(6416,387,605,21,57,78,'A',5,'published','2025-12-03',1,'2025-12-03'),
(6417,387,483,0,0,0,'F',0,'published','2025-12-03',1,'2025-12-03'),
(6418,387,606,10,47,57,'C',3,'published','2025-12-03',1,'2025-12-03'),
(6419,387,607,11,51,62,'B',4,'published','2025-12-03',1,'2025-12-03'),
(6420,387,608,0,0,0,'F',0,'published','2025-12-03',1,'2025-12-03'),
(6421,387,487,0,0,0,'F',0,'published','2025-12-03',1,'2025-12-03'),
(6422,387,609,0,0,0,'F',0,'published','2025-12-03',1,'2025-12-03'),
(6423,387,489,0,0,0,'F',0,'published','2025-12-03',1,'2025-12-03'),
(6424,387,611,0,0,0,'F',0,'published','2025-12-03',1,'2025-12-03'),
(6425,387,610,21,36,57,'C',3,'published','2025-12-03',1,'2025-12-03'),
(6426,387,612,25,15,40,'E',1,'published','2025-12-03',1,'2025-12-03'),
(6427,26,441,25,25,50,'C',3,'published','2025-12-03',1,'2025-12-03'),
(6428,26,442,24,35,59,'C',3,'published','2025-12-03',1,'2025-12-03'),
(6429,26,443,0,0,0,'F',0,'published','2025-12-03',1,'2025-12-03'),
(6430,26,446,20,35,55,'C',3,'published','2025-12-03',1,'2025-12-03'),
(6431,26,445,15,41,56,'C',3,'published','2025-12-03',1,'2025-12-03'),
(6432,26,573,21,20,41,'E',1,'published','2025-12-03',1,'2025-12-03'),
(6433,102,613,22,53,75,'A',5,'published','2025-12-04',1,'2025-12-04'),
(6434,102,614,20,60,80,'A',5,'published','2025-12-04',1,'2025-12-04'),
(6435,102,615,14,54,68,'B',4,'published','2025-12-04',1,'2025-12-04'),
(6436,102,616,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6437,102,451,17,25,42,'E',1,'published','2025-12-04',1,'2025-12-04'),
(6438,102,617,20,30,50,'C',3,'published','2025-12-04',1,'2025-12-04'),
(6439,102,618,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6440,18,613,19,60,79,'A',5,'published','2025-12-04',1,'2025-12-04'),
(6441,18,614,20,50,70,'A',5,'published','2025-12-04',1,'2025-12-04'),
(6442,18,615,12,45,57,'C',3,'published','2025-12-04',1,'2025-12-04'),
(6443,18,616,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6444,18,451,15,25,40,'E',1,'published','2025-12-04',1,'2025-12-04'),
(6445,18,617,20,37,57,'C',3,'published','2025-12-04',1,'2025-12-04'),
(6446,18,618,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6447,197,613,21,60,81,'A',5,'published','2025-12-04',1,'2025-12-04'),
(6448,197,614,20,65,85,'A',5,'published','2025-12-04',1,'2025-12-04'),
(6449,197,615,16,39,55,'C',3,'published','2025-12-04',1,'2025-12-04'),
(6450,197,616,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6451,197,451,15,25,40,'E',1,'published','2025-12-04',1,'2025-12-04'),
(6452,197,617,24,36,60,'B',4,'published','2025-12-04',1,'2025-12-04'),
(6453,197,618,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6454,97,441,25,35,60,'B',4,'published','2025-12-04',1,'2025-12-04'),
(6455,97,442,25,51,76,'A',5,'published','2025-12-04',1,'2025-12-04'),
(6456,97,443,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6457,97,446,20,47,67,'B',4,'published','2025-12-04',1,'2025-12-04'),
(6458,97,444,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6459,97,445,17,23,40,'E',1,'published','2025-12-04',1,'2025-12-04'),
(6460,97,573,22,45,67,'B',4,'published','2025-12-04',1,'2025-12-04'),
(6461,97,502,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6462,97,503,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6463,97,504,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6464,97,505,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6465,97,620,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6466,97,506,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6467,96,441,25,25,50,'C',3,'published','2025-12-04',1,'2025-12-04'),
(6468,96,442,24,33,57,'C',3,'published','2025-12-04',1,'2025-12-04'),
(6469,96,443,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6470,96,446,20,40,60,'B',4,'published','2025-12-04',1,'2025-12-04'),
(6471,96,444,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6472,96,445,15,26,41,'E',1,'published','2025-12-04',1,'2025-12-04'),
(6473,96,573,21,43,64,'B',4,'published','2025-12-04',1,'2025-12-04'),
(6474,187,613,21,53,74,'A',5,'published','2025-12-04',1,'2025-12-04'),
(6475,187,618,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6476,187,617,22,30,52,'C',3,'published','2025-12-04',1,'2025-12-04'),
(6477,187,451,15,25,40,'E',1,'published','2025-12-04',1,'2025-12-04'),
(6478,187,616,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6479,187,615,9,20,29,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6480,187,614,15,60,75,'A',5,'published','2025-12-04',1,'2025-12-04'),
(6481,187,233,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6482,187,175,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6483,187,176,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6484,187,177,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6485,187,178,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6486,187,179,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6487,187,180,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6488,187,182,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6489,187,106,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6490,187,183,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6491,187,621,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6492,187,622,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6493,187,193,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6494,187,623,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6495,187,3,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6496,187,276,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6497,187,198,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6498,187,624,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6499,187,196,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6500,187,625,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04');
INSERT INTO `results` (`id`,`student_id`,`course_offering_id`,`continuous_assessment`,`exam_score`,`total_score`,`letter_grade`,`grade_point`,`status`,`published_at`,`updated_by`,`updated_at`) VALUES
(6501,187,5,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6502,187,626,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6503,132,54,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6504,132,627,27,30,57,'C',3,'published','2025-12-04',1,'2025-12-04'),
(6505,132,56,20,42,62,'B',4,'published','2025-12-04',1,'2025-12-04'),
(6506,132,57,25,25,50,'C',3,'published','2025-12-04',1,'2025-12-04'),
(6507,132,58,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6508,132,59,20,39,59,'C',3,'published','2025-12-04',1,'2025-12-04'),
(6509,132,61,22,47,69,'B',4,'published','2025-12-04',1,'2025-12-04'),
(6510,132,60,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6511,132,62,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6512,132,604,20,30,50,'C',3,'published','2025-12-04',1,'2025-12-04'),
(6513,132,605,19,42,61,'B',4,'published','2025-12-04',1,'2025-12-04'),
(6514,132,606,14,48,62,'B',4,'published','2025-12-04',1,'2025-12-04'),
(6515,132,607,18,40,58,'C',3,'published','2025-12-04',1,'2025-12-04'),
(6516,132,608,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6517,132,609,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6518,132,489,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6519,132,610,17,48,65,'B',4,'published','2025-12-04',1,'2025-12-04'),
(6520,138,604,20,45,65,'B',4,'published','2025-12-04',1,'2025-12-04'),
(6521,138,612,25,28,53,'C',3,'published','2025-12-04',1,'2025-12-04'),
(6522,138,610,21,39,60,'B',4,'published','2025-12-04',1,'2025-12-04'),
(6523,138,605,19,47,66,'B',4,'published','2025-12-04',1,'2025-12-04'),
(6524,138,606,14,46,60,'B',4,'published','2025-12-04',1,'2025-12-04'),
(6525,138,607,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6526,138,608,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6527,132,585,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6528,132,587,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6529,132,584,10,28,38,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6530,132,583,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6531,132,586,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6532,132,592,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6533,138,609,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6534,132,590,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6535,109,5,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6536,374,564,25,32,57,'C',3,'published','2025-12-04',1,'2025-12-04'),
(6537,123,604,20,21,41,'E',1,'published','2025-12-04',1,'2025-12-04'),
(6538,123,483,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6539,123,606,14,34,48,'D',2,'published','2025-12-04',1,'2025-12-04'),
(6540,123,607,7,20,27,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6541,123,608,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6542,123,487,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6543,123,610,20,32,52,'C',3,'published','2025-12-04',1,'2025-12-04'),
(6544,123,612,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6545,123,611,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6546,123,609,0,0,0,'F',0,'published','2025-12-04',1,'2025-12-04'),
(6547,10,573,22,45,67,'B',4,'published','2025-12-05',1,'2025-12-05'),
(6548,324,196,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6549,324,622,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6550,324,3,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6551,324,624,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6552,324,623,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6553,324,198,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6554,324,193,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6555,324,276,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6556,324,621,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6557,323,621,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6558,323,5,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6559,323,625,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6560,323,196,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6561,323,624,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6562,323,198,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6563,323,276,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6564,323,3,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6565,323,623,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6566,323,193,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6567,323,622,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6568,324,233,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6569,324,175,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6570,324,176,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6571,324,177,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6572,324,178,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6573,324,179,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6574,324,180,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6575,324,182,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6576,324,106,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6577,324,183,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6578,323,233,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6579,323,175,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6580,323,176,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6581,323,106,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6582,323,182,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6583,323,180,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6584,323,179,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6585,323,178,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6586,323,177,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6587,324,614,20,70,90,'A',5,'published','2025-12-05',1,'2025-12-05'),
(6588,324,615,16,60,76,'A',5,'published','2025-12-05',1,'2025-12-05'),
(6589,324,613,17,48,65,'B',4,'published','2025-12-05',1,'2025-12-05'),
(6590,324,616,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6591,324,451,15,47,62,'B',4,'published','2025-12-05',1,'2025-12-05'),
(6592,324,617,24,27,51,'C',3,'published','2025-12-05',1,'2025-12-05'),
(6593,324,618,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6594,323,183,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6595,323,618,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6596,323,617,20,31,51,'C',3,'published','2025-12-05',1,'2025-12-05'),
(6597,323,451,15,43,58,'C',3,'published','2025-12-05',1,'2025-12-05'),
(6598,323,616,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6599,323,615,13,30,43,'E',1,'published','2025-12-05',1,'2025-12-05'),
(6600,323,614,20,70,90,'A',5,'published','2025-12-05',1,'2025-12-05'),
(6601,323,613,21,39,60,'B',4,'published','2025-12-05',1,'2025-12-05'),
(6602,326,441,25,30,55,'C',3,'published','2025-12-05',1,'2025-12-05'),
(6603,326,442,23,54,77,'A',5,'published','2025-12-05',1,'2025-12-05'),
(6604,326,573,20,20,40,'E',1,'published','2025-12-05',1,'2025-12-05'),
(6605,326,445,16,26,42,'E',1,'published','2025-12-05',1,'2025-12-05'),
(6606,326,444,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6607,326,443,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6608,81,344,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6609,81,345,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6610,326,277,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6611,326,130,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6612,326,129,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6613,326,126,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6614,326,125,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6615,326,128,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6616,326,124,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6617,326,123,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6618,326,122,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6619,82,345,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6620,107,436,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6621,107,435,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6622,107,433,0,0,0,'F',0,'published','2025-12-05',1,'2025-12-05'),
(6623,319,621,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6624,319,622,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6625,319,193,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6626,319,623,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6627,319,3,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6628,319,276,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6629,319,198,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6630,319,624,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6631,319,196,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6632,319,625,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6633,319,5,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6634,242,613,22,56,78,'A',5,'published','2025-12-08',1,'2025-12-08'),
(6635,242,614,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6636,242,615,13,41,54,'C',3,'published','2025-12-08',1,'2025-12-08'),
(6637,242,616,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6638,242,451,15,26,41,'E',1,'published','2025-12-08',1,'2025-12-08'),
(6639,242,617,23,32,55,'C',3,'published','2025-12-08',1,'2025-12-08'),
(6640,242,618,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6641,319,233,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6642,319,175,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6643,319,176,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6644,319,177,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6645,319,178,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6646,319,179,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6647,319,180,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6648,319,182,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6649,319,106,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6650,319,183,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6651,318,46,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6652,318,322,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6653,318,47,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6654,318,48,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6655,318,127,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6656,318,49,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6657,318,50,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6658,318,344,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6659,318,345,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6660,318,51,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6661,318,52,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6662,318,53,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6663,318,325,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6664,318,436,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6665,318,435,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6666,318,434,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6667,318,433,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6668,148,462,25,28,53,'C',3,'published','2025-12-08',1,'2025-12-08'),
(6669,148,461,25,25,50,'C',3,'published','2025-12-08',1,'2025-12-08'),
(6670,148,463,25,28,53,'C',3,'published','2025-12-08',1,'2025-12-08'),
(6671,148,464,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6672,148,466,17,46,63,'B',4,'published','2025-12-08',1,'2025-12-08'),
(6673,148,467,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6674,148,468,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6675,148,469,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6676,325,38,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6677,325,39,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6678,325,40,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6679,325,41,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6680,325,42,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6681,325,43,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6682,325,44,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6683,325,45,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6684,325,122,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6685,325,123,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6686,325,124,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6687,325,128,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6688,325,125,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6689,325,129,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6690,325,130,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6691,325,277,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6692,325,126,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6693,325,441,25,25,50,'C',3,'published','2025-12-08',1,'2025-12-08'),
(6694,325,442,25,58,83,'A',5,'published','2025-12-08',1,'2025-12-08'),
(6695,325,443,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6696,325,446,20,40,60,'B',4,'published','2025-12-08',1,'2025-12-08'),
(6697,325,444,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6698,325,445,17,34,51,'C',3,'published','2025-12-08',1,'2025-12-08'),
(6699,325,573,20,30,50,'C',3,'published','2025-12-08',1,'2025-12-08'),
(6700,325,502,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6701,325,503,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6702,325,504,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6703,325,505,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6704,325,620,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6705,325,506,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6706,148,108,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6707,148,109,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6708,148,110,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6709,148,111,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6710,148,112,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6711,148,113,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6712,148,114,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6713,148,211,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6714,177,108,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6715,177,109,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6716,177,110,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6717,177,111,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6718,177,112,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6719,177,113,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6720,177,114,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6721,177,211,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6722,177,462,25,32,57,'C',3,'published','2025-12-08',1,'2025-12-08'),
(6723,177,461,25,26,51,'C',3,'published','2025-12-08',1,'2025-12-08'),
(6724,177,463,25,36,61,'B',4,'published','2025-12-08',1,'2025-12-08'),
(6725,177,464,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6726,177,466,16,39,55,'C',3,'published','2025-12-08',1,'2025-12-08'),
(6727,177,467,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6728,177,468,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6729,177,469,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6730,326,38,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6731,326,42,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6732,326,41,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6733,326,39,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6734,326,40,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6735,326,43,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6736,326,44,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6737,326,45,0,0,0,'F',0,'published','2025-12-08',1,'2025-12-08'),
(6738,201,613,18,59,77,'A',5,'published','2025-12-09',1,'2025-12-09'),
(6739,201,614,20,55,75,'A',5,'published','2025-12-09',1,'2025-12-09'),
(6740,201,615,16,62,78,'A',5,'published','2025-12-09',1,'2025-12-09'),
(6741,201,616,0,0,0,'F',0,'published','2025-12-09',1,'2025-12-09'),
(6742,201,451,15,26,41,'E',1,'published','2025-12-09',1,'2025-12-09'),
(6743,201,617,24,30,54,'C',3,'published','2025-12-09',1,'2025-12-09'),
(6744,201,618,0,0,0,'F',0,'published','2025-12-09',1,'2025-12-09'),
(6745,98,441,25,46,71,'A',5,'published','2025-12-09',1,'2025-12-09'),
(6746,98,442,28,42,70,'A',5,'published','2025-12-09',1,'2025-12-09'),
(6747,98,443,0,0,0,'F',0,'published','2025-12-09',1,'2025-12-09'),
(6748,98,446,20,46,66,'B',4,'published','2025-12-09',1,'2025-12-09'),
(6749,98,445,16,29,45,'D',2,'published','2025-12-09',1,'2025-12-09'),
(6750,98,573,23,54,77,'A',5,'published','2025-12-09',1,'2025-12-09');
INSERT INTO `results` (`id`,`student_id`,`course_offering_id`,`continuous_assessment`,`exam_score`,`total_score`,`letter_grade`,`grade_point`,`status`,`published_at`,`updated_by`,`updated_at`) VALUES
(6751,123,1,0,0,0,'F',0,'published','2025-12-09',1,'2025-12-09'),
(6752,123,583,0,0,0,'F',0,'published','2025-12-09',1,'2025-12-09'),
(6753,123,585,0,0,0,'F',0,'published','2025-12-09',1,'2025-12-09'),
(6754,123,584,10,25,35,'F',0,'published','2025-12-09',1,'2025-12-09'),
(6755,123,592,0,0,0,'F',0,'published','2025-12-09',1,'2025-12-09'),
(6756,123,591,0,0,0,'F',0,'published','2025-12-09',1,'2025-12-09'),
(6757,123,587,0,0,0,'F',0,'published','2025-12-09',1,'2025-12-09'),
(6758,123,628,0,0,0,'F',0,'published','2025-12-09',1,'2025-12-09'),
(6759,123,590,0,0,0,'F',0,'published','2025-12-09',1,'2025-12-09'),
(6760,123,593,0,0,0,'F',0,'published','2025-12-09',1,'2025-12-09'),
(6761,77,465,20,26,46,'D',2,'published','2025-12-11',1,'2025-12-11'),
(6762,28,613,25,50,75,'A',5,'published','2025-12-12',1,'2025-12-12'),
(6763,28,614,15,65,80,'A',5,'published','2025-12-12',1,'2025-12-12'),
(6764,28,615,16,37,53,'C',3,'published','2025-12-12',1,'2025-12-12'),
(6765,28,616,0,0,0,'F',0,'published','2025-12-12',1,'2025-12-12'),
(6766,28,451,15,51,66,'B',4,'published','2025-12-12',1,'2025-12-12'),
(6767,28,617,24,34,58,'C',3,'published','2025-12-12',1,'2025-12-12'),
(6768,28,618,0,0,0,'F',0,'published','2025-12-12',1,'2025-12-12'),
(6769,69,613,27,60,87,'A',5,'published','2025-12-13',1,'2025-12-13'),
(6770,69,614,20,75,95,'A',5,'published','2025-12-13',1,'2025-12-13'),
(6771,69,615,15,60,75,'A',5,'published','2025-12-13',1,'2025-12-13'),
(6772,69,616,0,0,0,'F',0,'published','2025-12-13',1,'2025-12-13'),
(6773,69,451,15,55,70,'A',5,'published','2025-12-13',1,'2025-12-13'),
(6774,69,617,22,35,57,'C',3,'published','2025-12-13',1,'2025-12-13'),
(6775,69,618,0,0,0,'F',0,'published','2025-12-13',1,'2025-12-13'),
(6776,198,613,19,42,61,'B',4,'published','2025-12-16',1,'2025-12-16'),
(6777,198,614,15,70,85,'A',5,'published','2025-12-16',1,'2025-12-16'),
(6778,198,615,13,17,30,'F',0,'published','2025-12-16',1,'2025-12-16'),
(6779,198,616,0,0,0,'F',0,'published','2025-12-16',1,'2025-12-16'),
(6780,198,451,15,26,41,'E',1,'published','2025-12-16',1,'2025-12-16'),
(6781,198,617,21,30,51,'C',3,'published','2025-12-16',1,'2025-12-16'),
(6782,198,618,0,0,0,'F',0,'published','2025-12-16',1,'2025-12-16'),
(6783,91,458,0,0,0,'F',0,'published','2026-01-08',1,'2026-01-08'),
(6784,84,613,19,55,74,'A',5,'published','2026-01-10',1,'2026-01-10'),
(6785,84,614,20,55,75,'A',5,'published','2026-01-10',1,'2026-01-10'),
(6786,84,615,18,55,73,'A',5,'published','2026-01-10',1,'2026-01-10'),
(6787,84,616,0,0,0,'F',0,'published','2026-01-10',1,'2026-01-10'),
(6788,84,451,15,37,52,'C',3,'published','2026-01-10',1,'2026-01-10'),
(6789,84,617,21,32,53,'C',3,'published','2026-01-10',1,'2026-01-10'),
(6790,84,618,0,0,0,'F',0,'published','2026-01-10',1,'2026-01-10'),
(6791,84,455,0,0,0,'F',0,'published','2026-01-10',1,'2026-01-10'),
(6792,84,629,20,55,75,'A',5,'published','2026-01-10',1,'2026-01-10'),
(6793,84,456,0,0,0,'F',0,'published','2026-01-10',1,'2026-01-10'),
(6794,84,457,0,0,0,'F',0,'published','2026-01-10',1,'2026-01-10'),
(6795,84,458,0,0,0,'F',0,'published','2026-01-10',1,'2026-01-10'),
(6796,84,460,0,0,0,'F',0,'published','2026-01-10',1,'2026-01-10'),
(6797,51,465,20,35,55,'C',3,'published','2026-01-12',1,'2026-01-12'),
(6798,147,630,0,0,0,'F',0,'published','2026-01-13',1,'2026-01-13'),
(6799,147,631,0,0,0,'F',0,'published','2026-01-13',1,'2026-01-13'),
(6800,147,632,0,0,0,'F',0,'published','2026-01-13',1,'2026-01-13'),
(6801,147,633,0,0,0,'F',0,'published','2026-01-13',1,'2026-01-13'),
(6802,147,634,0,0,0,'F',0,'published','2026-01-13',1,'2026-01-13'),
(6803,147,635,0,0,0,'F',0,'published','2026-01-13',1,'2026-01-13'),
(6804,147,636,0,0,0,'F',0,'published','2026-01-13',1,'2026-01-13'),
(6805,147,637,0,0,0,'F',0,'published','2026-01-13',1,'2026-01-13'),
(6806,147,638,0,0,0,'F',0,'published','2026-01-13',1,'2026-01-13'),
(6807,150,631,0,0,0,'F',0,'published','2026-01-13',1,'2026-01-13'),
(6808,150,635,0,0,0,'F',0,'published','2026-01-13',1,'2026-01-13'),
(6809,150,638,0,0,0,'F',0,'published','2026-01-13',1,'2026-01-13'),
(6810,150,637,0,0,0,'F',0,'published','2026-01-13',1,'2026-01-13'),
(6811,150,636,0,0,0,'F',0,'published','2026-01-13',1,'2026-01-13'),
(6812,150,633,0,0,0,'F',0,'published','2026-01-13',1,'2026-01-13'),
(6813,150,632,0,0,0,'F',0,'published','2026-01-13',1,'2026-01-13'),
(6814,150,634,0,0,0,'F',0,'published','2026-01-13',1,'2026-01-13'),
(6815,150,630,0,0,0,'F',0,'published','2026-01-13',1,'2026-01-13'),
(6816,153,461,25,30,55,'C',3,'published','2026-01-14',1,'2026-01-14'),
(6817,153,462,25,30,55,'C',3,'published','2026-01-14',1,'2026-01-14'),
(6818,153,463,25,30,55,'C',3,'published','2026-01-14',1,'2026-01-14'),
(6819,153,464,0,0,0,'F',0,'published','2026-01-14',1,'2026-01-14'),
(6820,153,466,17,32,49,'D',2,'published','2026-01-14',1,'2026-01-14'),
(6821,153,467,0,0,0,'F',0,'published','2026-01-14',1,'2026-01-14'),
(6822,153,468,0,0,0,'F',0,'published','2026-01-14',1,'2026-01-14'),
(6823,153,469,0,0,0,'F',0,'published','2026-01-14',1,'2026-01-14'),
(6824,139,612,25,9,34,'F',0,'published','2026-01-16',1,'2026-01-16'),
(6825,10,503,0,0,0,'F',0,'published','2026-01-18',1,'2026-01-18'),
(6826,10,502,0,0,0,'F',0,'published','2026-01-18',1,'2026-01-18'),
(6827,10,504,0,0,0,'F',0,'published','2026-01-18',1,'2026-01-18'),
(6828,10,505,0,0,0,'F',0,'published','2026-01-18',1,'2026-01-18'),
(6829,10,620,0,0,0,'F',0,'published','2026-01-18',1,'2026-01-18'),
(6830,10,506,0,0,0,'F',0,'published','2026-01-18',1,'2026-01-18'),
(6831,45,436,0,0,0,'F',0,'published','2026-01-21',1,'2026-01-21'),
(6832,45,435,0,0,0,'F',0,'published','2026-01-21',1,'2026-01-21'),
(6833,45,434,0,0,0,'F',0,'published','2026-01-21',1,'2026-01-21'),
(6834,45,433,0,0,0,'F',0,'published','2026-01-21',1,'2026-01-21'),
(6835,45,465,20,23,43,'E',1,'published','2026-01-21',1,'2026-01-21'),
(6836,311,522,14,45,59,'C',3,'published','2026-01-23',1,'2026-01-23'),
(6837,311,526,20,56,76,'A',5,'published','2026-01-23',1,'2026-01-23'),
(6838,311,525,76,0,76,'A',5,'published','2026-01-23',1,'2026-01-23'),
(6839,311,521,30,46,76,'A',5,'published','2026-01-23',1,'2026-01-23'),
(6840,311,527,0,0,0,'F',0,'published','2026-01-23',1,'2026-01-23'),
(6841,311,524,0,0,0,'F',0,'published','2026-01-23',1,'2026-01-23'),
(6842,311,523,23,65,88,'A',5,'published','2026-01-23',1,'2026-01-23'),
(6843,182,471,0,0,0,'F',0,'published','2026-01-26',1,'2026-01-26'),
(6844,182,480,0,0,0,'F',0,'published','2026-01-26',1,'2026-01-26'),
(6845,182,476,0,0,0,'F',0,'published','2026-01-26',1,'2026-01-26'),
(6846,182,474,0,0,0,'F',0,'published','2026-01-26',1,'2026-01-26'),
(6847,182,472,0,0,0,'F',0,'published','2026-01-26',1,'2026-01-26'),
(6848,182,473,0,0,0,'F',0,'published','2026-01-26',1,'2026-01-26'),
(6849,123,475,0,0,0,'F',0,'published','2026-01-26',1,'2026-01-26'),
(6850,123,480,0,0,0,'F',0,'published','2026-01-26',1,'2026-01-26'),
(6851,123,476,0,0,0,'F',0,'published','2026-01-26',1,'2026-01-26'),
(6852,130,471,0,0,0,'F',0,'published','2026-01-27',1,'2026-01-27'),
(6853,130,472,0,0,0,'F',0,'published','2026-01-27',1,'2026-01-27'),
(6854,130,474,0,0,0,'F',0,'published','2026-01-27',1,'2026-01-27'),
(6855,130,473,0,0,0,'F',0,'published','2026-01-27',1,'2026-01-27'),
(6856,130,476,0,0,0,'F',0,'published','2026-01-27',1,'2026-01-27'),
(6857,130,478,0,0,0,'F',0,'published','2026-01-27',1,'2026-01-27'),
(6858,130,480,0,0,0,'F',0,'published','2026-01-27',1,'2026-01-27'),
(6859,113,613,15,55,70,'A',5,'published','2026-02-04',1,'2026-02-04'),
(6860,113,614,20,70,90,'A',5,'published','2026-02-04',1,'2026-02-04'),
(6861,113,615,15,35,50,'C',3,'published','2026-02-04',1,'2026-02-04'),
(6862,113,616,0,0,0,'F',0,'published','2026-02-04',1,'2026-02-04'),
(6863,113,451,15,29,44,'E',1,'published','2026-02-04',1,'2026-02-04'),
(6864,113,617,22,34,56,'C',3,'published','2026-02-04',1,'2026-02-04'),
(6865,113,618,0,0,0,'F',0,'published','2026-02-04',1,'2026-02-04'),
(6866,113,629,20,55,75,'A',5,'published','2026-02-04',1,'2026-02-04'),
(6867,113,455,0,0,0,'F',0,'published','2026-02-04',1,'2026-02-04'),
(6868,113,456,0,0,0,'F',0,'published','2026-02-04',1,'2026-02-04'),
(6869,113,457,0,0,0,'F',0,'published','2026-02-04',1,'2026-02-04'),
(6870,113,458,0,0,0,'F',0,'published','2026-02-04',1,'2026-02-04'),
(6871,113,459,0,0,0,'F',0,'published','2026-02-04',1,'2026-02-04'),
(6872,312,521,28,32,60,'B',4,'published','2026-02-13',1,'2026-02-13'),
(6873,312,525,59,0,59,'C',3,'published','2026-02-13',1,'2026-02-13'),
(6874,312,522,16,34,50,'C',3,'published','2026-02-13',1,'2026-02-13'),
(6875,312,526,20,37,57,'C',3,'published','2026-02-13',1,'2026-02-13'),
(6876,312,523,20,51,71,'A',5,'published','2026-02-13',1,'2026-02-13'),
(6877,312,527,0,0,0,'F',0,'published','2026-02-13',1,'2026-02-13'),
(6878,312,524,0,0,0,'F',0,'published','2026-02-13',1,'2026-02-13'),
(6879,312,528,0,0,0,'F',0,'published','2026-02-13',1,'2026-02-13'),
(6880,312,529,0,0,0,'F',0,'published','2026-02-13',1,'2026-02-13'),
(6881,312,530,0,0,0,'F',0,'published','2026-02-13',1,'2026-02-13'),
(6882,312,531,0,0,0,'F',0,'published','2026-02-13',1,'2026-02-13'),
(6883,312,532,0,0,0,'F',0,'published','2026-02-13',1,'2026-02-13'),
(6884,312,533,0,0,0,'F',0,'published','2026-02-13',1,'2026-02-13'),
(6885,312,534,0,0,0,'F',0,'published','2026-02-13',1,'2026-02-13'),
(6886,313,521,27,24,51,'C',3,'published','2026-02-13',1,'2026-02-13'),
(6887,313,525,56,0,56,'C',3,'published','2026-02-13',1,'2026-02-13'),
(6888,313,522,12,44,56,'C',3,'published','2026-02-13',1,'2026-02-13'),
(6889,313,526,20,47,67,'B',4,'published','2026-02-13',1,'2026-02-13'),
(6890,313,523,23,35,58,'C',3,'published','2026-02-13',1,'2026-02-13'),
(6891,313,527,0,0,0,'F',0,'published','2026-02-13',1,'2026-02-13'),
(6892,313,524,0,0,0,'F',0,'published','2026-02-13',1,'2026-02-13'),
(6893,313,528,0,0,0,'F',0,'published','2026-02-13',1,'2026-02-13'),
(6894,313,529,0,0,0,'F',0,'published','2026-02-13',1,'2026-02-13'),
(6895,313,530,0,0,0,'F',0,'published','2026-02-13',1,'2026-02-13'),
(6896,313,531,0,0,0,'F',0,'published','2026-02-13',1,'2026-02-13'),
(6897,313,532,0,0,0,'F',0,'published','2026-02-13',1,'2026-02-13'),
(6898,313,533,0,0,0,'F',0,'published','2026-02-13',1,'2026-02-13'),
(6899,313,534,0,0,0,'F',0,'published','2026-02-13',1,'2026-02-13'),
(6900,157,639,0,0,0,'F',0,'published','2026-03-05',1,'2026-03-05'),
(6901,157,640,0,0,0,'F',0,'published','2026-03-05',1,'2026-03-05'),
(6902,157,641,0,0,0,'F',0,'published','2026-03-05',1,'2026-03-05'),
(6903,157,642,0,0,0,'F',0,'published','2026-03-05',1,'2026-03-05'),
(6904,157,643,0,0,0,'F',0,'published','2026-03-05',1,'2026-03-05'),
(6905,157,644,0,0,0,'F',0,'published','2026-03-05',1,'2026-03-05'),
(6906,157,645,0,0,0,'F',0,'published','2026-03-05',1,'2026-03-05'),
(6907,157,646,0,0,0,'F',0,'published','2026-03-05',1,'2026-03-05'),
(6908,157,647,0,0,0,'F',0,'published','2026-03-05',1,'2026-03-05'),
(6909,157,648,0,0,0,'F',0,'published','2026-03-05',1,'2026-03-05'),
(6910,323,629,20,50,70,'A',5,'published','2026-03-09',1,'2026-03-09'),
(6911,323,455,0,0,0,'F',0,'published','2026-03-09',1,'2026-03-09'),
(6912,323,456,0,0,0,'F',0,'published','2026-03-09',1,'2026-03-09'),
(6913,323,457,0,0,0,'F',0,'published','2026-03-09',1,'2026-03-09'),
(6914,323,458,0,0,0,'F',0,'published','2026-03-09',1,'2026-03-09'),
(6915,323,459,0,0,0,'F',0,'published','2026-03-09',1,'2026-03-09'),
(6916,323,460,0,0,0,'F',0,'published','2026-03-09',1,'2026-03-09'),
(6917,52,494,27,45,72,'A',5,'published','2026-03-10',1,'2026-03-10'),
(6918,52,495,0,0,0,'F',0,'published','2026-03-10',1,'2026-03-10'),
(6919,52,496,0,0,0,'F',0,'published','2026-03-10',1,'2026-03-10'),
(6920,52,497,0,0,0,'F',0,'published','2026-03-10',1,'2026-03-10'),
(6921,31,492,28,38,66,'B',4,'published','2026-03-10',1,'2026-03-10'),
(6922,31,493,29,22,51,'C',3,'published','2026-03-10',1,'2026-03-10'),
(6923,52,500,0,0,0,'F',0,'published','2026-03-10',1,'2026-03-10'),
(6924,52,499,0,0,0,'F',0,'published','2026-03-10',1,'2026-03-10'),
(6925,52,501,0,0,0,'F',0,'published','2026-03-10',1,'2026-03-10'),
(6926,52,649,0,0,0,'F',0,'published','2026-03-10',1,'2026-03-10'),
(6927,132,471,0,0,0,'F',0,'published','2026-03-10',1,'2026-03-10'),
(6928,132,472,0,0,0,'F',0,'published','2026-03-10',1,'2026-03-10'),
(6929,132,473,0,0,0,'F',0,'published','2026-03-10',1,'2026-03-10'),
(6930,132,474,0,0,0,'F',0,'published','2026-03-10',1,'2026-03-10'),
(6931,132,475,0,0,0,'F',0,'published','2026-03-10',1,'2026-03-10'),
(6932,132,476,0,0,0,'F',0,'published','2026-03-10',1,'2026-03-10'),
(6933,132,479,0,0,0,'F',0,'published','2026-03-10',1,'2026-03-10'),
(6934,132,480,0,0,0,'F',0,'published','2026-03-10',1,'2026-03-10'),
(6935,129,612,25,40,65,'B',4,'published','2026-03-10',1,'2026-03-10'),
(6936,129,471,0,0,0,'F',0,'published','2026-03-10',1,'2026-03-10'),
(6937,129,472,0,0,0,'F',0,'published','2026-03-10',1,'2026-03-10'),
(6938,129,473,0,0,0,'F',0,'published','2026-03-10',1,'2026-03-10'),
(6939,129,474,0,0,0,'F',0,'published','2026-03-10',1,'2026-03-10'),
(6940,129,475,0,0,0,'F',0,'published','2026-03-10',1,'2026-03-10'),
(6941,129,476,0,0,0,'F',0,'published','2026-03-10',1,'2026-03-10'),
(6942,129,479,0,0,0,'F',0,'published','2026-03-10',1,'2026-03-10'),
(6943,129,480,0,0,0,'F',0,'published','2026-03-10',1,'2026-03-10'),
(6944,121,1,0,0,0,'F',0,'published','2026-03-11',1,'2026-03-11'),
(6945,121,591,0,0,0,'F',0,'published','2026-03-11',1,'2026-03-11'),
(6946,121,587,0,0,0,'F',0,'published','2026-03-11',1,'2026-03-11'),
(6947,121,590,0,0,0,'F',0,'published','2026-03-11',1,'2026-03-11'),
(6948,121,592,0,0,0,'F',0,'published','2026-03-11',1,'2026-03-11'),
(6949,121,586,0,0,0,'F',0,'published','2026-03-11',1,'2026-03-11'),
(6950,121,583,0,0,0,'F',0,'published','2026-03-11',1,'2026-03-11'),
(6951,121,585,0,0,0,'F',0,'published','2026-03-11',1,'2026-03-11'),
(6952,121,593,0,0,0,'F',0,'published','2026-03-11',1,'2026-03-11'),
(6953,141,471,0,0,0,'F',0,'published','2026-03-11',1,'2026-03-11'),
(6954,141,472,0,0,0,'F',0,'published','2026-03-11',1,'2026-03-11'),
(6955,141,474,0,0,0,'F',0,'published','2026-03-11',1,'2026-03-11'),
(6956,141,475,0,0,0,'F',0,'published','2026-03-11',1,'2026-03-11'),
(6957,141,476,0,0,0,'F',0,'published','2026-03-11',1,'2026-03-11'),
(6958,141,478,0,0,0,'F',0,'published','2026-03-11',1,'2026-03-11'),
(6959,141,479,0,0,0,'F',0,'published','2026-03-11',1,'2026-03-11'),
(6960,141,480,0,0,0,'F',0,'published','2026-03-11',1,'2026-03-11'),
(6961,388,574,20,39,59,'C',3,'published','2026-03-13',1,'2026-03-13'),
(6962,388,575,28,54,82,'A',5,'published','2026-03-13',1,'2026-03-13'),
(6963,388,576,27,17,44,'E',1,'published','2026-03-13',1,'2026-03-13'),
(6964,388,577,26,55,81,'A',5,'published','2026-03-13',1,'2026-03-13'),
(6965,388,578,20,41,61,'B',4,'published','2026-03-13',1,'2026-03-13'),
(6966,388,579,20,27,47,'D',2,'published','2026-03-13',1,'2026-03-13'),
(6967,388,580,26,42,68,'B',4,'published','2026-03-13',1,'2026-03-13'),
(6968,388,581,27,40,67,'B',4,'published','2026-03-13',1,'2026-03-13'),
(6969,388,582,0,0,0,'F',0,'published','2026-03-13',1,'2026-03-13'),
(6970,389,574,20,32,52,'C',3,'published','2026-03-13',1,'2026-03-13'),
(6971,389,575,28,47,75,'A',5,'published','2026-03-13',1,'2026-03-13'),
(6972,389,576,28,32,60,'B',4,'published','2026-03-13',1,'2026-03-13'),
(6973,389,577,23,46,69,'B',4,'published','2026-03-13',1,'2026-03-13'),
(6974,389,578,20,47,67,'B',4,'published','2026-03-13',1,'2026-03-13'),
(6975,389,579,20,34,54,'C',3,'published','2026-03-13',1,'2026-03-13'),
(6976,389,580,28,38,66,'B',4,'published','2026-03-13',1,'2026-03-13'),
(6977,389,581,28,26,54,'C',3,'published','2026-03-13',1,'2026-03-13'),
(6978,389,582,0,0,0,'F',0,'published','2026-03-13',1,'2026-03-13'),
(6979,391,571,0,0,0,'F',0,'published','2026-03-13',1,'2026-03-13'),
(6980,391,567,23,30,53,'C',3,'published','2026-03-13',1,'2026-03-13'),
(6981,391,564,25,30,55,'C',3,'published','2026-03-13',1,'2026-03-13'),
(6982,391,568,23,52,75,'A',5,'published','2026-03-13',1,'2026-03-13'),
(6983,391,563,27,27,54,'C',3,'published','2026-03-13',1,'2026-03-13'),
(6984,391,566,14,34,48,'D',2,'published','2026-03-13',1,'2026-03-13'),
(6985,391,572,15,48,63,'B',4,'published','2026-03-13',1,'2026-03-13'),
(6986,391,569,12,45,57,'C',3,'published','2026-03-13',1,'2026-03-13'),
(6987,391,565,27,51,78,'A',5,'published','2026-03-13',1,'2026-03-13'),
(6988,391,570,27,40,67,'B',4,'published','2026-03-13',1,'2026-03-13'),
(6989,391,562,15,36,51,'C',3,'published','2026-03-13',1,'2026-03-13'),
(6990,391,561,12,20,32,'F',0,'published','2026-03-13',1,'2026-03-13'),
(6991,391,560,30,46,76,'A',5,'published','2026-03-13',1,'2026-03-13'),
(6992,392,571,0,0,0,'F',0,'published','2026-03-13',1,'2026-03-13'),
(6993,392,567,22,11,33,'F',0,'published','2026-03-13',1,'2026-03-13'),
(6994,392,564,20,10,30,'F',0,'published','2026-03-13',1,'2026-03-13'),
(6995,392,568,24,37,61,'B',4,'published','2026-03-13',1,'2026-03-13'),
(6996,392,563,27,25,52,'C',3,'published','2026-03-13',1,'2026-03-13'),
(6997,392,566,12,14,26,'F',0,'published','2026-03-13',1,'2026-03-13'),
(6998,392,572,0,0,0,'F',0,'published','2026-03-13',1,'2026-03-13'),
(6999,392,569,10,59,69,'B',4,'published','2026-03-13',1,'2026-03-13'),
(7000,392,565,24,52,76,'A',5,'published','2026-03-13',1,'2026-03-13');
INSERT INTO `results` (`id`,`student_id`,`course_offering_id`,`continuous_assessment`,`exam_score`,`total_score`,`letter_grade`,`grade_point`,`status`,`published_at`,`updated_by`,`updated_at`) VALUES
(7001,392,570,28,32,60,'B',4,'published','2026-03-13',1,'2026-03-13'),
(7002,392,562,0,0,0,'F',0,'published','2026-03-13',1,'2026-03-13'),
(7003,392,561,14,21,35,'F',0,'published','2026-03-13',1,'2026-03-13'),
(7004,392,560,15,38,53,'C',3,'published','2026-03-13',1,'2026-03-13'),
(7005,393,567,23,16,39,'F',0,'published','2026-03-13',1,'2026-03-13'),
(7006,393,571,0,0,0,'F',0,'published','2026-03-13',1,'2026-03-13'),
(7007,393,564,25,10,35,'F',0,'published','2026-03-13',1,'2026-03-13'),
(7008,393,568,20,20,40,'E',1,'published','2026-03-13',1,'2026-03-13'),
(7009,393,563,26,19,45,'D',2,'published','2026-03-13',1,'2026-03-13'),
(7010,393,572,12,38,50,'C',3,'published','2026-03-13',1,'2026-03-13'),
(7011,393,566,12,29,41,'E',1,'published','2026-03-13',1,'2026-03-13'),
(7012,393,569,19,31,50,'C',3,'published','2026-03-13',1,'2026-03-13'),
(7013,393,565,20,49,69,'B',4,'published','2026-03-13',1,'2026-03-13'),
(7014,393,570,26,34,60,'B',4,'published','2026-03-13',1,'2026-03-13'),
(7015,393,562,15,25,40,'E',1,'published','2026-03-13',1,'2026-03-13'),
(7016,393,561,12,25,37,'F',0,'published','2026-03-13',1,'2026-03-13'),
(7017,393,560,30,36,66,'B',4,'published','2026-03-13',1,'2026-03-13'),
(7018,390,571,0,0,0,'F',0,'published','2026-03-13',1,'2026-03-13'),
(7019,390,567,0,0,0,'F',0,'published','2026-03-13',1,'2026-03-13'),
(7020,390,564,0,0,0,'F',0,'published','2026-03-13',1,'2026-03-13'),
(7021,390,568,0,0,0,'F',0,'published','2026-03-13',1,'2026-03-13'),
(7022,390,563,0,0,0,'F',0,'published','2026-03-13',1,'2026-03-13'),
(7023,390,566,0,0,0,'F',0,'published','2026-03-13',1,'2026-03-13'),
(7024,390,572,0,0,0,'F',0,'published','2026-03-13',1,'2026-03-13'),
(7025,390,569,0,0,0,'F',0,'published','2026-03-13',1,'2026-03-13'),
(7026,390,565,0,0,0,'F',0,'published','2026-03-13',1,'2026-03-13'),
(7027,390,570,0,0,0,'F',0,'published','2026-03-13',1,'2026-03-13'),
(7028,390,562,0,0,0,'F',0,'published','2026-03-13',1,'2026-03-13'),
(7029,390,561,0,0,0,'F',0,'published','2026-03-13',1,'2026-03-13'),
(7030,390,560,0,0,0,'F',0,'published','2026-03-13',1,'2026-03-13'),
(7031,394,571,0,0,0,'F',0,'published','2026-03-13',1,'2026-03-13'),
(7032,394,567,21,24,45,'D',2,'published','2026-03-13',1,'2026-03-13'),
(7033,394,564,26,15,41,'E',1,'published','2026-03-13',1,'2026-03-13'),
(7034,394,568,21,39,60,'B',4,'published','2026-03-13',1,'2026-03-13'),
(7035,394,563,28,28,56,'C',3,'published','2026-03-13',1,'2026-03-13'),
(7036,394,566,12,37,49,'D',2,'published','2026-03-13',1,'2026-03-13'),
(7037,394,572,10,30,40,'E',1,'published','2026-03-13',1,'2026-03-13'),
(7038,394,569,15,40,55,'C',3,'published','2026-03-13',1,'2026-03-13'),
(7039,394,565,27,41,68,'B',4,'published','2026-03-13',1,'2026-03-13'),
(7040,394,570,28,33,61,'B',4,'published','2026-03-13',1,'2026-03-13'),
(7041,394,562,15,35,50,'C',3,'published','2026-03-13',1,'2026-03-13'),
(7042,394,561,14,33,47,'D',2,'published','2026-03-13',1,'2026-03-13'),
(7043,394,560,27,24,51,'C',3,'published','2026-03-13',1,'2026-03-13'),
(7044,395,571,0,0,0,'F',0,'published','2026-03-13',1,'2026-03-13'),
(7045,395,567,22,28,50,'C',3,'published','2026-03-13',1,'2026-03-13'),
(7046,395,564,0,0,0,'F',0,'published','2026-03-13',1,'2026-03-13'),
(7047,395,568,22,50,72,'A',5,'published','2026-03-13',1,'2026-03-13'),
(7048,395,563,0,0,0,'F',0,'published','2026-03-13',1,'2026-03-13'),
(7049,395,566,13,30,43,'E',1,'published','2026-03-13',1,'2026-03-13'),
(7050,395,572,10,58,68,'B',4,'published','2026-03-13',1,'2026-03-13'),
(7051,395,569,15,48,63,'B',4,'published','2026-03-13',1,'2026-03-13'),
(7052,395,565,23,56,79,'A',5,'published','2026-03-13',1,'2026-03-13'),
(7053,395,570,26,43,69,'B',4,'published','2026-03-13',1,'2026-03-13'),
(7054,395,562,15,43,58,'C',3,'published','2026-03-13',1,'2026-03-13'),
(7055,395,561,12,38,50,'C',3,'published','2026-03-13',1,'2026-03-13'),
(7056,395,560,25,26,51,'C',3,'published','2026-03-13',1,'2026-03-13'),
(7057,396,574,0,0,0,'F',0,'published','2026-03-13',1,'2026-03-13'),
(7058,396,576,0,0,0,'F',0,'published','2026-03-13',1,'2026-03-13'),
(7059,396,575,0,0,0,'F',0,'published','2026-03-13',1,'2026-03-13'),
(7060,396,577,0,0,0,'F',0,'published','2026-03-13',1,'2026-03-13'),
(7061,396,580,0,0,0,'F',0,'published','2026-03-13',1,'2026-03-13'),
(7062,396,581,0,0,0,'F',0,'published','2026-03-13',1,'2026-03-13'),
(7063,396,582,0,0,0,'F',0,'published','2026-03-13',1,'2026-03-13'),
(7064,396,578,0,0,0,'F',0,'published','2026-03-13',1,'2026-03-13'),
(7065,396,579,0,0,0,'F',0,'published','2026-03-13',1,'2026-03-13'),
(7066,398,574,20,44,64,'B',4,'published','2026-03-13',1,'2026-03-13'),
(7067,398,575,25,65,90,'A',5,'published','2026-03-13',1,'2026-03-13'),
(7068,398,576,30,44,74,'A',5,'published','2026-03-13',1,'2026-03-13'),
(7069,398,577,20,65,85,'A',5,'published','2026-03-13',1,'2026-03-13'),
(7070,398,578,20,59,79,'A',5,'published','2026-03-13',1,'2026-03-13'),
(7071,398,579,20,47,67,'B',4,'published','2026-03-13',1,'2026-03-13'),
(7072,398,580,0,0,0,'F',0,'published','2026-03-13',1,'2026-03-13'),
(7073,398,581,27,44,71,'A',5,'published','2026-03-13',1,'2026-03-13'),
(7074,398,582,0,0,0,'F',0,'published','2026-03-13',1,'2026-03-13'),
(7075,397,574,20,37,57,'C',3,'published','2026-03-13',1,'2026-03-13'),
(7076,397,575,24,36,60,'B',4,'published','2026-03-13',1,'2026-03-13'),
(7077,397,577,22,35,57,'C',3,'published','2026-03-13',1,'2026-03-13'),
(7078,397,576,27,31,58,'C',3,'published','2026-03-13',1,'2026-03-13'),
(7079,397,579,20,25,45,'D',2,'published','2026-03-13',1,'2026-03-13'),
(7080,397,578,20,34,54,'C',3,'published','2026-03-13',1,'2026-03-13'),
(7081,397,580,26,25,51,'C',3,'published','2026-03-13',1,'2026-03-13'),
(7082,397,581,26,29,55,'C',3,'published','2026-03-13',1,'2026-03-13'),
(7083,397,582,0,0,0,'F',0,'published','2026-03-13',1,'2026-03-13'),
(7084,399,538,0,0,0,'F',0,'published','2026-03-13',1,'2026-03-13'),
(7085,399,539,30,47,77,'A',5,'published','2026-03-13',1,'2026-03-13'),
(7086,399,540,26,41,67,'B',4,'published','2026-03-13',1,'2026-03-13'),
(7087,399,541,27,0,27,'F',0,'published','2026-03-13',1,'2026-03-13'),
(7088,399,542,27,36,63,'B',4,'published','2026-03-13',1,'2026-03-13'),
(7089,399,543,11,25,36,'F',0,'published','2026-03-13',1,'2026-03-13'),
(7090,399,544,17,45,62,'B',4,'published','2026-03-13',1,'2026-03-13'),
(7091,399,545,25,40,65,'B',4,'published','2026-03-13',1,'2026-03-13'),
(7092,401,571,0,0,0,'F',0,'published','2026-03-13',1,'2026-03-13'),
(7093,401,564,0,0,0,'F',0,'published','2026-03-13',1,'2026-03-13'),
(7094,401,567,21,36,57,'C',3,'published','2026-03-13',1,'2026-03-13'),
(7095,401,568,22,28,50,'C',3,'published','2026-03-13',1,'2026-03-13'),
(7096,401,563,27,29,56,'C',3,'published','2026-03-13',1,'2026-03-13'),
(7097,401,566,14,21,35,'F',0,'published','2026-03-13',1,'2026-03-13'),
(7098,401,572,15,35,50,'C',3,'published','2026-03-13',1,'2026-03-13'),
(7099,401,569,16,34,50,'C',3,'published','2026-03-13',1,'2026-03-13'),
(7100,401,565,32,40,72,'A',5,'published','2026-03-13',1,'2026-03-13'),
(7101,401,570,27,32,59,'C',3,'published','2026-03-13',1,'2026-03-13'),
(7102,401,562,0,0,0,'F',0,'published','2026-03-13',1,'2026-03-13'),
(7103,401,561,12,40,52,'C',3,'published','2026-03-13',1,'2026-03-13'),
(7104,401,560,28,33,61,'B',4,'published','2026-03-13',1,'2026-03-13'),
(7105,30,465,20,27,47,'D',2,'published','2026-03-15',1,'2026-03-15'),
(7106,384,650,0,0,0,'F',0,'published','2026-03-16',1,'2026-03-16'),
(7107,92,613,25,42,67,'B',4,'published','2026-03-16',1,'2026-03-16'),
(7108,92,614,20,70,90,'A',5,'published','2026-03-16',1,'2026-03-16'),
(7109,92,615,11,10,21,'F',0,'published','2026-03-16',1,'2026-03-16'),
(7110,92,451,15,28,43,'E',1,'published','2026-03-16',1,'2026-03-16'),
(7111,92,617,24,25,49,'D',2,'published','2026-03-16',1,'2026-03-16'),
(7112,92,618,0,0,0,'F',0,'published','2026-03-16',1,'2026-03-16'),
(7113,95,492,24,18,42,'E',1,'published','2026-03-16',1,'2026-03-16'),
(7114,95,493,0,0,0,'F',0,'published','2026-03-16',1,'2026-03-16'),
(7115,337,650,0,0,0,'F',0,'published','2026-03-16',1,'2026-03-16'),
(7116,352,651,0,0,0,'F',0,'published','2026-03-17',1,'2026-03-17'),
(7117,352,652,0,0,0,'F',0,'published','2026-03-17',1,'2026-03-17'),
(7118,352,653,0,0,0,'F',0,'published','2026-03-17',1,'2026-03-17'),
(7119,352,654,0,0,0,'F',0,'published','2026-03-17',1,'2026-03-17'),
(7120,352,655,0,0,0,'F',0,'published','2026-03-17',1,'2026-03-17'),
(7121,352,650,0,0,0,'F',0,'published','2026-03-17',1,'2026-03-17'),
(7122,352,479,0,0,0,'F',0,'published','2026-03-17',1,'2026-03-17'),
(7123,41,656,0,0,0,'F',0,'published','2026-03-18',1,'2026-03-18'),
(7124,41,657,0,0,0,'F',0,'published','2026-03-18',1,'2026-03-18'),
(7125,41,658,0,0,0,'F',0,'published','2026-03-18',1,'2026-03-18'),
(7126,41,659,0,0,0,'F',0,'published','2026-03-18',1,'2026-03-18'),
(7127,41,660,0,0,0,'F',0,'published','2026-03-18',1,'2026-03-18'),
(7128,21,497,0,0,0,'F',0,'published','2026-03-18',1,'2026-03-18'),
(7129,21,500,0,0,0,'F',0,'published','2026-03-18',1,'2026-03-18'),
(7130,21,501,0,0,0,'F',0,'published','2026-03-18',1,'2026-03-18'),
(7131,21,649,0,0,0,'F',0,'published','2026-03-18',1,'2026-03-18'),
(7132,128,471,0,0,0,'F',0,'published','2026-03-18',1,'2026-03-18'),
(7133,128,472,0,0,0,'F',0,'published','2026-03-18',1,'2026-03-18'),
(7134,128,473,0,0,0,'F',0,'published','2026-03-18',1,'2026-03-18'),
(7135,128,474,0,0,0,'F',0,'published','2026-03-18',1,'2026-03-18'),
(7136,128,476,0,0,0,'F',0,'published','2026-03-18',1,'2026-03-18'),
(7137,128,480,0,0,0,'F',0,'published','2026-03-18',1,'2026-03-18'),
(7138,21,499,0,0,0,'F',0,'published','2026-03-18',1,'2026-03-18'),
(7139,21,496,0,0,0,'F',0,'published','2026-03-18',1,'2026-03-18'),
(7140,21,661,0,0,0,'F',0,'published','2026-03-18',1,'2026-03-18'),
(7141,21,492,28,45,73,'A',5,'published','2026-03-18',1,'2026-03-18'),
(7142,21,662,28,70,98,'A',5,'published','2026-03-18',1,'2026-03-18'),
(7143,21,663,30,68,98,'A',5,'published','2026-03-18',1,'2026-03-18'),
(7144,21,493,30,43,73,'A',5,'published','2026-03-18',1,'2026-03-18'),
(7145,21,664,26,55,81,'A',5,'published','2026-03-18',1,'2026-03-18'),
(7146,21,665,0,0,0,'F',0,'published','2026-03-18',1,'2026-03-18'),
(7147,103,492,29,33,62,'B',4,'published','2026-03-18',1,'2026-03-18'),
(7148,103,493,0,0,0,'F',0,'published','2026-03-18',1,'2026-03-18'),
(7149,103,663,16,44,60,'B',4,'published','2026-03-18',1,'2026-03-18'),
(7150,103,664,27,34,61,'B',4,'published','2026-03-18',1,'2026-03-18'),
(7151,339,666,0,0,0,'F',0,'published','2026-03-20',1,'2026-03-20'),
(7152,339,652,0,0,0,'F',0,'published','2026-03-20',1,'2026-03-20'),
(7153,339,667,0,0,0,'F',0,'published','2026-03-20',1,'2026-03-20'),
(7154,339,668,0,0,0,'F',0,'published','2026-03-20',1,'2026-03-20'),
(7155,339,654,0,0,0,'F',0,'published','2026-03-20',1,'2026-03-20'),
(7156,339,669,0,0,0,'F',0,'published','2026-03-20',1,'2026-03-20'),
(7157,339,650,0,0,0,'F',0,'published','2026-03-20',1,'2026-03-20'),
(7158,339,670,0,0,0,'F',0,'published','2026-03-20',1,'2026-03-20'),
(7159,339,671,0,0,0,'F',0,'published','2026-03-20',1,'2026-03-20'),
(7160,339,672,0,0,0,'F',0,'published','2026-03-20',1,'2026-03-20'),
(7161,99,441,25,25,50,'C',3,'published','2026-03-20',1,'2026-03-20'),
(7162,99,442,28,16,44,'E',1,'published','2026-03-20',1,'2026-03-20'),
(7163,99,443,0,0,0,'F',0,'published','2026-03-20',1,'2026-03-20'),
(7164,99,446,20,47,67,'B',4,'published','2026-03-20',1,'2026-03-20'),
(7165,99,444,0,0,0,'F',0,'published','2026-03-20',1,'2026-03-20'),
(7166,99,445,17,21,38,'F',0,'published','2026-03-20',1,'2026-03-20'),
(7167,99,573,15,10,25,'F',0,'published','2026-03-20',1,'2026-03-20'),
(7168,354,666,0,0,0,'F',0,'published','2026-03-20',1,'2026-03-20'),
(7169,354,667,0,0,0,'F',0,'published','2026-03-20',1,'2026-03-20'),
(7170,354,668,0,0,0,'F',0,'published','2026-03-20',1,'2026-03-20'),
(7171,354,654,0,0,0,'F',0,'published','2026-03-20',1,'2026-03-20'),
(7172,354,650,0,0,0,'F',0,'published','2026-03-20',1,'2026-03-20'),
(7173,354,671,0,0,0,'F',0,'published','2026-03-20',1,'2026-03-20'),
(7174,354,669,0,0,0,'F',0,'published','2026-03-20',1,'2026-03-20'),
(7175,354,670,0,0,0,'F',0,'published','2026-03-20',1,'2026-03-20'),
(7176,354,672,0,0,0,'F',0,'published','2026-03-20',1,'2026-03-20'),
(7177,354,652,0,0,0,'F',0,'published','2026-03-20',1,'2026-03-20'),
(7178,154,673,0,0,0,'F',0,'published','2026-03-21',1,'2026-03-21'),
(7179,154,674,0,0,0,'F',0,'published','2026-03-21',1,'2026-03-21'),
(7180,145,630,0,0,0,'F',0,'published','2026-03-21',1,'2026-03-21'),
(7181,154,675,0,0,0,'F',0,'published','2026-03-21',1,'2026-03-21'),
(7182,154,676,0,0,0,'F',0,'published','2026-03-21',1,'2026-03-21'),
(7183,154,677,0,0,0,'F',0,'published','2026-03-21',1,'2026-03-21'),
(7184,154,678,0,0,0,'F',0,'published','2026-03-21',1,'2026-03-21'),
(7185,145,638,0,0,0,'F',0,'published','2026-03-21',1,'2026-03-21'),
(7186,145,637,0,0,0,'F',0,'published','2026-03-21',1,'2026-03-21'),
(7187,145,636,0,0,0,'F',0,'published','2026-03-21',1,'2026-03-21'),
(7188,154,679,0,0,0,'F',0,'published','2026-03-21',1,'2026-03-21'),
(7189,145,634,0,0,0,'F',0,'published','2026-03-21',1,'2026-03-21'),
(7190,154,680,0,0,0,'F',0,'published','2026-03-21',1,'2026-03-21'),
(7191,145,633,0,0,0,'F',0,'published','2026-03-21',1,'2026-03-21'),
(7192,154,681,0,0,0,'F',0,'published','2026-03-21',1,'2026-03-21'),
(7193,145,632,0,0,0,'F',0,'published','2026-03-21',1,'2026-03-21'),
(7194,154,682,0,0,0,'F',0,'published','2026-03-21',1,'2026-03-21'),
(7195,145,631,0,0,0,'F',0,'published','2026-03-21',1,'2026-03-21'),
(7196,197,683,0,0,0,'F',0,'published','2026-03-21',1,'2026-03-21'),
(7197,197,458,0,0,0,'F',0,'published','2026-03-21',1,'2026-03-21'),
(7198,197,460,0,0,0,'F',0,'published','2026-03-21',1,'2026-03-21'),
(7199,197,459,0,0,0,'F',0,'published','2026-03-21',1,'2026-03-21'),
(7200,197,684,0,0,0,'F',0,'published','2026-03-21',1,'2026-03-21'),
(7201,197,685,0,0,0,'F',0,'published','2026-03-21',1,'2026-03-21'),
(7202,82,465,20,35,55,'C',3,'published','2026-03-23',1,'2026-03-23'),
(7203,5,465,20,20,40,'E',1,'published','2026-03-23',1,'2026-03-23'),
(7204,343,666,0,0,0,'F',0,'published','2026-03-23',1,'2026-03-23'),
(7205,343,652,0,0,0,'F',0,'published','2026-03-23',1,'2026-03-23'),
(7206,343,667,0,0,0,'F',0,'published','2026-03-23',1,'2026-03-23'),
(7207,343,668,0,0,0,'F',0,'published','2026-03-23',1,'2026-03-23'),
(7208,343,654,0,0,0,'F',0,'published','2026-03-23',1,'2026-03-23'),
(7209,343,669,0,0,0,'F',0,'published','2026-03-23',1,'2026-03-23'),
(7210,343,650,0,0,0,'F',0,'published','2026-03-23',1,'2026-03-23'),
(7211,343,670,0,0,0,'F',0,'published','2026-03-23',1,'2026-03-23'),
(7212,343,671,0,0,0,'F',0,'published','2026-03-23',1,'2026-03-23'),
(7213,343,672,0,0,0,'F',0,'published','2026-03-23',1,'2026-03-23'),
(7214,161,686,20,65,85,'A',5,'published','2026-03-23',1,'2026-03-23'),
(7215,161,687,22,38,60,'B',4,'published','2026-03-23',1,'2026-03-23'),
(7216,161,688,25,60,85,'A',5,'published','2026-03-23',1,'2026-03-23'),
(7217,161,689,12,65,77,'A',5,'published','2026-03-23',1,'2026-03-23'),
(7218,161,690,25,54,79,'A',5,'published','2026-03-23',1,'2026-03-23'),
(7219,161,691,0,0,0,'F',0,'published','2026-03-23',1,'2026-03-23'),
(7220,161,692,30,43,73,'A',5,'published','2026-03-23',1,'2026-03-23'),
(7221,161,693,20,53,73,'A',5,'published','2026-03-23',1,'2026-03-23'),
(7222,161,694,21,44,65,'B',4,'published','2026-03-23',1,'2026-03-23'),
(7223,161,695,0,0,0,'F',0,'published','2026-03-23',1,'2026-03-23'),
(7224,161,696,0,0,0,'F',0,'published','2026-03-23',1,'2026-03-23'),
(7225,161,697,0,0,0,'F',0,'published','2026-03-23',1,'2026-03-23'),
(7226,161,698,0,0,0,'F',0,'published','2026-03-23',1,'2026-03-23'),
(7227,161,699,0,0,0,'F',0,'published','2026-03-23',1,'2026-03-23'),
(7228,161,700,0,0,0,'F',0,'published','2026-03-23',1,'2026-03-23'),
(7229,348,666,0,0,0,'F',0,'published','2026-03-24',1,'2026-03-24'),
(7230,348,652,0,0,0,'F',0,'published','2026-03-24',1,'2026-03-24'),
(7231,348,672,0,0,0,'F',0,'published','2026-03-24',1,'2026-03-24'),
(7232,348,671,0,0,0,'F',0,'published','2026-03-24',1,'2026-03-24'),
(7233,348,670,0,0,0,'F',0,'published','2026-03-24',1,'2026-03-24'),
(7234,348,650,0,0,0,'F',0,'published','2026-03-24',1,'2026-03-24'),
(7235,348,654,0,0,0,'F',0,'published','2026-03-24',1,'2026-03-24'),
(7236,348,668,0,0,0,'F',0,'published','2026-03-24',1,'2026-03-24'),
(7237,348,667,0,0,0,'F',0,'published','2026-03-24',1,'2026-03-24'),
(7238,352,668,0,0,0,'F',0,'published','2026-03-24',1,'2026-03-24'),
(7239,352,672,0,0,0,'F',0,'published','2026-03-24',1,'2026-03-24'),
(7240,352,671,0,0,0,'F',0,'published','2026-03-24',1,'2026-03-24'),
(7241,344,666,0,0,0,'F',0,'published','2026-03-25',1,'2026-03-25'),
(7242,344,652,0,0,0,'F',0,'published','2026-03-25',1,'2026-03-25'),
(7243,344,667,0,0,0,'F',0,'published','2026-03-25',1,'2026-03-25'),
(7244,344,668,0,0,0,'F',0,'published','2026-03-25',1,'2026-03-25'),
(7245,344,654,0,0,0,'F',0,'published','2026-03-25',1,'2026-03-25'),
(7246,344,669,0,0,0,'F',0,'published','2026-03-25',1,'2026-03-25'),
(7247,344,650,0,0,0,'F',0,'published','2026-03-25',1,'2026-03-25'),
(7248,344,670,0,0,0,'F',0,'published','2026-03-25',1,'2026-03-25'),
(7249,344,671,0,0,0,'F',0,'published','2026-03-25',1,'2026-03-25'),
(7250,344,672,0,0,0,'F',0,'published','2026-03-25',1,'2026-03-25');
INSERT INTO `results` (`id`,`student_id`,`course_offering_id`,`continuous_assessment`,`exam_score`,`total_score`,`letter_grade`,`grade_point`,`status`,`published_at`,`updated_by`,`updated_at`) VALUES
(7251,109,615,9,21,30,'F',0,'published','2026-03-25',1,'2026-03-25'),
(7252,109,616,0,0,0,'F',0,'published','2026-03-25',1,'2026-03-25'),
(7253,109,451,15,30,45,'D',2,'published','2026-03-25',1,'2026-03-25'),
(7254,109,617,20,32,52,'C',3,'published','2026-03-25',1,'2026-03-25'),
(7255,109,701,0,0,0,'F',0,'published','2026-03-25',1,'2026-03-25'),
(7256,109,618,0,0,0,'F',0,'published','2026-03-25',1,'2026-03-25'),
(7257,109,611,0,0,0,'F',0,'published','2026-03-25',1,'2026-03-25'),
(7258,109,613,22,50,72,'A',5,'published','2026-03-25',1,'2026-03-25'),
(7259,109,614,15,70,85,'A',5,'published','2026-03-25',1,'2026-03-25'),
(7260,98,502,0,0,0,'F',0,'published','2026-03-25',1,'2026-03-25'),
(7261,98,503,0,0,0,'F',0,'published','2026-03-25',1,'2026-03-25'),
(7262,98,504,0,0,0,'F',0,'published','2026-03-25',1,'2026-03-25'),
(7263,98,505,0,0,0,'F',0,'published','2026-03-25',1,'2026-03-25'),
(7264,98,620,0,0,0,'F',0,'published','2026-03-25',1,'2026-03-25'),
(7265,98,506,0,0,0,'F',0,'published','2026-03-25',1,'2026-03-25'),
(7266,151,630,0,0,0,'F',0,'published','2026-03-26',1,'2026-03-26'),
(7267,151,631,0,0,0,'F',0,'published','2026-03-26',1,'2026-03-26'),
(7268,151,632,0,0,0,'F',0,'published','2026-03-26',1,'2026-03-26'),
(7269,151,633,0,0,0,'F',0,'published','2026-03-26',1,'2026-03-26'),
(7270,151,634,0,0,0,'F',0,'published','2026-03-26',1,'2026-03-26'),
(7271,151,636,0,0,0,'F',0,'published','2026-03-26',1,'2026-03-26'),
(7272,151,637,0,0,0,'F',0,'published','2026-03-26',1,'2026-03-26'),
(7273,151,638,0,0,0,'F',0,'published','2026-03-26',1,'2026-03-26'),
(7274,151,461,0,0,0,'F',0,'published','2026-03-26',1,'2026-03-26'),
(7275,151,462,0,0,0,'F',0,'published','2026-03-26',1,'2026-03-26'),
(7276,151,463,25,30,55,'C',3,'published','2026-03-26',1,'2026-03-26'),
(7277,151,464,0,0,0,'F',0,'published','2026-03-26',1,'2026-03-26'),
(7278,151,466,16,35,51,'C',3,'published','2026-03-26',1,'2026-03-26'),
(7279,151,467,0,0,0,'F',0,'published','2026-03-26',1,'2026-03-26'),
(7280,151,468,0,0,0,'F',0,'published','2026-03-26',1,'2026-03-26'),
(7281,151,469,0,0,0,'F',0,'published','2026-03-26',1,'2026-03-26'),
(7282,11,702,0,0,0,'F',0,'published','2026-03-26',1,'2026-03-26'),
(7283,11,703,0,0,0,'F',0,'published','2026-03-26',1,'2026-03-26'),
(7284,11,704,0,0,0,'F',0,'published','2026-03-26',1,'2026-03-26'),
(7285,11,705,0,0,0,'F',0,'published','2026-03-26',1,'2026-03-26'),
(7286,11,96,0,0,0,'F',0,'published','2026-03-26',1,'2026-03-26'),
(7287,11,706,0,0,0,'F',0,'published','2026-03-26',1,'2026-03-26'),
(7288,11,707,0,0,0,'F',0,'published','2026-03-26',1,'2026-03-26'),
(7289,11,708,0,0,0,'F',0,'published','2026-03-26',1,'2026-03-26'),
(7290,11,625,0,0,0,'F',0,'published','2026-03-26',1,'2026-03-26'),
(7291,156,513,30,55,85,'A',5,'published','2026-03-26',1,'2026-03-26'),
(7292,156,514,20,48,68,'B',4,'published','2026-03-26',1,'2026-03-26'),
(7293,156,536,21,37,58,'C',3,'published','2026-03-26',1,'2026-03-26'),
(7294,156,515,28,30,58,'C',3,'published','2026-03-26',1,'2026-03-26'),
(7295,156,516,25,36,61,'B',4,'published','2026-03-26',1,'2026-03-26'),
(7296,156,517,0,0,0,'F',0,'published','2026-03-26',1,'2026-03-26'),
(7297,156,518,20,59,79,'A',5,'published','2026-03-26',1,'2026-03-26'),
(7298,12,441,25,36,61,'B',4,'published','2026-03-26',1,'2026-03-26'),
(7299,156,519,22,28,50,'C',3,'published','2026-03-26',1,'2026-03-26'),
(7300,156,520,25,32,57,'C',3,'published','2026-03-26',1,'2026-03-26'),
(7301,41,709,0,0,0,'F',0,'published','2026-03-27',1,'2026-03-27'),
(7302,41,710,0,0,0,'F',0,'published','2026-03-27',1,'2026-03-27'),
(7303,41,711,0,0,0,'F',0,'published','2026-03-27',1,'2026-03-27'),
(7304,41,422,0,0,0,'F',0,'published','2026-03-27',1,'2026-03-27'),
(7305,41,712,0,0,0,'F',0,'published','2026-03-27',1,'2026-03-27'),
(7306,41,713,0,0,0,'F',0,'published','2026-03-27',1,'2026-03-27'),
(7307,41,714,0,0,0,'F',0,'published','2026-03-27',1,'2026-03-27'),
(7308,31,664,27,42,69,'B',4,'published','2026-03-27',1,'2026-03-27'),
(7309,31,665,0,0,0,'F',0,'published','2026-03-27',1,'2026-03-27'),
(7310,31,662,20,42,62,'B',4,'published','2026-03-27',1,'2026-03-27'),
(7311,31,663,18,41,59,'C',3,'published','2026-03-27',1,'2026-03-27'),
(7312,101,664,27,55,82,'A',5,'published','2026-03-27',1,'2026-03-27'),
(7313,101,665,0,0,0,'F',0,'published','2026-03-27',1,'2026-03-27'),
(7314,101,492,0,0,0,'F',0,'published','2026-03-27',1,'2026-03-27'),
(7315,101,662,20,35,55,'C',3,'published','2026-03-27',1,'2026-03-27'),
(7316,101,663,15,49,64,'B',4,'published','2026-03-27',1,'2026-03-27'),
(7317,101,493,28,39,67,'B',4,'published','2026-03-27',1,'2026-03-27'),
(7318,31,496,0,0,0,'F',0,'published','2026-03-27',1,'2026-03-27'),
(7319,31,497,0,0,0,'F',0,'published','2026-03-27',1,'2026-03-27'),
(7320,101,496,0,0,0,'F',0,'published','2026-03-27',1,'2026-03-27'),
(7321,101,497,0,0,0,'F',0,'published','2026-03-27',1,'2026-03-27'),
(7322,31,661,0,0,0,'F',0,'published','2026-03-27',1,'2026-03-27'),
(7323,101,661,0,0,0,'F',0,'published','2026-03-27',1,'2026-03-27'),
(7324,31,499,0,0,0,'F',0,'published','2026-03-27',1,'2026-03-27'),
(7325,31,501,0,0,0,'F',0,'published','2026-03-27',1,'2026-03-27'),
(7326,31,649,0,0,0,'F',0,'published','2026-03-27',1,'2026-03-27'),
(7327,31,500,0,0,0,'F',0,'published','2026-03-27',1,'2026-03-27'),
(7328,101,649,0,0,0,'F',0,'published','2026-03-27',1,'2026-03-27'),
(7329,101,501,0,0,0,'F',0,'published','2026-03-27',1,'2026-03-27'),
(7330,101,500,0,0,0,'F',0,'published','2026-03-27',1,'2026-03-27'),
(7331,29,493,0,0,0,'F',0,'published','2026-03-27',1,'2026-03-27'),
(7332,101,499,0,0,0,'F',0,'published','2026-03-27',1,'2026-03-27'),
(7333,29,664,25,25,50,'C',3,'published','2026-03-27',1,'2026-03-27'),
(7334,31,498,0,0,0,'F',0,'published','2026-03-27',1,'2026-03-27'),
(7335,29,665,0,0,0,'F',0,'published','2026-03-27',1,'2026-03-27'),
(7336,29,492,0,0,0,'F',0,'published','2026-03-27',1,'2026-03-27'),
(7337,29,663,16,34,50,'C',3,'published','2026-03-27',1,'2026-03-27'),
(7338,29,662,16,22,38,'F',0,'published','2026-03-27',1,'2026-03-27'),
(7339,52,664,27,45,72,'A',5,'published','2026-03-27',1,'2026-03-27'),
(7340,52,665,0,0,0,'F',0,'published','2026-03-27',1,'2026-03-27'),
(7341,29,497,0,0,0,'F',0,'published','2026-03-27',1,'2026-03-27'),
(7342,29,498,0,0,0,'F',0,'published','2026-03-27',1,'2026-03-27'),
(7343,29,496,0,0,0,'F',0,'published','2026-03-27',1,'2026-03-27'),
(7344,29,499,0,0,0,'F',0,'published','2026-03-27',1,'2026-03-27'),
(7345,52,662,22,28,50,'C',3,'published','2026-03-27',1,'2026-03-27'),
(7346,29,501,0,0,0,'F',0,'published','2026-03-27',1,'2026-03-27'),
(7347,29,649,0,0,0,'F',0,'published','2026-03-27',1,'2026-03-27'),
(7348,29,500,0,0,0,'F',0,'published','2026-03-27',1,'2026-03-27'),
(7349,52,663,26,47,73,'A',5,'published','2026-03-27',1,'2026-03-27'),
(7350,103,497,0,0,0,'F',0,'published','2026-03-27',1,'2026-03-27'),
(7351,103,498,0,0,0,'F',0,'published','2026-03-27',1,'2026-03-27'),
(7352,103,499,0,0,0,'F',0,'published','2026-03-27',1,'2026-03-27'),
(7353,103,500,0,0,0,'F',0,'published','2026-03-27',1,'2026-03-27'),
(7354,103,501,0,0,0,'F',0,'published','2026-03-27',1,'2026-03-27'),
(7355,103,649,0,0,0,'F',0,'published','2026-03-27',1,'2026-03-27'),
(7356,103,496,0,0,0,'F',0,'published','2026-03-27',1,'2026-03-27'),
(7357,103,665,0,0,0,'F',0,'published','2026-03-27',1,'2026-03-27'),
(7358,93,573,20,34,54,'C',3,'published','2026-03-27',1,'2026-03-27'),
(7359,36,618,0,0,0,'F',0,'published','2026-03-27',1,'2026-03-27'),
(7360,28,684,0,0,0,'F',0,'published','2026-03-27',1,'2026-03-27'),
(7361,28,683,0,0,0,'F',0,'published','2026-03-27',1,'2026-03-27'),
(7362,28,685,0,0,0,'F',0,'published','2026-03-27',1,'2026-03-27'),
(7363,28,715,15,80,95,'A',5,'published','2026-03-27',1,'2026-03-27'),
(7364,28,458,0,0,0,'F',0,'published','2026-03-27',1,'2026-03-27'),
(7365,28,459,0,0,0,'F',0,'published','2026-03-27',1,'2026-03-27'),
(7366,28,460,0,0,0,'F',0,'published','2026-03-27',1,'2026-03-27'),
(7367,268,614,20,50,70,'A',5,'published','2026-03-27',1,'2026-03-27'),
(7368,268,613,19,38,57,'C',3,'published','2026-03-27',1,'2026-03-27'),
(7369,268,615,16,38,54,'C',3,'published','2026-03-27',1,'2026-03-27'),
(7370,268,616,0,0,0,'F',0,'published','2026-03-27',1,'2026-03-27'),
(7371,268,451,15,36,51,'C',3,'published','2026-03-27',1,'2026-03-27'),
(7372,268,617,24,24,48,'D',2,'published','2026-03-27',1,'2026-03-27'),
(7373,268,701,0,0,0,'F',0,'published','2026-03-27',1,'2026-03-27'),
(7374,268,618,0,0,0,'F',0,'published','2026-03-27',1,'2026-03-27'),
(7375,268,611,0,0,0,'F',0,'published','2026-03-27',1,'2026-03-27'),
(7376,42,664,25,51,76,'A',5,'published','2026-03-27',1,'2026-03-27'),
(7377,42,662,14,37,51,'C',3,'published','2026-03-27',1,'2026-03-27'),
(7378,42,663,15,43,58,'C',3,'published','2026-03-27',1,'2026-03-27'),
(7379,133,673,0,0,0,'F',0,'published','2026-03-28',1,'2026-03-28'),
(7380,133,674,0,0,0,'F',0,'published','2026-03-28',1,'2026-03-28'),
(7381,133,675,0,0,0,'F',0,'published','2026-03-28',1,'2026-03-28'),
(7382,133,676,0,0,0,'F',0,'published','2026-03-28',1,'2026-03-28'),
(7383,133,475,0,0,0,'F',0,'published','2026-03-28',1,'2026-03-28'),
(7384,133,677,0,0,0,'F',0,'published','2026-03-28',1,'2026-03-28'),
(7385,133,479,0,0,0,'F',0,'published','2026-03-28',1,'2026-03-28'),
(7386,133,679,0,0,0,'F',0,'published','2026-03-28',1,'2026-03-28'),
(7387,133,682,0,0,0,'F',0,'published','2026-03-28',1,'2026-03-28'),
(7388,319,685,0,0,0,'F',0,'published','2026-04-01',1,'2026-04-01'),
(7389,319,684,0,0,0,'F',0,'published','2026-04-01',1,'2026-04-01'),
(7390,319,683,0,0,0,'F',0,'published','2026-04-01',1,'2026-04-01'),
(7391,319,458,0,0,0,'F',0,'published','2026-04-01',1,'2026-04-01'),
(7392,319,459,0,0,0,'F',0,'published','2026-04-01',1,'2026-04-01'),
(7393,91,613,18,60,78,'A',5,'published','2026-04-01',1,'2026-04-01'),
(7394,91,614,20,55,75,'A',5,'published','2026-04-01',1,'2026-04-01'),
(7395,91,615,12,25,37,'F',0,'published','2026-04-01',1,'2026-04-01'),
(7396,91,616,0,0,0,'F',0,'published','2026-04-01',1,'2026-04-01'),
(7397,91,618,0,0,0,'F',0,'published','2026-04-01',1,'2026-04-01'),
(7398,91,611,0,0,0,'F',0,'published','2026-04-01',1,'2026-04-01'),
(7399,91,617,22,28,50,'C',3,'published','2026-04-01',1,'2026-04-01'),
(7400,91,701,0,0,0,'F',0,'published','2026-04-01',1,'2026-04-01'),
(7401,319,616,0,0,0,'F',0,'published','2026-04-01',1,'2026-04-01'),
(7402,319,615,15,63,78,'A',5,'published','2026-04-01',1,'2026-04-01'),
(7403,319,614,15,75,90,'A',5,'published','2026-04-01',1,'2026-04-01'),
(7404,319,613,27,53,80,'A',5,'published','2026-04-01',1,'2026-04-01'),
(7405,319,617,22,33,55,'C',3,'published','2026-04-01',1,'2026-04-01'),
(7406,319,618,0,0,0,'F',0,'published','2026-04-01',1,'2026-04-01'),
(7407,319,611,0,0,0,'F',0,'published','2026-04-01',1,'2026-04-01'),
(7408,319,451,15,39,54,'C',3,'published','2026-04-01',1,'2026-04-01'),
(7409,319,701,0,0,0,'F',0,'published','2026-04-01',1,'2026-04-01'),
(7410,306,716,0,0,0,'F',0,'published','2026-04-01',1,'2026-04-01'),
(7411,91,716,20,58,78,'A',5,'published','2026-04-01',1,'2026-04-01'),
(7412,306,611,0,0,0,'F',0,'published','2026-04-01',1,'2026-04-01'),
(7413,306,618,0,0,0,'F',0,'published','2026-04-01',1,'2026-04-01'),
(7414,319,716,20,65,85,'A',5,'published','2026-04-01',1,'2026-04-01'),
(7415,306,613,23,54,77,'A',5,'published','2026-04-01',1,'2026-04-01'),
(7416,306,614,20,60,80,'A',5,'published','2026-04-01',1,'2026-04-01'),
(7417,306,615,15,35,50,'C',3,'published','2026-04-01',1,'2026-04-01'),
(7418,306,616,0,0,0,'F',0,'published','2026-04-01',1,'2026-04-01'),
(7419,306,451,15,30,45,'D',2,'published','2026-04-01',1,'2026-04-01'),
(7420,306,617,22,25,47,'D',2,'published','2026-04-01',1,'2026-04-01'),
(7421,306,701,0,0,0,'F',0,'published','2026-04-01',1,'2026-04-01'),
(7422,306,685,0,0,0,'F',0,'published','2026-04-01',1,'2026-04-01'),
(7423,306,684,0,0,0,'F',0,'published','2026-04-01',1,'2026-04-01'),
(7424,306,683,0,0,0,'F',0,'published','2026-04-01',1,'2026-04-01'),
(7425,306,458,0,0,0,'F',0,'published','2026-04-01',1,'2026-04-01'),
(7426,306,459,0,0,0,'F',0,'published','2026-04-01',1,'2026-04-01'),
(7427,306,460,0,0,0,'F',0,'published','2026-04-01',1,'2026-04-01'),
(7428,319,460,0,0,0,'F',0,'published','2026-04-01',1,'2026-04-01'),
(7429,92,685,0,0,0,'F',0,'published','2026-04-01',1,'2026-04-01'),
(7430,92,684,0,0,0,'F',0,'published','2026-04-01',1,'2026-04-01'),
(7431,92,683,0,0,0,'F',0,'published','2026-04-01',1,'2026-04-01'),
(7432,92,458,0,0,0,'F',0,'published','2026-04-01',1,'2026-04-01'),
(7433,92,459,0,0,0,'F',0,'published','2026-04-01',1,'2026-04-01'),
(7434,92,460,0,0,0,'F',0,'published','2026-04-01',1,'2026-04-01'),
(7435,92,716,20,55,75,'A',5,'published','2026-04-01',1,'2026-04-01'),
(7436,92,611,0,0,0,'F',0,'published','2026-04-01',1,'2026-04-01'),
(7437,91,683,0,0,0,'F',0,'published','2026-04-01',1,'2026-04-01'),
(7438,92,616,0,0,0,'F',0,'published','2026-04-01',1,'2026-04-01'),
(7439,352,717,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7440,330,718,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7441,330,719,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7442,330,720,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7443,330,721,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7444,330,722,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7445,330,723,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7446,330,724,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7447,330,725,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7448,402,538,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7449,402,718,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7450,402,719,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7451,402,720,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7452,402,721,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7453,402,722,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7454,402,723,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7455,402,724,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7456,402,726,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7457,402,725,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7458,333,727,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7459,335,727,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7460,334,727,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7461,332,727,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7462,334,728,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7463,332,728,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7464,332,729,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7465,334,729,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7466,332,730,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7467,333,729,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7468,333,728,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7469,335,728,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7470,335,729,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7471,334,730,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7472,335,730,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7473,333,730,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7474,332,731,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7475,334,731,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7476,335,731,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7477,359,731,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7478,333,731,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7479,359,730,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7480,359,729,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7481,359,727,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7482,359,728,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7483,331,731,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7484,331,730,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7485,331,728,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7486,331,727,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7487,331,729,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7488,335,732,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7489,332,732,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7490,334,732,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7491,333,732,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7492,359,732,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7493,331,732,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7494,335,733,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7495,333,733,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7496,332,733,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7497,359,733,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7498,334,733,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7499,331,733,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7500,335,734,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02');
INSERT INTO `results` (`id`,`student_id`,`course_offering_id`,`continuous_assessment`,`exam_score`,`total_score`,`letter_grade`,`grade_point`,`status`,`published_at`,`updated_by`,`updated_at`) VALUES
(7501,359,734,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7502,333,734,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7503,332,734,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7504,334,734,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7505,331,734,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7506,331,735,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7507,334,735,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7508,359,735,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7509,333,735,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7510,335,735,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7511,332,735,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7512,334,736,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7513,359,736,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7514,333,736,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7515,335,736,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7516,332,736,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7517,331,736,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7518,335,737,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7519,332,737,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7520,333,737,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7521,334,737,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7522,331,737,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7523,359,737,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7524,332,738,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7525,334,738,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7526,335,738,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7527,333,738,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7528,331,738,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7529,359,738,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7530,332,739,30,30,60,'B',4,'published','2026-04-02',1,'2026-04-02'),
(7531,359,739,21,41,62,'B',4,'published','2026-04-02',1,'2026-04-02'),
(7532,335,739,27,34,61,'B',4,'published','2026-04-02',1,'2026-04-02'),
(7533,333,739,27,23,50,'C',3,'published','2026-04-02',1,'2026-04-02'),
(7534,334,739,27,19,46,'D',2,'published','2026-04-02',1,'2026-04-02'),
(7535,331,739,19,15,34,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7536,335,740,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7537,333,740,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7538,359,740,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7539,334,740,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7540,331,740,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7541,332,740,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7542,335,741,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7543,332,741,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7544,333,741,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7545,334,741,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7546,359,741,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7547,331,741,0,0,0,'F',0,'published','2026-04-02',1,'2026-04-02'),
(7548,44,664,26,32,58,'C',3,'published','2026-04-07',1,'2026-04-07'),
(7549,44,665,0,0,0,'F',0,'published','2026-04-07',1,'2026-04-07'),
(7550,5,745,20,40,60,'B',4,'published','2026-04-08',1,'2026-04-08'),
(7551,5,746,20,42,62,'B',4,'published','2026-04-08',1,'2026-04-08'),
(7552,30,745,20,45,65,'B',4,'published','2026-04-08',1,'2026-04-08'),
(7553,5,743,15,44,59,'C',3,'published','2026-04-08',1,'2026-04-08'),
(7554,5,742,25,54,79,'A',5,'published','2026-04-08',1,'2026-04-08'),
(7555,30,746,20,48,68,'B',4,'published','2026-04-08',1,'2026-04-08'),
(7556,30,743,15,25,40,'E',1,'published','2026-04-08',1,'2026-04-08'),
(7557,30,742,19,65,84,'A',5,'published','2026-04-08',1,'2026-04-08'),
(7558,34,465,20,31,51,'C',3,'published','2026-04-08',1,'2026-04-08'),
(7559,34,745,20,66,86,'A',5,'published','2026-04-08',1,'2026-04-08'),
(7560,34,746,20,24,44,'E',1,'published','2026-04-08',1,'2026-04-08'),
(7561,34,743,15,33,48,'D',2,'published','2026-04-08',1,'2026-04-08'),
(7562,34,742,25,43,68,'B',4,'published','2026-04-08',1,'2026-04-08'),
(7563,243,742,18,54,72,'A',5,'published','2026-04-08',1,'2026-04-08'),
(7564,243,743,15,36,51,'C',3,'published','2026-04-08',1,'2026-04-08'),
(7565,243,746,20,40,60,'B',4,'published','2026-04-08',1,'2026-04-08'),
(7566,243,745,20,38,58,'C',3,'published','2026-04-08',1,'2026-04-08'),
(7567,88,742,19,69,88,'A',5,'published','2026-04-08',1,'2026-04-08'),
(7568,88,743,15,48,63,'B',4,'published','2026-04-08',1,'2026-04-08'),
(7569,88,746,20,40,60,'B',4,'published','2026-04-08',1,'2026-04-08'),
(7570,88,745,20,44,64,'B',4,'published','2026-04-08',1,'2026-04-08'),
(7571,79,745,20,36,56,'C',3,'published','2026-04-08',1,'2026-04-08'),
(7572,79,746,20,25,45,'D',2,'published','2026-04-08',1,'2026-04-08'),
(7573,79,743,15,25,40,'E',1,'published','2026-04-08',1,'2026-04-08'),
(7574,79,742,20,54,74,'A',5,'published','2026-04-08',1,'2026-04-08'),
(7575,377,666,0,0,0,'F',0,'published','2026-04-08',1,'2026-04-08'),
(7576,377,670,0,0,0,'F',0,'published','2026-04-08',1,'2026-04-08'),
(7577,377,717,0,0,0,'F',0,'published','2026-04-08',1,'2026-04-08'),
(7578,377,671,0,0,0,'F',0,'published','2026-04-08',1,'2026-04-08'),
(7579,377,672,0,0,0,'F',0,'published','2026-04-08',1,'2026-04-08'),
(7580,377,667,0,0,0,'F',0,'published','2026-04-08',1,'2026-04-08'),
(7581,377,668,0,0,0,'F',0,'published','2026-04-08',1,'2026-04-08'),
(7582,377,669,0,0,0,'F',0,'published','2026-04-08',1,'2026-04-08'),
(7583,377,650,0,0,0,'F',0,'published','2026-04-08',1,'2026-04-08'),
(7584,82,743,15,25,40,'E',1,'published','2026-04-08',1,'2026-04-08'),
(7585,82,745,20,40,60,'B',4,'published','2026-04-08',1,'2026-04-08'),
(7586,377,747,0,0,0,'F',0,'published','2026-04-08',1,'2026-04-08'),
(7587,82,746,20,25,45,'D',2,'published','2026-04-08',1,'2026-04-08'),
(7588,377,748,0,0,0,'F',0,'published','2026-04-08',1,'2026-04-08'),
(7589,77,745,20,46,66,'B',4,'published','2026-04-08',1,'2026-04-08'),
(7590,77,746,20,29,49,'D',2,'published','2026-04-08',1,'2026-04-08'),
(7591,77,743,15,35,50,'C',3,'published','2026-04-08',1,'2026-04-08'),
(7592,77,742,25,64,89,'A',5,'published','2026-04-08',1,'2026-04-08'),
(7593,364,666,0,0,0,'F',0,'published','2026-04-08',1,'2026-04-08'),
(7594,364,748,0,0,0,'F',0,'published','2026-04-08',1,'2026-04-08'),
(7595,364,667,0,0,0,'F',0,'published','2026-04-08',1,'2026-04-08'),
(7596,364,668,0,0,0,'F',0,'published','2026-04-08',1,'2026-04-08'),
(7597,364,747,0,0,0,'F',0,'published','2026-04-08',1,'2026-04-08'),
(7598,364,672,0,0,0,'F',0,'published','2026-04-08',1,'2026-04-08'),
(7599,364,671,0,0,0,'F',0,'published','2026-04-08',1,'2026-04-08'),
(7600,364,717,0,0,0,'F',0,'published','2026-04-08',1,'2026-04-08'),
(7601,364,670,0,0,0,'F',0,'published','2026-04-08',1,'2026-04-08'),
(7602,364,650,0,0,0,'F',0,'published','2026-04-08',1,'2026-04-08'),
(7603,364,669,0,0,0,'F',0,'published','2026-04-08',1,'2026-04-08'),
(7604,51,745,20,58,78,'A',5,'published','2026-04-09',1,'2026-04-09'),
(7605,51,746,20,40,60,'B',4,'published','2026-04-09',1,'2026-04-09'),
(7606,51,743,15,25,40,'E',1,'published','2026-04-09',1,'2026-04-09'),
(7607,51,742,19,65,84,'A',5,'published','2026-04-09',1,'2026-04-09'),
(7608,35,745,20,50,70,'A',5,'published','2026-04-09',1,'2026-04-09'),
(7609,35,743,15,25,40,'E',1,'published','2026-04-09',1,'2026-04-09'),
(7610,35,742,19,56,75,'A',5,'published','2026-04-09',1,'2026-04-09'),
(7611,35,465,20,20,40,'E',1,'published','2026-04-09',1,'2026-04-09'),
(7612,35,746,20,28,48,'D',2,'published','2026-04-09',1,'2026-04-09'),
(7613,23,465,20,20,40,'E',1,'published','2026-04-09',1,'2026-04-09'),
(7614,23,745,20,35,55,'C',3,'published','2026-04-09',1,'2026-04-09'),
(7615,23,746,20,33,53,'C',3,'published','2026-04-09',1,'2026-04-09'),
(7616,23,742,20,63,83,'A',5,'published','2026-04-09',1,'2026-04-09'),
(7617,23,743,15,30,45,'D',2,'published','2026-04-09',1,'2026-04-09'),
(7618,23,744,20,20,40,'E',1,'published','2026-04-09',1,'2026-04-09'),
(7619,45,742,21,58,79,'A',5,'published','2026-04-09',1,'2026-04-09'),
(7620,9,746,20,27,47,'D',2,'published','2026-04-09',1,'2026-04-09'),
(7621,9,742,26,46,72,'A',5,'published','2026-04-09',1,'2026-04-09'),
(7622,9,745,20,35,55,'C',3,'published','2026-04-09',1,'2026-04-09'),
(7623,9,743,15,25,40,'E',1,'published','2026-04-09',1,'2026-04-09'),
(7624,39,749,0,0,0,'F',0,'published','2026-04-09',1,'2026-04-09'),
(7625,39,750,0,0,0,'F',0,'published','2026-04-09',1,'2026-04-09'),
(7626,39,751,0,0,0,'F',0,'published','2026-04-09',1,'2026-04-09'),
(7627,39,752,0,0,0,'F',0,'published','2026-04-09',1,'2026-04-09'),
(7628,105,742,19,52,71,'A',5,'published','2026-04-09',1,'2026-04-09'),
(7629,105,744,20,30,50,'C',3,'published','2026-04-09',1,'2026-04-09'),
(7630,105,746,20,27,47,'D',2,'published','2026-04-09',1,'2026-04-09'),
(7631,105,745,20,30,50,'C',3,'published','2026-04-09',1,'2026-04-09'),
(7632,105,743,15,40,55,'C',3,'published','2026-04-09',1,'2026-04-09'),
(7633,392,666,0,0,0,'F',0,'published','2026-04-09',1,'2026-04-09'),
(7634,392,748,0,0,0,'F',0,'published','2026-04-09',1,'2026-04-09'),
(7635,392,667,0,0,0,'F',0,'published','2026-04-09',1,'2026-04-09'),
(7636,392,668,0,0,0,'F',0,'published','2026-04-09',1,'2026-04-09'),
(7637,392,747,0,0,0,'F',0,'published','2026-04-09',1,'2026-04-09'),
(7638,392,669,0,0,0,'F',0,'published','2026-04-09',1,'2026-04-09'),
(7639,392,650,0,0,0,'F',0,'published','2026-04-09',1,'2026-04-09'),
(7640,392,670,0,0,0,'F',0,'published','2026-04-09',1,'2026-04-09'),
(7641,392,717,0,0,0,'F',0,'published','2026-04-09',1,'2026-04-09'),
(7642,392,671,0,0,0,'F',0,'published','2026-04-09',1,'2026-04-09'),
(7643,392,672,0,0,0,'F',0,'published','2026-04-09',1,'2026-04-09'),
(7644,318,742,0,0,0,'F',0,'published','2026-04-09',1,'2026-04-09'),
(7645,318,743,15,25,40,'E',1,'published','2026-04-09',1,'2026-04-09'),
(7646,318,746,20,40,60,'B',4,'published','2026-04-09',1,'2026-04-09'),
(7647,318,745,20,42,62,'B',4,'published','2026-04-09',1,'2026-04-09'),
(7648,318,744,20,20,40,'E',1,'published','2026-04-09',1,'2026-04-09'),
(7649,80,742,26,60,86,'A',5,'published','2026-04-09',1,'2026-04-09'),
(7650,80,743,15,34,49,'D',2,'published','2026-04-09',1,'2026-04-09'),
(7651,80,746,20,32,52,'C',3,'published','2026-04-09',1,'2026-04-09'),
(7652,80,745,20,50,70,'A',5,'published','2026-04-09',1,'2026-04-09'),
(7653,7,742,21,57,78,'A',5,'published','2026-04-09',1,'2026-04-09'),
(7654,7,743,15,37,52,'C',3,'published','2026-04-09',1,'2026-04-09'),
(7655,7,746,20,39,59,'C',3,'published','2026-04-09',1,'2026-04-09'),
(7656,7,745,20,40,60,'B',4,'published','2026-04-09',1,'2026-04-09'),
(7657,78,742,0,0,0,'F',0,'published','2026-04-09',1,'2026-04-09'),
(7658,78,743,15,25,40,'E',1,'published','2026-04-09',1,'2026-04-09'),
(7659,78,744,20,20,40,'E',1,'published','2026-04-09',1,'2026-04-09'),
(7660,78,746,20,40,60,'B',4,'published','2026-04-09',1,'2026-04-09'),
(7661,78,745,20,52,72,'A',5,'published','2026-04-09',1,'2026-04-09'),
(7662,90,745,20,35,55,'C',3,'published','2026-04-09',1,'2026-04-09'),
(7663,90,746,20,23,43,'E',1,'published','2026-04-09',1,'2026-04-09'),
(7664,90,744,20,20,40,'E',1,'published','2026-04-09',1,'2026-04-09'),
(7665,90,743,15,30,45,'D',2,'published','2026-04-09',1,'2026-04-09'),
(7666,90,742,20,61,81,'A',5,'published','2026-04-09',1,'2026-04-09'),
(7667,22,742,23,57,80,'A',5,'published','2026-04-09',1,'2026-04-09'),
(7668,22,743,15,35,50,'C',3,'published','2026-04-09',1,'2026-04-09'),
(7669,22,744,20,30,50,'C',3,'published','2026-04-09',1,'2026-04-09'),
(7670,22,746,20,46,66,'B',4,'published','2026-04-09',1,'2026-04-09'),
(7671,22,745,20,30,50,'C',3,'published','2026-04-09',1,'2026-04-09'),
(7672,22,511,0,0,0,'F',0,'published','2026-04-09',1,'2026-04-09'),
(7673,108,743,15,44,59,'C',3,'published','2026-04-09',1,'2026-04-09'),
(7674,108,742,22,45,67,'B',4,'published','2026-04-09',1,'2026-04-09'),
(7675,108,746,20,31,51,'C',3,'published','2026-04-09',1,'2026-04-09'),
(7676,108,745,20,34,54,'C',3,'published','2026-04-09',1,'2026-04-09'),
(7677,6,745,20,45,65,'B',4,'published','2026-04-09',1,'2026-04-09'),
(7678,6,746,20,25,45,'D',2,'published','2026-04-09',1,'2026-04-09'),
(7679,6,744,20,21,41,'E',1,'published','2026-04-09',1,'2026-04-09'),
(7680,6,743,15,26,41,'E',1,'published','2026-04-09',1,'2026-04-09'),
(7681,6,742,27,52,79,'A',5,'published','2026-04-09',1,'2026-04-09'),
(7682,110,742,0,0,0,'F',0,'published','2026-04-10',1,'2026-04-10'),
(7683,110,743,15,36,51,'C',3,'published','2026-04-10',1,'2026-04-10'),
(7684,110,744,20,20,40,'E',1,'published','2026-04-10',1,'2026-04-10'),
(7685,110,746,20,36,56,'C',3,'published','2026-04-10',1,'2026-04-10'),
(7686,110,745,20,38,58,'C',3,'published','2026-04-10',1,'2026-04-10'),
(7687,8,745,20,40,60,'B',4,'published','2026-04-10',1,'2026-04-10'),
(7688,8,746,20,42,62,'B',4,'published','2026-04-10',1,'2026-04-10'),
(7689,8,744,20,31,51,'C',3,'published','2026-04-10',1,'2026-04-10'),
(7690,8,743,15,35,50,'C',3,'published','2026-04-10',1,'2026-04-10'),
(7691,8,742,20,65,85,'A',5,'published','2026-04-10',1,'2026-04-10'),
(7692,20,465,20,30,50,'C',3,'published','2026-04-10',1,'2026-04-10'),
(7693,20,745,20,55,75,'A',5,'published','2026-04-10',1,'2026-04-10'),
(7694,20,744,20,30,50,'C',3,'published','2026-04-10',1,'2026-04-10'),
(7695,20,742,23,65,88,'A',5,'published','2026-04-10',1,'2026-04-10'),
(7696,20,746,20,47,67,'B',4,'published','2026-04-10',1,'2026-04-10'),
(7697,20,743,15,25,40,'E',1,'published','2026-04-10',1,'2026-04-10'),
(7698,4,742,19,56,75,'A',5,'published','2026-04-10',1,'2026-04-10'),
(7699,4,743,15,25,40,'E',1,'published','2026-04-10',1,'2026-04-10'),
(7700,4,744,20,25,45,'D',2,'published','2026-04-10',1,'2026-04-10'),
(7701,4,746,20,15,35,'F',0,'published','2026-04-10',1,'2026-04-10'),
(7702,4,745,20,30,50,'C',3,'published','2026-04-10',1,'2026-04-10'),
(7703,374,666,0,0,0,'F',0,'published','2026-04-10',1,'2026-04-10'),
(7704,374,753,0,0,0,'F',0,'published','2026-04-10',1,'2026-04-10'),
(7705,374,748,0,0,0,'F',0,'published','2026-04-10',1,'2026-04-10'),
(7706,374,667,0,0,0,'F',0,'published','2026-04-10',1,'2026-04-10'),
(7707,374,668,0,0,0,'F',0,'published','2026-04-10',1,'2026-04-10'),
(7708,374,747,0,0,0,'F',0,'published','2026-04-10',1,'2026-04-10'),
(7709,374,669,0,0,0,'F',0,'published','2026-04-10',1,'2026-04-10'),
(7710,374,650,0,0,0,'F',0,'published','2026-04-10',1,'2026-04-10'),
(7711,374,670,0,0,0,'F',0,'published','2026-04-10',1,'2026-04-10'),
(7712,374,717,0,0,0,'F',0,'published','2026-04-10',1,'2026-04-10'),
(7713,374,671,0,0,0,'F',0,'published','2026-04-10',1,'2026-04-10'),
(7714,374,672,0,0,0,'F',0,'published','2026-04-10',1,'2026-04-10'),
(7715,315,742,19,64,83,'A',5,'published','2026-04-10',1,'2026-04-10'),
(7716,315,743,15,25,40,'E',1,'published','2026-04-10',1,'2026-04-10'),
(7717,315,744,20,20,40,'E',1,'published','2026-04-10',1,'2026-04-10'),
(7718,315,746,20,46,66,'B',4,'published','2026-04-10',1,'2026-04-10'),
(7719,315,745,20,34,54,'C',3,'published','2026-04-10',1,'2026-04-10'),
(7720,316,742,20,47,67,'B',4,'published','2026-04-11',1,'2026-04-11'),
(7721,316,745,20,30,50,'C',3,'published','2026-04-11',1,'2026-04-11'),
(7722,316,746,20,27,47,'D',2,'published','2026-04-11',1,'2026-04-11'),
(7723,316,744,20,21,41,'E',1,'published','2026-04-11',1,'2026-04-11'),
(7724,316,743,15,25,40,'E',1,'published','2026-04-11',1,'2026-04-11'),
(7725,316,465,20,21,41,'E',1,'published','2026-04-11',1,'2026-04-11'),
(7726,45,746,20,32,52,'C',3,'published','2026-04-11',1,'2026-04-11'),
(7727,45,745,20,40,60,'B',4,'published','2026-04-11',1,'2026-04-11'),
(7728,45,743,15,25,40,'E',1,'published','2026-04-11',1,'2026-04-11'),
(7729,82,742,21,43,64,'B',4,'published','2026-04-11',1,'2026-04-11'),
(7730,32,743,15,26,41,'E',1,'published','2026-04-11',1,'2026-04-11'),
(7731,32,742,19,53,72,'A',5,'published','2026-04-11',1,'2026-04-11'),
(7732,32,744,20,20,40,'E',1,'published','2026-04-11',1,'2026-04-11'),
(7733,32,746,20,34,54,'C',3,'published','2026-04-11',1,'2026-04-11'),
(7734,32,745,20,40,60,'B',4,'published','2026-04-11',1,'2026-04-11'),
(7735,131,1,0,0,0,'F',0,'published','2026-04-12',1,'2026-04-12'),
(7736,131,583,0,0,0,'F',0,'published','2026-04-12',1,'2026-04-12'),
(7737,131,585,0,0,0,'F',0,'published','2026-04-12',1,'2026-04-12'),
(7738,131,586,0,0,0,'F',0,'published','2026-04-12',1,'2026-04-12'),
(7739,131,591,0,0,0,'F',0,'published','2026-04-12',1,'2026-04-12'),
(7740,131,587,0,0,0,'F',0,'published','2026-04-12',1,'2026-04-12'),
(7741,131,584,15,63,78,'A',5,'published','2026-04-12',1,'2026-04-12'),
(7742,131,588,0,0,0,'F',0,'published','2026-04-12',1,'2026-04-12'),
(7743,131,592,0,0,0,'F',0,'published','2026-04-12',1,'2026-04-12'),
(7744,131,589,0,0,0,'F',0,'published','2026-04-12',1,'2026-04-12'),
(7745,131,593,0,0,0,'F',0,'published','2026-04-12',1,'2026-04-12'),
(7746,131,590,0,0,0,'F',0,'published','2026-04-12',1,'2026-04-12'),
(7747,131,673,0,0,0,'F',0,'published','2026-04-12',1,'2026-04-12'),
(7748,131,674,0,0,0,'F',0,'published','2026-04-12',1,'2026-04-12'),
(7749,131,675,0,0,0,'F',0,'published','2026-04-12',1,'2026-04-12'),
(7750,131,676,0,0,0,'F',0,'published','2026-04-12',1,'2026-04-12');
INSERT INTO `results` (`id`,`student_id`,`course_offering_id`,`continuous_assessment`,`exam_score`,`total_score`,`letter_grade`,`grade_point`,`status`,`published_at`,`updated_by`,`updated_at`) VALUES
(7751,131,677,0,0,0,'F',0,'published','2026-04-12',1,'2026-04-12'),
(7752,131,679,0,0,0,'F',0,'published','2026-04-12',1,'2026-04-12'),
(7753,131,680,0,0,0,'F',0,'published','2026-04-12',1,'2026-04-12'),
(7754,131,681,0,0,0,'F',0,'published','2026-04-12',1,'2026-04-12'),
(7755,131,682,0,0,0,'F',0,'published','2026-04-12',1,'2026-04-12'),
(7756,342,666,0,0,0,'F',0,'published','2026-04-13',1,'2026-04-13'),
(7757,342,748,0,0,0,'F',0,'published','2026-04-13',1,'2026-04-13'),
(7758,342,668,0,0,0,'F',0,'published','2026-04-13',1,'2026-04-13'),
(7759,342,667,0,0,0,'F',0,'published','2026-04-13',1,'2026-04-13'),
(7760,342,747,0,0,0,'F',0,'published','2026-04-13',1,'2026-04-13'),
(7761,342,669,0,0,0,'F',0,'published','2026-04-13',1,'2026-04-13'),
(7762,342,650,0,0,0,'F',0,'published','2026-04-13',1,'2026-04-13'),
(7763,342,670,0,0,0,'F',0,'published','2026-04-13',1,'2026-04-13'),
(7764,342,717,0,0,0,'F',0,'published','2026-04-13',1,'2026-04-13'),
(7765,342,671,0,0,0,'F',0,'published','2026-04-13',1,'2026-04-13'),
(7766,342,672,0,0,0,'F',0,'published','2026-04-13',1,'2026-04-13'),
(7767,339,717,0,0,0,'F',0,'published','2026-04-13',1,'2026-04-13'),
(7768,345,666,0,0,0,'F',0,'published','2026-04-13',1,'2026-04-13'),
(7769,345,748,0,0,0,'F',0,'published','2026-04-13',1,'2026-04-13'),
(7770,345,667,0,0,0,'F',0,'published','2026-04-13',1,'2026-04-13'),
(7771,345,668,0,0,0,'F',0,'published','2026-04-13',1,'2026-04-13'),
(7772,345,747,0,0,0,'F',0,'published','2026-04-13',1,'2026-04-13'),
(7773,345,669,0,0,0,'F',0,'published','2026-04-13',1,'2026-04-13'),
(7774,345,650,0,0,0,'F',0,'published','2026-04-13',1,'2026-04-13'),
(7775,345,670,0,0,0,'F',0,'published','2026-04-13',1,'2026-04-13'),
(7776,345,717,0,0,0,'F',0,'published','2026-04-13',1,'2026-04-13'),
(7777,345,671,0,0,0,'F',0,'published','2026-04-13',1,'2026-04-13'),
(7778,345,672,0,0,0,'F',0,'published','2026-04-13',1,'2026-04-13'),
(7779,83,742,18,60,78,'A',5,'published','2026-04-13',1,'2026-04-13'),
(7780,83,743,15,25,40,'E',1,'published','2026-04-13',1,'2026-04-13'),
(7781,83,744,20,26,46,'D',2,'published','2026-04-13',1,'2026-04-13'),
(7782,83,746,20,39,59,'C',3,'published','2026-04-13',1,'2026-04-13'),
(7783,83,745,20,32,52,'C',3,'published','2026-04-13',1,'2026-04-13'),
(7784,179,686,20,55,75,'A',5,'published','2026-04-13',1,'2026-04-13'),
(7785,179,688,22,69,91,'A',5,'published','2026-04-13',1,'2026-04-13'),
(7786,179,687,20,43,63,'B',4,'published','2026-04-13',1,'2026-04-13'),
(7787,179,689,12,64,76,'A',5,'published','2026-04-13',1,'2026-04-13'),
(7788,179,690,25,53,78,'A',5,'published','2026-04-13',1,'2026-04-13'),
(7789,179,691,0,0,0,'F',0,'published','2026-04-13',1,'2026-04-13'),
(7790,179,692,30,44,74,'A',5,'published','2026-04-13',1,'2026-04-13'),
(7791,179,695,0,0,0,'F',0,'published','2026-04-13',1,'2026-04-13'),
(7792,179,693,30,57,87,'A',5,'published','2026-04-13',1,'2026-04-13'),
(7793,179,694,20,41,61,'B',4,'published','2026-04-13',1,'2026-04-13'),
(7794,354,717,0,0,0,'F',0,'published','2026-04-13',1,'2026-04-13'),
(7795,25,465,20,27,47,'D',2,'published','2026-04-14',1,'2026-04-14'),
(7796,25,745,20,55,75,'A',5,'published','2026-04-14',1,'2026-04-14'),
(7797,25,746,20,40,60,'B',4,'published','2026-04-14',1,'2026-04-14'),
(7798,25,743,15,46,61,'B',4,'published','2026-04-14',1,'2026-04-14'),
(7799,25,742,19,54,73,'A',5,'published','2026-04-14',1,'2026-04-14'),
(7800,125,604,22,38,60,'B',4,'published','2026-04-14',1,'2026-04-14'),
(7801,125,605,20,53,73,'A',5,'published','2026-04-14',1,'2026-04-14'),
(7802,125,607,21,65,86,'A',5,'published','2026-04-14',1,'2026-04-14'),
(7803,125,609,22,26,48,'D',2,'published','2026-04-14',1,'2026-04-14'),
(7804,125,610,18,58,76,'A',5,'published','2026-04-14',1,'2026-04-14'),
(7805,241,745,20,31,51,'C',3,'published','2026-04-14',1,'2026-04-14'),
(7806,241,746,20,25,45,'D',2,'published','2026-04-14',1,'2026-04-14'),
(7807,241,744,20,20,40,'E',1,'published','2026-04-14',1,'2026-04-14'),
(7808,241,743,15,46,61,'B',4,'published','2026-04-14',1,'2026-04-14'),
(7809,241,742,27,62,89,'A',5,'published','2026-04-14',1,'2026-04-14'),
(7810,38,465,20,22,42,'E',1,'published','2026-04-14',1,'2026-04-14'),
(7811,38,745,20,33,53,'C',3,'published','2026-04-14',1,'2026-04-14'),
(7812,38,746,20,15,35,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7813,38,743,15,25,40,'E',1,'published','2026-04-14',1,'2026-04-14'),
(7814,178,687,20,22,42,'E',1,'published','2026-04-14',1,'2026-04-14'),
(7815,178,688,21,61,82,'A',5,'published','2026-04-14',1,'2026-04-14'),
(7816,178,689,15,56,71,'A',5,'published','2026-04-14',1,'2026-04-14'),
(7817,178,690,25,47,72,'A',5,'published','2026-04-14',1,'2026-04-14'),
(7818,178,691,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7819,178,694,22,38,60,'B',4,'published','2026-04-14',1,'2026-04-14'),
(7820,178,693,15,25,40,'E',1,'published','2026-04-14',1,'2026-04-14'),
(7821,178,695,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7822,178,692,28,26,54,'C',3,'published','2026-04-14',1,'2026-04-14'),
(7823,157,686,20,35,55,'C',3,'published','2026-04-14',1,'2026-04-14'),
(7824,157,687,15,5,20,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7825,157,688,23,49,72,'A',5,'published','2026-04-14',1,'2026-04-14'),
(7826,157,689,15,42,57,'C',3,'published','2026-04-14',1,'2026-04-14'),
(7827,157,690,25,25,50,'C',3,'published','2026-04-14',1,'2026-04-14'),
(7828,157,691,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7829,157,692,23,30,53,'C',3,'published','2026-04-14',1,'2026-04-14'),
(7830,157,695,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7831,157,693,15,40,55,'C',3,'published','2026-04-14',1,'2026-04-14'),
(7832,157,694,21,41,62,'B',4,'published','2026-04-14',1,'2026-04-14'),
(7833,347,666,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7834,347,748,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7835,347,667,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7836,347,668,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7837,347,747,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7838,347,669,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7839,347,650,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7840,347,670,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7841,347,717,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7842,347,671,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7843,347,672,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7844,348,717,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7845,348,669,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7846,38,742,21,29,50,'C',3,'published','2026-04-14',1,'2026-04-14'),
(7847,12,445,16,34,50,'C',3,'published','2026-04-14',1,'2026-04-14'),
(7848,12,446,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7849,12,444,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7850,12,442,25,36,61,'B',4,'published','2026-04-14',1,'2026-04-14'),
(7851,12,443,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7852,362,666,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7853,362,748,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7854,362,667,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7855,362,668,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7856,362,747,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7857,362,669,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7858,362,650,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7859,362,670,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7860,362,717,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7861,362,671,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7862,362,672,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7863,343,717,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7864,4,127,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7865,164,686,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7866,164,687,16,8,24,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7867,164,688,20,55,75,'A',5,'published','2026-04-14',1,'2026-04-14'),
(7868,164,690,25,31,56,'C',3,'published','2026-04-14',1,'2026-04-14'),
(7869,164,689,16,43,59,'C',3,'published','2026-04-14',1,'2026-04-14'),
(7870,164,691,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7871,164,692,26,10,36,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7872,164,695,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7873,164,693,15,40,55,'C',3,'published','2026-04-14',1,'2026-04-14'),
(7874,164,694,21,41,62,'B',4,'published','2026-04-14',1,'2026-04-14'),
(7875,164,696,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7876,164,697,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7877,164,698,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7878,164,699,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7879,164,700,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7880,349,666,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7881,349,748,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7882,349,667,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7883,349,668,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7884,349,747,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7885,349,669,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7886,349,650,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7887,349,670,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7888,349,717,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7889,349,671,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7890,349,672,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7891,50,443,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7892,50,446,20,45,65,'B',4,'published','2026-04-14',1,'2026-04-14'),
(7893,50,444,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7894,50,445,15,43,58,'C',3,'published','2026-04-14',1,'2026-04-14'),
(7895,50,573,20,20,40,'E',1,'published','2026-04-14',1,'2026-04-14'),
(7896,24,441,25,29,54,'C',3,'published','2026-04-14',1,'2026-04-14'),
(7897,24,442,26,47,73,'A',5,'published','2026-04-14',1,'2026-04-14'),
(7898,24,443,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7899,24,446,20,40,60,'B',4,'published','2026-04-14',1,'2026-04-14'),
(7900,24,444,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7901,24,445,16,38,54,'C',3,'published','2026-04-14',1,'2026-04-14'),
(7902,24,573,20,20,40,'E',1,'published','2026-04-14',1,'2026-04-14'),
(7903,321,441,25,28,53,'C',3,'published','2026-04-14',1,'2026-04-14'),
(7904,321,442,25,42,67,'B',4,'published','2026-04-14',1,'2026-04-14'),
(7905,321,443,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7906,321,446,20,46,66,'B',4,'published','2026-04-14',1,'2026-04-14'),
(7907,321,444,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7908,321,445,16,32,48,'D',2,'published','2026-04-14',1,'2026-04-14'),
(7909,321,573,25,15,40,'E',1,'published','2026-04-14',1,'2026-04-14'),
(7910,321,506,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7911,321,620,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7912,321,505,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7913,321,504,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7914,321,503,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7915,321,502,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7916,321,38,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7917,321,39,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7918,321,40,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7919,321,41,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7920,321,42,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7921,321,43,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7922,321,44,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7923,321,45,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7924,321,129,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7925,321,126,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7926,321,125,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7927,321,128,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7928,321,124,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7929,321,123,0,0,0,'F',0,'published','2026-04-14',1,'2026-04-14'),
(7930,178,686,20,50,70,'A',5,'published','2026-04-15',1,'2026-04-15'),
(7931,160,695,0,0,0,'F',0,'published','2026-04-15',1,'2026-04-15'),
(7932,160,691,0,0,0,'F',0,'published','2026-04-15',1,'2026-04-15'),
(7933,160,686,20,40,60,'B',4,'published','2026-04-15',1,'2026-04-15'),
(7934,160,687,20,20,40,'E',1,'published','2026-04-15',1,'2026-04-15'),
(7935,160,688,25,37,62,'B',4,'published','2026-04-15',1,'2026-04-15'),
(7936,160,689,21,51,72,'A',5,'published','2026-04-15',1,'2026-04-15'),
(7937,160,692,28,28,56,'C',3,'published','2026-04-15',1,'2026-04-15'),
(7938,160,693,15,30,45,'D',2,'published','2026-04-15',1,'2026-04-15'),
(7939,160,694,23,41,64,'B',4,'published','2026-04-15',1,'2026-04-15'),
(7940,201,459,0,0,0,'F',0,'published','2026-04-15',1,'2026-04-15'),
(7941,201,458,0,0,0,'F',0,'published','2026-04-15',1,'2026-04-15'),
(7942,201,685,0,0,0,'F',0,'published','2026-04-15',1,'2026-04-15'),
(7943,197,716,15,75,90,'A',5,'published','2026-04-15',1,'2026-04-15'),
(7944,201,611,0,0,0,'F',0,'published','2026-04-15',1,'2026-04-15'),
(7945,202,685,0,0,0,'F',0,'published','2026-04-15',1,'2026-04-15'),
(7946,202,684,0,0,0,'F',0,'published','2026-04-15',1,'2026-04-15'),
(7947,202,683,0,0,0,'F',0,'published','2026-04-15',1,'2026-04-15'),
(7948,202,458,0,0,0,'F',0,'published','2026-04-15',1,'2026-04-15'),
(7949,202,459,0,0,0,'F',0,'published','2026-04-15',1,'2026-04-15'),
(7950,202,460,0,0,0,'F',0,'published','2026-04-15',1,'2026-04-15'),
(7951,201,716,15,60,75,'A',5,'published','2026-04-15',1,'2026-04-15'),
(7952,201,460,0,0,0,'F',0,'published','2026-04-15',1,'2026-04-15'),
(7953,201,683,0,0,0,'F',0,'published','2026-04-15',1,'2026-04-15'),
(7954,201,684,0,0,0,'F',0,'published','2026-04-15',1,'2026-04-15'),
(7955,172,696,0,0,0,'F',0,'published','2026-04-15',1,'2026-04-15'),
(7956,172,697,0,0,0,'F',0,'published','2026-04-15',1,'2026-04-15'),
(7957,172,698,0,0,0,'F',0,'published','2026-04-15',1,'2026-04-15'),
(7958,172,699,0,0,0,'F',0,'published','2026-04-15',1,'2026-04-15'),
(7959,172,700,0,0,0,'F',0,'published','2026-04-15',1,'2026-04-15'),
(7960,172,686,20,45,65,'B',4,'published','2026-04-15',1,'2026-04-15'),
(7961,172,687,15,10,25,'F',0,'published','2026-04-15',1,'2026-04-15'),
(7962,172,688,18,39,57,'C',3,'published','2026-04-15',1,'2026-04-15'),
(7963,172,689,19,36,55,'C',3,'published','2026-04-15',1,'2026-04-15'),
(7964,172,690,25,18,43,'E',1,'published','2026-04-15',1,'2026-04-15'),
(7965,172,691,0,0,0,'F',0,'published','2026-04-15',1,'2026-04-15'),
(7966,172,692,20,9,29,'F',0,'published','2026-04-15',1,'2026-04-15'),
(7967,172,695,0,0,0,'F',0,'published','2026-04-15',1,'2026-04-15'),
(7968,172,693,20,20,40,'E',1,'published','2026-04-15',1,'2026-04-15'),
(7969,172,694,22,40,62,'B',4,'published','2026-04-15',1,'2026-04-15'),
(7970,322,613,23,52,75,'A',5,'published','2026-04-15',1,'2026-04-15'),
(7971,322,614,15,80,95,'A',5,'published','2026-04-15',1,'2026-04-15'),
(7972,160,690,25,21,46,'D',2,'published','2026-04-15',1,'2026-04-15'),
(7973,178,645,0,0,0,'F',0,'published','2026-04-15',1,'2026-04-15'),
(7974,178,202,0,0,0,'F',0,'published','2026-04-15',1,'2026-04-15'),
(7975,178,754,0,0,0,'F',0,'published','2026-04-15',1,'2026-04-15'),
(7976,178,755,0,0,0,'F',0,'published','2026-04-15',1,'2026-04-15'),
(7977,159,686,20,52,72,'A',5,'published','2026-04-15',1,'2026-04-15'),
(7978,159,687,25,28,53,'C',3,'published','2026-04-15',1,'2026-04-15'),
(7979,159,688,22,61,83,'A',5,'published','2026-04-15',1,'2026-04-15'),
(7980,159,689,27,68,95,'A',5,'published','2026-04-15',1,'2026-04-15'),
(7981,159,691,0,0,0,'F',0,'published','2026-04-15',1,'2026-04-15'),
(7982,159,692,27,30,57,'C',3,'published','2026-04-15',1,'2026-04-15'),
(7983,159,695,0,0,0,'F',0,'published','2026-04-15',1,'2026-04-15'),
(7984,159,693,23,68,91,'A',5,'published','2026-04-15',1,'2026-04-15'),
(7985,159,694,0,0,0,'F',0,'published','2026-04-15',1,'2026-04-15'),
(7986,159,690,25,57,82,'A',5,'published','2026-04-15',1,'2026-04-15'),
(7987,89,685,0,0,0,'F',0,'published','2026-04-15',1,'2026-04-15'),
(7988,89,684,0,0,0,'F',0,'published','2026-04-15',1,'2026-04-15'),
(7989,89,683,0,0,0,'F',0,'published','2026-04-15',1,'2026-04-15'),
(7990,89,458,0,0,0,'F',0,'published','2026-04-15',1,'2026-04-15'),
(7991,89,459,0,0,0,'F',0,'published','2026-04-15',1,'2026-04-15'),
(7992,89,460,0,0,0,'F',0,'published','2026-04-15',1,'2026-04-15'),
(7993,324,685,0,0,0,'F',0,'published','2026-04-15',1,'2026-04-15'),
(7994,324,684,0,0,0,'F',0,'published','2026-04-15',1,'2026-04-15'),
(7995,324,683,0,0,0,'F',0,'published','2026-04-15',1,'2026-04-15'),
(7996,324,458,0,0,0,'F',0,'published','2026-04-15',1,'2026-04-15'),
(7997,324,459,0,0,0,'F',0,'published','2026-04-15',1,'2026-04-15'),
(7998,324,460,0,0,0,'F',0,'published','2026-04-15',1,'2026-04-15'),
(7999,121,756,25,25,50,'C',3,'published','2026-04-15',1,'2026-04-15'),
(8000,121,609,22,26,48,'D',2,'published','2026-04-15',1,'2026-04-15');
INSERT INTO `results` (`id`,`student_id`,`course_offering_id`,`continuous_assessment`,`exam_score`,`total_score`,`letter_grade`,`grade_point`,`status`,`published_at`,`updated_by`,`updated_at`) VALUES
(8001,121,608,0,0,0,'F',0,'published','2026-04-15',1,'2026-04-15'),
(8002,121,607,11,43,54,'C',3,'published','2026-04-15',1,'2026-04-15'),
(8003,121,606,0,0,0,'F',0,'published','2026-04-15',1,'2026-04-15'),
(8004,121,605,20,34,54,'C',3,'published','2026-04-15',1,'2026-04-15'),
(8005,121,604,22,40,62,'B',4,'published','2026-04-15',1,'2026-04-15'),
(8006,152,686,20,25,45,'D',2,'published','2026-04-16',1,'2026-04-16'),
(8007,250,686,20,55,75,'A',5,'published','2026-04-16',1,'2026-04-16'),
(8008,250,687,16,10,26,'F',0,'published','2026-04-16',1,'2026-04-16'),
(8009,250,688,19,41,60,'B',4,'published','2026-04-16',1,'2026-04-16'),
(8010,152,687,16,5,21,'F',0,'published','2026-04-16',1,'2026-04-16'),
(8011,250,689,22,30,52,'C',3,'published','2026-04-16',1,'2026-04-16'),
(8012,152,688,23,41,64,'B',4,'published','2026-04-16',1,'2026-04-16'),
(8013,250,690,25,28,53,'C',3,'published','2026-04-16',1,'2026-04-16'),
(8014,152,689,22,30,52,'C',3,'published','2026-04-16',1,'2026-04-16'),
(8015,250,691,0,0,0,'F',0,'published','2026-04-16',1,'2026-04-16'),
(8016,152,690,25,34,59,'C',3,'published','2026-04-16',1,'2026-04-16'),
(8017,250,692,20,8,28,'F',0,'published','2026-04-16',1,'2026-04-16'),
(8018,250,695,0,0,0,'F',0,'published','2026-04-16',1,'2026-04-16'),
(8019,250,693,5,21,26,'F',0,'published','2026-04-16',1,'2026-04-16'),
(8020,250,694,24,42,66,'B',4,'published','2026-04-16',1,'2026-04-16'),
(8021,152,691,0,0,0,'F',0,'published','2026-04-16',1,'2026-04-16'),
(8022,152,692,25,10,35,'F',0,'published','2026-04-16',1,'2026-04-16'),
(8023,152,695,0,0,0,'F',0,'published','2026-04-16',1,'2026-04-16'),
(8024,152,693,15,18,33,'F',0,'published','2026-04-16',1,'2026-04-16'),
(8025,152,694,23,37,60,'B',4,'published','2026-04-16',1,'2026-04-16'),
(8026,250,423,0,0,0,'F',0,'published','2026-04-16',1,'2026-04-16'),
(8027,250,429,0,0,0,'F',0,'published','2026-04-16',1,'2026-04-16'),
(8028,250,427,0,0,0,'F',0,'published','2026-04-16',1,'2026-04-16'),
(8029,250,424,0,0,0,'F',0,'published','2026-04-16',1,'2026-04-16'),
(8030,250,425,0,0,0,'F',0,'published','2026-04-16',1,'2026-04-16'),
(8031,250,426,0,0,0,'F',0,'published','2026-04-16',1,'2026-04-16'),
(8032,250,428,0,0,0,'F',0,'published','2026-04-16',1,'2026-04-16'),
(8033,250,430,0,0,0,'F',0,'published','2026-04-16',1,'2026-04-16'),
(8034,250,431,0,0,0,'F',0,'published','2026-04-16',1,'2026-04-16'),
(8035,250,432,0,0,0,'F',0,'published','2026-04-16',1,'2026-04-16'),
(8036,250,757,0,0,0,'F',0,'published','2026-04-16',1,'2026-04-16'),
(8037,250,758,0,0,0,'F',0,'published','2026-04-16',1,'2026-04-16'),
(8038,250,759,0,0,0,'F',0,'published','2026-04-16',1,'2026-04-16'),
(8039,19,614,20,65,85,'A',5,'published','2026-04-16',1,'2026-04-16'),
(8040,19,615,10,43,53,'C',3,'published','2026-04-16',1,'2026-04-16'),
(8041,19,716,15,80,95,'A',5,'published','2026-04-16',1,'2026-04-16'),
(8042,19,616,0,0,0,'F',0,'published','2026-04-16',1,'2026-04-16'),
(8043,19,451,15,45,60,'B',4,'published','2026-04-16',1,'2026-04-16'),
(8044,19,617,22,40,62,'B',4,'published','2026-04-16',1,'2026-04-16'),
(8045,19,701,0,0,0,'F',0,'published','2026-04-16',1,'2026-04-16'),
(8046,19,618,0,0,0,'F',0,'published','2026-04-16',1,'2026-04-16'),
(8047,19,611,0,0,0,'F',0,'published','2026-04-16',1,'2026-04-16'),
(8048,211,614,15,60,75,'A',5,'published','2026-04-16',1,'2026-04-16'),
(8049,211,716,15,60,75,'A',5,'published','2026-04-16',1,'2026-04-16'),
(8050,211,616,0,0,0,'F',0,'published','2026-04-16',1,'2026-04-16'),
(8051,211,451,15,31,46,'D',2,'published','2026-04-16',1,'2026-04-16'),
(8052,211,617,24,34,58,'C',3,'published','2026-04-16',1,'2026-04-16'),
(8053,211,701,0,0,0,'F',0,'published','2026-04-16',1,'2026-04-16'),
(8054,211,618,0,0,0,'F',0,'published','2026-04-16',1,'2026-04-16'),
(8055,211,611,0,0,0,'F',0,'published','2026-04-16',1,'2026-04-16'),
(8056,250,209,0,0,0,'F',0,'published','2026-04-16',1,'2026-04-16'),
(8057,250,208,0,0,0,'F',0,'published','2026-04-16',1,'2026-04-16'),
(8058,250,206,0,0,0,'F',0,'published','2026-04-16',1,'2026-04-16'),
(8059,322,624,0,0,0,'F',0,'published','2026-04-16',1,'2026-04-16'),
(8060,111,742,20,55,75,'A',5,'published','2026-04-16',1,'2026-04-16'),
(8061,111,743,15,25,40,'E',1,'published','2026-04-16',1,'2026-04-16'),
(8062,111,744,0,0,0,'F',0,'published','2026-04-16',1,'2026-04-16'),
(8063,111,746,20,24,44,'E',1,'published','2026-04-16',1,'2026-04-16'),
(8064,111,745,20,60,80,'A',5,'published','2026-04-16',1,'2026-04-16'),
(8065,162,686,0,0,0,'F',0,'published','2026-04-17',1,'2026-04-17'),
(8066,162,687,15,5,20,'F',0,'published','2026-04-17',1,'2026-04-17'),
(8067,162,688,0,0,0,'F',0,'published','2026-04-17',1,'2026-04-17'),
(8068,162,689,0,0,0,'F',0,'published','2026-04-17',1,'2026-04-17'),
(8069,162,690,0,0,0,'F',0,'published','2026-04-17',1,'2026-04-17'),
(8070,162,691,0,0,0,'F',0,'published','2026-04-17',1,'2026-04-17'),
(8071,162,692,0,0,0,'F',0,'published','2026-04-17',1,'2026-04-17'),
(8072,162,695,0,0,0,'F',0,'published','2026-04-17',1,'2026-04-17'),
(8073,162,693,0,0,0,'F',0,'published','2026-04-17',1,'2026-04-17'),
(8074,162,694,0,0,0,'F',0,'published','2026-04-17',1,'2026-04-17'),
(8075,162,696,0,0,0,'F',0,'published','2026-04-17',1,'2026-04-17'),
(8076,162,697,0,0,0,'F',0,'published','2026-04-17',1,'2026-04-17'),
(8077,162,698,0,0,0,'F',0,'published','2026-04-17',1,'2026-04-17'),
(8078,162,699,0,0,0,'F',0,'published','2026-04-17',1,'2026-04-17'),
(8079,162,700,0,0,0,'F',0,'published','2026-04-17',1,'2026-04-17'),
(8080,202,613,20,50,70,'A',5,'published','2026-04-17',1,'2026-04-17'),
(8081,318,511,0,0,0,'F',0,'published','2026-04-17',1,'2026-04-17'),
(8082,322,621,0,0,0,'F',0,'published','2026-04-17',1,'2026-04-17'),
(8083,322,622,0,0,0,'F',0,'published','2026-04-17',1,'2026-04-17'),
(8084,322,623,0,0,0,'F',0,'published','2026-04-17',1,'2026-04-17'),
(8085,322,3,0,0,0,'F',0,'published','2026-04-17',1,'2026-04-17'),
(8086,322,198,0,0,0,'F',0,'published','2026-04-17',1,'2026-04-17'),
(8087,42,497,0,0,0,'F',0,'published','2026-04-17',1,'2026-04-17'),
(8088,42,496,0,0,0,'F',0,'published','2026-04-17',1,'2026-04-17'),
(8089,42,498,0,0,0,'F',0,'published','2026-04-17',1,'2026-04-17'),
(8090,42,499,0,0,0,'F',0,'published','2026-04-17',1,'2026-04-17'),
(8091,42,500,0,0,0,'F',0,'published','2026-04-17',1,'2026-04-17'),
(8092,42,501,0,0,0,'F',0,'published','2026-04-17',1,'2026-04-17'),
(8093,42,649,0,0,0,'F',0,'published','2026-04-17',1,'2026-04-17'),
(8094,198,716,15,60,75,'A',5,'published','2026-04-19',1,'2026-04-19'),
(8095,121,610,0,0,0,'F',0,'published','2026-04-19',1,'2026-04-19'),
(8096,125,756,25,30,55,'C',3,'published','2026-04-19',1,'2026-04-19'),
(8097,125,608,0,0,0,'F',0,'published','2026-04-19',1,'2026-04-19'),
(8098,125,606,0,0,0,'F',0,'published','2026-04-19',1,'2026-04-19'),
(8099,136,604,0,0,0,'F',0,'published','2026-04-19',1,'2026-04-19'),
(8100,136,605,0,0,0,'F',0,'published','2026-04-19',1,'2026-04-19'),
(8101,136,606,0,0,0,'F',0,'published','2026-04-19',1,'2026-04-19'),
(8102,136,607,0,0,0,'F',0,'published','2026-04-19',1,'2026-04-19'),
(8103,136,608,0,0,0,'F',0,'published','2026-04-19',1,'2026-04-19'),
(8104,136,609,22,26,48,'D',2,'published','2026-04-19',1,'2026-04-19'),
(8105,136,756,25,15,40,'E',1,'published','2026-04-19',1,'2026-04-19'),
(8106,136,610,0,0,0,'F',0,'published','2026-04-19',1,'2026-04-19'),
(8107,127,604,0,0,0,'F',0,'published','2026-04-19',1,'2026-04-19'),
(8108,127,605,0,0,0,'F',0,'published','2026-04-19',1,'2026-04-19'),
(8109,127,606,0,0,0,'F',0,'published','2026-04-19',1,'2026-04-19'),
(8110,127,608,0,0,0,'F',0,'published','2026-04-19',1,'2026-04-19'),
(8111,127,607,0,0,0,'F',0,'published','2026-04-19',1,'2026-04-19'),
(8112,127,610,0,0,0,'F',0,'published','2026-04-19',1,'2026-04-19'),
(8113,127,756,25,38,63,'B',4,'published','2026-04-19',1,'2026-04-19'),
(8114,127,609,0,0,0,'F',0,'published','2026-04-19',1,'2026-04-19'),
(8115,138,673,0,0,0,'F',0,'published','2026-04-19',1,'2026-04-19'),
(8116,138,674,0,0,0,'F',0,'published','2026-04-19',1,'2026-04-19'),
(8117,138,676,0,0,0,'F',0,'published','2026-04-19',1,'2026-04-19'),
(8118,138,475,0,0,0,'F',0,'published','2026-04-19',1,'2026-04-19'),
(8119,138,677,0,0,0,'F',0,'published','2026-04-19',1,'2026-04-19'),
(8120,138,479,0,0,0,'F',0,'published','2026-04-19',1,'2026-04-19'),
(8121,138,679,0,0,0,'F',0,'published','2026-04-19',1,'2026-04-19'),
(8122,138,682,0,0,0,'F',0,'published','2026-04-19',1,'2026-04-19'),
(8123,139,607,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8124,139,608,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8125,139,609,22,26,48,'D',2,'published','2026-04-20',1,'2026-04-20'),
(8126,139,756,25,9,34,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8127,139,610,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8128,139,673,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8129,139,674,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8130,267,613,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8131,267,614,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8132,267,615,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8133,267,716,15,60,75,'A',5,'published','2026-04-20',1,'2026-04-20'),
(8134,267,616,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8135,267,451,15,26,41,'E',1,'published','2026-04-20',1,'2026-04-20'),
(8136,267,617,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8137,267,701,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8138,267,618,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8139,267,611,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8140,188,686,20,45,65,'B',4,'published','2026-04-20',1,'2026-04-20'),
(8141,188,694,20,35,55,'C',3,'published','2026-04-20',1,'2026-04-20'),
(8142,188,693,12,28,40,'E',1,'published','2026-04-20',1,'2026-04-20'),
(8143,188,695,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8144,188,692,27,25,52,'C',3,'published','2026-04-20',1,'2026-04-20'),
(8145,188,691,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8146,188,690,25,52,77,'A',5,'published','2026-04-20',1,'2026-04-20'),
(8147,188,689,23,29,52,'C',3,'published','2026-04-20',1,'2026-04-20'),
(8148,188,688,27,40,67,'B',4,'published','2026-04-20',1,'2026-04-20'),
(8149,188,687,15,14,29,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8150,273,745,20,40,60,'B',4,'published','2026-04-20',1,'2026-04-20'),
(8151,273,746,20,35,55,'C',3,'published','2026-04-20',1,'2026-04-20'),
(8152,273,744,20,34,54,'C',3,'published','2026-04-20',1,'2026-04-20'),
(8153,273,743,15,36,51,'C',3,'published','2026-04-20',1,'2026-04-20'),
(8154,273,742,19,53,72,'A',5,'published','2026-04-20',1,'2026-04-20'),
(8155,272,613,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8156,272,614,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8157,272,615,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8158,272,716,20,70,90,'A',5,'published','2026-04-20',1,'2026-04-20'),
(8159,272,616,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8160,272,451,15,56,71,'A',5,'published','2026-04-20',1,'2026-04-20'),
(8161,272,617,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8162,272,701,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8163,272,618,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8164,322,760,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8165,272,685,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8166,272,684,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8167,272,683,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8168,272,458,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8169,272,459,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8170,272,460,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8171,322,615,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8172,322,611,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8173,322,618,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8174,322,616,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8175,322,716,15,65,80,'A',5,'published','2026-04-20',1,'2026-04-20'),
(8176,322,451,15,36,51,'C',3,'published','2026-04-20',1,'2026-04-20'),
(8177,322,617,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8178,322,701,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8179,340,666,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8180,340,748,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8181,340,667,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8182,340,668,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8183,340,747,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8184,340,669,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8185,340,650,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8186,340,670,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8187,340,717,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8188,340,671,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8189,340,672,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8190,92,761,10,50,60,'B',4,'published','2026-04-20',1,'2026-04-20'),
(8191,322,233,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8192,322,762,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8193,322,763,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8194,322,764,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8195,322,765,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8196,322,179,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8197,322,766,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8198,322,767,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8199,322,276,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8200,322,625,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8201,322,5,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8202,322,685,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8203,322,684,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8204,322,683,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8205,322,458,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8206,322,459,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8207,322,460,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8208,337,671,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8209,337,672,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8210,337,666,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8211,337,748,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8212,337,747,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8213,337,669,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8214,337,668,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8215,337,667,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8216,337,717,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8217,337,670,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8218,265,685,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8219,265,684,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8220,265,683,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8221,265,458,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8222,265,459,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8223,265,613,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8224,265,615,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8225,265,614,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8226,265,716,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8227,265,616,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8228,265,451,15,43,58,'C',3,'published','2026-04-20',1,'2026-04-20'),
(8229,265,617,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8230,265,701,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8231,265,618,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8232,265,611,0,0,0,'F',0,'published','2026-04-20',1,'2026-04-20'),
(8233,367,606,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8234,139,604,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8235,139,605,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8236,139,606,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8237,182,681,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8238,120,604,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8239,120,605,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8240,120,606,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8241,120,607,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8242,120,608,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8243,120,609,22,48,70,'A',5,'published','2026-04-21',1,'2026-04-21'),
(8244,120,756,25,40,65,'B',4,'published','2026-04-21',1,'2026-04-21'),
(8245,120,610,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8246,136,682,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8247,136,681,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8248,136,679,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8249,136,677,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8250,136,676,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21');
INSERT INTO `results` (`id`,`student_id`,`course_offering_id`,`continuous_assessment`,`exam_score`,`total_score`,`letter_grade`,`grade_point`,`status`,`published_at`,`updated_by`,`updated_at`) VALUES
(8251,126,604,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8252,126,605,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8253,126,606,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8254,126,607,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8255,126,608,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8256,126,609,22,26,48,'D',2,'published','2026-04-21',1,'2026-04-21'),
(8257,126,756,25,25,50,'C',3,'published','2026-04-21',1,'2026-04-21'),
(8258,117,673,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8259,126,610,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8260,117,674,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8261,117,675,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8262,117,676,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8263,117,677,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8264,117,679,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8265,117,681,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8266,117,682,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8267,117,680,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8268,126,1,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8269,126,583,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8270,126,585,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8271,126,586,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8272,126,592,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8273,126,590,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8274,126,587,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8275,126,593,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8276,155,673,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8277,155,674,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8278,155,675,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8279,155,676,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8280,155,475,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8281,155,677,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8282,155,679,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8283,155,680,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8284,155,682,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8285,155,681,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8286,137,604,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8287,137,605,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8288,113,716,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8289,137,606,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8290,137,607,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8291,137,608,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8292,137,609,22,26,48,'D',2,'published','2026-04-21',1,'2026-04-21'),
(8293,137,756,25,29,54,'C',3,'published','2026-04-21',1,'2026-04-21'),
(8294,137,610,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8295,320,613,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8296,320,615,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8297,320,616,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8298,320,617,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8299,320,618,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8300,320,716,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8301,320,451,15,26,41,'E',1,'published','2026-04-21',1,'2026-04-21'),
(8302,320,701,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8303,320,614,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8304,320,769,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8305,320,770,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8306,320,771,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8307,320,767,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8308,320,766,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8309,320,179,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8310,320,765,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8311,320,764,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8312,320,763,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8313,320,762,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8314,137,675,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8315,137,677,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8316,137,676,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8317,137,678,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8318,137,475,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8319,137,479,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8320,137,679,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8321,137,681,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8322,137,682,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8323,137,673,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8324,137,674,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8325,137,680,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8326,309,521,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8327,309,525,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8328,309,522,14,38,52,'C',3,'published','2026-04-21',1,'2026-04-21'),
(8329,309,526,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8330,309,523,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8331,309,524,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8332,309,528,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8333,309,530,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8334,309,531,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8335,309,532,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8336,309,533,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8337,309,534,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8338,309,529,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8339,309,527,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8340,46,614,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8341,46,613,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8342,46,615,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8343,46,616,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8344,46,451,15,27,42,'E',1,'published','2026-04-21',1,'2026-04-21'),
(8345,46,617,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8346,46,701,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8347,46,611,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8348,266,618,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8349,36,716,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8350,130,682,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8351,130,680,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8352,176,673,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8353,176,674,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8354,176,675,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8355,176,676,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8356,176,475,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8357,176,677,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8358,176,682,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8359,176,680,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8360,176,679,0,0,0,'F',0,'published','2026-04-21',1,'2026-04-21'),
(8361,165,696,0,0,0,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8362,165,697,0,0,0,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8363,165,698,0,0,0,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8364,165,700,0,0,0,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8365,165,699,0,0,0,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8366,165,686,0,0,0,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8367,165,687,0,0,0,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8368,165,688,0,0,0,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8369,165,689,0,0,0,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8370,165,690,0,0,0,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8371,165,692,0,0,0,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8372,165,691,0,0,0,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8373,165,695,0,0,0,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8374,165,693,0,0,0,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8375,165,694,0,0,0,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8376,202,614,0,0,0,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8377,202,615,0,0,0,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8378,202,616,0,0,0,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8379,202,716,0,0,0,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8380,202,451,15,57,72,'A',5,'published','2026-04-22',1,'2026-04-22'),
(8381,202,617,0,0,0,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8382,202,701,0,0,0,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8383,89,716,0,0,0,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8384,89,611,0,0,0,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8385,317,696,0,0,0,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8386,317,697,0,0,0,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8387,317,698,0,0,0,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8388,317,699,0,0,0,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8389,317,700,0,0,0,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8390,317,686,20,50,70,'A',5,'published','2026-04-22',1,'2026-04-22'),
(8391,317,687,15,9,24,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8392,317,688,19,37,56,'C',3,'published','2026-04-22',1,'2026-04-22'),
(8393,317,689,16,38,54,'C',3,'published','2026-04-22',1,'2026-04-22'),
(8394,317,690,25,30,55,'C',3,'published','2026-04-22',1,'2026-04-22'),
(8395,317,691,0,0,0,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8396,317,692,21,19,40,'E',1,'published','2026-04-22',1,'2026-04-22'),
(8397,317,695,0,0,0,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8398,317,693,14,21,35,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8399,317,694,22,38,60,'B',4,'published','2026-04-22',1,'2026-04-22'),
(8400,317,200,0,0,0,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8401,317,201,0,0,0,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8402,317,202,0,0,0,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8403,317,203,0,0,0,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8404,317,204,0,0,0,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8405,317,754,0,0,0,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8406,317,206,0,0,0,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8407,317,755,0,0,0,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8408,317,208,0,0,0,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8409,317,209,0,0,0,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8410,317,210,0,0,0,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8411,317,648,0,0,0,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8412,317,647,0,0,0,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8413,317,646,0,0,0,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8414,317,645,0,0,0,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8415,317,643,0,0,0,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8416,317,642,0,0,0,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8417,317,641,0,0,0,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8418,317,640,0,0,0,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8419,317,639,0,0,0,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8420,115,674,0,0,0,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8421,115,675,0,0,0,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8422,115,676,0,0,0,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8423,115,475,0,0,0,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8424,115,677,0,0,0,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8425,115,479,0,0,0,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8426,115,679,0,0,0,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8427,115,682,0,0,0,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8428,344,717,0,0,0,'F',0,'published','2026-04-22',1,'2026-04-22'),
(8429,163,686,20,10,30,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8430,163,687,15,6,21,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8431,163,688,23,61,84,'A',5,'published','2026-04-23',1,'2026-04-23'),
(8432,163,689,10,50,60,'B',4,'published','2026-04-23',1,'2026-04-23'),
(8433,163,690,25,44,69,'B',4,'published','2026-04-23',1,'2026-04-23'),
(8434,163,691,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8435,163,692,26,31,57,'C',3,'published','2026-04-23',1,'2026-04-23'),
(8436,163,695,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8437,163,693,16,26,42,'E',1,'published','2026-04-23',1,'2026-04-23'),
(8438,163,694,20,41,61,'B',4,'published','2026-04-23',1,'2026-04-23'),
(8439,401,666,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8440,401,748,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8441,401,667,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8442,401,668,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8443,401,747,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8444,401,669,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8445,401,650,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8446,401,670,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8447,401,717,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8448,401,671,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8449,401,672,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8450,383,772,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8451,383,773,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8452,383,774,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8453,383,775,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8454,383,776,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8455,383,777,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8456,383,778,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8457,383,779,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8458,176,780,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8459,396,774,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8460,396,772,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8461,396,775,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8462,396,773,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8463,396,776,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8464,396,777,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8465,396,778,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8466,396,779,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8467,379,781,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8468,379,782,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8469,379,727,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8470,379,783,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8471,379,735,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8472,379,728,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8473,379,729,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8474,341,666,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8475,341,748,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8476,341,667,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8477,341,668,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8478,341,747,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8479,341,669,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8480,341,650,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8481,341,670,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8482,341,717,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8483,341,671,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8484,341,672,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8485,379,738,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8486,379,739,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8487,379,737,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8488,379,736,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8489,379,734,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8490,379,732,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8491,379,740,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8492,379,741,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8493,379,730,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8494,379,731,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8495,130,584,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8496,130,588,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8497,130,628,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8498,382,666,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8499,382,748,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8500,382,667,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23');
INSERT INTO `results` (`id`,`student_id`,`course_offering_id`,`continuous_assessment`,`exam_score`,`total_score`,`letter_grade`,`grade_point`,`status`,`published_at`,`updated_by`,`updated_at`) VALUES
(8501,382,668,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8502,382,747,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8503,382,669,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8504,382,650,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8505,382,672,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8506,382,671,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8507,382,717,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8508,382,670,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8509,378,666,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8510,378,748,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8511,378,667,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8512,378,668,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8513,378,747,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8514,378,669,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8515,378,650,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8516,378,670,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8517,378,717,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8518,378,671,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8519,378,672,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8520,384,717,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8521,393,666,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8522,394,666,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8523,394,748,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8524,394,784,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8525,394,668,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8526,394,747,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8527,394,669,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8528,394,650,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8529,394,670,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8530,394,717,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8531,394,671,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8532,394,672,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8533,403,594,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8534,403,595,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8535,403,596,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8536,403,597,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8537,403,598,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8538,403,599,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8539,403,600,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8540,403,601,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8541,403,602,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8542,403,603,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8543,403,619,0,0,0,'F',0,'published','2026-04-23',1,'2026-04-23'),
(8544,393,748,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8545,393,667,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8546,393,668,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8547,393,672,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8548,393,717,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8549,393,650,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8550,393,669,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8551,393,747,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8552,393,670,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8553,393,671,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8554,351,666,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8555,351,748,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8556,351,667,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8557,351,668,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8558,351,747,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8559,351,669,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8560,351,650,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8561,351,670,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8562,351,717,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8563,351,672,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8564,146,513,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8565,146,514,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8566,146,536,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8567,146,515,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8568,146,516,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8569,146,517,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8570,146,518,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8571,146,519,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8572,146,520,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8573,373,602,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8574,395,666,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8575,395,748,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8576,395,667,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8577,395,668,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8578,395,747,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8579,395,669,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8580,395,650,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8581,395,670,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8582,395,717,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8583,395,671,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8584,395,672,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8585,404,594,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8586,404,595,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8587,404,596,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8588,404,597,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8589,404,599,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8590,404,601,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8591,404,602,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8592,404,603,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8593,404,619,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8594,405,731,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8595,405,735,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8596,405,729,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8597,405,732,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8598,405,733,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8599,405,728,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8600,405,736,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8601,405,737,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8602,405,738,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8603,405,739,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8604,405,740,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8605,405,741,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8606,405,730,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8607,405,734,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8608,405,727,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8609,254,513,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8610,254,514,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8611,254,536,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8612,254,515,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8613,254,516,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8614,254,517,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8615,254,518,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8616,254,519,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8617,254,520,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8618,254,785,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8619,254,786,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8620,254,787,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8621,254,788,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8622,254,789,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8623,254,790,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8624,254,791,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8625,406,571,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8626,406,564,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8627,406,567,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8628,406,568,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8629,406,563,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8630,406,566,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8631,406,572,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8632,406,569,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8633,406,570,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8634,406,562,15,25,40,'E',1,'published','2026-04-24',1,'2026-04-24'),
(8635,406,561,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8636,406,560,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8637,406,565,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8638,406,666,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8639,406,748,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8640,406,667,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8641,406,668,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8642,406,747,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8643,406,669,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8644,406,650,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8645,406,670,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8646,406,717,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8647,406,671,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8648,406,672,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8649,363,718,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8650,363,720,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8651,363,719,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8652,363,724,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8653,363,723,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8654,407,551,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8655,407,548,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8656,407,546,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8657,407,550,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8658,407,553,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8659,407,554,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8660,407,555,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8661,407,556,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8662,407,559,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8663,407,547,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8664,407,558,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8665,407,792,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8666,407,793,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8667,407,557,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8668,407,549,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8669,407,794,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8670,407,795,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8671,144,785,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8672,144,786,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8673,144,787,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8674,144,788,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8675,144,789,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8676,144,790,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8677,144,791,0,0,0,'F',0,'published','2026-04-24',1,'2026-04-24'),
(8678,363,725,0,0,0,'F',0,'published','2026-04-25',1,'2026-04-25'),
(8679,363,722,0,0,0,'F',0,'published','2026-04-25',1,'2026-04-25'),
(8680,363,721,0,0,0,'F',0,'published','2026-04-25',1,'2026-04-25'),
(8681,114,673,0,0,0,'F',0,'published','2026-04-25',1,'2026-04-25'),
(8682,114,674,0,0,0,'F',0,'published','2026-04-25',1,'2026-04-25'),
(8683,114,675,0,0,0,'F',0,'published','2026-04-25',1,'2026-04-25'),
(8684,114,676,0,0,0,'F',0,'published','2026-04-25',1,'2026-04-25'),
(8685,114,475,0,0,0,'F',0,'published','2026-04-25',1,'2026-04-25'),
(8686,114,677,0,0,0,'F',0,'published','2026-04-25',1,'2026-04-25'),
(8687,159,696,0,0,0,'F',0,'published','2026-04-26',1,'2026-04-26'),
(8688,159,697,0,0,0,'F',0,'published','2026-04-26',1,'2026-04-26'),
(8689,159,698,0,0,0,'F',0,'published','2026-04-26',1,'2026-04-26'),
(8690,159,699,0,0,0,'F',0,'published','2026-04-26',1,'2026-04-26'),
(8691,159,700,0,0,0,'F',0,'published','2026-04-26',1,'2026-04-26'),
(8692,384,666,0,0,0,'F',0,'published','2026-04-27',1,'2026-04-27'),
(8693,384,748,0,0,0,'F',0,'published','2026-04-27',1,'2026-04-27'),
(8694,384,667,0,0,0,'F',0,'published','2026-04-27',1,'2026-04-27'),
(8695,384,747,0,0,0,'F',0,'published','2026-04-27',1,'2026-04-27'),
(8696,384,669,0,0,0,'F',0,'published','2026-04-27',1,'2026-04-27'),
(8697,408,604,0,0,0,'F',0,'published','2026-04-27',1,'2026-04-27'),
(8698,408,605,0,0,0,'F',0,'published','2026-04-27',1,'2026-04-27'),
(8699,408,606,0,0,0,'F',0,'published','2026-04-27',1,'2026-04-27'),
(8700,408,607,0,0,0,'F',0,'published','2026-04-27',1,'2026-04-27'),
(8701,408,608,0,0,0,'F',0,'published','2026-04-27',1,'2026-04-27'),
(8702,408,487,0,0,0,'F',0,'published','2026-04-27',1,'2026-04-27'),
(8703,408,609,22,25,47,'D',2,'published','2026-04-27',1,'2026-04-27'),
(8704,408,756,25,26,51,'C',3,'published','2026-04-27',1,'2026-04-27'),
(8705,408,610,0,0,0,'F',0,'published','2026-04-27',1,'2026-04-27'),
(8706,408,681,0,0,0,'F',0,'published','2026-04-27',1,'2026-04-27'),
(8707,408,682,0,0,0,'F',0,'published','2026-04-27',1,'2026-04-27'),
(8708,408,680,0,0,0,'F',0,'published','2026-04-27',1,'2026-04-27'),
(8709,408,679,0,0,0,'F',0,'published','2026-04-27',1,'2026-04-27'),
(8710,408,678,0,0,0,'F',0,'published','2026-04-27',1,'2026-04-27'),
(8711,408,677,0,0,0,'F',0,'published','2026-04-27',1,'2026-04-27'),
(8712,408,676,0,0,0,'F',0,'published','2026-04-27',1,'2026-04-27'),
(8713,408,675,0,0,0,'F',0,'published','2026-04-27',1,'2026-04-27'),
(8714,408,674,0,0,0,'F',0,'published','2026-04-27',1,'2026-04-27'),
(8715,408,673,0,0,0,'F',0,'published','2026-04-27',1,'2026-04-27'),
(8716,380,666,0,0,0,'F',0,'published','2026-04-27',1,'2026-04-27'),
(8717,380,784,0,0,0,'F',0,'published','2026-04-27',1,'2026-04-27'),
(8718,380,667,0,0,0,'F',0,'published','2026-04-27',1,'2026-04-27'),
(8719,380,747,0,0,0,'F',0,'published','2026-04-27',1,'2026-04-27'),
(8720,380,650,0,0,0,'F',0,'published','2026-04-27',1,'2026-04-27'),
(8721,380,670,0,0,0,'F',0,'published','2026-04-27',1,'2026-04-27'),
(8722,380,717,0,0,0,'F',0,'published','2026-04-27',1,'2026-04-27'),
(8723,380,672,0,0,0,'F',0,'published','2026-04-27',1,'2026-04-27'),
(8724,380,753,0,0,0,'F',0,'published','2026-04-27',1,'2026-04-27'),
(8725,380,668,0,0,0,'F',0,'published','2026-04-27',1,'2026-04-27'),
(8726,380,669,0,0,0,'F',0,'published','2026-04-27',1,'2026-04-27'),
(8727,380,748,0,0,0,'F',0,'published','2026-04-27',1,'2026-04-27'),
(8728,380,671,0,0,0,'F',0,'published','2026-04-27',1,'2026-04-27'),
(8729,154,487,0,0,0,'F',0,'published','2026-04-27',1,'2026-04-27'),
(8730,154,756,0,0,0,'F',0,'published','2026-04-27',1,'2026-04-27'),
(8731,127,673,0,0,0,'F',0,'published','2026-04-27',1,'2026-04-27'),
(8732,127,674,0,0,0,'F',0,'published','2026-04-27',1,'2026-04-27'),
(8733,127,675,0,0,0,'F',0,'published','2026-04-27',1,'2026-04-27'),
(8734,127,676,0,0,0,'F',0,'published','2026-04-27',1,'2026-04-27'),
(8735,127,677,0,0,0,'F',0,'published','2026-04-27',1,'2026-04-27'),
(8736,127,479,0,0,0,'F',0,'published','2026-04-27',1,'2026-04-27'),
(8737,127,682,0,0,0,'F',0,'published','2026-04-27',1,'2026-04-27'),
(8738,127,681,0,0,0,'F',0,'published','2026-04-27',1,'2026-04-27'),
(8739,127,680,0,0,0,'F',0,'published','2026-04-27',1,'2026-04-27'),
(8740,127,679,0,0,0,'F',0,'published','2026-04-27',1,'2026-04-27'),
(8741,373,796,0,0,0,'F',0,'published','2026-04-28',1,'2026-04-28'),
(8742,373,797,0,0,0,'F',0,'published','2026-04-28',1,'2026-04-28'),
(8743,373,798,0,0,0,'F',0,'published','2026-04-28',1,'2026-04-28'),
(8744,373,799,0,0,0,'F',0,'published','2026-04-28',1,'2026-04-28'),
(8745,373,800,0,0,0,'F',0,'published','2026-04-28',1,'2026-04-28'),
(8746,373,801,0,0,0,'F',0,'published','2026-04-28',1,'2026-04-28'),
(8747,373,802,0,0,0,'F',0,'published','2026-04-28',1,'2026-04-28'),
(8748,373,803,0,0,0,'F',0,'published','2026-04-28',1,'2026-04-28'),
(8749,373,804,0,0,0,'F',0,'published','2026-04-28',1,'2026-04-28'),
(8750,373,805,0,0,0,'F',0,'published','2026-04-28',1,'2026-04-28');
INSERT INTO `results` (`id`,`student_id`,`course_offering_id`,`continuous_assessment`,`exam_score`,`total_score`,`letter_grade`,`grade_point`,`status`,`published_at`,`updated_by`,`updated_at`) VALUES
(8751,367,673,0,0,0,'F',0,'published','2026-04-28',1,'2026-04-28'),
(8752,367,677,0,0,0,'F',0,'published','2026-04-28',1,'2026-04-28'),
(8753,367,475,0,0,0,'F',0,'published','2026-04-28',1,'2026-04-28'),
(8754,367,674,0,0,0,'F',0,'published','2026-04-28',1,'2026-04-28'),
(8755,367,675,0,0,0,'F',0,'published','2026-04-28',1,'2026-04-28'),
(8756,367,676,0,0,0,'F',0,'published','2026-04-28',1,'2026-04-28'),
(8757,367,479,0,0,0,'F',0,'published','2026-04-28',1,'2026-04-28'),
(8758,367,679,0,0,0,'F',0,'published','2026-04-28',1,'2026-04-28'),
(8759,367,682,0,0,0,'F',0,'published','2026-04-28',1,'2026-04-28'),
(8760,311,528,0,0,0,'F',0,'published','2026-04-29',1,'2026-04-29'),
(8761,311,529,0,0,0,'F',0,'published','2026-04-29',1,'2026-04-29'),
(8762,311,531,0,0,0,'F',0,'published','2026-04-29',1,'2026-04-29'),
(8763,311,532,0,0,0,'F',0,'published','2026-04-29',1,'2026-04-29'),
(8764,311,533,0,0,0,'F',0,'published','2026-04-29',1,'2026-04-29'),
(8765,311,534,0,0,0,'F',0,'published','2026-04-29',1,'2026-04-29'),
(8766,311,530,0,0,0,'F',0,'published','2026-04-29',1,'2026-04-29'),
(8767,118,673,0,0,0,'F',0,'published','2026-04-29',1,'2026-04-29'),
(8768,118,674,0,0,0,'F',0,'published','2026-04-29',1,'2026-04-29'),
(8769,118,675,0,0,0,'F',0,'published','2026-04-29',1,'2026-04-29'),
(8770,118,676,0,0,0,'F',0,'published','2026-04-29',1,'2026-04-29'),
(8771,118,475,0,0,0,'F',0,'published','2026-04-29',1,'2026-04-29'),
(8772,118,677,0,0,0,'F',0,'published','2026-04-29',1,'2026-04-29'),
(8773,118,679,0,0,0,'F',0,'published','2026-04-29',1,'2026-04-29'),
(8774,118,680,0,0,0,'F',0,'published','2026-04-29',1,'2026-04-29'),
(8775,118,682,0,0,0,'F',0,'published','2026-04-29',1,'2026-04-29'),
(8776,350,666,0,0,0,'F',0,'published','2026-04-29',1,'2026-04-29'),
(8777,350,748,0,0,0,'F',0,'published','2026-04-29',1,'2026-04-29'),
(8778,350,667,0,0,0,'F',0,'published','2026-04-29',1,'2026-04-29'),
(8779,350,668,0,0,0,'F',0,'published','2026-04-29',1,'2026-04-29'),
(8780,350,747,0,0,0,'F',0,'published','2026-04-29',1,'2026-04-29'),
(8781,350,669,0,0,0,'F',0,'published','2026-04-29',1,'2026-04-29'),
(8782,350,650,0,0,0,'F',0,'published','2026-04-29',1,'2026-04-29'),
(8783,350,670,0,0,0,'F',0,'published','2026-04-29',1,'2026-04-29'),
(8784,350,717,0,0,0,'F',0,'published','2026-04-29',1,'2026-04-29'),
(8785,350,671,0,0,0,'F',0,'published','2026-04-29',1,'2026-04-29'),
(8786,350,672,0,0,0,'F',0,'published','2026-04-29',1,'2026-04-29'),
(8787,12,573,16,14,30,'F',0,'published','2026-04-29',1,'2026-04-29'),
(8788,372,799,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8789,372,798,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8790,372,800,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8791,372,801,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8792,372,802,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8793,372,803,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8794,372,804,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8795,372,805,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8796,372,797,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8797,372,796,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8798,403,796,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8799,403,797,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8800,370,796,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8801,370,797,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8802,403,799,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8803,370,799,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8804,403,798,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8805,370,798,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8806,403,800,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8807,403,801,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8808,370,800,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8809,370,801,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8810,403,802,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8811,370,802,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8812,403,803,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8813,370,803,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8814,403,804,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8815,370,804,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8816,403,805,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8817,370,805,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8818,329,719,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8819,329,721,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8820,329,718,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8821,329,720,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8822,329,722,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8823,329,723,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8824,329,724,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8825,329,725,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8826,404,796,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8827,404,797,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8828,404,799,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8829,404,798,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8830,404,800,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8831,404,801,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8832,404,802,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8833,404,803,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8834,404,804,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8835,404,805,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8836,397,774,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8837,397,772,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8838,397,775,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8839,397,773,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8840,397,777,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8841,397,778,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8842,397,779,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8843,388,774,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8844,388,772,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8845,388,775,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8846,388,773,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8847,388,777,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8848,388,778,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8849,369,772,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8850,369,775,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8851,369,774,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8852,369,773,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8853,369,777,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8854,369,778,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8855,369,779,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8856,389,774,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8857,389,772,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8858,389,775,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8859,389,773,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8860,389,777,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8861,389,778,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8862,389,779,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8863,388,779,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8864,368,774,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8865,368,772,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8866,368,775,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8867,368,773,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8868,368,777,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8869,368,778,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8870,368,779,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8871,338,718,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8872,338,719,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8873,338,720,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8874,338,721,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8875,338,722,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8876,338,723,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8877,338,724,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8878,338,725,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8879,371,799,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8880,371,798,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8881,371,800,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8882,371,801,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8883,371,802,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8884,371,803,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8885,371,804,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8886,371,805,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8887,371,796,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8888,371,797,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8889,336,718,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8890,336,719,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8891,336,720,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8892,336,721,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8893,336,722,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8894,336,723,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8895,336,724,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8896,336,725,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8897,327,718,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8898,327,719,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8899,327,720,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8900,327,721,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8901,327,722,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8902,327,723,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8903,327,724,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8904,327,725,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8905,353,774,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8906,353,772,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8907,353,775,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8908,353,773,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8909,353,777,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8910,353,778,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8911,353,779,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8912,409,538,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8913,409,539,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8914,409,545,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8915,409,540,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8916,409,541,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8917,409,542,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8918,409,543,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8919,409,544,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8920,409,718,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8921,409,719,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8922,409,720,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8923,409,721,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8924,409,722,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8925,409,723,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8926,409,724,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8927,409,725,0,0,0,'F',0,'published','2026-04-30',1,'2026-04-30'),
(8928,328,718,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8929,328,719,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8930,328,720,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8931,328,722,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8932,328,721,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8933,328,723,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8934,328,724,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8935,328,725,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8936,402,539,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8937,402,540,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8938,402,541,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8939,402,542,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8940,402,543,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8941,402,544,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8942,402,545,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8943,186,630,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8944,186,633,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8945,186,631,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8946,186,632,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8947,186,634,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8948,186,636,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8949,186,637,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8950,186,638,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8951,184,630,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8952,184,631,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8953,184,632,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8954,184,633,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8955,184,634,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8956,184,636,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8957,184,637,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8958,184,638,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8959,155,678,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8960,410,83,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8961,410,84,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8962,410,85,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8963,410,86,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8964,410,87,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8965,410,88,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8966,410,89,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8967,410,90,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8968,410,108,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8969,410,109,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8970,410,110,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8971,410,111,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8972,410,112,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8973,410,113,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8974,410,114,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8975,410,211,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8976,412,571,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8977,412,567,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8978,412,564,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8979,412,563,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8980,412,572,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8981,412,569,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8982,412,561,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8983,412,560,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8984,412,562,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8985,412,570,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8986,412,565,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8987,412,568,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8988,412,566,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8989,412,666,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8990,412,748,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8991,412,667,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8992,412,668,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8993,412,747,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8994,412,669,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8995,412,650,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8996,412,670,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8997,412,717,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8998,412,671,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(8999,412,672,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(9000,413,666,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01');
INSERT INTO `results` (`id`,`student_id`,`course_offering_id`,`continuous_assessment`,`exam_score`,`total_score`,`letter_grade`,`grade_point`,`status`,`published_at`,`updated_by`,`updated_at`) VALUES
(9001,413,748,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(9002,413,667,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(9003,413,668,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(9004,413,747,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(9005,413,669,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(9006,413,650,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(9007,413,670,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(9008,413,717,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(9009,413,671,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(9010,413,672,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(9011,413,564,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(9012,413,571,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(9013,413,567,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(9014,413,568,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(9015,413,563,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(9016,413,566,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(9017,413,572,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(9018,413,569,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(9019,413,570,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(9020,413,562,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(9021,413,561,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(9022,413,560,0,0,0,'F',0,'published','2026-05-01',1,'2026-05-01'),
(9023,384,668,0,0,0,'F',0,'published','2026-05-02',1,'2026-05-02'),
(9024,384,670,0,0,0,'F',0,'published','2026-05-02',1,'2026-05-02'),
(9025,384,671,0,0,0,'F',0,'published','2026-05-02',1,'2026-05-02'),
(9026,384,672,0,0,0,'F',0,'published','2026-05-02',1,'2026-05-02'),
(9027,376,666,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9028,376,748,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9029,376,668,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9030,376,667,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9031,376,747,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9032,376,669,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9033,376,650,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9034,376,670,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9035,376,717,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9036,376,671,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9037,376,672,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9038,123,682,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9039,167,673,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9040,167,674,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9041,167,675,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9042,167,676,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9043,167,475,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9044,167,677,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9045,167,679,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9046,167,680,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9047,167,681,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9048,123,674,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9049,167,682,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9050,128,680,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9051,123,673,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9052,122,673,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9053,123,675,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9054,122,674,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9055,351,671,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9056,123,676,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9057,122,675,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9058,122,676,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9059,122,677,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9060,119,673,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9061,119,674,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9062,125,673,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9063,121,673,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9064,125,674,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9065,119,675,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9066,125,676,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9067,121,674,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9068,125,475,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9069,119,676,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9070,125,479,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9071,121,675,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9072,125,679,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9073,119,475,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9074,121,676,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9075,122,479,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9076,122,678,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9077,122,682,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9078,128,682,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9079,119,677,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9080,121,475,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9081,119,479,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9082,121,677,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9083,122,680,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9084,119,679,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9085,142,785,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9086,142,786,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9087,142,787,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9088,125,680,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9089,125,682,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9090,142,788,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9091,142,789,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9092,142,790,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9093,119,682,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9094,121,479,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9095,142,791,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9096,121,679,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9097,121,682,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9098,128,678,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9099,125,677,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9100,181,674,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9101,126,682,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9102,181,676,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9103,120,680,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9104,181,475,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9105,126,673,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9106,181,677,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9107,126,674,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9108,181,679,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9109,126,675,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9110,181,682,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9111,181,681,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9112,125,675,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9113,120,673,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9114,126,676,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9115,120,674,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9116,120,675,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9117,120,676,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9118,120,475,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9119,126,479,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9120,126,677,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9121,126,680,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9122,120,677,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9123,120,679,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9124,120,682,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9125,138,681,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9126,120,678,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9127,181,680,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9128,123,680,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9129,121,680,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9130,124,673,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9131,181,675,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9132,124,674,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9133,138,675,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9134,270,466,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9135,270,469,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9136,124,675,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9137,122,681,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9138,270,468,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9139,270,467,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9140,130,681,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9141,270,464,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9142,270,463,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9143,270,462,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9144,270,461,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9145,387,673,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9146,124,676,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9147,128,681,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9148,387,674,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9149,387,675,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9150,387,676,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9151,387,475,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9152,387,677,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9153,314,528,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9154,314,529,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9155,314,531,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9156,124,677,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9157,314,806,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9158,314,532,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9159,314,533,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9160,314,534,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9161,124,479,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9162,124,679,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9163,367,680,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9164,126,681,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9165,387,680,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9166,124,682,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9167,387,682,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9168,387,679,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9169,136,680,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9170,136,674,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9171,124,681,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9172,136,673,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9173,355,666,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9174,355,748,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9175,387,479,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9176,114,680,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9177,124,604,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9178,355,747,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9179,355,667,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9180,355,668,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9181,135,680,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9182,114,679,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9183,135,682,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9184,124,607,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9185,124,606,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9186,124,605,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9187,124,608,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9188,136,675,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9189,355,669,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9190,355,650,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9191,114,678,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9192,355,670,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9193,135,673,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9194,124,609,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9195,355,717,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9196,117,678,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9197,355,671,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9198,355,672,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9199,124,756,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9200,135,674,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9201,135,675,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9202,135,676,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9203,135,677,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9204,124,610,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9205,407,727,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9206,407,735,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9207,114,682,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9208,135,679,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9209,407,728,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9210,407,729,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9211,407,730,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9212,407,731,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9213,407,732,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9214,407,733,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9215,407,734,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9216,407,736,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9217,407,737,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9218,407,738,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9219,407,739,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9220,407,740,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9221,135,681,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9222,131,678,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9223,135,678,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9224,182,680,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9225,176,606,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9226,135,780,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9227,407,741,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9228,188,697,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9229,188,696,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9230,188,698,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9231,188,699,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9232,188,700,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9233,176,678,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9234,155,780,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9235,131,780,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9236,182,678,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9237,182,682,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9238,386,718,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9239,386,719,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9240,386,720,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9241,386,721,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9242,386,722,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9243,386,724,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9244,386,725,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9245,360,736,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9246,360,737,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9247,360,738,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9248,163,696,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9249,270,630,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9250,163,697,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04');
INSERT INTO `results` (`id`,`student_id`,`course_offering_id`,`continuous_assessment`,`exam_score`,`total_score`,`letter_grade`,`grade_point`,`status`,`published_at`,`updated_by`,`updated_at`) VALUES
(9251,270,631,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9252,360,739,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9253,163,698,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9254,270,632,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9255,163,699,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9256,270,633,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9257,163,700,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9258,270,634,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9259,360,740,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9260,270,636,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9261,270,637,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9262,270,638,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9263,360,741,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9264,360,733,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9265,360,734,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9266,360,732,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9267,386,723,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9268,158,686,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9269,158,687,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9270,360,731,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9271,158,689,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9272,158,688,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9273,158,690,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9274,360,730,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9275,158,691,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9276,158,692,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9277,360,729,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9278,360,728,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9279,158,695,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9280,360,735,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9281,158,693,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9282,158,694,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9283,360,727,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9284,182,807,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9285,158,696,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9286,158,697,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9287,182,780,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9288,158,698,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9289,158,699,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9290,182,808,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9291,158,700,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9292,182,809,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9293,178,696,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9294,178,697,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9295,178,698,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9296,178,699,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9297,178,700,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9298,361,797,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9299,361,796,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9300,391,672,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9301,391,671,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9302,361,799,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9303,391,717,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9304,361,798,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9305,391,670,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9306,361,800,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9307,391,666,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9308,361,801,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9309,391,748,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9310,361,805,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9311,391,667,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9312,361,803,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9313,391,668,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9314,391,747,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9315,361,802,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9316,391,669,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9317,391,650,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9318,361,804,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9319,156,785,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9320,156,786,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9321,156,787,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9322,156,788,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9323,156,789,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9324,156,790,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9325,156,791,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9326,160,696,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9327,160,697,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9328,160,698,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9329,160,699,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9330,160,700,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9331,183,673,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9332,183,674,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9333,183,675,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9334,183,676,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9335,183,475,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9336,183,677,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9337,183,479,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9338,183,682,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9339,183,679,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9340,399,718,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9341,399,719,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9342,399,720,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9343,399,721,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9344,399,722,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9345,399,723,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9346,399,724,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9347,399,725,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9348,400,538,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9349,400,539,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9350,400,540,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9351,400,542,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9352,400,543,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9353,400,544,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9354,400,545,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9355,400,718,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9356,400,719,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9357,400,720,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9358,400,721,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9359,400,722,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9360,400,723,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9361,400,724,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9362,400,725,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9363,413,565,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9364,173,630,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9365,173,631,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9366,173,632,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9367,173,633,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9368,173,634,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9369,173,636,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9370,173,637,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9371,173,638,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9372,173,635,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9373,366,666,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9374,357,666,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9375,366,748,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9376,366,667,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9377,366,668,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9378,357,748,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9379,366,747,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9380,366,669,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9381,366,650,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9382,357,667,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9383,366,670,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9384,366,717,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9385,357,668,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9386,366,671,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9387,366,672,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9388,357,747,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9389,357,669,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9390,357,650,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9391,357,670,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9392,357,717,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9393,357,671,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9394,357,672,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9395,356,666,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9396,356,748,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9397,356,667,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9398,356,668,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9399,356,747,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9400,356,669,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9401,356,650,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9402,356,670,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9403,356,717,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9404,356,671,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9405,356,672,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9406,358,666,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9407,358,748,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9408,358,667,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9409,358,668,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9410,358,747,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9411,358,669,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9412,358,650,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9413,358,670,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9414,358,717,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9415,358,671,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9416,358,672,0,0,0,'F',0,'published','2026-05-04',1,'2026-05-04'),
(9417,385,718,0,0,0,'F',0,'published','2026-05-05',1,'2026-05-05'),
(9418,385,719,0,0,0,'F',0,'published','2026-05-05',1,'2026-05-05'),
(9419,385,720,0,0,0,'F',0,'published','2026-05-05',1,'2026-05-05'),
(9420,385,721,0,0,0,'F',0,'published','2026-05-05',1,'2026-05-05'),
(9421,385,722,0,0,0,'F',0,'published','2026-05-05',1,'2026-05-05'),
(9422,385,723,0,0,0,'F',0,'published','2026-05-05',1,'2026-05-05'),
(9423,385,724,0,0,0,'F',0,'published','2026-05-05',1,'2026-05-05'),
(9424,385,725,0,0,0,'F',0,'published','2026-05-05',1,'2026-05-05'),
(9425,153,630,0,0,0,'F',0,'published','2026-05-05',1,'2026-05-05'),
(9426,153,631,0,0,0,'F',0,'published','2026-05-05',1,'2026-05-05'),
(9427,153,632,0,0,0,'F',0,'published','2026-05-05',1,'2026-05-05'),
(9428,153,633,0,0,0,'F',0,'published','2026-05-05',1,'2026-05-05'),
(9429,153,634,0,0,0,'F',0,'published','2026-05-05',1,'2026-05-05'),
(9430,153,636,0,0,0,'F',0,'published','2026-05-05',1,'2026-05-05'),
(9431,153,637,0,0,0,'F',0,'published','2026-05-05',1,'2026-05-05'),
(9432,153,638,0,0,0,'F',0,'published','2026-05-05',1,'2026-05-05'),
(9433,153,635,0,0,0,'F',0,'published','2026-05-05',1,'2026-05-05'),
(9434,375,796,0,0,0,'F',0,'published','2026-05-05',1,'2026-05-05'),
(9435,375,797,0,0,0,'F',0,'published','2026-05-05',1,'2026-05-05'),
(9436,375,799,0,0,0,'F',0,'published','2026-05-05',1,'2026-05-05'),
(9437,375,798,0,0,0,'F',0,'published','2026-05-05',1,'2026-05-05'),
(9438,375,800,0,0,0,'F',0,'published','2026-05-05',1,'2026-05-05'),
(9439,375,801,0,0,0,'F',0,'published','2026-05-05',1,'2026-05-05'),
(9440,375,802,0,0,0,'F',0,'published','2026-05-05',1,'2026-05-05'),
(9441,375,803,0,0,0,'F',0,'published','2026-05-05',1,'2026-05-05'),
(9442,375,804,0,0,0,'F',0,'published','2026-05-05',1,'2026-05-05'),
(9443,375,805,0,0,0,'F',0,'published','2026-05-05',1,'2026-05-05'),
(9444,146,785,0,0,0,'F',0,'published','2026-05-05',1,'2026-05-05'),
(9445,146,786,0,0,0,'F',0,'published','2026-05-05',1,'2026-05-05'),
(9446,146,787,0,0,0,'F',0,'published','2026-05-05',1,'2026-05-05'),
(9447,146,788,0,0,0,'F',0,'published','2026-05-05',1,'2026-05-05'),
(9448,146,790,0,0,0,'F',0,'published','2026-05-05',1,'2026-05-05'),
(9449,146,791,0,0,0,'F',0,'published','2026-05-05',1,'2026-05-05'),
(9450,146,789,0,0,0,'F',0,'published','2026-05-05',1,'2026-05-05'),
(9451,346,718,0,0,0,'F',0,'published','2026-05-05',1,'2026-05-05'),
(9452,346,719,0,0,0,'F',0,'published','2026-05-05',1,'2026-05-05'),
(9453,346,720,0,0,0,'F',0,'published','2026-05-05',1,'2026-05-05'),
(9454,346,721,0,0,0,'F',0,'published','2026-05-05',1,'2026-05-05'),
(9455,346,722,0,0,0,'F',0,'published','2026-05-05',1,'2026-05-05'),
(9456,346,723,0,0,0,'F',0,'published','2026-05-05',1,'2026-05-05'),
(9457,346,724,0,0,0,'F',0,'published','2026-05-05',1,'2026-05-05'),
(9458,346,725,0,0,0,'F',0,'published','2026-05-05',1,'2026-05-05'),
(9459,177,630,0,0,0,'F',0,'published','2026-05-05',1,'2026-05-05'),
(9460,177,631,0,0,0,'F',0,'published','2026-05-05',1,'2026-05-05'),
(9461,177,632,0,0,0,'F',0,'published','2026-05-05',1,'2026-05-05'),
(9462,177,633,0,0,0,'F',0,'published','2026-05-05',1,'2026-05-05'),
(9463,177,634,0,0,0,'F',0,'published','2026-05-05',1,'2026-05-05'),
(9464,177,636,0,0,0,'F',0,'published','2026-05-05',1,'2026-05-05'),
(9465,177,637,0,0,0,'F',0,'published','2026-05-05',1,'2026-05-05'),
(9466,177,638,0,0,0,'F',0,'published','2026-05-05',1,'2026-05-05'),
(9467,148,630,0,0,0,'F',0,'published','2026-05-05',1,'2026-05-05'),
(9468,148,631,0,0,0,'F',0,'published','2026-05-05',1,'2026-05-05'),
(9469,148,632,0,0,0,'F',0,'published','2026-05-05',1,'2026-05-05'),
(9470,148,633,0,0,0,'F',0,'published','2026-05-05',1,'2026-05-05'),
(9471,148,634,0,0,0,'F',0,'published','2026-05-05',1,'2026-05-05'),
(9472,148,636,0,0,0,'F',0,'published','2026-05-05',1,'2026-05-05'),
(9473,148,637,0,0,0,'F',0,'published','2026-05-05',1,'2026-05-05'),
(9474,148,638,0,0,0,'F',0,'published','2026-05-05',1,'2026-05-05'),
(9475,266,716,0,0,0,'F',0,'published','2026-05-06',1,'2026-05-06'),
(9476,266,611,0,0,0,'F',0,'published','2026-05-06',1,'2026-05-06'),
(9477,18,716,0,0,0,'F',0,'published','2026-05-06',1,'2026-05-06'),
(9478,50,29,0,0,0,'F',0,'published','2026-05-11',1,'2026-05-11'),
(9479,50,30,0,0,0,'F',0,'published','2026-05-11',1,'2026-05-11'),
(9480,50,32,0,0,0,'F',0,'published','2026-05-11',1,'2026-05-11'),
(9481,50,34,0,0,0,'F',0,'published','2026-05-11',1,'2026-05-11'),
(9482,102,716,0,0,0,'F',0,'published','2026-05-18',1,'2026-05-18'),
(9483,77,511,0,0,0,'F',0,'published','2026-06-07',1,'2026-06-07'),
(9484,82,511,0,0,0,'F',0,'published','2026-06-14',1,'2026-06-14'),
(9485,39,316,0,0,0,'F',0,'published','2026-06-15',1,'2026-06-15'),
(9486,39,318,0,0,0,'F',0,'published','2026-06-15',1,'2026-06-15'),
(9487,40,391,0,0,0,'F',0,'published','2026-06-15',1,'2026-06-15'),
(9488,40,389,0,0,0,'F',0,'published','2026-06-15',1,'2026-06-15'),
(9489,12,506,0,0,0,'F',0,'published','2026-06-15',1,'2026-06-15'),
(9490,12,620,0,0,0,'F',0,'published','2026-06-15',1,'2026-06-15'),
(9491,12,505,0,0,0,'F',0,'published','2026-06-15',1,'2026-06-15'),
(9492,12,504,0,0,0,'F',0,'published','2026-06-15',1,'2026-06-15'),
(9493,12,503,0,0,0,'F',0,'published','2026-06-15',1,'2026-06-15'),
(9494,12,502,0,0,0,'F',0,'published','2026-06-15',1,'2026-06-15'),
(9495,36,685,0,0,0,'F',0,'published','2026-06-15',1,'2026-06-15'),
(9496,36,684,0,0,0,'F',0,'published','2026-06-15',1,'2026-06-15'),
(9497,36,683,0,0,0,'F',0,'published','2026-06-15',1,'2026-06-15'),
(9498,36,458,0,0,0,'F',0,'published','2026-06-15',1,'2026-06-15'),
(9499,36,459,0,0,0,'F',0,'published','2026-06-15',1,'2026-06-15'),
(9500,36,460,0,0,0,'F',0,'published','2026-06-15',1,'2026-06-15');
INSERT INTO `results` (`id`,`student_id`,`course_offering_id`,`continuous_assessment`,`exam_score`,`total_score`,`letter_grade`,`grade_point`,`status`,`published_at`,`updated_by`,`updated_at`) VALUES
(9501,36,611,0,0,0,'F',0,'published','2026-06-15',1,'2026-06-15'),
(9502,11,810,0,0,0,'F',0,'published','2026-06-16',1,'2026-06-16'),
(9503,11,811,0,0,0,'F',0,'published','2026-06-16',1,'2026-06-16'),
(9504,11,812,0,0,0,'F',0,'published','2026-06-16',1,'2026-06-16'),
(9505,11,103,0,0,0,'F',0,'published','2026-06-16',1,'2026-06-16'),
(9506,11,104,0,0,0,'F',0,'published','2026-06-16',1,'2026-06-16'),
(9507,11,105,0,0,0,'F',0,'published','2026-06-16',1,'2026-06-16'),
(9508,109,685,0,0,0,'F',0,'published','2026-06-16',1,'2026-06-16'),
(9509,109,684,0,0,0,'F',0,'published','2026-06-16',1,'2026-06-16'),
(9510,109,683,0,0,0,'F',0,'published','2026-06-16',1,'2026-06-16'),
(9511,109,458,0,0,0,'F',0,'published','2026-06-16',1,'2026-06-16'),
(9512,109,459,0,0,0,'F',0,'published','2026-06-16',1,'2026-06-16'),
(9513,109,460,0,0,0,'F',0,'published','2026-06-16',1,'2026-06-16'),
(9514,273,511,0,0,0,'F',0,'published','2026-06-16',1,'2026-06-16'),
(9515,35,511,0,0,0,'F',0,'published','2026-06-16',1,'2026-06-16'),
(9516,102,685,0,0,0,'F',0,'published','2026-06-17',1,'2026-06-17'),
(9517,102,684,0,0,0,'F',0,'published','2026-06-17',1,'2026-06-17'),
(9518,102,683,0,0,0,'F',0,'published','2026-06-17',1,'2026-06-17'),
(9519,102,458,0,0,0,'F',0,'published','2026-06-17',1,'2026-06-17'),
(9520,102,459,0,0,0,'F',0,'published','2026-06-17',1,'2026-06-17'),
(9521,102,460,0,0,0,'F',0,'published','2026-06-17',1,'2026-06-17'),
(9522,18,685,0,0,0,'F',0,'published','2026-06-17',1,'2026-06-17'),
(9523,18,684,0,0,0,'F',0,'published','2026-06-17',1,'2026-06-17'),
(9524,18,683,0,0,0,'F',0,'published','2026-06-17',1,'2026-06-17'),
(9525,18,458,0,0,0,'F',0,'published','2026-06-17',1,'2026-06-17'),
(9526,18,459,0,0,0,'F',0,'published','2026-06-17',1,'2026-06-17'),
(9527,18,460,0,0,0,'F',0,'published','2026-06-17',1,'2026-06-17'),
(9528,48,813,0,0,0,'F',0,'published','2026-06-17',1,'2026-06-17'),
(9529,48,814,0,0,0,'F',0,'published','2026-06-17',1,'2026-06-17'),
(9530,48,815,0,0,0,'F',0,'published','2026-06-17',1,'2026-06-17'),
(9531,48,816,0,0,0,'F',0,'published','2026-06-17',1,'2026-06-17'),
(9532,48,817,0,0,0,'F',0,'published','2026-06-17',1,'2026-06-17'),
(9533,242,685,0,0,0,'F',0,'published','2026-06-17',1,'2026-06-17'),
(9534,242,684,0,0,0,'F',0,'published','2026-06-17',1,'2026-06-17'),
(9535,242,683,0,0,0,'F',0,'published','2026-06-17',1,'2026-06-17'),
(9536,242,458,0,0,0,'F',0,'published','2026-06-17',1,'2026-06-17'),
(9537,242,459,0,0,0,'F',0,'published','2026-06-17',1,'2026-06-17'),
(9538,179,698,0,0,0,'F',0,'published','2026-06-17',1,'2026-06-17'),
(9539,179,697,0,0,0,'F',0,'published','2026-06-17',1,'2026-06-17'),
(9540,179,696,0,0,0,'F',0,'published','2026-06-17',1,'2026-06-17'),
(9541,179,699,0,0,0,'F',0,'published','2026-06-17',1,'2026-06-17'),
(9542,179,700,0,0,0,'F',0,'published','2026-06-17',1,'2026-06-17'),
(9543,243,511,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9544,27,502,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9545,27,503,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9546,27,504,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9547,27,505,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9548,27,620,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9549,27,506,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9550,100,502,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9551,100,503,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9552,100,504,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9553,100,505,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9554,100,620,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9555,100,506,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9556,26,502,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9557,26,503,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9558,26,504,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9559,26,505,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9560,26,620,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9561,26,506,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9562,23,511,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9563,77,818,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9564,77,819,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9565,77,820,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9566,77,821,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9567,77,822,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9568,77,823,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9569,77,824,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9570,273,818,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9571,273,819,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9572,273,820,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9573,7,511,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9574,273,821,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9575,7,818,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9576,273,822,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9577,78,820,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9578,273,823,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9579,7,819,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9580,273,824,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9581,78,818,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9582,78,819,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9583,105,820,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9584,78,821,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9585,7,820,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9586,78,822,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9587,78,823,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9588,78,824,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9589,105,823,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9590,7,821,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9591,105,818,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9592,78,511,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9593,105,821,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9594,7,822,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9595,105,822,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9596,318,818,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9597,7,823,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9598,22,824,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9599,22,818,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9600,105,511,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9601,7,824,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9602,318,819,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9603,22,823,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9604,318,820,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9605,105,819,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9606,22,822,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9607,318,821,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9608,22,821,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9609,22,820,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9610,22,819,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9611,105,824,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9612,4,824,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9613,318,822,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9614,318,823,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9615,318,824,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9616,4,823,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9617,4,822,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9618,4,821,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9619,4,820,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9620,4,819,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9621,4,818,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9622,23,818,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9623,23,819,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9624,23,820,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9625,23,821,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9626,23,822,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9627,23,823,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9628,4,511,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9629,23,824,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9630,88,511,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9631,8,511,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9632,88,818,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9633,8,818,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9634,88,819,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9635,8,819,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9636,8,820,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9637,8,821,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9638,8,822,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9639,88,820,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9640,8,823,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9641,8,824,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9642,82,818,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9643,88,821,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9644,82,820,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9645,88,822,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9646,82,821,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9647,88,823,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9648,88,824,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9649,243,823,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9650,243,824,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9651,243,822,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9652,243,820,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9653,82,822,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9654,243,821,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9655,82,823,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9656,82,824,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9657,243,819,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9658,243,818,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9659,39,342,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9660,39,825,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9661,39,826,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9662,39,827,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9663,39,828,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9664,39,829,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9665,39,830,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9666,39,434,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9667,316,511,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9668,316,820,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9669,316,821,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9670,316,822,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9671,316,824,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9672,316,818,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9673,316,819,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9674,20,824,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9675,316,823,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9676,20,823,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9677,20,822,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9678,20,821,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9679,20,820,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9680,20,819,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9681,20,818,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9682,20,511,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9683,35,818,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9684,35,819,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9685,35,820,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9686,35,821,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9687,35,822,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9688,35,823,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9689,35,824,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9690,5,511,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9691,39,831,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9692,5,818,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9693,5,820,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9694,6,511,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9695,110,511,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9696,6,818,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9697,34,511,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9698,6,819,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9699,34,818,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9700,110,819,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9701,34,819,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9702,6,820,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9703,34,820,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9704,34,821,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9705,5,824,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9706,6,821,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9707,5,823,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9708,5,822,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9709,34,822,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9710,5,821,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9711,34,823,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9712,34,824,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9713,6,822,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9714,5,819,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9715,6,823,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9716,6,824,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9717,110,818,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9718,110,824,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9719,110,823,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9720,110,821,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9721,110,820,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9722,110,822,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9723,79,511,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9724,79,824,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9725,79,823,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9726,79,822,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9727,79,821,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9728,79,820,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9729,79,819,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9730,79,818,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9731,9,511,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9732,9,818,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9733,9,820,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9734,9,821,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9735,9,822,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9736,9,823,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9737,9,824,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9738,9,819,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9739,51,511,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9740,51,818,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9741,51,824,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9742,51,823,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9743,51,822,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9744,51,821,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9745,51,820,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9746,51,819,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9747,83,819,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9748,83,818,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9749,83,822,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9750,83,823,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18');
INSERT INTO `results` (`id`,`student_id`,`course_offering_id`,`continuous_assessment`,`exam_score`,`total_score`,`letter_grade`,`grade_point`,`status`,`published_at`,`updated_by`,`updated_at`) VALUES
(9751,83,824,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9752,83,511,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9753,83,821,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9754,83,820,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9755,326,502,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9756,326,503,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9757,326,504,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9758,326,505,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9759,326,620,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9760,326,506,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9761,24,502,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9762,24,503,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9763,24,504,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9764,24,505,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9765,24,506,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9766,24,620,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9767,211,685,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9768,211,684,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9769,211,683,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9770,211,458,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9771,211,459,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9772,211,460,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9773,111,511,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9774,111,818,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9775,111,819,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9776,111,820,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9777,111,821,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9778,111,822,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9779,111,823,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9780,111,824,0,0,0,'F',0,'published','2026-06-18',1,'2026-06-18'),
(9781,96,502,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9782,96,503,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9783,96,504,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9784,96,505,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9785,96,620,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9786,96,506,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9787,99,502,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9788,99,503,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9789,99,504,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9790,99,505,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9791,99,620,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9792,99,506,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9793,265,460,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9794,50,503,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9795,50,502,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9796,50,504,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9797,50,505,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9798,50,620,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9799,50,506,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9800,320,685,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9801,320,684,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9802,320,683,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9803,320,458,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9804,81,824,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9805,320,459,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9806,81,823,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9807,320,460,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9808,81,822,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9809,81,821,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9810,81,820,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9811,81,819,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9812,81,818,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9813,81,511,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9814,80,511,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9815,80,819,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9816,80,820,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9817,80,821,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9818,80,822,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9819,80,823,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9820,80,824,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9821,80,818,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9822,30,511,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9823,30,818,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9824,30,819,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9825,30,820,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9826,30,821,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9827,30,822,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9828,30,823,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9829,30,824,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9830,267,685,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9831,267,684,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9832,267,683,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9833,267,458,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9834,267,459,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9835,267,460,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9836,46,685,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9837,46,684,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9838,46,458,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9839,46,683,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9840,46,459,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9841,46,460,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19'),
(9842,42,665,0,0,0,'F',0,'published','2026-06-19',1,'2026-06-19');

-- fee_schedules: 0 records


-- invoices: 0 records


-- invoice_items: 0 records


-- payments: 0 records


-- announcements: 1 records
INSERT INTO `announcements` (`id`,`title`,`body`,`audience`,`author_id`,`published_at`,`created_at`) VALUES
(1,'Course Registration in progress','Course Registration in progress: This is to notify all students that course registration is on going on the portal . Thanks','students',1,'2020-01-01','2020-01-01');

-- legacy_mappings: 11104 records
INSERT INTO `legacy_mappings` (`entity_type`,`legacy_table`,`legacy_id`,`new_id`,`notes`) VALUES
('programme','programmes','2',1,'COMMUNITY HEALTH EXTENSION WORKER'),
('programme','programmes','3',2,'JUNIOR COMMUNITY HEALTH EXTENSION WORKER'),
('programme','programmes','4',3,'PHARMACY TECHNICIAN'),
('programme','programmes','5',4,'MEDICAL LABORATORY TECHNICIAN'),
('programme','programmes','6',5,'ENVIRONMENTAL HEALTH TECHNOLOGY'),
('programme','programmes','7',6,'ENVIRONMENTAL HEALTH TECHNICIAN'),
('programme','programmes','8',7,'HEALTH EDUCATION AND PROMOTION'),
('programme','programmes','9',8,'DENTAL THERAPY'),
('programme','programmes','10',9,'DENTAL SURGERY TECHNICIAN'),
('programme','programmes','11',10,'DENTAL NURSING'),
('programme','programmes','12',11,'PUBLIC HEALTH TECHNOLOGY'),
('programme','programmes','13',12,'HEALTH ASSISTANT'),
('programme','programmes','14',13,'MEDICAL HEALTH TECHNICIAN'),
('programme','programmes','17',14,'HEALTH INFORMATION MANAGEMENT (TECHNICIAN)'),
('programme','programmes','18',15,'MEDICAL HEALTH TECHNICIAN /SOCIAL WORK'),
('user','users','768',2,'202404001'),
('user','users','769',3,'202008001'),
('user','users','770',4,'PHT/UN/24017'),
('user','users','771',5,'MHT/UN/24036'),
('user','users','772',6,'MHT/UN/24022'),
('user','users','773',7,'MHT/UN/24031'),
('user','users','775',8,'MHT/UN/24026'),
('user','users','776',9,'MHT/UN/24013'),
('user','users','777',10,'MHT/UN/24033'),
('user','users','778',11,'MLT/UN/24001'),
('user','users','780',12,'CHEW/UN/24005'),
('user','users','781',13,'MLT/UN/24011'),
('user','users','782',14,'MHT/UN/24023'),
('user','users','783',15,'MHT/UN/24035'),
('user','users','784',16,'MHT/UN/24029'),
('user','users','785',17,'MLT/UN/24010'),
('user','users','786',18,'MHT/UN/24066'),
('user','users','787',19,'CHEW/UN/24007'),
('user','users','788',20,'CHEW/UN/24010'),
('user','users','789',21,'MHT/UN/24005'),
('user','users','790',22,'PHT/UN/24001'),
('user','users','791',23,'MHT/UN/24034'),
('user','users','792',24,'MHT/UN/24007'),
('user','users','793',25,'MLT/UN/24023'),
('user','users','795',26,'MHT/UN/24006'),
('user','users','796',27,'MLT/UN/24004'),
('user','users','797',28,'MLT/UN/24002'),
('user','users','798',29,'CHEW/UN/24008'),
('user','users','799',30,'PHT/UN/24006'),
('user','users','800',31,'MHT/UN/24015'),
('user','users','802',32,'PHT/UN/24002'),
('user','users','803',33,'MHT/UN/24039'),
('user','users','804',34,'MHT/UN/24009'),
('user','users','805',35,'MHT/UN/24003'),
('user','users','806',36,'MHT/UN/24042'),
('user','users','808',37,'CHEW/UN/24016'),
('user','users','809',38,'CHEW/UN/24014'),
('user','users','810',39,'MHT/UN/24030'),
('user','users','811',40,'MHT/UN/24032'),
('user','users','812',41,'MLT/UN/24006'),
('user','users','813',42,'PHT/UN/24011'),
('user','users','814',43,'PHT/UN/24008'),
('user','users','815',44,'4008'),
('user','users','817',45,'PHT/UN/24009'),
('user','users','818',46,'MHT/UN/24028'),
('user','users','819',47,'CHEW/UN/24003'),
('user','users','823',48,'MLT/UN/24020'),
('user','users','824',49,'CHEW/UN/24009'),
('user','users','825',50,'MLT/UN/24013'),
('user','users','826',51,'MLT/UN/24009'),
('user','users','827',52,'MHT/UN/24024'),
('user','users','829',53,'PHT/UN/24010'),
('user','users','832',54,'MLT/UN/23034'),
('user','users','833',55,'MLT/UN/23022'),
('user','users','834',56,'MLT/UN/23048'),
('user','users','835',57,'MLT/UN/23045'),
('user','users','836',58,'MLT/UN/23029'),
('user','users','837',59,'MLT/UN/23041'),
('user','users','838',60,'MLT/UN/23035'),
('user','users','839',61,'MLT/UN/23014'),
('user','users','840',62,'MLT/UN/23037'),
('user','users','841',63,'MLT/UN/23033'),
('user','users','842',64,'MLT/UN/23023'),
('user','users','843',65,'MLT/UN/23016'),
('user','users','844',66,'MLT/UN/23018'),
('user','users','845',67,'MLT/UN/23010'),
('user','users','846',68,'MLT/UN/23021'),
('user','users','847',69,'MLT/UN/23050'),
('user','users','848',70,'CHEW/UN/24028'),
('user','users','849',71,'MLT/UN/23024'),
('user','users','850',72,'MLT/UN/23013'),
('user','users','851',73,'CHEW/UN/23023'),
('user','users','852',74,'CHEW/UN/23042'),
('user','users','853',75,'PHT/UN/23007'),
('user','users','854',76,'MHT/UN/23002'),
('user','users','855',77,'MLT/UN/23011'),
('user','users','856',78,'MHT/UN/24067'),
('user','users','857',79,'MHT/UN/23066'),
('user','users','858',80,'MHT/UN/24068'),
('user','users','859',81,'MHT/UN/24050'),
('user','users','860',82,'MHT/UN/24051'),
('user','users','861',83,'MHT/UN/24046'),
('user','users','862',84,'MHT/UN/24021'),
('user','users','863',85,'CHEW/UN/24053'),
('user','users','864',86,'MHT/UN/24070'),
('user','users','866',87,'MHT/UN/24044'),
('user','users','867',88,'MHT/UN/24083'),
('user','users','868',89,'MHT/UN/24059'),
('user','users','869',90,'CHEW/UN/24019'),
('user','users','870',91,'MHT/UN/24048'),
('user','users','871',92,'CHEW/UN/24052'),
('user','users','872',93,'CHEW/UN/24056'),
('user','users','873',94,'MLT/UN/24014'),
('user','users','874',95,'MLT/UN/24030'),
('user','users','875',96,'PHT/UN/24013'),
('user','users','876',97,'MLT/UN/24018'),
('user','users','878',98,'MLT/UN/24032'),
('user','users','879',99,'MLT/UN/24031'),
('user','users','880',100,'MLT/UN/24022'),
('user','users','881',101,'MLT/UN/24019'),
('user','users','882',102,'PHT/UN/24030'),
('user','users','883',103,'CHEW/UN/24057'),
('user','users','884',104,'PHT/UN/24016'),
('user','users','885',105,'MLT/UN/23044'),
('user','users','886',106,'MHT/UN/24084'),
('user','users','887',107,'MHT/UN/24049'),
('user','users','888',108,'MHT/UN/24081'),
('user','users','889',109,'MHT/UN/24065'),
('user','users','890',110,'CHEW/UN/24054'),
('user','users','891',111,'MHT/UN/24085'),
('user','users','892',112,'MHT/UN/24058'),
('user','users','893',113,'MLT/UN/24015'),
('user','users','894',114,'CHEW/UN/24030'),
('user','users','898',115,'CHEW/UN/242018'),
('user','users','899',116,'CHEW/UN/242014'),
('user','users','900',117,'CHEW/UN/242021'),
('user','users','901',118,'CHEW/UN/242010'),
('user','users','902',119,'CHEW/UN/242009'),
('user','users','903',120,'CHEW/UN/242003'),
('user','users','904',121,'CHEW/UN/242017'),
('user','users','905',122,'CHEW/UN/242027'),
('user','users','906',123,'CHEW/UN/242016'),
('user','users','907',124,'CHEW/UN/242041'),
('user','users','908',125,'CHEW/UN/242011'),
('user','users','909',126,'CHEW/UN/242025'),
('user','users','910',127,'CHEW/UN/242032'),
('user','users','911',128,'CHEW/UN/242024'),
('user','users','912',129,'CHEW/UN/242002'),
('user','users','913',130,'CHEW/UN/242019'),
('user','users','914',131,'CHEW/UN/242035'),
('user','users','915',132,'CHEW/UN/242033'),
('user','users','916',133,'CHEW/UN/242030'),
('user','users','917',134,'CHEW/UN/242008'),
('user','users','918',135,'CHEW/UN/242034'),
('user','users','919',136,'CHEW/UN/242036'),
('user','users','920',137,'CHEW/UN/242023'),
('user','users','921',138,'CHEW/UN/242022'),
('user','users','922',139,'CHEW/UN/242012'),
('user','users','923',140,'CHEW/UN/242039'),
('user','users','924',141,'CHEW/UN/242020'),
('user','users','925',142,'CHEW/UN/242038'),
('user','users','926',143,'PHT/UN/243001'),
('user','users','927',144,'PHT/UN/24005'),
('user','users','929',145,'PHT/UN/242002'),
('user','users','930',146,'MLT/UN/242001'),
('user','users','931',147,'PHT/UN/242004'),
('user','users','932',148,'MLT/UN/242002'),
('user','users','933',149,'MLT/UN/242015'),
('user','users','934',150,'MLT/UN/242220'),
('user','users','935',151,'MLT/UN/242004'),
('user','users','936',152,'MLT/UN/242005'),
('user','users','937',153,'MHSW/UN/242007'),
('user','users','938',154,'MLT/UN/242006'),
('user','users','939',155,'CHEW/UN/242001'),
('user','users','940',156,'CHEW/UN/242013'),
('user','users','941',157,'PHT/UN/242003'),
('user','users','942',158,'MHSW/UN/242028'),
('user','users','944',159,'MHSW/UN/242024'),
('user','users','945',160,'MHSW/UN/242001'),
('user','users','946',161,'MHSW/UN/242009'),
('user','users','947',162,'MHSW/UN/242014'),
('user','users','948',163,'MHSW/UN/242004'),
('user','users','949',164,'MHSW/UN/242010'),
('user','users','950',165,'MHSW/UN/242005'),
('user','users','951',166,'MHSW/UN/242002'),
('user','users','952',167,'MLT/1111111'),
('user','users','953',168,'CHEW/UN/242004'),
('user','users','954',169,'CHEW/UN/23038'),
('user','users','955',170,'CHEW/UN/23033'),
('user','users','956',171,'CHEW/UN/23017'),
('user','users','957',172,'MLT/UN/24214'),
('user','users','958',173,'MHSW/UN/242013'),
('user','users','959',174,'MLT/UN/242216'),
('user','users','960',175,'MLT/UN/24213'),
('user','users','961',176,'MLT/UN/242019'),
('user','users','962',177,'CHEW/UN/242005'),
('user','users','963',178,'MLT/UN/242012'),
('user','users','964',179,'MHSW/UN/242019'),
('user','users','965',180,'MHSW/UN/242003'),
('user','users','966',181,'CHEW/UN/242007'),
('user','users','967',182,'CHEW/UN/242031'),
('user','users','968',183,'CHEW/UN/242028'),
('user','users','969',184,'CHEW/UN/242037'),
('user','users','971',185,'MLT/UN/242003'),
('user','users','972',186,'MLT/UN/242022'),
('user','users','973',187,'MLT/UN/242007'),
('user','users','974',188,'CHEW/UN/24051'),
('user','users','975',189,'MHSW/UN/242008'),
('user','users','976',190,'MHT/UN/23061'),
('user','users','977',191,'MHT/UN/23080'),
('user','users','978',192,'MHT/UN/23042'),
('user','users','979',193,'MHT/UN/23020'),
('user','users','981',194,'MHT/UN/23049'),
('user','users','982',195,'MHT/UN/23104'),
('user','users','983',196,'MHT/UN/23036'),
('user','users','984',197,'MHT/UN/23013'),
('user','users','985',198,'CHEW/UN/24023'),
('user','users','986',199,'CHEW/UN/24055'),
('user','users','987',200,'CHEW/UN/24004'),
('user','users','988',201,'MHT/UN/23030'),
('user','users','989',202,'CHEW/UN/24034'),
('user','users','990',203,'CHEW/UN/24089'),
('user','users','991',204,'MHT/UN/23071'),
('user','users','992',205,'MHT/UN/23116'),
('user','users','993',206,'MHT/UN/23054'),
('user','users','994',207,'MHT/UN/23085'),
('user','users','995',208,'MHT/UN/23076'),
('user','users','996',209,'MHT/UN/23092'),
('user','users','997',210,'MHT/UN/23032'),
('user','users','998',211,'MHT/UN/23029'),
('user','users','999',212,'CHEW/UN/24020'),
('user','users','1000',213,'CHEW/UN/23034'),
('user','users','1001',214,'MHT/UN/23118'),
('user','users','1002',215,'MHT/UN/23112'),
('user','users','1003',216,'CHEW/UN/23022'),
('user','users','1004',217,'MHT/UN/23051'),
('user','users','1005',218,'CHEW/UN/23028'),
('user','users','1006',219,'MHT/UN/23040'),
('user','users','1007',220,'MHT/UN/23003'),
('user','users','1008',221,'CHEW/UN/23018'),
('user','users','1009',222,'CHEW/UN/23026'),
('user','users','1010',223,'MHT/UN/23072'),
('user','users','1011',224,'MHT/UN/23008'),
('user','users','1012',225,'MHT/UN/23105'),
('user','users','1013',226,'MHT/UN/23062'),
('user','users','1014',227,'MHT/UN/23081'),
('user','users','1015',228,'MHT/UN/23058'),
('user','users','1016',229,'MHT/UN/23107'),
('user','users','1017',230,'MHT/UN/23106'),
('user','users','1018',231,'MHT/UN/23073'),
('user','users','1019',232,'MHT/UN/23097'),
('user','users','1020',233,'MHT/UN/23109'),
('user','users','1021',234,'MHT/UN/23055'),
('user','users','1022',235,'MHT/UN/23056'),
('user','users','1023',236,'MHT/UN/23052');
INSERT INTO `legacy_mappings` (`entity_type`,`legacy_table`,`legacy_id`,`new_id`,`notes`) VALUES
('user','users','1024',237,'MHT/UN/23120'),
('user','users','1025',238,'MHT/UN/23044'),
('user','users','1026',239,'PHT/UN/23008'),
('user','users','1027',240,'PHT/UN/23014'),
('user','users','1028',241,'CHEW/UN/24006'),
('user','users','1029',242,'MHT/UN/24025'),
('user','users','1030',243,'CHEW/UN/24022'),
('user','users','1032',244,'MHT/UN/24052'),
('user','users','1033',245,'MHT/UN/23015'),
('user','users','1034',246,'MHT/UN/23031'),
('user','users','1035',247,'CHEW/UN/242026'),
('user','users','1036',248,'MHT/UN/23007'),
('user','users','1037',249,'MHT/UN/23090'),
('user','users','1038',250,'CHEW/UN/23019'),
('user','users','1039',251,'MHSW/UN/242020'),
('user','users','1040',252,'PHT/UN/23006'),
('user','users','1041',253,'PHT/UN/23010'),
('user','users','1042',254,'MLT/UN/242024'),
('user','users','1043',255,'PHT/UN/242005'),
('user','users','1044',256,'MHT/UN/23067'),
('user','users','1045',257,'MHT/UN/23053'),
('user','users','1046',258,'MHT/UN/23102'),
('user','users','1047',259,'MHT/UN/23078'),
('user','users','1048',260,'MHT/UN/23119'),
('user','users','1049',261,'MHT/UN/23004'),
('user','users','1050',262,'MHT/UN/23010'),
('user','users','1051',263,'MHT/UN/23005'),
('user','users','1052',264,'MHT/UN/23043'),
('user','users','1053',265,'MHT/UN/23001'),
('user','users','1054',266,'CHEW/UN/24026'),
('user','users','1055',267,'CHEW/UN/24015'),
('user','users','1056',268,'CHEW/UN/24050'),
('user','users','1057',269,'CHEW/UN/24035'),
('user','users','1058',270,'CHEW/UN/24059'),
('user','users','1059',271,'MLT/UN/242023'),
('user','users','1060',272,'CHEW/UN/242040'),
('user','users','1061',273,'CHEW/UN/24021'),
('user','users','1062',274,'MHT/UN/24019'),
('user','users','1063',275,'MHT/UN/23088'),
('user','users','1064',276,'CHEW/UN/23041'),
('user','users','1065',277,'MHT/UN/23101'),
('user','users','1066',278,'MHT/UN/23093'),
('user','users','1067',279,'MHT/UN/23059'),
('user','users','1068',280,'MHT/UN/23069'),
('user','users','1069',281,'MHT/UN/230108'),
('user','users','1070',282,'MHT/UN/23091'),
('user','users','1071',283,'MHT/UN/23103'),
('user','users','1072',284,'MHT/UN/23019'),
('user','users','1073',285,'MHT/UN/23039'),
('user','users','1074',286,'MHT/UN/23023'),
('user','users','1075',287,'MHT/UN/23018'),
('user','users','1076',288,'MHT/UN/23063'),
('user','users','1077',289,'MHT/UN/23038'),
('user','users','1078',290,'MHT/UN/23017'),
('user','users','1079',291,'MHT/UN/23026'),
('user','users','1080',292,'MHT/UN/23037'),
('user','users','1081',293,'MHT/UN/23034'),
('user','users','1082',294,'MHT/UN/23035'),
('user','users','1083',295,'MHT/UN/23068'),
('user','users','1084',296,'MHT/UN/23057'),
('user','users','1085',297,'MHT/UN/23041'),
('user','users','1086',298,'MHT/UN/23079'),
('user','users','1087',299,'MHT/UN/23082'),
('user','users','1088',300,'MHT/UN/23012'),
('user','users','1089',301,'MHT/UN/23074'),
('user','users','1090',302,'MHT/UN/23083'),
('user','users','1091',303,'MHT/UN/23046'),
('user','users','1092',304,'MHT/UN/23033'),
('user','users','1093',305,'MHT/UN/23021'),
('user','users','1096',306,'MLT/UN/24003'),
('user','users','1097',307,'CHEW/UN/24058'),
('user','users','1098',308,'PHT/UN/24014'),
('user','users','1099',309,'CHEW/UN/24031'),
('user','users','1100',310,'DST/UN/24002'),
('user','users','1101',311,'DST/UN/24050'),
('user','users','1102',312,'DST/UN/24001'),
('user','users','1103',313,'DST/UN/24004'),
('user','users','1104',314,'DST/UN/24003'),
('user','users','1105',315,'DST/UN/242006'),
('user','users','1108',316,'MHT/UN/24054'),
('user','users','1111',317,'MHT/UN/24004'),
('user','users','1112',318,'MHSW/UN/242025'),
('user','users','1116',319,'MHT/UN/24069'),
('user','users','1117',320,'CHEW/UN/24090'),
('user','users','1118',321,'CHEW/UN/24018'),
('user','users','1119',322,'MLT/UN/24012'),
('user','users','1121',323,'CHEW/UN/24013'),
('user','users','1122',324,'CHEW/UN/24032'),
('user','users','1123',325,'CHEW/UN/24033'),
('user','users','1126',326,'MLT/UN/24016'),
('user','users','1127',327,'MLT/UN/24008'),
('user','users','1129',328,'MLT/UN/250096'),
('user','users','1130',329,'MLT/UN/250100'),
('user','users','1131',330,'MLT/UN/250094'),
('user','users','1132',331,'MLT/UN/250098'),
('user','users','1133',332,'MHSW/UN/250061'),
('user','users','1134',333,'MHSW/UN/250056'),
('user','users','1135',334,'MHSW/UN/250058'),
('user','users','1136',335,'MHSW/UN/250063'),
('user','users','1137',336,'MHSW/UN/250062'),
('user','users','1138',337,'MLT/UN/250090'),
('user','users','1139',338,'CHEW/UN/250024'),
('user','users','1140',339,'MLT/UN/250093'),
('user','users','1141',340,'CHEW/UN/250049'),
('user','users','1142',341,'CHEW/UN/250027'),
('user','users','1144',342,'CHEW/UN/250034'),
('user','users','1145',343,'CHEW/UN/250042'),
('user','users','1146',344,'CHEW/UN/250036'),
('user','users','1147',345,'CHEW/UN/250037'),
('user','users','1148',346,'CHEW/UN/250012'),
('user','users','1149',347,'MLT/UN/250091'),
('user','users','1150',348,'CHEW/UN/250041'),
('user','users','1151',349,'CHEW/UN/250040'),
('user','users','1152',350,'CHEW/UN/250016'),
('user','users','1153',351,'CHEW/UN/250038'),
('user','users','1154',352,'CHEW/UN/250018'),
('user','users','1155',353,'CHEW/UN/250039'),
('user','users','1156',354,'DST/UN/250079'),
('user','users','1157',355,'CHEW/UN/250050'),
('user','users','1159',356,'CHEW/UN/250068'),
('user','users','1160',357,'CHEW/UN/250022'),
('user','users','1161',358,'CHEW/UN/250044'),
('user','users','1162',359,'CHEW/UN/250011'),
('user','users','1163',360,'MHSW/UN/250057'),
('user','users','1164',361,'MHSW/UN/250060'),
('user','users','1165',362,'PHT/UN/250074'),
('user','users','1166',363,'CHEW/UN/250021'),
('user','users','1167',364,'MLT/UN/250092'),
('user','users','1168',365,'CHEW/UN/250023'),
('user','users','1169',366,'CHEW/UN/250078'),
('user','users','1170',367,'CHEW/UN/250033'),
('user','users','1171',368,'CHEW/UN/250045'),
('user','users','1172',369,'DST/UN/250082'),
('user','users','1173',370,'DST/UN/250085'),
('user','users','1174',371,'PHT/UN/250076'),
('user','users','1175',372,'PHT/UN/250072'),
('user','users','1176',373,'PHT/UN/250071'),
('user','users','1177',374,'PHT/UN/250075'),
('user','users','1178',375,'CHEW/UN/250087'),
('user','users','1179',376,'PHT/UN/250069'),
('user','users','1180',377,'CHEW/UN/250015'),
('user','users','1181',378,'CHEW/UN/250031'),
('user','users','1182',379,'CHEW/UN/250028'),
('user','users','1183',380,'MHSW/UN/250065'),
('user','users','1184',381,'CHEW/UN/250052'),
('user','users','1185',382,'CHEW/UN/250013'),
('user','users','1186',383,'CHEW/UN/250115'),
('user','users','1188',384,'DST/UN/250086'),
('user','users','1189',385,'CHEW/UN/250116'),
('user','users','1190',386,'MLT/UN/250095'),
('user','users','1192',387,'MLT/UN/250089'),
('user','users','1193',388,'CHEW/UN/250088'),
('user','users','1202',389,'DST/UN/250080'),
('user','users','1203',390,'DST/UN/250081'),
('user','users','1204',391,'CHEW/UN/250200'),
('user','users','1205',392,'CHEW/UN/250025'),
('user','users','1206',393,'CHEW/UN/250112'),
('user','users','1207',394,'CHEW/UN/250043'),
('user','users','1208',395,'CHEW/UN/250026'),
('user','users','1210',396,'CHEW/UN/250029'),
('user','users','1211',397,'DST/UN/250213'),
('user','users','1212',398,'DST/UN/250084'),
('user','users','1213',399,'DST/UN/250083'),
('user','users','1214',400,'MLT/UN/250097'),
('user','users','1215',401,'MLT/UN/250099'),
('user','users','1216',402,'CHEW/UN/250032'),
('user','users','1217',403,'MLT/UN/250204'),
('user','users','1218',404,'PHT/UN/250118'),
('user','users','1219',405,'PHT/UN/250067'),
('user','users','1220',406,'MHSW/UN/250206'),
('user','users','1221',407,'CHEW/UN/250020'),
('user','users','1222',408,'MHSW/UN/250053'),
('user','users','1223',409,'CHEW/UN/250046'),
('user','users','1224',410,'MLT/UN/250207'),
('user','users','1225',411,'MLT/UN/242008'),
('user','users','1226',412,'CHEW/UN/250211'),
('user','users','1227',413,'CHEW/UN/250113'),
('user','users','1228',414,'CHEW/UN/250117'),
('student','users','768',1,'202404001'),
('student','users','769',2,'202008001'),
('student','users','770',3,'PHT/UN/24017'),
('student','users','771',4,'MHT/UN/24036'),
('student','users','772',5,'MHT/UN/24022'),
('student','users','773',6,'MHT/UN/24031'),
('student','users','775',7,'MHT/UN/24026'),
('student','users','776',8,'MHT/UN/24013'),
('student','users','777',9,'MHT/UN/24033'),
('student','users','778',10,'MLT/UN/24001'),
('student','users','780',11,'CHEW/UN/24005'),
('student','users','781',12,'MLT/UN/24011'),
('student','users','782',13,'MHT/UN/24023'),
('student','users','783',14,'MHT/UN/24035'),
('student','users','784',15,'MHT/UN/24029'),
('student','users','785',16,'MLT/UN/24010'),
('student','users','786',17,'MHT/UN/24066'),
('student','users','787',18,'CHEW/UN/24007'),
('student','users','788',19,'CHEW/UN/24010'),
('student','users','789',20,'MHT/UN/24005'),
('student','users','790',21,'PHT/UN/24001'),
('student','users','791',22,'MHT/UN/24034'),
('student','users','792',23,'MHT/UN/24007'),
('student','users','793',24,'MLT/UN/24023'),
('student','users','795',25,'MHT/UN/24006'),
('student','users','796',26,'MLT/UN/24004'),
('student','users','797',27,'MLT/UN/24002'),
('student','users','798',28,'CHEW/UN/24008'),
('student','users','799',29,'PHT/UN/24006'),
('student','users','800',30,'MHT/UN/24015'),
('student','users','802',31,'PHT/UN/24002'),
('student','users','803',32,'MHT/UN/24039'),
('student','users','804',33,'MHT/UN/24009'),
('student','users','805',34,'MHT/UN/24003'),
('student','users','806',35,'MHT/UN/24042'),
('student','users','808',36,'CHEW/UN/24016'),
('student','users','809',37,'CHEW/UN/24014'),
('student','users','810',38,'MHT/UN/24030'),
('student','users','811',39,'MHT/UN/24032'),
('student','users','812',40,'MLT/UN/24006'),
('student','users','813',41,'PHT/UN/24011'),
('student','users','814',42,'PHT/UN/24008'),
('student','users','815',43,'4008'),
('student','users','817',44,'PHT/UN/24009'),
('student','users','818',45,'MHT/UN/24028'),
('student','users','819',46,'CHEW/UN/24003'),
('student','users','823',47,'MLT/UN/24020'),
('student','users','824',48,'CHEW/UN/24009'),
('student','users','825',49,'MLT/UN/24013'),
('student','users','826',50,'MLT/UN/24009'),
('student','users','827',51,'MHT/UN/24024'),
('student','users','829',52,'PHT/UN/24010'),
('student','users','832',53,'MLT/UN/23034'),
('student','users','833',54,'MLT/UN/23022'),
('student','users','834',55,'MLT/UN/23048'),
('student','users','835',56,'MLT/UN/23045'),
('student','users','836',57,'MLT/UN/23029'),
('student','users','837',58,'MLT/UN/23041'),
('student','users','838',59,'MLT/UN/23035'),
('student','users','839',60,'MLT/UN/23014'),
('student','users','840',61,'MLT/UN/23037'),
('student','users','841',62,'MLT/UN/23033'),
('student','users','842',63,'MLT/UN/23023'),
('student','users','843',64,'MLT/UN/23016'),
('student','users','844',65,'MLT/UN/23018'),
('student','users','845',66,'MLT/UN/23010'),
('student','users','846',67,'MLT/UN/23021'),
('student','users','847',68,'MLT/UN/23050'),
('student','users','848',69,'CHEW/UN/24028'),
('student','users','849',70,'MLT/UN/23024'),
('student','users','850',71,'MLT/UN/23013'),
('student','users','851',72,'CHEW/UN/23023');
INSERT INTO `legacy_mappings` (`entity_type`,`legacy_table`,`legacy_id`,`new_id`,`notes`) VALUES
('student','users','852',73,'CHEW/UN/23042'),
('student','users','853',74,'PHT/UN/23007'),
('student','users','854',75,'MHT/UN/23002'),
('student','users','855',76,'MLT/UN/23011'),
('student','users','856',77,'MHT/UN/24067'),
('student','users','857',78,'MHT/UN/23066'),
('student','users','858',79,'MHT/UN/24068'),
('student','users','859',80,'MHT/UN/24050'),
('student','users','860',81,'MHT/UN/24051'),
('student','users','861',82,'MHT/UN/24046'),
('student','users','862',83,'MHT/UN/24021'),
('student','users','863',84,'CHEW/UN/24053'),
('student','users','864',85,'MHT/UN/24070'),
('student','users','866',86,'MHT/UN/24044'),
('student','users','867',87,'MHT/UN/24083'),
('student','users','868',88,'MHT/UN/24059'),
('student','users','869',89,'CHEW/UN/24019'),
('student','users','870',90,'MHT/UN/24048'),
('student','users','871',91,'CHEW/UN/24052'),
('student','users','872',92,'CHEW/UN/24056'),
('student','users','873',93,'MLT/UN/24014'),
('student','users','874',94,'MLT/UN/24030'),
('student','users','875',95,'PHT/UN/24013'),
('student','users','876',96,'MLT/UN/24018'),
('student','users','878',97,'MLT/UN/24032'),
('student','users','879',98,'MLT/UN/24031'),
('student','users','880',99,'MLT/UN/24022'),
('student','users','881',100,'MLT/UN/24019'),
('student','users','882',101,'PHT/UN/24030'),
('student','users','883',102,'CHEW/UN/24057'),
('student','users','884',103,'PHT/UN/24016'),
('student','users','885',104,'MLT/UN/23044'),
('student','users','886',105,'MHT/UN/24084'),
('student','users','887',106,'MHT/UN/24049'),
('student','users','888',107,'MHT/UN/24081'),
('student','users','889',108,'MHT/UN/24065'),
('student','users','890',109,'CHEW/UN/24054'),
('student','users','891',110,'MHT/UN/24085'),
('student','users','892',111,'MHT/UN/24058'),
('student','users','893',112,'MLT/UN/24015'),
('student','users','894',113,'CHEW/UN/24030'),
('student','users','898',114,'CHEW/UN/242018'),
('student','users','899',115,'CHEW/UN/242014'),
('student','users','900',116,'CHEW/UN/242021'),
('student','users','901',117,'CHEW/UN/242010'),
('student','users','902',118,'CHEW/UN/242009'),
('student','users','903',119,'CHEW/UN/242003'),
('student','users','904',120,'CHEW/UN/242017'),
('student','users','905',121,'CHEW/UN/242027'),
('student','users','906',122,'CHEW/UN/242016'),
('student','users','907',123,'CHEW/UN/242041'),
('student','users','908',124,'CHEW/UN/242011'),
('student','users','909',125,'CHEW/UN/242025'),
('student','users','910',126,'CHEW/UN/242032'),
('student','users','911',127,'CHEW/UN/242024'),
('student','users','912',128,'CHEW/UN/242002'),
('student','users','913',129,'CHEW/UN/242019'),
('student','users','914',130,'CHEW/UN/242035'),
('student','users','915',131,'CHEW/UN/242033'),
('student','users','916',132,'CHEW/UN/242030'),
('student','users','917',133,'CHEW/UN/242008'),
('student','users','918',134,'CHEW/UN/242034'),
('student','users','919',135,'CHEW/UN/242036'),
('student','users','920',136,'CHEW/UN/242023'),
('student','users','921',137,'CHEW/UN/242022'),
('student','users','922',138,'CHEW/UN/242012'),
('student','users','923',139,'CHEW/UN/242039'),
('student','users','924',140,'CHEW/UN/242020'),
('student','users','925',141,'CHEW/UN/242038'),
('student','users','926',142,'PHT/UN/243001'),
('student','users','927',143,'PHT/UN/24005'),
('student','users','929',144,'PHT/UN/242002'),
('student','users','930',145,'MLT/UN/242001'),
('student','users','931',146,'PHT/UN/242004'),
('student','users','932',147,'MLT/UN/242002'),
('student','users','933',148,'MLT/UN/242015'),
('student','users','934',149,'MLT/UN/242220'),
('student','users','935',150,'MLT/UN/242004'),
('student','users','936',151,'MLT/UN/242005'),
('student','users','937',152,'MHSW/UN/242007'),
('student','users','938',153,'MLT/UN/242006'),
('student','users','939',154,'CHEW/UN/242001'),
('student','users','940',155,'CHEW/UN/242013'),
('student','users','941',156,'PHT/UN/242003'),
('student','users','942',157,'MHSW/UN/242028'),
('student','users','944',158,'MHSW/UN/242024'),
('student','users','945',159,'MHSW/UN/242001'),
('student','users','946',160,'MHSW/UN/242009'),
('student','users','947',161,'MHSW/UN/242014'),
('student','users','948',162,'MHSW/UN/242004'),
('student','users','949',163,'MHSW/UN/242010'),
('student','users','950',164,'MHSW/UN/242005'),
('student','users','951',165,'MHSW/UN/242002'),
('student','users','952',166,'MLT/1111111'),
('student','users','953',167,'CHEW/UN/242004'),
('student','users','954',168,'CHEW/UN/23038'),
('student','users','955',169,'CHEW/UN/23033'),
('student','users','956',170,'CHEW/UN/23017'),
('student','users','957',171,'MLT/UN/24214'),
('student','users','958',172,'MHSW/UN/242013'),
('student','users','959',173,'MLT/UN/242216'),
('student','users','960',174,'MLT/UN/24213'),
('student','users','961',175,'MLT/UN/242019'),
('student','users','962',176,'CHEW/UN/242005'),
('student','users','963',177,'MLT/UN/242012'),
('student','users','964',178,'MHSW/UN/242019'),
('student','users','965',179,'MHSW/UN/242003'),
('student','users','966',180,'CHEW/UN/242007'),
('student','users','967',181,'CHEW/UN/242031'),
('student','users','968',182,'CHEW/UN/242028'),
('student','users','969',183,'CHEW/UN/242037'),
('student','users','971',184,'MLT/UN/242003'),
('student','users','972',185,'MLT/UN/242022'),
('student','users','973',186,'MLT/UN/242007'),
('student','users','974',187,'CHEW/UN/24051'),
('student','users','975',188,'MHSW/UN/242008'),
('student','users','976',189,'MHT/UN/23061'),
('student','users','977',190,'MHT/UN/23080'),
('student','users','978',191,'MHT/UN/23042'),
('student','users','979',192,'MHT/UN/23020'),
('student','users','981',193,'MHT/UN/23049'),
('student','users','982',194,'MHT/UN/23104'),
('student','users','983',195,'MHT/UN/23036'),
('student','users','984',196,'MHT/UN/23013'),
('student','users','985',197,'CHEW/UN/24023'),
('student','users','986',198,'CHEW/UN/24055'),
('student','users','987',199,'CHEW/UN/24004'),
('student','users','988',200,'MHT/UN/23030'),
('student','users','989',201,'CHEW/UN/24034'),
('student','users','990',202,'CHEW/UN/24089'),
('student','users','991',203,'MHT/UN/23071'),
('student','users','992',204,'MHT/UN/23116'),
('student','users','993',205,'MHT/UN/23054'),
('student','users','994',206,'MHT/UN/23085'),
('student','users','995',207,'MHT/UN/23076'),
('student','users','996',208,'MHT/UN/23092'),
('student','users','997',209,'MHT/UN/23032'),
('student','users','998',210,'MHT/UN/23029'),
('student','users','999',211,'CHEW/UN/24020'),
('student','users','1000',212,'CHEW/UN/23034'),
('student','users','1001',213,'MHT/UN/23118'),
('student','users','1002',214,'MHT/UN/23112'),
('student','users','1003',215,'CHEW/UN/23022'),
('student','users','1004',216,'MHT/UN/23051'),
('student','users','1005',217,'CHEW/UN/23028'),
('student','users','1006',218,'MHT/UN/23040'),
('student','users','1007',219,'MHT/UN/23003'),
('student','users','1008',220,'CHEW/UN/23018'),
('student','users','1009',221,'CHEW/UN/23026'),
('student','users','1010',222,'MHT/UN/23072'),
('student','users','1011',223,'MHT/UN/23008'),
('student','users','1012',224,'MHT/UN/23105'),
('student','users','1013',225,'MHT/UN/23062'),
('student','users','1014',226,'MHT/UN/23081'),
('student','users','1015',227,'MHT/UN/23058'),
('student','users','1016',228,'MHT/UN/23107'),
('student','users','1017',229,'MHT/UN/23106'),
('student','users','1018',230,'MHT/UN/23073'),
('student','users','1019',231,'MHT/UN/23097'),
('student','users','1020',232,'MHT/UN/23109'),
('student','users','1021',233,'MHT/UN/23055'),
('student','users','1022',234,'MHT/UN/23056'),
('student','users','1023',235,'MHT/UN/23052'),
('student','users','1024',236,'MHT/UN/23120'),
('student','users','1025',237,'MHT/UN/23044'),
('student','users','1026',238,'PHT/UN/23008'),
('student','users','1027',239,'PHT/UN/23014'),
('student','users','1028',240,'CHEW/UN/24006'),
('student','users','1029',241,'MHT/UN/24025'),
('student','users','1030',242,'CHEW/UN/24022'),
('student','users','1032',243,'MHT/UN/24052'),
('student','users','1033',244,'MHT/UN/23015'),
('student','users','1034',245,'MHT/UN/23031'),
('student','users','1035',246,'CHEW/UN/242026'),
('student','users','1036',247,'MHT/UN/23007'),
('student','users','1037',248,'MHT/UN/23090'),
('student','users','1038',249,'CHEW/UN/23019'),
('student','users','1039',250,'MHSW/UN/242020'),
('student','users','1040',251,'PHT/UN/23006'),
('student','users','1041',252,'PHT/UN/23010'),
('student','users','1042',253,'MLT/UN/242024'),
('student','users','1043',254,'PHT/UN/242005'),
('student','users','1044',255,'MHT/UN/23067'),
('student','users','1045',256,'MHT/UN/23053'),
('student','users','1046',257,'MHT/UN/23102'),
('student','users','1047',258,'MHT/UN/23078'),
('student','users','1048',259,'MHT/UN/23119'),
('student','users','1049',260,'MHT/UN/23004'),
('student','users','1050',261,'MHT/UN/23010'),
('student','users','1051',262,'MHT/UN/23005'),
('student','users','1052',263,'MHT/UN/23043'),
('student','users','1053',264,'MHT/UN/23001'),
('student','users','1054',265,'CHEW/UN/24026'),
('student','users','1055',266,'CHEW/UN/24015'),
('student','users','1056',267,'CHEW/UN/24050'),
('student','users','1057',268,'CHEW/UN/24035'),
('student','users','1058',269,'CHEW/UN/24059'),
('student','users','1059',270,'MLT/UN/242023'),
('student','users','1060',271,'CHEW/UN/242040'),
('student','users','1061',272,'CHEW/UN/24021'),
('student','users','1062',273,'MHT/UN/24019'),
('student','users','1063',274,'MHT/UN/23088'),
('student','users','1064',275,'CHEW/UN/23041'),
('student','users','1065',276,'MHT/UN/23101'),
('student','users','1066',277,'MHT/UN/23093'),
('student','users','1067',278,'MHT/UN/23059'),
('student','users','1068',279,'MHT/UN/23069'),
('student','users','1069',280,'MHT/UN/230108'),
('student','users','1070',281,'MHT/UN/23091'),
('student','users','1071',282,'MHT/UN/23103'),
('student','users','1072',283,'MHT/UN/23019'),
('student','users','1073',284,'MHT/UN/23039'),
('student','users','1074',285,'MHT/UN/23023'),
('student','users','1075',286,'MHT/UN/23018'),
('student','users','1076',287,'MHT/UN/23063'),
('student','users','1077',288,'MHT/UN/23038'),
('student','users','1078',289,'MHT/UN/23017'),
('student','users','1079',290,'MHT/UN/23026'),
('student','users','1080',291,'MHT/UN/23037'),
('student','users','1081',292,'MHT/UN/23034'),
('student','users','1082',293,'MHT/UN/23035'),
('student','users','1083',294,'MHT/UN/23068'),
('student','users','1084',295,'MHT/UN/23057'),
('student','users','1085',296,'MHT/UN/23041'),
('student','users','1086',297,'MHT/UN/23079'),
('student','users','1087',298,'MHT/UN/23082'),
('student','users','1088',299,'MHT/UN/23012'),
('student','users','1089',300,'MHT/UN/23074'),
('student','users','1090',301,'MHT/UN/23083'),
('student','users','1091',302,'MHT/UN/23046'),
('student','users','1092',303,'MHT/UN/23033'),
('student','users','1093',304,'MHT/UN/23021'),
('student','users','1096',305,'MLT/UN/24003'),
('student','users','1097',306,'CHEW/UN/24058'),
('student','users','1098',307,'PHT/UN/24014'),
('student','users','1099',308,'CHEW/UN/24031'),
('student','users','1100',309,'DST/UN/24002'),
('student','users','1101',310,'DST/UN/24050'),
('student','users','1102',311,'DST/UN/24001'),
('student','users','1103',312,'DST/UN/24004'),
('student','users','1104',313,'DST/UN/24003'),
('student','users','1105',314,'DST/UN/242006'),
('student','users','1108',315,'MHT/UN/24054'),
('student','users','1111',316,'MHT/UN/24004'),
('student','users','1112',317,'MHSW/UN/242025'),
('student','users','1116',318,'MHT/UN/24069'),
('student','users','1117',319,'CHEW/UN/24090'),
('student','users','1118',320,'CHEW/UN/24018'),
('student','users','1119',321,'MLT/UN/24012'),
('student','users','1121',322,'CHEW/UN/24013');
INSERT INTO `legacy_mappings` (`entity_type`,`legacy_table`,`legacy_id`,`new_id`,`notes`) VALUES
('student','users','1122',323,'CHEW/UN/24032'),
('student','users','1123',324,'CHEW/UN/24033'),
('student','users','1126',325,'MLT/UN/24016'),
('student','users','1127',326,'MLT/UN/24008'),
('student','users','1129',327,'MLT/UN/250096'),
('student','users','1130',328,'MLT/UN/250100'),
('student','users','1131',329,'MLT/UN/250094'),
('student','users','1132',330,'MLT/UN/250098'),
('student','users','1133',331,'MHSW/UN/250061'),
('student','users','1134',332,'MHSW/UN/250056'),
('student','users','1135',333,'MHSW/UN/250058'),
('student','users','1136',334,'MHSW/UN/250063'),
('student','users','1137',335,'MHSW/UN/250062'),
('student','users','1138',336,'MLT/UN/250090'),
('student','users','1139',337,'CHEW/UN/250024'),
('student','users','1140',338,'MLT/UN/250093'),
('student','users','1141',339,'CHEW/UN/250049'),
('student','users','1142',340,'CHEW/UN/250027'),
('student','users','1144',341,'CHEW/UN/250034'),
('student','users','1145',342,'CHEW/UN/250042'),
('student','users','1146',343,'CHEW/UN/250036'),
('student','users','1147',344,'CHEW/UN/250037'),
('student','users','1148',345,'CHEW/UN/250012'),
('student','users','1149',346,'MLT/UN/250091'),
('student','users','1150',347,'CHEW/UN/250041'),
('student','users','1151',348,'CHEW/UN/250040'),
('student','users','1152',349,'CHEW/UN/250016'),
('student','users','1153',350,'CHEW/UN/250038'),
('student','users','1154',351,'CHEW/UN/250018'),
('student','users','1155',352,'CHEW/UN/250039'),
('student','users','1156',353,'DST/UN/250079'),
('student','users','1157',354,'CHEW/UN/250050'),
('student','users','1159',355,'CHEW/UN/250068'),
('student','users','1160',356,'CHEW/UN/250022'),
('student','users','1161',357,'CHEW/UN/250044'),
('student','users','1162',358,'CHEW/UN/250011'),
('student','users','1163',359,'MHSW/UN/250057'),
('student','users','1164',360,'MHSW/UN/250060'),
('student','users','1165',361,'PHT/UN/250074'),
('student','users','1166',362,'CHEW/UN/250021'),
('student','users','1167',363,'MLT/UN/250092'),
('student','users','1168',364,'CHEW/UN/250023'),
('student','users','1169',365,'CHEW/UN/250078'),
('student','users','1170',366,'CHEW/UN/250033'),
('student','users','1171',367,'CHEW/UN/250045'),
('student','users','1172',368,'DST/UN/250082'),
('student','users','1173',369,'DST/UN/250085'),
('student','users','1174',370,'PHT/UN/250076'),
('student','users','1175',371,'PHT/UN/250072'),
('student','users','1176',372,'PHT/UN/250071'),
('student','users','1177',373,'PHT/UN/250075'),
('student','users','1178',374,'CHEW/UN/250087'),
('student','users','1179',375,'PHT/UN/250069'),
('student','users','1180',376,'CHEW/UN/250015'),
('student','users','1181',377,'CHEW/UN/250031'),
('student','users','1182',378,'CHEW/UN/250028'),
('student','users','1183',379,'MHSW/UN/250065'),
('student','users','1184',380,'CHEW/UN/250052'),
('student','users','1185',381,'CHEW/UN/250013'),
('student','users','1186',382,'CHEW/UN/250115'),
('student','users','1188',383,'DST/UN/250086'),
('student','users','1189',384,'CHEW/UN/250116'),
('student','users','1190',385,'MLT/UN/250095'),
('student','users','1192',386,'MLT/UN/250089'),
('student','users','1193',387,'CHEW/UN/250088'),
('student','users','1202',388,'DST/UN/250080'),
('student','users','1203',389,'DST/UN/250081'),
('student','users','1204',390,'CHEW/UN/250200'),
('student','users','1205',391,'CHEW/UN/250025'),
('student','users','1206',392,'CHEW/UN/250112'),
('student','users','1207',393,'CHEW/UN/250043'),
('student','users','1208',394,'CHEW/UN/250026'),
('student','users','1210',395,'CHEW/UN/250029'),
('student','users','1211',396,'DST/UN/250213'),
('student','users','1212',397,'DST/UN/250084'),
('student','users','1213',398,'DST/UN/250083'),
('student','users','1214',399,'MLT/UN/250097'),
('student','users','1215',400,'MLT/UN/250099'),
('student','users','1216',401,'CHEW/UN/250032'),
('student','users','1217',402,'MLT/UN/250204'),
('student','users','1218',403,'PHT/UN/250118'),
('student','users','1219',404,'PHT/UN/250067'),
('student','users','1220',405,'MHSW/UN/250206'),
('student','users','1221',406,'CHEW/UN/250020'),
('student','users','1222',407,'MHSW/UN/250053'),
('student','users','1223',408,'CHEW/UN/250046'),
('student','users','1224',409,'MLT/UN/250207'),
('student','users','1225',410,'MLT/UN/242008'),
('student','users','1226',411,'CHEW/UN/250211'),
('student','users','1227',412,'CHEW/UN/250113'),
('student','users','1228',413,'CHEW/UN/250117'),
('course','course_list','395',1,NULL),
('course','course_list','396',2,NULL),
('course','course_list','397',3,NULL),
('course','course_list','398',4,NULL),
('course','course_list','399',5,NULL),
('course','course_list','400',6,NULL),
('course','course_list','401',7,NULL),
('course','course_list','402',8,NULL),
('course','course_list','403',9,NULL),
('course','course_list','404',10,NULL),
('course','course_list','405',11,NULL),
('course','course_list','406',12,NULL),
('course','course_list','407',13,NULL),
('course','course_list','408',14,NULL),
('course','course_list','409',15,NULL),
('course','course_list','410',16,NULL),
('course','course_list','411',14,NULL),
('course','course_list','412',17,NULL),
('course','course_list','413',18,NULL),
('course','course_list','414',8,NULL),
('course','course_list','415',19,NULL),
('course','course_list','416',20,NULL),
('course','course_list','417',21,NULL),
('course','course_list','418',22,NULL),
('course','course_list','419',23,NULL),
('course','course_list','420',24,NULL),
('course','course_list','421',25,NULL),
('course','course_list','422',26,NULL),
('course','course_list','423',27,NULL),
('course','course_list','424',28,NULL),
('course','course_list','425',29,NULL),
('course','course_list','426',30,NULL),
('course','course_list','427',31,NULL),
('course','course_list','428',32,NULL),
('course','course_list','429',33,NULL),
('course','course_list','430',34,NULL),
('course','course_list','431',35,NULL),
('course','course_list','432',36,NULL),
('course','course_list','433',37,NULL),
('course','course_list','434',38,NULL),
('course','course_list','435',39,NULL),
('course','course_list','436',40,NULL),
('course','course_list','437',41,NULL),
('course','course_list','438',42,NULL),
('course','course_list','439',43,NULL),
('course','course_list','440',44,NULL),
('course','course_list','441',45,NULL),
('course','course_list','442',46,NULL),
('course','course_list','443',47,NULL),
('course','course_list','444',48,NULL),
('course','course_list','445',49,NULL),
('course','course_list','446',50,NULL),
('course','course_list','447',51,NULL),
('course','course_list','448',52,NULL),
('course','course_list','449',53,NULL),
('course','course_list','450',54,NULL),
('course','course_list','451',55,NULL),
('course','course_list','452',56,NULL),
('course','course_list','453',57,NULL),
('course','course_list','454',58,NULL),
('course','course_list','455',59,NULL),
('course','course_list','456',60,NULL),
('course','course_list','457',61,NULL),
('course','course_list','458',62,NULL),
('course','course_list','459',63,NULL),
('course','course_list','460',64,NULL),
('course','course_list','461',65,NULL),
('course','course_list','462',66,NULL),
('course','course_list','463',67,NULL),
('course','course_list','464',68,NULL),
('course','course_list','465',69,NULL),
('course','course_list','466',70,NULL),
('course','course_list','467',71,NULL),
('course','course_list','468',72,NULL),
('course','course_list','469',73,NULL),
('course','course_list','470',74,NULL),
('course','course_list','471',75,NULL),
('course','course_list','472',76,NULL),
('course','course_list','473',77,NULL),
('course','course_list','474',78,NULL),
('course','course_list','475',79,NULL),
('course','course_list','476',80,NULL),
('course','course_list','477',81,NULL),
('course','course_list','478',82,NULL),
('course','course_list','479',83,NULL),
('course','course_list','480',84,NULL),
('course','course_list','481',85,NULL),
('course','course_list','482',86,NULL),
('course','course_list','483',87,NULL),
('course','course_list','484',88,NULL),
('course','course_list','485',89,NULL),
('course','course_list','486',90,NULL),
('course','course_list','487',91,NULL),
('course','course_list','488',92,NULL),
('course','course_list','489',93,NULL),
('course','course_list','490',94,NULL),
('course','course_list','491',95,NULL),
('course','course_list','492',96,NULL),
('course','course_list','493',97,NULL),
('course','course_list','494',98,NULL),
('course','course_list','495',99,NULL),
('course','course_list','496',100,NULL),
('course','course_list','497',46,NULL),
('course','course_list','498',101,NULL),
('course','course_list','499',102,NULL),
('course','course_list','500',103,NULL),
('course','course_list','501',104,NULL),
('course','course_list','502',105,NULL),
('course','course_list','503',106,NULL),
('course','course_list','504',107,NULL),
('course','course_list','505',108,NULL),
('course','course_list','506',109,NULL),
('course','course_list','507',110,NULL),
('course','course_list','508',111,NULL),
('course','course_list','509',112,NULL),
('course','course_list','510',113,NULL),
('course','course_list','511',114,NULL),
('course','course_list','512',115,NULL),
('course','course_list','513',116,NULL),
('course','course_list','514',117,NULL),
('course','course_list','515',118,NULL),
('course','course_list','516',119,NULL),
('course','course_list','517',120,NULL),
('course','course_list','518',121,NULL),
('course','course_list','519',122,NULL),
('course','course_list','520',123,NULL),
('course','course_list','521',124,NULL),
('course','course_list','522',125,NULL),
('course','course_list','523',126,NULL),
('course','course_list','524',127,NULL),
('course','course_list','525',128,NULL),
('course','course_list','526',129,NULL),
('course','course_list','527',130,NULL),
('course','course_list','528',131,NULL),
('course','course_list','529',132,NULL),
('course','course_list','530',133,NULL),
('course','course_list','531',134,NULL),
('course','course_list','532',135,NULL),
('course','course_list','533',136,NULL),
('course','course_list','534',137,NULL),
('course','course_list','535',138,NULL),
('course','course_list','536',139,NULL),
('course','course_list','537',140,NULL),
('course','course_list','538',141,NULL),
('course','course_list','539',142,NULL),
('course','course_list','540',143,NULL),
('course','course_list','541',144,NULL),
('course','course_list','542',145,NULL),
('course','course_list','543',146,NULL),
('course','course_list','544',147,NULL),
('course','course_list','545',148,NULL),
('course','course_list','546',149,NULL),
('course','course_list','547',150,NULL),
('course','course_list','548',151,NULL),
('course','course_list','549',152,NULL),
('course','course_list','550',153,NULL),
('course','course_list','551',154,NULL),
('course','course_list','552',155,NULL),
('course','course_list','553',156,NULL);
INSERT INTO `legacy_mappings` (`entity_type`,`legacy_table`,`legacy_id`,`new_id`,`notes`) VALUES
('course','course_list','554',157,NULL),
('course','course_list','555',158,NULL),
('course','course_list','556',159,NULL),
('course','course_list','557',160,NULL),
('course','course_list','558',161,NULL),
('course','course_list','559',162,NULL),
('course','course_list','560',163,NULL),
('course','course_list','561',164,NULL),
('course','course_list','562',165,NULL),
('course','course_list','563',166,NULL),
('course','course_list','564',167,NULL),
('course','course_list','565',168,NULL),
('course','course_list','566',169,NULL),
('course','course_list','567',170,NULL),
('course','course_list','568',171,NULL),
('course','course_list','569',172,NULL),
('course','course_list','570',173,NULL),
('course','course_list','571',174,NULL),
('course','course_list','572',175,NULL),
('course','course_list','573',176,NULL),
('course','course_list','574',177,NULL),
('course','course_list','575',178,NULL),
('course','course_list','576',179,NULL),
('course','course_list','577',180,NULL),
('course','course_list','578',181,NULL),
('course','course_list','579',1,NULL),
('course','course_list','580',182,NULL),
('course','course_list','581',183,NULL),
('course','course_list','582',184,NULL),
('course','course_list','583',182,NULL),
('course','course_list','584',185,NULL),
('course','course_list','585',186,NULL),
('course','course_list','586',187,NULL),
('course','course_list','587',188,NULL),
('course','course_list','588',189,NULL),
('course','course_list','589',190,NULL),
('course','course_list','590',191,NULL),
('course','course_list','591',192,NULL),
('course','course_list','592',193,NULL),
('course','course_list','593',194,NULL),
('course','course_list','594',195,NULL),
('course','course_list','595',196,NULL),
('course','course_list','596',197,NULL),
('course','course_list','597',198,NULL),
('course','course_list','598',199,NULL),
('course','course_list','599',200,NULL),
('course','course_list','600',201,NULL),
('course','course_list','601',202,NULL),
('course','course_list','602',184,NULL),
('course','course_list','603',189,NULL),
('course','course_list','604',203,NULL),
('course','course_list','605',204,NULL),
('course','course_list','606',205,NULL),
('course','course_list','607',206,NULL),
('course','course_list','608',207,NULL),
('course','course_list','609',208,NULL),
('course','course_list','610',209,NULL),
('course','course_list','611',39,NULL),
('course','course_list','612',194,NULL),
('course','course_list','613',210,NULL),
('course','course_list','614',160,NULL),
('course','course_list','615',211,NULL),
('course','course_list','616',212,NULL),
('course','course_list','617',213,NULL),
('course','course_list','618',214,NULL),
('course','course_list','619',215,NULL),
('course','course_list','620',216,NULL),
('course','course_list','621',217,NULL),
('course','course_list','622',218,NULL),
('course','course_list','623',219,NULL),
('course','course_list','624',220,NULL),
('course','course_list','625',221,NULL),
('course','course_list','626',222,NULL),
('course','course_list','627',47,NULL),
('course','course_list','628',38,NULL),
('course','course_list','629',39,NULL),
('course','course_list','630',36,NULL),
('course','course_list','631',181,NULL),
('course','course_list','632',193,NULL),
('course','course_list','633',223,NULL),
('course','course_list','634',224,NULL),
('course','course_list','635',225,NULL),
('course','course_list','636',226,NULL),
('course','course_list','637',227,NULL),
('course','course_list','638',228,NULL),
('course','course_list','639',229,NULL),
('course','course_list','640',230,NULL),
('course','course_list','641',231,NULL),
('course','course_list','642',232,NULL),
('course','course_list','643',233,NULL),
('course','course_list','644',234,NULL),
('course','course_list','645',235,NULL),
('course','course_list','646',236,NULL),
('course','course_list','647',237,NULL),
('course','course_list','648',46,NULL),
('course','course_list','649',238,NULL),
('course','course_list','650',239,NULL),
('course','course_list','651',240,NULL),
('course','course_list','652',87,NULL),
('course','course_list','653',241,NULL),
('course','course_list','654',242,NULL),
('course','course_list','655',243,NULL),
('course','course_list','656',160,NULL),
('course','course_list','657',244,NULL),
('course','course_list','658',245,NULL),
('course','course_list','659',246,NULL),
('course','course_list','660',247,NULL),
('course','course_list','661',248,NULL),
('course','course_list','662',249,NULL),
('course','course_list','663',250,NULL),
('course','course_list','664',251,NULL),
('course','course_list','665',252,NULL),
('course','course_list','666',253,NULL),
('course','course_list','667',254,NULL),
('course','course_list','668',255,NULL),
('course','course_list','669',256,NULL),
('course','course_list','670',257,NULL),
('course','course_list','671',222,NULL),
('course','course_list','672',47,NULL),
('course','course_list','673',38,NULL),
('course','course_list','674',39,NULL),
('course','course_list','675',36,NULL),
('course','course_list','676',10,NULL),
('course','course_list','677',193,NULL),
('course','course_list','678',258,NULL),
('course','course_list','679',259,NULL),
('course','course_list','680',260,NULL),
('course','course_list','681',261,NULL),
('course','course_list','682',262,NULL),
('course','course_list','683',263,NULL),
('course','course_list','684',264,NULL),
('course','course_list','685',235,NULL),
('course','course_list','686',265,NULL),
('course','course_list','687',46,NULL),
('course','course_list','688',266,NULL),
('course','course_list','689',267,NULL),
('course','course_list','690',268,NULL),
('course','course_list','691',269,NULL),
('course','course_list','692',269,NULL),
('course','course_list','693',270,NULL),
('course','course_list','694',271,NULL),
('course','course_list','695',272,NULL),
('course','course_list','696',273,NULL),
('course','course_list','697',274,NULL),
('course','course_list','698',275,NULL),
('course','course_list','699',276,NULL),
('course','course_list','700',277,NULL),
('course','course_list','701',278,NULL),
('course','course_list','702',279,NULL),
('course','course_list','703',280,NULL),
('course','course_list','704',281,NULL),
('course','course_list','705',7,NULL),
('course','course_list','706',282,NULL),
('course','course_list','707',283,NULL),
('course','course_list','708',284,NULL),
('course','course_list','709',285,NULL),
('course','course_list','710',286,NULL),
('course','course_list','711',287,NULL),
('course','course_list','712',288,NULL),
('course','course_list','713',289,NULL),
('course','course_list','714',39,NULL),
('course','course_list','715',290,NULL),
('course','course_list','716',291,NULL),
('course','course_list','717',113,NULL),
('course','course_list','718',292,NULL),
('course','course_list','719',246,NULL),
('course','course_list','720',244,NULL),
('course','course_list','721',150,NULL),
('course','course_list','722',293,NULL),
('course','course_list','723',16,NULL),
('course','course_list','724',294,NULL),
('course','course_list','725',1,NULL),
('course','course_list','726',295,NULL),
('course','course_list','727',193,NULL),
('course','course_list','728',296,NULL),
('course','course_list','729',14,NULL),
('course','course_list','730',297,NULL),
('course','course_list','731',298,NULL),
('course','course_list','732',298,NULL),
('course','course_list','733',19,NULL),
('course','course_list','734',126,NULL),
('course','course_list','735',39,NULL),
('course','course_list','736',299,NULL),
('course','course_list','737',300,NULL),
('course','course_list','738',263,NULL),
('course','course_list','739',270,NULL),
('course','course_list','740',271,NULL),
('course','course_list','741',272,NULL),
('course','course_list','742',275,NULL),
('course','course_list','743',301,NULL),
('course','course_list','744',302,NULL),
('course','course_list','745',303,NULL),
('course','course_list','746',303,NULL),
('course','course_list','747',233,NULL),
('course','course_list','748',304,NULL),
('course','course_list','749',85,NULL),
('course','course_list','750',305,NULL),
('course','course_list','751',306,NULL),
('course','course_list','752',307,NULL),
('course','course_list','753',308,NULL),
('course','course_list','754',309,NULL),
('course','course_list','755',310,NULL),
('course','course_list','756',311,NULL),
('course','course_list','757',312,NULL),
('course','course_list','758',113,NULL),
('course','course_list','759',305,NULL),
('course','course_list','760',306,NULL),
('course','course_list','761',307,NULL),
('course','course_list','762',308,NULL),
('course','course_list','763',309,NULL),
('course','course_list','764',313,NULL),
('course','course_list','765',311,NULL),
('course','course_list','766',312,NULL),
('course','course_list','767',313,NULL),
('course','course_list','768',314,NULL),
('course','course_list','769',315,NULL),
('course','course_list','770',316,NULL),
('course','course_list','771',317,NULL),
('course','course_list','772',250,NULL),
('course','course_list','773',318,NULL),
('course','course_list','774',118,NULL),
('course','course_list','775',319,NULL),
('course','course_list','776',119,NULL),
('course','course_list','777',115,NULL),
('course','course_list','778',320,NULL),
('course','course_list','779',321,NULL),
('course','course_list','780',322,NULL),
('course','course_list','781',323,NULL),
('course','course_list','782',324,NULL),
('course','course_list','783',87,NULL),
('course','course_list','784',244,NULL),
('course','course_list','785',325,NULL),
('course','course_list','786',326,NULL),
('course','course_list','787',327,NULL),
('course','course_list','788',224,NULL),
('course','course_list','789',225,NULL),
('course','course_list','790',328,NULL),
('course','course_list','791',227,NULL),
('course','course_list','792',228,NULL),
('course','course_list','793',229,NULL),
('course','course_list','794',230,NULL),
('course','course_list','795',231,NULL),
('course','course_list','796',329,NULL),
('course','course_list','797',330,NULL),
('course','course_list','798',213,NULL),
('course','course_list','799',331,NULL),
('course','course_list','800',332,NULL),
('course','course_list','801',305,NULL),
('course','course_list','802',306,NULL),
('course','course_list','803',333,NULL);
INSERT INTO `legacy_mappings` (`entity_type`,`legacy_table`,`legacy_id`,`new_id`,`notes`) VALUES
('course','course_list','804',307,NULL),
('course','course_list','805',308,NULL),
('course','course_list','806',309,NULL),
('course','course_list','807',311,NULL),
('course','course_list','808',313,NULL),
('course','course_list','809',314,NULL),
('course','course_list','810',313,NULL),
('course','course_list','811',334,NULL),
('course','course_list','812',335,NULL),
('course','course_list','813',334,NULL),
('course','course_list','814',113,NULL),
('result','result_semester','9316',1,NULL),
('result','result_semester','9317',2,NULL),
('result','result_semester','9318',3,NULL),
('result','result_semester','9319',4,NULL),
('result','result_semester','9320',5,NULL),
('result','result_semester','9321',6,NULL),
('result','result_semester','9322',7,NULL),
('result','result_semester','9323',8,NULL),
('result','result_semester','9324',9,NULL),
('result','result_semester','9325',10,NULL),
('result','result_semester','9326',11,NULL),
('result','result_semester','9327',12,NULL),
('result','result_semester','9328',13,NULL),
('result','result_semester','9329',14,NULL),
('result','result_semester','9330',15,NULL),
('result','result_semester','9331',16,NULL),
('result','result_semester','9332',17,NULL),
('result','course_reg','4622',18,NULL),
('result','course_reg','4623',19,NULL),
('result','course_reg','4624',20,NULL),
('result','course_reg','4625',21,NULL),
('result','course_reg','4626',22,NULL),
('result','course_reg','4627',23,NULL),
('result','course_reg','4628',24,NULL),
('result','course_reg','4629',25,NULL),
('result','course_reg','4630',26,NULL),
('result','course_reg','4631',27,NULL),
('result','course_reg','4632',28,NULL),
('result','course_reg','4633',29,NULL),
('result','course_reg','4635',30,NULL),
('result','course_reg','4636',31,NULL),
('result','course_reg','4637',32,NULL),
('result','course_reg','4638',33,NULL),
('result','course_reg','4639',34,NULL),
('result','course_reg','4640',35,NULL),
('result','course_reg','4641',36,NULL),
('result','course_reg','4642',37,NULL),
('result','course_reg','4643',38,NULL),
('result','course_reg','4644',39,NULL),
('result','course_reg','4645',40,NULL),
('result','course_reg','4646',41,NULL),
('result','course_reg','4647',42,NULL),
('result','course_reg','4648',43,NULL),
('result','course_reg','4649',44,NULL),
('result','course_reg','4650',45,NULL),
('result','course_reg','4651',46,NULL),
('result','course_reg','4652',47,NULL),
('result','course_reg','4653',48,NULL),
('result','course_reg','4654',49,NULL),
('result','course_reg','4655',50,NULL),
('result','course_reg','4656',51,NULL),
('result','course_reg','4657',52,NULL),
('result','course_reg','4658',53,NULL),
('result','course_reg','4659',54,NULL),
('result','course_reg','4660',55,NULL),
('result','course_reg','4661',56,NULL),
('result','course_reg','4662',57,NULL),
('result','course_reg','4663',58,NULL),
('result','course_reg','4664',59,NULL),
('result','course_reg','4665',60,NULL),
('result','course_reg','4666',61,NULL),
('result','course_reg','4667',62,NULL),
('result','course_reg','4668',63,NULL),
('result','course_reg','4669',64,NULL),
('result','course_reg','4670',65,NULL),
('result','course_reg','4671',66,NULL),
('result','course_reg','4672',67,NULL),
('result','course_reg','4673',68,NULL),
('result','course_reg','4674',69,NULL),
('result','course_reg','4675',70,NULL),
('result','course_reg','4676',71,NULL),
('result','course_reg','4677',72,NULL),
('result','course_reg','4678',73,NULL),
('result','course_reg','4679',74,NULL),
('result','course_reg','4680',75,NULL),
('result','course_reg','4681',76,NULL),
('result','course_reg','4682',77,NULL),
('result','course_reg','4683',78,NULL),
('result','course_reg','4684',79,NULL),
('result','course_reg','4685',80,NULL),
('result','course_reg','4686',81,NULL),
('result','course_reg','4687',82,NULL),
('result','course_reg','4688',83,NULL),
('result','course_reg','4689',84,NULL),
('result','course_reg','4690',85,NULL),
('result','course_reg','4691',86,NULL),
('result','course_reg','4692',87,NULL),
('result','course_reg','4693',88,NULL),
('result','course_reg','4694',89,NULL),
('result','course_reg','4695',90,NULL),
('result','course_reg','4696',91,NULL),
('result','course_reg','4697',92,NULL),
('result','course_reg','4698',93,NULL),
('result','course_reg','4699',94,NULL),
('result','course_reg','4700',95,NULL),
('result','course_reg','4701',96,NULL),
('result','course_reg','4702',97,NULL),
('result','course_reg','4703',98,NULL),
('result','course_reg','4704',99,NULL),
('result','course_reg','4706',100,NULL),
('result','course_reg','4707',101,NULL),
('result','course_reg','4708',102,NULL),
('result','course_reg','4709',103,NULL),
('result','course_reg','4710',104,NULL),
('result','course_reg','4711',105,NULL),
('result','course_reg','4712',106,NULL),
('result','course_reg','4713',107,NULL),
('result','course_reg','4714',108,NULL),
('result','course_reg','4715',109,NULL),
('result','course_reg','4716',110,NULL),
('result','course_reg','4717',111,NULL),
('result','course_reg','4718',112,NULL),
('result','course_reg','4719',113,NULL),
('result','course_reg','4720',114,NULL),
('result','course_reg','4721',115,NULL),
('result','course_reg','4722',116,NULL),
('result','course_reg','4723',117,NULL),
('result','course_reg','4724',118,NULL),
('result','course_reg','4725',119,NULL),
('result','course_reg','4726',120,NULL),
('result','course_reg','4727',121,NULL),
('result','course_reg','4728',122,NULL),
('result','course_reg','4729',123,NULL),
('result','course_reg','4730',124,NULL),
('result','course_reg','4731',125,NULL),
('result','course_reg','4732',126,NULL),
('result','course_reg','4733',127,NULL),
('result','course_reg','4734',128,NULL),
('result','course_reg','4735',129,NULL),
('result','course_reg','4736',130,NULL),
('result','course_reg','4737',131,NULL),
('result','course_reg','4738',132,NULL),
('result','course_reg','4739',133,NULL),
('result','course_reg','4740',134,NULL),
('result','course_reg','4741',135,NULL),
('result','course_reg','4742',136,NULL),
('result','course_reg','4743',137,NULL),
('result','course_reg','4744',138,NULL),
('result','course_reg','4745',139,NULL),
('result','course_reg','4746',140,NULL),
('result','course_reg','4747',141,NULL),
('result','course_reg','4748',142,NULL),
('result','course_reg','4749',143,NULL),
('result','course_reg','4750',144,NULL),
('result','course_reg','4751',145,NULL),
('result','course_reg','4752',146,NULL),
('result','course_reg','4753',147,NULL),
('result','course_reg','4754',148,NULL),
('result','course_reg','4755',149,NULL),
('result','course_reg','4756',150,NULL),
('result','course_reg','4757',151,NULL),
('result','course_reg','4758',152,NULL),
('result','course_reg','4759',153,NULL),
('result','course_reg','4760',154,NULL),
('result','course_reg','4761',155,NULL),
('result','course_reg','4762',156,NULL),
('result','course_reg','4763',157,NULL),
('result','course_reg','4764',158,NULL),
('result','course_reg','4765',159,NULL),
('result','course_reg','4766',160,NULL),
('result','course_reg','4767',161,NULL),
('result','course_reg','4768',162,NULL),
('result','course_reg','4769',163,NULL),
('result','course_reg','4770',164,NULL),
('result','course_reg','4771',165,NULL),
('result','course_reg','4772',166,NULL),
('result','course_reg','4773',167,NULL),
('result','course_reg','4774',168,NULL),
('result','course_reg','4775',169,NULL),
('result','course_reg','4776',170,NULL),
('result','course_reg','4777',171,NULL),
('result','course_reg','4778',172,NULL),
('result','course_reg','4780',173,NULL),
('result','course_reg','4781',174,NULL),
('result','course_reg','4782',175,NULL),
('result','course_reg','4783',176,NULL),
('result','course_reg','4784',177,NULL),
('result','course_reg','4785',178,NULL),
('result','course_reg','4786',179,NULL),
('result','course_reg','4787',180,NULL),
('result','course_reg','4789',181,NULL),
('result','course_reg','4790',182,NULL),
('result','course_reg','4792',183,NULL),
('result','course_reg','4794',184,NULL),
('result','course_reg','4795',185,NULL),
('result','course_reg','4796',186,NULL),
('result','course_reg','4801',187,NULL),
('result','course_reg','4803',188,NULL),
('result','course_reg','4805',189,NULL),
('result','course_reg','4806',190,NULL),
('result','course_reg','4807',191,NULL),
('result','course_reg','4808',192,NULL),
('result','course_reg','4809',193,NULL),
('result','course_reg','4811',194,NULL),
('result','course_reg','4812',195,NULL),
('result','course_reg','4813',196,NULL),
('result','course_reg','4814',197,NULL),
('result','course_reg','4815',198,NULL),
('result','course_reg','4816',199,NULL),
('result','course_reg','4817',200,NULL),
('result','course_reg','4818',201,NULL),
('result','course_reg','4819',202,NULL),
('result','course_reg','4820',203,NULL),
('result','course_reg','4821',204,NULL),
('result','course_reg','4822',205,NULL),
('result','course_reg','4823',206,NULL),
('result','course_reg','4824',207,NULL),
('result','course_reg','4825',208,NULL),
('result','course_reg','4827',209,NULL),
('result','course_reg','4828',210,NULL),
('result','course_reg','4829',211,NULL),
('result','course_reg','4830',212,NULL),
('result','course_reg','4831',213,NULL),
('result','course_reg','4832',214,NULL),
('result','course_reg','4833',215,NULL),
('result','course_reg','4834',216,NULL),
('result','course_reg','4835',217,NULL),
('result','course_reg','4836',218,NULL),
('result','course_reg','4837',219,NULL),
('result','course_reg','4839',220,NULL),
('result','course_reg','4840',221,NULL),
('result','course_reg','4841',222,NULL),
('result','course_reg','4842',223,NULL),
('result','course_reg','4843',224,NULL),
('result','course_reg','4844',225,NULL),
('result','course_reg','4845',226,NULL),
('result','course_reg','4846',227,NULL),
('result','course_reg','4847',228,NULL),
('result','course_reg','4848',229,NULL),
('result','course_reg','4849',230,NULL),
('result','course_reg','4850',231,NULL),
('result','course_reg','4851',232,NULL),
('result','course_reg','4853',233,NULL),
('result','course_reg','4854',234,NULL),
('result','course_reg','4855',235,NULL),
('result','course_reg','4856',236,NULL),
('result','course_reg','4857',237,NULL),
('result','course_reg','4858',238,NULL),
('result','course_reg','4859',239,NULL);
INSERT INTO `legacy_mappings` (`entity_type`,`legacy_table`,`legacy_id`,`new_id`,`notes`) VALUES
('result','course_reg','4860',240,NULL),
('result','course_reg','4861',241,NULL),
('result','course_reg','4862',242,NULL),
('result','course_reg','4863',243,NULL),
('result','course_reg','4864',244,NULL),
('result','course_reg','4865',245,NULL),
('result','course_reg','4866',246,NULL),
('result','course_reg','4867',247,NULL),
('result','course_reg','4868',248,NULL),
('result','course_reg','4869',249,NULL),
('result','course_reg','4870',250,NULL),
('result','course_reg','4871',251,NULL),
('result','course_reg','4872',252,NULL),
('result','course_reg','4873',253,NULL),
('result','course_reg','4874',254,NULL),
('result','course_reg','4875',255,NULL),
('result','course_reg','4876',256,NULL),
('result','course_reg','4877',257,NULL),
('result','course_reg','4878',258,NULL),
('result','course_reg','4879',259,NULL),
('result','course_reg','4880',260,NULL),
('result','course_reg','4881',261,NULL),
('result','course_reg','4882',262,NULL),
('result','course_reg','4883',263,NULL),
('result','course_reg','4884',264,NULL),
('result','course_reg','4885',265,NULL),
('result','course_reg','4886',266,NULL),
('result','course_reg','4887',267,NULL),
('result','course_reg','4888',268,NULL),
('result','course_reg','4889',269,NULL),
('result','course_reg','4890',270,NULL),
('result','course_reg','4892',271,NULL),
('result','course_reg','4893',272,NULL),
('result','course_reg','4894',273,NULL),
('result','course_reg','4895',274,NULL),
('result','course_reg','4896',275,NULL),
('result','course_reg','4897',276,NULL),
('result','course_reg','4898',277,NULL),
('result','course_reg','4899',278,NULL),
('result','course_reg','4900',279,NULL),
('result','course_reg','4901',280,NULL),
('result','course_reg','4902',281,NULL),
('result','course_reg','4903',282,NULL),
('result','course_reg','4904',283,NULL),
('result','course_reg','4905',284,NULL),
('result','course_reg','4906',285,NULL),
('result','course_reg','4907',286,NULL),
('result','course_reg','4908',287,NULL),
('result','course_reg','4909',288,NULL),
('result','course_reg','4910',289,NULL),
('result','course_reg','4911',290,NULL),
('result','course_reg','4912',291,NULL),
('result','course_reg','4913',292,NULL),
('result','course_reg','4914',293,NULL),
('result','course_reg','4915',294,NULL),
('result','course_reg','4916',295,NULL),
('result','course_reg','4917',296,NULL),
('result','course_reg','4918',297,NULL),
('result','course_reg','4919',298,NULL),
('result','course_reg','4920',299,NULL),
('result','course_reg','4921',300,NULL),
('result','course_reg','4922',301,NULL),
('result','course_reg','4923',302,NULL),
('result','course_reg','4924',303,NULL),
('result','course_reg','4926',304,NULL),
('result','course_reg','4927',305,NULL),
('result','course_reg','4928',306,NULL),
('result','course_reg','4929',307,NULL),
('result','course_reg','4930',308,NULL),
('result','course_reg','4932',309,NULL),
('result','course_reg','4935',310,NULL),
('result','course_reg','4936',311,NULL),
('result','course_reg','4938',312,NULL),
('result','course_reg','4939',313,NULL),
('result','course_reg','4940',314,NULL),
('result','course_reg','4941',315,NULL),
('result','course_reg','4942',316,NULL),
('result','course_reg','4943',317,NULL),
('result','course_reg','4944',318,NULL),
('result','course_reg','4945',319,NULL),
('result','course_reg','4946',320,NULL),
('result','course_reg','4947',321,NULL),
('result','course_reg','4948',322,NULL),
('result','course_reg','4949',323,NULL),
('result','course_reg','4950',324,NULL),
('result','course_reg','4951',325,NULL),
('result','course_reg','4952',326,NULL),
('result','course_reg','4953',327,NULL),
('result','course_reg','4954',328,NULL),
('result','course_reg','4955',329,NULL),
('result','course_reg','4956',330,NULL),
('result','course_reg','4957',331,NULL),
('result','course_reg','4958',332,NULL),
('result','course_reg','4959',333,NULL),
('result','course_reg','4961',334,NULL),
('result','course_reg','4965',335,NULL),
('result','course_reg','4966',336,NULL),
('result','course_reg','4968',337,NULL),
('result','course_reg','4969',338,NULL),
('result','course_reg','4970',339,NULL),
('result','course_reg','4971',340,NULL),
('result','course_reg','4972',341,NULL),
('result','course_reg','4973',342,NULL),
('result','course_reg','4974',343,NULL),
('result','course_reg','4975',344,NULL),
('result','course_reg','4976',345,NULL),
('result','course_reg','4977',346,NULL),
('result','course_reg','4978',347,NULL),
('result','course_reg','4979',348,NULL),
('result','course_reg','4980',349,NULL),
('result','course_reg','4981',350,NULL),
('result','course_reg','4982',351,NULL),
('result','course_reg','4983',352,NULL),
('result','course_reg','4984',353,NULL),
('result','course_reg','4986',354,NULL),
('result','course_reg','4987',355,NULL),
('result','course_reg','4988',356,NULL),
('result','course_reg','4989',357,NULL),
('result','course_reg','4990',358,NULL),
('result','course_reg','4991',359,NULL),
('result','course_reg','4992',360,NULL),
('result','course_reg','4993',361,NULL),
('result','course_reg','4994',362,NULL),
('result','course_reg','4995',363,NULL),
('result','course_reg','4996',364,NULL),
('result','course_reg','4997',365,NULL),
('result','course_reg','4998',366,NULL),
('result','course_reg','4999',367,NULL),
('result','course_reg','5000',368,NULL),
('result','course_reg','5001',369,NULL),
('result','course_reg','5002',370,NULL),
('result','course_reg','5003',371,NULL),
('result','course_reg','5004',372,NULL),
('result','course_reg','5005',373,NULL),
('result','course_reg','5006',374,NULL),
('result','course_reg','5007',375,NULL),
('result','course_reg','5008',376,NULL),
('result','course_reg','5009',377,NULL),
('result','course_reg','5011',378,NULL),
('result','course_reg','5012',379,NULL),
('result','course_reg','5013',380,NULL),
('result','course_reg','5014',381,NULL),
('result','course_reg','5015',382,NULL),
('result','course_reg','5016',383,NULL),
('result','course_reg','5017',384,NULL),
('result','course_reg','5018',385,NULL),
('result','course_reg','5019',386,NULL),
('result','course_reg','5020',387,NULL),
('result','course_reg','5021',388,NULL),
('result','course_reg','5022',389,NULL),
('result','course_reg','5024',390,NULL),
('result','course_reg','5025',391,NULL),
('result','course_reg','5026',392,NULL),
('result','course_reg','5027',393,NULL),
('result','course_reg','5028',394,NULL),
('result','course_reg','5029',395,NULL),
('result','course_reg','5030',396,NULL),
('result','course_reg','5031',397,NULL),
('result','course_reg','5032',398,NULL),
('result','course_reg','5033',399,NULL),
('result','course_reg','5034',400,NULL),
('result','course_reg','5035',401,NULL),
('result','course_reg','5036',402,NULL),
('result','course_reg','5037',403,NULL),
('result','course_reg','5038',404,NULL),
('result','course_reg','5039',405,NULL),
('result','course_reg','5040',406,NULL),
('result','course_reg','5041',407,NULL),
('result','course_reg','5042',408,NULL),
('result','course_reg','5043',409,NULL),
('result','course_reg','5044',410,NULL),
('result','course_reg','5045',411,NULL),
('result','course_reg','5046',412,NULL),
('result','course_reg','5047',413,NULL),
('result','course_reg','5048',414,NULL),
('result','course_reg','5049',415,NULL),
('result','course_reg','5050',416,NULL),
('result','course_reg','5051',417,NULL),
('result','course_reg','5052',418,NULL),
('result','course_reg','5053',419,NULL),
('result','course_reg','5054',420,NULL),
('result','course_reg','5055',421,NULL),
('result','course_reg','5056',422,NULL),
('result','course_reg','5057',423,NULL),
('result','course_reg','5058',424,NULL),
('result','course_reg','5059',425,NULL),
('result','course_reg','5060',426,NULL),
('result','course_reg','5061',427,NULL),
('result','course_reg','5062',428,NULL),
('result','course_reg','5063',429,NULL),
('result','course_reg','5064',430,NULL),
('result','course_reg','5065',431,NULL),
('result','course_reg','5066',432,NULL),
('result','course_reg','5067',433,NULL),
('result','course_reg','5068',434,NULL),
('result','course_reg','5069',435,NULL),
('result','course_reg','5070',436,NULL),
('result','course_reg','5071',437,NULL),
('result','course_reg','5072',438,NULL),
('result','course_reg','5073',439,NULL),
('result','course_reg','5074',440,NULL),
('result','course_reg','5075',441,NULL),
('result','course_reg','5076',442,NULL),
('result','course_reg','5077',443,NULL),
('result','course_reg','5078',444,NULL),
('result','course_reg','5080',445,NULL),
('result','course_reg','5081',446,NULL),
('result','course_reg','5082',447,NULL),
('result','course_reg','5083',448,NULL),
('result','course_reg','5084',449,NULL),
('result','course_reg','5085',450,NULL),
('result','course_reg','5086',451,NULL),
('result','course_reg','5087',452,NULL),
('result','course_reg','5088',453,NULL),
('result','course_reg','5089',454,NULL),
('result','course_reg','5090',455,NULL),
('result','course_reg','5092',456,NULL),
('result','course_reg','5094',457,NULL),
('result','course_reg','5095',458,NULL),
('result','course_reg','5096',459,NULL),
('result','course_reg','5097',460,NULL),
('result','course_reg','5098',461,NULL),
('result','course_reg','5100',462,NULL),
('result','course_reg','5101',463,NULL),
('result','course_reg','5102',464,NULL),
('result','course_reg','5103',465,NULL),
('result','course_reg','5104',466,NULL),
('result','course_reg','5105',467,NULL),
('result','course_reg','5106',468,NULL),
('result','course_reg','5107',469,NULL),
('result','course_reg','5108',470,NULL),
('result','course_reg','5109',471,NULL),
('result','course_reg','5110',472,NULL),
('result','course_reg','5111',473,NULL),
('result','course_reg','5112',474,NULL),
('result','course_reg','5113',475,NULL),
('result','course_reg','5114',476,NULL),
('result','course_reg','5115',477,NULL),
('result','course_reg','5116',478,NULL),
('result','course_reg','5117',479,NULL),
('result','course_reg','5118',480,NULL),
('result','course_reg','5119',481,NULL),
('result','course_reg','5120',482,NULL),
('result','course_reg','5121',483,NULL),
('result','course_reg','5122',484,NULL),
('result','course_reg','5123',485,NULL),
('result','course_reg','5124',486,NULL),
('result','course_reg','5125',487,NULL),
('result','course_reg','5126',488,NULL),
('result','course_reg','5127',489,NULL);
INSERT INTO `legacy_mappings` (`entity_type`,`legacy_table`,`legacy_id`,`new_id`,`notes`) VALUES
('result','course_reg','5128',490,NULL),
('result','course_reg','5129',491,NULL),
('result','course_reg','5130',492,NULL),
('result','course_reg','5131',493,NULL),
('result','course_reg','5132',494,NULL),
('result','course_reg','5133',495,NULL),
('result','course_reg','5134',496,NULL),
('result','course_reg','5135',497,NULL),
('result','course_reg','5136',498,NULL),
('result','course_reg','5137',499,NULL),
('result','course_reg','5138',500,NULL),
('result','course_reg','5139',501,NULL),
('result','course_reg','5140',502,NULL),
('result','course_reg','5143',503,NULL),
('result','course_reg','5144',504,NULL),
('result','course_reg','5145',505,NULL),
('result','course_reg','5146',506,NULL),
('result','course_reg','5147',507,NULL),
('result','course_reg','5148',508,NULL),
('result','course_reg','5149',509,NULL),
('result','course_reg','5150',510,NULL),
('result','course_reg','5151',511,NULL),
('result','course_reg','5152',512,NULL),
('result','course_reg','5153',513,NULL),
('result','course_reg','5154',514,NULL),
('result','course_reg','5155',515,NULL),
('result','course_reg','5156',516,NULL),
('result','course_reg','5157',517,NULL),
('result','course_reg','5158',518,NULL),
('result','course_reg','5159',519,NULL),
('result','course_reg','5160',520,NULL),
('result','course_reg','5161',521,NULL),
('result','course_reg','5162',522,NULL),
('result','course_reg','5163',523,NULL),
('result','course_reg','5164',524,NULL),
('result','course_reg','5165',525,NULL),
('result','course_reg','5166',526,NULL),
('result','course_reg','5168',527,NULL),
('result','course_reg','5169',528,NULL),
('result','course_reg','5170',529,NULL),
('result','course_reg','5171',530,NULL),
('result','course_reg','5172',531,NULL),
('result','course_reg','5173',532,NULL),
('result','course_reg','5174',533,NULL),
('result','course_reg','5175',534,NULL),
('result','course_reg','5176',535,NULL),
('result','course_reg','5177',536,NULL),
('result','course_reg','5178',537,NULL),
('result','course_reg','5179',538,NULL),
('result','course_reg','5180',539,NULL),
('result','course_reg','5181',540,NULL),
('result','course_reg','5182',541,NULL),
('result','course_reg','5183',542,NULL),
('result','course_reg','5184',543,NULL),
('result','course_reg','5186',544,NULL),
('result','course_reg','5187',545,NULL),
('result','course_reg','5188',546,NULL),
('result','course_reg','5189',547,NULL),
('result','course_reg','5190',548,NULL),
('result','course_reg','5192',549,NULL),
('result','course_reg','5193',550,NULL),
('result','course_reg','5194',551,NULL),
('result','course_reg','5195',552,NULL),
('result','course_reg','5196',553,NULL),
('result','course_reg','5197',554,NULL),
('result','course_reg','5198',555,NULL),
('result','course_reg','5199',556,NULL),
('result','course_reg','5200',557,NULL),
('result','course_reg','5201',558,NULL),
('result','course_reg','5202',559,NULL),
('result','course_reg','5203',560,NULL),
('result','course_reg','5204',561,NULL),
('result','course_reg','5205',562,NULL),
('result','course_reg','5206',563,NULL),
('result','course_reg','5207',564,NULL),
('result','course_reg','5208',565,NULL),
('result','course_reg','5209',566,NULL),
('result','course_reg','5210',567,NULL),
('result','course_reg','5211',568,NULL),
('result','course_reg','5212',569,NULL),
('result','course_reg','5213',570,NULL),
('result','course_reg','5214',571,NULL),
('result','course_reg','5215',572,NULL),
('result','course_reg','5216',573,NULL),
('result','course_reg','5217',574,NULL),
('result','course_reg','5218',575,NULL),
('result','course_reg','5219',576,NULL),
('result','course_reg','5220',577,NULL),
('result','course_reg','5221',578,NULL),
('result','course_reg','5222',579,NULL),
('result','course_reg','5223',580,NULL),
('result','course_reg','5224',581,NULL),
('result','course_reg','5225',582,NULL),
('result','course_reg','5226',583,NULL),
('result','course_reg','5227',584,NULL),
('result','course_reg','5228',585,NULL),
('result','course_reg','5229',586,NULL),
('result','course_reg','5231',587,NULL),
('result','course_reg','5232',588,NULL),
('result','course_reg','5234',589,NULL),
('result','course_reg','5235',590,NULL),
('result','course_reg','5236',591,NULL),
('result','course_reg','5237',592,NULL),
('result','course_reg','5238',593,NULL),
('result','course_reg','5239',594,NULL),
('result','course_reg','5240',595,NULL),
('result','course_reg','5241',596,NULL),
('result','course_reg','5242',597,NULL),
('result','course_reg','5243',598,NULL),
('result','course_reg','5244',599,NULL),
('result','course_reg','5245',600,NULL),
('result','course_reg','5246',601,NULL),
('result','course_reg','5247',602,NULL),
('result','course_reg','5248',603,NULL),
('result','course_reg','5249',604,NULL),
('result','course_reg','5250',605,NULL),
('result','course_reg','5251',606,NULL),
('result','course_reg','5252',607,NULL),
('result','course_reg','5253',608,NULL),
('result','course_reg','5254',609,NULL),
('result','course_reg','5255',610,NULL),
('result','course_reg','5256',611,NULL),
('result','course_reg','5257',612,NULL),
('result','course_reg','5258',613,NULL),
('result','course_reg','5259',614,NULL),
('result','course_reg','5260',615,NULL),
('result','course_reg','5261',616,NULL),
('result','course_reg','5262',617,NULL),
('result','course_reg','5263',618,NULL),
('result','course_reg','5264',619,NULL),
('result','course_reg','5265',620,NULL),
('result','course_reg','5266',621,NULL),
('result','course_reg','5267',622,NULL),
('result','course_reg','5269',623,NULL),
('result','course_reg','5270',624,NULL),
('result','course_reg','5271',625,NULL),
('result','course_reg','5272',626,NULL),
('result','course_reg','5273',627,NULL),
('result','course_reg','5274',628,NULL),
('result','course_reg','5275',629,NULL),
('result','course_reg','5276',630,NULL),
('result','course_reg','5277',631,NULL),
('result','course_reg','5278',632,NULL),
('result','course_reg','5279',633,NULL),
('result','course_reg','5280',634,NULL),
('result','course_reg','5281',635,NULL),
('result','course_reg','5282',636,NULL),
('result','course_reg','5283',637,NULL),
('result','course_reg','5284',638,NULL),
('result','course_reg','5285',639,NULL),
('result','course_reg','5286',640,NULL),
('result','course_reg','5287',641,NULL),
('result','course_reg','5288',642,NULL),
('result','course_reg','5289',643,NULL),
('result','course_reg','5290',644,NULL),
('result','course_reg','5291',645,NULL),
('result','course_reg','5292',646,NULL),
('result','course_reg','5293',647,NULL),
('result','course_reg','5295',648,NULL),
('result','course_reg','5296',649,NULL),
('result','course_reg','5298',650,NULL),
('result','course_reg','5299',651,NULL),
('result','course_reg','5300',652,NULL),
('result','course_reg','5301',653,NULL),
('result','course_reg','5302',654,NULL),
('result','course_reg','5303',655,NULL),
('result','course_reg','5304',656,NULL),
('result','course_reg','5305',657,NULL),
('result','course_reg','5306',658,NULL),
('result','course_reg','5308',659,NULL),
('result','course_reg','5309',660,NULL),
('result','course_reg','5311',661,NULL),
('result','course_reg','5312',662,NULL),
('result','course_reg','5313',663,NULL),
('result','course_reg','5314',664,NULL),
('result','course_reg','5315',665,NULL),
('result','course_reg','5316',666,NULL),
('result','course_reg','5317',667,NULL),
('result','course_reg','5318',668,NULL),
('result','course_reg','5319',669,NULL),
('result','course_reg','5320',670,NULL),
('result','course_reg','5321',671,NULL),
('result','course_reg','5322',672,NULL),
('result','course_reg','5323',673,NULL),
('result','course_reg','5324',674,NULL),
('result','course_reg','5325',675,NULL),
('result','course_reg','5326',676,NULL),
('result','course_reg','5327',677,NULL),
('result','course_reg','5328',678,NULL),
('result','course_reg','5329',679,NULL),
('result','course_reg','5330',680,NULL),
('result','course_reg','5331',681,NULL),
('result','course_reg','5332',682,NULL),
('result','course_reg','5333',683,NULL),
('result','course_reg','5334',684,NULL),
('result','course_reg','5335',685,NULL),
('result','course_reg','5336',686,NULL),
('result','course_reg','5337',687,NULL),
('result','course_reg','5338',688,NULL),
('result','course_reg','5339',689,NULL),
('result','course_reg','5340',690,NULL),
('result','course_reg','5341',691,NULL),
('result','course_reg','5342',692,NULL),
('result','course_reg','5343',693,NULL),
('result','course_reg','5344',694,NULL),
('result','course_reg','5345',695,NULL),
('result','course_reg','5346',696,NULL),
('result','course_reg','5347',697,NULL),
('result','course_reg','5348',698,NULL),
('result','course_reg','5349',699,NULL),
('result','course_reg','5350',700,NULL),
('result','course_reg','5351',701,NULL),
('result','course_reg','5352',702,NULL),
('result','course_reg','5353',703,NULL),
('result','course_reg','5354',704,NULL),
('result','course_reg','5355',705,NULL),
('result','course_reg','5356',706,NULL),
('result','course_reg','5357',707,NULL),
('result','course_reg','5358',708,NULL),
('result','course_reg','5359',709,NULL),
('result','course_reg','5360',710,NULL),
('result','course_reg','5361',711,NULL),
('result','course_reg','5362',712,NULL),
('result','course_reg','5363',713,NULL),
('result','course_reg','5364',714,NULL),
('result','course_reg','5365',715,NULL),
('result','course_reg','5366',716,NULL),
('result','course_reg','5367',717,NULL),
('result','course_reg','5368',718,NULL),
('result','course_reg','5369',719,NULL),
('result','course_reg','5370',720,NULL),
('result','course_reg','5371',721,NULL),
('result','course_reg','5372',722,NULL),
('result','course_reg','5373',723,NULL),
('result','course_reg','5374',724,NULL),
('result','course_reg','5375',725,NULL),
('result','course_reg','5376',726,NULL),
('result','course_reg','5377',727,NULL),
('result','course_reg','5378',728,NULL),
('result','course_reg','5379',729,NULL),
('result','course_reg','5380',730,NULL),
('result','course_reg','5381',731,NULL),
('result','course_reg','5382',732,NULL),
('result','course_reg','5383',733,NULL),
('result','course_reg','5388',734,NULL),
('result','course_reg','5389',735,NULL),
('result','course_reg','5390',736,NULL),
('result','course_reg','5391',737,NULL),
('result','course_reg','5392',738,NULL),
('result','course_reg','5393',739,NULL);
INSERT INTO `legacy_mappings` (`entity_type`,`legacy_table`,`legacy_id`,`new_id`,`notes`) VALUES
('result','course_reg','5395',740,NULL),
('result','course_reg','5396',741,NULL),
('result','course_reg','5397',742,NULL),
('result','course_reg','5398',743,NULL),
('result','course_reg','5399',744,NULL),
('result','course_reg','5400',745,NULL),
('result','course_reg','5401',746,NULL),
('result','course_reg','5402',747,NULL),
('result','course_reg','5403',748,NULL),
('result','course_reg','5404',749,NULL),
('result','course_reg','5405',750,NULL),
('result','course_reg','5406',751,NULL),
('result','course_reg','5407',752,NULL),
('result','course_reg','5408',753,NULL),
('result','course_reg','5409',754,NULL),
('result','course_reg','5410',755,NULL),
('result','course_reg','5411',756,NULL),
('result','course_reg','5412',757,NULL),
('result','course_reg','5413',758,NULL),
('result','course_reg','5414',759,NULL),
('result','course_reg','5415',760,NULL),
('result','course_reg','5416',761,NULL),
('result','course_reg','5417',762,NULL),
('result','course_reg','5418',763,NULL),
('result','course_reg','5419',764,NULL),
('result','course_reg','5420',765,NULL),
('result','course_reg','5421',766,NULL),
('result','course_reg','5422',767,NULL),
('result','course_reg','5423',768,NULL),
('result','course_reg','5424',769,NULL),
('result','course_reg','5425',770,NULL),
('result','course_reg','5426',771,NULL),
('result','course_reg','5427',772,NULL),
('result','course_reg','5429',773,NULL),
('result','course_reg','5430',774,NULL),
('result','course_reg','5431',775,NULL),
('result','course_reg','5432',776,NULL),
('result','course_reg','5433',777,NULL),
('result','course_reg','5434',778,NULL),
('result','course_reg','5435',779,NULL),
('result','course_reg','5436',780,NULL),
('result','course_reg','5437',781,NULL),
('result','course_reg','5438',782,NULL),
('result','course_reg','5439',783,NULL),
('result','course_reg','5440',784,NULL),
('result','course_reg','5441',785,NULL),
('result','course_reg','5442',786,NULL),
('result','course_reg','5443',787,NULL),
('result','course_reg','5444',788,NULL),
('result','course_reg','5445',789,NULL),
('result','course_reg','5446',790,NULL),
('result','course_reg','5447',791,NULL),
('result','course_reg','5449',792,NULL),
('result','course_reg','5450',793,NULL),
('result','course_reg','5451',794,NULL),
('result','course_reg','5452',795,NULL),
('result','course_reg','5453',796,NULL),
('result','course_reg','5455',797,NULL),
('result','course_reg','5456',798,NULL),
('result','course_reg','5457',799,NULL),
('result','course_reg','5458',800,NULL),
('result','course_reg','5459',801,NULL),
('result','course_reg','5460',802,NULL),
('result','course_reg','5461',803,NULL),
('result','course_reg','5462',804,NULL),
('result','course_reg','5463',805,NULL),
('result','course_reg','5464',806,NULL),
('result','course_reg','5465',807,NULL),
('result','course_reg','5466',808,NULL),
('result','course_reg','5467',809,NULL),
('result','course_reg','5468',810,NULL),
('result','course_reg','5469',811,NULL),
('result','course_reg','5470',812,NULL),
('result','course_reg','5471',813,NULL),
('result','course_reg','5472',814,NULL),
('result','course_reg','5474',815,NULL),
('result','course_reg','5475',816,NULL),
('result','course_reg','5476',817,NULL),
('result','course_reg','5477',818,NULL),
('result','course_reg','5478',819,NULL),
('result','course_reg','5479',820,NULL),
('result','course_reg','5480',821,NULL),
('result','course_reg','5481',822,NULL),
('result','course_reg','5482',823,NULL),
('result','course_reg','5483',824,NULL),
('result','course_reg','5484',825,NULL),
('result','course_reg','5485',826,NULL),
('result','course_reg','5486',827,NULL),
('result','course_reg','5487',828,NULL),
('result','course_reg','5488',829,NULL),
('result','course_reg','5489',830,NULL),
('result','course_reg','5490',831,NULL),
('result','course_reg','5491',832,NULL),
('result','course_reg','5492',833,NULL),
('result','course_reg','5493',834,NULL),
('result','course_reg','5494',835,NULL),
('result','course_reg','5495',836,NULL),
('result','course_reg','5496',837,NULL),
('result','course_reg','5497',838,NULL),
('result','course_reg','5498',839,NULL),
('result','course_reg','5499',840,NULL),
('result','course_reg','5500',841,NULL),
('result','course_reg','5501',842,NULL),
('result','course_reg','5502',843,NULL),
('result','course_reg','5503',844,NULL),
('result','course_reg','5504',845,NULL),
('result','course_reg','5505',846,NULL),
('result','course_reg','5506',847,NULL),
('result','course_reg','5507',848,NULL),
('result','course_reg','5508',849,NULL),
('result','course_reg','5509',850,NULL),
('result','course_reg','5510',851,NULL),
('result','course_reg','5511',852,NULL),
('result','course_reg','5512',853,NULL),
('result','course_reg','5513',854,NULL),
('result','course_reg','5514',855,NULL),
('result','course_reg','5515',856,NULL),
('result','course_reg','5516',857,NULL),
('result','course_reg','5517',858,NULL),
('result','course_reg','5518',859,NULL),
('result','course_reg','5519',860,NULL),
('result','course_reg','5520',861,NULL),
('result','course_reg','5521',862,NULL),
('result','course_reg','5522',863,NULL),
('result','course_reg','5531',864,NULL),
('result','course_reg','5533',865,NULL),
('result','course_reg','5536',866,NULL),
('result','course_reg','5538',867,NULL),
('result','course_reg','5539',868,NULL),
('result','course_reg','5540',869,NULL),
('result','course_reg','5541',870,NULL),
('result','course_reg','5542',871,NULL),
('result','course_reg','5543',872,NULL),
('result','course_reg','5544',873,NULL),
('result','course_reg','5545',874,NULL),
('result','course_reg','5546',875,NULL),
('result','course_reg','5547',876,NULL),
('result','course_reg','5548',877,NULL),
('result','course_reg','5549',878,NULL),
('result','course_reg','5550',879,NULL),
('result','course_reg','5551',880,NULL),
('result','course_reg','5552',881,NULL),
('result','course_reg','5553',882,NULL),
('result','course_reg','5554',883,NULL),
('result','course_reg','5555',884,NULL),
('result','course_reg','5556',885,NULL),
('result','course_reg','5557',886,NULL),
('result','course_reg','5558',887,NULL),
('result','course_reg','5559',888,NULL),
('result','course_reg','5560',889,NULL),
('result','course_reg','5561',890,NULL),
('result','course_reg','5562',891,NULL),
('result','course_reg','5563',892,NULL),
('result','course_reg','5564',893,NULL),
('result','course_reg','5565',894,NULL),
('result','course_reg','5567',895,NULL),
('result','course_reg','5568',896,NULL),
('result','course_reg','5569',897,NULL),
('result','course_reg','5570',898,NULL),
('result','course_reg','5571',899,NULL),
('result','course_reg','5572',900,NULL),
('result','course_reg','5574',901,NULL),
('result','course_reg','5575',902,NULL),
('result','course_reg','5576',903,NULL),
('result','course_reg','5577',904,NULL),
('result','course_reg','5578',905,NULL),
('result','course_reg','5579',906,NULL),
('result','course_reg','5580',907,NULL),
('result','course_reg','5581',908,NULL),
('result','course_reg','5582',909,NULL),
('result','course_reg','5584',910,NULL),
('result','course_reg','5585',911,NULL),
('result','course_reg','5586',912,NULL),
('result','course_reg','5587',913,NULL),
('result','course_reg','5588',914,NULL),
('result','course_reg','5589',915,NULL),
('result','course_reg','5590',916,NULL),
('result','course_reg','5591',917,NULL),
('result','course_reg','5592',918,NULL),
('result','course_reg','5593',919,NULL),
('result','course_reg','5594',920,NULL),
('result','course_reg','5595',921,NULL),
('result','course_reg','5596',922,NULL),
('result','course_reg','5597',923,NULL),
('result','course_reg','5598',924,NULL),
('result','course_reg','5599',925,NULL),
('result','course_reg','5600',926,NULL),
('result','course_reg','5603',927,NULL),
('result','course_reg','5604',928,NULL),
('result','course_reg','5606',929,NULL),
('result','course_reg','5607',930,NULL),
('result','course_reg','5608',931,NULL),
('result','course_reg','5610',932,NULL),
('result','course_reg','5612',933,NULL),
('result','course_reg','5613',934,NULL),
('result','course_reg','5614',935,NULL),
('result','course_reg','5615',936,NULL),
('result','course_reg','5616',937,NULL),
('result','course_reg','5617',938,NULL),
('result','course_reg','5619',939,NULL),
('result','course_reg','5620',940,NULL),
('result','course_reg','5621',941,NULL),
('result','course_reg','5622',942,NULL),
('result','course_reg','5623',943,NULL),
('result','course_reg','5624',944,NULL),
('result','course_reg','5625',945,NULL),
('result','course_reg','5626',946,NULL),
('result','course_reg','5627',947,NULL),
('result','course_reg','5628',948,NULL),
('result','course_reg','5629',949,NULL),
('result','course_reg','5631',950,NULL),
('result','course_reg','5632',951,NULL),
('result','course_reg','5633',952,NULL),
('result','course_reg','5634',953,NULL),
('result','course_reg','5635',954,NULL),
('result','course_reg','5636',955,NULL),
('result','course_reg','5637',956,NULL),
('result','course_reg','5638',957,NULL),
('result','course_reg','5639',958,NULL),
('result','course_reg','5640',959,NULL),
('result','course_reg','5641',960,NULL),
('result','course_reg','5643',961,NULL),
('result','course_reg','5644',962,NULL),
('result','course_reg','5645',963,NULL),
('result','course_reg','5646',964,NULL),
('result','course_reg','5648',965,NULL),
('result','course_reg','5649',966,NULL),
('result','course_reg','5650',967,NULL),
('result','course_reg','5651',968,NULL),
('result','course_reg','5652',969,NULL),
('result','course_reg','5653',970,NULL),
('result','course_reg','5655',971,NULL),
('result','course_reg','5656',972,NULL),
('result','course_reg','5657',973,NULL),
('result','course_reg','5658',974,NULL),
('result','course_reg','5659',975,NULL),
('result','course_reg','5660',976,NULL),
('result','course_reg','5661',977,NULL),
('result','course_reg','5662',978,NULL),
('result','course_reg','5663',979,NULL),
('result','course_reg','5664',980,NULL),
('result','course_reg','5665',981,NULL),
('result','course_reg','5666',982,NULL),
('result','course_reg','5667',983,NULL),
('result','course_reg','5668',984,NULL),
('result','course_reg','5669',985,NULL),
('result','course_reg','5670',986,NULL),
('result','course_reg','5671',987,NULL),
('result','course_reg','5672',988,NULL),
('result','course_reg','5673',989,NULL);
INSERT INTO `legacy_mappings` (`entity_type`,`legacy_table`,`legacy_id`,`new_id`,`notes`) VALUES
('result','course_reg','5674',990,NULL),
('result','course_reg','5675',991,NULL),
('result','course_reg','5676',992,NULL),
('result','course_reg','5677',993,NULL),
('result','course_reg','5678',994,NULL),
('result','course_reg','5680',995,NULL),
('result','course_reg','5681',996,NULL),
('result','course_reg','5682',997,NULL),
('result','course_reg','5683',998,NULL),
('result','course_reg','5684',999,NULL),
('result','course_reg','5685',1000,NULL),
('result','course_reg','5686',1001,NULL),
('result','course_reg','5687',1002,NULL),
('result','course_reg','5688',1003,NULL),
('result','course_reg','5689',1004,NULL),
('result','course_reg','5690',1005,NULL),
('result','course_reg','5691',1006,NULL),
('result','course_reg','5692',1007,NULL),
('result','course_reg','5693',1008,NULL),
('result','course_reg','5694',1009,NULL),
('result','course_reg','5695',1010,NULL),
('result','course_reg','5696',1011,NULL),
('result','course_reg','5697',1012,NULL),
('result','course_reg','5698',1013,NULL),
('result','course_reg','5699',1014,NULL),
('result','course_reg','5700',1015,NULL),
('result','course_reg','5702',1016,NULL),
('result','course_reg','5703',1017,NULL),
('result','course_reg','5704',1018,NULL),
('result','course_reg','5705',1019,NULL),
('result','course_reg','5706',1020,NULL),
('result','course_reg','5707',1021,NULL),
('result','course_reg','5708',1022,NULL),
('result','course_reg','5709',1023,NULL),
('result','course_reg','5710',1024,NULL),
('result','course_reg','5711',1025,NULL),
('result','course_reg','5712',1026,NULL),
('result','course_reg','5713',1027,NULL),
('result','course_reg','5714',1028,NULL),
('result','course_reg','5715',1029,NULL),
('result','course_reg','5716',1030,NULL),
('result','course_reg','5717',1031,NULL),
('result','course_reg','5718',1032,NULL),
('result','course_reg','5719',1033,NULL),
('result','course_reg','5720',1034,NULL),
('result','course_reg','5721',1035,NULL),
('result','course_reg','5722',1036,NULL),
('result','course_reg','5724',1037,NULL),
('result','course_reg','5725',1038,NULL),
('result','course_reg','5726',1039,NULL),
('result','course_reg','5727',1040,NULL),
('result','course_reg','5728',1041,NULL),
('result','course_reg','5729',1042,NULL),
('result','course_reg','5730',1043,NULL),
('result','course_reg','5731',1044,NULL),
('result','course_reg','5732',1045,NULL),
('result','course_reg','5733',1046,NULL),
('result','course_reg','5734',1047,NULL),
('result','course_reg','5735',1048,NULL),
('result','course_reg','5736',1049,NULL),
('result','course_reg','5737',1050,NULL),
('result','course_reg','5738',1051,NULL),
('result','course_reg','5739',1052,NULL),
('result','course_reg','5741',1053,NULL),
('result','course_reg','5743',1054,NULL),
('result','course_reg','5744',1055,NULL),
('result','course_reg','5745',1056,NULL),
('result','course_reg','5746',1057,NULL),
('result','course_reg','5747',1058,NULL),
('result','course_reg','5748',1059,NULL),
('result','course_reg','5749',1060,NULL),
('result','course_reg','5750',1061,NULL),
('result','course_reg','5751',1062,NULL),
('result','course_reg','5752',1063,NULL),
('result','course_reg','5753',1064,NULL),
('result','course_reg','5754',1065,NULL),
('result','course_reg','5755',1066,NULL),
('result','course_reg','5756',1067,NULL),
('result','course_reg','5757',1068,NULL),
('result','course_reg','5758',1069,NULL),
('result','course_reg','5759',1070,NULL),
('result','course_reg','5760',1071,NULL),
('result','course_reg','5761',1072,NULL),
('result','course_reg','5762',1073,NULL),
('result','course_reg','5763',1074,NULL),
('result','course_reg','5764',1075,NULL),
('result','course_reg','5772',1076,NULL),
('result','course_reg','5774',1077,NULL),
('result','course_reg','5775',1078,NULL),
('result','course_reg','5776',1079,NULL),
('result','course_reg','5777',1080,NULL),
('result','course_reg','5778',1081,NULL),
('result','course_reg','5779',1082,NULL),
('result','course_reg','5780',1083,NULL),
('result','course_reg','5781',1084,NULL),
('result','course_reg','5782',1085,NULL),
('result','course_reg','5783',1086,NULL),
('result','course_reg','5785',1087,NULL),
('result','course_reg','5786',1088,NULL),
('result','course_reg','5787',1089,NULL),
('result','course_reg','5788',1090,NULL),
('result','course_reg','5789',1091,NULL),
('result','course_reg','5790',1092,NULL),
('result','course_reg','5791',1093,NULL),
('result','course_reg','5792',1094,NULL),
('result','course_reg','5793',1095,NULL),
('result','course_reg','5794',1096,NULL),
('result','course_reg','5795',1097,NULL),
('result','course_reg','5796',1098,NULL),
('result','course_reg','5797',1099,NULL),
('result','course_reg','5798',1100,NULL),
('result','course_reg','5799',1101,NULL),
('result','course_reg','5800',1102,NULL),
('result','course_reg','5801',1103,NULL),
('result','course_reg','5802',1104,NULL),
('result','course_reg','5803',1105,NULL),
('result','course_reg','5804',1106,NULL),
('result','course_reg','5805',1107,NULL),
('result','course_reg','5806',1108,NULL),
('result','course_reg','5807',1109,NULL),
('result','course_reg','5808',1110,NULL),
('result','course_reg','5809',1111,NULL),
('result','course_reg','5810',1112,NULL),
('result','course_reg','5811',1113,NULL),
('result','course_reg','5812',1114,NULL),
('result','course_reg','5813',1115,NULL),
('result','course_reg','5814',1116,NULL),
('result','course_reg','5815',1117,NULL),
('result','course_reg','5816',1118,NULL),
('result','course_reg','5817',1119,NULL),
('result','course_reg','5818',1120,NULL),
('result','course_reg','5819',1121,NULL),
('result','course_reg','5820',1122,NULL),
('result','course_reg','5821',1123,NULL),
('result','course_reg','5822',1124,NULL),
('result','course_reg','5823',1125,NULL),
('result','course_reg','5824',1126,NULL),
('result','course_reg','5826',1127,NULL),
('result','course_reg','5827',1128,NULL),
('result','course_reg','5828',1129,NULL),
('result','course_reg','5829',1130,NULL),
('result','course_reg','5830',1131,NULL),
('result','course_reg','5831',1132,NULL),
('result','course_reg','5832',1133,NULL),
('result','course_reg','5833',1134,NULL),
('result','course_reg','5834',1135,NULL),
('result','course_reg','5835',1136,NULL),
('result','course_reg','5836',1137,NULL),
('result','course_reg','5837',1138,NULL),
('result','course_reg','5838',1139,NULL),
('result','course_reg','5839',1140,NULL),
('result','course_reg','5840',1141,NULL),
('result','course_reg','5841',1142,NULL),
('result','course_reg','5842',1143,NULL),
('result','course_reg','5843',1144,NULL),
('result','course_reg','5844',1145,NULL),
('result','course_reg','5845',1146,NULL),
('result','course_reg','5846',1147,NULL),
('result','course_reg','5847',1148,NULL),
('result','course_reg','5848',1149,NULL),
('result','course_reg','5849',1150,NULL),
('result','course_reg','5855',1151,NULL),
('result','course_reg','5856',1152,NULL),
('result','course_reg','5857',1153,NULL),
('result','course_reg','5858',1154,NULL),
('result','course_reg','5859',1155,NULL),
('result','course_reg','5860',1156,NULL),
('result','course_reg','5861',1157,NULL),
('result','course_reg','5862',1158,NULL),
('result','course_reg','5863',1159,NULL),
('result','course_reg','5864',1160,NULL),
('result','course_reg','5865',1161,NULL),
('result','course_reg','5866',1162,NULL),
('result','course_reg','5867',1163,NULL),
('result','course_reg','5868',1164,NULL),
('result','course_reg','5869',1165,NULL),
('result','course_reg','5870',1166,NULL),
('result','course_reg','5871',1167,NULL),
('result','course_reg','5872',1168,NULL),
('result','course_reg','5873',1169,NULL),
('result','course_reg','5874',1170,NULL),
('result','course_reg','5875',1171,NULL),
('result','course_reg','5876',1172,NULL),
('result','course_reg','5877',1173,NULL),
('result','course_reg','5878',1174,NULL),
('result','course_reg','5879',1175,NULL),
('result','course_reg','5880',1176,NULL),
('result','course_reg','5882',1177,NULL),
('result','course_reg','5883',1178,NULL),
('result','course_reg','5884',1179,NULL),
('result','course_reg','5885',1180,NULL),
('result','course_reg','5886',1181,NULL),
('result','course_reg','5887',1182,NULL),
('result','course_reg','5888',1183,NULL),
('result','course_reg','5889',1184,NULL),
('result','course_reg','5890',1185,NULL),
('result','course_reg','5891',1186,NULL),
('result','course_reg','5892',1187,NULL),
('result','course_reg','5893',1188,NULL),
('result','course_reg','5894',1189,NULL),
('result','course_reg','5895',1190,NULL),
('result','course_reg','5896',1191,NULL),
('result','course_reg','5898',1192,NULL),
('result','course_reg','5899',1193,NULL),
('result','course_reg','5900',1194,NULL),
('result','course_reg','5901',1195,NULL),
('result','course_reg','5902',1196,NULL),
('result','course_reg','5903',1197,NULL),
('result','course_reg','5904',1198,NULL),
('result','course_reg','5905',1199,NULL),
('result','course_reg','5906',1200,NULL),
('result','course_reg','5907',1201,NULL),
('result','course_reg','5908',1202,NULL),
('result','course_reg','5909',1203,NULL),
('result','course_reg','5910',1204,NULL),
('result','course_reg','5911',1205,NULL),
('result','course_reg','5912',1206,NULL),
('result','course_reg','5913',1207,NULL),
('result','course_reg','5914',1208,NULL),
('result','course_reg','5915',1209,NULL),
('result','course_reg','5916',1210,NULL),
('result','course_reg','5917',1211,NULL),
('result','course_reg','5918',1212,NULL),
('result','course_reg','5919',1213,NULL),
('result','course_reg','5920',1214,NULL),
('result','course_reg','5921',1215,NULL),
('result','course_reg','5922',1216,NULL),
('result','course_reg','5923',1217,NULL),
('result','course_reg','5924',1218,NULL),
('result','course_reg','5925',1219,NULL),
('result','course_reg','5926',1220,NULL),
('result','course_reg','5927',1221,NULL),
('result','course_reg','5928',1222,NULL),
('result','course_reg','5929',1223,NULL),
('result','course_reg','5930',1224,NULL),
('result','course_reg','5931',1225,NULL),
('result','course_reg','5932',1226,NULL),
('result','course_reg','5933',1227,NULL),
('result','course_reg','5934',1228,NULL),
('result','course_reg','5935',1229,NULL),
('result','course_reg','5936',1230,NULL),
('result','course_reg','5937',1231,NULL),
('result','course_reg','5938',1232,NULL),
('result','course_reg','5939',1233,NULL),
('result','course_reg','5941',1234,NULL),
('result','course_reg','5942',1235,NULL),
('result','course_reg','5943',1236,NULL),
('result','course_reg','5944',1237,NULL),
('result','course_reg','5945',1238,NULL),
('result','course_reg','5947',1239,NULL);
INSERT INTO `legacy_mappings` (`entity_type`,`legacy_table`,`legacy_id`,`new_id`,`notes`) VALUES
('result','course_reg','5948',1240,NULL),
('result','course_reg','5949',1241,NULL),
('result','course_reg','5950',1242,NULL),
('result','course_reg','5951',1243,NULL),
('result','course_reg','5952',1244,NULL),
('result','course_reg','5953',1245,NULL),
('result','course_reg','5954',1246,NULL),
('result','course_reg','5955',1247,NULL),
('result','course_reg','5956',1248,NULL),
('result','course_reg','5957',1249,NULL),
('result','course_reg','5958',1250,NULL),
('result','course_reg','5959',1251,NULL),
('result','course_reg','5960',1252,NULL),
('result','course_reg','5961',1253,NULL),
('result','course_reg','5962',1254,NULL),
('result','course_reg','5963',1255,NULL),
('result','course_reg','5965',1256,NULL),
('result','course_reg','5966',1257,NULL),
('result','course_reg','5967',1258,NULL),
('result','course_reg','5968',1259,NULL),
('result','course_reg','5969',1260,NULL),
('result','course_reg','5970',1261,NULL),
('result','course_reg','5971',1262,NULL),
('result','course_reg','5972',1263,NULL),
('result','course_reg','5973',1264,NULL),
('result','course_reg','5974',1265,NULL),
('result','course_reg','5975',1266,NULL),
('result','course_reg','5976',1267,NULL),
('result','course_reg','5978',1268,NULL),
('result','course_reg','5979',1269,NULL),
('result','course_reg','5980',1270,NULL),
('result','course_reg','5981',1271,NULL),
('result','course_reg','5982',1272,NULL),
('result','course_reg','5983',1273,NULL),
('result','course_reg','5984',1274,NULL),
('result','course_reg','5985',1275,NULL),
('result','course_reg','5986',1276,NULL),
('result','course_reg','5987',1277,NULL),
('result','course_reg','5988',1278,NULL),
('result','course_reg','5989',1279,NULL),
('result','course_reg','5990',1280,NULL),
('result','course_reg','5991',1281,NULL),
('result','course_reg','5992',1282,NULL),
('result','course_reg','5993',1283,NULL),
('result','course_reg','5995',1284,NULL),
('result','course_reg','5996',1285,NULL),
('result','course_reg','5997',1286,NULL),
('result','course_reg','5998',1287,NULL),
('result','course_reg','5999',1288,NULL),
('result','course_reg','6000',1289,NULL),
('result','course_reg','6001',1290,NULL),
('result','course_reg','6002',1291,NULL),
('result','course_reg','6003',1292,NULL),
('result','course_reg','6004',1293,NULL),
('result','course_reg','6005',1294,NULL),
('result','course_reg','6006',1295,NULL),
('result','course_reg','6007',1296,NULL),
('result','course_reg','6008',1297,NULL),
('result','course_reg','6009',1298,NULL),
('result','course_reg','6010',1299,NULL),
('result','course_reg','6011',1300,NULL),
('result','course_reg','6012',1301,NULL),
('result','course_reg','6013',1302,NULL),
('result','course_reg','6014',1303,NULL),
('result','course_reg','6015',1304,NULL),
('result','course_reg','6016',1305,NULL),
('result','course_reg','6017',1306,NULL),
('result','course_reg','6018',1307,NULL),
('result','course_reg','6019',1308,NULL),
('result','course_reg','6020',1309,NULL),
('result','course_reg','6021',1310,NULL),
('result','course_reg','6022',1311,NULL),
('result','course_reg','6023',1312,NULL),
('result','course_reg','6025',1313,NULL),
('result','course_reg','6026',1314,NULL),
('result','course_reg','6027',1315,NULL),
('result','course_reg','6028',1316,NULL),
('result','course_reg','6029',1317,NULL),
('result','course_reg','6030',1318,NULL),
('result','course_reg','6031',1319,NULL),
('result','course_reg','6032',1320,NULL),
('result','course_reg','6033',1321,NULL),
('result','course_reg','6035',1322,NULL),
('result','course_reg','6036',1323,NULL),
('result','course_reg','6037',1324,NULL),
('result','course_reg','6038',1325,NULL),
('result','course_reg','6039',1326,NULL),
('result','course_reg','6040',1327,NULL),
('result','course_reg','6041',1328,NULL),
('result','course_reg','6042',1329,NULL),
('result','course_reg','6043',1330,NULL),
('result','course_reg','6044',1331,NULL),
('result','course_reg','6045',1332,NULL),
('result','course_reg','6046',1333,NULL),
('result','course_reg','6047',1334,NULL),
('result','course_reg','6048',1335,NULL),
('result','course_reg','6049',1336,NULL),
('result','course_reg','6050',1337,NULL),
('result','course_reg','6051',1338,NULL),
('result','course_reg','6052',1339,NULL),
('result','course_reg','6053',1340,NULL),
('result','course_reg','6054',1341,NULL),
('result','course_reg','6055',1342,NULL),
('result','course_reg','6056',1343,NULL),
('result','course_reg','6057',1344,NULL),
('result','course_reg','6058',1345,NULL),
('result','course_reg','6059',1346,NULL),
('result','course_reg','6060',1347,NULL),
('result','course_reg','6061',1348,NULL),
('result','course_reg','6062',1349,NULL),
('result','course_reg','6063',1350,NULL),
('result','course_reg','6064',1351,NULL),
('result','course_reg','6065',1352,NULL),
('result','course_reg','6066',1353,NULL),
('result','course_reg','6067',1354,NULL),
('result','course_reg','6069',1355,NULL),
('result','course_reg','6070',1356,NULL),
('result','course_reg','6071',1357,NULL),
('result','course_reg','6072',1358,NULL),
('result','course_reg','6073',1359,NULL),
('result','course_reg','6074',1360,NULL),
('result','course_reg','6075',1361,NULL),
('result','course_reg','6076',1362,NULL),
('result','course_reg','6077',1363,NULL),
('result','course_reg','6078',1364,NULL),
('result','course_reg','6079',1365,NULL),
('result','course_reg','6080',1366,NULL),
('result','course_reg','6081',1367,NULL),
('result','course_reg','6082',1368,NULL),
('result','course_reg','6083',1369,NULL),
('result','course_reg','6084',1370,NULL),
('result','course_reg','6085',1371,NULL),
('result','course_reg','6086',1372,NULL),
('result','course_reg','6087',1373,NULL),
('result','course_reg','6088',1374,NULL),
('result','course_reg','6089',1375,NULL),
('result','course_reg','6090',1376,NULL),
('result','course_reg','6091',1377,NULL),
('result','course_reg','6092',1378,NULL),
('result','course_reg','6093',1379,NULL),
('result','course_reg','6094',1380,NULL),
('result','course_reg','6095',1381,NULL),
('result','course_reg','6096',1382,NULL),
('result','course_reg','6097',1383,NULL),
('result','course_reg','6098',1384,NULL),
('result','course_reg','6099',1385,NULL),
('result','course_reg','6100',1386,NULL),
('result','course_reg','6101',1387,NULL),
('result','course_reg','6102',1388,NULL),
('result','course_reg','6103',1389,NULL),
('result','course_reg','6104',1390,NULL),
('result','course_reg','6105',1391,NULL),
('result','course_reg','6106',1392,NULL),
('result','course_reg','6107',1393,NULL),
('result','course_reg','6108',1394,NULL),
('result','course_reg','6109',1395,NULL),
('result','course_reg','6110',1396,NULL),
('result','course_reg','6111',1397,NULL),
('result','course_reg','6112',1398,NULL),
('result','course_reg','6113',1399,NULL),
('result','course_reg','6114',1400,NULL),
('result','course_reg','6115',1401,NULL),
('result','course_reg','6116',1402,NULL),
('result','course_reg','6117',1403,NULL),
('result','course_reg','6118',1404,NULL),
('result','course_reg','6119',1405,NULL),
('result','course_reg','6120',1406,NULL),
('result','course_reg','6121',1407,NULL),
('result','course_reg','6122',1408,NULL),
('result','course_reg','6123',1409,NULL),
('result','course_reg','6124',1410,NULL),
('result','course_reg','6125',1411,NULL),
('result','course_reg','6126',1412,NULL),
('result','course_reg','6127',1413,NULL),
('result','course_reg','6129',1414,NULL),
('result','course_reg','6130',1415,NULL),
('result','course_reg','6131',1416,NULL),
('result','course_reg','6132',1417,NULL),
('result','course_reg','6133',1418,NULL),
('result','course_reg','6134',1419,NULL),
('result','course_reg','6135',1420,NULL),
('result','course_reg','6137',1421,NULL),
('result','course_reg','6138',1422,NULL),
('result','course_reg','6139',1423,NULL),
('result','course_reg','6140',1424,NULL),
('result','course_reg','6141',1425,NULL),
('result','course_reg','6142',1426,NULL),
('result','course_reg','6143',1427,NULL),
('result','course_reg','6144',1428,NULL),
('result','course_reg','6145',1429,NULL),
('result','course_reg','6146',1430,NULL),
('result','course_reg','6147',1431,NULL),
('result','course_reg','6148',1432,NULL),
('result','course_reg','6149',1433,NULL),
('result','course_reg','6150',1434,NULL),
('result','course_reg','6151',1435,NULL),
('result','course_reg','6152',1436,NULL),
('result','course_reg','6153',1437,NULL),
('result','course_reg','6154',1438,NULL),
('result','course_reg','6155',1439,NULL),
('result','course_reg','6156',1440,NULL),
('result','course_reg','6157',1441,NULL),
('result','course_reg','6158',1442,NULL),
('result','course_reg','6159',1443,NULL),
('result','course_reg','6160',1444,NULL),
('result','course_reg','6161',1445,NULL),
('result','course_reg','6162',1446,NULL),
('result','course_reg','6163',1447,NULL),
('result','course_reg','6164',1448,NULL),
('result','course_reg','6165',1449,NULL),
('result','course_reg','6166',1450,NULL),
('result','course_reg','6167',1451,NULL),
('result','course_reg','6168',1452,NULL),
('result','course_reg','6169',1453,NULL),
('result','course_reg','6170',1454,NULL),
('result','course_reg','6171',1455,NULL),
('result','course_reg','6172',1456,NULL),
('result','course_reg','6173',1457,NULL),
('result','course_reg','6174',1458,NULL),
('result','course_reg','6175',1459,NULL),
('result','course_reg','6176',1460,NULL),
('result','course_reg','6177',1461,NULL),
('result','course_reg','6178',1462,NULL),
('result','course_reg','6179',1463,NULL),
('result','course_reg','6180',1464,NULL),
('result','course_reg','6181',1465,NULL),
('result','course_reg','6182',1466,NULL),
('result','course_reg','6183',1467,NULL),
('result','course_reg','6184',1468,NULL),
('result','course_reg','6185',1469,NULL),
('result','course_reg','6186',1470,NULL),
('result','course_reg','6187',1471,NULL),
('result','course_reg','6188',1472,NULL),
('result','course_reg','6189',1473,NULL),
('result','course_reg','6190',1474,NULL),
('result','course_reg','6191',1475,NULL),
('result','course_reg','6192',1476,NULL),
('result','course_reg','6193',1477,NULL),
('result','course_reg','6194',1478,NULL),
('result','course_reg','6195',1479,NULL),
('result','course_reg','6196',1480,NULL),
('result','course_reg','6197',1481,NULL),
('result','course_reg','6198',1482,NULL),
('result','course_reg','6199',1483,NULL),
('result','course_reg','6200',1484,NULL),
('result','course_reg','6201',1485,NULL),
('result','course_reg','6202',1486,NULL),
('result','course_reg','6203',1487,NULL),
('result','course_reg','6204',1488,NULL),
('result','course_reg','6205',1489,NULL);
INSERT INTO `legacy_mappings` (`entity_type`,`legacy_table`,`legacy_id`,`new_id`,`notes`) VALUES
('result','course_reg','6206',1490,NULL),
('result','course_reg','6207',1491,NULL),
('result','course_reg','6209',1492,NULL),
('result','course_reg','6210',1493,NULL),
('result','course_reg','6211',1494,NULL),
('result','course_reg','6212',1495,NULL),
('result','course_reg','6213',1496,NULL),
('result','course_reg','6214',1497,NULL),
('result','course_reg','6215',1498,NULL),
('result','course_reg','6216',1499,NULL),
('result','course_reg','6218',1500,NULL),
('result','course_reg','6219',1501,NULL),
('result','course_reg','6220',1502,NULL),
('result','course_reg','6221',1503,NULL),
('result','course_reg','6222',1504,NULL),
('result','course_reg','6223',1505,NULL),
('result','course_reg','6224',1506,NULL),
('result','course_reg','6225',1507,NULL),
('result','course_reg','6226',1508,NULL),
('result','course_reg','6227',1509,NULL),
('result','course_reg','6228',1510,NULL),
('result','course_reg','6229',1511,NULL),
('result','course_reg','6230',1512,NULL),
('result','course_reg','6231',1513,NULL),
('result','course_reg','6232',1514,NULL),
('result','course_reg','6233',1515,NULL),
('result','course_reg','6234',1516,NULL),
('result','course_reg','6235',1517,NULL),
('result','course_reg','6236',1518,NULL),
('result','course_reg','6237',1519,NULL),
('result','course_reg','6238',1520,NULL),
('result','course_reg','6239',1521,NULL),
('result','course_reg','6240',1522,NULL),
('result','course_reg','6241',1523,NULL),
('result','course_reg','6242',1524,NULL),
('result','course_reg','6243',1525,NULL),
('result','course_reg','6244',1526,NULL),
('result','course_reg','6245',1527,NULL),
('result','course_reg','6246',1528,NULL),
('result','course_reg','6247',1529,NULL),
('result','course_reg','6248',1530,NULL),
('result','course_reg','6249',1531,NULL),
('result','course_reg','6250',1532,NULL),
('result','course_reg','6251',1533,NULL),
('result','course_reg','6252',1534,NULL),
('result','course_reg','6253',1535,NULL),
('result','course_reg','6254',1536,NULL),
('result','course_reg','6255',1537,NULL),
('result','course_reg','6256',1538,NULL),
('result','course_reg','6257',1539,NULL),
('result','course_reg','6258',1540,NULL),
('result','course_reg','6259',1541,NULL),
('result','course_reg','6260',1542,NULL),
('result','course_reg','6261',1543,NULL),
('result','course_reg','6262',1544,NULL),
('result','course_reg','6263',1545,NULL),
('result','course_reg','6264',1546,NULL),
('result','course_reg','6265',1547,NULL),
('result','course_reg','6267',1548,NULL),
('result','course_reg','6269',1549,NULL),
('result','course_reg','6270',1550,NULL),
('result','course_reg','6271',1551,NULL),
('result','course_reg','6272',1552,NULL),
('result','course_reg','6273',1553,NULL),
('result','course_reg','6274',1554,NULL),
('result','course_reg','6275',1555,NULL),
('result','course_reg','6276',1556,NULL),
('result','course_reg','6277',1557,NULL),
('result','course_reg','6278',1558,NULL),
('result','course_reg','6279',1559,NULL),
('result','course_reg','6280',1560,NULL),
('result','course_reg','6281',1561,NULL),
('result','course_reg','6282',1562,NULL),
('result','course_reg','6283',1563,NULL),
('result','course_reg','6285',1564,NULL),
('result','course_reg','6286',1565,NULL),
('result','course_reg','6287',1566,NULL),
('result','course_reg','6288',1567,NULL),
('result','course_reg','6290',1568,NULL),
('result','course_reg','6291',1569,NULL),
('result','course_reg','6292',1570,NULL),
('result','course_reg','6293',1571,NULL),
('result','course_reg','6294',1572,NULL),
('result','course_reg','6295',1573,NULL),
('result','course_reg','6296',1574,NULL),
('result','course_reg','6297',1575,NULL),
('result','course_reg','6298',1576,NULL),
('result','course_reg','6299',1577,NULL),
('result','course_reg','6300',1578,NULL),
('result','course_reg','6301',1579,NULL),
('result','course_reg','6302',1580,NULL),
('result','course_reg','6303',1581,NULL),
('result','course_reg','6304',1582,NULL),
('result','course_reg','6305',1583,NULL),
('result','course_reg','6306',1584,NULL),
('result','course_reg','6307',1585,NULL),
('result','course_reg','6308',1586,NULL),
('result','course_reg','6309',1587,NULL),
('result','course_reg','6310',1588,NULL),
('result','course_reg','6311',1589,NULL),
('result','course_reg','6312',1590,NULL),
('result','course_reg','6313',1591,NULL),
('result','course_reg','6314',1592,NULL),
('result','course_reg','6315',1593,NULL),
('result','course_reg','6316',1594,NULL),
('result','course_reg','6317',1595,NULL),
('result','course_reg','6318',1596,NULL),
('result','course_reg','6319',1597,NULL),
('result','course_reg','6320',1598,NULL),
('result','course_reg','6321',1599,NULL),
('result','course_reg','6322',1600,NULL),
('result','course_reg','6323',1601,NULL),
('result','course_reg','6324',1602,NULL),
('result','course_reg','6325',1603,NULL),
('result','course_reg','6326',1604,NULL),
('result','course_reg','6327',1605,NULL),
('result','course_reg','6328',1606,NULL),
('result','course_reg','6329',1607,NULL),
('result','course_reg','6330',1608,NULL),
('result','course_reg','6331',1609,NULL),
('result','course_reg','6332',1610,NULL),
('result','course_reg','6333',1611,NULL),
('result','course_reg','6334',1612,NULL),
('result','course_reg','6335',1613,NULL),
('result','course_reg','6336',1614,NULL),
('result','course_reg','6337',1615,NULL),
('result','course_reg','6338',1616,NULL),
('result','course_reg','6339',1617,NULL),
('result','course_reg','6340',1618,NULL),
('result','course_reg','6341',1619,NULL),
('result','course_reg','6342',1620,NULL),
('result','course_reg','6343',1621,NULL),
('result','course_reg','6344',1622,NULL),
('result','course_reg','6345',1623,NULL),
('result','course_reg','6346',1624,NULL),
('result','course_reg','6347',1625,NULL),
('result','course_reg','6348',1626,NULL),
('result','course_reg','6349',1627,NULL),
('result','course_reg','6350',1628,NULL),
('result','course_reg','6351',1629,NULL),
('result','course_reg','6352',1630,NULL),
('result','course_reg','6353',1631,NULL),
('result','course_reg','6354',1632,NULL),
('result','course_reg','6355',1633,NULL),
('result','course_reg','6356',1634,NULL),
('result','course_reg','6357',1635,NULL),
('result','course_reg','6358',1636,NULL),
('result','course_reg','6359',1637,NULL),
('result','course_reg','6360',1638,NULL),
('result','course_reg','6361',1639,NULL),
('result','course_reg','6362',1640,NULL),
('result','course_reg','6363',1641,NULL),
('result','course_reg','6364',1642,NULL),
('result','course_reg','6365',1643,NULL),
('result','course_reg','6366',1644,NULL),
('result','course_reg','6367',1645,NULL),
('result','course_reg','6368',1646,NULL),
('result','course_reg','6369',1647,NULL),
('result','course_reg','6370',1648,NULL),
('result','course_reg','6371',1649,NULL),
('result','course_reg','6372',1650,NULL),
('result','course_reg','6373',1651,NULL),
('result','course_reg','6374',1652,NULL),
('result','course_reg','6375',1653,NULL),
('result','course_reg','6376',1654,NULL),
('result','course_reg','6377',1655,NULL),
('result','course_reg','6378',1656,NULL),
('result','course_reg','6379',1657,NULL),
('result','course_reg','6380',1658,NULL),
('result','course_reg','6381',1659,NULL),
('result','course_reg','6382',1660,NULL),
('result','course_reg','6383',1661,NULL),
('result','course_reg','6384',1662,NULL),
('result','course_reg','6385',1663,NULL),
('result','course_reg','6386',1664,NULL),
('result','course_reg','6387',1665,NULL),
('result','course_reg','6388',1666,NULL),
('result','course_reg','6390',1667,NULL),
('result','course_reg','6392',1668,NULL),
('result','course_reg','6393',1669,NULL),
('result','course_reg','6394',1670,NULL),
('result','course_reg','6397',1671,NULL),
('result','course_reg','6398',1672,NULL),
('result','course_reg','6399',1673,NULL),
('result','course_reg','6400',1674,NULL),
('result','course_reg','6401',1675,NULL),
('result','course_reg','6402',1676,NULL),
('result','course_reg','6403',1677,NULL),
('result','course_reg','6404',1678,NULL),
('result','course_reg','6405',1679,NULL),
('result','course_reg','6407',1680,NULL),
('result','course_reg','6409',1681,NULL),
('result','course_reg','6410',1682,NULL),
('result','course_reg','6412',1683,NULL),
('result','course_reg','6415',1684,NULL),
('result','course_reg','6416',1685,NULL),
('result','course_reg','6417',1686,NULL),
('result','course_reg','6418',1687,NULL),
('result','course_reg','6419',1688,NULL),
('result','course_reg','6421',1689,NULL),
('result','course_reg','6422',1690,NULL),
('result','course_reg','6424',1691,NULL),
('result','course_reg','6425',1692,NULL),
('result','course_reg','6426',1693,NULL),
('result','course_reg','6427',1694,NULL),
('result','course_reg','6428',1695,NULL),
('result','course_reg','6429',1696,NULL),
('result','course_reg','6430',1697,NULL),
('result','course_reg','6431',1698,NULL),
('result','course_reg','6432',1699,NULL),
('result','course_reg','6433',1700,NULL),
('result','course_reg','6434',1701,NULL),
('result','course_reg','6435',1702,NULL),
('result','course_reg','6436',1703,NULL),
('result','course_reg','6437',1704,NULL),
('result','course_reg','6438',1705,NULL),
('result','course_reg','6439',1706,NULL),
('result','course_reg','6440',1707,NULL),
('result','course_reg','6441',1708,NULL),
('result','course_reg','6442',1709,NULL),
('result','course_reg','6443',1710,NULL),
('result','course_reg','6444',1711,NULL),
('result','course_reg','6445',1712,NULL),
('result','course_reg','6446',1713,NULL),
('result','course_reg','6447',1714,NULL),
('result','course_reg','6448',1715,NULL),
('result','course_reg','6449',1716,NULL),
('result','course_reg','6450',1717,NULL),
('result','course_reg','6451',1718,NULL),
('result','course_reg','6452',1719,NULL),
('result','course_reg','6453',1720,NULL),
('result','course_reg','6454',1721,NULL),
('result','course_reg','6455',1722,NULL),
('result','course_reg','6456',1723,NULL),
('result','course_reg','6457',1724,NULL),
('result','course_reg','6462',1725,NULL),
('result','course_reg','6463',1726,NULL),
('result','course_reg','6465',1727,NULL),
('result','course_reg','6466',1728,NULL),
('result','course_reg','6468',1729,NULL),
('result','course_reg','6469',1730,NULL),
('result','course_reg','6471',1731,NULL),
('result','course_reg','6472',1732,NULL),
('result','course_reg','6473',1733,NULL),
('result','course_reg','6474',1734,NULL),
('result','course_reg','6475',1735,NULL),
('result','course_reg','6476',1736,NULL),
('result','course_reg','6477',1737,NULL),
('result','course_reg','6478',1738,NULL),
('result','course_reg','6479',1739,NULL);
INSERT INTO `legacy_mappings` (`entity_type`,`legacy_table`,`legacy_id`,`new_id`,`notes`) VALUES
('result','course_reg','6480',1740,NULL),
('result','course_reg','6481',1741,NULL),
('result','course_reg','6482',1742,NULL),
('result','course_reg','6483',1743,NULL),
('result','course_reg','6484',1744,NULL),
('result','course_reg','6485',1745,NULL),
('result','course_reg','6495',1746,NULL),
('result','course_reg','6496',1747,NULL),
('result','course_reg','6498',1748,NULL),
('result','course_reg','6499',1749,NULL),
('result','course_reg','6500',1750,NULL),
('result','course_reg','6501',1751,NULL),
('result','course_reg','6502',1752,NULL),
('result','course_reg','6503',1753,NULL),
('result','course_reg','6504',1754,NULL),
('result','course_reg','6505',1755,NULL),
('result','course_reg','6506',1756,NULL),
('result','course_reg','6507',1757,NULL),
('result','course_reg','6508',1758,NULL),
('result','course_reg','6509',1759,NULL),
('result','course_reg','6510',1760,NULL),
('result','course_reg','6511',1761,NULL),
('result','course_reg','6512',1762,NULL),
('result','course_reg','6513',1763,NULL),
('result','course_reg','6514',1764,NULL),
('result','course_reg','6515',1765,NULL),
('result','course_reg','6516',1766,NULL),
('result','course_reg','6517',1767,NULL),
('result','course_reg','6518',1768,NULL),
('result','course_reg','6519',1769,NULL),
('result','course_reg','6520',1770,NULL),
('result','course_reg','6521',1771,NULL),
('result','course_reg','6522',1772,NULL),
('result','course_reg','6523',1773,NULL),
('result','course_reg','6524',1774,NULL),
('result','course_reg','6525',1775,NULL),
('result','course_reg','6526',1776,NULL),
('result','course_reg','6527',1777,NULL),
('result','course_reg','6528',1778,NULL),
('result','course_reg','6529',1779,NULL),
('result','course_reg','6530',1780,NULL),
('result','course_reg','6531',1781,NULL),
('result','course_reg','6532',1782,NULL),
('result','course_reg','6533',1783,NULL),
('result','course_reg','6534',1784,NULL),
('result','course_reg','6535',1785,NULL),
('result','course_reg','6536',1786,NULL),
('result','course_reg','6537',1787,NULL),
('result','course_reg','6538',1788,NULL),
('result','course_reg','6539',1789,NULL),
('result','course_reg','6540',1790,NULL),
('result','course_reg','6541',1791,NULL),
('result','course_reg','6542',1792,NULL),
('result','course_reg','6543',1793,NULL),
('result','course_reg','6544',1794,NULL),
('result','course_reg','6545',1795,NULL),
('result','course_reg','6546',1796,NULL),
('result','course_reg','6547',1797,NULL),
('result','course_reg','6548',1798,NULL),
('result','course_reg','6549',1799,NULL),
('result','course_reg','6550',1800,NULL),
('result','course_reg','6551',1801,NULL),
('result','course_reg','6552',1802,NULL),
('result','course_reg','6553',1803,NULL),
('result','course_reg','6554',1804,NULL),
('result','course_reg','6555',1805,NULL),
('result','course_reg','6556',1806,NULL),
('result','course_reg','6557',1807,NULL),
('result','course_reg','6558',1808,NULL),
('result','course_reg','6559',1809,NULL),
('result','course_reg','6560',1810,NULL),
('result','course_reg','6562',1811,NULL),
('result','course_reg','6564',1812,NULL),
('result','course_reg','6569',1813,NULL),
('result','course_reg','6571',1814,NULL),
('result','course_reg','6573',1815,NULL),
('result','course_reg','6574',1816,NULL),
('result','course_reg','6575',1817,NULL),
('result','course_reg','6576',1818,NULL),
('result','course_reg','6577',1819,NULL),
('result','course_reg','6578',1820,NULL),
('result','course_reg','6579',1821,NULL),
('result','course_reg','6580',1822,NULL),
('result','course_reg','6581',1823,NULL),
('result','course_reg','6582',1824,NULL),
('result','course_reg','6583',1825,NULL),
('result','course_reg','6584',1826,NULL),
('result','course_reg','6585',1827,NULL),
('result','course_reg','6586',1828,NULL),
('result','course_reg','6587',1829,NULL),
('result','course_reg','6588',1830,NULL),
('result','course_reg','6589',1831,NULL),
('result','course_reg','6590',1832,NULL),
('result','course_reg','6591',1833,NULL),
('result','course_reg','6592',1834,NULL),
('result','course_reg','6593',1835,NULL),
('result','course_reg','6594',1836,NULL),
('result','course_reg','6595',1837,NULL),
('result','course_reg','6596',1838,NULL),
('result','course_reg','6597',1839,NULL),
('result','course_reg','6598',1840,NULL),
('result','course_reg','6599',1841,NULL),
('result','course_reg','6600',1842,NULL),
('result','course_reg','6601',1843,NULL),
('result','course_reg','6602',1844,NULL),
('result','course_reg','6603',1845,NULL),
('result','course_reg','6604',1846,NULL),
('result','course_reg','6605',1847,NULL),
('result','course_reg','6606',1848,NULL),
('result','course_reg','6607',1849,NULL),
('result','course_reg','6608',1850,NULL),
('result','course_reg','6609',1851,NULL),
('result','course_reg','6610',1852,NULL),
('result','course_reg','6611',1853,NULL),
('result','course_reg','6612',1854,NULL),
('result','course_reg','6613',1855,NULL),
('result','course_reg','6614',1856,NULL),
('result','course_reg','6615',1857,NULL),
('result','course_reg','6616',1858,NULL),
('result','course_reg','6617',1859,NULL),
('result','course_reg','6618',1860,NULL),
('result','course_reg','6619',1861,NULL),
('result','course_reg','6620',1862,NULL),
('result','course_reg','6621',1863,NULL),
('result','course_reg','6622',1864,NULL),
('result','course_reg','6623',1865,NULL),
('result','course_reg','6624',1866,NULL),
('result','course_reg','6625',1867,NULL),
('result','course_reg','6626',1868,NULL),
('result','course_reg','6627',1869,NULL),
('result','course_reg','6628',1870,NULL),
('result','course_reg','6629',1871,NULL),
('result','course_reg','6630',1872,NULL),
('result','course_reg','6631',1873,NULL),
('result','course_reg','6632',1874,NULL),
('result','course_reg','6633',1875,NULL),
('result','course_reg','6634',1876,NULL),
('result','course_reg','6635',1877,NULL),
('result','course_reg','6636',1878,NULL),
('result','course_reg','6637',1879,NULL),
('result','course_reg','6638',1880,NULL),
('result','course_reg','6639',1881,NULL),
('result','course_reg','6641',1882,NULL),
('result','course_reg','6642',1883,NULL),
('result','course_reg','6643',1884,NULL),
('result','course_reg','6644',1885,NULL),
('result','course_reg','6645',1886,NULL),
('result','course_reg','6646',1887,NULL),
('result','course_reg','6647',1888,NULL),
('result','course_reg','6648',1889,NULL),
('result','course_reg','6649',1890,NULL),
('result','course_reg','6650',1891,NULL),
('result','course_reg','6651',1892,NULL),
('result','course_reg','6652',1893,NULL),
('result','course_reg','6653',1894,NULL),
('result','course_reg','6654',1895,NULL),
('result','course_reg','6655',1896,NULL),
('result','course_reg','6656',1897,NULL),
('result','course_reg','6657',1898,NULL),
('result','course_reg','6658',1899,NULL),
('result','course_reg','6659',1900,NULL),
('result','course_reg','6660',1901,NULL),
('result','course_reg','6661',1902,NULL),
('result','course_reg','6662',1903,NULL),
('result','course_reg','6663',1904,NULL),
('result','course_reg','6666',1905,NULL),
('result','course_reg','6667',1906,NULL),
('result','course_reg','6668',1907,NULL),
('result','course_reg','6669',1908,NULL),
('result','course_reg','6670',1909,NULL),
('result','course_reg','6671',1910,NULL),
('result','course_reg','6672',1911,NULL),
('result','course_reg','6673',1912,NULL),
('result','course_reg','6674',1913,NULL),
('result','course_reg','6675',1914,NULL),
('result','course_reg','6676',1915,NULL),
('result','course_reg','6677',1916,NULL),
('result','course_reg','6678',1917,NULL),
('result','course_reg','6679',1918,NULL),
('result','course_reg','6680',1919,NULL),
('result','course_reg','6681',1920,NULL),
('result','course_reg','6682',1921,NULL),
('result','course_reg','6683',1922,NULL),
('result','course_reg','6684',1923,NULL),
('result','course_reg','6685',1924,NULL),
('result','course_reg','6686',1925,NULL),
('result','course_reg','6687',1926,NULL),
('result','course_reg','6688',1927,NULL),
('result','course_reg','6689',1928,NULL),
('result','course_reg','6690',1929,NULL),
('result','course_reg','6691',1930,NULL),
('result','course_reg','6692',1931,NULL),
('result','course_reg','6693',1932,NULL),
('result','course_reg','6694',1933,NULL),
('result','course_reg','6695',1934,NULL),
('result','course_reg','6696',1935,NULL),
('result','course_reg','6697',1936,NULL),
('result','course_reg','6698',1937,NULL),
('result','course_reg','6699',1938,NULL),
('result','course_reg','6700',1939,NULL),
('result','course_reg','6701',1940,NULL),
('result','course_reg','6702',1941,NULL),
('result','course_reg','6703',1942,NULL),
('result','course_reg','6704',1943,NULL),
('result','course_reg','6705',1944,NULL),
('result','course_reg','6706',1945,NULL),
('result','course_reg','6707',1946,NULL),
('result','course_reg','6708',1947,NULL),
('result','course_reg','6709',1948,NULL),
('result','course_reg','6710',1949,NULL),
('result','course_reg','6711',1950,NULL),
('result','course_reg','6712',1951,NULL),
('result','course_reg','6713',1952,NULL),
('result','course_reg','6714',1953,NULL),
('result','course_reg','6715',1954,NULL),
('result','course_reg','6716',1955,NULL),
('result','course_reg','6717',1956,NULL),
('result','course_reg','6718',1957,NULL),
('result','course_reg','6719',1958,NULL),
('result','course_reg','6720',1959,NULL),
('result','course_reg','6721',1960,NULL),
('result','course_reg','6722',1961,NULL),
('result','course_reg','6723',1962,NULL),
('result','course_reg','6724',1963,NULL),
('result','course_reg','6725',1964,NULL),
('result','course_reg','6726',1965,NULL),
('result','course_reg','6727',1966,NULL),
('result','course_reg','6728',1967,NULL),
('result','course_reg','6729',1968,NULL),
('result','course_reg','6730',1969,NULL),
('result','course_reg','6731',1970,NULL),
('result','course_reg','6732',1971,NULL),
('result','course_reg','6733',1972,NULL),
('result','course_reg','6734',1973,NULL),
('result','course_reg','6735',1974,NULL),
('result','course_reg','6736',1975,NULL),
('result','course_reg','6737',1976,NULL),
('result','course_reg','6738',1977,NULL),
('result','course_reg','6739',1978,NULL),
('result','course_reg','6740',1979,NULL),
('result','course_reg','6741',1980,NULL),
('result','course_reg','6742',1981,NULL),
('result','course_reg','6743',1982,NULL),
('result','course_reg','6744',1983,NULL),
('result','course_reg','6745',1984,NULL),
('result','course_reg','6746',1985,NULL),
('result','course_reg','6747',1986,NULL),
('result','course_reg','6748',1987,NULL),
('result','course_reg','6749',1988,NULL),
('result','course_reg','6750',1989,NULL);
INSERT INTO `legacy_mappings` (`entity_type`,`legacy_table`,`legacy_id`,`new_id`,`notes`) VALUES
('result','course_reg','6751',1990,NULL),
('result','course_reg','6752',1991,NULL),
('result','course_reg','6753',1992,NULL),
('result','course_reg','6754',1993,NULL),
('result','course_reg','6755',1994,NULL),
('result','course_reg','6756',1995,NULL),
('result','course_reg','6757',1996,NULL),
('result','course_reg','6758',1997,NULL),
('result','course_reg','6759',1998,NULL),
('result','course_reg','6760',1999,NULL),
('result','course_reg','6761',2000,NULL),
('result','course_reg','6762',2001,NULL),
('result','course_reg','6763',2002,NULL),
('result','course_reg','6764',2003,NULL),
('result','course_reg','6765',2004,NULL),
('result','course_reg','6766',2005,NULL),
('result','course_reg','6767',2006,NULL),
('result','course_reg','6768',2007,NULL),
('result','course_reg','6769',2008,NULL),
('result','course_reg','6770',2009,NULL),
('result','course_reg','6771',2010,NULL),
('result','course_reg','6772',2011,NULL),
('result','course_reg','6773',2012,NULL),
('result','course_reg','6774',2013,NULL),
('result','course_reg','6775',2014,NULL),
('result','course_reg','6776',2015,NULL),
('result','course_reg','6777',2016,NULL),
('result','course_reg','6778',2017,NULL),
('result','course_reg','6779',2018,NULL),
('result','course_reg','6780',2019,NULL),
('result','course_reg','6781',2020,NULL),
('result','course_reg','6782',2021,NULL),
('result','course_reg','6783',2022,NULL),
('result','course_reg','6784',2023,NULL),
('result','course_reg','6785',2024,NULL),
('result','course_reg','6786',2025,NULL),
('result','course_reg','6787',2026,NULL),
('result','course_reg','6788',2027,NULL),
('result','course_reg','6789',2028,NULL),
('result','course_reg','6790',2029,NULL),
('result','course_reg','6791',2030,NULL),
('result','course_reg','6792',2031,NULL),
('result','course_reg','6793',2032,NULL),
('result','course_reg','6794',2033,NULL),
('result','course_reg','6795',2034,NULL),
('result','course_reg','6796',2035,NULL),
('result','course_reg','6797',2036,NULL),
('result','course_reg','6798',2037,NULL),
('result','course_reg','6799',2038,NULL),
('result','course_reg','6800',2039,NULL),
('result','course_reg','6801',2040,NULL),
('result','course_reg','6802',2041,NULL),
('result','course_reg','6803',2042,NULL),
('result','course_reg','6804',2043,NULL),
('result','course_reg','6805',2044,NULL),
('result','course_reg','6806',2045,NULL),
('result','course_reg','6807',2046,NULL),
('result','course_reg','6808',2047,NULL),
('result','course_reg','6809',2048,NULL),
('result','course_reg','6810',2049,NULL),
('result','course_reg','6811',2050,NULL),
('result','course_reg','6812',2051,NULL),
('result','course_reg','6813',2052,NULL),
('result','course_reg','6814',2053,NULL),
('result','course_reg','6815',2054,NULL),
('result','course_reg','6816',2055,NULL),
('result','course_reg','6817',2056,NULL),
('result','course_reg','6818',2057,NULL),
('result','course_reg','6819',2058,NULL),
('result','course_reg','6820',2059,NULL),
('result','course_reg','6821',2060,NULL),
('result','course_reg','6822',2061,NULL),
('result','course_reg','6823',2062,NULL),
('result','course_reg','6824',2063,NULL),
('result','course_reg','6825',2064,NULL),
('result','course_reg','6826',2065,NULL),
('result','course_reg','6827',2066,NULL),
('result','course_reg','6828',2067,NULL),
('result','course_reg','6829',2068,NULL),
('result','course_reg','6830',2069,NULL),
('result','course_reg','6831',2070,NULL),
('result','course_reg','6832',2071,NULL),
('result','course_reg','6833',2072,NULL),
('result','course_reg','6834',2073,NULL),
('result','course_reg','6835',2074,NULL),
('result','course_reg','6836',2075,NULL),
('result','course_reg','6837',2076,NULL),
('result','course_reg','6838',2077,NULL),
('result','course_reg','6839',2078,NULL),
('result','course_reg','6840',2079,NULL),
('result','course_reg','6841',2080,NULL),
('result','course_reg','6842',2081,NULL),
('result','course_reg','6843',2082,NULL),
('result','course_reg','6844',2083,NULL),
('result','course_reg','6845',2084,NULL),
('result','course_reg','6846',2085,NULL),
('result','course_reg','6847',2086,NULL),
('result','course_reg','6848',2087,NULL),
('result','course_reg','6849',2088,NULL),
('result','course_reg','6850',2089,NULL),
('result','course_reg','6851',2090,NULL),
('result','course_reg','6852',2091,NULL),
('result','course_reg','6853',2092,NULL),
('result','course_reg','6854',2093,NULL),
('result','course_reg','6855',2094,NULL),
('result','course_reg','6856',2095,NULL),
('result','course_reg','6857',2096,NULL),
('result','course_reg','6858',2097,NULL),
('result','course_reg','6859',2098,NULL),
('result','course_reg','6860',2099,NULL),
('result','course_reg','6861',2100,NULL),
('result','course_reg','6862',2101,NULL),
('result','course_reg','6863',2102,NULL),
('result','course_reg','6864',2103,NULL),
('result','course_reg','6865',2104,NULL),
('result','course_reg','6866',2105,NULL),
('result','course_reg','6867',2106,NULL),
('result','course_reg','6868',2107,NULL),
('result','course_reg','6869',2108,NULL),
('result','course_reg','6870',2109,NULL),
('result','course_reg','6871',2110,NULL),
('result','course_reg','6872',2111,NULL),
('result','course_reg','6873',2112,NULL),
('result','course_reg','6874',2113,NULL),
('result','course_reg','6875',2114,NULL),
('result','course_reg','6877',2115,NULL),
('result','course_reg','6878',2116,NULL),
('result','course_reg','6879',2117,NULL),
('result','course_reg','6880',2118,NULL),
('result','course_reg','6881',2119,NULL),
('result','course_reg','6882',2120,NULL),
('result','course_reg','6883',2121,NULL),
('result','course_reg','6884',2122,NULL),
('result','course_reg','6886',2123,NULL),
('result','course_reg','6887',2124,NULL),
('result','course_reg','6888',2125,NULL),
('result','course_reg','6889',2126,NULL),
('result','course_reg','6891',2127,NULL),
('result','course_reg','6892',2128,NULL),
('result','course_reg','6893',2129,NULL),
('result','course_reg','6894',2130,NULL),
('result','course_reg','6895',2131,NULL),
('result','course_reg','6896',2132,NULL),
('result','course_reg','6897',2133,NULL),
('result','course_reg','6898',2134,NULL),
('result','course_reg','6899',2135,NULL),
('result','course_reg','6900',2136,NULL),
('result','course_reg','6901',2137,NULL),
('result','course_reg','6902',2138,NULL),
('result','course_reg','6903',2139,NULL),
('result','course_reg','6904',2140,NULL),
('result','course_reg','6905',2141,NULL),
('result','course_reg','6906',2142,NULL),
('result','course_reg','6907',2143,NULL),
('result','course_reg','6908',2144,NULL),
('result','course_reg','6909',2145,NULL),
('result','course_reg','6910',2146,NULL),
('result','course_reg','6911',2147,NULL),
('result','course_reg','6912',2148,NULL),
('result','course_reg','6913',2149,NULL),
('result','course_reg','6914',2150,NULL),
('result','course_reg','6915',2151,NULL),
('result','course_reg','6916',2152,NULL),
('result','course_reg','6917',2153,NULL),
('result','course_reg','6918',2154,NULL),
('result','course_reg','6919',2155,NULL),
('result','course_reg','6920',2156,NULL),
('result','course_reg','6921',2157,NULL),
('result','course_reg','6922',2158,NULL),
('result','course_reg','6923',2159,NULL),
('result','course_reg','6924',2160,NULL),
('result','course_reg','6925',2161,NULL),
('result','course_reg','6926',2162,NULL),
('result','course_reg','6927',2163,NULL),
('result','course_reg','6928',2164,NULL),
('result','course_reg','6929',2165,NULL),
('result','course_reg','6930',2166,NULL),
('result','course_reg','6931',2167,NULL),
('result','course_reg','6932',2168,NULL),
('result','course_reg','6933',2169,NULL),
('result','course_reg','6934',2170,NULL),
('result','course_reg','6935',2171,NULL),
('result','course_reg','6936',2172,NULL),
('result','course_reg','6937',2173,NULL),
('result','course_reg','6938',2174,NULL),
('result','course_reg','6939',2175,NULL),
('result','course_reg','6940',2176,NULL),
('result','course_reg','6941',2177,NULL),
('result','course_reg','6942',2178,NULL),
('result','course_reg','6943',2179,NULL),
('result','course_reg','6944',2180,NULL),
('result','course_reg','6945',2181,NULL),
('result','course_reg','6946',2182,NULL),
('result','course_reg','6947',2183,NULL),
('result','course_reg','6948',2184,NULL),
('result','course_reg','6949',2185,NULL),
('result','course_reg','6950',2186,NULL),
('result','course_reg','6951',2187,NULL),
('result','course_reg','6952',2188,NULL),
('result','course_reg','6953',2189,NULL),
('result','course_reg','6954',2190,NULL),
('result','course_reg','6955',2191,NULL),
('result','course_reg','6956',2192,NULL),
('result','course_reg','6957',2193,NULL),
('result','course_reg','6958',2194,NULL),
('result','course_reg','6959',2195,NULL),
('result','course_reg','6960',2196,NULL),
('result','course_reg','6961',2197,NULL),
('result','course_reg','6962',2198,NULL),
('result','course_reg','6963',2199,NULL),
('result','course_reg','6964',2200,NULL),
('result','course_reg','6965',2201,NULL),
('result','course_reg','6966',2202,NULL),
('result','course_reg','6967',2203,NULL),
('result','course_reg','6968',2204,NULL),
('result','course_reg','6969',2205,NULL),
('result','course_reg','6970',2206,NULL),
('result','course_reg','6971',2207,NULL),
('result','course_reg','6972',2208,NULL),
('result','course_reg','6973',2209,NULL),
('result','course_reg','6974',2210,NULL),
('result','course_reg','6975',2211,NULL),
('result','course_reg','6976',2212,NULL),
('result','course_reg','6977',2213,NULL),
('result','course_reg','6978',2214,NULL),
('result','course_reg','6979',2215,NULL),
('result','course_reg','6980',2216,NULL),
('result','course_reg','6981',2217,NULL),
('result','course_reg','6982',2218,NULL),
('result','course_reg','6983',2219,NULL),
('result','course_reg','6984',2220,NULL),
('result','course_reg','6985',2221,NULL),
('result','course_reg','6986',2222,NULL),
('result','course_reg','6987',2223,NULL),
('result','course_reg','6988',2224,NULL),
('result','course_reg','6989',2225,NULL),
('result','course_reg','6990',2226,NULL),
('result','course_reg','6991',2227,NULL),
('result','course_reg','6992',2228,NULL),
('result','course_reg','6993',2229,NULL),
('result','course_reg','6994',2230,NULL),
('result','course_reg','6995',2231,NULL),
('result','course_reg','6996',2232,NULL),
('result','course_reg','6997',2233,NULL),
('result','course_reg','6998',2234,NULL),
('result','course_reg','6999',2235,NULL),
('result','course_reg','7000',2236,NULL),
('result','course_reg','7001',2237,NULL),
('result','course_reg','7002',2238,NULL),
('result','course_reg','7003',2239,NULL);
INSERT INTO `legacy_mappings` (`entity_type`,`legacy_table`,`legacy_id`,`new_id`,`notes`) VALUES
('result','course_reg','7004',2240,NULL),
('result','course_reg','7005',2241,NULL),
('result','course_reg','7006',2242,NULL),
('result','course_reg','7007',2243,NULL),
('result','course_reg','7008',2244,NULL),
('result','course_reg','7009',2245,NULL),
('result','course_reg','7010',2246,NULL),
('result','course_reg','7011',2247,NULL),
('result','course_reg','7012',2248,NULL),
('result','course_reg','7013',2249,NULL),
('result','course_reg','7014',2250,NULL),
('result','course_reg','7015',2251,NULL),
('result','course_reg','7016',2252,NULL),
('result','course_reg','7017',2253,NULL),
('result','course_reg','7018',2254,NULL),
('result','course_reg','7019',2255,NULL),
('result','course_reg','7020',2256,NULL),
('result','course_reg','7021',2257,NULL),
('result','course_reg','7022',2258,NULL),
('result','course_reg','7023',2259,NULL),
('result','course_reg','7024',2260,NULL),
('result','course_reg','7025',2261,NULL),
('result','course_reg','7026',2262,NULL),
('result','course_reg','7027',2263,NULL),
('result','course_reg','7028',2264,NULL),
('result','course_reg','7029',2265,NULL),
('result','course_reg','7030',2266,NULL),
('result','course_reg','7031',2267,NULL),
('result','course_reg','7032',2268,NULL),
('result','course_reg','7034',2269,NULL),
('result','course_reg','7035',2270,NULL),
('result','course_reg','7036',2271,NULL),
('result','course_reg','7037',2272,NULL),
('result','course_reg','7038',2273,NULL),
('result','course_reg','7039',2274,NULL),
('result','course_reg','7040',2275,NULL),
('result','course_reg','7041',2276,NULL),
('result','course_reg','7043',2277,NULL),
('result','course_reg','7044',2278,NULL),
('result','course_reg','7045',2279,NULL),
('result','course_reg','7046',2280,NULL),
('result','course_reg','7047',2281,NULL),
('result','course_reg','7048',2282,NULL),
('result','course_reg','7049',2283,NULL),
('result','course_reg','7050',2284,NULL),
('result','course_reg','7051',2285,NULL),
('result','course_reg','7052',2286,NULL),
('result','course_reg','7053',2287,NULL),
('result','course_reg','7054',2288,NULL),
('result','course_reg','7055',2289,NULL),
('result','course_reg','7056',2290,NULL),
('result','course_reg','7057',2291,NULL),
('result','course_reg','7058',2292,NULL),
('result','course_reg','7059',2293,NULL),
('result','course_reg','7060',2294,NULL),
('result','course_reg','7061',2295,NULL),
('result','course_reg','7062',2296,NULL),
('result','course_reg','7063',2297,NULL),
('result','course_reg','7064',2298,NULL),
('result','course_reg','7065',2299,NULL),
('result','course_reg','7066',2300,NULL),
('result','course_reg','7067',2301,NULL),
('result','course_reg','7068',2302,NULL),
('result','course_reg','7069',2303,NULL),
('result','course_reg','7070',2304,NULL),
('result','course_reg','7071',2305,NULL),
('result','course_reg','7072',2306,NULL),
('result','course_reg','7073',2307,NULL),
('result','course_reg','7074',2308,NULL),
('result','course_reg','7075',2309,NULL),
('result','course_reg','7076',2310,NULL),
('result','course_reg','7077',2311,NULL),
('result','course_reg','7078',2312,NULL),
('result','course_reg','7079',2313,NULL),
('result','course_reg','7080',2314,NULL),
('result','course_reg','7081',2315,NULL),
('result','course_reg','7082',2316,NULL),
('result','course_reg','7083',2317,NULL),
('result','course_reg','7084',2318,NULL),
('result','course_reg','7085',2319,NULL),
('result','course_reg','7086',2320,NULL),
('result','course_reg','7087',2321,NULL),
('result','course_reg','7088',2322,NULL),
('result','course_reg','7089',2323,NULL),
('result','course_reg','7090',2324,NULL),
('result','course_reg','7091',2325,NULL),
('result','course_reg','7092',2326,NULL),
('result','course_reg','7093',2327,NULL),
('result','course_reg','7094',2328,NULL),
('result','course_reg','7095',2329,NULL),
('result','course_reg','7096',2330,NULL),
('result','course_reg','7097',2331,NULL),
('result','course_reg','7098',2332,NULL),
('result','course_reg','7099',2333,NULL),
('result','course_reg','7100',2334,NULL),
('result','course_reg','7101',2335,NULL),
('result','course_reg','7102',2336,NULL),
('result','course_reg','7103',2337,NULL),
('result','course_reg','7104',2338,NULL),
('result','course_reg','7105',2339,NULL),
('result','course_reg','7106',2340,NULL),
('result','course_reg','7107',2341,NULL),
('result','course_reg','7108',2342,NULL),
('result','course_reg','7109',2343,NULL),
('result','course_reg','7110',2344,NULL),
('result','course_reg','7111',2345,NULL),
('result','course_reg','7112',2346,NULL),
('result','course_reg','7113',2347,NULL),
('result','course_reg','7114',2348,NULL),
('result','course_reg','7115',2349,NULL),
('result','course_reg','7116',2350,NULL),
('result','course_reg','7117',2351,NULL),
('result','course_reg','7118',2352,NULL),
('result','course_reg','7119',2353,NULL),
('result','course_reg','7120',2354,NULL),
('result','course_reg','7121',2355,NULL),
('result','course_reg','7122',2356,NULL),
('result','course_reg','7123',2357,NULL),
('result','course_reg','7124',2358,NULL),
('result','course_reg','7125',2359,NULL),
('result','course_reg','7126',2360,NULL),
('result','course_reg','7127',2361,NULL),
('result','course_reg','7128',2362,NULL),
('result','course_reg','7129',2363,NULL),
('result','course_reg','7130',2364,NULL),
('result','course_reg','7131',2365,NULL),
('result','course_reg','7132',2366,NULL),
('result','course_reg','7133',2367,NULL),
('result','course_reg','7134',2368,NULL),
('result','course_reg','7135',2369,NULL),
('result','course_reg','7136',2370,NULL),
('result','course_reg','7137',2371,NULL),
('result','course_reg','7138',2372,NULL),
('result','course_reg','7139',2373,NULL),
('result','course_reg','7141',2374,NULL),
('result','course_reg','7142',2375,NULL),
('result','course_reg','7143',2376,NULL),
('result','course_reg','7144',2377,NULL),
('result','course_reg','7145',2378,NULL),
('result','course_reg','7146',2379,NULL),
('result','course_reg','7147',2380,NULL),
('result','course_reg','7148',2381,NULL),
('result','course_reg','7149',2382,NULL),
('result','course_reg','7150',2383,NULL),
('result','course_reg','7151',2384,NULL),
('result','course_reg','7152',2385,NULL),
('result','course_reg','7153',2386,NULL),
('result','course_reg','7154',2387,NULL),
('result','course_reg','7155',2388,NULL),
('result','course_reg','7156',2389,NULL),
('result','course_reg','7157',2390,NULL),
('result','course_reg','7158',2391,NULL),
('result','course_reg','7159',2392,NULL),
('result','course_reg','7160',2393,NULL),
('result','course_reg','7161',2394,NULL),
('result','course_reg','7162',2395,NULL),
('result','course_reg','7163',2396,NULL),
('result','course_reg','7164',2397,NULL),
('result','course_reg','7165',2398,NULL),
('result','course_reg','7166',2399,NULL),
('result','course_reg','7168',2400,NULL),
('result','course_reg','7169',2401,NULL),
('result','course_reg','7171',2402,NULL),
('result','course_reg','7172',2403,NULL),
('result','course_reg','7173',2404,NULL),
('result','course_reg','7174',2405,NULL),
('result','course_reg','7175',2406,NULL),
('result','course_reg','7180',2407,NULL),
('result','course_reg','7182',2408,NULL),
('result','course_reg','7184',2409,NULL),
('result','course_reg','7185',2410,NULL),
('result','course_reg','7186',2411,NULL),
('result','course_reg','7187',2412,NULL),
('result','course_reg','7188',2413,NULL),
('result','course_reg','7189',2414,NULL),
('result','course_reg','7190',2415,NULL),
('result','course_reg','7191',2416,NULL),
('result','course_reg','7192',2417,NULL),
('result','course_reg','7193',2418,NULL),
('result','course_reg','7194',2419,NULL),
('result','course_reg','7195',2420,NULL),
('result','course_reg','7196',2421,NULL),
('result','course_reg','7197',2422,NULL),
('result','course_reg','7198',2423,NULL),
('result','course_reg','7199',2424,NULL),
('result','course_reg','7200',2425,NULL),
('result','course_reg','7201',2426,NULL),
('result','course_reg','7202',2427,NULL),
('result','course_reg','7203',2428,NULL),
('result','course_reg','7204',2429,NULL),
('result','course_reg','7205',2430,NULL),
('result','course_reg','7206',2431,NULL),
('result','course_reg','7207',2432,NULL),
('result','course_reg','7208',2433,NULL),
('result','course_reg','7209',2434,NULL),
('result','course_reg','7210',2435,NULL),
('result','course_reg','7211',2436,NULL),
('result','course_reg','7212',2437,NULL),
('result','course_reg','7213',2438,NULL),
('result','course_reg','7214',2439,NULL),
('result','course_reg','7215',2440,NULL),
('result','course_reg','7216',2441,NULL),
('result','course_reg','7217',2442,NULL),
('result','course_reg','7218',2443,NULL),
('result','course_reg','7219',2444,NULL),
('result','course_reg','7220',2445,NULL),
('result','course_reg','7221',2446,NULL),
('result','course_reg','7222',2447,NULL),
('result','course_reg','7223',2448,NULL),
('result','course_reg','7224',2449,NULL),
('result','course_reg','7225',2450,NULL),
('result','course_reg','7226',2451,NULL),
('result','course_reg','7227',2452,NULL),
('result','course_reg','7228',2453,NULL),
('result','course_reg','7229',2454,NULL),
('result','course_reg','7230',2455,NULL),
('result','course_reg','7231',2456,NULL),
('result','course_reg','7232',2457,NULL),
('result','course_reg','7233',2458,NULL),
('result','course_reg','7234',2459,NULL),
('result','course_reg','7235',2460,NULL),
('result','course_reg','7236',2461,NULL),
('result','course_reg','7237',2462,NULL),
('result','course_reg','7238',2463,NULL),
('result','course_reg','7239',2464,NULL),
('result','course_reg','7240',2465,NULL),
('result','course_reg','7241',2466,NULL),
('result','course_reg','7242',2467,NULL),
('result','course_reg','7243',2468,NULL),
('result','course_reg','7244',2469,NULL),
('result','course_reg','7245',2470,NULL),
('result','course_reg','7246',2471,NULL),
('result','course_reg','7247',2472,NULL),
('result','course_reg','7248',2473,NULL),
('result','course_reg','7249',2474,NULL),
('result','course_reg','7250',2475,NULL),
('result','course_reg','7251',2476,NULL),
('result','course_reg','7252',2477,NULL),
('result','course_reg','7253',2478,NULL),
('result','course_reg','7254',2479,NULL),
('result','course_reg','7255',2480,NULL),
('result','course_reg','7256',2481,NULL),
('result','course_reg','7257',2482,NULL),
('result','course_reg','7258',2483,NULL),
('result','course_reg','7259',2484,NULL),
('result','course_reg','7260',2485,NULL),
('result','course_reg','7261',2486,NULL),
('result','course_reg','7262',2487,NULL),
('result','course_reg','7263',2488,NULL),
('result','course_reg','7264',2489,NULL);
INSERT INTO `legacy_mappings` (`entity_type`,`legacy_table`,`legacy_id`,`new_id`,`notes`) VALUES
('result','course_reg','7265',2490,NULL),
('result','course_reg','7266',2491,NULL),
('result','course_reg','7267',2492,NULL),
('result','course_reg','7268',2493,NULL),
('result','course_reg','7269',2494,NULL),
('result','course_reg','7270',2495,NULL),
('result','course_reg','7271',2496,NULL),
('result','course_reg','7272',2497,NULL),
('result','course_reg','7273',2498,NULL),
('result','course_reg','7274',2499,NULL),
('result','course_reg','7275',2500,NULL),
('result','course_reg','7276',2501,NULL),
('result','course_reg','7277',2502,NULL),
('result','course_reg','7280',2503,NULL),
('result','course_reg','7281',2504,NULL),
('result','course_reg','7282',2505,NULL),
('result','course_reg','7284',2506,NULL),
('result','course_reg','7285',2507,NULL),
('result','course_reg','7286',2508,NULL),
('result','course_reg','7287',2509,NULL),
('result','course_reg','7288',2510,NULL),
('result','course_reg','7289',2511,NULL),
('result','course_reg','7290',2512,NULL),
('result','course_reg','7291',2513,NULL),
('result','course_reg','7292',2514,NULL),
('result','course_reg','7293',2515,NULL),
('result','course_reg','7294',2516,NULL),
('result','course_reg','7295',2517,NULL),
('result','course_reg','7296',2518,NULL),
('result','course_reg','7297',2519,NULL),
('result','course_reg','7298',2520,NULL),
('result','course_reg','7299',2521,NULL),
('result','course_reg','7300',2522,NULL),
('result','course_reg','7301',2523,NULL),
('result','course_reg','7302',2524,NULL),
('result','course_reg','7303',2525,NULL),
('result','course_reg','7304',2526,NULL),
('result','course_reg','7305',2527,NULL),
('result','course_reg','7306',2528,NULL),
('result','course_reg','7307',2529,NULL),
('result','course_reg','7308',2530,NULL),
('result','course_reg','7309',2531,NULL),
('result','course_reg','7310',2532,NULL),
('result','course_reg','7311',2533,NULL),
('result','course_reg','7312',2534,NULL),
('result','course_reg','7313',2535,NULL),
('result','course_reg','7314',2536,NULL),
('result','course_reg','7315',2537,NULL),
('result','course_reg','7316',2538,NULL),
('result','course_reg','7317',2539,NULL),
('result','course_reg','7318',2540,NULL),
('result','course_reg','7319',2541,NULL),
('result','course_reg','7320',2542,NULL),
('result','course_reg','7321',2543,NULL),
('result','course_reg','7322',2544,NULL),
('result','course_reg','7323',2545,NULL),
('result','course_reg','7324',2546,NULL),
('result','course_reg','7325',2547,NULL),
('result','course_reg','7326',2548,NULL),
('result','course_reg','7327',2549,NULL),
('result','course_reg','7328',2550,NULL),
('result','course_reg','7329',2551,NULL),
('result','course_reg','7330',2552,NULL),
('result','course_reg','7331',2553,NULL),
('result','course_reg','7332',2554,NULL),
('result','course_reg','7333',2555,NULL),
('result','course_reg','7334',2556,NULL),
('result','course_reg','7335',2557,NULL),
('result','course_reg','7336',2558,NULL),
('result','course_reg','7337',2559,NULL),
('result','course_reg','7338',2560,NULL),
('result','course_reg','7339',2561,NULL),
('result','course_reg','7340',2562,NULL),
('result','course_reg','7341',2563,NULL),
('result','course_reg','7342',2564,NULL),
('result','course_reg','7343',2565,NULL),
('result','course_reg','7344',2566,NULL),
('result','course_reg','7345',2567,NULL),
('result','course_reg','7346',2568,NULL),
('result','course_reg','7347',2569,NULL),
('result','course_reg','7348',2570,NULL),
('result','course_reg','7349',2571,NULL),
('result','course_reg','7350',2572,NULL),
('result','course_reg','7351',2573,NULL),
('result','course_reg','7352',2574,NULL),
('result','course_reg','7353',2575,NULL),
('result','course_reg','7354',2576,NULL),
('result','course_reg','7355',2577,NULL),
('result','course_reg','7356',2578,NULL),
('result','course_reg','7357',2579,NULL),
('result','course_reg','7359',2580,NULL),
('result','course_reg','7360',2581,NULL),
('result','course_reg','7362',2582,NULL),
('result','course_reg','7363',2583,NULL),
('result','course_reg','7364',2584,NULL),
('result','course_reg','7365',2585,NULL),
('result','course_reg','7366',2586,NULL),
('result','course_reg','7367',2587,NULL),
('result','course_reg','7368',2588,NULL),
('result','course_reg','7369',2589,NULL),
('result','course_reg','7370',2590,NULL),
('result','course_reg','7371',2591,NULL),
('result','course_reg','7372',2592,NULL),
('result','course_reg','7374',2593,NULL),
('result','course_reg','7376',2594,NULL),
('result','course_reg','7378',2595,NULL),
('result','course_reg','7380',2596,NULL),
('result','course_reg','7381',2597,NULL),
('result','course_reg','7382',2598,NULL),
('result','course_reg','7383',2599,NULL),
('result','course_reg','7384',2600,NULL),
('result','course_reg','7385',2601,NULL),
('result','course_reg','7386',2602,NULL),
('result','course_reg','7387',2603,NULL),
('result','course_reg','7388',2604,NULL),
('result','course_reg','7389',2605,NULL),
('result','course_reg','7390',2606,NULL),
('result','course_reg','7391',2607,NULL),
('result','course_reg','7392',2608,NULL),
('result','course_reg','7393',2609,NULL),
('result','course_reg','7394',2610,NULL),
('result','course_reg','7395',2611,NULL),
('result','course_reg','7396',2612,NULL),
('result','course_reg','7397',2613,NULL),
('result','course_reg','7398',2614,NULL),
('result','course_reg','7399',2615,NULL),
('result','course_reg','7400',2616,NULL),
('result','course_reg','7401',2617,NULL),
('result','course_reg','7402',2618,NULL),
('result','course_reg','7403',2619,NULL),
('result','course_reg','7404',2620,NULL),
('result','course_reg','7405',2621,NULL),
('result','course_reg','7406',2622,NULL),
('result','course_reg','7407',2623,NULL),
('result','course_reg','7409',2624,NULL),
('result','course_reg','7410',2625,NULL),
('result','course_reg','7411',2626,NULL),
('result','course_reg','7412',2627,NULL),
('result','course_reg','7413',2628,NULL),
('result','course_reg','7414',2629,NULL),
('result','course_reg','7415',2630,NULL),
('result','course_reg','7416',2631,NULL),
('result','course_reg','7417',2632,NULL),
('result','course_reg','7418',2633,NULL),
('result','course_reg','7419',2634,NULL),
('result','course_reg','7420',2635,NULL),
('result','course_reg','7421',2636,NULL),
('result','course_reg','7422',2637,NULL),
('result','course_reg','7423',2638,NULL),
('result','course_reg','7424',2639,NULL),
('result','course_reg','7425',2640,NULL),
('result','course_reg','7426',2641,NULL),
('result','course_reg','7427',2642,NULL),
('result','course_reg','7428',2643,NULL),
('result','course_reg','7429',2644,NULL),
('result','course_reg','7430',2645,NULL),
('result','course_reg','7431',2646,NULL),
('result','course_reg','7432',2647,NULL),
('result','course_reg','7433',2648,NULL),
('result','course_reg','7434',2649,NULL),
('result','course_reg','7435',2650,NULL),
('result','course_reg','7436',2651,NULL),
('result','course_reg','7437',2652,NULL),
('result','course_reg','7438',2653,NULL),
('result','course_reg','7439',2654,NULL),
('result','course_reg','7440',2655,NULL),
('result','course_reg','7442',2656,NULL),
('result','course_reg','7443',2657,NULL),
('result','course_reg','7444',2658,NULL),
('result','course_reg','7445',2659,NULL),
('result','course_reg','7446',2660,NULL),
('result','course_reg','7447',2661,NULL),
('result','course_reg','7448',2662,NULL),
('result','course_reg','7449',2663,NULL),
('result','course_reg','7450',2664,NULL),
('result','course_reg','7451',2665,NULL),
('result','course_reg','7452',2666,NULL),
('result','course_reg','7453',2667,NULL),
('result','course_reg','7454',2668,NULL),
('result','course_reg','7455',2669,NULL),
('result','course_reg','7456',2670,NULL),
('result','course_reg','7457',2671,NULL),
('result','course_reg','7458',2672,NULL),
('result','course_reg','7459',2673,NULL),
('result','course_reg','7460',2674,NULL),
('result','course_reg','7461',2675,NULL),
('result','course_reg','7465',2676,NULL),
('result','course_reg','7466',2677,NULL),
('result','course_reg','7468',2678,NULL),
('result','course_reg','7469',2679,NULL),
('result','course_reg','7471',2680,NULL),
('result','course_reg','7472',2681,NULL),
('result','course_reg','7473',2682,NULL),
('result','course_reg','7474',2683,NULL),
('result','course_reg','7484',2684,NULL),
('result','course_reg','7485',2685,NULL),
('result','course_reg','7486',2686,NULL),
('result','course_reg','7487',2687,NULL),
('result','course_reg','7488',2688,NULL),
('result','course_reg','7489',2689,NULL),
('result','course_reg','7490',2690,NULL),
('result','course_reg','7491',2691,NULL),
('result','course_reg','7492',2692,NULL),
('result','course_reg','7493',2693,NULL),
('result','course_reg','7494',2694,NULL),
('result','course_reg','7495',2695,NULL),
('result','course_reg','7496',2696,NULL),
('result','course_reg','7497',2697,NULL),
('result','course_reg','7498',2698,NULL),
('result','course_reg','7499',2699,NULL),
('result','course_reg','7500',2700,NULL),
('result','course_reg','7501',2701,NULL),
('result','course_reg','7502',2702,NULL),
('result','course_reg','7503',2703,NULL),
('result','course_reg','7504',2704,NULL),
('result','course_reg','7505',2705,NULL),
('result','course_reg','7506',2706,NULL),
('result','course_reg','7507',2707,NULL),
('result','course_reg','7508',2708,NULL),
('result','course_reg','7509',2709,NULL),
('result','course_reg','7510',2710,NULL),
('result','course_reg','7511',2711,NULL),
('result','course_reg','7512',2712,NULL),
('result','course_reg','7513',2713,NULL),
('result','course_reg','7514',2714,NULL),
('result','course_reg','7515',2715,NULL),
('result','course_reg','7516',2716,NULL),
('result','course_reg','7517',2717,NULL),
('result','course_reg','7518',2718,NULL),
('result','course_reg','7519',2719,NULL),
('result','course_reg','7520',2720,NULL),
('result','course_reg','7521',2721,NULL),
('result','course_reg','7522',2722,NULL),
('result','course_reg','7524',2723,NULL),
('result','course_reg','7525',2724,NULL),
('result','course_reg','7527',2725,NULL),
('result','course_reg','7528',2726,NULL),
('result','course_reg','7529',2727,NULL),
('result','course_reg','7530',2728,NULL),
('result','course_reg','7531',2729,NULL),
('result','course_reg','7532',2730,NULL),
('result','course_reg','7533',2731,NULL),
('result','course_reg','7534',2732,NULL),
('result','course_reg','7535',2733,NULL),
('result','course_reg','7536',2734,NULL),
('result','course_reg','7537',2735,NULL),
('result','course_reg','7538',2736,NULL),
('result','course_reg','7539',2737,NULL),
('result','course_reg','7540',2738,NULL),
('result','course_reg','7541',2739,NULL);
INSERT INTO `legacy_mappings` (`entity_type`,`legacy_table`,`legacy_id`,`new_id`,`notes`) VALUES
('result','course_reg','7542',2740,NULL),
('result','course_reg','7543',2741,NULL),
('result','course_reg','7544',2742,NULL),
('result','course_reg','7546',2743,NULL),
('result','course_reg','7547',2744,NULL),
('result','course_reg','7548',2745,NULL),
('result','course_reg','7549',2746,NULL),
('result','course_reg','7550',2747,NULL),
('result','course_reg','7551',2748,NULL),
('result','course_reg','7552',2749,NULL),
('result','course_reg','7553',2750,NULL),
('result','course_reg','7554',2751,NULL),
('result','course_reg','7555',2752,NULL),
('result','course_reg','7556',2753,NULL),
('result','course_reg','7558',2754,NULL),
('result','course_reg','7559',2755,NULL),
('result','course_reg','7560',2756,NULL),
('result','course_reg','7561',2757,NULL),
('result','course_reg','7562',2758,NULL),
('result','course_reg','7563',2759,NULL),
('result','course_reg','7564',2760,NULL),
('result','course_reg','7565',2761,NULL),
('result','course_reg','7566',2762,NULL),
('result','course_reg','7567',2763,NULL),
('result','course_reg','7568',2764,NULL),
('result','course_reg','7569',2765,NULL),
('result','course_reg','7570',2766,NULL),
('result','course_reg','7572',2767,NULL),
('result','course_reg','7573',2768,NULL),
('result','course_reg','7574',2769,NULL),
('result','course_reg','7575',2770,NULL),
('result','course_reg','7576',2771,NULL),
('result','course_reg','7577',2772,NULL),
('result','course_reg','7578',2773,NULL),
('result','course_reg','7579',2774,NULL),
('result','course_reg','7580',2775,NULL),
('result','course_reg','7581',2776,NULL),
('result','course_reg','7582',2777,NULL),
('result','course_reg','7583',2778,NULL),
('result','course_reg','7585',2779,NULL),
('result','course_reg','7587',2780,NULL),
('result','course_reg','7589',2781,NULL),
('result','course_reg','7590',2782,NULL),
('result','course_reg','7591',2783,NULL),
('result','course_reg','7592',2784,NULL),
('result','course_reg','7593',2785,NULL),
('result','course_reg','7594',2786,NULL),
('result','course_reg','7595',2787,NULL),
('result','course_reg','7596',2788,NULL),
('result','course_reg','7597',2789,NULL),
('result','course_reg','7598',2790,NULL),
('result','course_reg','7599',2791,NULL),
('result','course_reg','7600',2792,NULL),
('result','course_reg','7601',2793,NULL),
('result','course_reg','7602',2794,NULL),
('result','course_reg','7603',2795,NULL),
('result','course_reg','7604',2796,NULL),
('result','course_reg','7605',2797,NULL),
('result','course_reg','7606',2798,NULL),
('result','course_reg','7607',2799,NULL),
('result','course_reg','7608',2800,NULL),
('result','course_reg','7609',2801,NULL),
('result','course_reg','7610',2802,NULL),
('result','course_reg','7611',2803,NULL),
('result','course_reg','7612',2804,NULL),
('result','course_reg','7613',2805,NULL),
('result','course_reg','7614',2806,NULL),
('result','course_reg','7615',2807,NULL),
('result','course_reg','7616',2808,NULL),
('result','course_reg','7619',2809,NULL),
('result','course_reg','7620',2810,NULL),
('result','course_reg','7621',2811,NULL),
('result','course_reg','7623',2812,NULL),
('result','course_reg','7624',2813,NULL),
('result','course_reg','7625',2814,NULL),
('result','course_reg','7626',2815,NULL),
('result','course_reg','7628',2816,NULL),
('result','course_reg','7629',2817,NULL),
('result','course_reg','7630',2818,NULL),
('result','course_reg','7631',2819,NULL),
('result','course_reg','7632',2820,NULL),
('result','course_reg','7633',2821,NULL),
('result','course_reg','7634',2822,NULL),
('result','course_reg','7635',2823,NULL),
('result','course_reg','7636',2824,NULL),
('result','course_reg','7637',2825,NULL),
('result','course_reg','7638',2826,NULL),
('result','course_reg','7639',2827,NULL),
('result','course_reg','7640',2828,NULL),
('result','course_reg','7641',2829,NULL),
('result','course_reg','7642',2830,NULL),
('result','course_reg','7643',2831,NULL),
('result','course_reg','7644',2832,NULL),
('result','course_reg','7645',2833,NULL),
('result','course_reg','7646',2834,NULL),
('result','course_reg','7647',2835,NULL),
('result','course_reg','7649',2836,NULL),
('result','course_reg','7650',2837,NULL),
('result','course_reg','7651',2838,NULL),
('result','course_reg','7652',2839,NULL),
('result','course_reg','7653',2840,NULL),
('result','course_reg','7654',2841,NULL),
('result','course_reg','7655',2842,NULL),
('result','course_reg','7656',2843,NULL),
('result','course_reg','7657',2844,NULL),
('result','course_reg','7658',2845,NULL),
('result','course_reg','7659',2846,NULL),
('result','course_reg','7660',2847,NULL),
('result','course_reg','7661',2848,NULL),
('result','course_reg','7662',2849,NULL),
('result','course_reg','7663',2850,NULL),
('result','course_reg','7664',2851,NULL),
('result','course_reg','7665',2852,NULL),
('result','course_reg','7666',2853,NULL),
('result','course_reg','7667',2854,NULL),
('result','course_reg','7668',2855,NULL),
('result','course_reg','7669',2856,NULL),
('result','course_reg','7670',2857,NULL),
('result','course_reg','7671',2858,NULL),
('result','course_reg','7672',2859,NULL),
('result','course_reg','7673',2860,NULL),
('result','course_reg','7674',2861,NULL),
('result','course_reg','7675',2862,NULL),
('result','course_reg','7676',2863,NULL),
('result','course_reg','7677',2864,NULL),
('result','course_reg','7678',2865,NULL),
('result','course_reg','7679',2866,NULL),
('result','course_reg','7680',2867,NULL),
('result','course_reg','7681',2868,NULL),
('result','course_reg','7682',2869,NULL),
('result','course_reg','7683',2870,NULL),
('result','course_reg','7684',2871,NULL),
('result','course_reg','7685',2872,NULL),
('result','course_reg','7686',2873,NULL),
('result','course_reg','7687',2874,NULL),
('result','course_reg','7688',2875,NULL),
('result','course_reg','7689',2876,NULL),
('result','course_reg','7690',2877,NULL),
('result','course_reg','7691',2878,NULL),
('result','course_reg','7692',2879,NULL),
('result','course_reg','7693',2880,NULL),
('result','course_reg','7694',2881,NULL),
('result','course_reg','7695',2882,NULL),
('result','course_reg','7696',2883,NULL),
('result','course_reg','7697',2884,NULL),
('result','course_reg','7698',2885,NULL),
('result','course_reg','7699',2886,NULL),
('result','course_reg','7700',2887,NULL),
('result','course_reg','7701',2888,NULL),
('result','course_reg','7702',2889,NULL),
('result','course_reg','7703',2890,NULL),
('result','course_reg','7704',2891,NULL),
('result','course_reg','7705',2892,NULL),
('result','course_reg','7706',2893,NULL),
('result','course_reg','7707',2894,NULL),
('result','course_reg','7708',2895,NULL),
('result','course_reg','7709',2896,NULL),
('result','course_reg','7710',2897,NULL),
('result','course_reg','7711',2898,NULL),
('result','course_reg','7713',2899,NULL),
('result','course_reg','7714',2900,NULL),
('result','course_reg','7715',2901,NULL),
('result','course_reg','7716',2902,NULL),
('result','course_reg','7717',2903,NULL),
('result','course_reg','7718',2904,NULL),
('result','course_reg','7719',2905,NULL),
('result','course_reg','7720',2906,NULL),
('result','course_reg','7721',2907,NULL),
('result','course_reg','7722',2908,NULL),
('result','course_reg','7723',2909,NULL),
('result','course_reg','7724',2910,NULL),
('result','course_reg','7725',2911,NULL),
('result','course_reg','7726',2912,NULL),
('result','course_reg','7727',2913,NULL),
('result','course_reg','7728',2914,NULL),
('result','course_reg','7729',2915,NULL),
('result','course_reg','7730',2916,NULL),
('result','course_reg','7731',2917,NULL),
('result','course_reg','7732',2918,NULL),
('result','course_reg','7733',2919,NULL),
('result','course_reg','7734',2920,NULL),
('result','course_reg','7735',2921,NULL),
('result','course_reg','7736',2922,NULL),
('result','course_reg','7737',2923,NULL),
('result','course_reg','7738',2924,NULL),
('result','course_reg','7739',2925,NULL),
('result','course_reg','7740',2926,NULL),
('result','course_reg','7741',2927,NULL),
('result','course_reg','7742',2928,NULL),
('result','course_reg','7743',2929,NULL),
('result','course_reg','7744',2930,NULL),
('result','course_reg','7745',2931,NULL),
('result','course_reg','7746',2932,NULL),
('result','course_reg','7747',2933,NULL),
('result','course_reg','7748',2934,NULL),
('result','course_reg','7749',2935,NULL),
('result','course_reg','7750',2936,NULL),
('result','course_reg','7751',2937,NULL),
('result','course_reg','7752',2938,NULL),
('result','course_reg','7753',2939,NULL),
('result','course_reg','7754',2940,NULL),
('result','course_reg','7755',2941,NULL),
('result','course_reg','7756',2942,NULL),
('result','course_reg','7757',2943,NULL),
('result','course_reg','7758',2944,NULL),
('result','course_reg','7759',2945,NULL),
('result','course_reg','7760',2946,NULL),
('result','course_reg','7761',2947,NULL),
('result','course_reg','7762',2948,NULL),
('result','course_reg','7763',2949,NULL),
('result','course_reg','7764',2950,NULL),
('result','course_reg','7765',2951,NULL),
('result','course_reg','7766',2952,NULL),
('result','course_reg','7767',2953,NULL),
('result','course_reg','7768',2954,NULL),
('result','course_reg','7769',2955,NULL),
('result','course_reg','7770',2956,NULL),
('result','course_reg','7771',2957,NULL),
('result','course_reg','7772',2958,NULL),
('result','course_reg','7773',2959,NULL),
('result','course_reg','7774',2960,NULL),
('result','course_reg','7775',2961,NULL),
('result','course_reg','7776',2962,NULL),
('result','course_reg','7777',2963,NULL),
('result','course_reg','7778',2964,NULL),
('result','course_reg','7779',2965,NULL),
('result','course_reg','7780',2966,NULL),
('result','course_reg','7781',2967,NULL),
('result','course_reg','7782',2968,NULL),
('result','course_reg','7783',2969,NULL),
('result','course_reg','7784',2970,NULL),
('result','course_reg','7785',2971,NULL),
('result','course_reg','7786',2972,NULL),
('result','course_reg','7787',2973,NULL),
('result','course_reg','7788',2974,NULL),
('result','course_reg','7789',2975,NULL),
('result','course_reg','7790',2976,NULL),
('result','course_reg','7791',2977,NULL),
('result','course_reg','7792',2978,NULL),
('result','course_reg','7793',2979,NULL),
('result','course_reg','7794',2980,NULL),
('result','course_reg','7795',2981,NULL),
('result','course_reg','7796',2982,NULL),
('result','course_reg','7797',2983,NULL),
('result','course_reg','7798',2984,NULL),
('result','course_reg','7799',2985,NULL),
('result','course_reg','7800',2986,NULL),
('result','course_reg','7801',2987,NULL),
('result','course_reg','7802',2988,NULL),
('result','course_reg','7803',2989,NULL);
INSERT INTO `legacy_mappings` (`entity_type`,`legacy_table`,`legacy_id`,`new_id`,`notes`) VALUES
('result','course_reg','7804',2990,NULL),
('result','course_reg','7805',2991,NULL),
('result','course_reg','7806',2992,NULL),
('result','course_reg','7807',2993,NULL),
('result','course_reg','7808',2994,NULL),
('result','course_reg','7809',2995,NULL),
('result','course_reg','7810',2996,NULL),
('result','course_reg','7811',2997,NULL),
('result','course_reg','7812',2998,NULL),
('result','course_reg','7813',2999,NULL),
('result','course_reg','7814',3000,NULL),
('result','course_reg','7815',3001,NULL),
('result','course_reg','7816',3002,NULL),
('result','course_reg','7817',3003,NULL),
('result','course_reg','7818',3004,NULL),
('result','course_reg','7819',3005,NULL),
('result','course_reg','7820',3006,NULL),
('result','course_reg','7821',3007,NULL),
('result','course_reg','7822',3008,NULL),
('result','course_reg','7823',3009,NULL),
('result','course_reg','7824',3010,NULL),
('result','course_reg','7825',3011,NULL),
('result','course_reg','7826',3012,NULL),
('result','course_reg','7827',3013,NULL),
('result','course_reg','7828',3014,NULL),
('result','course_reg','7829',3015,NULL),
('result','course_reg','7830',3016,NULL),
('result','course_reg','7831',3017,NULL),
('result','course_reg','7832',3018,NULL),
('result','course_reg','7833',3019,NULL),
('result','course_reg','7835',3020,NULL),
('result','course_reg','7836',3021,NULL),
('result','course_reg','7837',3022,NULL),
('result','course_reg','7838',3023,NULL),
('result','course_reg','7839',3024,NULL),
('result','course_reg','7840',3025,NULL),
('result','course_reg','7841',3026,NULL),
('result','course_reg','7842',3027,NULL),
('result','course_reg','7843',3028,NULL),
('result','course_reg','7845',3029,NULL),
('result','course_reg','7846',3030,NULL),
('result','course_reg','7848',3031,NULL),
('result','course_reg','7849',3032,NULL),
('result','course_reg','7850',3033,NULL),
('result','course_reg','7851',3034,NULL),
('result','course_reg','7852',3035,NULL),
('result','course_reg','7853',3036,NULL),
('result','course_reg','7854',3037,NULL),
('result','course_reg','7859',3038,NULL),
('result','course_reg','7862',3039,NULL),
('result','course_reg','7863',3040,NULL),
('result','course_reg','7864',3041,NULL),
('result','course_reg','7865',3042,NULL),
('result','course_reg','7866',3043,NULL),
('result','course_reg','7867',3044,NULL),
('result','course_reg','7868',3045,NULL),
('result','course_reg','7869',3046,NULL),
('result','course_reg','7870',3047,NULL),
('result','course_reg','7871',3048,NULL),
('result','course_reg','7872',3049,NULL),
('result','course_reg','7873',3050,NULL),
('result','course_reg','7874',3051,NULL),
('result','course_reg','7875',3052,NULL),
('result','course_reg','7876',3053,NULL),
('result','course_reg','7877',3054,NULL),
('result','course_reg','7878',3055,NULL),
('result','course_reg','7879',3056,NULL),
('result','course_reg','7880',3057,NULL),
('result','course_reg','7881',3058,NULL),
('result','course_reg','7890',3059,NULL),
('result','course_reg','7891',3060,NULL),
('result','course_reg','7892',3061,NULL),
('result','course_reg','7893',3062,NULL),
('result','course_reg','7894',3063,NULL),
('result','course_reg','7895',3064,NULL),
('result','course_reg','7896',3065,NULL),
('result','course_reg','7897',3066,NULL),
('result','course_reg','7898',3067,NULL),
('result','course_reg','7899',3068,NULL),
('result','course_reg','7900',3069,NULL),
('result','course_reg','7901',3070,NULL),
('result','course_reg','7902',3071,NULL),
('result','course_reg','7903',3072,NULL),
('result','course_reg','7904',3073,NULL),
('result','course_reg','7905',3074,NULL),
('result','course_reg','7906',3075,NULL),
('result','course_reg','7907',3076,NULL),
('result','course_reg','7908',3077,NULL),
('result','course_reg','7909',3078,NULL),
('result','course_reg','7910',3079,NULL),
('result','course_reg','7911',3080,NULL),
('result','course_reg','7912',3081,NULL),
('result','course_reg','7913',3082,NULL),
('result','course_reg','7914',3083,NULL),
('result','course_reg','7915',3084,NULL),
('result','course_reg','7916',3085,NULL),
('result','course_reg','7917',3086,NULL),
('result','course_reg','7918',3087,NULL),
('result','course_reg','7919',3088,NULL),
('result','course_reg','7920',3089,NULL),
('result','course_reg','7921',3090,NULL),
('result','course_reg','7922',3091,NULL),
('result','course_reg','7923',3092,NULL),
('result','course_reg','7926',3093,NULL),
('result','course_reg','7927',3094,NULL),
('result','course_reg','7928',3095,NULL),
('result','course_reg','7929',3096,NULL),
('result','course_reg','7930',3097,NULL),
('result','course_reg','7931',3098,NULL),
('result','course_reg','7932',3099,NULL),
('result','course_reg','7933',3100,NULL),
('result','course_reg','7934',3101,NULL),
('result','course_reg','7935',3102,NULL),
('result','course_reg','7936',3103,NULL),
('result','course_reg','7937',3104,NULL),
('result','course_reg','7938',3105,NULL),
('result','course_reg','7939',3106,NULL),
('result','course_reg','7940',3107,NULL),
('result','course_reg','7941',3108,NULL),
('result','course_reg','7942',3109,NULL),
('result','course_reg','7943',3110,NULL),
('result','course_reg','7944',3111,NULL),
('result','course_reg','7945',3112,NULL),
('result','course_reg','7946',3113,NULL),
('result','course_reg','7947',3114,NULL),
('result','course_reg','7948',3115,NULL),
('result','course_reg','7949',3116,NULL),
('result','course_reg','7950',3117,NULL),
('result','course_reg','7951',3118,NULL),
('result','course_reg','7952',3119,NULL),
('result','course_reg','7953',3120,NULL),
('result','course_reg','7954',3121,NULL),
('result','course_reg','7955',3122,NULL),
('result','course_reg','7956',3123,NULL),
('result','course_reg','7957',3124,NULL),
('result','course_reg','7958',3125,NULL),
('result','course_reg','7959',3126,NULL),
('result','course_reg','7960',3127,NULL),
('result','course_reg','7961',3128,NULL),
('result','course_reg','7962',3129,NULL),
('result','course_reg','7963',3130,NULL),
('result','course_reg','7964',3131,NULL),
('result','course_reg','7965',3132,NULL),
('result','course_reg','7966',3133,NULL),
('result','course_reg','7967',3134,NULL),
('result','course_reg','7968',3135,NULL),
('result','course_reg','7969',3136,NULL),
('result','course_reg','7971',3137,NULL),
('result','course_reg','7972',3138,NULL),
('result','course_reg','7974',3139,NULL),
('result','course_reg','7975',3140,NULL),
('result','course_reg','7976',3141,NULL),
('result','course_reg','7977',3142,NULL),
('result','course_reg','7978',3143,NULL),
('result','course_reg','7979',3144,NULL),
('result','course_reg','7981',3145,NULL),
('result','course_reg','7982',3146,NULL),
('result','course_reg','7983',3147,NULL),
('result','course_reg','7984',3148,NULL),
('result','course_reg','7985',3149,NULL),
('result','course_reg','7986',3150,NULL),
('result','course_reg','7987',3151,NULL),
('result','course_reg','7989',3152,NULL),
('result','course_reg','7990',3153,NULL),
('result','course_reg','7991',3154,NULL),
('result','course_reg','7992',3155,NULL),
('result','course_reg','7993',3156,NULL),
('result','course_reg','7994',3157,NULL),
('result','course_reg','7995',3158,NULL),
('result','course_reg','7996',3159,NULL),
('result','course_reg','7997',3160,NULL),
('result','course_reg','7998',3161,NULL),
('result','course_reg','7999',3162,NULL),
('result','course_reg','8000',3163,NULL),
('result','course_reg','8001',3164,NULL),
('result','course_reg','8002',3165,NULL),
('result','course_reg','8003',3166,NULL),
('result','course_reg','8004',3167,NULL),
('result','course_reg','8005',3168,NULL),
('result','course_reg','8006',3169,NULL),
('result','course_reg','8007',3170,NULL),
('result','course_reg','8008',3171,NULL),
('result','course_reg','8009',3172,NULL),
('result','course_reg','8010',3173,NULL),
('result','course_reg','8011',3174,NULL),
('result','course_reg','8012',3175,NULL),
('result','course_reg','8013',3176,NULL),
('result','course_reg','8014',3177,NULL),
('result','course_reg','8015',3178,NULL),
('result','course_reg','8016',3179,NULL),
('result','course_reg','8017',3180,NULL),
('result','course_reg','8018',3181,NULL),
('result','course_reg','8019',3182,NULL),
('result','course_reg','8020',3183,NULL),
('result','course_reg','8021',3184,NULL),
('result','course_reg','8022',3185,NULL),
('result','course_reg','8023',3186,NULL),
('result','course_reg','8024',3187,NULL),
('result','course_reg','8025',3188,NULL),
('result','course_reg','8026',3189,NULL),
('result','course_reg','8027',3190,NULL),
('result','course_reg','8028',3191,NULL),
('result','course_reg','8029',3192,NULL),
('result','course_reg','8030',3193,NULL),
('result','course_reg','8031',3194,NULL),
('result','course_reg','8032',3195,NULL),
('result','course_reg','8033',3196,NULL),
('result','course_reg','8034',3197,NULL),
('result','course_reg','8035',3198,NULL),
('result','course_reg','8036',3199,NULL),
('result','course_reg','8037',3200,NULL),
('result','course_reg','8038',3201,NULL),
('result','course_reg','8039',3202,NULL),
('result','course_reg','8040',3203,NULL),
('result','course_reg','8041',3204,NULL),
('result','course_reg','8043',3205,NULL),
('result','course_reg','8044',3206,NULL),
('result','course_reg','8045',3207,NULL),
('result','course_reg','8046',3208,NULL),
('result','course_reg','8047',3209,NULL),
('result','course_reg','8048',3210,NULL),
('result','course_reg','8049',3211,NULL),
('result','course_reg','8050',3212,NULL),
('result','course_reg','8051',3213,NULL),
('result','course_reg','8052',3214,NULL),
('result','course_reg','8053',3215,NULL),
('result','course_reg','8054',3216,NULL),
('result','course_reg','8055',3217,NULL),
('result','course_reg','8056',3218,NULL),
('result','course_reg','8057',3219,NULL),
('result','course_reg','8058',3220,NULL),
('result','course_reg','8059',3221,NULL),
('result','course_reg','8060',3222,NULL),
('result','course_reg','8061',3223,NULL),
('result','course_reg','8062',3224,NULL),
('result','course_reg','8063',3225,NULL),
('result','course_reg','8064',3226,NULL),
('result','course_reg','8065',3227,NULL),
('result','course_reg','8066',3228,NULL),
('result','course_reg','8067',3229,NULL),
('result','course_reg','8068',3230,NULL),
('result','course_reg','8069',3231,NULL),
('result','course_reg','8070',3232,NULL),
('result','course_reg','8071',3233,NULL),
('result','course_reg','8072',3234,NULL),
('result','course_reg','8073',3235,NULL),
('result','course_reg','8074',3236,NULL),
('result','course_reg','8075',3237,NULL),
('result','course_reg','8076',3238,NULL),
('result','course_reg','8077',3239,NULL);
INSERT INTO `legacy_mappings` (`entity_type`,`legacy_table`,`legacy_id`,`new_id`,`notes`) VALUES
('result','course_reg','8078',3240,NULL),
('result','course_reg','8079',3241,NULL),
('result','course_reg','8080',3242,NULL),
('result','course_reg','8081',3243,NULL),
('result','course_reg','8082',3244,NULL),
('result','course_reg','8083',3245,NULL),
('result','course_reg','8084',3246,NULL),
('result','course_reg','8085',3247,NULL),
('result','course_reg','8086',3248,NULL),
('result','course_reg','8087',3249,NULL),
('result','course_reg','8088',3250,NULL),
('result','course_reg','8089',3251,NULL),
('result','course_reg','8090',3252,NULL),
('result','course_reg','8091',3253,NULL),
('result','course_reg','8092',3254,NULL),
('result','course_reg','8093',3255,NULL),
('result','course_reg','8094',3256,NULL),
('result','course_reg','8095',3257,NULL),
('result','course_reg','8096',3258,NULL),
('result','course_reg','8097',3259,NULL),
('result','course_reg','8098',3260,NULL),
('result','course_reg','8099',3261,NULL),
('result','course_reg','8100',3262,NULL),
('result','course_reg','8101',3263,NULL),
('result','course_reg','8102',3264,NULL),
('result','course_reg','8103',3265,NULL),
('result','course_reg','8104',3266,NULL),
('result','course_reg','8105',3267,NULL),
('result','course_reg','8106',3268,NULL),
('result','course_reg','8107',3269,NULL),
('result','course_reg','8108',3270,NULL),
('result','course_reg','8109',3271,NULL),
('result','course_reg','8110',3272,NULL),
('result','course_reg','8111',3273,NULL),
('result','course_reg','8112',3274,NULL),
('result','course_reg','8113',3275,NULL),
('result','course_reg','8114',3276,NULL),
('result','course_reg','8115',3277,NULL),
('result','course_reg','8116',3278,NULL),
('result','course_reg','8117',3279,NULL),
('result','course_reg','8118',3280,NULL),
('result','course_reg','8119',3281,NULL),
('result','course_reg','8120',3282,NULL),
('result','course_reg','8121',3283,NULL),
('result','course_reg','8122',3284,NULL),
('result','course_reg','8123',3285,NULL),
('result','course_reg','8124',3286,NULL),
('result','course_reg','8125',3287,NULL),
('result','course_reg','8126',3288,NULL),
('result','course_reg','8127',3289,NULL),
('result','course_reg','8128',3290,NULL),
('result','course_reg','8129',3291,NULL),
('result','course_reg','8130',3292,NULL),
('result','course_reg','8131',3293,NULL),
('result','course_reg','8133',3294,NULL),
('result','course_reg','8134',3295,NULL),
('result','course_reg','8135',3296,NULL),
('result','course_reg','8136',3297,NULL),
('result','course_reg','8137',3298,NULL),
('result','course_reg','8138',3299,NULL),
('result','course_reg','8139',3300,NULL),
('result','course_reg','8140',3301,NULL),
('result','course_reg','8141',3302,NULL),
('result','course_reg','8142',3303,NULL),
('result','course_reg','8143',3304,NULL),
('result','course_reg','8144',3305,NULL),
('result','course_reg','8145',3306,NULL),
('result','course_reg','8146',3307,NULL),
('result','course_reg','8147',3308,NULL),
('result','course_reg','8148',3309,NULL),
('result','course_reg','8149',3310,NULL),
('result','course_reg','8150',3311,NULL),
('result','course_reg','8151',3312,NULL),
('result','course_reg','8152',3313,NULL),
('result','course_reg','8153',3314,NULL),
('result','course_reg','8154',3315,NULL),
('result','course_reg','8155',3316,NULL),
('result','course_reg','8156',3317,NULL),
('result','course_reg','8157',3318,NULL),
('result','course_reg','8158',3319,NULL),
('result','course_reg','8159',3320,NULL),
('result','course_reg','8160',3321,NULL),
('result','course_reg','8161',3322,NULL),
('result','course_reg','8162',3323,NULL),
('result','course_reg','8163',3324,NULL),
('result','course_reg','8164',3325,NULL),
('result','course_reg','8165',3326,NULL),
('result','course_reg','8166',3327,NULL),
('result','course_reg','8167',3328,NULL),
('result','course_reg','8168',3329,NULL),
('result','course_reg','8169',3330,NULL),
('result','course_reg','8170',3331,NULL),
('result','course_reg','8171',3332,NULL),
('result','course_reg','8172',3333,NULL),
('result','course_reg','8173',3334,NULL),
('result','course_reg','8174',3335,NULL),
('result','course_reg','8175',3336,NULL),
('result','course_reg','8176',3337,NULL),
('result','course_reg','8177',3338,NULL),
('result','course_reg','8178',3339,NULL),
('result','course_reg','8179',3340,NULL),
('result','course_reg','8180',3341,NULL),
('result','course_reg','8181',3342,NULL),
('result','course_reg','8182',3343,NULL),
('result','course_reg','8183',3344,NULL),
('result','course_reg','8184',3345,NULL),
('result','course_reg','8185',3346,NULL),
('result','course_reg','8186',3347,NULL),
('result','course_reg','8187',3348,NULL),
('result','course_reg','8188',3349,NULL),
('result','course_reg','8189',3350,NULL),
('result','course_reg','8190',3351,NULL),
('result','course_reg','8191',3352,NULL),
('result','course_reg','8192',3353,NULL),
('result','course_reg','8193',3354,NULL),
('result','course_reg','8194',3355,NULL),
('result','course_reg','8195',3356,NULL),
('result','course_reg','8196',3357,NULL),
('result','course_reg','8197',3358,NULL),
('result','course_reg','8198',3359,NULL),
('result','course_reg','8199',3360,NULL),
('result','course_reg','8201',3361,NULL),
('result','course_reg','8202',3362,NULL),
('result','course_reg','8203',3363,NULL),
('result','course_reg','8204',3364,NULL),
('result','course_reg','8205',3365,NULL),
('result','course_reg','8206',3366,NULL),
('result','course_reg','8207',3367,NULL),
('result','course_reg','8208',3368,NULL),
('result','course_reg','8209',3369,NULL),
('result','course_reg','8210',3370,NULL),
('result','course_reg','8211',3371,NULL),
('result','course_reg','8212',3372,NULL),
('result','course_reg','8213',3373,NULL),
('result','course_reg','8214',3374,NULL),
('result','course_reg','8215',3375,NULL),
('result','course_reg','8216',3376,NULL),
('result','course_reg','8217',3377,NULL),
('result','course_reg','8218',3378,NULL),
('result','course_reg','8219',3379,NULL),
('result','course_reg','8220',3380,NULL),
('result','course_reg','8221',3381,NULL),
('result','course_reg','8222',3382,NULL),
('result','course_reg','8223',3383,NULL),
('result','course_reg','8224',3384,NULL),
('result','course_reg','8225',3385,NULL),
('result','course_reg','8226',3386,NULL),
('result','course_reg','8227',3387,NULL),
('result','course_reg','8228',3388,NULL),
('result','course_reg','8229',3389,NULL),
('result','course_reg','8230',3390,NULL),
('result','course_reg','8231',3391,NULL),
('result','course_reg','8232',3392,NULL),
('result','course_reg','8233',3393,NULL),
('result','course_reg','8234',3394,NULL),
('result','course_reg','8235',3395,NULL),
('result','course_reg','8236',3396,NULL),
('result','course_reg','8237',3397,NULL),
('result','course_reg','8238',3398,NULL),
('result','course_reg','8239',3399,NULL),
('result','course_reg','8240',3400,NULL),
('result','course_reg','8241',3401,NULL),
('result','course_reg','8242',3402,NULL),
('result','course_reg','8243',3403,NULL),
('result','course_reg','8244',3404,NULL),
('result','course_reg','8245',3405,NULL),
('result','course_reg','8246',3406,NULL),
('result','course_reg','8247',3407,NULL),
('result','course_reg','8248',3408,NULL),
('result','course_reg','8249',3409,NULL),
('result','course_reg','8250',3410,NULL),
('result','course_reg','8251',3411,NULL),
('result','course_reg','8252',3412,NULL),
('result','course_reg','8253',3413,NULL),
('result','course_reg','8254',3414,NULL),
('result','course_reg','8255',3415,NULL),
('result','course_reg','8256',3416,NULL),
('result','course_reg','8257',3417,NULL),
('result','course_reg','8258',3418,NULL),
('result','course_reg','8259',3419,NULL),
('result','course_reg','8260',3420,NULL),
('result','course_reg','8261',3421,NULL),
('result','course_reg','8262',3422,NULL),
('result','course_reg','8263',3423,NULL),
('result','course_reg','8264',3424,NULL),
('result','course_reg','8265',3425,NULL),
('result','course_reg','8266',3426,NULL),
('result','course_reg','8267',3427,NULL),
('result','course_reg','8268',3428,NULL),
('result','course_reg','8269',3429,NULL),
('result','course_reg','8270',3430,NULL),
('result','course_reg','8271',3431,NULL),
('result','course_reg','8272',3432,NULL),
('result','course_reg','8273',3433,NULL),
('result','course_reg','8274',3434,NULL),
('result','course_reg','8275',3435,NULL),
('result','course_reg','8276',3436,NULL),
('result','course_reg','8277',3437,NULL),
('result','course_reg','8278',3438,NULL),
('result','course_reg','8279',3439,NULL),
('result','course_reg','8280',3440,NULL),
('result','course_reg','8281',3441,NULL),
('result','course_reg','8282',3442,NULL),
('result','course_reg','8283',3443,NULL),
('result','course_reg','8284',3444,NULL),
('result','course_reg','8285',3445,NULL),
('result','course_reg','8286',3446,NULL),
('result','course_reg','8287',3447,NULL),
('result','course_reg','8288',3448,NULL),
('result','course_reg','8289',3449,NULL),
('result','course_reg','8290',3450,NULL),
('result','course_reg','8291',3451,NULL),
('result','course_reg','8292',3452,NULL),
('result','course_reg','8293',3453,NULL),
('result','course_reg','8294',3454,NULL),
('result','course_reg','8295',3455,NULL),
('result','course_reg','8296',3456,NULL),
('result','course_reg','8297',3457,NULL),
('result','course_reg','8298',3458,NULL),
('result','course_reg','8299',3459,NULL),
('result','course_reg','8300',3460,NULL),
('result','course_reg','8301',3461,NULL),
('result','course_reg','8302',3462,NULL),
('result','course_reg','8303',3463,NULL),
('result','course_reg','8304',3464,NULL),
('result','course_reg','8305',3465,NULL),
('result','course_reg','8306',3466,NULL),
('result','course_reg','8307',3467,NULL),
('result','course_reg','8308',3468,NULL),
('result','course_reg','8309',3469,NULL),
('result','course_reg','8310',3470,NULL),
('result','course_reg','8311',3471,NULL),
('result','course_reg','8312',3472,NULL),
('result','course_reg','8313',3473,NULL),
('result','course_reg','8314',3474,NULL),
('result','course_reg','8315',3475,NULL),
('result','course_reg','8316',3476,NULL),
('result','course_reg','8317',3477,NULL),
('result','course_reg','8318',3478,NULL),
('result','course_reg','8319',3479,NULL),
('result','course_reg','8320',3480,NULL),
('result','course_reg','8321',3481,NULL),
('result','course_reg','8322',3482,NULL),
('result','course_reg','8323',3483,NULL),
('result','course_reg','8324',3484,NULL),
('result','course_reg','8325',3485,NULL),
('result','course_reg','8326',3486,NULL),
('result','course_reg','8327',3487,NULL),
('result','course_reg','8328',3488,NULL),
('result','course_reg','8329',3489,NULL);
INSERT INTO `legacy_mappings` (`entity_type`,`legacy_table`,`legacy_id`,`new_id`,`notes`) VALUES
('result','course_reg','8330',3490,NULL),
('result','course_reg','8331',3491,NULL),
('result','course_reg','8332',3492,NULL),
('result','course_reg','8333',3493,NULL),
('result','course_reg','8334',3494,NULL),
('result','course_reg','8335',3495,NULL),
('result','course_reg','8336',3496,NULL),
('result','course_reg','8337',3497,NULL),
('result','course_reg','8338',3498,NULL),
('result','course_reg','8339',3499,NULL),
('result','course_reg','8340',3500,NULL),
('result','course_reg','8341',3501,NULL),
('result','course_reg','8342',3502,NULL),
('result','course_reg','8343',3503,NULL),
('result','course_reg','8344',3504,NULL),
('result','course_reg','8345',3505,NULL),
('result','course_reg','8346',3506,NULL),
('result','course_reg','8347',3507,NULL),
('result','course_reg','8348',3508,NULL),
('result','course_reg','8349',3509,NULL),
('result','course_reg','8350',3510,NULL),
('result','course_reg','8351',3511,NULL),
('result','course_reg','8352',3512,NULL),
('result','course_reg','8353',3513,NULL),
('result','course_reg','8354',3514,NULL),
('result','course_reg','8355',3515,NULL),
('result','course_reg','8356',3516,NULL),
('result','course_reg','8357',3517,NULL),
('result','course_reg','8358',3518,NULL),
('result','course_reg','8359',3519,NULL),
('result','course_reg','8360',3520,NULL),
('result','course_reg','8361',3521,NULL),
('result','course_reg','8362',3522,NULL),
('result','course_reg','8363',3523,NULL),
('result','course_reg','8364',3524,NULL),
('result','course_reg','8365',3525,NULL),
('result','course_reg','8366',3526,NULL),
('result','course_reg','8367',3527,NULL),
('result','course_reg','8368',3528,NULL),
('result','course_reg','8369',3529,NULL),
('result','course_reg','8370',3530,NULL),
('result','course_reg','8371',3531,NULL),
('result','course_reg','8372',3532,NULL),
('result','course_reg','8374',3533,NULL),
('result','course_reg','8375',3534,NULL),
('result','course_reg','8377',3535,NULL),
('result','course_reg','8378',3536,NULL),
('result','course_reg','8379',3537,NULL),
('result','course_reg','8380',3538,NULL),
('result','course_reg','8381',3539,NULL),
('result','course_reg','8382',3540,NULL),
('result','course_reg','8383',3541,NULL),
('result','course_reg','8384',3542,NULL),
('result','course_reg','8385',3543,NULL),
('result','course_reg','8386',3544,NULL),
('result','course_reg','8387',3545,NULL),
('result','course_reg','8388',3546,NULL),
('result','course_reg','8389',3547,NULL),
('result','course_reg','8390',3548,NULL),
('result','course_reg','8391',3549,NULL),
('result','course_reg','8392',3550,NULL),
('result','course_reg','8393',3551,NULL),
('result','course_reg','8394',3552,NULL),
('result','course_reg','8395',3553,NULL),
('result','course_reg','8396',3554,NULL),
('result','course_reg','8397',3555,NULL),
('result','course_reg','8398',3556,NULL),
('result','course_reg','8399',3557,NULL),
('result','course_reg','8400',3558,NULL),
('result','course_reg','8401',3559,NULL),
('result','course_reg','8402',3560,NULL),
('result','course_reg','8403',3561,NULL),
('result','course_reg','8404',3562,NULL),
('result','course_reg','8405',3563,NULL),
('result','course_reg','8406',3564,NULL),
('result','course_reg','8407',3565,NULL),
('result','course_reg','8408',3566,NULL),
('result','course_reg','8409',3567,NULL),
('result','course_reg','8410',3568,NULL),
('result','course_reg','8411',3569,NULL),
('result','course_reg','8412',3570,NULL),
('result','course_reg','8413',3571,NULL),
('result','course_reg','8414',3572,NULL),
('result','course_reg','8415',3573,NULL),
('result','course_reg','8416',3574,NULL),
('result','course_reg','8417',3575,NULL),
('result','course_reg','8418',3576,NULL),
('result','course_reg','8419',3577,NULL),
('result','course_reg','8420',3578,NULL),
('result','course_reg','8421',3579,NULL),
('result','course_reg','8422',3580,NULL),
('result','course_reg','8423',3581,NULL),
('result','course_reg','8424',3582,NULL),
('result','course_reg','8425',3583,NULL),
('result','course_reg','8426',3584,NULL),
('result','course_reg','8427',3585,NULL),
('result','course_reg','8428',3586,NULL),
('result','course_reg','8429',3587,NULL),
('result','course_reg','8430',3588,NULL),
('result','course_reg','8431',3589,NULL),
('result','course_reg','8432',3590,NULL),
('result','course_reg','8433',3591,NULL),
('result','course_reg','8434',3592,NULL),
('result','course_reg','8435',3593,NULL),
('result','course_reg','8436',3594,NULL),
('result','course_reg','8437',3595,NULL),
('result','course_reg','8438',3596,NULL),
('result','course_reg','8439',3597,NULL),
('result','course_reg','8440',3598,NULL),
('result','course_reg','8441',3599,NULL),
('result','course_reg','8442',3600,NULL),
('result','course_reg','8443',3601,NULL),
('result','course_reg','8444',3602,NULL),
('result','course_reg','8445',3603,NULL),
('result','course_reg','8446',3604,NULL),
('result','course_reg','8447',3605,NULL),
('result','course_reg','8448',3606,NULL),
('result','course_reg','8449',3607,NULL),
('result','course_reg','8450',3608,NULL),
('result','course_reg','8451',3609,NULL),
('result','course_reg','8452',3610,NULL),
('result','course_reg','8453',3611,NULL),
('result','course_reg','8454',3612,NULL),
('result','course_reg','8455',3613,NULL),
('result','course_reg','8456',3614,NULL),
('result','course_reg','8457',3615,NULL),
('result','course_reg','8458',3616,NULL),
('result','course_reg','8478',3617,NULL),
('result','course_reg','8479',3618,NULL),
('result','course_reg','8480',3619,NULL),
('result','course_reg','8482',3620,NULL),
('result','course_reg','8483',3621,NULL),
('result','course_reg','8484',3622,NULL),
('result','course_reg','8485',3623,NULL),
('result','course_reg','8486',3624,NULL),
('result','course_reg','8487',3625,NULL),
('result','course_reg','8488',3626,NULL),
('result','course_reg','8489',3627,NULL),
('result','course_reg','8490',3628,NULL),
('result','course_reg','8491',3629,NULL),
('result','course_reg','8492',3630,NULL),
('result','course_reg','8493',3631,NULL),
('result','course_reg','8494',3632,NULL),
('result','course_reg','8495',3633,NULL),
('result','course_reg','8496',3634,NULL),
('result','course_reg','8497',3635,NULL),
('result','course_reg','8498',3636,NULL),
('result','course_reg','8499',3637,NULL),
('result','course_reg','8500',3638,NULL),
('result','course_reg','8501',3639,NULL),
('result','course_reg','8502',3640,NULL),
('result','course_reg','8503',3641,NULL),
('result','course_reg','8504',3642,NULL),
('result','course_reg','8505',3643,NULL),
('result','course_reg','8506',3644,NULL),
('result','course_reg','8507',3645,NULL),
('result','course_reg','8508',3646,NULL),
('result','course_reg','8509',3647,NULL),
('result','course_reg','8510',3648,NULL),
('result','course_reg','8511',3649,NULL),
('result','course_reg','8512',3650,NULL),
('result','course_reg','8513',3651,NULL),
('result','course_reg','8514',3652,NULL),
('result','course_reg','8515',3653,NULL),
('result','course_reg','8516',3654,NULL),
('result','course_reg','8517',3655,NULL),
('result','course_reg','8518',3656,NULL),
('result','course_reg','8519',3657,NULL),
('result','course_reg','8520',3658,NULL),
('result','course_reg','8521',3659,NULL),
('result','course_reg','8522',3660,NULL),
('result','course_reg','8523',3661,NULL),
('result','course_reg','8524',3662,NULL),
('result','course_reg','8525',3663,NULL),
('result','course_reg','8526',3664,NULL),
('result','course_reg','8527',3665,NULL),
('result','course_reg','8528',3666,NULL),
('result','course_reg','8529',3667,NULL),
('result','course_reg','8530',3668,NULL),
('result','course_reg','8531',3669,NULL),
('result','course_reg','8532',3670,NULL),
('result','course_reg','8533',3671,NULL),
('result','course_reg','8534',3672,NULL),
('result','course_reg','8535',3673,NULL),
('result','course_reg','8536',3674,NULL),
('result','course_reg','8537',3675,NULL),
('result','course_reg','8538',3676,NULL),
('result','course_reg','8539',3677,NULL),
('result','course_reg','8540',3678,NULL),
('result','course_reg','8541',3679,NULL),
('result','course_reg','8542',3680,NULL),
('result','course_reg','8543',3681,NULL),
('result','course_reg','8544',3682,NULL),
('result','course_reg','8545',3683,NULL),
('result','course_reg','8546',3684,NULL),
('result','course_reg','8547',3685,NULL),
('result','course_reg','8548',3686,NULL),
('result','course_reg','8549',3687,NULL),
('result','course_reg','8550',3688,NULL),
('result','course_reg','8551',3689,NULL),
('result','course_reg','8552',3690,NULL),
('result','course_reg','8553',3691,NULL),
('result','course_reg','8554',3692,NULL),
('result','course_reg','8555',3693,NULL),
('result','course_reg','8556',3694,NULL),
('result','course_reg','8557',3695,NULL),
('result','course_reg','8558',3696,NULL),
('result','course_reg','8559',3697,NULL),
('result','course_reg','8560',3698,NULL),
('result','course_reg','8561',3699,NULL),
('result','course_reg','8562',3700,NULL),
('result','course_reg','8563',3701,NULL),
('result','course_reg','8564',3702,NULL),
('result','course_reg','8565',3703,NULL),
('result','course_reg','8566',3704,NULL),
('result','course_reg','8567',3705,NULL),
('result','course_reg','8568',3706,NULL),
('result','course_reg','8569',3707,NULL),
('result','course_reg','8570',3708,NULL),
('result','course_reg','8571',3709,NULL),
('result','course_reg','8572',3710,NULL),
('result','course_reg','8573',3711,NULL),
('result','course_reg','8575',3712,NULL),
('result','course_reg','8576',3713,NULL),
('result','course_reg','8577',3714,NULL),
('result','course_reg','8578',3715,NULL),
('result','course_reg','8579',3716,NULL),
('result','course_reg','8580',3717,NULL),
('result','course_reg','8581',3718,NULL),
('result','course_reg','8582',3719,NULL),
('result','course_reg','8583',3720,NULL),
('result','course_reg','8584',3721,NULL),
('result','course_reg','8585',3722,NULL),
('result','course_reg','8586',3723,NULL),
('result','course_reg','8587',3724,NULL),
('result','course_reg','8588',3725,NULL),
('result','course_reg','8589',3726,NULL),
('result','course_reg','8590',3727,NULL),
('result','course_reg','8591',3728,NULL),
('result','course_reg','8592',3729,NULL),
('result','course_reg','8593',3730,NULL),
('result','course_reg','8594',3731,NULL),
('result','course_reg','8599',3732,NULL),
('result','course_reg','8601',3733,NULL),
('result','course_reg','8602',3734,NULL),
('result','course_reg','8603',3735,NULL),
('result','course_reg','8608',3736,NULL),
('result','course_reg','8610',3737,NULL),
('result','course_reg','8612',3738,NULL),
('result','course_reg','8617',3739,NULL);
INSERT INTO `legacy_mappings` (`entity_type`,`legacy_table`,`legacy_id`,`new_id`,`notes`) VALUES
('result','course_reg','8619',3740,NULL),
('result','course_reg','8621',3741,NULL),
('result','course_reg','8631',3742,NULL),
('result','course_reg','8633',3743,NULL),
('result','course_reg','8634',3744,NULL),
('result','course_reg','8635',3745,NULL),
('result','course_reg','8636',3746,NULL),
('result','course_reg','8637',3747,NULL),
('result','course_reg','8638',3748,NULL),
('result','course_reg','8639',3749,NULL),
('result','course_reg','8643',3750,NULL),
('result','course_reg','8645',3751,NULL),
('result','course_reg','8646',3752,NULL),
('result','course_reg','8647',3753,NULL),
('result','course_reg','8648',3754,NULL),
('result','course_reg','8649',3755,NULL),
('result','course_reg','8650',3756,NULL),
('result','course_reg','8651',3757,NULL),
('result','course_reg','8652',3758,NULL),
('result','course_reg','8653',3759,NULL),
('result','course_reg','8654',3760,NULL),
('result','course_reg','8655',3761,NULL),
('result','course_reg','8656',3762,NULL),
('result','course_reg','8657',3763,NULL),
('result','course_reg','8658',3764,NULL),
('result','course_reg','8664',3765,NULL),
('result','course_reg','8666',3766,NULL),
('result','course_reg','8667',3767,NULL),
('result','course_reg','8668',3768,NULL),
('result','course_reg','8669',3769,NULL),
('result','course_reg','8670',3770,NULL),
('result','course_reg','8671',3771,NULL),
('result','course_reg','8672',3772,NULL),
('result','course_reg','8673',3773,NULL),
('result','course_reg','8674',3774,NULL),
('result','course_reg','8694',3775,NULL),
('result','course_reg','8695',3776,NULL),
('result','course_reg','8696',3777,NULL),
('result','course_reg','8697',3778,NULL),
('result','course_reg','8698',3779,NULL),
('result','course_reg','8699',3780,NULL),
('result','course_reg','8700',3781,NULL),
('result','course_reg','8701',3782,NULL),
('result','course_reg','8702',3783,NULL),
('result','course_reg','8703',3784,NULL),
('result','course_reg','8704',3785,NULL),
('result','course_reg','8705',3786,NULL),
('result','course_reg','8706',3787,NULL),
('result','course_reg','8707',3788,NULL),
('result','course_reg','8708',3789,NULL),
('result','course_reg','8709',3790,NULL),
('result','course_reg','8710',3791,NULL),
('result','course_reg','8711',3792,NULL),
('result','course_reg','8712',3793,NULL),
('result','course_reg','8713',3794,NULL),
('result','course_reg','8714',3795,NULL),
('result','course_reg','8715',3796,NULL),
('result','course_reg','8716',3797,NULL),
('result','course_reg','8717',3798,NULL),
('result','course_reg','8718',3799,NULL),
('result','course_reg','8719',3800,NULL),
('result','course_reg','8720',3801,NULL),
('result','course_reg','8721',3802,NULL),
('result','course_reg','8722',3803,NULL),
('result','course_reg','8723',3804,NULL),
('result','course_reg','8724',3805,NULL),
('result','course_reg','8725',3806,NULL),
('result','course_reg','8726',3807,NULL),
('result','course_reg','8727',3808,NULL),
('result','course_reg','8728',3809,NULL),
('result','course_reg','8729',3810,NULL),
('result','course_reg','8730',3811,NULL),
('result','course_reg','8731',3812,NULL),
('result','course_reg','8732',3813,NULL),
('result','course_reg','8733',3814,NULL),
('result','course_reg','8734',3815,NULL),
('result','course_reg','8735',3816,NULL),
('result','course_reg','8736',3817,NULL),
('result','course_reg','8737',3818,NULL),
('result','course_reg','8738',3819,NULL),
('result','course_reg','8739',3820,NULL),
('result','course_reg','8740',3821,NULL),
('result','course_reg','8741',3822,NULL),
('result','course_reg','8742',3823,NULL),
('result','course_reg','8743',3824,NULL),
('result','course_reg','8744',3825,NULL),
('result','course_reg','8745',3826,NULL),
('result','course_reg','8746',3827,NULL),
('result','course_reg','8747',3828,NULL),
('result','course_reg','8748',3829,NULL),
('result','course_reg','8749',3830,NULL),
('result','course_reg','8750',3831,NULL),
('result','course_reg','8751',3832,NULL),
('result','course_reg','8752',3833,NULL),
('result','course_reg','8753',3834,NULL),
('result','course_reg','8754',3835,NULL),
('result','course_reg','8755',3836,NULL),
('result','course_reg','8756',3837,NULL),
('result','course_reg','8757',3838,NULL),
('result','course_reg','8758',3839,NULL),
('result','course_reg','8759',3840,NULL),
('result','course_reg','8760',3841,NULL),
('result','course_reg','8761',3842,NULL),
('result','course_reg','8762',3843,NULL),
('result','course_reg','8763',3844,NULL),
('result','course_reg','8764',3845,NULL),
('result','course_reg','8765',3846,NULL),
('result','course_reg','8766',3847,NULL),
('result','course_reg','8767',3848,NULL),
('result','course_reg','8768',3849,NULL),
('result','course_reg','8769',3850,NULL),
('result','course_reg','8770',3851,NULL),
('result','course_reg','8771',3852,NULL),
('result','course_reg','8772',3853,NULL),
('result','course_reg','8773',3854,NULL),
('result','course_reg','8774',3855,NULL),
('result','course_reg','8775',3856,NULL),
('result','course_reg','8776',3857,NULL),
('result','course_reg','8777',3858,NULL),
('result','course_reg','8778',3859,NULL),
('result','course_reg','8779',3860,NULL),
('result','course_reg','8780',3861,NULL),
('result','course_reg','8781',3862,NULL),
('result','course_reg','8782',3863,NULL),
('result','course_reg','8783',3864,NULL),
('result','course_reg','8784',3865,NULL),
('result','course_reg','8785',3866,NULL),
('result','course_reg','8786',3867,NULL),
('result','course_reg','8787',3868,NULL),
('result','course_reg','8788',3869,NULL),
('result','course_reg','8789',3870,NULL),
('result','course_reg','8790',3871,NULL),
('result','course_reg','8791',3872,NULL),
('result','course_reg','8792',3873,NULL),
('result','course_reg','8793',3874,NULL),
('result','course_reg','8794',3875,NULL),
('result','course_reg','8795',3876,NULL),
('result','course_reg','8796',3877,NULL),
('result','course_reg','8797',3878,NULL),
('result','course_reg','8798',3879,NULL),
('result','course_reg','8800',3880,NULL),
('result','course_reg','8801',3881,NULL),
('result','course_reg','8802',3882,NULL),
('result','course_reg','8803',3883,NULL),
('result','course_reg','8804',3884,NULL),
('result','course_reg','8805',3885,NULL),
('result','course_reg','8806',3886,NULL),
('result','course_reg','8807',3887,NULL),
('result','course_reg','8808',3888,NULL),
('result','course_reg','8809',3889,NULL),
('result','course_reg','8810',3890,NULL),
('result','course_reg','8811',3891,NULL),
('result','course_reg','8812',3892,NULL),
('result','course_reg','8813',3893,NULL),
('result','course_reg','8814',3894,NULL),
('result','course_reg','8815',3895,NULL),
('result','course_reg','8816',3896,NULL),
('result','course_reg','8817',3897,NULL),
('result','course_reg','8818',3898,NULL),
('result','course_reg','8819',3899,NULL),
('result','course_reg','8820',3900,NULL),
('result','course_reg','8822',3901,NULL),
('result','course_reg','8823',3902,NULL),
('result','course_reg','8824',3903,NULL),
('result','course_reg','8825',3904,NULL),
('result','course_reg','8826',3905,NULL),
('result','course_reg','8827',3906,NULL),
('result','course_reg','8829',3907,NULL),
('result','course_reg','8830',3908,NULL),
('result','course_reg','8831',3909,NULL),
('result','course_reg','8832',3910,NULL),
('result','course_reg','8833',3911,NULL),
('result','course_reg','8834',3912,NULL),
('result','course_reg','8835',3913,NULL),
('result','course_reg','8838',3914,NULL),
('result','course_reg','8839',3915,NULL),
('result','course_reg','8840',3916,NULL),
('result','course_reg','8844',3917,NULL),
('result','course_reg','8846',3918,NULL),
('result','course_reg','8847',3919,NULL),
('result','course_reg','8848',3920,NULL),
('result','course_reg','8849',3921,NULL),
('result','course_reg','8850',3922,NULL),
('result','course_reg','8851',3923,NULL),
('result','course_reg','8852',3924,NULL),
('result','course_reg','8853',3925,NULL),
('result','course_reg','8854',3926,NULL),
('result','course_reg','8855',3927,NULL),
('result','course_reg','8856',3928,NULL),
('result','course_reg','8857',3929,NULL),
('result','course_reg','8858',3930,NULL),
('result','course_reg','8859',3931,NULL),
('result','course_reg','8860',3932,NULL),
('result','course_reg','8861',3933,NULL),
('result','course_reg','8862',3934,NULL),
('result','course_reg','8863',3935,NULL),
('result','course_reg','8864',3936,NULL),
('result','course_reg','8865',3937,NULL),
('result','course_reg','8866',3938,NULL),
('result','course_reg','8867',3939,NULL),
('result','course_reg','8868',3940,NULL),
('result','course_reg','8869',3941,NULL),
('result','course_reg','8870',3942,NULL),
('result','course_reg','8871',3943,NULL),
('result','course_reg','8872',3944,NULL),
('result','course_reg','8873',3945,NULL),
('result','course_reg','8874',3946,NULL),
('result','course_reg','8875',3947,NULL),
('result','course_reg','8876',3948,NULL),
('result','course_reg','8877',3949,NULL),
('result','course_reg','8878',3950,NULL),
('result','course_reg','8879',3951,NULL),
('result','course_reg','8880',3952,NULL),
('result','course_reg','8881',3953,NULL),
('result','course_reg','8882',3954,NULL),
('result','course_reg','8883',3955,NULL),
('result','course_reg','8884',3956,NULL),
('result','course_reg','8885',3957,NULL),
('result','course_reg','8886',3958,NULL),
('result','course_reg','8887',3959,NULL),
('result','course_reg','8888',3960,NULL),
('result','course_reg','8889',3961,NULL),
('result','course_reg','8890',3962,NULL),
('result','course_reg','8891',3963,NULL),
('result','course_reg','8892',3964,NULL),
('result','course_reg','8903',3965,NULL),
('result','course_reg','8904',3966,NULL),
('result','course_reg','8905',3967,NULL),
('result','course_reg','8907',3968,NULL),
('result','course_reg','8908',3969,NULL),
('result','course_reg','8909',3970,NULL),
('result','course_reg','8910',3971,NULL),
('result','course_reg','8911',3972,NULL),
('result','course_reg','8912',3973,NULL),
('result','course_reg','8915',3974,NULL),
('result','course_reg','8920',3975,NULL),
('result','course_reg','8921',3976,NULL),
('result','course_reg','8922',3977,NULL),
('result','course_reg','8923',3978,NULL),
('result','course_reg','8924',3979,NULL),
('result','course_reg','8925',3980,NULL),
('result','course_reg','8926',3981,NULL),
('result','course_reg','8927',3982,NULL),
('result','course_reg','8928',3983,NULL),
('result','course_reg','8929',3984,NULL),
('result','course_reg','8930',3985,NULL),
('result','course_reg','8931',3986,NULL),
('result','course_reg','8932',3987,NULL),
('result','course_reg','8933',3988,NULL),
('result','course_reg','8934',3989,NULL);
INSERT INTO `legacy_mappings` (`entity_type`,`legacy_table`,`legacy_id`,`new_id`,`notes`) VALUES
('result','course_reg','8935',3990,NULL),
('result','course_reg','8936',3991,NULL),
('result','course_reg','8938',3992,NULL),
('result','course_reg','8939',3993,NULL),
('result','course_reg','8940',3994,NULL),
('result','course_reg','8941',3995,NULL),
('result','course_reg','8942',3996,NULL),
('result','course_reg','8943',3997,NULL),
('result','course_reg','8944',3998,NULL),
('result','course_reg','8946',3999,NULL),
('result','course_reg','8947',4000,NULL),
('result','course_reg','8948',4001,NULL),
('result','course_reg','8949',4002,NULL),
('result','course_reg','8950',4003,NULL),
('result','course_reg','8951',4004,NULL),
('result','course_reg','8952',4005,NULL),
('result','course_reg','8953',4006,NULL),
('result','course_reg','8954',4007,NULL),
('result','course_reg','8955',4008,NULL),
('result','course_reg','8956',4009,NULL),
('result','course_reg','8957',4010,NULL),
('result','course_reg','8958',4011,NULL),
('result','course_reg','8959',4012,NULL),
('result','course_reg','8960',4013,NULL),
('result','course_reg','8961',4014,NULL),
('result','course_reg','8962',4015,NULL),
('result','course_reg','8963',4016,NULL),
('result','course_reg','8964',4017,NULL),
('result','course_reg','8965',4018,NULL),
('result','course_reg','8966',4019,NULL),
('result','course_reg','8967',4020,NULL),
('result','course_reg','8968',4021,NULL),
('result','course_reg','8969',4022,NULL),
('result','course_reg','8970',4023,NULL),
('result','course_reg','8971',4024,NULL),
('result','course_reg','8972',4025,NULL),
('result','course_reg','8973',4026,NULL),
('result','course_reg','8974',4027,NULL),
('result','course_reg','8975',4028,NULL),
('result','course_reg','8976',4029,NULL),
('result','course_reg','8977',4030,NULL),
('result','course_reg','8978',4031,NULL),
('result','course_reg','8979',4032,NULL),
('result','course_reg','8980',4033,NULL),
('result','course_reg','8981',4034,NULL),
('result','course_reg','8982',4035,NULL),
('result','course_reg','8983',4036,NULL),
('result','course_reg','8984',4037,NULL),
('result','course_reg','8985',4038,NULL),
('result','course_reg','8986',4039,NULL),
('result','course_reg','8987',4040,NULL),
('result','course_reg','8988',4041,NULL),
('result','course_reg','8989',4042,NULL),
('result','course_reg','8990',4043,NULL),
('result','course_reg','8991',4044,NULL),
('result','course_reg','8992',4045,NULL),
('result','course_reg','8993',4046,NULL),
('result','course_reg','8994',4047,NULL),
('result','course_reg','8996',4048,NULL),
('result','course_reg','8997',4049,NULL),
('result','course_reg','8998',4050,NULL),
('result','course_reg','9000',4051,NULL),
('result','course_reg','9001',4052,NULL),
('result','course_reg','9006',4053,NULL),
('result','course_reg','9007',4054,NULL),
('result','course_reg','9008',4055,NULL),
('result','course_reg','9009',4056,NULL),
('result','course_reg','9010',4057,NULL),
('result','course_reg','9011',4058,NULL),
('result','course_reg','9012',4059,NULL),
('result','course_reg','9013',4060,NULL),
('result','course_reg','9014',4061,NULL),
('result','course_reg','9015',4062,NULL),
('result','course_reg','9016',4063,NULL),
('result','course_reg','9017',4064,NULL),
('result','course_reg','9018',4065,NULL),
('result','course_reg','9019',4066,NULL),
('result','course_reg','9020',4067,NULL),
('result','course_reg','9021',4068,NULL),
('result','course_reg','9022',4069,NULL),
('result','course_reg','9023',4070,NULL),
('result','course_reg','9024',4071,NULL),
('result','course_reg','9025',4072,NULL),
('result','course_reg','9026',4073,NULL),
('result','course_reg','9027',4074,NULL),
('result','course_reg','9028',4075,NULL),
('result','course_reg','9029',4076,NULL),
('result','course_reg','9030',4077,NULL),
('result','course_reg','9031',4078,NULL),
('result','course_reg','9032',4079,NULL),
('result','course_reg','9033',4080,NULL),
('result','course_reg','9034',4081,NULL),
('result','course_reg','9035',4082,NULL),
('result','course_reg','9036',4083,NULL),
('result','course_reg','9037',4084,NULL),
('result','course_reg','9038',4085,NULL),
('result','course_reg','9039',4086,NULL),
('result','course_reg','9040',4087,NULL),
('result','course_reg','9041',4088,NULL),
('result','course_reg','9042',4089,NULL),
('result','course_reg','9043',4090,NULL),
('result','course_reg','9044',4091,NULL),
('result','course_reg','9045',4092,NULL),
('result','course_reg','9046',4093,NULL),
('result','course_reg','9047',4094,NULL),
('result','course_reg','9048',4095,NULL),
('result','course_reg','9049',4096,NULL),
('result','course_reg','9050',4097,NULL),
('result','course_reg','9051',4098,NULL),
('result','course_reg','9052',4099,NULL),
('result','course_reg','9053',4100,NULL),
('result','course_reg','9054',4101,NULL),
('result','course_reg','9055',4102,NULL),
('result','course_reg','9056',4103,NULL),
('result','course_reg','9057',4104,NULL),
('result','course_reg','9058',4105,NULL),
('result','course_reg','9060',4106,NULL),
('result','course_reg','9061',4107,NULL),
('result','course_reg','9062',4108,NULL),
('result','course_reg','9063',4109,NULL),
('result','course_reg','9064',4110,NULL),
('result','course_reg','9065',4111,NULL),
('result','course_reg','9066',4112,NULL),
('result','course_reg','9068',4113,NULL),
('result','course_reg','9069',4114,NULL),
('result','course_reg','9070',4115,NULL),
('result','course_reg','9071',4116,NULL),
('result','course_reg','9072',4117,NULL),
('result','course_reg','9073',4118,NULL),
('result','course_reg','9074',4119,NULL),
('result','course_reg','9075',4120,NULL),
('result','course_reg','9076',4121,NULL),
('result','course_reg','9077',4122,NULL),
('result','course_reg','9078',4123,NULL),
('result','course_reg','9079',4124,NULL),
('result','course_reg','9080',4125,NULL),
('result','course_reg','9081',4126,NULL),
('result','course_reg','9082',4127,NULL),
('result','course_reg','9083',4128,NULL),
('result','course_reg','9084',4129,NULL),
('result','course_reg','9085',4130,NULL),
('result','course_reg','9086',4131,NULL),
('result','course_reg','9087',4132,NULL),
('result','course_reg','9088',4133,NULL),
('result','course_reg','9089',4134,NULL),
('result','course_reg','9090',4135,NULL),
('result','course_reg','9092',4136,NULL),
('result','course_reg','9093',4137,NULL),
('result','course_reg','9094',4138,NULL),
('result','course_reg','9095',4139,NULL),
('result','course_reg','9096',4140,NULL),
('result','course_reg','9097',4141,NULL),
('result','course_reg','9099',4142,NULL),
('result','course_reg','9100',4143,NULL),
('result','course_reg','9101',4144,NULL),
('result','course_reg','9102',4145,NULL),
('result','course_reg','9103',4146,NULL),
('result','course_reg','9104',4147,NULL),
('result','course_reg','9105',4148,NULL),
('result','course_reg','9106',4149,NULL),
('result','course_reg','9107',4150,NULL),
('result','course_reg','9108',4151,NULL),
('result','course_reg','9109',4152,NULL),
('result','course_reg','9110',4153,NULL),
('result','course_reg','9111',4154,NULL),
('result','course_reg','9112',4155,NULL),
('result','course_reg','9113',4156,NULL),
('result','course_reg','9114',4157,NULL),
('result','course_reg','9115',4158,NULL),
('result','course_reg','9116',4159,NULL),
('result','course_reg','9117',4160,NULL),
('result','course_reg','9118',4161,NULL),
('result','course_reg','9119',4162,NULL),
('result','course_reg','9120',4163,NULL),
('result','course_reg','9121',4164,NULL),
('result','course_reg','9122',4165,NULL),
('result','course_reg','9123',4166,NULL),
('result','course_reg','9124',4167,NULL),
('result','course_reg','9125',4168,NULL),
('result','course_reg','9126',4169,NULL),
('result','course_reg','9127',4170,NULL),
('result','course_reg','9128',4171,NULL),
('result','course_reg','9129',4172,NULL),
('result','course_reg','9130',4173,NULL),
('result','course_reg','9131',4174,NULL),
('result','course_reg','9132',4175,NULL),
('result','course_reg','9133',4176,NULL),
('result','course_reg','9134',4177,NULL),
('result','course_reg','9135',4178,NULL),
('result','course_reg','9136',4179,NULL),
('result','course_reg','9137',4180,NULL),
('result','course_reg','9138',4181,NULL),
('result','course_reg','9140',4182,NULL),
('result','course_reg','9141',4183,NULL),
('result','course_reg','9142',4184,NULL),
('result','course_reg','9143',4185,NULL),
('result','course_reg','9144',4186,NULL),
('result','course_reg','9145',4187,NULL),
('result','course_reg','9146',4188,NULL),
('result','course_reg','9147',4189,NULL),
('result','course_reg','9148',4190,NULL),
('result','course_reg','9149',4191,NULL),
('result','course_reg','9150',4192,NULL),
('result','course_reg','9151',4193,NULL),
('result','course_reg','9152',4194,NULL),
('result','course_reg','9153',4195,NULL),
('result','course_reg','9154',4196,NULL),
('result','course_reg','9155',4197,NULL),
('result','course_reg','9157',4198,NULL),
('result','course_reg','9158',4199,NULL),
('result','course_reg','9159',4200,NULL),
('result','course_reg','9160',4201,NULL),
('result','course_reg','9161',4202,NULL),
('result','course_reg','9162',4203,NULL),
('result','course_reg','9163',4204,NULL),
('result','course_reg','9164',4205,NULL),
('result','course_reg','9165',4206,NULL),
('result','course_reg','9167',4207,NULL),
('result','course_reg','9168',4208,NULL),
('result','course_reg','9170',4209,NULL),
('result','course_reg','9171',4210,NULL),
('result','course_reg','9172',4211,NULL),
('result','course_reg','9173',4212,NULL),
('result','course_reg','9174',4213,NULL),
('result','course_reg','9176',4214,NULL),
('result','course_reg','9177',4215,NULL),
('result','course_reg','9178',4216,NULL),
('result','course_reg','9179',4217,NULL),
('result','course_reg','9180',4218,NULL),
('result','course_reg','9181',4219,NULL),
('result','course_reg','9182',4220,NULL),
('result','course_reg','9183',4221,NULL),
('result','course_reg','9184',4222,NULL),
('result','course_reg','9185',4223,NULL),
('result','course_reg','9186',4224,NULL),
('result','course_reg','9187',4225,NULL),
('result','course_reg','9188',4226,NULL),
('result','course_reg','9189',4227,NULL),
('result','course_reg','9190',4228,NULL),
('result','course_reg','9191',4229,NULL),
('result','course_reg','9192',4230,NULL),
('result','course_reg','9193',4231,NULL),
('result','course_reg','9194',4232,NULL),
('result','course_reg','9195',4233,NULL),
('result','course_reg','9196',4234,NULL),
('result','course_reg','9197',4235,NULL),
('result','course_reg','9198',4236,NULL),
('result','course_reg','9199',4237,NULL),
('result','course_reg','9200',4238,NULL),
('result','course_reg','9201',4239,NULL);
INSERT INTO `legacy_mappings` (`entity_type`,`legacy_table`,`legacy_id`,`new_id`,`notes`) VALUES
('result','course_reg','9202',4240,NULL),
('result','course_reg','9204',4241,NULL),
('result','course_reg','9205',4242,NULL),
('result','course_reg','9206',4243,NULL),
('result','course_reg','9207',4244,NULL),
('result','course_reg','9208',4245,NULL),
('result','course_reg','9209',4246,NULL),
('result','course_reg','9210',4247,NULL),
('result','course_reg','9211',4248,NULL),
('result','course_reg','9212',4249,NULL),
('result','course_reg','9213',4250,NULL),
('result','course_reg','9214',4251,NULL),
('result','course_reg','9215',4252,NULL),
('result','course_reg','9216',4253,NULL),
('result','course_reg','9217',4254,NULL),
('result','course_reg','9218',4255,NULL),
('result','course_reg','9219',4256,NULL),
('result','course_reg','9220',4257,NULL),
('result','course_reg','9221',4258,NULL),
('result','course_reg','9222',4259,NULL),
('result','course_reg','9223',4260,NULL),
('result','course_reg','9224',4261,NULL),
('result','course_reg','9225',4262,NULL),
('result','course_reg','9226',4263,NULL),
('result','course_reg','9227',4264,NULL),
('result','course_reg','9228',4265,NULL),
('result','course_reg','9229',4266,NULL),
('result','course_reg','9230',4267,NULL),
('result','course_reg','9231',4268,NULL),
('result','course_reg','9232',4269,NULL),
('result','course_reg','9233',4270,NULL),
('result','course_reg','9234',4271,NULL),
('result','course_reg','9235',4272,NULL),
('result','course_reg','9236',4273,NULL),
('result','course_reg','9237',4274,NULL),
('result','course_reg','9238',4275,NULL),
('result','course_reg','9239',4276,NULL),
('result','course_reg','9240',4277,NULL),
('result','course_reg','9241',4278,NULL),
('result','course_reg','9242',4279,NULL),
('result','course_reg','9243',4280,NULL),
('result','course_reg','9244',4281,NULL),
('result','course_reg','9245',4282,NULL),
('result','course_reg','9246',4283,NULL),
('result','course_reg','9247',4284,NULL),
('result','course_reg','9248',4285,NULL),
('result','course_reg','9249',4286,NULL),
('result','course_reg','9250',4287,NULL),
('result','course_reg','9251',4288,NULL),
('result','course_reg','9252',4289,NULL),
('result','course_reg','9253',4290,NULL),
('result','course_reg','9255',4291,NULL),
('result','course_reg','9256',4292,NULL),
('result','course_reg','9257',4293,NULL),
('result','course_reg','9258',4294,NULL),
('result','course_reg','9261',4295,NULL),
('result','course_reg','9262',4296,NULL),
('result','course_reg','9263',4297,NULL),
('result','course_reg','9264',4298,NULL),
('result','course_reg','9265',4299,NULL),
('result','course_reg','9266',4300,NULL),
('result','course_reg','9267',4301,NULL),
('result','course_reg','9268',4302,NULL),
('result','course_reg','9269',4303,NULL),
('result','course_reg','9270',4304,NULL),
('result','course_reg','9271',4305,NULL),
('result','course_reg','9272',4306,NULL),
('result','course_reg','9273',4307,NULL),
('result','course_reg','9274',4308,NULL),
('result','course_reg','9275',4309,NULL),
('result','course_reg','9276',4310,NULL),
('result','course_reg','9277',4311,NULL),
('result','course_reg','9278',4312,NULL),
('result','course_reg','9279',4313,NULL),
('result','course_reg','9280',4314,NULL),
('result','course_reg','9283',4315,NULL),
('result','course_reg','9284',4316,NULL),
('result','course_reg','9285',4317,NULL),
('result','course_reg','9286',4318,NULL),
('result','course_reg','9287',4319,NULL),
('result','course_reg','9288',4320,NULL),
('result','course_reg','9289',4321,NULL),
('result','course_reg','9290',4322,NULL),
('result','course_reg','9291',4323,NULL),
('result','course_reg','9292',4324,NULL),
('result','course_reg','9293',4325,NULL),
('result','course_reg','9294',4326,NULL),
('result','course_reg','9295',4327,NULL),
('result','course_reg','9296',4328,NULL),
('result','course_reg','9297',4329,NULL),
('result','course_reg','9298',4330,NULL),
('result','course_reg','9299',4331,NULL),
('result','course_reg','9300',4332,NULL),
('result','course_reg','9301',4333,NULL),
('result','course_reg','9302',4334,NULL),
('result','course_reg','9303',4335,NULL),
('result','course_reg','9304',4336,NULL),
('result','course_reg','9305',4337,NULL),
('result','course_reg','9306',4338,NULL),
('result','course_reg','9307',4339,NULL),
('result','course_reg','9308',4340,NULL),
('result','course_reg','9309',4341,NULL),
('result','course_reg','9310',4342,NULL),
('result','course_reg','9311',4343,NULL),
('result','course_reg','9312',4344,NULL),
('result','course_reg','9313',4345,NULL),
('result','course_reg','9314',4346,NULL),
('result','course_reg','9315',4347,NULL),
('result','course_reg','9316',4348,NULL),
('result','course_reg','9317',4349,NULL),
('result','course_reg','9318',4350,NULL),
('result','course_reg','9319',4351,NULL),
('result','course_reg','9320',4352,NULL),
('result','course_reg','9321',4353,NULL),
('result','course_reg','9324',4354,NULL),
('result','course_reg','9325',4355,NULL),
('result','course_reg','9326',4356,NULL),
('result','course_reg','9327',4357,NULL),
('result','course_reg','9328',4358,NULL),
('result','course_reg','9329',4359,NULL),
('result','course_reg','9330',4360,NULL),
('result','course_reg','9331',4361,NULL),
('result','course_reg','9332',4362,NULL),
('result','course_reg','9333',4363,NULL),
('result','course_reg','9334',4364,NULL),
('result','course_reg','9335',4365,NULL),
('result','course_reg','9336',4366,NULL),
('result','course_reg','9337',4367,NULL),
('result','course_reg','9338',4368,NULL),
('result','course_reg','9339',4369,NULL),
('result','course_reg','9340',4370,NULL),
('result','course_reg','9341',4371,NULL),
('result','course_reg','9342',4372,NULL),
('result','course_reg','9343',4373,NULL),
('result','course_reg','9345',4374,NULL),
('result','course_reg','9346',4375,NULL),
('result','course_reg','9347',4376,NULL),
('result','course_reg','9348',4377,NULL),
('result','course_reg','9349',4378,NULL),
('result','course_reg','9350',4379,NULL),
('result','course_reg','9351',4380,NULL),
('result','course_reg','9352',4381,NULL),
('result','course_reg','9353',4382,NULL),
('result','course_reg','9354',4383,NULL),
('result','course_reg','9355',4384,NULL),
('result','course_reg','9356',4385,NULL),
('result','course_reg','9357',4386,NULL),
('result','course_reg','9358',4387,NULL),
('result','course_reg','9359',4388,NULL),
('result','course_reg','9360',4389,NULL),
('result','course_reg','9361',4390,NULL),
('result','course_reg','9362',4391,NULL),
('result','course_reg','9363',4392,NULL),
('result','course_reg','9364',4393,NULL),
('result','course_reg','9365',4394,NULL),
('result','course_reg','9366',4395,NULL),
('result','course_reg','9367',4396,NULL),
('result','course_reg','9368',4397,NULL),
('result','course_reg','9369',4398,NULL),
('result','course_reg','9370',4399,NULL),
('result','course_reg','9371',4400,NULL),
('result','course_reg','9372',4401,NULL),
('result','course_reg','9373',4402,NULL),
('result','course_reg','9374',4403,NULL),
('result','course_reg','9375',4404,NULL),
('result','course_reg','9376',4405,NULL),
('result','course_reg','9377',4406,NULL),
('result','course_reg','9378',4407,NULL),
('result','course_reg','9379',4408,NULL),
('result','course_reg','9381',4409,NULL),
('result','course_reg','9382',4410,NULL),
('result','course_reg','9383',4411,NULL),
('result','course_reg','9384',4412,NULL),
('result','course_reg','9385',4413,NULL),
('result','course_reg','9386',4414,NULL),
('result','course_reg','9387',4415,NULL),
('result','course_reg','9388',4416,NULL),
('result','course_reg','9390',4417,NULL),
('result','course_reg','9391',4418,NULL),
('result','course_reg','9392',4419,NULL),
('result','course_reg','9393',4420,NULL),
('result','course_reg','9394',4421,NULL),
('result','course_reg','9395',4422,NULL),
('result','course_reg','9396',4423,NULL),
('result','course_reg','9397',4424,NULL),
('result','course_reg','9398',4425,NULL),
('result','course_reg','9399',4426,NULL),
('result','course_reg','9400',4427,NULL),
('result','course_reg','9401',4428,NULL),
('result','course_reg','9402',4429,NULL),
('result','course_reg','9403',4430,NULL),
('result','course_reg','9404',4431,NULL),
('result','course_reg','9405',4432,NULL),
('result','course_reg','9406',4433,NULL),
('result','course_reg','9407',4434,NULL),
('result','course_reg','9408',4435,NULL),
('result','course_reg','9409',4436,NULL),
('result','course_reg','9410',4437,NULL),
('result','course_reg','9411',4438,NULL),
('result','course_reg','9412',4439,NULL),
('result','course_reg','9413',4440,NULL),
('result','course_reg','9414',4441,NULL),
('result','course_reg','9415',4442,NULL),
('result','course_reg','9416',4443,NULL),
('result','course_reg','9417',4444,NULL),
('result','course_reg','9418',4445,NULL),
('result','course_reg','9419',4446,NULL),
('result','course_reg','9420',4447,NULL),
('result','course_reg','9421',4448,NULL),
('result','course_reg','9422',4449,NULL),
('result','course_reg','9423',4450,NULL),
('result','course_reg','9424',4451,NULL),
('result','course_reg','9425',4452,NULL),
('result','course_reg','9426',4453,NULL),
('result','course_reg','9427',4454,NULL),
('result','course_reg','9428',4455,NULL),
('result','course_reg','9429',4456,NULL),
('result','course_reg','9430',4457,NULL),
('result','course_reg','9431',4458,NULL),
('result','course_reg','9432',4459,NULL),
('result','course_reg','9433',4460,NULL),
('result','course_reg','9434',4461,NULL),
('result','course_reg','9435',4462,NULL),
('result','course_reg','9436',4463,NULL),
('result','course_reg','9437',4464,NULL),
('result','course_reg','9438',4465,NULL),
('result','course_reg','9439',4466,NULL),
('result','course_reg','9440',4467,NULL),
('result','course_reg','9441',4468,NULL),
('result','course_reg','9442',4469,NULL),
('result','course_reg','9443',4470,NULL),
('result','course_reg','9444',4471,NULL),
('result','course_reg','9445',4472,NULL),
('result','course_reg','9446',4473,NULL),
('result','course_reg','9447',4474,NULL),
('result','course_reg','9448',4475,NULL),
('result','course_reg','9449',4476,NULL),
('result','course_reg','9450',4477,NULL),
('result','course_reg','9451',4478,NULL),
('result','course_reg','9452',4479,NULL),
('result','course_reg','9453',4480,NULL),
('result','course_reg','9454',4481,NULL),
('result','course_reg','9455',4482,NULL),
('result','course_reg','9456',4483,NULL),
('result','course_reg','9457',4484,NULL),
('result','course_reg','9458',4485,NULL),
('result','course_reg','9459',4486,NULL),
('result','course_reg','9460',4487,NULL),
('result','course_reg','9461',4488,NULL),
('result','course_reg','9462',4489,NULL);
INSERT INTO `legacy_mappings` (`entity_type`,`legacy_table`,`legacy_id`,`new_id`,`notes`) VALUES
('result','course_reg','9463',4490,NULL),
('result','course_reg','9464',4491,NULL),
('result','course_reg','9465',4492,NULL),
('result','course_reg','9466',4493,NULL),
('result','course_reg','9467',4494,NULL),
('result','course_reg','9468',4495,NULL),
('result','course_reg','9469',4496,NULL),
('result','course_reg','9470',4497,NULL),
('result','course_reg','9471',4498,NULL),
('result','course_reg','9472',4499,NULL),
('result','course_reg','9473',4500,NULL),
('result','course_reg','9474',4501,NULL),
('result','course_reg','9475',4502,NULL),
('result','course_reg','9476',4503,NULL),
('result','course_reg','9477',4504,NULL),
('result','course_reg','9478',4505,NULL),
('result','course_reg','9479',4506,NULL),
('result','course_reg','9480',4507,NULL),
('result','course_reg','9481',4508,NULL),
('result','course_reg','9482',4509,NULL),
('result','course_reg','9483',4510,NULL),
('result','course_reg','9484',4511,NULL),
('result','course_reg','9485',4512,NULL),
('result','course_reg','9486',4513,NULL),
('result','course_reg','9487',4514,NULL),
('result','course_reg','9488',4515,NULL),
('result','course_reg','9489',4516,NULL),
('result','course_reg','9490',4517,NULL),
('result','course_reg','9491',4518,NULL),
('result','course_reg','9492',4519,NULL),
('result','course_reg','9493',4520,NULL),
('result','course_reg','9494',4521,NULL),
('result','course_reg','9495',4522,NULL),
('result','course_reg','9496',4523,NULL),
('result','course_reg','9497',4524,NULL),
('result','course_reg','9498',4525,NULL),
('result','course_reg','9499',4526,NULL),
('result','course_reg','9500',4527,NULL),
('result','course_reg','9501',4528,NULL),
('result','course_reg','9502',4529,NULL),
('result','course_reg','9503',4530,NULL),
('result','course_reg','9504',4531,NULL),
('result','course_reg','9505',4532,NULL),
('result','course_reg','9506',4533,NULL),
('result','course_reg','9507',4534,NULL),
('result','course_reg','9508',4535,NULL),
('result','course_reg','9509',4536,NULL),
('result','course_reg','9511',4537,NULL),
('result','course_reg','9512',4538,NULL),
('result','course_reg','9513',4539,NULL),
('result','course_reg','9515',4540,NULL),
('result','course_reg','9516',4541,NULL),
('result','course_reg','9517',4542,NULL),
('result','course_reg','9518',4543,NULL),
('result','course_reg','9519',4544,NULL),
('result','course_reg','9521',4545,NULL),
('result','course_reg','9522',4546,NULL),
('result','course_reg','9523',4547,NULL),
('result','course_reg','9524',4548,NULL),
('result','course_reg','9525',4549,NULL),
('result','course_reg','9526',4550,NULL),
('result','course_reg','9527',4551,NULL),
('result','course_reg','9528',4552,NULL),
('result','course_reg','9529',4553,NULL),
('result','course_reg','9530',4554,NULL),
('result','course_reg','9531',4555,NULL),
('result','course_reg','9532',4556,NULL),
('result','course_reg','9533',4557,NULL),
('result','course_reg','9534',4558,NULL),
('result','course_reg','9535',4559,NULL),
('result','course_reg','9536',4560,NULL),
('result','course_reg','9537',4561,NULL),
('result','course_reg','9538',4562,NULL),
('result','course_reg','9539',4563,NULL),
('result','course_reg','9540',4564,NULL),
('result','course_reg','9541',4565,NULL),
('result','course_reg','9542',4566,NULL),
('result','course_reg','9543',4567,NULL),
('result','course_reg','9544',4568,NULL),
('result','course_reg','9546',4569,NULL),
('result','course_reg','9547',4570,NULL),
('result','course_reg','9548',4571,NULL),
('result','course_reg','9549',4572,NULL),
('result','course_reg','9550',4573,NULL),
('result','course_reg','9551',4574,NULL),
('result','course_reg','9552',4575,NULL),
('result','course_reg','9553',4576,NULL),
('result','course_reg','9554',4577,NULL),
('result','course_reg','9555',4578,NULL),
('result','course_reg','9556',4579,NULL),
('result','course_reg','9557',4580,NULL),
('result','course_reg','9558',4581,NULL),
('result','course_reg','9559',4582,NULL),
('result','course_reg','9560',4583,NULL),
('result','course_reg','9561',4584,NULL),
('result','course_reg','9562',4585,NULL),
('result','course_reg','9563',4586,NULL),
('result','course_reg','9564',4587,NULL),
('result','course_reg','9565',4588,NULL),
('result','course_reg','9566',4589,NULL),
('result','course_reg','9567',4590,NULL),
('result','course_reg','9568',4591,NULL),
('result','course_reg','9569',4592,NULL),
('result','course_reg','9570',4593,NULL),
('result','course_reg','9571',4594,NULL),
('result','course_reg','9572',4595,NULL),
('result','course_reg','9573',4596,NULL),
('result','course_reg','9574',4597,NULL),
('result','course_reg','9575',4598,NULL),
('result','course_reg','9576',4599,NULL),
('result','course_reg','9577',4600,NULL),
('result','course_reg','9578',4601,NULL),
('result','course_reg','9579',4602,NULL),
('result','course_reg','9580',4603,NULL),
('result','course_reg','9581',4604,NULL),
('result','course_reg','9582',4605,NULL),
('result','course_reg','9583',4606,NULL),
('result','course_reg','9584',4607,NULL),
('result','course_reg','9585',4608,NULL),
('result','course_reg','9586',4609,NULL),
('result','course_reg','9587',4610,NULL),
('result','course_reg','9588',4611,NULL),
('result','course_reg','9589',4612,NULL),
('result','course_reg','9590',4613,NULL),
('result','course_reg','9591',4614,NULL),
('result','course_reg','9592',4615,NULL),
('result','course_reg','9593',4616,NULL),
('result','course_reg','9594',4617,NULL),
('result','course_reg','9595',4618,NULL),
('result','course_reg','9596',4619,NULL),
('result','course_reg','9597',4620,NULL),
('result','course_reg','9598',4621,NULL),
('result','course_reg','9599',4622,NULL),
('result','course_reg','9600',4623,NULL),
('result','course_reg','9601',4624,NULL),
('result','course_reg','9602',4625,NULL),
('result','course_reg','9603',4626,NULL),
('result','course_reg','9604',4627,NULL),
('result','course_reg','9605',4628,NULL),
('result','course_reg','9606',4629,NULL),
('result','course_reg','9607',4630,NULL),
('result','course_reg','9608',4631,NULL),
('result','course_reg','9609',4632,NULL),
('result','course_reg','9610',4633,NULL),
('result','course_reg','9611',4634,NULL),
('result','course_reg','9612',4635,NULL),
('result','course_reg','9613',4636,NULL),
('result','course_reg','9614',4637,NULL),
('result','course_reg','9615',4638,NULL),
('result','course_reg','9616',4639,NULL),
('result','course_reg','9617',4640,NULL),
('result','course_reg','9618',4641,NULL),
('result','course_reg','9619',4642,NULL),
('result','course_reg','9620',4643,NULL),
('result','course_reg','9621',4644,NULL),
('result','course_reg','9622',4645,NULL),
('result','course_reg','9623',4646,NULL),
('result','course_reg','9624',4647,NULL),
('result','course_reg','9625',4648,NULL),
('result','course_reg','9626',4649,NULL),
('result','course_reg','9627',4650,NULL),
('result','course_reg','9628',4651,NULL),
('result','course_reg','9629',4652,NULL),
('result','course_reg','9630',4653,NULL),
('result','course_reg','9631',4654,NULL),
('result','course_reg','9632',4655,NULL),
('result','course_reg','9633',4656,NULL),
('result','course_reg','9634',4657,NULL),
('result','course_reg','9635',4658,NULL),
('result','course_reg','9636',4659,NULL),
('result','course_reg','9637',4660,NULL),
('result','course_reg','9638',4661,NULL),
('result','course_reg','9639',4662,NULL),
('result','course_reg','9640',4663,NULL),
('result','course_reg','9641',4664,NULL),
('result','course_reg','9642',4665,NULL),
('result','course_reg','9643',4666,NULL),
('result','course_reg','9644',4667,NULL),
('result','course_reg','9645',4668,NULL),
('result','course_reg','9646',4669,NULL),
('result','course_reg','9647',4670,NULL),
('result','course_reg','9648',4671,NULL),
('result','course_reg','9649',4672,NULL),
('result','course_reg','9650',4673,NULL),
('result','course_reg','9651',4674,NULL),
('result','course_reg','9652',4675,NULL),
('result','course_reg','9653',4676,NULL),
('result','course_reg','9654',4677,NULL),
('result','course_reg','9655',4678,NULL),
('result','course_reg','9656',4679,NULL),
('result','course_reg','9657',4680,NULL),
('result','course_reg','9658',4681,NULL),
('result','course_reg','9659',4682,NULL),
('result','course_reg','9660',4683,NULL),
('result','course_reg','9661',4684,NULL),
('result','course_reg','9662',4685,NULL),
('result','course_reg','9663',4686,NULL),
('result','course_reg','9664',4687,NULL),
('result','course_reg','9665',4688,NULL),
('result','course_reg','9666',4689,NULL),
('result','course_reg','9667',4690,NULL),
('result','course_reg','9668',4691,NULL),
('result','course_reg','9669',4692,NULL),
('result','course_reg','9671',4693,NULL),
('result','course_reg','9672',4694,NULL),
('result','course_reg','9673',4695,NULL),
('result','course_reg','9674',4696,NULL),
('result','course_reg','9675',4697,NULL),
('result','course_reg','9676',4698,NULL),
('result','course_reg','9677',4699,NULL),
('result','course_reg','9678',4700,NULL),
('result','course_reg','9679',4701,NULL),
('result','course_reg','9680',4702,NULL),
('result','course_reg','9681',4703,NULL),
('result','course_reg','9682',4704,NULL),
('result','course_reg','9683',4705,NULL),
('result','course_reg','9684',4706,NULL),
('result','course_reg','9685',4707,NULL),
('result','course_reg','9686',4708,NULL),
('result','course_reg','9687',4709,NULL),
('result','course_reg','9688',4710,NULL),
('result','course_reg','9689',4711,NULL),
('result','course_reg','9690',4712,NULL),
('result','course_reg','9691',4713,NULL),
('result','course_reg','9693',4714,NULL),
('result','course_reg','9695',4715,NULL),
('result','course_reg','9696',4716,NULL),
('result','course_reg','9697',4717,NULL),
('result','course_reg','9698',4718,NULL),
('result','course_reg','9699',4719,NULL),
('result','course_reg','9700',4720,NULL),
('result','course_reg','9701',4721,NULL),
('result','course_reg','9702',4722,NULL),
('result','course_reg','9703',4723,NULL),
('result','course_reg','9704',4724,NULL),
('result','course_reg','9705',4725,NULL),
('result','course_reg','9706',4726,NULL),
('result','course_reg','9707',4727,NULL),
('result','course_reg','9708',4728,NULL),
('result','course_reg','9709',4729,NULL),
('result','course_reg','9710',4730,NULL),
('result','course_reg','9711',4731,NULL),
('result','course_reg','9712',4732,NULL),
('result','course_reg','9713',4733,NULL),
('result','course_reg','9714',4734,NULL),
('result','course_reg','9715',4735,NULL),
('result','course_reg','9716',4736,NULL),
('result','course_reg','9717',4737,NULL),
('result','course_reg','9718',4738,NULL),
('result','course_reg','9719',4739,NULL);
INSERT INTO `legacy_mappings` (`entity_type`,`legacy_table`,`legacy_id`,`new_id`,`notes`) VALUES
('result','course_reg','9720',4740,NULL),
('result','course_reg','9722',4741,NULL),
('result','course_reg','9723',4742,NULL),
('result','course_reg','9724',4743,NULL),
('result','course_reg','9725',4744,NULL),
('result','course_reg','9726',4745,NULL),
('result','course_reg','9727',4746,NULL),
('result','course_reg','9728',4747,NULL),
('result','course_reg','9729',4748,NULL),
('result','course_reg','9731',4749,NULL),
('result','course_reg','9732',4750,NULL),
('result','course_reg','9733',4751,NULL),
('result','course_reg','9734',4752,NULL),
('result','course_reg','9735',4753,NULL),
('result','course_reg','9736',4754,NULL),
('result','course_reg','9737',4755,NULL),
('result','course_reg','9738',4756,NULL),
('result','course_reg','9739',4757,NULL),
('result','course_reg','9740',4758,NULL),
('result','course_reg','9741',4759,NULL),
('result','course_reg','9742',4760,NULL),
('result','course_reg','9743',4761,NULL),
('result','course_reg','9744',4762,NULL),
('result','course_reg','9745',4763,NULL),
('result','course_reg','9746',4764,NULL),
('result','course_reg','9747',4765,NULL),
('result','course_reg','9748',4766,NULL),
('result','course_reg','9750',4767,NULL),
('result','course_reg','9751',4768,NULL),
('result','course_reg','9752',4769,NULL),
('result','course_reg','9753',4770,NULL),
('result','course_reg','9754',4771,NULL),
('result','course_reg','9755',4772,NULL),
('result','course_reg','9756',4773,NULL),
('result','course_reg','9757',4774,NULL),
('result','course_reg','9759',4775,NULL),
('result','course_reg','9760',4776,NULL),
('result','course_reg','9761',4777,NULL),
('result','course_reg','9762',4778,NULL),
('result','course_reg','9763',4779,NULL),
('result','course_reg','9764',4780,NULL),
('result','course_reg','9765',4781,NULL),
('result','course_reg','9766',4782,NULL),
('result','course_reg','9768',4783,NULL),
('result','course_reg','9769',4784,NULL),
('result','course_reg','9770',4785,NULL),
('result','course_reg','9771',4786,NULL),
('result','course_reg','9772',4787,NULL),
('result','course_reg','9773',4788,NULL),
('result','course_reg','9774',4789,NULL),
('result','course_reg','9775',4790,NULL),
('result','course_reg','9776',4791,NULL),
('result','course_reg','9777',4792,NULL),
('result','course_reg','9778',4793,NULL),
('result','course_reg','9779',4794,NULL),
('result','course_reg','9780',4795,NULL),
('result','course_reg','9781',4796,NULL),
('result','course_reg','9782',4797,NULL),
('result','course_reg','9783',4798,NULL),
('result','course_reg','9784',4799,NULL),
('result','course_reg','9785',4800,NULL),
('result','course_reg','9786',4801,NULL),
('result','course_reg','9787',4802,NULL),
('result','course_reg','9788',4803,NULL),
('result','course_reg','9789',4804,NULL),
('result','course_reg','9790',4805,NULL),
('result','course_reg','9791',4806,NULL),
('result','course_reg','9792',4807,NULL),
('result','course_reg','9793',4808,NULL),
('result','course_reg','9794',4809,NULL),
('result','course_reg','9795',4810,NULL),
('result','course_reg','9796',4811,NULL),
('result','course_reg','9797',4812,NULL),
('result','course_reg','9798',4813,NULL),
('result','course_reg','9799',4814,NULL),
('result','course_reg','9800',4815,NULL),
('result','course_reg','9801',4816,NULL),
('result','course_reg','9802',4817,NULL),
('result','course_reg','9803',4818,NULL),
('result','course_reg','9804',4819,NULL),
('result','course_reg','9805',4820,NULL),
('result','course_reg','9806',4821,NULL),
('result','course_reg','9807',4822,NULL),
('result','course_reg','9808',4823,NULL),
('result','course_reg','9809',4824,NULL),
('result','course_reg','9810',4825,NULL),
('result','course_reg','9811',4826,NULL),
('result','course_reg','9812',4827,NULL),
('result','course_reg','9813',4828,NULL),
('result','course_reg','9814',4829,NULL),
('result','course_reg','9815',4830,NULL),
('result','course_reg','9816',4831,NULL),
('result','course_reg','9817',4832,NULL),
('result','course_reg','9818',4833,NULL),
('result','course_reg','9819',4834,NULL),
('result','course_reg','9820',4835,NULL),
('result','course_reg','9821',4836,NULL),
('result','course_reg','9822',4837,NULL),
('result','course_reg','9823',4838,NULL),
('result','course_reg','9824',4839,NULL),
('result','course_reg','9825',4840,NULL),
('result','course_reg','9826',4841,NULL),
('result','course_reg','9827',4842,NULL),
('result','course_reg','9828',4843,NULL),
('result','course_reg','9829',4844,NULL),
('result','course_reg','9830',4845,NULL),
('result','course_reg','9831',4846,NULL),
('result','course_reg','9832',4847,NULL),
('result','course_reg','9833',4848,NULL),
('result','course_reg','9834',4849,NULL),
('result','course_reg','9835',4850,NULL),
('result','course_reg','9836',4851,NULL),
('result','course_reg','9837',4852,NULL),
('result','course_reg','9838',4853,NULL),
('result','course_reg','9839',4854,NULL),
('result','course_reg','9840',4855,NULL),
('result','course_reg','9841',4856,NULL),
('result','course_reg','9842',4857,NULL),
('result','course_reg','9843',4858,NULL),
('result','course_reg','9844',4859,NULL),
('result','course_reg','9852',4860,NULL),
('result','course_reg','9853',4861,NULL),
('result','course_reg','9854',4862,NULL),
('result','course_reg','9855',4863,NULL),
('result','course_reg','9856',4864,NULL),
('result','course_reg','9857',4865,NULL),
('result','course_reg','9858',4866,NULL),
('result','course_reg','9859',4867,NULL),
('result','course_reg','9860',4868,NULL),
('result','course_reg','9861',4869,NULL),
('result','course_reg','9862',4870,NULL),
('result','course_reg','9863',4871,NULL),
('result','course_reg','9864',4872,NULL),
('result','course_reg','9865',4873,NULL),
('result','course_reg','9866',4874,NULL),
('result','course_reg','9867',4875,NULL),
('result','course_reg','9868',4876,NULL),
('result','course_reg','9869',4877,NULL),
('result','course_reg','9870',4878,NULL),
('result','course_reg','9871',4879,NULL),
('result','course_reg','9872',4880,NULL),
('result','course_reg','9873',4881,NULL),
('result','course_reg','9874',4882,NULL),
('result','course_reg','9875',4883,NULL),
('result','course_reg','9876',4884,NULL),
('result','course_reg','9877',4885,NULL),
('result','course_reg','9878',4886,NULL),
('result','course_reg','9879',4887,NULL),
('result','course_reg','9880',4888,NULL),
('result','course_reg','9881',4889,NULL),
('result','course_reg','9882',4890,NULL),
('result','course_reg','9883',4891,NULL),
('result','course_reg','9884',4892,NULL),
('result','course_reg','9885',4893,NULL),
('result','course_reg','9886',4894,NULL),
('result','course_reg','9887',4895,NULL),
('result','course_reg','9888',4896,NULL),
('result','course_reg','9889',4897,NULL),
('result','course_reg','9890',4898,NULL),
('result','course_reg','9891',4899,NULL),
('result','course_reg','9892',4900,NULL),
('result','course_reg','9893',4901,NULL),
('result','course_reg','9894',4902,NULL),
('result','course_reg','9895',4903,NULL),
('result','course_reg','9897',4904,NULL),
('result','course_reg','9898',4905,NULL),
('result','course_reg','9899',4906,NULL),
('result','course_reg','9900',4907,NULL),
('result','course_reg','9901',4908,NULL),
('result','course_reg','9902',4909,NULL),
('result','course_reg','9903',4910,NULL),
('result','course_reg','9904',4911,NULL),
('result','course_reg','9905',4912,NULL),
('result','course_reg','9906',4913,NULL),
('result','course_reg','9907',4914,NULL),
('result','course_reg','9908',4915,NULL),
('result','course_reg','9909',4916,NULL),
('result','course_reg','9910',4917,NULL),
('result','course_reg','9911',4918,NULL),
('result','course_reg','9912',4919,NULL),
('result','course_reg','9913',4920,NULL),
('result','course_reg','9914',4921,NULL),
('result','course_reg','9915',4922,NULL),
('result','course_reg','9916',4923,NULL),
('result','course_reg','9917',4924,NULL),
('result','course_reg','9918',4925,NULL),
('result','course_reg','9919',4926,NULL),
('result','course_reg','9920',4927,NULL),
('result','course_reg','9921',4928,NULL),
('result','course_reg','9922',4929,NULL),
('result','course_reg','9923',4930,NULL),
('result','course_reg','9924',4931,NULL),
('result','course_reg','9925',4932,NULL),
('result','course_reg','9926',4933,NULL),
('result','course_reg','9927',4934,NULL),
('result','course_reg','9928',4935,NULL),
('result','course_reg','9929',4936,NULL),
('result','course_reg','9930',4937,NULL),
('result','course_reg','9931',4938,NULL),
('result','course_reg','9932',4939,NULL),
('result','course_reg','9933',4940,NULL),
('result','course_reg','9934',4941,NULL),
('result','course_reg','9935',4942,NULL),
('result','course_reg','9936',4943,NULL),
('result','course_reg','9937',4944,NULL),
('result','course_reg','9938',4945,NULL),
('result','course_reg','9939',4946,NULL),
('result','course_reg','9940',4947,NULL),
('result','course_reg','9941',4948,NULL),
('result','course_reg','9942',4949,NULL),
('result','course_reg','9943',4950,NULL),
('result','course_reg','9944',4951,NULL),
('result','course_reg','9945',4952,NULL),
('result','course_reg','9946',4953,NULL),
('result','course_reg','9947',4954,NULL),
('result','course_reg','9948',4955,NULL),
('result','course_reg','9949',4956,NULL),
('result','course_reg','9950',4957,NULL),
('result','course_reg','9951',4958,NULL),
('result','course_reg','9952',4959,NULL),
('result','course_reg','9953',4960,NULL),
('result','course_reg','9954',4961,NULL),
('result','course_reg','9955',4962,NULL),
('result','course_reg','9957',4963,NULL),
('result','course_reg','9958',4964,NULL),
('result','course_reg','9959',4965,NULL),
('result','course_reg','9960',4966,NULL),
('result','course_reg','9961',4967,NULL),
('result','course_reg','9962',4968,NULL),
('result','course_reg','9963',4969,NULL),
('result','course_reg','9964',4970,NULL),
('result','course_reg','9966',4971,NULL),
('result','course_reg','9967',4972,NULL),
('result','course_reg','9968',4973,NULL),
('result','course_reg','9969',4974,NULL),
('result','course_reg','9970',4975,NULL),
('result','course_reg','9971',4976,NULL),
('result','course_reg','9972',4977,NULL),
('result','course_reg','9973',4978,NULL),
('result','course_reg','9974',4979,NULL),
('result','course_reg','9976',4980,NULL),
('result','course_reg','9977',4981,NULL),
('result','course_reg','9978',4982,NULL),
('result','course_reg','9979',4983,NULL),
('result','course_reg','9980',4984,NULL),
('result','course_reg','9981',4985,NULL),
('result','course_reg','9982',4986,NULL),
('result','course_reg','9983',4987,NULL),
('result','course_reg','9984',4988,NULL),
('result','course_reg','9985',4989,NULL);
INSERT INTO `legacy_mappings` (`entity_type`,`legacy_table`,`legacy_id`,`new_id`,`notes`) VALUES
('result','course_reg','9986',4990,NULL),
('result','course_reg','9987',4991,NULL),
('result','course_reg','9988',4992,NULL),
('result','course_reg','9989',4993,NULL),
('result','course_reg','9990',4994,NULL),
('result','course_reg','9991',4995,NULL),
('result','course_reg','9992',4996,NULL),
('result','course_reg','9993',4997,NULL),
('result','course_reg','9994',4998,NULL),
('result','course_reg','9995',4999,NULL),
('result','course_reg','9996',5000,NULL),
('result','course_reg','9997',5001,NULL),
('result','course_reg','9998',5002,NULL),
('result','course_reg','9999',5003,NULL),
('result','course_reg','10000',5004,NULL),
('result','course_reg','10001',5005,NULL),
('result','course_reg','10002',5006,NULL),
('result','course_reg','10003',5007,NULL),
('result','course_reg','10004',5008,NULL),
('result','course_reg','10005',5009,NULL),
('result','course_reg','10006',5010,NULL),
('result','course_reg','10007',5011,NULL),
('result','course_reg','10008',5012,NULL),
('result','course_reg','10009',5013,NULL),
('result','course_reg','10010',5014,NULL),
('result','course_reg','10011',5015,NULL),
('result','course_reg','10012',5016,NULL),
('result','course_reg','10013',5017,NULL),
('result','course_reg','10014',5018,NULL),
('result','course_reg','10015',5019,NULL),
('result','course_reg','10016',5020,NULL),
('result','course_reg','10017',5021,NULL),
('result','course_reg','10018',5022,NULL),
('result','course_reg','10019',5023,NULL),
('result','course_reg','10020',5024,NULL),
('result','course_reg','10021',5025,NULL),
('result','course_reg','10022',5026,NULL),
('result','course_reg','10023',5027,NULL),
('result','course_reg','10024',5028,NULL),
('result','course_reg','10025',5029,NULL),
('result','course_reg','10026',5030,NULL),
('result','course_reg','10027',5031,NULL),
('result','course_reg','10028',5032,NULL),
('result','course_reg','10029',5033,NULL),
('result','course_reg','10030',5034,NULL),
('result','course_reg','10031',5035,NULL),
('result','course_reg','10032',5036,NULL),
('result','course_reg','10033',5037,NULL),
('result','course_reg','10034',5038,NULL),
('result','course_reg','10035',5039,NULL),
('result','course_reg','10036',5040,NULL),
('result','course_reg','10037',5041,NULL),
('result','course_reg','10038',5042,NULL),
('result','course_reg','10039',5043,NULL),
('result','course_reg','10040',5044,NULL),
('result','course_reg','10048',5045,NULL),
('result','course_reg','10049',5046,NULL),
('result','course_reg','10050',5047,NULL),
('result','course_reg','10051',5048,NULL),
('result','course_reg','10052',5049,NULL),
('result','course_reg','10053',5050,NULL),
('result','course_reg','10054',5051,NULL),
('result','course_reg','10055',5052,NULL),
('result','course_reg','10056',5053,NULL),
('result','course_reg','10057',5054,NULL),
('result','course_reg','10058',5055,NULL),
('result','course_reg','10059',5056,NULL),
('result','course_reg','10060',5057,NULL),
('result','course_reg','10061',5058,NULL),
('result','course_reg','10062',5059,NULL),
('result','course_reg','10063',5060,NULL),
('result','course_reg','10064',5061,NULL),
('result','course_reg','10065',5062,NULL),
('result','course_reg','10066',5063,NULL),
('result','course_reg','10067',5064,NULL),
('result','course_reg','10068',5065,NULL),
('result','course_reg','10069',5066,NULL),
('result','course_reg','10070',5067,NULL),
('result','course_reg','10071',5068,NULL),
('result','course_reg','10072',5069,NULL),
('result','course_reg','10073',5070,NULL),
('result','course_reg','10074',5071,NULL),
('result','course_reg','10075',5072,NULL),
('result','course_reg','10076',5073,NULL),
('result','course_reg','10077',5074,NULL),
('result','course_reg','10078',5075,NULL),
('result','course_reg','10079',5076,NULL),
('result','course_reg','10080',5077,NULL),
('result','course_reg','10081',5078,NULL),
('result','course_reg','10082',5079,NULL),
('result','course_reg','10083',5080,NULL),
('result','course_reg','10084',5081,NULL),
('result','course_reg','10085',5082,NULL),
('result','course_reg','10086',5083,NULL),
('result','course_reg','10087',5084,NULL),
('result','course_reg','10088',5085,NULL),
('result','course_reg','10089',5086,NULL),
('result','course_reg','10090',5087,NULL),
('result','course_reg','10091',5088,NULL),
('result','course_reg','10092',5089,NULL),
('result','course_reg','10093',5090,NULL),
('result','course_reg','10094',5091,NULL),
('result','course_reg','10095',5092,NULL),
('result','course_reg','10096',5093,NULL),
('result','course_reg','10097',5094,NULL),
('result','course_reg','10098',5095,NULL),
('result','course_reg','10099',5096,NULL),
('result','course_reg','10100',5097,NULL),
('result','course_reg','10101',5098,NULL),
('result','course_reg','10102',5099,NULL),
('result','course_reg','10103',5100,NULL),
('result','course_reg','10104',5101,NULL),
('result','course_reg','10105',5102,NULL),
('result','course_reg','10106',5103,NULL),
('result','course_reg','10107',5104,NULL),
('result','course_reg','10108',5105,NULL),
('result','course_reg','10109',5106,NULL),
('result','course_reg','10110',5107,NULL),
('result','course_reg','10111',5108,NULL),
('result','course_reg','10112',5109,NULL),
('result','course_reg','10113',5110,NULL),
('result','course_reg','10114',5111,NULL),
('result','course_reg','10117',5112,NULL),
('result','course_reg','10118',5113,NULL),
('result','course_reg','10119',5114,NULL),
('result','course_reg','10120',5115,NULL),
('result','course_reg','10121',5116,NULL),
('result','course_reg','10122',5117,NULL),
('result','course_reg','10123',5118,NULL),
('result','course_reg','10124',5119,NULL),
('result','course_reg','10125',5120,NULL),
('result','course_reg','10126',5121,NULL),
('result','course_reg','10128',5122,NULL),
('result','course_reg','10130',5123,NULL),
('result','course_reg','10132',5124,NULL),
('result','course_reg','10133',5125,NULL),
('result','course_reg','10134',5126,NULL),
('result','course_reg','10135',5127,NULL),
('result','course_reg','10136',5128,NULL),
('result','course_reg','10137',5129,NULL),
('result','course_reg','10139',5130,NULL),
('result','course_reg','10140',5131,NULL),
('result','course_reg','10141',5132,NULL),
('result','course_reg','10142',5133,NULL),
('result','course_reg','10143',5134,NULL),
('result','course_reg','10144',5135,NULL),
('result','course_reg','10146',5136,NULL),
('result','course_reg','10147',5137,NULL),
('result','course_reg','10148',5138,NULL),
('result','course_reg','10149',5139,NULL),
('result','course_reg','10150',5140,NULL),
('result','course_reg','10151',5141,NULL),
('result','course_reg','10152',5142,NULL),
('result','course_reg','10153',5143,NULL),
('result','course_reg','10161',5144,NULL),
('result','course_reg','10162',5145,NULL),
('result','course_reg','10164',5146,NULL),
('result','course_reg','10165',5147,NULL),
('result','course_reg','10167',5148,NULL),
('result','course_reg','10168',5149,NULL),
('result','course_reg','10169',5150,NULL),
('result','course_reg','10170',5151,NULL),
('result','course_reg','10171',5152,NULL),
('result','course_reg','10173',5153,NULL),
('result','course_reg','10174',5154,NULL),
('result','course_reg','10175',5155,NULL),
('result','course_reg','10176',5156,NULL),
('result','course_reg','10177',5157,NULL),
('result','course_reg','10178',5158,NULL),
('result','course_reg','10179',5159,NULL),
('result','course_reg','10180',5160,NULL),
('result','course_reg','10181',5161,NULL),
('result','course_reg','10182',5162,NULL),
('result','course_reg','10183',5163,NULL),
('result','course_reg','10184',5164,NULL),
('result','course_reg','10185',5165,NULL),
('result','course_reg','10186',5166,NULL),
('result','course_reg','10187',5167,NULL),
('result','course_reg','10188',5168,NULL),
('result','course_reg','10189',5169,NULL),
('result','course_reg','10190',5170,NULL),
('result','course_reg','10191',5171,NULL),
('result','course_reg','10192',5172,NULL),
('result','course_reg','10193',5173,NULL),
('result','course_reg','10194',5174,NULL),
('result','course_reg','10195',5175,NULL),
('result','course_reg','10196',5176,NULL),
('result','course_reg','10197',5177,NULL),
('result','course_reg','10198',5178,NULL),
('result','course_reg','10199',5179,NULL),
('result','course_reg','10200',5180,NULL),
('result','course_reg','10201',5181,NULL),
('result','course_reg','10202',5182,NULL),
('result','course_reg','10203',5183,NULL),
('result','course_reg','10204',5184,NULL),
('result','course_reg','10206',5185,NULL),
('result','course_reg','10207',5186,NULL),
('result','course_reg','10208',5187,NULL),
('result','course_reg','10209',5188,NULL),
('result','course_reg','10210',5189,NULL),
('result','course_reg','10211',5190,NULL),
('result','course_reg','10212',5191,NULL),
('result','course_reg','10213',5192,NULL),
('result','course_reg','10214',5193,NULL),
('result','course_reg','10215',5194,NULL),
('result','course_reg','10216',5195,NULL),
('result','course_reg','10218',5196,NULL),
('result','course_reg','10219',5197,NULL),
('result','course_reg','10220',5198,NULL),
('result','course_reg','10221',5199,NULL),
('result','course_reg','10222',5200,NULL),
('result','course_reg','10223',5201,NULL),
('result','course_reg','10224',5202,NULL),
('result','course_reg','10225',5203,NULL),
('result','course_reg','10227',5204,NULL),
('result','course_reg','10228',5205,NULL),
('result','course_reg','10229',5206,NULL),
('result','course_reg','10230',5207,NULL),
('result','course_reg','10231',5208,NULL),
('result','course_reg','10232',5209,NULL),
('result','course_reg','10233',5210,NULL),
('result','course_reg','10234',5211,NULL),
('result','course_reg','10235',5212,NULL),
('result','course_reg','10240',5213,NULL),
('result','course_reg','10241',5214,NULL),
('result','course_reg','10242',5215,NULL),
('result','course_reg','10244',5216,NULL),
('result','course_reg','10245',5217,NULL),
('result','course_reg','10246',5218,NULL),
('result','course_reg','10247',5219,NULL),
('result','course_reg','10248',5220,NULL),
('result','course_reg','10249',5221,NULL),
('result','course_reg','10250',5222,NULL),
('result','course_reg','10251',5223,NULL),
('result','course_reg','10252',5224,NULL),
('result','course_reg','10253',5225,NULL),
('result','course_reg','10254',5226,NULL),
('result','course_reg','10255',5227,NULL),
('result','course_reg','10256',5228,NULL),
('result','course_reg','10257',5229,NULL),
('result','course_reg','10258',5230,NULL),
('result','course_reg','10259',5231,NULL),
('result','course_reg','10260',5232,NULL),
('result','course_reg','10262',5233,NULL),
('result','course_reg','10263',5234,NULL),
('result','course_reg','10264',5235,NULL),
('result','course_reg','10265',5236,NULL),
('result','course_reg','10266',5237,NULL),
('result','course_reg','10267',5238,NULL),
('result','course_reg','10268',5239,NULL);
INSERT INTO `legacy_mappings` (`entity_type`,`legacy_table`,`legacy_id`,`new_id`,`notes`) VALUES
('result','course_reg','10269',5240,NULL),
('result','course_reg','10270',5241,NULL),
('result','course_reg','10271',5242,NULL),
('result','course_reg','10272',5243,NULL),
('result','course_reg','10273',5244,NULL),
('result','course_reg','10274',5245,NULL),
('result','course_reg','10275',5246,NULL),
('result','course_reg','10276',5247,NULL),
('result','course_reg','10277',5248,NULL),
('result','course_reg','10278',5249,NULL),
('result','course_reg','10279',5250,NULL),
('result','course_reg','10280',5251,NULL),
('result','course_reg','10281',5252,NULL),
('result','course_reg','10282',5253,NULL),
('result','course_reg','10283',5254,NULL),
('result','course_reg','10284',5255,NULL),
('result','course_reg','10285',5256,NULL),
('result','course_reg','10286',5257,NULL),
('result','course_reg','10287',5258,NULL),
('result','course_reg','10288',5259,NULL),
('result','course_reg','10289',5260,NULL),
('result','course_reg','10290',5261,NULL),
('result','course_reg','10291',5262,NULL),
('result','course_reg','10292',5263,NULL),
('result','course_reg','10293',5264,NULL),
('result','course_reg','10294',5265,NULL),
('result','course_reg','10295',5266,NULL),
('result','course_reg','10296',5267,NULL),
('result','course_reg','10297',5268,NULL),
('result','course_reg','10298',5269,NULL),
('result','course_reg','10299',5270,NULL),
('result','course_reg','10300',5271,NULL),
('result','course_reg','10301',5272,NULL),
('result','course_reg','10302',5273,NULL),
('result','course_reg','10303',5274,NULL),
('result','course_reg','10304',5275,NULL),
('result','course_reg','10305',5276,NULL),
('result','course_reg','10306',5277,NULL),
('result','course_reg','10307',5278,NULL),
('result','course_reg','10308',5279,NULL),
('result','course_reg','10309',5280,NULL),
('result','course_reg','10310',5281,NULL),
('result','course_reg','10311',5282,NULL),
('result','course_reg','10312',5283,NULL),
('result','course_reg','10313',5284,NULL),
('result','course_reg','10314',5285,NULL),
('result','course_reg','10315',5286,NULL),
('result','course_reg','10316',5287,NULL),
('result','course_reg','10317',5288,NULL),
('result','course_reg','10318',5289,NULL),
('result','course_reg','10319',5290,NULL),
('result','course_reg','10320',5291,NULL),
('result','course_reg','10321',5292,NULL),
('result','course_reg','10322',5293,NULL),
('result','course_reg','10323',5294,NULL),
('result','course_reg','10324',5295,NULL),
('result','course_reg','10325',5296,NULL),
('result','course_reg','10326',5297,NULL),
('result','course_reg','10328',5298,NULL),
('result','course_reg','10329',5299,NULL),
('result','course_reg','10330',5300,NULL),
('result','course_reg','10331',5301,NULL),
('result','course_reg','10332',5302,NULL),
('result','course_reg','10333',5303,NULL),
('result','course_reg','10334',5304,NULL),
('result','course_reg','10335',5305,NULL),
('result','course_reg','10337',5306,NULL),
('result','course_reg','10338',5307,NULL),
('result','course_reg','10340',5308,NULL),
('result','course_reg','10341',5309,NULL),
('result','course_reg','10342',5310,NULL),
('result','course_reg','10343',5311,NULL),
('result','course_reg','10344',5312,NULL),
('result','course_reg','10345',5313,NULL),
('result','course_reg','10346',5314,NULL),
('result','course_reg','10347',5315,NULL),
('result','course_reg','10348',5316,NULL),
('result','course_reg','10349',5317,NULL),
('result','course_reg','10350',5318,NULL),
('result','course_reg','10351',5319,NULL),
('result','course_reg','10352',5320,NULL),
('result','course_reg','10353',5321,NULL),
('result','course_reg','10354',5322,NULL),
('result','course_reg','10355',5323,NULL),
('result','course_reg','10356',5324,NULL),
('result','course_reg','10357',5325,NULL),
('result','course_reg','10358',5326,NULL),
('result','course_reg','10359',5327,NULL),
('result','course_reg','10360',5328,NULL),
('result','course_reg','10361',5329,NULL),
('result','course_reg','10362',5330,NULL),
('result','course_reg','10363',5331,NULL),
('result','course_reg','10364',5332,NULL),
('result','course_reg','10365',5333,NULL),
('result','course_reg','10366',5334,NULL),
('result','course_reg','10367',5335,NULL),
('result','course_reg','10368',5336,NULL),
('result','course_reg','10369',5337,NULL),
('result','course_reg','10370',5338,NULL),
('result','course_reg','10371',5339,NULL),
('result','course_reg','10372',5340,NULL),
('result','course_reg','10373',5341,NULL),
('result','course_reg','10374',5342,NULL),
('result','course_reg','10375',5343,NULL),
('result','course_reg','10376',5344,NULL),
('result','course_reg','10377',5345,NULL),
('result','course_reg','10378',5346,NULL),
('result','course_reg','10380',5347,NULL),
('result','course_reg','10381',5348,NULL),
('result','course_reg','10382',5349,NULL),
('result','course_reg','10383',5350,NULL),
('result','course_reg','10384',5351,NULL),
('result','course_reg','10385',5352,NULL),
('result','course_reg','10386',5353,NULL),
('result','course_reg','10387',5354,NULL),
('result','course_reg','10388',5355,NULL),
('result','course_reg','10389',5356,NULL),
('result','course_reg','10390',5357,NULL),
('result','course_reg','10391',5358,NULL),
('result','course_reg','10392',5359,NULL),
('result','course_reg','10393',5360,NULL),
('result','course_reg','10394',5361,NULL),
('result','course_reg','10395',5362,NULL),
('result','course_reg','10396',5363,NULL),
('result','course_reg','10401',5364,NULL),
('result','course_reg','10404',5365,NULL),
('result','course_reg','10405',5366,NULL),
('result','course_reg','10406',5367,NULL),
('result','course_reg','10407',5368,NULL),
('result','course_reg','10408',5369,NULL),
('result','course_reg','10409',5370,NULL),
('result','course_reg','10410',5371,NULL),
('result','course_reg','10411',5372,NULL),
('result','course_reg','10412',5373,NULL),
('result','course_reg','10413',5374,NULL),
('result','course_reg','10414',5375,NULL),
('result','course_reg','10415',5376,NULL),
('result','course_reg','10416',5377,NULL),
('result','course_reg','10417',5378,NULL),
('result','course_reg','10418',5379,NULL),
('result','course_reg','10419',5380,NULL),
('result','course_reg','10420',5381,NULL),
('result','course_reg','10421',5382,NULL),
('result','course_reg','10422',5383,NULL),
('result','course_reg','10423',5384,NULL),
('result','course_reg','10424',5385,NULL),
('result','course_reg','10425',5386,NULL),
('result','course_reg','10426',5387,NULL),
('result','course_reg','10427',5388,NULL),
('result','course_reg','10428',5389,NULL),
('result','course_reg','10429',5390,NULL),
('result','course_reg','10430',5391,NULL),
('result','course_reg','10431',5392,NULL),
('result','course_reg','10432',5393,NULL),
('result','course_reg','10433',5394,NULL),
('result','course_reg','10434',5395,NULL),
('result','course_reg','10435',5396,NULL),
('result','course_reg','10436',5397,NULL),
('result','course_reg','10437',5398,NULL),
('result','course_reg','10438',5399,NULL),
('result','course_reg','10439',5400,NULL),
('result','course_reg','10440',5401,NULL),
('result','course_reg','10441',5402,NULL),
('result','course_reg','10442',5403,NULL),
('result','course_reg','10443',5404,NULL),
('result','course_reg','10444',5405,NULL),
('result','course_reg','10445',5406,NULL),
('result','course_reg','10446',5407,NULL),
('result','course_reg','10447',5408,NULL),
('result','course_reg','10453',5409,NULL),
('result','course_reg','10458',5410,NULL),
('result','course_reg','10459',5411,NULL),
('result','course_reg','10460',5412,NULL),
('result','course_reg','10461',5413,NULL),
('result','course_reg','10462',5414,NULL),
('result','course_reg','10463',5415,NULL),
('result','course_reg','10464',5416,NULL),
('result','course_reg','10465',5417,NULL),
('result','course_reg','10466',5418,NULL),
('result','course_reg','10467',5419,NULL),
('result','course_reg','10468',5420,NULL),
('result','course_reg','10469',5421,NULL),
('result','course_reg','10470',5422,NULL),
('result','course_reg','10471',5423,NULL),
('result','course_reg','10472',5424,NULL),
('result','course_reg','10473',5425,NULL),
('result','course_reg','10474',5426,NULL),
('result','course_reg','10475',5427,NULL),
('result','course_reg','10476',5428,NULL),
('result','course_reg','10477',5429,NULL),
('result','course_reg','10478',5430,NULL),
('result','course_reg','10479',5431,NULL),
('result','course_reg','10480',5432,NULL),
('result','course_reg','10481',5433,NULL),
('result','course_reg','10482',5434,NULL),
('result','course_reg','10484',5435,NULL),
('result','course_reg','10485',5436,NULL),
('result','course_reg','10486',5437,NULL),
('result','course_reg','10487',5438,NULL),
('result','course_reg','10488',5439,NULL),
('result','course_reg','10489',5440,NULL),
('result','course_reg','10490',5441,NULL),
('result','course_reg','10491',5442,NULL),
('result','course_reg','10492',5443,NULL),
('result','course_reg','10493',5444,NULL),
('result','course_reg','10494',5445,NULL),
('result','course_reg','10495',5446,NULL),
('result','course_reg','10496',5447,NULL),
('result','course_reg','10497',5448,NULL),
('result','course_reg','10498',5449,NULL),
('result','course_reg','10499',5450,NULL),
('result','course_reg','10500',5451,NULL),
('result','course_reg','10501',5452,NULL),
('result','course_reg','10502',5453,NULL),
('result','course_reg','10503',5454,NULL),
('result','course_reg','10504',5455,NULL),
('result','course_reg','10505',5456,NULL),
('result','course_reg','10506',5457,NULL),
('result','course_reg','10507',5458,NULL),
('result','course_reg','10508',5459,NULL),
('result','course_reg','10509',5460,NULL),
('result','course_reg','10510',5461,NULL),
('result','course_reg','10511',5462,NULL),
('result','course_reg','10512',5463,NULL),
('result','course_reg','10513',5464,NULL),
('result','course_reg','10514',5465,NULL),
('result','course_reg','10515',5466,NULL),
('result','course_reg','10516',5467,NULL),
('result','course_reg','10517',5468,NULL),
('result','course_reg','10518',5469,NULL),
('result','course_reg','10519',5470,NULL),
('result','course_reg','10520',5471,NULL),
('result','course_reg','10521',5472,NULL),
('result','course_reg','10522',5473,NULL),
('result','course_reg','10523',5474,NULL),
('result','course_reg','10524',5475,NULL),
('result','course_reg','10525',5476,NULL),
('result','course_reg','10526',5477,NULL),
('result','course_reg','10527',5478,NULL),
('result','course_reg','10528',5479,NULL),
('result','course_reg','10529',5480,NULL),
('result','course_reg','10530',5481,NULL),
('result','course_reg','10531',5482,NULL),
('result','course_reg','10532',5483,NULL),
('result','course_reg','10533',5484,NULL),
('result','course_reg','10534',5485,NULL),
('result','course_reg','10535',5486,NULL),
('result','course_reg','10536',5487,NULL),
('result','course_reg','10537',5488,NULL),
('result','course_reg','10538',5489,NULL);
INSERT INTO `legacy_mappings` (`entity_type`,`legacy_table`,`legacy_id`,`new_id`,`notes`) VALUES
('result','course_reg','10539',5490,NULL),
('result','course_reg','10540',5491,NULL),
('result','course_reg','10541',5492,NULL),
('result','course_reg','10542',5493,NULL),
('result','course_reg','10543',5494,NULL),
('result','course_reg','10544',5495,NULL),
('result','course_reg','10545',5496,NULL),
('result','course_reg','10546',5497,NULL),
('result','course_reg','10547',5498,NULL),
('result','course_reg','10548',5499,NULL),
('result','course_reg','10551',5500,NULL),
('result','course_reg','10552',5501,NULL),
('result','course_reg','10553',5502,NULL),
('result','course_reg','10554',5503,NULL),
('result','course_reg','10557',5504,NULL),
('result','course_reg','10558',5505,NULL),
('result','course_reg','10559',5506,NULL),
('result','course_reg','10560',5507,NULL),
('result','course_reg','10562',5508,NULL),
('result','course_reg','10563',5509,NULL),
('result','course_reg','10564',5510,NULL),
('result','course_reg','10565',5511,NULL),
('result','course_reg','10566',5512,NULL),
('result','course_reg','10567',5513,NULL),
('result','course_reg','10568',5514,NULL),
('result','course_reg','10569',5515,NULL),
('result','course_reg','10571',5516,NULL),
('result','course_reg','10572',5517,NULL),
('result','course_reg','10573',5518,NULL),
('result','course_reg','10574',5519,NULL),
('result','course_reg','10575',5520,NULL),
('result','course_reg','10576',5521,NULL),
('result','course_reg','10577',5522,NULL),
('result','course_reg','10578',5523,NULL),
('result','course_reg','10580',5524,NULL),
('result','course_reg','10581',5525,NULL),
('result','course_reg','10582',5526,NULL),
('result','course_reg','10583',5527,NULL),
('result','course_reg','10584',5528,NULL),
('result','course_reg','10585',5529,NULL),
('result','course_reg','10586',5530,NULL),
('result','course_reg','10587',5531,NULL),
('result','course_reg','10589',5532,NULL),
('result','course_reg','10590',5533,NULL),
('result','course_reg','10591',5534,NULL),
('result','course_reg','10592',5535,NULL),
('result','course_reg','10593',5536,NULL),
('result','course_reg','10594',5537,NULL),
('result','course_reg','10595',5538,NULL),
('result','course_reg','10596',5539,NULL),
('result','course_reg','10597',5540,NULL),
('result','course_reg','10598',5541,NULL),
('result','course_reg','10599',5542,NULL),
('result','course_reg','10600',5543,NULL),
('result','course_reg','10601',5544,NULL),
('result','course_reg','10602',5545,NULL),
('result','course_reg','10603',5546,NULL),
('result','course_reg','10604',5547,NULL),
('result','course_reg','10605',5548,NULL),
('result','course_reg','10606',5549,NULL),
('result','course_reg','10607',5550,NULL),
('result','course_reg','10608',5551,NULL),
('result','course_reg','10609',5552,NULL),
('result','course_reg','10610',5553,NULL),
('result','course_reg','10611',5554,NULL),
('result','course_reg','10614',5555,NULL),
('result','course_reg','10615',5556,NULL),
('result','course_reg','10616',5557,NULL),
('result','course_reg','10617',5558,NULL),
('result','course_reg','10618',5559,NULL),
('result','course_reg','10620',5560,NULL),
('result','course_reg','10621',5561,NULL),
('result','course_reg','10622',5562,NULL),
('result','course_reg','10623',5563,NULL),
('result','course_reg','10627',5564,NULL),
('result','course_reg','10628',5565,NULL),
('result','course_reg','10629',5566,NULL),
('result','course_reg','10630',5567,NULL),
('result','course_reg','10631',5568,NULL),
('result','course_reg','10632',5569,NULL),
('result','course_reg','10633',5570,NULL),
('result','course_reg','10634',5571,NULL),
('result','course_reg','10635',5572,NULL),
('result','course_reg','10636',5573,NULL),
('result','course_reg','10637',5574,NULL),
('result','course_reg','10638',5575,NULL),
('result','course_reg','10639',5576,NULL),
('result','course_reg','10640',5577,NULL),
('result','course_reg','10641',5578,NULL),
('result','course_reg','10642',5579,NULL),
('result','course_reg','10643',5580,NULL),
('result','course_reg','10644',5581,NULL),
('result','course_reg','10645',5582,NULL),
('result','course_reg','10646',5583,NULL),
('result','course_reg','10647',5584,NULL),
('result','course_reg','10648',5585,NULL),
('result','course_reg','10649',5586,NULL),
('result','course_reg','10650',5587,NULL),
('result','course_reg','10651',5588,NULL),
('result','course_reg','10652',5589,NULL),
('result','course_reg','10653',5590,NULL),
('result','course_reg','10654',5591,NULL),
('result','course_reg','10655',5592,NULL),
('result','course_reg','10656',5593,NULL),
('result','course_reg','10657',5594,NULL),
('result','course_reg','10658',5595,NULL),
('result','course_reg','10659',5596,NULL),
('result','course_reg','10660',5597,NULL),
('result','course_reg','10661',5598,NULL),
('result','course_reg','10662',5599,NULL),
('result','course_reg','10663',5600,NULL),
('result','course_reg','10664',5601,NULL),
('result','course_reg','10666',5602,NULL),
('result','course_reg','10667',5603,NULL),
('result','course_reg','10668',5604,NULL),
('result','course_reg','10669',5605,NULL),
('result','course_reg','10673',5606,NULL),
('result','course_reg','10674',5607,NULL),
('result','course_reg','10675',5608,NULL),
('result','course_reg','10676',5609,NULL),
('result','course_reg','10677',5610,NULL),
('result','course_reg','10678',5611,NULL),
('result','course_reg','10680',5612,NULL),
('result','course_reg','10681',5613,NULL),
('result','course_reg','10682',5614,NULL),
('result','course_reg','10683',5615,NULL),
('result','course_reg','10684',5616,NULL),
('result','course_reg','10685',5617,NULL),
('result','course_reg','10686',5618,NULL),
('result','course_reg','10687',5619,NULL),
('result','course_reg','10688',5620,NULL),
('result','course_reg','10689',5621,NULL),
('result','course_reg','10691',5622,NULL),
('result','course_reg','10692',5623,NULL),
('result','course_reg','10693',5624,NULL),
('result','course_reg','10694',5625,NULL),
('result','course_reg','10695',5626,NULL),
('result','course_reg','10696',5627,NULL),
('result','course_reg','10697',5628,NULL),
('result','course_reg','10698',5629,NULL),
('result','course_reg','10699',5630,NULL),
('result','course_reg','10700',5631,NULL),
('result','course_reg','10701',5632,NULL),
('result','course_reg','10702',5633,NULL),
('result','course_reg','10703',5634,NULL),
('result','course_reg','10704',5635,NULL),
('result','course_reg','10705',5636,NULL),
('result','course_reg','10706',5637,NULL),
('result','course_reg','10707',5638,NULL),
('result','course_reg','10708',5639,NULL),
('result','course_reg','10709',5640,NULL),
('result','course_reg','10710',5641,NULL),
('result','course_reg','10711',5642,NULL),
('result','course_reg','10712',5643,NULL),
('result','course_reg','10713',5644,NULL),
('result','course_reg','10714',5645,NULL),
('result','course_reg','10715',5646,NULL),
('result','course_reg','10716',5647,NULL),
('result','course_reg','10717',5648,NULL),
('result','course_reg','10718',5649,NULL),
('result','course_reg','10719',5650,NULL),
('result','course_reg','10720',5651,NULL),
('result','course_reg','10721',5652,NULL),
('result','course_reg','10722',5653,NULL),
('result','course_reg','10723',5654,NULL),
('result','course_reg','10724',5655,NULL),
('result','course_reg','10725',5656,NULL),
('result','course_reg','10726',5657,NULL),
('result','course_reg','10727',5658,NULL),
('result','course_reg','10728',5659,NULL),
('result','course_reg','10729',5660,NULL),
('result','course_reg','10730',5661,NULL),
('result','course_reg','10731',5662,NULL),
('result','course_reg','10732',5663,NULL),
('result','course_reg','10733',5664,NULL),
('result','course_reg','10734',5665,NULL),
('result','course_reg','10735',5666,NULL),
('result','course_reg','10736',5667,NULL),
('result','course_reg','10737',5668,NULL),
('result','course_reg','10738',5669,NULL),
('result','course_reg','10739',5670,NULL),
('result','course_reg','10741',5671,NULL),
('result','course_reg','10742',5672,NULL),
('result','course_reg','10743',5673,NULL),
('result','course_reg','10744',5674,NULL),
('result','course_reg','10745',5675,NULL),
('result','course_reg','10746',5676,NULL),
('result','course_reg','10747',5677,NULL),
('result','course_reg','10748',5678,NULL),
('result','course_reg','10749',5679,NULL),
('result','course_reg','10750',5680,NULL),
('result','course_reg','10751',5681,NULL),
('result','course_reg','10752',5682,NULL),
('result','course_reg','10753',5683,NULL),
('result','course_reg','10754',5684,NULL),
('result','course_reg','10755',5685,NULL),
('result','course_reg','10756',5686,NULL),
('result','course_reg','10757',5687,NULL),
('result','course_reg','10758',5688,NULL),
('result','course_reg','10759',5689,NULL),
('result','course_reg','10760',5690,NULL),
('result','course_reg','10761',5691,NULL),
('result','course_reg','10762',5692,NULL),
('result','course_reg','10763',5693,NULL),
('result','course_reg','10764',5694,NULL),
('result','course_reg','10765',5695,NULL),
('result','course_reg','10766',5696,NULL),
('result','course_reg','10767',5697,NULL),
('result','course_reg','10768',5698,NULL),
('result','course_reg','10769',5699,NULL),
('result','course_reg','10770',5700,NULL),
('result','course_reg','10771',5701,NULL),
('result','course_reg','10772',5702,NULL),
('result','course_reg','10773',5703,NULL),
('result','course_reg','10774',5704,NULL),
('result','course_reg','10775',5705,NULL),
('result','course_reg','10776',5706,NULL),
('result','course_reg','10777',5707,NULL),
('result','course_reg','10778',5708,NULL),
('result','course_reg','10779',5709,NULL),
('result','course_reg','10780',5710,NULL),
('result','course_reg','10781',5711,NULL),
('result','course_reg','10782',5712,NULL),
('result','course_reg','10783',5713,NULL),
('result','course_reg','10784',5714,NULL),
('result','course_reg','10785',5715,NULL),
('result','course_reg','10786',5716,NULL),
('result','course_reg','10787',5717,NULL),
('result','course_reg','10788',5718,NULL),
('result','course_reg','10789',5719,NULL),
('result','course_reg','10790',5720,NULL),
('result','course_reg','10791',5721,NULL),
('result','course_reg','10792',5722,NULL),
('result','course_reg','10793',5723,NULL),
('result','course_reg','10794',5724,NULL),
('result','course_reg','10795',5725,NULL),
('result','course_reg','10796',5726,NULL),
('result','course_reg','10797',5727,NULL),
('result','course_reg','10798',5728,NULL),
('result','course_reg','10799',5729,NULL),
('result','course_reg','10800',5730,NULL),
('result','course_reg','10801',5731,NULL),
('result','course_reg','10802',5732,NULL),
('result','course_reg','10803',5733,NULL),
('result','course_reg','10804',5734,NULL),
('result','course_reg','10805',5735,NULL),
('result','course_reg','10806',5736,NULL),
('result','course_reg','10807',5737,NULL),
('result','course_reg','10808',5738,NULL),
('result','course_reg','10809',5739,NULL);
INSERT INTO `legacy_mappings` (`entity_type`,`legacy_table`,`legacy_id`,`new_id`,`notes`) VALUES
('result','course_reg','10810',5740,NULL),
('result','course_reg','10811',5741,NULL),
('result','course_reg','10812',5742,NULL),
('result','course_reg','10814',5743,NULL),
('result','course_reg','10815',5744,NULL),
('result','course_reg','10816',5745,NULL),
('result','course_reg','10817',5746,NULL),
('result','course_reg','10818',5747,NULL),
('result','course_reg','10819',5748,NULL),
('result','course_reg','10820',5749,NULL),
('result','course_reg','10821',5750,NULL),
('result','course_reg','10822',5751,NULL),
('result','course_reg','10823',5752,NULL),
('result','course_reg','10824',5753,NULL),
('result','course_reg','10825',5754,NULL),
('result','course_reg','10826',5755,NULL),
('result','course_reg','10827',5756,NULL),
('result','course_reg','10828',5757,NULL),
('result','course_reg','10829',5758,NULL),
('result','course_reg','10830',5759,NULL),
('result','course_reg','10831',5760,NULL),
('result','course_reg','10832',5761,NULL),
('result','course_reg','10833',5762,NULL),
('result','course_reg','10834',5763,NULL),
('result','course_reg','10835',5764,NULL),
('result','course_reg','10836',5765,NULL),
('result','course_reg','10837',5766,NULL),
('result','course_reg','10838',5767,NULL),
('result','course_reg','10839',5768,NULL),
('result','course_reg','10840',5769,NULL),
('result','course_reg','10841',5770,NULL),
('result','course_reg','10842',5771,NULL),
('result','course_reg','10843',5772,NULL),
('result','course_reg','10844',5773,NULL),
('result','course_reg','10846',5774,NULL),
('result','course_reg','10847',5775,NULL),
('result','course_reg','10848',5776,NULL),
('result','course_reg','10849',5777,NULL),
('result','course_reg','10850',5778,NULL),
('result','course_reg','10851',5779,NULL),
('result','course_reg','10852',5780,NULL),
('result','course_reg','10853',5781,NULL),
('result','course_reg','10854',5782,NULL),
('result','course_reg','10855',5783,NULL),
('result','course_reg','10856',5784,NULL),
('result','course_reg','10857',5785,NULL),
('result','course_reg','10858',5786,NULL),
('result','course_reg','10859',5787,NULL),
('result','course_reg','10860',5788,NULL),
('result','course_reg','10861',5789,NULL),
('result','course_reg','10862',5790,NULL),
('result','course_reg','10863',5791,NULL),
('result','course_reg','10864',5792,NULL),
('result','course_reg','10865',5793,NULL),
('result','course_reg','10866',5794,NULL),
('result','course_reg','10867',5795,NULL),
('result','course_reg','10868',5796,NULL),
('result','course_reg','10869',5797,NULL),
('result','course_reg','10870',5798,NULL),
('result','course_reg','10871',5799,NULL),
('result','course_reg','10872',5800,NULL),
('result','course_reg','10873',5801,NULL),
('result','course_reg','10874',5802,NULL),
('result','course_reg','10875',5803,NULL),
('result','course_reg','10876',5804,NULL),
('result','course_reg','10877',5805,NULL),
('result','course_reg','10878',5806,NULL),
('result','course_reg','10879',5807,NULL),
('result','course_reg','10880',5808,NULL),
('result','course_reg','10881',5809,NULL),
('result','course_reg','10882',5810,NULL),
('result','course_reg','10883',5811,NULL),
('result','course_reg','10884',5812,NULL),
('result','course_reg','10885',5813,NULL),
('result','course_reg','10886',5814,NULL),
('result','course_reg','10887',5815,NULL),
('result','course_reg','10888',5816,NULL),
('result','course_reg','10889',5817,NULL),
('result','course_reg','10890',5818,NULL),
('result','course_reg','10891',5819,NULL),
('result','course_reg','10892',5820,NULL),
('result','course_reg','10893',5821,NULL),
('result','course_reg','10894',5822,NULL),
('result','course_reg','10895',5823,NULL),
('result','course_reg','10896',5824,NULL),
('result','course_reg','10897',5825,NULL),
('result','course_reg','10898',5826,NULL),
('result','course_reg','10899',5827,NULL),
('result','course_reg','10900',5828,NULL),
('result','course_reg','10901',5829,NULL),
('result','course_reg','10902',5830,NULL),
('result','course_reg','10903',5831,NULL),
('result','course_reg','10911',5832,NULL),
('result','course_reg','10912',5833,NULL),
('result','course_reg','10913',5834,NULL),
('result','course_reg','10914',5835,NULL),
('result','course_reg','10915',5836,NULL),
('result','course_reg','10916',5837,NULL),
('result','course_reg','10917',5838,NULL),
('result','course_reg','10918',5839,NULL),
('result','course_reg','10919',5840,NULL),
('result','course_reg','10920',5841,NULL),
('result','course_reg','10921',5842,NULL),
('result','course_reg','10922',5843,NULL),
('result','course_reg','10923',5844,NULL),
('result','course_reg','10924',5845,NULL),
('result','course_reg','10925',5846,NULL),
('result','course_reg','10926',5847,NULL),
('result','course_reg','10927',5848,NULL),
('result','course_reg','10928',5849,NULL),
('result','course_reg','10929',5850,NULL),
('result','course_reg','10930',5851,NULL),
('result','course_reg','10931',5852,NULL),
('result','course_reg','10932',5853,NULL),
('result','course_reg','10933',5854,NULL),
('result','course_reg','10934',5855,NULL),
('result','course_reg','10935',5856,NULL),
('result','course_reg','10936',5857,NULL),
('result','course_reg','10937',5858,NULL),
('result','course_reg','10938',5859,NULL),
('result','course_reg','10939',5860,NULL),
('result','course_reg','10940',5861,NULL),
('result','course_reg','10941',5862,NULL),
('result','course_reg','10942',5863,NULL),
('result','course_reg','10943',5864,NULL),
('result','course_reg','10944',5865,NULL),
('result','course_reg','10945',5866,NULL),
('result','course_reg','10946',5867,NULL),
('result','course_reg','10947',5868,NULL),
('result','course_reg','10948',5869,NULL),
('result','course_reg','10949',5870,NULL),
('result','course_reg','10950',5871,NULL),
('result','course_reg','10951',5872,NULL),
('result','course_reg','10952',5873,NULL),
('result','course_reg','10953',5874,NULL),
('result','course_reg','10954',5875,NULL),
('result','course_reg','10955',5876,NULL),
('result','course_reg','10956',5877,NULL),
('result','course_reg','10957',5878,NULL),
('result','course_reg','10958',5879,NULL),
('result','course_reg','10959',5880,NULL),
('result','course_reg','10960',5881,NULL),
('result','course_reg','10961',5882,NULL),
('result','course_reg','10962',5883,NULL),
('result','course_reg','10963',5884,NULL),
('result','course_reg','10964',5885,NULL),
('result','course_reg','10965',5886,NULL),
('result','course_reg','10966',5887,NULL),
('result','course_reg','10967',5888,NULL),
('result','course_reg','10968',5889,NULL),
('result','course_reg','10969',5890,NULL),
('result','course_reg','10970',5891,NULL),
('result','course_reg','10971',5892,NULL),
('result','course_reg','10973',5893,NULL),
('result','course_reg','10974',5894,NULL),
('result','course_reg','10975',5895,NULL),
('result','course_reg','10976',5896,NULL),
('result','course_reg','10977',5897,NULL),
('result','course_reg','10978',5898,NULL),
('result','course_reg','10979',5899,NULL),
('result','course_reg','10980',5900,NULL),
('result','course_reg','10981',5901,NULL),
('result','course_reg','10982',5902,NULL),
('result','course_reg','10983',5903,NULL),
('result','course_reg','10984',5904,NULL),
('result','course_reg','10985',5905,NULL),
('result','course_reg','10986',5906,NULL),
('result','course_reg','10987',5907,NULL),
('result','course_reg','10988',5908,NULL),
('result','course_reg','10989',5909,NULL),
('result','course_reg','10990',5910,NULL),
('result','course_reg','10991',5911,NULL),
('result','course_reg','10992',5912,NULL),
('result','course_reg','10993',5913,NULL),
('result','course_reg','10994',5914,NULL),
('result','course_reg','10995',5915,NULL),
('result','course_reg','10996',5916,NULL),
('result','course_reg','10997',5917,NULL),
('result','course_reg','10998',5918,NULL),
('result','course_reg','10999',5919,NULL),
('result','course_reg','11000',5920,NULL),
('result','course_reg','11001',5921,NULL),
('result','course_reg','11002',5922,NULL),
('result','course_reg','11003',5923,NULL),
('result','course_reg','11004',5924,NULL),
('result','course_reg','11005',5925,NULL),
('result','course_reg','11006',5926,NULL),
('result','course_reg','11007',5927,NULL),
('result','course_reg','11008',5928,NULL),
('result','course_reg','11009',5929,NULL),
('result','course_reg','11010',5930,NULL),
('result','course_reg','11011',5931,NULL),
('result','course_reg','11012',5932,NULL),
('result','course_reg','11013',5933,NULL),
('result','course_reg','11014',5934,NULL),
('result','course_reg','11015',5935,NULL),
('result','course_reg','11016',5936,NULL),
('result','course_reg','11017',5937,NULL),
('result','course_reg','11018',5938,NULL),
('result','course_reg','11019',5939,NULL),
('result','course_reg','11020',5940,NULL),
('result','course_reg','11021',5941,NULL),
('result','course_reg','11022',5942,NULL),
('result','course_reg','11023',5943,NULL),
('result','course_reg','11024',5944,NULL),
('result','course_reg','11025',5945,NULL),
('result','course_reg','11026',5946,NULL),
('result','course_reg','11027',5947,NULL),
('result','course_reg','11028',5948,NULL),
('result','course_reg','11029',5949,NULL),
('result','course_reg','11030',5950,NULL),
('result','course_reg','11031',5951,NULL),
('result','course_reg','11032',5952,NULL),
('result','course_reg','11033',5953,NULL),
('result','course_reg','11034',5954,NULL),
('result','course_reg','11035',5955,NULL),
('result','course_reg','11036',5956,NULL),
('result','course_reg','11037',5957,NULL),
('result','course_reg','11038',5958,NULL),
('result','course_reg','11039',5959,NULL),
('result','course_reg','11040',5960,NULL),
('result','course_reg','11041',5961,NULL),
('result','course_reg','11042',5962,NULL),
('result','course_reg','11043',5963,NULL),
('result','course_reg','11044',5964,NULL),
('result','course_reg','11045',5965,NULL),
('result','course_reg','11046',5966,NULL),
('result','course_reg','11047',5967,NULL),
('result','course_reg','11048',5968,NULL),
('result','course_reg','11049',5969,NULL),
('result','course_reg','11050',5970,NULL),
('result','course_reg','11051',5971,NULL),
('result','course_reg','11052',5972,NULL),
('result','course_reg','11053',5973,NULL),
('result','course_reg','11054',5974,NULL),
('result','course_reg','11055',5975,NULL),
('result','course_reg','11056',5976,NULL),
('result','course_reg','11057',5977,NULL),
('result','course_reg','11058',5978,NULL),
('result','course_reg','11059',5979,NULL),
('result','course_reg','11060',5980,NULL),
('result','course_reg','11061',5981,NULL),
('result','course_reg','11062',5982,NULL),
('result','course_reg','11063',5983,NULL),
('result','course_reg','11064',5984,NULL),
('result','course_reg','11065',5985,NULL),
('result','course_reg','11066',5986,NULL),
('result','course_reg','11067',5987,NULL),
('result','course_reg','11068',5988,NULL),
('result','course_reg','11069',5989,NULL);
INSERT INTO `legacy_mappings` (`entity_type`,`legacy_table`,`legacy_id`,`new_id`,`notes`) VALUES
('result','course_reg','11070',5990,NULL),
('result','course_reg','11071',5991,NULL),
('result','course_reg','11072',5992,NULL),
('result','course_reg','11073',5993,NULL),
('result','course_reg','11074',5994,NULL),
('result','course_reg','11075',5995,NULL),
('result','course_reg','11076',5996,NULL),
('result','course_reg','11077',5997,NULL),
('result','course_reg','11078',5998,NULL),
('result','course_reg','11079',5999,NULL),
('result','course_reg','11080',6000,NULL),
('result','course_reg','11081',6001,NULL),
('result','course_reg','11082',6002,NULL),
('result','course_reg','11084',6003,NULL),
('result','course_reg','11085',6004,NULL),
('result','course_reg','11086',6005,NULL),
('result','course_reg','11087',6006,NULL),
('result','course_reg','11089',6007,NULL),
('result','course_reg','11090',6008,NULL),
('result','course_reg','11091',6009,NULL),
('result','course_reg','11093',6010,NULL),
('result','course_reg','11094',6011,NULL),
('result','course_reg','11095',6012,NULL),
('result','course_reg','11096',6013,NULL),
('result','course_reg','11097',6014,NULL),
('result','course_reg','11098',6015,NULL),
('result','course_reg','11099',6016,NULL),
('result','course_reg','11100',6017,NULL),
('result','course_reg','11101',6018,NULL),
('result','course_reg','11102',6019,NULL),
('result','course_reg','11103',6020,NULL),
('result','course_reg','11104',6021,NULL),
('result','course_reg','11105',6022,NULL),
('result','course_reg','11106',6023,NULL),
('result','course_reg','11107',6024,NULL),
('result','course_reg','11108',6025,NULL),
('result','course_reg','11109',6026,NULL),
('result','course_reg','11110',6027,NULL),
('result','course_reg','11111',6028,NULL),
('result','course_reg','11112',6029,NULL),
('result','course_reg','11113',6030,NULL),
('result','course_reg','11114',6031,NULL),
('result','course_reg','11115',6032,NULL),
('result','course_reg','11116',6033,NULL),
('result','course_reg','11117',6034,NULL),
('result','course_reg','11118',6035,NULL),
('result','course_reg','11119',6036,NULL),
('result','course_reg','11120',6037,NULL),
('result','course_reg','11121',6038,NULL),
('result','course_reg','11122',6039,NULL),
('result','course_reg','11123',6040,NULL),
('result','course_reg','11124',6041,NULL),
('result','course_reg','11125',6042,NULL),
('result','course_reg','11126',6043,NULL),
('result','course_reg','11127',6044,NULL),
('result','course_reg','11128',6045,NULL),
('result','course_reg','11129',6046,NULL),
('result','course_reg','11130',6047,NULL),
('result','course_reg','11131',6048,NULL),
('result','course_reg','11132',6049,NULL),
('result','course_reg','11133',6050,NULL),
('result','course_reg','11134',6051,NULL),
('result','course_reg','11135',6052,NULL),
('result','course_reg','11136',6053,NULL),
('result','course_reg','11137',6054,NULL),
('result','course_reg','11138',6055,NULL),
('result','course_reg','11139',6056,NULL),
('result','course_reg','11140',6057,NULL),
('result','course_reg','11141',6058,NULL),
('result','course_reg','11142',6059,NULL),
('result','course_reg','11143',6060,NULL),
('result','course_reg','11144',6061,NULL),
('result','course_reg','11145',6062,NULL),
('result','course_reg','11146',6063,NULL),
('result','course_reg','11148',6064,NULL),
('result','course_reg','11149',6065,NULL),
('result','course_reg','11150',6066,NULL),
('result','course_reg','11151',6067,NULL),
('result','course_reg','11152',6068,NULL),
('result','course_reg','11153',6069,NULL),
('result','course_reg','11154',6070,NULL),
('result','course_reg','11155',6071,NULL),
('result','course_reg','11156',6072,NULL),
('result','course_reg','11157',6073,NULL),
('result','course_reg','11158',6074,NULL),
('result','course_reg','11159',6075,NULL),
('result','course_reg','11160',6076,NULL),
('result','course_reg','11161',6077,NULL),
('result','course_reg','11162',6078,NULL),
('result','course_reg','11163',6079,NULL),
('result','course_reg','11164',6080,NULL),
('result','course_reg','11165',6081,NULL),
('result','course_reg','11167',6082,NULL),
('result','course_reg','11168',6083,NULL),
('result','course_reg','11169',6084,NULL),
('result','course_reg','11171',6085,NULL),
('result','course_reg','11172',6086,NULL),
('result','course_reg','11174',6087,NULL),
('result','course_reg','11176',6088,NULL),
('result','course_reg','11177',6089,NULL),
('result','course_reg','11178',6090,NULL),
('result','course_reg','11179',6091,NULL),
('result','course_reg','11180',6092,NULL),
('result','course_reg','11181',6093,NULL),
('result','course_reg','11182',6094,NULL),
('result','course_reg','11183',6095,NULL),
('result','course_reg','11184',6096,NULL),
('result','course_reg','11185',6097,NULL),
('result','course_reg','11186',6098,NULL),
('result','course_reg','11187',6099,NULL),
('result','course_reg','11188',6100,NULL),
('result','course_reg','11189',6101,NULL),
('result','course_reg','11190',6102,NULL),
('result','course_reg','11191',6103,NULL),
('result','course_reg','11192',6104,NULL),
('result','course_reg','11193',6105,NULL),
('result','course_reg','11194',6106,NULL),
('result','course_reg','11195',6107,NULL),
('result','course_reg','11196',6108,NULL),
('result','course_reg','11197',6109,NULL),
('result','course_reg','11198',6110,NULL),
('result','course_reg','11199',6111,NULL),
('result','course_reg','11201',6112,NULL),
('result','course_reg','11202',6113,NULL),
('result','course_reg','11203',6114,NULL),
('result','course_reg','11204',6115,NULL),
('result','course_reg','11205',6116,NULL),
('result','course_reg','11206',6117,NULL),
('result','course_reg','11207',6118,NULL),
('result','course_reg','11208',6119,NULL),
('result','course_reg','11209',6120,NULL),
('result','course_reg','11210',6121,NULL),
('result','course_reg','11211',6122,NULL),
('result','course_reg','11213',6123,NULL),
('result','course_reg','11214',6124,NULL),
('result','course_reg','11215',6125,NULL),
('result','course_reg','11216',6126,NULL),
('result','course_reg','11217',6127,NULL),
('result','course_reg','11218',6128,NULL),
('result','course_reg','11219',6129,NULL),
('result','course_reg','11221',6130,NULL),
('result','course_reg','11222',6131,NULL),
('result','course_reg','11223',6132,NULL),
('result','course_reg','11224',6133,NULL),
('result','course_reg','11225',6134,NULL),
('result','course_reg','11227',6135,NULL),
('result','course_reg','11229',6136,NULL),
('result','course_reg','11230',6137,NULL),
('result','course_reg','11231',6138,NULL),
('result','course_reg','11232',6139,NULL),
('result','course_reg','11233',6140,NULL),
('result','course_reg','11234',6141,NULL),
('result','course_reg','11235',6142,NULL),
('result','course_reg','11236',6143,NULL),
('result','course_reg','11237',6144,NULL),
('result','course_reg','11238',6145,NULL),
('result','course_reg','11239',6146,NULL),
('result','course_reg','11240',6147,NULL),
('result','course_reg','11241',6148,NULL),
('result','course_reg','11242',6149,NULL),
('result','course_reg','11243',6150,NULL),
('result','course_reg','11244',6151,NULL),
('result','course_reg','11245',6152,NULL),
('result','course_reg','11246',6153,NULL),
('result','course_reg','11247',6154,NULL),
('result','course_reg','11248',6155,NULL),
('result','course_reg','11249',6156,NULL),
('result','course_reg','11250',6157,NULL),
('result','course_reg','11251',6158,NULL),
('result','course_reg','11252',6159,NULL),
('result','course_reg','11253',6160,NULL),
('result','course_reg','11254',6161,NULL),
('result','course_reg','11255',6162,NULL),
('result','course_reg','11256',6163,NULL),
('result','course_reg','11257',6164,NULL),
('result','course_reg','11258',6165,NULL),
('result','course_reg','11259',6166,NULL),
('result','course_reg','11260',6167,NULL),
('result','course_reg','11261',6168,NULL),
('result','course_reg','11262',6169,NULL),
('result','course_reg','11263',6170,NULL),
('result','course_reg','11264',6171,NULL),
('result','course_reg','11265',6172,NULL),
('result','course_reg','11266',6173,NULL),
('result','course_reg','11267',6174,NULL),
('result','course_reg','11268',6175,NULL),
('result','course_reg','11269',6176,NULL),
('result','course_reg','11270',6177,NULL),
('result','course_reg','11271',6178,NULL),
('result','course_reg','11272',6179,NULL),
('result','course_reg','11273',6180,NULL),
('result','course_reg','11274',6181,NULL),
('result','course_reg','11275',6182,NULL),
('result','course_reg','11276',6183,NULL),
('result','course_reg','11277',6184,NULL),
('result','course_reg','11278',6185,NULL),
('result','course_reg','11279',6186,NULL),
('result','course_reg','11280',6187,NULL),
('result','course_reg','11281',6188,NULL),
('result','course_reg','11282',6189,NULL),
('result','course_reg','11283',6190,NULL),
('result','course_reg','11284',6191,NULL),
('result','course_reg','11286',6192,NULL),
('result','course_reg','11287',6193,NULL),
('result','course_reg','11288',6194,NULL),
('result','course_reg','11289',6195,NULL),
('result','course_reg','11290',6196,NULL),
('result','course_reg','11291',6197,NULL),
('result','course_reg','11292',6198,NULL),
('result','course_reg','11293',6199,NULL),
('result','course_reg','11294',6200,NULL),
('result','course_reg','11295',6201,NULL),
('result','course_reg','11297',6202,NULL),
('result','course_reg','11298',6203,NULL),
('result','course_reg','11299',6204,NULL),
('result','course_reg','11300',6205,NULL),
('result','course_reg','11301',6206,NULL),
('result','course_reg','11302',6207,NULL),
('result','course_reg','11303',6208,NULL),
('result','course_reg','11304',6209,NULL),
('result','course_reg','11305',6210,NULL),
('result','course_reg','11306',6211,NULL),
('result','course_reg','11307',6212,NULL),
('result','course_reg','11308',6213,NULL),
('result','course_reg','11309',6214,NULL),
('result','course_reg','11310',6215,NULL),
('result','course_reg','11311',6216,NULL),
('result','course_reg','11312',6217,NULL),
('result','course_reg','11313',6218,NULL),
('result','course_reg','11314',6219,NULL),
('result','course_reg','11315',6220,NULL),
('result','course_reg','11316',6221,NULL),
('result','course_reg','11317',6222,NULL),
('result','course_reg','11318',6223,NULL),
('result','course_reg','11319',6224,NULL),
('result','course_reg','11320',6225,NULL),
('result','course_reg','11321',6226,NULL),
('result','course_reg','11322',6227,NULL),
('result','course_reg','11323',6228,NULL),
('result','course_reg','11324',6229,NULL),
('result','course_reg','11325',6230,NULL),
('result','course_reg','11326',6231,NULL),
('result','course_reg','11327',6232,NULL),
('result','course_reg','11328',6233,NULL),
('result','course_reg','11329',6234,NULL),
('result','course_reg','11330',6235,NULL),
('result','course_reg','11332',6236,NULL),
('result','course_reg','11333',6237,NULL),
('result','course_reg','11334',6238,NULL),
('result','course_reg','11335',6239,NULL);
INSERT INTO `legacy_mappings` (`entity_type`,`legacy_table`,`legacy_id`,`new_id`,`notes`) VALUES
('result','course_reg','11336',6240,NULL),
('result','course_reg','11337',6241,NULL),
('result','course_reg','11338',6242,NULL),
('result','course_reg','11339',6243,NULL),
('result','course_reg','11341',6244,NULL),
('result','course_reg','11342',6245,NULL),
('result','course_reg','11343',6246,NULL),
('result','course_reg','11344',6247,NULL),
('result','course_reg','11345',6248,NULL),
('result','course_reg','11346',6249,NULL),
('result','course_reg','11347',6250,NULL),
('result','course_reg','11348',6251,NULL),
('result','course_reg','11349',6252,NULL),
('result','course_reg','11350',6253,NULL),
('result','course_reg','11351',6254,NULL),
('result','course_reg','11352',6255,NULL),
('result','course_reg','11354',6256,NULL),
('result','course_reg','11355',6257,NULL),
('result','course_reg','11356',6258,NULL),
('result','course_reg','11357',6259,NULL),
('result','course_reg','11358',6260,NULL),
('result','course_reg','11359',6261,NULL),
('result','course_reg','11360',6262,NULL),
('result','course_reg','11361',6263,NULL),
('result','course_reg','11362',6264,NULL),
('result','course_reg','11363',6265,NULL),
('result','course_reg','11364',6266,NULL),
('result','course_reg','11365',6267,NULL),
('result','course_reg','11366',6268,NULL),
('result','course_reg','11367',6269,NULL),
('result','course_reg','11368',6270,NULL),
('result','course_reg','11369',6271,NULL),
('result','course_reg','11370',6272,NULL),
('result','course_reg','11371',6273,NULL),
('result','course_reg','11372',6274,NULL),
('result','course_reg','11373',6275,NULL),
('result','course_reg','11374',6276,NULL),
('result','course_reg','11375',6277,NULL),
('result','course_reg','11376',6278,NULL),
('result','course_reg','11377',6279,NULL),
('result','course_reg','11378',6280,NULL),
('result','course_reg','11379',6281,NULL),
('result','course_reg','11380',6282,NULL),
('result','course_reg','11381',6283,NULL),
('result','course_reg','11382',6284,NULL),
('result','course_reg','11383',6285,NULL),
('result','course_reg','11384',6286,NULL),
('result','course_reg','11385',6287,NULL),
('result','course_reg','11386',6288,NULL),
('result','course_reg','11387',6289,NULL),
('result','course_reg','11388',6290,NULL),
('result','course_reg','11389',6291,NULL),
('result','course_reg','11390',6292,NULL),
('result','course_reg','11391',6293,NULL),
('result','course_reg','11392',6294,NULL),
('result','course_reg','11393',6295,NULL),
('result','course_reg','11394',6296,NULL),
('result','course_reg','11395',6297,NULL),
('result','course_reg','11396',6298,NULL),
('result','course_reg','11397',6299,NULL),
('result','course_reg','11398',6300,NULL),
('result','course_reg','11399',6301,NULL),
('result','course_reg','11400',6302,NULL),
('result','course_reg','11401',6303,NULL),
('result','course_reg','11402',6304,NULL),
('result','course_reg','11403',6305,NULL),
('result','course_reg','11404',6306,NULL),
('result','course_reg','11405',6307,NULL),
('result','course_reg','11406',6308,NULL),
('result','course_reg','11407',6309,NULL),
('result','course_reg','11408',6310,NULL),
('result','course_reg','11409',6311,NULL),
('result','course_reg','11410',6312,NULL),
('result','course_reg','11411',6313,NULL),
('result','course_reg','11412',6314,NULL),
('result','course_reg','11413',6315,NULL),
('result','course_reg','11414',6316,NULL),
('result','course_reg','11415',6317,NULL),
('result','course_reg','11416',6318,NULL),
('result','course_reg','11417',6319,NULL),
('result','course_reg','11418',6320,NULL),
('result','course_reg','11419',6321,NULL),
('result','course_reg','11420',6322,NULL),
('result','course_reg','11421',6323,NULL),
('result','course_reg','11422',6324,NULL),
('result','course_reg','11423',6325,NULL),
('result','course_reg','11424',6326,NULL),
('result','course_reg','11425',6327,NULL),
('result','course_reg','11426',6328,NULL),
('result','course_reg','11427',6329,NULL),
('result','course_reg','11428',6330,NULL),
('result','course_reg','11429',6331,NULL),
('result','course_reg','11430',6332,NULL),
('result','course_reg','11431',6333,NULL),
('result','course_reg','11432',6334,NULL),
('result','course_reg','11433',6335,NULL),
('result','course_reg','11434',6336,NULL),
('result','course_reg','11435',6337,NULL),
('result','course_reg','11436',6338,NULL),
('result','course_reg','11437',6339,NULL),
('result','course_reg','11438',6340,NULL),
('result','course_reg','11439',6341,NULL),
('result','course_reg','11440',6342,NULL),
('result','course_reg','11441',6343,NULL),
('result','course_reg','11442',6344,NULL),
('result','course_reg','11443',6345,NULL),
('result','course_reg','11444',6346,NULL),
('result','course_reg','11445',6347,NULL),
('result','course_reg','11446',6348,NULL),
('result','course_reg','11447',6349,NULL),
('result','course_reg','11448',6350,NULL),
('result','course_reg','11449',6351,NULL),
('result','course_reg','11450',6352,NULL),
('result','course_reg','11451',6353,NULL),
('result','course_reg','11452',6354,NULL),
('result','course_reg','11453',6355,NULL),
('result','course_reg','11454',6356,NULL),
('result','course_reg','11455',6357,NULL),
('result','course_reg','11456',6358,NULL),
('result','course_reg','11457',6359,NULL),
('result','course_reg','11458',6360,NULL),
('result','course_reg','11459',6361,NULL),
('result','course_reg','11460',6362,NULL),
('result','course_reg','11461',6363,NULL),
('result','course_reg','11462',6364,NULL),
('result','course_reg','11463',6365,NULL),
('result','course_reg','11464',6366,NULL),
('result','course_reg','11465',6367,NULL),
('result','course_reg','11466',6368,NULL),
('result','course_reg','11467',6369,NULL),
('result','course_reg','11468',6370,NULL),
('result','course_reg','11469',6371,NULL),
('result','course_reg','11470',6372,NULL),
('result','course_reg','11471',6373,NULL),
('result','course_reg','11472',6374,NULL),
('result','course_reg','11473',6375,NULL),
('result','course_reg','11474',6376,NULL),
('result','course_reg','11475',6377,NULL),
('result','course_reg','11476',6378,NULL),
('result','course_reg','11477',6379,NULL),
('result','course_reg','11478',6380,NULL),
('result','course_reg','11479',6381,NULL),
('result','course_reg','11480',6382,NULL),
('result','course_reg','11481',6383,NULL),
('result','course_reg','11482',6384,NULL),
('result','course_reg','11483',6385,NULL),
('result','course_reg','11484',6386,NULL),
('result','course_reg','11485',6387,NULL),
('result','course_reg','11486',6388,NULL),
('result','course_reg','11487',6389,NULL),
('result','course_reg','11488',6390,NULL),
('result','course_reg','11489',6391,NULL),
('result','course_reg','11490',6392,NULL),
('result','course_reg','11491',6393,NULL),
('result','course_reg','11493',6394,NULL),
('result','course_reg','11494',6395,NULL),
('result','course_reg','11495',6396,NULL),
('result','course_reg','11496',6397,NULL),
('result','course_reg','11498',6398,NULL),
('result','course_reg','11499',6399,NULL),
('result','course_reg','11500',6400,NULL),
('result','course_reg','11501',6401,NULL),
('result','course_reg','11502',6402,NULL),
('result','course_reg','11503',6403,NULL),
('result','course_reg','11504',6404,NULL),
('result','course_reg','11505',6405,NULL),
('result','course_reg','11507',6406,NULL),
('result','course_reg','11508',6407,NULL),
('result','course_reg','11509',6408,NULL),
('result','course_reg','11510',6409,NULL),
('result','course_reg','11511',6410,NULL),
('result','course_reg','11512',6411,NULL),
('result','course_reg','11513',6412,NULL),
('result','course_reg','11514',6413,NULL),
('result','course_reg','11515',6414,NULL),
('result','course_reg','11516',6415,NULL),
('result','course_reg','11517',6416,NULL),
('result','course_reg','11518',6417,NULL),
('result','course_reg','11519',6418,NULL),
('result','course_reg','11520',6419,NULL),
('result','course_reg','11521',6420,NULL),
('result','course_reg','11522',6421,NULL),
('result','course_reg','11523',6422,NULL),
('result','course_reg','11524',6423,NULL),
('result','course_reg','11525',6424,NULL),
('result','course_reg','11526',6425,NULL),
('result','course_reg','11527',6426,NULL),
('result','course_reg','11528',6427,NULL),
('result','course_reg','11529',6428,NULL),
('result','course_reg','11530',6429,NULL),
('result','course_reg','11531',6430,NULL),
('result','course_reg','11532',6431,NULL),
('result','course_reg','11533',6432,NULL),
('result','course_reg','11534',6433,NULL),
('result','course_reg','11535',6434,NULL),
('result','course_reg','11536',6435,NULL),
('result','course_reg','11537',6436,NULL),
('result','course_reg','11538',6437,NULL),
('result','course_reg','11539',6438,NULL),
('result','course_reg','11540',6439,NULL),
('result','course_reg','11542',6440,NULL),
('result','course_reg','11543',6441,NULL),
('result','course_reg','11544',6442,NULL),
('result','course_reg','11545',6443,NULL),
('result','course_reg','11546',6444,NULL),
('result','course_reg','11547',6445,NULL),
('result','course_reg','11548',6446,NULL),
('result','course_reg','11550',6447,NULL),
('result','course_reg','11551',6448,NULL),
('result','course_reg','11552',6449,NULL),
('result','course_reg','11553',6450,NULL),
('result','course_reg','11554',6451,NULL),
('result','course_reg','11555',6452,NULL),
('result','course_reg','11556',6453,NULL),
('result','course_reg','11558',6454,NULL),
('result','course_reg','11559',6455,NULL),
('result','course_reg','11560',6456,NULL),
('result','course_reg','11561',6457,NULL),
('result','course_reg','11562',6458,NULL),
('result','course_reg','11563',6459,NULL),
('result','course_reg','11564',6460,NULL),
('result','course_reg','11565',6461,NULL),
('result','course_reg','11566',6462,NULL),
('result','course_reg','11567',6463,NULL),
('result','course_reg','11568',6464,NULL),
('result','course_reg','11569',6465,NULL),
('result','course_reg','11570',6466,NULL),
('result','course_reg','11571',6467,NULL),
('result','course_reg','11572',6468,NULL),
('result','course_reg','11573',6469,NULL),
('result','course_reg','11574',6470,NULL),
('result','course_reg','11575',6471,NULL),
('result','course_reg','11576',6472,NULL),
('result','course_reg','11577',6473,NULL),
('result','course_reg','11578',6474,NULL),
('result','course_reg','11579',6475,NULL),
('result','course_reg','11581',6476,NULL),
('result','course_reg','11582',6477,NULL),
('result','course_reg','11583',6478,NULL),
('result','course_reg','11584',6479,NULL),
('result','course_reg','11585',6480,NULL),
('result','course_reg','11586',6481,NULL),
('result','course_reg','11587',6482,NULL),
('result','course_reg','11588',6483,NULL),
('result','course_reg','11589',6484,NULL),
('result','course_reg','11590',6485,NULL),
('result','course_reg','11591',6486,NULL),
('result','course_reg','11592',6487,NULL),
('result','course_reg','11593',6488,NULL),
('result','course_reg','11594',6489,NULL);
INSERT INTO `legacy_mappings` (`entity_type`,`legacy_table`,`legacy_id`,`new_id`,`notes`) VALUES
('result','course_reg','11595',6490,NULL),
('result','course_reg','11596',6491,NULL),
('result','course_reg','11597',6492,NULL),
('result','course_reg','11598',6493,NULL),
('result','course_reg','11599',6494,NULL),
('result','course_reg','11600',6495,NULL),
('result','course_reg','11601',6496,NULL),
('result','course_reg','11602',6497,NULL),
('result','course_reg','11603',6498,NULL),
('result','course_reg','11604',6499,NULL),
('result','course_reg','11605',6500,NULL),
('result','course_reg','11606',6501,NULL),
('result','course_reg','11607',6502,NULL),
('result','course_reg','11608',6503,NULL),
('result','course_reg','11609',6504,NULL),
('result','course_reg','11610',6505,NULL),
('result','course_reg','11611',6506,NULL),
('result','course_reg','11612',6507,NULL),
('result','course_reg','11613',6508,NULL),
('result','course_reg','11614',6509,NULL),
('result','course_reg','11615',6510,NULL),
('result','course_reg','11616',6511,NULL),
('result','course_reg','11618',6512,NULL),
('result','course_reg','11619',6513,NULL),
('result','course_reg','11620',6514,NULL),
('result','course_reg','11621',6515,NULL),
('result','course_reg','11622',6516,NULL),
('result','course_reg','11623',6517,NULL),
('result','course_reg','11624',6518,NULL),
('result','course_reg','11625',6519,NULL),
('result','course_reg','11627',6520,NULL),
('result','course_reg','11628',6521,NULL),
('result','course_reg','11629',6522,NULL),
('result','course_reg','11630',6523,NULL),
('result','course_reg','11631',6524,NULL),
('result','course_reg','11632',6525,NULL),
('result','course_reg','11633',6526,NULL),
('result','course_reg','11635',6527,NULL),
('result','course_reg','11636',6528,NULL),
('result','course_reg','11637',6529,NULL),
('result','course_reg','11638',6530,NULL),
('result','course_reg','11639',6531,NULL),
('result','course_reg','11640',6532,NULL),
('result','course_reg','11641',6533,NULL),
('result','course_reg','11642',6534,NULL),
('result','course_reg','11643',6535,NULL),
('result','course_reg','11647',6536,NULL),
('result','course_reg','11648',6537,NULL),
('result','course_reg','11649',6538,NULL),
('result','course_reg','11650',6539,NULL),
('result','course_reg','11651',6540,NULL),
('result','course_reg','11652',6541,NULL),
('result','course_reg','11653',6542,NULL),
('result','course_reg','11654',6543,NULL),
('result','course_reg','11655',6544,NULL),
('result','course_reg','11656',6545,NULL),
('result','course_reg','11657',6546,NULL),
('result','course_reg','11658',6547,NULL),
('result','course_reg','11659',6548,NULL),
('result','course_reg','11660',6549,NULL),
('result','course_reg','11661',6550,NULL),
('result','course_reg','11662',6551,NULL),
('result','course_reg','11663',6552,NULL),
('result','course_reg','11664',6553,NULL),
('result','course_reg','11665',6554,NULL),
('result','course_reg','11666',6555,NULL),
('result','course_reg','11667',6556,NULL),
('result','course_reg','11668',6557,NULL),
('result','course_reg','11669',6558,NULL),
('result','course_reg','11670',6559,NULL),
('result','course_reg','11671',6560,NULL),
('result','course_reg','11672',6561,NULL),
('result','course_reg','11673',6562,NULL),
('result','course_reg','11674',6563,NULL),
('result','course_reg','11675',6564,NULL),
('result','course_reg','11676',6565,NULL),
('result','course_reg','11677',6566,NULL),
('result','course_reg','11678',6567,NULL),
('result','course_reg','11679',6568,NULL),
('result','course_reg','11680',6569,NULL),
('result','course_reg','11681',6570,NULL),
('result','course_reg','11682',6571,NULL),
('result','course_reg','11683',6572,NULL),
('result','course_reg','11684',6573,NULL),
('result','course_reg','11685',6574,NULL),
('result','course_reg','11686',6575,NULL),
('result','course_reg','11687',6576,NULL),
('result','course_reg','11688',6577,NULL),
('result','course_reg','11689',6578,NULL),
('result','course_reg','11690',6579,NULL),
('result','course_reg','11691',6580,NULL),
('result','course_reg','11692',6581,NULL),
('result','course_reg','11693',6582,NULL),
('result','course_reg','11694',6583,NULL),
('result','course_reg','11695',6584,NULL),
('result','course_reg','11696',6585,NULL),
('result','course_reg','11697',6586,NULL),
('result','course_reg','11698',6587,NULL),
('result','course_reg','11699',6588,NULL),
('result','course_reg','11700',6589,NULL),
('result','course_reg','11701',6590,NULL),
('result','course_reg','11702',6591,NULL),
('result','course_reg','11703',6592,NULL),
('result','course_reg','11704',6593,NULL),
('result','course_reg','11706',6594,NULL),
('result','course_reg','11707',6595,NULL),
('result','course_reg','11709',6596,NULL),
('result','course_reg','11710',6597,NULL),
('result','course_reg','11711',6598,NULL),
('result','course_reg','11712',6599,NULL),
('result','course_reg','11713',6600,NULL),
('result','course_reg','11714',6601,NULL),
('result','course_reg','11715',6602,NULL),
('result','course_reg','11716',6603,NULL),
('result','course_reg','11717',6604,NULL),
('result','course_reg','11718',6605,NULL),
('result','course_reg','11719',6606,NULL),
('result','course_reg','11720',6607,NULL),
('result','course_reg','11721',6608,NULL),
('result','course_reg','11722',6609,NULL),
('result','course_reg','11723',6610,NULL),
('result','course_reg','11724',6611,NULL),
('result','course_reg','11725',6612,NULL),
('result','course_reg','11726',6613,NULL),
('result','course_reg','11727',6614,NULL),
('result','course_reg','11728',6615,NULL),
('result','course_reg','11729',6616,NULL),
('result','course_reg','11730',6617,NULL),
('result','course_reg','11731',6618,NULL),
('result','course_reg','11732',6619,NULL),
('result','course_reg','11734',6620,NULL),
('result','course_reg','11735',6621,NULL),
('result','course_reg','11736',6622,NULL),
('result','course_reg','11737',6623,NULL),
('result','course_reg','11738',6624,NULL),
('result','course_reg','11739',6625,NULL),
('result','course_reg','11740',6626,NULL),
('result','course_reg','11741',6627,NULL),
('result','course_reg','11742',6628,NULL),
('result','course_reg','11743',6629,NULL),
('result','course_reg','11744',6630,NULL),
('result','course_reg','11745',6631,NULL),
('result','course_reg','11746',6632,NULL),
('result','course_reg','11747',6633,NULL),
('result','course_reg','11748',6634,NULL),
('result','course_reg','11749',6635,NULL),
('result','course_reg','11750',6636,NULL),
('result','course_reg','11751',6637,NULL),
('result','course_reg','11752',6638,NULL),
('result','course_reg','11753',6639,NULL),
('result','course_reg','11754',6640,NULL),
('result','course_reg','11756',6641,NULL),
('result','course_reg','11757',6642,NULL),
('result','course_reg','11758',6643,NULL),
('result','course_reg','11759',6644,NULL),
('result','course_reg','11760',6645,NULL),
('result','course_reg','11761',6646,NULL),
('result','course_reg','11762',6647,NULL),
('result','course_reg','11763',6648,NULL),
('result','course_reg','11764',6649,NULL),
('result','course_reg','11765',6650,NULL),
('result','course_reg','11766',6651,NULL),
('result','course_reg','11767',6652,NULL),
('result','course_reg','11768',6653,NULL),
('result','course_reg','11769',6654,NULL),
('result','course_reg','11770',6655,NULL),
('result','course_reg','11771',6656,NULL),
('result','course_reg','11772',6657,NULL),
('result','course_reg','11773',6658,NULL),
('result','course_reg','11774',6659,NULL),
('result','course_reg','11775',6660,NULL),
('result','course_reg','11777',6661,NULL),
('result','course_reg','11778',6662,NULL),
('result','course_reg','11779',6663,NULL),
('result','course_reg','11780',6664,NULL),
('result','course_reg','11781',6665,NULL),
('result','course_reg','11782',6666,NULL),
('result','course_reg','11783',6667,NULL),
('result','course_reg','11784',6668,NULL),
('result','course_reg','11785',6669,NULL),
('result','course_reg','11786',6670,NULL),
('result','course_reg','11787',6671,NULL),
('result','course_reg','11788',6672,NULL),
('result','course_reg','11789',6673,NULL),
('result','course_reg','11790',6674,NULL),
('result','course_reg','11791',6675,NULL),
('result','course_reg','11792',6676,NULL),
('result','course_reg','11793',6677,NULL),
('result','course_reg','11794',6678,NULL),
('result','course_reg','11795',6679,NULL),
('result','course_reg','11796',6680,NULL),
('result','course_reg','11797',6681,NULL),
('result','course_reg','11798',6682,NULL),
('result','course_reg','11799',6683,NULL),
('result','course_reg','11800',6684,NULL),
('result','course_reg','11801',6685,NULL),
('result','course_reg','11802',6686,NULL),
('result','course_reg','11803',6687,NULL),
('result','course_reg','11804',6688,NULL),
('result','course_reg','11805',6689,NULL),
('result','course_reg','11806',6690,NULL),
('result','course_reg','11807',6691,NULL),
('result','course_reg','11808',6692,NULL),
('result','course_reg','11809',6693,NULL),
('result','course_reg','11810',6694,NULL),
('result','course_reg','11811',6695,NULL),
('result','course_reg','11812',6696,NULL),
('result','course_reg','11813',6697,NULL),
('result','course_reg','11814',6698,NULL),
('result','course_reg','11815',6699,NULL),
('result','course_reg','11816',6700,NULL),
('result','course_reg','11817',6701,NULL),
('result','course_reg','11818',6702,NULL),
('result','course_reg','11819',6703,NULL),
('result','course_reg','11820',6704,NULL),
('result','course_reg','11821',6705,NULL),
('result','course_reg','11823',6706,NULL),
('result','course_reg','11824',6707,NULL),
('result','course_reg','11825',6708,NULL),
('result','course_reg','11826',6709,NULL),
('result','course_reg','11827',6710,NULL),
('result','course_reg','11828',6711,NULL),
('result','course_reg','11829',6712,NULL),
('result','course_reg','11830',6713,NULL),
('result','course_reg','11831',6714,NULL),
('result','course_reg','11832',6715,NULL),
('result','course_reg','11833',6716,NULL),
('result','course_reg','11834',6717,NULL),
('result','course_reg','11835',6718,NULL),
('result','course_reg','11836',6719,NULL),
('result','course_reg','11837',6720,NULL),
('result','course_reg','11838',6721,NULL),
('result','course_reg','11839',6722,NULL),
('result','course_reg','11840',6723,NULL),
('result','course_reg','11841',6724,NULL),
('result','course_reg','11842',6725,NULL),
('result','course_reg','11843',6726,NULL),
('result','course_reg','11844',6727,NULL),
('result','course_reg','11845',6728,NULL),
('result','course_reg','11846',6729,NULL),
('result','course_reg','11847',6730,NULL),
('result','course_reg','11848',6731,NULL),
('result','course_reg','11849',6732,NULL),
('result','course_reg','11850',6733,NULL),
('result','course_reg','11851',6734,NULL),
('result','course_reg','11852',6735,NULL),
('result','course_reg','11853',6736,NULL),
('result','course_reg','11854',6737,NULL),
('result','course_reg','11855',6738,NULL),
('result','course_reg','11856',6739,NULL);
INSERT INTO `legacy_mappings` (`entity_type`,`legacy_table`,`legacy_id`,`new_id`,`notes`) VALUES
('result','course_reg','11857',6740,NULL),
('result','course_reg','11858',6741,NULL),
('result','course_reg','11859',6742,NULL),
('result','course_reg','11860',6743,NULL),
('result','course_reg','11861',6744,NULL),
('result','course_reg','11862',6745,NULL),
('result','course_reg','11863',6746,NULL),
('result','course_reg','11864',6747,NULL),
('result','course_reg','11865',6748,NULL),
('result','course_reg','11866',6749,NULL),
('result','course_reg','11867',6750,NULL),
('result','course_reg','11868',6751,NULL),
('result','course_reg','11869',6752,NULL),
('result','course_reg','11870',6753,NULL),
('result','course_reg','11871',6754,NULL),
('result','course_reg','11872',6755,NULL),
('result','course_reg','11873',6756,NULL),
('result','course_reg','11874',6757,NULL),
('result','course_reg','11875',6758,NULL),
('result','course_reg','11876',6759,NULL),
('result','course_reg','11877',6760,NULL),
('result','course_reg','11878',6761,NULL),
('result','course_reg','11879',6762,NULL),
('result','course_reg','11880',6763,NULL),
('result','course_reg','11881',6764,NULL),
('result','course_reg','11882',6765,NULL),
('result','course_reg','11883',6766,NULL),
('result','course_reg','11884',6767,NULL),
('result','course_reg','11885',6768,NULL),
('result','course_reg','11887',6769,NULL),
('result','course_reg','11888',6770,NULL),
('result','course_reg','11889',6771,NULL),
('result','course_reg','11890',6772,NULL),
('result','course_reg','11891',6773,NULL),
('result','course_reg','11892',6774,NULL),
('result','course_reg','11893',6775,NULL),
('result','course_reg','11895',6776,NULL),
('result','course_reg','11896',6777,NULL),
('result','course_reg','11897',6778,NULL),
('result','course_reg','11898',6779,NULL),
('result','course_reg','11899',6780,NULL),
('result','course_reg','11900',6781,NULL),
('result','course_reg','11901',6782,NULL),
('result','course_reg','11904',6783,NULL),
('result','course_reg','11906',6784,NULL),
('result','course_reg','11907',6785,NULL),
('result','course_reg','11908',6786,NULL),
('result','course_reg','11909',6787,NULL),
('result','course_reg','11910',6788,NULL),
('result','course_reg','11911',6789,NULL),
('result','course_reg','11912',6790,NULL),
('result','course_reg','11914',6791,NULL),
('result','course_reg','11915',6792,NULL),
('result','course_reg','11916',6793,NULL),
('result','course_reg','11917',6794,NULL),
('result','course_reg','11918',6795,NULL),
('result','course_reg','11919',6796,NULL),
('result','course_reg','11920',6797,NULL),
('result','course_reg','11921',6798,NULL),
('result','course_reg','11922',6799,NULL),
('result','course_reg','11923',6800,NULL),
('result','course_reg','11924',6801,NULL),
('result','course_reg','11925',6802,NULL),
('result','course_reg','11926',6803,NULL),
('result','course_reg','11927',6804,NULL),
('result','course_reg','11928',6805,NULL),
('result','course_reg','11929',6806,NULL),
('result','course_reg','11931',6807,NULL),
('result','course_reg','11932',6808,NULL),
('result','course_reg','11933',6809,NULL),
('result','course_reg','11934',6810,NULL),
('result','course_reg','11935',6811,NULL),
('result','course_reg','11937',6812,NULL),
('result','course_reg','11938',6813,NULL),
('result','course_reg','11939',6814,NULL),
('result','course_reg','11940',6815,NULL),
('result','course_reg','11941',6816,NULL),
('result','course_reg','11942',6817,NULL),
('result','course_reg','11943',6818,NULL),
('result','course_reg','11944',6819,NULL),
('result','course_reg','11945',6820,NULL),
('result','course_reg','11946',6821,NULL),
('result','course_reg','11947',6822,NULL),
('result','course_reg','11948',6823,NULL),
('result','course_reg','11949',6824,NULL),
('result','course_reg','11950',6825,NULL),
('result','course_reg','11951',6826,NULL),
('result','course_reg','11952',6827,NULL),
('result','course_reg','11953',6828,NULL),
('result','course_reg','11954',6829,NULL),
('result','course_reg','11955',6830,NULL),
('result','course_reg','11957',6831,NULL),
('result','course_reg','11958',6832,NULL),
('result','course_reg','11959',6833,NULL),
('result','course_reg','11960',6834,NULL),
('result','course_reg','11968',6835,NULL),
('result','course_reg','11974',6836,NULL),
('result','course_reg','11975',6837,NULL),
('result','course_reg','11976',6838,NULL),
('result','course_reg','11977',6839,NULL),
('result','course_reg','11978',6840,NULL),
('result','course_reg','11979',6841,NULL),
('result','course_reg','11980',6842,NULL),
('result','course_reg','11981',6843,NULL),
('result','course_reg','11982',6844,NULL),
('result','course_reg','11985',6845,NULL),
('result','course_reg','11986',6846,NULL),
('result','course_reg','11987',6847,NULL),
('result','course_reg','11988',6848,NULL),
('result','course_reg','11990',6849,NULL),
('result','course_reg','11991',6850,NULL),
('result','course_reg','11994',6851,NULL),
('result','course_reg','11995',6852,NULL),
('result','course_reg','11996',6853,NULL),
('result','course_reg','11997',6854,NULL),
('result','course_reg','11998',6855,NULL),
('result','course_reg','12000',6856,NULL),
('result','course_reg','12001',6857,NULL),
('result','course_reg','12003',6858,NULL),
('result','course_reg','12004',6859,NULL),
('result','course_reg','12005',6860,NULL),
('result','course_reg','12006',6861,NULL),
('result','course_reg','12007',6862,NULL),
('result','course_reg','12008',6863,NULL),
('result','course_reg','12009',6864,NULL),
('result','course_reg','12010',6865,NULL),
('result','course_reg','12012',6866,NULL),
('result','course_reg','12013',6867,NULL),
('result','course_reg','12014',6868,NULL),
('result','course_reg','12015',6869,NULL),
('result','course_reg','12016',6870,NULL),
('result','course_reg','12017',6871,NULL),
('result','course_reg','12020',6872,NULL),
('result','course_reg','12021',6873,NULL),
('result','course_reg','12022',6874,NULL),
('result','course_reg','12023',6875,NULL),
('result','course_reg','12024',6876,NULL),
('result','course_reg','12025',6877,NULL),
('result','course_reg','12026',6878,NULL),
('result','course_reg','12027',6879,NULL),
('result','course_reg','12028',6880,NULL),
('result','course_reg','12029',6881,NULL),
('result','course_reg','12030',6882,NULL),
('result','course_reg','12032',6883,NULL),
('result','course_reg','12033',6884,NULL),
('result','course_reg','12034',6885,NULL),
('result','course_reg','12035',6886,NULL),
('result','course_reg','12036',6887,NULL),
('result','course_reg','12037',6888,NULL),
('result','course_reg','12038',6889,NULL),
('result','course_reg','12039',6890,NULL),
('result','course_reg','12040',6891,NULL),
('result','course_reg','12041',6892,NULL),
('result','course_reg','12042',6893,NULL),
('result','course_reg','12043',6894,NULL),
('result','course_reg','12044',6895,NULL),
('result','course_reg','12045',6896,NULL),
('result','course_reg','12047',6897,NULL),
('result','course_reg','12048',6898,NULL),
('result','course_reg','12049',6899,NULL),
('result','course_reg','12050',6900,NULL),
('result','course_reg','12051',6901,NULL),
('result','course_reg','12052',6902,NULL),
('result','course_reg','12053',6903,NULL),
('result','course_reg','12054',6904,NULL),
('result','course_reg','12056',6905,NULL),
('result','course_reg','12057',6906,NULL),
('result','course_reg','12058',6907,NULL),
('result','course_reg','12059',6908,NULL),
('result','course_reg','12060',6909,NULL),
('result','course_reg','12073',6910,NULL),
('result','course_reg','12074',6911,NULL),
('result','course_reg','12075',6912,NULL),
('result','course_reg','12076',6913,NULL),
('result','course_reg','12077',6914,NULL),
('result','course_reg','12078',6915,NULL),
('result','course_reg','12079',6916,NULL),
('result','course_reg','12080',6917,NULL),
('result','course_reg','12081',6918,NULL),
('result','course_reg','12082',6919,NULL),
('result','course_reg','12083',6920,NULL),
('result','course_reg','12084',6921,NULL),
('result','course_reg','12085',6922,NULL),
('result','course_reg','12086',6923,NULL),
('result','course_reg','12087',6924,NULL),
('result','course_reg','12088',6925,NULL),
('result','course_reg','12089',6926,NULL),
('result','course_reg','12099',6927,NULL),
('result','course_reg','12100',6928,NULL),
('result','course_reg','12101',6929,NULL),
('result','course_reg','12102',6930,NULL),
('result','course_reg','12103',6931,NULL),
('result','course_reg','12104',6932,NULL),
('result','course_reg','12105',6933,NULL),
('result','course_reg','12106',6934,NULL),
('result','course_reg','12107',6935,NULL),
('result','course_reg','12108',6936,NULL),
('result','course_reg','12109',6937,NULL),
('result','course_reg','12110',6938,NULL),
('result','course_reg','12111',6939,NULL),
('result','course_reg','12112',6940,NULL),
('result','course_reg','12113',6941,NULL),
('result','course_reg','12114',6942,NULL),
('result','course_reg','12115',6943,NULL),
('result','course_reg','12116',6944,NULL),
('result','course_reg','12117',6945,NULL),
('result','course_reg','12118',6946,NULL),
('result','course_reg','12119',6947,NULL),
('result','course_reg','12120',6948,NULL),
('result','course_reg','12121',6949,NULL),
('result','course_reg','12122',6950,NULL),
('result','course_reg','12123',6951,NULL),
('result','course_reg','12124',6952,NULL),
('result','course_reg','12125',6953,NULL),
('result','course_reg','12126',6954,NULL),
('result','course_reg','12127',6955,NULL),
('result','course_reg','12128',6956,NULL),
('result','course_reg','12129',6957,NULL),
('result','course_reg','12130',6958,NULL),
('result','course_reg','12131',6959,NULL),
('result','course_reg','12132',6960,NULL),
('result','course_reg','12133',6961,NULL),
('result','course_reg','12134',6962,NULL),
('result','course_reg','12135',6963,NULL),
('result','course_reg','12136',6964,NULL),
('result','course_reg','12137',6965,NULL),
('result','course_reg','12138',6966,NULL),
('result','course_reg','12139',6967,NULL),
('result','course_reg','12140',6968,NULL),
('result','course_reg','12141',6969,NULL),
('result','course_reg','12142',6970,NULL),
('result','course_reg','12143',6971,NULL),
('result','course_reg','12144',6972,NULL),
('result','course_reg','12145',6973,NULL),
('result','course_reg','12146',6974,NULL),
('result','course_reg','12147',6975,NULL),
('result','course_reg','12148',6976,NULL),
('result','course_reg','12149',6977,NULL),
('result','course_reg','12150',6978,NULL),
('result','course_reg','12151',6979,NULL),
('result','course_reg','12152',6980,NULL),
('result','course_reg','12153',6981,NULL),
('result','course_reg','12154',6982,NULL),
('result','course_reg','12155',6983,NULL),
('result','course_reg','12156',6984,NULL),
('result','course_reg','12157',6985,NULL),
('result','course_reg','12158',6986,NULL),
('result','course_reg','12159',6987,NULL),
('result','course_reg','12160',6988,NULL),
('result','course_reg','12161',6989,NULL);
INSERT INTO `legacy_mappings` (`entity_type`,`legacy_table`,`legacy_id`,`new_id`,`notes`) VALUES
('result','course_reg','12162',6990,NULL),
('result','course_reg','12163',6991,NULL),
('result','course_reg','12164',6992,NULL),
('result','course_reg','12165',6993,NULL),
('result','course_reg','12166',6994,NULL),
('result','course_reg','12167',6995,NULL),
('result','course_reg','12168',6996,NULL),
('result','course_reg','12169',6997,NULL),
('result','course_reg','12170',6998,NULL),
('result','course_reg','12171',6999,NULL),
('result','course_reg','12172',7000,NULL),
('result','course_reg','12173',7001,NULL),
('result','course_reg','12174',7002,NULL),
('result','course_reg','12175',7003,NULL),
('result','course_reg','12176',7004,NULL),
('result','course_reg','12177',7005,NULL),
('result','course_reg','12178',7006,NULL),
('result','course_reg','12179',7007,NULL),
('result','course_reg','12180',7008,NULL),
('result','course_reg','12181',7009,NULL),
('result','course_reg','12182',7010,NULL),
('result','course_reg','12183',7011,NULL),
('result','course_reg','12184',7012,NULL),
('result','course_reg','12185',7013,NULL),
('result','course_reg','12186',7014,NULL),
('result','course_reg','12187',7015,NULL),
('result','course_reg','12188',7016,NULL),
('result','course_reg','12189',7017,NULL),
('result','course_reg','12190',7018,NULL),
('result','course_reg','12191',7019,NULL),
('result','course_reg','12192',7020,NULL),
('result','course_reg','12193',7021,NULL),
('result','course_reg','12194',7022,NULL),
('result','course_reg','12195',7023,NULL),
('result','course_reg','12196',7024,NULL),
('result','course_reg','12197',7025,NULL),
('result','course_reg','12198',7026,NULL),
('result','course_reg','12199',7027,NULL),
('result','course_reg','12200',7028,NULL),
('result','course_reg','12201',7029,NULL),
('result','course_reg','12202',7030,NULL),
('result','course_reg','12203',7031,NULL),
('result','course_reg','12204',7032,NULL),
('result','course_reg','12205',7033,NULL),
('result','course_reg','12206',7034,NULL),
('result','course_reg','12207',7035,NULL),
('result','course_reg','12208',7036,NULL),
('result','course_reg','12209',7037,NULL),
('result','course_reg','12210',7038,NULL),
('result','course_reg','12211',7039,NULL),
('result','course_reg','12212',7040,NULL),
('result','course_reg','12213',7041,NULL),
('result','course_reg','12214',7042,NULL),
('result','course_reg','12215',7043,NULL),
('result','course_reg','12229',7044,NULL),
('result','course_reg','12230',7045,NULL),
('result','course_reg','12231',7046,NULL),
('result','course_reg','12232',7047,NULL),
('result','course_reg','12233',7048,NULL),
('result','course_reg','12234',7049,NULL),
('result','course_reg','12235',7050,NULL),
('result','course_reg','12236',7051,NULL),
('result','course_reg','12237',7052,NULL),
('result','course_reg','12238',7053,NULL),
('result','course_reg','12239',7054,NULL),
('result','course_reg','12240',7055,NULL),
('result','course_reg','12241',7056,NULL),
('result','course_reg','12242',7057,NULL),
('result','course_reg','12243',7058,NULL),
('result','course_reg','12244',7059,NULL),
('result','course_reg','12245',7060,NULL),
('result','course_reg','12246',7061,NULL),
('result','course_reg','12247',7062,NULL),
('result','course_reg','12248',7063,NULL),
('result','course_reg','12249',7064,NULL),
('result','course_reg','12250',7065,NULL),
('result','course_reg','12251',7066,NULL),
('result','course_reg','12252',7067,NULL),
('result','course_reg','12253',7068,NULL),
('result','course_reg','12254',7069,NULL),
('result','course_reg','12255',7070,NULL),
('result','course_reg','12256',7071,NULL),
('result','course_reg','12257',7072,NULL),
('result','course_reg','12258',7073,NULL),
('result','course_reg','12259',7074,NULL),
('result','course_reg','12260',7075,NULL),
('result','course_reg','12261',7076,NULL),
('result','course_reg','12262',7077,NULL),
('result','course_reg','12263',7078,NULL),
('result','course_reg','12264',7079,NULL),
('result','course_reg','12265',7080,NULL),
('result','course_reg','12266',7081,NULL),
('result','course_reg','12267',7082,NULL),
('result','course_reg','12268',7083,NULL),
('result','course_reg','12269',7084,NULL),
('result','course_reg','12270',7085,NULL),
('result','course_reg','12271',7086,NULL),
('result','course_reg','12272',7087,NULL),
('result','course_reg','12274',7088,NULL),
('result','course_reg','12275',7089,NULL),
('result','course_reg','12276',7090,NULL),
('result','course_reg','12277',7091,NULL),
('result','course_reg','12278',7092,NULL),
('result','course_reg','12279',7093,NULL),
('result','course_reg','12280',7094,NULL),
('result','course_reg','12281',7095,NULL),
('result','course_reg','12282',7096,NULL),
('result','course_reg','12283',7097,NULL),
('result','course_reg','12284',7098,NULL),
('result','course_reg','12285',7099,NULL),
('result','course_reg','12286',7100,NULL),
('result','course_reg','12287',7101,NULL),
('result','course_reg','12288',7102,NULL),
('result','course_reg','12289',7103,NULL),
('result','course_reg','12290',7104,NULL),
('result','course_reg','12292',7105,NULL),
('result','course_reg','12299',7106,NULL),
('result','course_reg','12301',7107,NULL),
('result','course_reg','12302',7108,NULL),
('result','course_reg','12303',7109,NULL),
('result','course_reg','12304',7110,NULL),
('result','course_reg','12305',7111,NULL),
('result','course_reg','12306',7112,NULL),
('result','course_reg','12308',7113,NULL),
('result','course_reg','12309',7114,NULL),
('result','course_reg','12315',7115,NULL),
('result','course_reg','12319',7116,NULL),
('result','course_reg','12320',7117,NULL),
('result','course_reg','12322',7118,NULL),
('result','course_reg','12324',7119,NULL),
('result','course_reg','12325',7120,NULL),
('result','course_reg','12326',7121,NULL),
('result','course_reg','12327',7122,NULL),
('result','course_reg','12331',7123,NULL),
('result','course_reg','12332',7124,NULL),
('result','course_reg','12333',7125,NULL),
('result','course_reg','12334',7126,NULL),
('result','course_reg','12335',7127,NULL),
('result','course_reg','12337',7128,NULL),
('result','course_reg','12338',7129,NULL),
('result','course_reg','12339',7130,NULL),
('result','course_reg','12340',7131,NULL),
('result','course_reg','12341',7132,NULL),
('result','course_reg','12342',7133,NULL),
('result','course_reg','12343',7134,NULL),
('result','course_reg','12344',7135,NULL),
('result','course_reg','12346',7136,NULL),
('result','course_reg','12348',7137,NULL),
('result','course_reg','12349',7138,NULL),
('result','course_reg','12350',7139,NULL),
('result','course_reg','12351',7140,NULL),
('result','course_reg','12352',7141,NULL),
('result','course_reg','12353',7142,NULL),
('result','course_reg','12354',7143,NULL),
('result','course_reg','12355',7144,NULL),
('result','course_reg','12356',7145,NULL),
('result','course_reg','12357',7146,NULL),
('result','course_reg','12358',7147,NULL),
('result','course_reg','12359',7148,NULL),
('result','course_reg','12361',7149,NULL),
('result','course_reg','12362',7150,NULL),
('result','course_reg','12363',7151,NULL),
('result','course_reg','12364',7152,NULL),
('result','course_reg','12365',7153,NULL),
('result','course_reg','12366',7154,NULL),
('result','course_reg','12367',7155,NULL),
('result','course_reg','12368',7156,NULL),
('result','course_reg','12369',7157,NULL),
('result','course_reg','12370',7158,NULL),
('result','course_reg','12371',7159,NULL),
('result','course_reg','12372',7160,NULL),
('result','course_reg','12373',7161,NULL),
('result','course_reg','12374',7162,NULL),
('result','course_reg','12375',7163,NULL),
('result','course_reg','12376',7164,NULL),
('result','course_reg','12377',7165,NULL),
('result','course_reg','12378',7166,NULL),
('result','course_reg','12379',7167,NULL),
('result','course_reg','12380',7168,NULL),
('result','course_reg','12381',7169,NULL),
('result','course_reg','12382',7170,NULL),
('result','course_reg','12383',7171,NULL),
('result','course_reg','12384',7172,NULL),
('result','course_reg','12385',7173,NULL),
('result','course_reg','12386',7174,NULL),
('result','course_reg','12387',7175,NULL),
('result','course_reg','12388',7176,NULL),
('result','course_reg','12389',7177,NULL),
('result','course_reg','12391',7178,NULL),
('result','course_reg','12392',7179,NULL),
('result','course_reg','12393',7180,NULL),
('result','course_reg','12394',7181,NULL),
('result','course_reg','12395',7182,NULL),
('result','course_reg','12397',7183,NULL),
('result','course_reg','12398',7184,NULL),
('result','course_reg','12400',7185,NULL),
('result','course_reg','12401',7186,NULL),
('result','course_reg','12402',7187,NULL),
('result','course_reg','12403',7188,NULL),
('result','course_reg','12404',7189,NULL),
('result','course_reg','12405',7190,NULL),
('result','course_reg','12406',7191,NULL),
('result','course_reg','12407',7192,NULL),
('result','course_reg','12408',7193,NULL),
('result','course_reg','12409',7194,NULL),
('result','course_reg','12410',7195,NULL),
('result','course_reg','12411',7196,NULL),
('result','course_reg','12412',7197,NULL),
('result','course_reg','12413',7198,NULL),
('result','course_reg','12414',7199,NULL),
('result','course_reg','12415',7200,NULL),
('result','course_reg','12416',7201,NULL),
('result','course_reg','12417',7202,NULL),
('result','course_reg','12418',7203,NULL),
('result','course_reg','12419',7204,NULL),
('result','course_reg','12420',7205,NULL),
('result','course_reg','12421',7206,NULL),
('result','course_reg','12422',7207,NULL),
('result','course_reg','12423',7208,NULL),
('result','course_reg','12424',7209,NULL),
('result','course_reg','12425',7210,NULL),
('result','course_reg','12426',7211,NULL),
('result','course_reg','12427',7212,NULL),
('result','course_reg','12428',7213,NULL),
('result','course_reg','12429',7214,NULL),
('result','course_reg','12430',7215,NULL),
('result','course_reg','12431',7216,NULL),
('result','course_reg','12432',7217,NULL),
('result','course_reg','12433',7218,NULL),
('result','course_reg','12434',7219,NULL),
('result','course_reg','12435',7220,NULL),
('result','course_reg','12436',7221,NULL),
('result','course_reg','12437',7222,NULL),
('result','course_reg','12438',7223,NULL),
('result','course_reg','12439',7224,NULL),
('result','course_reg','12440',7225,NULL),
('result','course_reg','12441',7226,NULL),
('result','course_reg','12442',7227,NULL),
('result','course_reg','12443',7228,NULL),
('result','course_reg','12444',7229,NULL),
('result','course_reg','12445',7230,NULL),
('result','course_reg','12446',7231,NULL),
('result','course_reg','12447',7232,NULL),
('result','course_reg','12448',7233,NULL),
('result','course_reg','12449',7234,NULL),
('result','course_reg','12451',7235,NULL),
('result','course_reg','12452',7236,NULL),
('result','course_reg','12453',7237,NULL),
('result','course_reg','12455',7238,NULL),
('result','course_reg','12456',7239,NULL);
INSERT INTO `legacy_mappings` (`entity_type`,`legacy_table`,`legacy_id`,`new_id`,`notes`) VALUES
('result','course_reg','12457',7240,NULL),
('result','course_reg','12458',7241,NULL),
('result','course_reg','12459',7242,NULL),
('result','course_reg','12461',7243,NULL),
('result','course_reg','12462',7244,NULL),
('result','course_reg','12463',7245,NULL),
('result','course_reg','12464',7246,NULL),
('result','course_reg','12465',7247,NULL),
('result','course_reg','12466',7248,NULL),
('result','course_reg','12467',7249,NULL),
('result','course_reg','12468',7250,NULL),
('result','course_reg','12469',7251,NULL),
('result','course_reg','12470',7252,NULL),
('result','course_reg','12471',7253,NULL),
('result','course_reg','12472',7254,NULL),
('result','course_reg','12473',7255,NULL),
('result','course_reg','12474',7256,NULL),
('result','course_reg','12475',7257,NULL),
('result','course_reg','12476',7258,NULL),
('result','course_reg','12477',7259,NULL),
('result','course_reg','12478',7260,NULL),
('result','course_reg','12479',7261,NULL),
('result','course_reg','12480',7262,NULL),
('result','course_reg','12481',7263,NULL),
('result','course_reg','12482',7264,NULL),
('result','course_reg','12483',7265,NULL),
('result','course_reg','12484',7266,NULL),
('result','course_reg','12485',7267,NULL),
('result','course_reg','12486',7268,NULL),
('result','course_reg','12487',7269,NULL),
('result','course_reg','12488',7270,NULL),
('result','course_reg','12489',7271,NULL),
('result','course_reg','12490',7272,NULL),
('result','course_reg','12491',7273,NULL),
('result','course_reg','12493',7274,NULL),
('result','course_reg','12494',7275,NULL),
('result','course_reg','12495',7276,NULL),
('result','course_reg','12496',7277,NULL),
('result','course_reg','12497',7278,NULL),
('result','course_reg','12498',7279,NULL),
('result','course_reg','12499',7280,NULL),
('result','course_reg','12500',7281,NULL),
('result','course_reg','12501',7282,NULL),
('result','course_reg','12502',7283,NULL),
('result','course_reg','12503',7284,NULL),
('result','course_reg','12504',7285,NULL),
('result','course_reg','12505',7286,NULL),
('result','course_reg','12506',7287,NULL),
('result','course_reg','12507',7288,NULL),
('result','course_reg','12508',7289,NULL),
('result','course_reg','12509',7290,NULL),
('result','course_reg','12510',7291,NULL),
('result','course_reg','12511',7292,NULL),
('result','course_reg','12512',7293,NULL),
('result','course_reg','12513',7294,NULL),
('result','course_reg','12514',7295,NULL),
('result','course_reg','12515',7296,NULL),
('result','course_reg','12516',7297,NULL),
('result','course_reg','12517',7298,NULL),
('result','course_reg','12518',7299,NULL),
('result','course_reg','12519',7300,NULL),
('result','course_reg','12522',7301,NULL),
('result','course_reg','12523',7302,NULL),
('result','course_reg','12524',7303,NULL),
('result','course_reg','12525',7304,NULL),
('result','course_reg','12527',7305,NULL),
('result','course_reg','12528',7306,NULL),
('result','course_reg','12529',7307,NULL),
('result','course_reg','12530',7308,NULL),
('result','course_reg','12531',7309,NULL),
('result','course_reg','12533',7310,NULL),
('result','course_reg','12534',7311,NULL),
('result','course_reg','12537',7312,NULL),
('result','course_reg','12538',7313,NULL),
('result','course_reg','12539',7314,NULL),
('result','course_reg','12540',7315,NULL),
('result','course_reg','12541',7316,NULL),
('result','course_reg','12542',7317,NULL),
('result','course_reg','12543',7318,NULL),
('result','course_reg','12544',7319,NULL),
('result','course_reg','12545',7320,NULL),
('result','course_reg','12546',7321,NULL),
('result','course_reg','12547',7322,NULL),
('result','course_reg','12548',7323,NULL),
('result','course_reg','12549',7324,NULL),
('result','course_reg','12551',7325,NULL),
('result','course_reg','12552',7326,NULL),
('result','course_reg','12553',7327,NULL),
('result','course_reg','12554',7328,NULL),
('result','course_reg','12556',7329,NULL),
('result','course_reg','12557',7330,NULL),
('result','course_reg','12558',7331,NULL),
('result','course_reg','12559',7332,NULL),
('result','course_reg','12560',7333,NULL),
('result','course_reg','12561',7334,NULL),
('result','course_reg','12562',7335,NULL),
('result','course_reg','12563',7336,NULL),
('result','course_reg','12564',7337,NULL),
('result','course_reg','12565',7338,NULL),
('result','course_reg','12566',7339,NULL),
('result','course_reg','12567',7340,NULL),
('result','course_reg','12568',7341,NULL),
('result','course_reg','12569',7342,NULL),
('result','course_reg','12570',7343,NULL),
('result','course_reg','12571',7344,NULL),
('result','course_reg','12572',7345,NULL),
('result','course_reg','12573',7346,NULL),
('result','course_reg','12574',7347,NULL),
('result','course_reg','12575',7348,NULL),
('result','course_reg','12576',7349,NULL),
('result','course_reg','12578',7350,NULL),
('result','course_reg','12579',7351,NULL),
('result','course_reg','12580',7352,NULL),
('result','course_reg','12581',7353,NULL),
('result','course_reg','12582',7354,NULL),
('result','course_reg','12583',7355,NULL),
('result','course_reg','12584',7356,NULL),
('result','course_reg','12585',7357,NULL),
('result','course_reg','12587',7358,NULL),
('result','course_reg','12589',7359,NULL),
('result','course_reg','12590',7360,NULL),
('result','course_reg','12591',7361,NULL),
('result','course_reg','12592',7362,NULL),
('result','course_reg','12593',7363,NULL),
('result','course_reg','12594',7364,NULL),
('result','course_reg','12595',7365,NULL),
('result','course_reg','12596',7366,NULL),
('result','course_reg','12597',7367,NULL),
('result','course_reg','12598',7368,NULL),
('result','course_reg','12599',7369,NULL),
('result','course_reg','12600',7370,NULL),
('result','course_reg','12601',7371,NULL),
('result','course_reg','12602',7372,NULL),
('result','course_reg','12603',7373,NULL),
('result','course_reg','12604',7374,NULL),
('result','course_reg','12605',7375,NULL),
('result','course_reg','12606',7376,NULL),
('result','course_reg','12607',7377,NULL),
('result','course_reg','12608',7378,NULL),
('result','course_reg','12610',7379,NULL),
('result','course_reg','12611',7380,NULL),
('result','course_reg','12612',7381,NULL),
('result','course_reg','12613',7382,NULL),
('result','course_reg','12614',7383,NULL),
('result','course_reg','12615',7384,NULL),
('result','course_reg','12616',7385,NULL),
('result','course_reg','12617',7386,NULL),
('result','course_reg','12618',7387,NULL),
('result','course_reg','12619',7388,NULL),
('result','course_reg','12620',7389,NULL),
('result','course_reg','12621',7390,NULL),
('result','course_reg','12622',7391,NULL),
('result','course_reg','12623',7392,NULL),
('result','course_reg','12624',7393,NULL),
('result','course_reg','12625',7394,NULL),
('result','course_reg','12626',7395,NULL),
('result','course_reg','12627',7396,NULL),
('result','course_reg','12628',7397,NULL),
('result','course_reg','12629',7398,NULL),
('result','course_reg','12630',7399,NULL),
('result','course_reg','12631',7400,NULL),
('result','course_reg','12632',7401,NULL),
('result','course_reg','12633',7402,NULL),
('result','course_reg','12634',7403,NULL),
('result','course_reg','12635',7404,NULL),
('result','course_reg','12636',7405,NULL),
('result','course_reg','12637',7406,NULL),
('result','course_reg','12638',7407,NULL),
('result','course_reg','12639',7408,NULL),
('result','course_reg','12640',7409,NULL),
('result','course_reg','12641',7410,NULL),
('result','course_reg','12642',7411,NULL),
('result','course_reg','12643',7412,NULL),
('result','course_reg','12644',7413,NULL),
('result','course_reg','12645',7414,NULL),
('result','course_reg','12646',7415,NULL),
('result','course_reg','12647',7416,NULL),
('result','course_reg','12648',7417,NULL),
('result','course_reg','12649',7418,NULL),
('result','course_reg','12650',7419,NULL),
('result','course_reg','12651',7420,NULL),
('result','course_reg','12652',7421,NULL),
('result','course_reg','12653',7422,NULL),
('result','course_reg','12654',7423,NULL),
('result','course_reg','12655',7424,NULL),
('result','course_reg','12656',7425,NULL),
('result','course_reg','12657',7426,NULL),
('result','course_reg','12658',7427,NULL),
('result','course_reg','12659',7428,NULL),
('result','course_reg','12660',7429,NULL),
('result','course_reg','12661',7430,NULL),
('result','course_reg','12662',7431,NULL),
('result','course_reg','12663',7432,NULL),
('result','course_reg','12664',7433,NULL),
('result','course_reg','12665',7434,NULL),
('result','course_reg','12666',7435,NULL),
('result','course_reg','12667',7436,NULL),
('result','course_reg','12668',7437,NULL),
('result','course_reg','12669',7438,NULL),
('result','course_reg','12670',7439,NULL),
('result','course_reg','12671',7440,NULL),
('result','course_reg','12672',7441,NULL),
('result','course_reg','12673',7442,NULL),
('result','course_reg','12674',7443,NULL),
('result','course_reg','12675',7444,NULL),
('result','course_reg','12676',7445,NULL),
('result','course_reg','12677',7446,NULL),
('result','course_reg','12679',7447,NULL),
('result','course_reg','12680',7448,NULL),
('result','course_reg','12681',7449,NULL),
('result','course_reg','12682',7450,NULL),
('result','course_reg','12683',7451,NULL),
('result','course_reg','12684',7452,NULL),
('result','course_reg','12685',7453,NULL),
('result','course_reg','12686',7454,NULL),
('result','course_reg','12687',7455,NULL),
('result','course_reg','12688',7456,NULL),
('result','course_reg','12689',7457,NULL),
('result','course_reg','12690',7458,NULL),
('result','course_reg','12692',7459,NULL),
('result','course_reg','12693',7460,NULL),
('result','course_reg','12694',7461,NULL),
('result','course_reg','12695',7462,NULL),
('result','course_reg','12696',7463,NULL),
('result','course_reg','12697',7464,NULL),
('result','course_reg','12698',7465,NULL),
('result','course_reg','12699',7466,NULL),
('result','course_reg','12700',7467,NULL),
('result','course_reg','12701',7468,NULL),
('result','course_reg','12702',7469,NULL),
('result','course_reg','12703',7470,NULL),
('result','course_reg','12704',7471,NULL),
('result','course_reg','12706',7472,NULL),
('result','course_reg','12707',7473,NULL),
('result','course_reg','12710',7474,NULL),
('result','course_reg','12711',7475,NULL),
('result','course_reg','12712',7476,NULL),
('result','course_reg','12713',7477,NULL),
('result','course_reg','12714',7478,NULL),
('result','course_reg','12715',7479,NULL),
('result','course_reg','12716',7480,NULL),
('result','course_reg','12717',7481,NULL),
('result','course_reg','12718',7482,NULL),
('result','course_reg','12719',7483,NULL),
('result','course_reg','12720',7484,NULL),
('result','course_reg','12721',7485,NULL),
('result','course_reg','12722',7486,NULL),
('result','course_reg','12723',7487,NULL),
('result','course_reg','12724',7488,NULL),
('result','course_reg','12725',7489,NULL);
INSERT INTO `legacy_mappings` (`entity_type`,`legacy_table`,`legacy_id`,`new_id`,`notes`) VALUES
('result','course_reg','12726',7490,NULL),
('result','course_reg','12727',7491,NULL),
('result','course_reg','12728',7492,NULL),
('result','course_reg','12729',7493,NULL),
('result','course_reg','12730',7494,NULL),
('result','course_reg','12731',7495,NULL),
('result','course_reg','12732',7496,NULL),
('result','course_reg','12733',7497,NULL),
('result','course_reg','12734',7498,NULL),
('result','course_reg','12735',7499,NULL),
('result','course_reg','12736',7500,NULL),
('result','course_reg','12737',7501,NULL),
('result','course_reg','12738',7502,NULL),
('result','course_reg','12739',7503,NULL),
('result','course_reg','12740',7504,NULL),
('result','course_reg','12741',7505,NULL),
('result','course_reg','12742',7506,NULL),
('result','course_reg','12743',7507,NULL),
('result','course_reg','12744',7508,NULL),
('result','course_reg','12745',7509,NULL),
('result','course_reg','12746',7510,NULL),
('result','course_reg','12747',7511,NULL),
('result','course_reg','12748',7512,NULL),
('result','course_reg','12749',7513,NULL),
('result','course_reg','12750',7514,NULL),
('result','course_reg','12751',7515,NULL),
('result','course_reg','12752',7516,NULL),
('result','course_reg','12753',7517,NULL),
('result','course_reg','12754',7518,NULL),
('result','course_reg','12755',7519,NULL),
('result','course_reg','12756',7520,NULL),
('result','course_reg','12757',7521,NULL),
('result','course_reg','12758',7522,NULL),
('result','course_reg','12759',7523,NULL),
('result','course_reg','12760',7524,NULL),
('result','course_reg','12761',7525,NULL),
('result','course_reg','12762',7526,NULL),
('result','course_reg','12763',7527,NULL),
('result','course_reg','12764',7528,NULL),
('result','course_reg','12765',7529,NULL),
('result','course_reg','12766',7530,NULL),
('result','course_reg','12767',7531,NULL),
('result','course_reg','12768',7532,NULL),
('result','course_reg','12769',7533,NULL),
('result','course_reg','12770',7534,NULL),
('result','course_reg','12771',7535,NULL),
('result','course_reg','12772',7536,NULL),
('result','course_reg','12773',7537,NULL),
('result','course_reg','12774',7538,NULL),
('result','course_reg','12775',7539,NULL),
('result','course_reg','12776',7540,NULL),
('result','course_reg','12777',7541,NULL),
('result','course_reg','12778',7542,NULL),
('result','course_reg','12779',7543,NULL),
('result','course_reg','12780',7544,NULL),
('result','course_reg','12781',7545,NULL),
('result','course_reg','12782',7546,NULL),
('result','course_reg','12783',7547,NULL),
('result','course_reg','12784',7548,NULL),
('result','course_reg','12786',7549,NULL),
('result','course_reg','12792',7550,NULL),
('result','course_reg','12793',7551,NULL),
('result','course_reg','12794',7552,NULL),
('result','course_reg','12795',7553,NULL),
('result','course_reg','12796',7554,NULL),
('result','course_reg','12797',7555,NULL),
('result','course_reg','12799',7556,NULL),
('result','course_reg','12800',7557,NULL),
('result','course_reg','12801',7558,NULL),
('result','course_reg','12803',7559,NULL),
('result','course_reg','12804',7560,NULL),
('result','course_reg','12806',7561,NULL),
('result','course_reg','12807',7562,NULL),
('result','course_reg','12808',7563,NULL),
('result','course_reg','12809',7564,NULL),
('result','course_reg','12810',7565,NULL),
('result','course_reg','12811',7566,NULL),
('result','course_reg','12812',7567,NULL),
('result','course_reg','12813',7568,NULL),
('result','course_reg','12815',7569,NULL),
('result','course_reg','12816',7570,NULL),
('result','course_reg','12817',7571,NULL),
('result','course_reg','12818',7572,NULL),
('result','course_reg','12819',7573,NULL),
('result','course_reg','12820',7574,NULL),
('result','course_reg','12830',7575,NULL),
('result','course_reg','12834',7576,NULL),
('result','course_reg','12835',7577,NULL),
('result','course_reg','12836',7578,NULL),
('result','course_reg','12837',7579,NULL),
('result','course_reg','12838',7580,NULL),
('result','course_reg','12840',7581,NULL),
('result','course_reg','12841',7582,NULL),
('result','course_reg','12846',7583,NULL),
('result','course_reg','12848',7584,NULL),
('result','course_reg','12849',7585,NULL),
('result','course_reg','12850',7586,NULL),
('result','course_reg','12853',7587,NULL),
('result','course_reg','12854',7588,NULL),
('result','course_reg','12855',7589,NULL),
('result','course_reg','12856',7590,NULL),
('result','course_reg','12857',7591,NULL),
('result','course_reg','12858',7592,NULL),
('result','course_reg','12859',7593,NULL),
('result','course_reg','12860',7594,NULL),
('result','course_reg','12862',7595,NULL),
('result','course_reg','12863',7596,NULL),
('result','course_reg','12864',7597,NULL),
('result','course_reg','12865',7598,NULL),
('result','course_reg','12866',7599,NULL),
('result','course_reg','12867',7600,NULL),
('result','course_reg','12868',7601,NULL),
('result','course_reg','12869',7602,NULL),
('result','course_reg','12870',7603,NULL),
('result','course_reg','12871',7604,NULL),
('result','course_reg','12872',7605,NULL),
('result','course_reg','12874',7606,NULL),
('result','course_reg','12875',7607,NULL),
('result','course_reg','12876',7608,NULL),
('result','course_reg','12877',7609,NULL),
('result','course_reg','12878',7610,NULL),
('result','course_reg','12879',7611,NULL),
('result','course_reg','12880',7612,NULL),
('result','course_reg','12881',7613,NULL),
('result','course_reg','12882',7614,NULL),
('result','course_reg','12883',7615,NULL),
('result','course_reg','12884',7616,NULL),
('result','course_reg','12885',7617,NULL),
('result','course_reg','12886',7618,NULL),
('result','course_reg','12887',7619,NULL),
('result','course_reg','12888',7620,NULL),
('result','course_reg','12889',7621,NULL),
('result','course_reg','12891',7622,NULL),
('result','course_reg','12892',7623,NULL),
('result','course_reg','12894',7624,NULL),
('result','course_reg','12895',7625,NULL),
('result','course_reg','12896',7626,NULL),
('result','course_reg','12897',7627,NULL),
('result','course_reg','12898',7628,NULL),
('result','course_reg','12899',7629,NULL),
('result','course_reg','12900',7630,NULL),
('result','course_reg','12901',7631,NULL),
('result','course_reg','12902',7632,NULL),
('result','course_reg','12903',7633,NULL),
('result','course_reg','12904',7634,NULL),
('result','course_reg','12905',7635,NULL),
('result','course_reg','12906',7636,NULL),
('result','course_reg','12907',7637,NULL),
('result','course_reg','12908',7638,NULL),
('result','course_reg','12909',7639,NULL),
('result','course_reg','12910',7640,NULL),
('result','course_reg','12911',7641,NULL),
('result','course_reg','12912',7642,NULL),
('result','course_reg','12913',7643,NULL),
('result','course_reg','12914',7644,NULL),
('result','course_reg','12915',7645,NULL),
('result','course_reg','12916',7646,NULL),
('result','course_reg','12917',7647,NULL),
('result','course_reg','12918',7648,NULL),
('result','course_reg','12919',7649,NULL),
('result','course_reg','12920',7650,NULL),
('result','course_reg','12921',7651,NULL),
('result','course_reg','12922',7652,NULL),
('result','course_reg','12923',7653,NULL),
('result','course_reg','12924',7654,NULL),
('result','course_reg','12926',7655,NULL),
('result','course_reg','12927',7656,NULL),
('result','course_reg','12928',7657,NULL),
('result','course_reg','12929',7658,NULL),
('result','course_reg','12930',7659,NULL),
('result','course_reg','12931',7660,NULL),
('result','course_reg','12932',7661,NULL),
('result','course_reg','12935',7662,NULL),
('result','course_reg','12936',7663,NULL),
('result','course_reg','12937',7664,NULL),
('result','course_reg','12938',7665,NULL),
('result','course_reg','12939',7666,NULL),
('result','course_reg','12940',7667,NULL),
('result','course_reg','12941',7668,NULL),
('result','course_reg','12942',7669,NULL),
('result','course_reg','12943',7670,NULL),
('result','course_reg','12944',7671,NULL),
('result','course_reg','12946',7672,NULL),
('result','course_reg','12947',7673,NULL),
('result','course_reg','12948',7674,NULL),
('result','course_reg','12949',7675,NULL),
('result','course_reg','12951',7676,NULL),
('result','course_reg','12952',7677,NULL),
('result','course_reg','12953',7678,NULL),
('result','course_reg','12954',7679,NULL),
('result','course_reg','12955',7680,NULL),
('result','course_reg','12956',7681,NULL),
('result','course_reg','12957',7682,NULL),
('result','course_reg','12958',7683,NULL),
('result','course_reg','12959',7684,NULL),
('result','course_reg','12960',7685,NULL),
('result','course_reg','12961',7686,NULL),
('result','course_reg','12962',7687,NULL),
('result','course_reg','12963',7688,NULL),
('result','course_reg','12964',7689,NULL),
('result','course_reg','12965',7690,NULL),
('result','course_reg','12966',7691,NULL),
('result','course_reg','12967',7692,NULL),
('result','course_reg','12968',7693,NULL),
('result','course_reg','12969',7694,NULL),
('result','course_reg','12970',7695,NULL),
('result','course_reg','12971',7696,NULL),
('result','course_reg','12972',7697,NULL),
('result','course_reg','12973',7698,NULL),
('result','course_reg','12974',7699,NULL),
('result','course_reg','12975',7700,NULL),
('result','course_reg','12976',7701,NULL),
('result','course_reg','12977',7702,NULL),
('result','course_reg','12978',7703,NULL),
('result','course_reg','12979',7704,NULL),
('result','course_reg','12980',7705,NULL),
('result','course_reg','12982',7706,NULL),
('result','course_reg','12983',7707,NULL),
('result','course_reg','12984',7708,NULL),
('result','course_reg','12985',7709,NULL),
('result','course_reg','12986',7710,NULL),
('result','course_reg','12987',7711,NULL),
('result','course_reg','12988',7712,NULL),
('result','course_reg','12989',7713,NULL),
('result','course_reg','12990',7714,NULL),
('result','course_reg','12991',7715,NULL),
('result','course_reg','12992',7716,NULL),
('result','course_reg','12993',7717,NULL),
('result','course_reg','12994',7718,NULL),
('result','course_reg','12995',7719,NULL),
('result','course_reg','12996',7720,NULL),
('result','course_reg','12997',7721,NULL),
('result','course_reg','12998',7722,NULL),
('result','course_reg','12999',7723,NULL),
('result','course_reg','13000',7724,NULL),
('result','course_reg','13001',7725,NULL),
('result','course_reg','13002',7726,NULL),
('result','course_reg','13003',7727,NULL),
('result','course_reg','13004',7728,NULL),
('result','course_reg','13005',7729,NULL),
('result','course_reg','13006',7730,NULL),
('result','course_reg','13007',7731,NULL),
('result','course_reg','13008',7732,NULL),
('result','course_reg','13009',7733,NULL),
('result','course_reg','13010',7734,NULL),
('result','course_reg','13012',7735,NULL),
('result','course_reg','13013',7736,NULL),
('result','course_reg','13014',7737,NULL),
('result','course_reg','13015',7738,NULL),
('result','course_reg','13016',7739,NULL);
INSERT INTO `legacy_mappings` (`entity_type`,`legacy_table`,`legacy_id`,`new_id`,`notes`) VALUES
('result','course_reg','13017',7740,NULL),
('result','course_reg','13018',7741,NULL),
('result','course_reg','13019',7742,NULL),
('result','course_reg','13020',7743,NULL),
('result','course_reg','13021',7744,NULL),
('result','course_reg','13022',7745,NULL),
('result','course_reg','13023',7746,NULL),
('result','course_reg','13024',7747,NULL),
('result','course_reg','13025',7748,NULL),
('result','course_reg','13026',7749,NULL),
('result','course_reg','13027',7750,NULL),
('result','course_reg','13029',7751,NULL),
('result','course_reg','13032',7752,NULL),
('result','course_reg','13033',7753,NULL),
('result','course_reg','13034',7754,NULL),
('result','course_reg','13035',7755,NULL),
('result','course_reg','13037',7756,NULL),
('result','course_reg','13038',7757,NULL),
('result','course_reg','13039',7758,NULL),
('result','course_reg','13040',7759,NULL),
('result','course_reg','13041',7760,NULL),
('result','course_reg','13042',7761,NULL),
('result','course_reg','13043',7762,NULL),
('result','course_reg','13044',7763,NULL),
('result','course_reg','13045',7764,NULL),
('result','course_reg','13046',7765,NULL),
('result','course_reg','13047',7766,NULL),
('result','course_reg','13048',7767,NULL),
('result','course_reg','13049',7768,NULL),
('result','course_reg','13050',7769,NULL),
('result','course_reg','13051',7770,NULL),
('result','course_reg','13052',7771,NULL),
('result','course_reg','13053',7772,NULL),
('result','course_reg','13054',7773,NULL),
('result','course_reg','13055',7774,NULL),
('result','course_reg','13056',7775,NULL),
('result','course_reg','13057',7776,NULL),
('result','course_reg','13058',7777,NULL),
('result','course_reg','13059',7778,NULL),
('result','course_reg','13060',7779,NULL),
('result','course_reg','13061',7780,NULL),
('result','course_reg','13062',7781,NULL),
('result','course_reg','13063',7782,NULL),
('result','course_reg','13064',7783,NULL),
('result','course_reg','13065',7784,NULL),
('result','course_reg','13066',7785,NULL),
('result','course_reg','13067',7786,NULL),
('result','course_reg','13068',7787,NULL),
('result','course_reg','13069',7788,NULL),
('result','course_reg','13070',7789,NULL),
('result','course_reg','13071',7790,NULL),
('result','course_reg','13072',7791,NULL),
('result','course_reg','13073',7792,NULL),
('result','course_reg','13074',7793,NULL),
('result','course_reg','13080',7794,NULL),
('result','course_reg','13081',7795,NULL),
('result','course_reg','13082',7796,NULL),
('result','course_reg','13083',7797,NULL),
('result','course_reg','13085',7798,NULL),
('result','course_reg','13086',7799,NULL),
('result','course_reg','13087',7800,NULL),
('result','course_reg','13088',7801,NULL),
('result','course_reg','13089',7802,NULL),
('result','course_reg','13090',7803,NULL),
('result','course_reg','13091',7804,NULL),
('result','course_reg','13093',7805,NULL),
('result','course_reg','13094',7806,NULL),
('result','course_reg','13095',7807,NULL),
('result','course_reg','13096',7808,NULL),
('result','course_reg','13097',7809,NULL),
('result','course_reg','13098',7810,NULL),
('result','course_reg','13099',7811,NULL),
('result','course_reg','13100',7812,NULL),
('result','course_reg','13102',7813,NULL),
('result','course_reg','13103',7814,NULL),
('result','course_reg','13104',7815,NULL),
('result','course_reg','13105',7816,NULL),
('result','course_reg','13106',7817,NULL),
('result','course_reg','13107',7818,NULL),
('result','course_reg','13108',7819,NULL),
('result','course_reg','13109',7820,NULL),
('result','course_reg','13110',7821,NULL),
('result','course_reg','13111',7822,NULL),
('result','course_reg','13112',7823,NULL),
('result','course_reg','13113',7824,NULL),
('result','course_reg','13114',7825,NULL),
('result','course_reg','13115',7826,NULL),
('result','course_reg','13116',7827,NULL),
('result','course_reg','13117',7828,NULL),
('result','course_reg','13118',7829,NULL),
('result','course_reg','13119',7830,NULL),
('result','course_reg','13120',7831,NULL),
('result','course_reg','13121',7832,NULL),
('result','course_reg','13122',7833,NULL),
('result','course_reg','13123',7834,NULL),
('result','course_reg','13125',7835,NULL),
('result','course_reg','13126',7836,NULL),
('result','course_reg','13127',7837,NULL),
('result','course_reg','13128',7838,NULL),
('result','course_reg','13129',7839,NULL),
('result','course_reg','13130',7840,NULL),
('result','course_reg','13131',7841,NULL),
('result','course_reg','13132',7842,NULL),
('result','course_reg','13133',7843,NULL),
('result','course_reg','13134',7844,NULL),
('result','course_reg','13135',7845,NULL),
('result','course_reg','13136',7846,NULL),
('result','course_reg','13137',7847,NULL),
('result','course_reg','13138',7848,NULL),
('result','course_reg','13140',7849,NULL),
('result','course_reg','13141',7850,NULL),
('result','course_reg','13142',7851,NULL),
('result','course_reg','13143',7852,NULL),
('result','course_reg','13144',7853,NULL),
('result','course_reg','13146',7854,NULL),
('result','course_reg','13147',7855,NULL),
('result','course_reg','13148',7856,NULL),
('result','course_reg','13149',7857,NULL),
('result','course_reg','13150',7858,NULL),
('result','course_reg','13151',7859,NULL),
('result','course_reg','13152',7860,NULL),
('result','course_reg','13153',7861,NULL),
('result','course_reg','13154',7862,NULL),
('result','course_reg','13155',7863,NULL),
('result','course_reg','13156',7864,NULL),
('result','course_reg','13157',7865,NULL),
('result','course_reg','13158',7866,NULL),
('result','course_reg','13159',7867,NULL),
('result','course_reg','13160',7868,NULL),
('result','course_reg','13161',7869,NULL),
('result','course_reg','13162',7870,NULL),
('result','course_reg','13163',7871,NULL),
('result','course_reg','13164',7872,NULL),
('result','course_reg','13165',7873,NULL),
('result','course_reg','13167',7874,NULL),
('result','course_reg','13168',7875,NULL),
('result','course_reg','13169',7876,NULL),
('result','course_reg','13170',7877,NULL),
('result','course_reg','13171',7878,NULL),
('result','course_reg','13172',7879,NULL),
('result','course_reg','13173',7880,NULL),
('result','course_reg','13174',7881,NULL),
('result','course_reg','13175',7882,NULL),
('result','course_reg','13176',7883,NULL),
('result','course_reg','13177',7884,NULL),
('result','course_reg','13178',7885,NULL),
('result','course_reg','13179',7886,NULL),
('result','course_reg','13180',7887,NULL),
('result','course_reg','13181',7888,NULL),
('result','course_reg','13182',7889,NULL),
('result','course_reg','13183',7890,NULL),
('result','course_reg','13184',7891,NULL),
('result','course_reg','13185',7892,NULL),
('result','course_reg','13186',7893,NULL),
('result','course_reg','13187',7894,NULL),
('result','course_reg','13188',7895,NULL),
('result','course_reg','13189',7896,NULL),
('result','course_reg','13190',7897,NULL),
('result','course_reg','13191',7898,NULL),
('result','course_reg','13192',7899,NULL),
('result','course_reg','13193',7900,NULL),
('result','course_reg','13194',7901,NULL),
('result','course_reg','13195',7902,NULL),
('result','course_reg','13196',7903,NULL),
('result','course_reg','13197',7904,NULL),
('result','course_reg','13198',7905,NULL),
('result','course_reg','13199',7906,NULL),
('result','course_reg','13200',7907,NULL),
('result','course_reg','13201',7908,NULL),
('result','course_reg','13202',7909,NULL),
('result','course_reg','13203',7910,NULL),
('result','course_reg','13204',7911,NULL),
('result','course_reg','13205',7912,NULL),
('result','course_reg','13206',7913,NULL),
('result','course_reg','13207',7914,NULL),
('result','course_reg','13208',7915,NULL),
('result','course_reg','13209',7916,NULL),
('result','course_reg','13210',7917,NULL),
('result','course_reg','13211',7918,NULL),
('result','course_reg','13212',7919,NULL),
('result','course_reg','13213',7920,NULL),
('result','course_reg','13214',7921,NULL),
('result','course_reg','13215',7922,NULL),
('result','course_reg','13216',7923,NULL),
('result','course_reg','13217',7924,NULL),
('result','course_reg','13218',7925,NULL),
('result','course_reg','13219',7926,NULL),
('result','course_reg','13220',7927,NULL),
('result','course_reg','13221',7928,NULL),
('result','course_reg','13222',7929,NULL),
('result','course_reg','13223',7930,NULL),
('result','course_reg','13224',7931,NULL),
('result','course_reg','13225',7932,NULL),
('result','course_reg','13226',7933,NULL),
('result','course_reg','13227',7934,NULL),
('result','course_reg','13228',7935,NULL),
('result','course_reg','13229',7936,NULL),
('result','course_reg','13230',7937,NULL),
('result','course_reg','13231',7938,NULL),
('result','course_reg','13232',7939,NULL),
('result','course_reg','13233',7940,NULL),
('result','course_reg','13234',7941,NULL),
('result','course_reg','13235',7942,NULL),
('result','course_reg','13236',7943,NULL),
('result','course_reg','13237',7944,NULL),
('result','course_reg','13239',7945,NULL),
('result','course_reg','13240',7946,NULL),
('result','course_reg','13241',7947,NULL),
('result','course_reg','13242',7948,NULL),
('result','course_reg','13243',7949,NULL),
('result','course_reg','13244',7950,NULL),
('result','course_reg','13245',7951,NULL),
('result','course_reg','13246',7952,NULL),
('result','course_reg','13247',7953,NULL),
('result','course_reg','13248',7954,NULL),
('result','course_reg','13249',7955,NULL),
('result','course_reg','13250',7956,NULL),
('result','course_reg','13251',7957,NULL),
('result','course_reg','13252',7958,NULL),
('result','course_reg','13253',7959,NULL),
('result','course_reg','13254',7960,NULL),
('result','course_reg','13255',7961,NULL),
('result','course_reg','13256',7962,NULL),
('result','course_reg','13257',7963,NULL),
('result','course_reg','13258',7964,NULL),
('result','course_reg','13259',7965,NULL),
('result','course_reg','13260',7966,NULL),
('result','course_reg','13261',7967,NULL),
('result','course_reg','13262',7968,NULL),
('result','course_reg','13263',7969,NULL),
('result','course_reg','13264',7970,NULL),
('result','course_reg','13265',7971,NULL),
('result','course_reg','13266',7972,NULL),
('result','course_reg','13267',7973,NULL),
('result','course_reg','13268',7974,NULL),
('result','course_reg','13269',7975,NULL),
('result','course_reg','13270',7976,NULL),
('result','course_reg','13271',7977,NULL),
('result','course_reg','13272',7978,NULL),
('result','course_reg','13273',7979,NULL),
('result','course_reg','13274',7980,NULL),
('result','course_reg','13275',7981,NULL),
('result','course_reg','13276',7982,NULL),
('result','course_reg','13277',7983,NULL),
('result','course_reg','13278',7984,NULL),
('result','course_reg','13279',7985,NULL),
('result','course_reg','13280',7986,NULL),
('result','course_reg','13281',7987,NULL),
('result','course_reg','13282',7988,NULL),
('result','course_reg','13283',7989,NULL);
INSERT INTO `legacy_mappings` (`entity_type`,`legacy_table`,`legacy_id`,`new_id`,`notes`) VALUES
('result','course_reg','13284',7990,NULL),
('result','course_reg','13285',7991,NULL),
('result','course_reg','13286',7992,NULL),
('result','course_reg','13287',7993,NULL),
('result','course_reg','13288',7994,NULL),
('result','course_reg','13289',7995,NULL),
('result','course_reg','13290',7996,NULL),
('result','course_reg','13291',7997,NULL),
('result','course_reg','13292',7998,NULL),
('result','course_reg','13294',7999,NULL),
('result','course_reg','13295',8000,NULL),
('result','course_reg','13297',8001,NULL),
('result','course_reg','13298',8002,NULL),
('result','course_reg','13299',8003,NULL),
('result','course_reg','13300',8004,NULL),
('result','course_reg','13301',8005,NULL),
('result','course_reg','13302',8006,NULL),
('result','course_reg','13303',8007,NULL),
('result','course_reg','13304',8008,NULL),
('result','course_reg','13305',8009,NULL),
('result','course_reg','13306',8010,NULL),
('result','course_reg','13307',8011,NULL),
('result','course_reg','13308',8012,NULL),
('result','course_reg','13309',8013,NULL),
('result','course_reg','13310',8014,NULL),
('result','course_reg','13311',8015,NULL),
('result','course_reg','13312',8016,NULL),
('result','course_reg','13313',8017,NULL),
('result','course_reg','13314',8018,NULL),
('result','course_reg','13315',8019,NULL),
('result','course_reg','13316',8020,NULL),
('result','course_reg','13317',8021,NULL),
('result','course_reg','13318',8022,NULL),
('result','course_reg','13319',8023,NULL),
('result','course_reg','13320',8024,NULL),
('result','course_reg','13321',8025,NULL),
('result','course_reg','13322',8026,NULL),
('result','course_reg','13323',8027,NULL),
('result','course_reg','13324',8028,NULL),
('result','course_reg','13325',8029,NULL),
('result','course_reg','13326',8030,NULL),
('result','course_reg','13327',8031,NULL),
('result','course_reg','13328',8032,NULL),
('result','course_reg','13329',8033,NULL),
('result','course_reg','13330',8034,NULL),
('result','course_reg','13331',8035,NULL),
('result','course_reg','13332',8036,NULL),
('result','course_reg','13333',8037,NULL),
('result','course_reg','13334',8038,NULL),
('result','course_reg','13336',8039,NULL),
('result','course_reg','13337',8040,NULL),
('result','course_reg','13338',8041,NULL),
('result','course_reg','13339',8042,NULL),
('result','course_reg','13340',8043,NULL),
('result','course_reg','13341',8044,NULL),
('result','course_reg','13342',8045,NULL),
('result','course_reg','13343',8046,NULL),
('result','course_reg','13344',8047,NULL),
('result','course_reg','13345',8048,NULL),
('result','course_reg','13346',8049,NULL),
('result','course_reg','13347',8050,NULL),
('result','course_reg','13348',8051,NULL),
('result','course_reg','13349',8052,NULL),
('result','course_reg','13350',8053,NULL),
('result','course_reg','13351',8054,NULL),
('result','course_reg','13352',8055,NULL),
('result','course_reg','13353',8056,NULL),
('result','course_reg','13354',8057,NULL),
('result','course_reg','13355',8058,NULL),
('result','course_reg','13360',8059,NULL),
('result','course_reg','13361',8060,NULL),
('result','course_reg','13362',8061,NULL),
('result','course_reg','13363',8062,NULL),
('result','course_reg','13364',8063,NULL),
('result','course_reg','13365',8064,NULL),
('result','course_reg','13366',8065,NULL),
('result','course_reg','13367',8066,NULL),
('result','course_reg','13368',8067,NULL),
('result','course_reg','13369',8068,NULL),
('result','course_reg','13370',8069,NULL),
('result','course_reg','13371',8070,NULL),
('result','course_reg','13372',8071,NULL),
('result','course_reg','13373',8072,NULL),
('result','course_reg','13374',8073,NULL),
('result','course_reg','13375',8074,NULL),
('result','course_reg','13376',8075,NULL),
('result','course_reg','13377',8076,NULL),
('result','course_reg','13378',8077,NULL),
('result','course_reg','13379',8078,NULL),
('result','course_reg','13380',8079,NULL),
('result','course_reg','13381',8080,NULL),
('result','course_reg','13382',8081,NULL),
('result','course_reg','13383',8082,NULL),
('result','course_reg','13384',8083,NULL),
('result','course_reg','13385',8084,NULL),
('result','course_reg','13386',8085,NULL),
('result','course_reg','13387',8086,NULL),
('result','course_reg','13388',8087,NULL),
('result','course_reg','13389',8088,NULL),
('result','course_reg','13390',8089,NULL),
('result','course_reg','13391',8090,NULL),
('result','course_reg','13392',8091,NULL),
('result','course_reg','13393',8092,NULL),
('result','course_reg','13394',8093,NULL),
('result','course_reg','13395',8094,NULL),
('result','course_reg','13396',8095,NULL),
('result','course_reg','13397',8096,NULL),
('result','course_reg','13398',8097,NULL),
('result','course_reg','13399',8098,NULL),
('result','course_reg','13400',8099,NULL),
('result','course_reg','13401',8100,NULL),
('result','course_reg','13402',8101,NULL),
('result','course_reg','13403',8102,NULL),
('result','course_reg','13404',8103,NULL),
('result','course_reg','13405',8104,NULL),
('result','course_reg','13406',8105,NULL),
('result','course_reg','13407',8106,NULL),
('result','course_reg','13408',8107,NULL),
('result','course_reg','13409',8108,NULL),
('result','course_reg','13410',8109,NULL),
('result','course_reg','13411',8110,NULL),
('result','course_reg','13412',8111,NULL),
('result','course_reg','13413',8112,NULL),
('result','course_reg','13414',8113,NULL),
('result','course_reg','13415',8114,NULL),
('result','course_reg','13416',8115,NULL),
('result','course_reg','13417',8116,NULL),
('result','course_reg','13418',8117,NULL),
('result','course_reg','13419',8118,NULL),
('result','course_reg','13420',8119,NULL),
('result','course_reg','13421',8120,NULL),
('result','course_reg','13422',8121,NULL),
('result','course_reg','13423',8122,NULL),
('result','course_reg','13425',8123,NULL),
('result','course_reg','13426',8124,NULL),
('result','course_reg','13427',8125,NULL),
('result','course_reg','13428',8126,NULL),
('result','course_reg','13429',8127,NULL),
('result','course_reg','13430',8128,NULL),
('result','course_reg','13431',8129,NULL),
('result','course_reg','13432',8130,NULL),
('result','course_reg','13433',8131,NULL),
('result','course_reg','13434',8132,NULL),
('result','course_reg','13435',8133,NULL),
('result','course_reg','13436',8134,NULL),
('result','course_reg','13437',8135,NULL),
('result','course_reg','13438',8136,NULL),
('result','course_reg','13439',8137,NULL),
('result','course_reg','13440',8138,NULL),
('result','course_reg','13441',8139,NULL),
('result','course_reg','13442',8140,NULL),
('result','course_reg','13443',8141,NULL),
('result','course_reg','13444',8142,NULL),
('result','course_reg','13445',8143,NULL),
('result','course_reg','13446',8144,NULL),
('result','course_reg','13447',8145,NULL),
('result','course_reg','13448',8146,NULL),
('result','course_reg','13449',8147,NULL),
('result','course_reg','13450',8148,NULL),
('result','course_reg','13451',8149,NULL),
('result','course_reg','13452',8150,NULL),
('result','course_reg','13453',8151,NULL),
('result','course_reg','13454',8152,NULL),
('result','course_reg','13455',8153,NULL),
('result','course_reg','13456',8154,NULL),
('result','course_reg','13457',8155,NULL),
('result','course_reg','13458',8156,NULL),
('result','course_reg','13459',8157,NULL),
('result','course_reg','13460',8158,NULL),
('result','course_reg','13461',8159,NULL),
('result','course_reg','13462',8160,NULL),
('result','course_reg','13463',8161,NULL),
('result','course_reg','13464',8162,NULL),
('result','course_reg','13465',8163,NULL),
('result','course_reg','13467',8164,NULL),
('result','course_reg','13468',8165,NULL),
('result','course_reg','13469',8166,NULL),
('result','course_reg','13470',8167,NULL),
('result','course_reg','13471',8168,NULL),
('result','course_reg','13472',8169,NULL),
('result','course_reg','13473',8170,NULL),
('result','course_reg','13474',8171,NULL),
('result','course_reg','13475',8172,NULL),
('result','course_reg','13476',8173,NULL),
('result','course_reg','13477',8174,NULL),
('result','course_reg','13478',8175,NULL),
('result','course_reg','13479',8176,NULL),
('result','course_reg','13480',8177,NULL),
('result','course_reg','13481',8178,NULL),
('result','course_reg','13482',8179,NULL),
('result','course_reg','13483',8180,NULL),
('result','course_reg','13485',8181,NULL),
('result','course_reg','13486',8182,NULL),
('result','course_reg','13487',8183,NULL),
('result','course_reg','13488',8184,NULL),
('result','course_reg','13489',8185,NULL),
('result','course_reg','13490',8186,NULL),
('result','course_reg','13491',8187,NULL),
('result','course_reg','13492',8188,NULL),
('result','course_reg','13493',8189,NULL),
('result','course_reg','13494',8190,NULL),
('result','course_reg','13495',8191,NULL),
('result','course_reg','13496',8192,NULL),
('result','course_reg','13497',8193,NULL),
('result','course_reg','13498',8194,NULL),
('result','course_reg','13499',8195,NULL),
('result','course_reg','13500',8196,NULL),
('result','course_reg','13501',8197,NULL),
('result','course_reg','13502',8198,NULL),
('result','course_reg','13503',8199,NULL),
('result','course_reg','13504',8200,NULL),
('result','course_reg','13505',8201,NULL),
('result','course_reg','13506',8202,NULL),
('result','course_reg','13507',8203,NULL),
('result','course_reg','13508',8204,NULL),
('result','course_reg','13509',8205,NULL),
('result','course_reg','13510',8206,NULL),
('result','course_reg','13511',8207,NULL),
('result','course_reg','13512',8208,NULL),
('result','course_reg','13513',8209,NULL),
('result','course_reg','13514',8210,NULL),
('result','course_reg','13515',8211,NULL),
('result','course_reg','13516',8212,NULL),
('result','course_reg','13517',8213,NULL),
('result','course_reg','13518',8214,NULL),
('result','course_reg','13519',8215,NULL),
('result','course_reg','13520',8216,NULL),
('result','course_reg','13521',8217,NULL),
('result','course_reg','13524',8218,NULL),
('result','course_reg','13525',8219,NULL),
('result','course_reg','13526',8220,NULL),
('result','course_reg','13527',8221,NULL),
('result','course_reg','13528',8222,NULL),
('result','course_reg','13529',8223,NULL),
('result','course_reg','13530',8224,NULL),
('result','course_reg','13531',8225,NULL),
('result','course_reg','13532',8226,NULL),
('result','course_reg','13533',8227,NULL),
('result','course_reg','13534',8228,NULL),
('result','course_reg','13535',8229,NULL),
('result','course_reg','13536',8230,NULL),
('result','course_reg','13537',8231,NULL),
('result','course_reg','13538',8232,NULL),
('result','course_reg','13539',8233,NULL),
('result','course_reg','13540',8234,NULL),
('result','course_reg','13541',8235,NULL),
('result','course_reg','13542',8236,NULL),
('result','course_reg','13543',8237,NULL),
('result','course_reg','13544',8238,NULL),
('result','course_reg','13545',8239,NULL);
INSERT INTO `legacy_mappings` (`entity_type`,`legacy_table`,`legacy_id`,`new_id`,`notes`) VALUES
('result','course_reg','13546',8240,NULL),
('result','course_reg','13547',8241,NULL),
('result','course_reg','13548',8242,NULL),
('result','course_reg','13549',8243,NULL),
('result','course_reg','13550',8244,NULL),
('result','course_reg','13551',8245,NULL),
('result','course_reg','13552',8246,NULL),
('result','course_reg','13553',8247,NULL),
('result','course_reg','13554',8248,NULL),
('result','course_reg','13555',8249,NULL),
('result','course_reg','13556',8250,NULL),
('result','course_reg','13557',8251,NULL),
('result','course_reg','13558',8252,NULL),
('result','course_reg','13559',8253,NULL),
('result','course_reg','13560',8254,NULL),
('result','course_reg','13561',8255,NULL),
('result','course_reg','13562',8256,NULL),
('result','course_reg','13563',8257,NULL),
('result','course_reg','13564',8258,NULL),
('result','course_reg','13565',8259,NULL),
('result','course_reg','13567',8260,NULL),
('result','course_reg','13568',8261,NULL),
('result','course_reg','13569',8262,NULL),
('result','course_reg','13571',8263,NULL),
('result','course_reg','13574',8264,NULL),
('result','course_reg','13575',8265,NULL),
('result','course_reg','13576',8266,NULL),
('result','course_reg','13577',8267,NULL),
('result','course_reg','13578',8268,NULL),
('result','course_reg','13579',8269,NULL),
('result','course_reg','13580',8270,NULL),
('result','course_reg','13581',8271,NULL),
('result','course_reg','13582',8272,NULL),
('result','course_reg','13583',8273,NULL),
('result','course_reg','13584',8274,NULL),
('result','course_reg','13585',8275,NULL),
('result','course_reg','13586',8276,NULL),
('result','course_reg','13587',8277,NULL),
('result','course_reg','13588',8278,NULL),
('result','course_reg','13589',8279,NULL),
('result','course_reg','13590',8280,NULL),
('result','course_reg','13591',8281,NULL),
('result','course_reg','13593',8282,NULL),
('result','course_reg','13594',8283,NULL),
('result','course_reg','13595',8284,NULL),
('result','course_reg','13596',8285,NULL),
('result','course_reg','13597',8286,NULL),
('result','course_reg','13598',8287,NULL),
('result','course_reg','13599',8288,NULL),
('result','course_reg','13600',8289,NULL),
('result','course_reg','13601',8290,NULL),
('result','course_reg','13602',8291,NULL),
('result','course_reg','13603',8292,NULL),
('result','course_reg','13604',8293,NULL),
('result','course_reg','13605',8294,NULL),
('result','course_reg','13606',8295,NULL),
('result','course_reg','13607',8296,NULL),
('result','course_reg','13608',8297,NULL),
('result','course_reg','13609',8298,NULL),
('result','course_reg','13610',8299,NULL),
('result','course_reg','13611',8300,NULL),
('result','course_reg','13612',8301,NULL),
('result','course_reg','13613',8302,NULL),
('result','course_reg','13614',8303,NULL),
('result','course_reg','13615',8304,NULL),
('result','course_reg','13616',8305,NULL),
('result','course_reg','13617',8306,NULL),
('result','course_reg','13618',8307,NULL),
('result','course_reg','13619',8308,NULL),
('result','course_reg','13620',8309,NULL),
('result','course_reg','13621',8310,NULL),
('result','course_reg','13622',8311,NULL),
('result','course_reg','13623',8312,NULL),
('result','course_reg','13624',8313,NULL),
('result','course_reg','13625',8314,NULL),
('result','course_reg','13626',8315,NULL),
('result','course_reg','13627',8316,NULL),
('result','course_reg','13628',8317,NULL),
('result','course_reg','13629',8318,NULL),
('result','course_reg','13630',8319,NULL),
('result','course_reg','13631',8320,NULL),
('result','course_reg','13632',8321,NULL),
('result','course_reg','13633',8322,NULL),
('result','course_reg','13634',8323,NULL),
('result','course_reg','13635',8324,NULL),
('result','course_reg','13636',8325,NULL),
('result','course_reg','13637',8326,NULL),
('result','course_reg','13638',8327,NULL),
('result','course_reg','13639',8328,NULL),
('result','course_reg','13640',8329,NULL),
('result','course_reg','13641',8330,NULL),
('result','course_reg','13642',8331,NULL),
('result','course_reg','13643',8332,NULL),
('result','course_reg','13644',8333,NULL),
('result','course_reg','13645',8334,NULL),
('result','course_reg','13647',8335,NULL),
('result','course_reg','13648',8336,NULL),
('result','course_reg','13649',8337,NULL),
('result','course_reg','13650',8338,NULL),
('result','course_reg','13651',8339,NULL),
('result','course_reg','13652',8340,NULL),
('result','course_reg','13653',8341,NULL),
('result','course_reg','13654',8342,NULL),
('result','course_reg','13655',8343,NULL),
('result','course_reg','13656',8344,NULL),
('result','course_reg','13657',8345,NULL),
('result','course_reg','13658',8346,NULL),
('result','course_reg','13659',8347,NULL),
('result','course_reg','13660',8348,NULL),
('result','course_reg','13661',8349,NULL),
('result','course_reg','13662',8350,NULL),
('result','course_reg','13663',8351,NULL),
('result','course_reg','13664',8352,NULL),
('result','course_reg','13665',8353,NULL),
('result','course_reg','13666',8354,NULL),
('result','course_reg','13667',8355,NULL),
('result','course_reg','13668',8356,NULL),
('result','course_reg','13669',8357,NULL),
('result','course_reg','13670',8358,NULL),
('result','course_reg','13671',8359,NULL),
('result','course_reg','13672',8360,NULL),
('result','course_reg','13673',8361,NULL),
('result','course_reg','13674',8362,NULL),
('result','course_reg','13675',8363,NULL),
('result','course_reg','13676',8364,NULL),
('result','course_reg','13677',8365,NULL),
('result','course_reg','13678',8366,NULL),
('result','course_reg','13679',8367,NULL),
('result','course_reg','13680',8368,NULL),
('result','course_reg','13681',8369,NULL),
('result','course_reg','13682',8370,NULL),
('result','course_reg','13683',8371,NULL),
('result','course_reg','13684',8372,NULL),
('result','course_reg','13685',8373,NULL),
('result','course_reg','13686',8374,NULL),
('result','course_reg','13687',8375,NULL),
('result','course_reg','13688',8376,NULL),
('result','course_reg','13689',8377,NULL),
('result','course_reg','13690',8378,NULL),
('result','course_reg','13691',8379,NULL),
('result','course_reg','13692',8380,NULL),
('result','course_reg','13693',8381,NULL),
('result','course_reg','13694',8382,NULL),
('result','course_reg','13695',8383,NULL),
('result','course_reg','13696',8384,NULL),
('result','course_reg','13697',8385,NULL),
('result','course_reg','13698',8386,NULL),
('result','course_reg','13699',8387,NULL),
('result','course_reg','13700',8388,NULL),
('result','course_reg','13701',8389,NULL),
('result','course_reg','13702',8390,NULL),
('result','course_reg','13703',8391,NULL),
('result','course_reg','13704',8392,NULL),
('result','course_reg','13705',8393,NULL),
('result','course_reg','13706',8394,NULL),
('result','course_reg','13707',8395,NULL),
('result','course_reg','13708',8396,NULL),
('result','course_reg','13709',8397,NULL),
('result','course_reg','13710',8398,NULL),
('result','course_reg','13711',8399,NULL),
('result','course_reg','13712',8400,NULL),
('result','course_reg','13713',8401,NULL),
('result','course_reg','13714',8402,NULL),
('result','course_reg','13715',8403,NULL),
('result','course_reg','13716',8404,NULL),
('result','course_reg','13717',8405,NULL),
('result','course_reg','13718',8406,NULL),
('result','course_reg','13719',8407,NULL),
('result','course_reg','13720',8408,NULL),
('result','course_reg','13721',8409,NULL),
('result','course_reg','13722',8410,NULL),
('result','course_reg','13723',8411,NULL),
('result','course_reg','13724',8412,NULL),
('result','course_reg','13725',8413,NULL),
('result','course_reg','13726',8414,NULL),
('result','course_reg','13728',8415,NULL),
('result','course_reg','13729',8416,NULL),
('result','course_reg','13730',8417,NULL),
('result','course_reg','13731',8418,NULL),
('result','course_reg','13732',8419,NULL),
('result','course_reg','13733',8420,NULL),
('result','course_reg','13734',8421,NULL),
('result','course_reg','13735',8422,NULL),
('result','course_reg','13736',8423,NULL),
('result','course_reg','13737',8424,NULL),
('result','course_reg','13738',8425,NULL),
('result','course_reg','13739',8426,NULL),
('result','course_reg','13740',8427,NULL),
('result','course_reg','13741',8428,NULL),
('result','course_reg','13743',8429,NULL),
('result','course_reg','13744',8430,NULL),
('result','course_reg','13745',8431,NULL),
('result','course_reg','13746',8432,NULL),
('result','course_reg','13747',8433,NULL),
('result','course_reg','13748',8434,NULL),
('result','course_reg','13749',8435,NULL),
('result','course_reg','13750',8436,NULL),
('result','course_reg','13751',8437,NULL),
('result','course_reg','13752',8438,NULL),
('result','course_reg','13753',8439,NULL),
('result','course_reg','13754',8440,NULL),
('result','course_reg','13755',8441,NULL),
('result','course_reg','13756',8442,NULL),
('result','course_reg','13757',8443,NULL),
('result','course_reg','13758',8444,NULL),
('result','course_reg','13759',8445,NULL),
('result','course_reg','13760',8446,NULL),
('result','course_reg','13761',8447,NULL),
('result','course_reg','13762',8448,NULL),
('result','course_reg','13763',8449,NULL),
('result','course_reg','13764',8450,NULL),
('result','course_reg','13765',8451,NULL),
('result','course_reg','13766',8452,NULL),
('result','course_reg','13767',8453,NULL),
('result','course_reg','13768',8454,NULL),
('result','course_reg','13769',8455,NULL),
('result','course_reg','13770',8456,NULL),
('result','course_reg','13771',8457,NULL),
('result','course_reg','13772',8458,NULL),
('result','course_reg','13773',8459,NULL),
('result','course_reg','13774',8460,NULL),
('result','course_reg','13775',8461,NULL),
('result','course_reg','13776',8462,NULL),
('result','course_reg','13777',8463,NULL),
('result','course_reg','13778',8464,NULL),
('result','course_reg','13779',8465,NULL),
('result','course_reg','13780',8466,NULL),
('result','course_reg','13782',8467,NULL),
('result','course_reg','13783',8468,NULL),
('result','course_reg','13784',8469,NULL),
('result','course_reg','13785',8470,NULL),
('result','course_reg','13786',8471,NULL),
('result','course_reg','13787',8472,NULL),
('result','course_reg','13788',8473,NULL),
('result','course_reg','13789',8474,NULL),
('result','course_reg','13790',8475,NULL),
('result','course_reg','13791',8476,NULL),
('result','course_reg','13792',8477,NULL),
('result','course_reg','13793',8478,NULL),
('result','course_reg','13794',8479,NULL),
('result','course_reg','13795',8480,NULL),
('result','course_reg','13796',8481,NULL),
('result','course_reg','13797',8482,NULL),
('result','course_reg','13798',8483,NULL),
('result','course_reg','13799',8484,NULL),
('result','course_reg','13800',8485,NULL),
('result','course_reg','13801',8486,NULL),
('result','course_reg','13802',8487,NULL),
('result','course_reg','13803',8488,NULL),
('result','course_reg','13804',8489,NULL);
INSERT INTO `legacy_mappings` (`entity_type`,`legacy_table`,`legacy_id`,`new_id`,`notes`) VALUES
('result','course_reg','13805',8490,NULL),
('result','course_reg','13806',8491,NULL),
('result','course_reg','13807',8492,NULL),
('result','course_reg','13808',8493,NULL),
('result','course_reg','13809',8494,NULL),
('result','course_reg','13810',8495,NULL),
('result','course_reg','13811',8496,NULL),
('result','course_reg','13812',8497,NULL),
('result','course_reg','13813',8498,NULL),
('result','course_reg','13814',8499,NULL),
('result','course_reg','13815',8500,NULL),
('result','course_reg','13816',8501,NULL),
('result','course_reg','13817',8502,NULL),
('result','course_reg','13818',8503,NULL),
('result','course_reg','13819',8504,NULL),
('result','course_reg','13820',8505,NULL),
('result','course_reg','13821',8506,NULL),
('result','course_reg','13822',8507,NULL),
('result','course_reg','13823',8508,NULL),
('result','course_reg','13824',8509,NULL),
('result','course_reg','13825',8510,NULL),
('result','course_reg','13826',8511,NULL),
('result','course_reg','13827',8512,NULL),
('result','course_reg','13828',8513,NULL),
('result','course_reg','13829',8514,NULL),
('result','course_reg','13830',8515,NULL),
('result','course_reg','13831',8516,NULL),
('result','course_reg','13832',8517,NULL),
('result','course_reg','13833',8518,NULL),
('result','course_reg','13834',8519,NULL),
('result','course_reg','13835',8520,NULL),
('result','course_reg','13836',8521,NULL),
('result','course_reg','13838',8522,NULL),
('result','course_reg','13839',8523,NULL),
('result','course_reg','13840',8524,NULL),
('result','course_reg','13841',8525,NULL),
('result','course_reg','13842',8526,NULL),
('result','course_reg','13843',8527,NULL),
('result','course_reg','13844',8528,NULL),
('result','course_reg','13845',8529,NULL),
('result','course_reg','13846',8530,NULL),
('result','course_reg','13847',8531,NULL),
('result','course_reg','13848',8532,NULL),
('result','course_reg','13849',8533,NULL),
('result','course_reg','13850',8534,NULL),
('result','course_reg','13851',8535,NULL),
('result','course_reg','13852',8536,NULL),
('result','course_reg','13853',8537,NULL),
('result','course_reg','13854',8538,NULL),
('result','course_reg','13855',8539,NULL),
('result','course_reg','13856',8540,NULL),
('result','course_reg','13857',8541,NULL),
('result','course_reg','13858',8542,NULL),
('result','course_reg','13859',8543,NULL),
('result','course_reg','13860',8544,NULL),
('result','course_reg','13861',8545,NULL),
('result','course_reg','13862',8546,NULL),
('result','course_reg','13863',8547,NULL),
('result','course_reg','13864',8548,NULL),
('result','course_reg','13865',8549,NULL),
('result','course_reg','13866',8550,NULL),
('result','course_reg','13867',8551,NULL),
('result','course_reg','13868',8552,NULL),
('result','course_reg','13869',8553,NULL),
('result','course_reg','13870',8554,NULL),
('result','course_reg','13871',8555,NULL),
('result','course_reg','13872',8556,NULL),
('result','course_reg','13873',8557,NULL),
('result','course_reg','13874',8558,NULL),
('result','course_reg','13875',8559,NULL),
('result','course_reg','13876',8560,NULL),
('result','course_reg','13877',8561,NULL),
('result','course_reg','13878',8562,NULL),
('result','course_reg','13880',8563,NULL),
('result','course_reg','13881',8564,NULL),
('result','course_reg','13882',8565,NULL),
('result','course_reg','13883',8566,NULL),
('result','course_reg','13884',8567,NULL),
('result','course_reg','13885',8568,NULL),
('result','course_reg','13886',8569,NULL),
('result','course_reg','13887',8570,NULL),
('result','course_reg','13888',8571,NULL),
('result','course_reg','13889',8572,NULL),
('result','course_reg','13890',8573,NULL),
('result','course_reg','13891',8574,NULL),
('result','course_reg','13892',8575,NULL),
('result','course_reg','13893',8576,NULL),
('result','course_reg','13894',8577,NULL),
('result','course_reg','13895',8578,NULL),
('result','course_reg','13896',8579,NULL),
('result','course_reg','13897',8580,NULL),
('result','course_reg','13898',8581,NULL),
('result','course_reg','13899',8582,NULL),
('result','course_reg','13900',8583,NULL),
('result','course_reg','13901',8584,NULL),
('result','course_reg','13902',8585,NULL),
('result','course_reg','13903',8586,NULL),
('result','course_reg','13904',8587,NULL),
('result','course_reg','13905',8588,NULL),
('result','course_reg','13906',8589,NULL),
('result','course_reg','13907',8590,NULL),
('result','course_reg','13908',8591,NULL),
('result','course_reg','13909',8592,NULL),
('result','course_reg','13910',8593,NULL),
('result','course_reg','13911',8594,NULL),
('result','course_reg','13912',8595,NULL),
('result','course_reg','13913',8596,NULL),
('result','course_reg','13914',8597,NULL),
('result','course_reg','13915',8598,NULL),
('result','course_reg','13916',8599,NULL),
('result','course_reg','13917',8600,NULL),
('result','course_reg','13918',8601,NULL),
('result','course_reg','13919',8602,NULL),
('result','course_reg','13920',8603,NULL),
('result','course_reg','13921',8604,NULL),
('result','course_reg','13922',8605,NULL),
('result','course_reg','13923',8606,NULL),
('result','course_reg','13924',8607,NULL),
('result','course_reg','13925',8608,NULL),
('result','course_reg','13926',8609,NULL),
('result','course_reg','13927',8610,NULL),
('result','course_reg','13928',8611,NULL),
('result','course_reg','13929',8612,NULL),
('result','course_reg','13930',8613,NULL),
('result','course_reg','13931',8614,NULL),
('result','course_reg','13932',8615,NULL),
('result','course_reg','13933',8616,NULL),
('result','course_reg','13934',8617,NULL),
('result','course_reg','13935',8618,NULL),
('result','course_reg','13936',8619,NULL),
('result','course_reg','13937',8620,NULL),
('result','course_reg','13938',8621,NULL),
('result','course_reg','13939',8622,NULL),
('result','course_reg','13940',8623,NULL),
('result','course_reg','13941',8624,NULL),
('result','course_reg','13942',8625,NULL),
('result','course_reg','13943',8626,NULL),
('result','course_reg','13944',8627,NULL),
('result','course_reg','13945',8628,NULL),
('result','course_reg','13946',8629,NULL),
('result','course_reg','13947',8630,NULL),
('result','course_reg','13948',8631,NULL),
('result','course_reg','13949',8632,NULL),
('result','course_reg','13950',8633,NULL),
('result','course_reg','13951',8634,NULL),
('result','course_reg','13952',8635,NULL),
('result','course_reg','13953',8636,NULL),
('result','course_reg','13954',8637,NULL),
('result','course_reg','13955',8638,NULL),
('result','course_reg','13956',8639,NULL),
('result','course_reg','13958',8640,NULL),
('result','course_reg','13959',8641,NULL),
('result','course_reg','13960',8642,NULL),
('result','course_reg','13961',8643,NULL),
('result','course_reg','13962',8644,NULL),
('result','course_reg','13963',8645,NULL),
('result','course_reg','13964',8646,NULL),
('result','course_reg','13965',8647,NULL),
('result','course_reg','13966',8648,NULL),
('result','course_reg','13967',8649,NULL),
('result','course_reg','13968',8650,NULL),
('result','course_reg','13969',8651,NULL),
('result','course_reg','13970',8652,NULL),
('result','course_reg','13971',8653,NULL),
('result','course_reg','13972',8654,NULL),
('result','course_reg','13973',8655,NULL),
('result','course_reg','13974',8656,NULL),
('result','course_reg','13975',8657,NULL),
('result','course_reg','13976',8658,NULL),
('result','course_reg','13977',8659,NULL),
('result','course_reg','13978',8660,NULL),
('result','course_reg','13979',8661,NULL),
('result','course_reg','13980',8662,NULL),
('result','course_reg','13981',8663,NULL),
('result','course_reg','13982',8664,NULL),
('result','course_reg','13983',8665,NULL),
('result','course_reg','13984',8666,NULL),
('result','course_reg','13986',8667,NULL),
('result','course_reg','13987',8668,NULL),
('result','course_reg','13988',8669,NULL),
('result','course_reg','13989',8670,NULL),
('result','course_reg','13990',8671,NULL),
('result','course_reg','13991',8672,NULL),
('result','course_reg','13992',8673,NULL),
('result','course_reg','13993',8674,NULL),
('result','course_reg','13994',8675,NULL),
('result','course_reg','13995',8676,NULL),
('result','course_reg','13996',8677,NULL),
('result','course_reg','13997',8678,NULL),
('result','course_reg','13998',8679,NULL),
('result','course_reg','13999',8680,NULL),
('result','course_reg','14000',8681,NULL),
('result','course_reg','14001',8682,NULL),
('result','course_reg','14002',8683,NULL),
('result','course_reg','14003',8684,NULL),
('result','course_reg','14004',8685,NULL),
('result','course_reg','14005',8686,NULL),
('result','course_reg','14006',8687,NULL),
('result','course_reg','14007',8688,NULL),
('result','course_reg','14008',8689,NULL),
('result','course_reg','14009',8690,NULL),
('result','course_reg','14010',8691,NULL),
('result','course_reg','14011',8692,NULL),
('result','course_reg','14012',8693,NULL),
('result','course_reg','14013',8694,NULL),
('result','course_reg','14014',8695,NULL),
('result','course_reg','14015',8696,NULL),
('result','course_reg','14016',8697,NULL),
('result','course_reg','14017',8698,NULL),
('result','course_reg','14018',8699,NULL),
('result','course_reg','14019',8700,NULL),
('result','course_reg','14020',8701,NULL),
('result','course_reg','14021',8702,NULL),
('result','course_reg','14022',8703,NULL),
('result','course_reg','14023',8704,NULL),
('result','course_reg','14024',8705,NULL),
('result','course_reg','14025',8706,NULL),
('result','course_reg','14026',8707,NULL),
('result','course_reg','14027',8708,NULL),
('result','course_reg','14028',8709,NULL),
('result','course_reg','14029',8710,NULL),
('result','course_reg','14030',8711,NULL),
('result','course_reg','14031',8712,NULL),
('result','course_reg','14032',8713,NULL),
('result','course_reg','14033',8714,NULL),
('result','course_reg','14034',8715,NULL),
('result','course_reg','14035',8716,NULL),
('result','course_reg','14036',8717,NULL),
('result','course_reg','14037',8718,NULL),
('result','course_reg','14038',8719,NULL),
('result','course_reg','14039',8720,NULL),
('result','course_reg','14040',8721,NULL),
('result','course_reg','14041',8722,NULL),
('result','course_reg','14042',8723,NULL),
('result','course_reg','14043',8724,NULL),
('result','course_reg','14044',8725,NULL),
('result','course_reg','14045',8726,NULL),
('result','course_reg','14046',8727,NULL),
('result','course_reg','14047',8728,NULL),
('result','course_reg','14048',8729,NULL),
('result','course_reg','14049',8730,NULL),
('result','course_reg','14050',8731,NULL),
('result','course_reg','14051',8732,NULL),
('result','course_reg','14052',8733,NULL),
('result','course_reg','14053',8734,NULL),
('result','course_reg','14055',8735,NULL),
('result','course_reg','14057',8736,NULL),
('result','course_reg','14058',8737,NULL),
('result','course_reg','14059',8738,NULL),
('result','course_reg','14060',8739,NULL);
INSERT INTO `legacy_mappings` (`entity_type`,`legacy_table`,`legacy_id`,`new_id`,`notes`) VALUES
('result','course_reg','14061',8740,NULL),
('result','course_reg','14062',8741,NULL),
('result','course_reg','14063',8742,NULL),
('result','course_reg','14064',8743,NULL),
('result','course_reg','14065',8744,NULL),
('result','course_reg','14066',8745,NULL),
('result','course_reg','14067',8746,NULL),
('result','course_reg','14068',8747,NULL),
('result','course_reg','14069',8748,NULL),
('result','course_reg','14070',8749,NULL),
('result','course_reg','14071',8750,NULL),
('result','course_reg','14075',8751,NULL),
('result','course_reg','14077',8752,NULL),
('result','course_reg','14078',8753,NULL),
('result','course_reg','14079',8754,NULL),
('result','course_reg','14080',8755,NULL),
('result','course_reg','14081',8756,NULL),
('result','course_reg','14082',8757,NULL),
('result','course_reg','14083',8758,NULL),
('result','course_reg','14084',8759,NULL),
('result','course_reg','14086',8760,NULL),
('result','course_reg','14087',8761,NULL),
('result','course_reg','14088',8762,NULL),
('result','course_reg','14089',8763,NULL),
('result','course_reg','14090',8764,NULL),
('result','course_reg','14091',8765,NULL),
('result','course_reg','14092',8766,NULL),
('result','course_reg','14093',8767,NULL),
('result','course_reg','14094',8768,NULL),
('result','course_reg','14095',8769,NULL),
('result','course_reg','14096',8770,NULL),
('result','course_reg','14097',8771,NULL),
('result','course_reg','14098',8772,NULL),
('result','course_reg','14100',8773,NULL),
('result','course_reg','14101',8774,NULL),
('result','course_reg','14102',8775,NULL),
('result','course_reg','14103',8776,NULL),
('result','course_reg','14104',8777,NULL),
('result','course_reg','14105',8778,NULL),
('result','course_reg','14106',8779,NULL),
('result','course_reg','14107',8780,NULL),
('result','course_reg','14108',8781,NULL),
('result','course_reg','14109',8782,NULL),
('result','course_reg','14110',8783,NULL),
('result','course_reg','14111',8784,NULL),
('result','course_reg','14112',8785,NULL),
('result','course_reg','14113',8786,NULL),
('result','course_reg','14114',8787,NULL),
('result','course_reg','14115',8788,NULL),
('result','course_reg','14116',8789,NULL),
('result','course_reg','14117',8790,NULL),
('result','course_reg','14118',8791,NULL),
('result','course_reg','14119',8792,NULL),
('result','course_reg','14120',8793,NULL),
('result','course_reg','14121',8794,NULL),
('result','course_reg','14122',8795,NULL),
('result','course_reg','14123',8796,NULL),
('result','course_reg','14124',8797,NULL),
('result','course_reg','14125',8798,NULL),
('result','course_reg','14126',8799,NULL),
('result','course_reg','14127',8800,NULL),
('result','course_reg','14128',8801,NULL),
('result','course_reg','14129',8802,NULL),
('result','course_reg','14130',8803,NULL),
('result','course_reg','14131',8804,NULL),
('result','course_reg','14132',8805,NULL),
('result','course_reg','14133',8806,NULL),
('result','course_reg','14134',8807,NULL),
('result','course_reg','14135',8808,NULL),
('result','course_reg','14136',8809,NULL),
('result','course_reg','14137',8810,NULL),
('result','course_reg','14138',8811,NULL),
('result','course_reg','14139',8812,NULL),
('result','course_reg','14140',8813,NULL),
('result','course_reg','14141',8814,NULL),
('result','course_reg','14142',8815,NULL),
('result','course_reg','14143',8816,NULL),
('result','course_reg','14144',8817,NULL),
('result','course_reg','14145',8818,NULL),
('result','course_reg','14146',8819,NULL),
('result','course_reg','14147',8820,NULL),
('result','course_reg','14148',8821,NULL),
('result','course_reg','14149',8822,NULL),
('result','course_reg','14150',8823,NULL),
('result','course_reg','14151',8824,NULL),
('result','course_reg','14152',8825,NULL),
('result','course_reg','14153',8826,NULL),
('result','course_reg','14154',8827,NULL),
('result','course_reg','14155',8828,NULL),
('result','course_reg','14156',8829,NULL),
('result','course_reg','14157',8830,NULL),
('result','course_reg','14158',8831,NULL),
('result','course_reg','14159',8832,NULL),
('result','course_reg','14160',8833,NULL),
('result','course_reg','14161',8834,NULL),
('result','course_reg','14162',8835,NULL),
('result','course_reg','14163',8836,NULL),
('result','course_reg','14164',8837,NULL),
('result','course_reg','14165',8838,NULL),
('result','course_reg','14166',8839,NULL),
('result','course_reg','14168',8840,NULL),
('result','course_reg','14169',8841,NULL),
('result','course_reg','14170',8842,NULL),
('result','course_reg','14171',8843,NULL),
('result','course_reg','14172',8844,NULL),
('result','course_reg','14173',8845,NULL),
('result','course_reg','14174',8846,NULL),
('result','course_reg','14176',8847,NULL),
('result','course_reg','14177',8848,NULL),
('result','course_reg','14178',8849,NULL),
('result','course_reg','14179',8850,NULL),
('result','course_reg','14180',8851,NULL),
('result','course_reg','14181',8852,NULL),
('result','course_reg','14183',8853,NULL),
('result','course_reg','14184',8854,NULL),
('result','course_reg','14185',8855,NULL),
('result','course_reg','14186',8856,NULL),
('result','course_reg','14187',8857,NULL),
('result','course_reg','14188',8858,NULL),
('result','course_reg','14189',8859,NULL),
('result','course_reg','14191',8860,NULL),
('result','course_reg','14192',8861,NULL),
('result','course_reg','14193',8862,NULL),
('result','course_reg','14194',8863,NULL),
('result','course_reg','14195',8864,NULL),
('result','course_reg','14196',8865,NULL),
('result','course_reg','14197',8866,NULL),
('result','course_reg','14198',8867,NULL),
('result','course_reg','14200',8868,NULL),
('result','course_reg','14201',8869,NULL),
('result','course_reg','14202',8870,NULL),
('result','course_reg','14203',8871,NULL),
('result','course_reg','14204',8872,NULL),
('result','course_reg','14205',8873,NULL),
('result','course_reg','14206',8874,NULL),
('result','course_reg','14207',8875,NULL),
('result','course_reg','14208',8876,NULL),
('result','course_reg','14209',8877,NULL),
('result','course_reg','14210',8878,NULL),
('result','course_reg','14211',8879,NULL),
('result','course_reg','14212',8880,NULL),
('result','course_reg','14213',8881,NULL),
('result','course_reg','14214',8882,NULL),
('result','course_reg','14215',8883,NULL),
('result','course_reg','14216',8884,NULL),
('result','course_reg','14217',8885,NULL),
('result','course_reg','14218',8886,NULL),
('result','course_reg','14219',8887,NULL),
('result','course_reg','14220',8888,NULL),
('result','course_reg','14221',8889,NULL),
('result','course_reg','14222',8890,NULL),
('result','course_reg','14223',8891,NULL),
('result','course_reg','14224',8892,NULL),
('result','course_reg','14225',8893,NULL),
('result','course_reg','14226',8894,NULL),
('result','course_reg','14227',8895,NULL),
('result','course_reg','14228',8896,NULL),
('result','course_reg','14229',8897,NULL),
('result','course_reg','14230',8898,NULL),
('result','course_reg','14231',8899,NULL),
('result','course_reg','14232',8900,NULL),
('result','course_reg','14233',8901,NULL),
('result','course_reg','14234',8902,NULL),
('result','course_reg','14235',8903,NULL),
('result','course_reg','14236',8904,NULL),
('result','course_reg','14237',8905,NULL),
('result','course_reg','14238',8906,NULL),
('result','course_reg','14239',8907,NULL),
('result','course_reg','14240',8908,NULL),
('result','course_reg','14242',8909,NULL),
('result','course_reg','14243',8910,NULL),
('result','course_reg','14244',8911,NULL),
('result','course_reg','14245',8912,NULL),
('result','course_reg','14246',8913,NULL),
('result','course_reg','14247',8914,NULL),
('result','course_reg','14248',8915,NULL),
('result','course_reg','14249',8916,NULL),
('result','course_reg','14251',8917,NULL),
('result','course_reg','14252',8918,NULL),
('result','course_reg','14253',8919,NULL),
('result','course_reg','14254',8920,NULL),
('result','course_reg','14255',8921,NULL),
('result','course_reg','14256',8922,NULL),
('result','course_reg','14257',8923,NULL),
('result','course_reg','14258',8924,NULL),
('result','course_reg','14259',8925,NULL),
('result','course_reg','14260',8926,NULL),
('result','course_reg','14261',8927,NULL),
('result','course_reg','14262',8928,NULL),
('result','course_reg','14263',8929,NULL),
('result','course_reg','14264',8930,NULL),
('result','course_reg','14265',8931,NULL),
('result','course_reg','14266',8932,NULL),
('result','course_reg','14267',8933,NULL),
('result','course_reg','14268',8934,NULL),
('result','course_reg','14269',8935,NULL),
('result','course_reg','14270',8936,NULL),
('result','course_reg','14271',8937,NULL),
('result','course_reg','14272',8938,NULL),
('result','course_reg','14274',8939,NULL),
('result','course_reg','14275',8940,NULL),
('result','course_reg','14276',8941,NULL),
('result','course_reg','14277',8942,NULL),
('result','course_reg','14279',8943,NULL),
('result','course_reg','14280',8944,NULL),
('result','course_reg','14281',8945,NULL),
('result','course_reg','14282',8946,NULL),
('result','course_reg','14283',8947,NULL),
('result','course_reg','14284',8948,NULL),
('result','course_reg','14285',8949,NULL),
('result','course_reg','14286',8950,NULL),
('result','course_reg','14288',8951,NULL),
('result','course_reg','14289',8952,NULL),
('result','course_reg','14290',8953,NULL),
('result','course_reg','14291',8954,NULL),
('result','course_reg','14292',8955,NULL),
('result','course_reg','14293',8956,NULL),
('result','course_reg','14294',8957,NULL),
('result','course_reg','14295',8958,NULL),
('result','course_reg','14296',8959,NULL),
('result','course_reg','14298',8960,NULL),
('result','course_reg','14299',8961,NULL),
('result','course_reg','14300',8962,NULL),
('result','course_reg','14301',8963,NULL),
('result','course_reg','14303',8964,NULL),
('result','course_reg','14304',8965,NULL),
('result','course_reg','14305',8966,NULL),
('result','course_reg','14306',8967,NULL),
('result','course_reg','14307',8968,NULL),
('result','course_reg','14308',8969,NULL),
('result','course_reg','14309',8970,NULL),
('result','course_reg','14310',8971,NULL),
('result','course_reg','14311',8972,NULL),
('result','course_reg','14312',8973,NULL),
('result','course_reg','14313',8974,NULL),
('result','course_reg','14314',8975,NULL),
('result','course_reg','14315',8976,NULL),
('result','course_reg','14316',8977,NULL),
('result','course_reg','14317',8978,NULL),
('result','course_reg','14318',8979,NULL),
('result','course_reg','14319',8980,NULL),
('result','course_reg','14320',8981,NULL),
('result','course_reg','14321',8982,NULL),
('result','course_reg','14322',8983,NULL),
('result','course_reg','14323',8984,NULL),
('result','course_reg','14324',8985,NULL),
('result','course_reg','14325',8986,NULL),
('result','course_reg','14326',8987,NULL),
('result','course_reg','14327',8988,NULL),
('result','course_reg','14328',8989,NULL);
INSERT INTO `legacy_mappings` (`entity_type`,`legacy_table`,`legacy_id`,`new_id`,`notes`) VALUES
('result','course_reg','14329',8990,NULL),
('result','course_reg','14330',8991,NULL),
('result','course_reg','14331',8992,NULL),
('result','course_reg','14332',8993,NULL),
('result','course_reg','14333',8994,NULL),
('result','course_reg','14334',8995,NULL),
('result','course_reg','14335',8996,NULL),
('result','course_reg','14336',8997,NULL),
('result','course_reg','14337',8998,NULL),
('result','course_reg','14338',8999,NULL),
('result','course_reg','14339',9000,NULL),
('result','course_reg','14340',9001,NULL),
('result','course_reg','14341',9002,NULL),
('result','course_reg','14342',9003,NULL),
('result','course_reg','14343',9004,NULL),
('result','course_reg','14344',9005,NULL),
('result','course_reg','14345',9006,NULL),
('result','course_reg','14346',9007,NULL),
('result','course_reg','14347',9008,NULL),
('result','course_reg','14348',9009,NULL),
('result','course_reg','14349',9010,NULL),
('result','course_reg','14350',9011,NULL),
('result','course_reg','14351',9012,NULL),
('result','course_reg','14352',9013,NULL),
('result','course_reg','14353',9014,NULL),
('result','course_reg','14354',9015,NULL),
('result','course_reg','14355',9016,NULL),
('result','course_reg','14356',9017,NULL),
('result','course_reg','14357',9018,NULL),
('result','course_reg','14358',9019,NULL),
('result','course_reg','14359',9020,NULL),
('result','course_reg','14360',9021,NULL),
('result','course_reg','14361',9022,NULL),
('result','course_reg','14362',9023,NULL),
('result','course_reg','14363',9024,NULL),
('result','course_reg','14364',9025,NULL),
('result','course_reg','14365',9026,NULL),
('result','course_reg','14366',9027,NULL),
('result','course_reg','14367',9028,NULL),
('result','course_reg','14369',9029,NULL),
('result','course_reg','14370',9030,NULL),
('result','course_reg','14371',9031,NULL),
('result','course_reg','14372',9032,NULL),
('result','course_reg','14373',9033,NULL),
('result','course_reg','14374',9034,NULL),
('result','course_reg','14375',9035,NULL),
('result','course_reg','14376',9036,NULL),
('result','course_reg','14377',9037,NULL),
('result','course_reg','14378',9038,NULL),
('result','course_reg','14379',9039,NULL),
('result','course_reg','14380',9040,NULL),
('result','course_reg','14381',9041,NULL),
('result','course_reg','14382',9042,NULL),
('result','course_reg','14383',9043,NULL),
('result','course_reg','14384',9044,NULL),
('result','course_reg','14385',9045,NULL),
('result','course_reg','14386',9046,NULL),
('result','course_reg','14387',9047,NULL),
('result','course_reg','14388',9048,NULL),
('result','course_reg','14389',9049,NULL),
('result','course_reg','14390',9050,NULL),
('result','course_reg','14391',9051,NULL),
('result','course_reg','14392',9052,NULL),
('result','course_reg','14393',9053,NULL),
('result','course_reg','14394',9054,NULL),
('result','course_reg','14395',9055,NULL),
('result','course_reg','14396',9056,NULL),
('result','course_reg','14397',9057,NULL),
('result','course_reg','14398',9058,NULL),
('result','course_reg','14400',9059,NULL),
('result','course_reg','14401',9060,NULL),
('result','course_reg','14402',9061,NULL),
('result','course_reg','14403',9062,NULL),
('result','course_reg','14404',9063,NULL),
('result','course_reg','14405',9064,NULL),
('result','course_reg','14406',9065,NULL),
('result','course_reg','14407',9066,NULL),
('result','course_reg','14408',9067,NULL),
('result','course_reg','14409',9068,NULL),
('result','course_reg','14410',9069,NULL),
('result','course_reg','14411',9070,NULL),
('result','course_reg','14412',9071,NULL),
('result','course_reg','14413',9072,NULL),
('result','course_reg','14414',9073,NULL),
('result','course_reg','14415',9074,NULL),
('result','course_reg','14416',9075,NULL),
('result','course_reg','14417',9076,NULL),
('result','course_reg','14418',9077,NULL),
('result','course_reg','14419',9078,NULL),
('result','course_reg','14420',9079,NULL),
('result','course_reg','14421',9080,NULL),
('result','course_reg','14423',9081,NULL),
('result','course_reg','14424',9082,NULL),
('result','course_reg','14425',9083,NULL),
('result','course_reg','14426',9084,NULL),
('result','course_reg','14427',9085,NULL),
('result','course_reg','14428',9086,NULL),
('result','course_reg','14429',9087,NULL),
('result','course_reg','14431',9088,NULL),
('result','course_reg','14432',9089,NULL),
('result','course_reg','14433',9090,NULL),
('result','course_reg','14434',9091,NULL),
('result','course_reg','14435',9092,NULL),
('result','course_reg','14436',9093,NULL),
('result','course_reg','14437',9094,NULL),
('result','course_reg','14438',9095,NULL),
('result','course_reg','14439',9096,NULL),
('result','course_reg','14440',9097,NULL),
('result','course_reg','14441',9098,NULL),
('result','course_reg','14442',9099,NULL),
('result','course_reg','14443',9100,NULL),
('result','course_reg','14444',9101,NULL),
('result','course_reg','14446',9102,NULL),
('result','course_reg','14447',9103,NULL),
('result','course_reg','14448',9104,NULL),
('result','course_reg','14449',9105,NULL),
('result','course_reg','14450',9106,NULL),
('result','course_reg','14451',9107,NULL),
('result','course_reg','14453',9108,NULL),
('result','course_reg','14454',9109,NULL),
('result','course_reg','14455',9110,NULL),
('result','course_reg','14456',9111,NULL),
('result','course_reg','14457',9112,NULL),
('result','course_reg','14458',9113,NULL),
('result','course_reg','14459',9114,NULL),
('result','course_reg','14460',9115,NULL),
('result','course_reg','14461',9116,NULL),
('result','course_reg','14462',9117,NULL),
('result','course_reg','14463',9118,NULL),
('result','course_reg','14464',9119,NULL),
('result','course_reg','14465',9120,NULL),
('result','course_reg','14466',9121,NULL),
('result','course_reg','14467',9122,NULL),
('result','course_reg','14468',9123,NULL),
('result','course_reg','14469',9124,NULL),
('result','course_reg','14470',9125,NULL),
('result','course_reg','14471',9126,NULL),
('result','course_reg','14472',9127,NULL),
('result','course_reg','14473',9128,NULL),
('result','course_reg','14474',9129,NULL),
('result','course_reg','14475',9130,NULL),
('result','course_reg','14476',9131,NULL),
('result','course_reg','14477',9132,NULL),
('result','course_reg','14478',9133,NULL),
('result','course_reg','14479',9134,NULL),
('result','course_reg','14480',9135,NULL),
('result','course_reg','14481',9136,NULL),
('result','course_reg','14482',9137,NULL),
('result','course_reg','14483',9138,NULL),
('result','course_reg','14484',9139,NULL),
('result','course_reg','14485',9140,NULL),
('result','course_reg','14486',9141,NULL),
('result','course_reg','14487',9142,NULL),
('result','course_reg','14488',9143,NULL),
('result','course_reg','14489',9144,NULL),
('result','course_reg','14490',9145,NULL),
('result','course_reg','14491',9146,NULL),
('result','course_reg','14492',9147,NULL),
('result','course_reg','14493',9148,NULL),
('result','course_reg','14494',9149,NULL),
('result','course_reg','14495',9150,NULL),
('result','course_reg','14496',9151,NULL),
('result','course_reg','14497',9152,NULL),
('result','course_reg','14498',9153,NULL),
('result','course_reg','14500',9154,NULL),
('result','course_reg','14501',9155,NULL),
('result','course_reg','14502',9156,NULL),
('result','course_reg','14503',9157,NULL),
('result','course_reg','14504',9158,NULL),
('result','course_reg','14505',9159,NULL),
('result','course_reg','14506',9160,NULL),
('result','course_reg','14507',9161,NULL),
('result','course_reg','14508',9162,NULL),
('result','course_reg','14509',9163,NULL),
('result','course_reg','14510',9164,NULL),
('result','course_reg','14511',9165,NULL),
('result','course_reg','14512',9166,NULL),
('result','course_reg','14513',9167,NULL),
('result','course_reg','14515',9168,NULL),
('result','course_reg','14516',9169,NULL),
('result','course_reg','14518',9170,NULL),
('result','course_reg','14519',9171,NULL),
('result','course_reg','14520',9172,NULL),
('result','course_reg','14521',9173,NULL),
('result','course_reg','14522',9174,NULL),
('result','course_reg','14523',9175,NULL),
('result','course_reg','14524',9176,NULL),
('result','course_reg','14525',9177,NULL),
('result','course_reg','14526',9178,NULL),
('result','course_reg','14527',9179,NULL),
('result','course_reg','14528',9180,NULL),
('result','course_reg','14529',9181,NULL),
('result','course_reg','14530',9182,NULL),
('result','course_reg','14531',9183,NULL),
('result','course_reg','14532',9184,NULL),
('result','course_reg','14533',9185,NULL),
('result','course_reg','14534',9186,NULL),
('result','course_reg','14535',9187,NULL),
('result','course_reg','14536',9188,NULL),
('result','course_reg','14537',9189,NULL),
('result','course_reg','14538',9190,NULL),
('result','course_reg','14539',9191,NULL),
('result','course_reg','14540',9192,NULL),
('result','course_reg','14541',9193,NULL),
('result','course_reg','14542',9194,NULL),
('result','course_reg','14543',9195,NULL),
('result','course_reg','14544',9196,NULL),
('result','course_reg','14545',9197,NULL),
('result','course_reg','14546',9198,NULL),
('result','course_reg','14547',9199,NULL),
('result','course_reg','14548',9200,NULL),
('result','course_reg','14549',9201,NULL),
('result','course_reg','14550',9202,NULL),
('result','course_reg','14551',9203,NULL),
('result','course_reg','14552',9204,NULL),
('result','course_reg','14553',9205,NULL),
('result','course_reg','14554',9206,NULL),
('result','course_reg','14555',9207,NULL),
('result','course_reg','14556',9208,NULL),
('result','course_reg','14557',9209,NULL),
('result','course_reg','14558',9210,NULL),
('result','course_reg','14559',9211,NULL),
('result','course_reg','14560',9212,NULL),
('result','course_reg','14561',9213,NULL),
('result','course_reg','14562',9214,NULL),
('result','course_reg','14563',9215,NULL),
('result','course_reg','14564',9216,NULL),
('result','course_reg','14565',9217,NULL),
('result','course_reg','14566',9218,NULL),
('result','course_reg','14567',9219,NULL),
('result','course_reg','14568',9220,NULL),
('result','course_reg','14569',9221,NULL),
('result','course_reg','14570',9222,NULL),
('result','course_reg','14571',9223,NULL),
('result','course_reg','14572',9224,NULL),
('result','course_reg','14573',9225,NULL),
('result','course_reg','14574',9226,NULL),
('result','course_reg','14575',9227,NULL),
('result','course_reg','14576',9228,NULL),
('result','course_reg','14577',9229,NULL),
('result','course_reg','14578',9230,NULL),
('result','course_reg','14579',9231,NULL),
('result','course_reg','14580',9232,NULL),
('result','course_reg','14581',9233,NULL),
('result','course_reg','14582',9234,NULL),
('result','course_reg','14583',9235,NULL),
('result','course_reg','14584',9236,NULL),
('result','course_reg','14585',9237,NULL),
('result','course_reg','14586',9238,NULL),
('result','course_reg','14587',9239,NULL);
INSERT INTO `legacy_mappings` (`entity_type`,`legacy_table`,`legacy_id`,`new_id`,`notes`) VALUES
('result','course_reg','14588',9240,NULL),
('result','course_reg','14589',9241,NULL),
('result','course_reg','14590',9242,NULL),
('result','course_reg','14592',9243,NULL),
('result','course_reg','14593',9244,NULL),
('result','course_reg','14594',9245,NULL),
('result','course_reg','14595',9246,NULL),
('result','course_reg','14596',9247,NULL),
('result','course_reg','14597',9248,NULL),
('result','course_reg','14598',9249,NULL),
('result','course_reg','14599',9250,NULL),
('result','course_reg','14600',9251,NULL),
('result','course_reg','14601',9252,NULL),
('result','course_reg','14602',9253,NULL),
('result','course_reg','14603',9254,NULL),
('result','course_reg','14604',9255,NULL),
('result','course_reg','14605',9256,NULL),
('result','course_reg','14606',9257,NULL),
('result','course_reg','14607',9258,NULL),
('result','course_reg','14608',9259,NULL),
('result','course_reg','14609',9260,NULL),
('result','course_reg','14610',9261,NULL),
('result','course_reg','14611',9262,NULL),
('result','course_reg','14613',9263,NULL),
('result','course_reg','14614',9264,NULL),
('result','course_reg','14615',9265,NULL),
('result','course_reg','14616',9266,NULL),
('result','course_reg','14617',9267,NULL),
('result','course_reg','14618',9268,NULL),
('result','course_reg','14619',9269,NULL),
('result','course_reg','14620',9270,NULL),
('result','course_reg','14621',9271,NULL),
('result','course_reg','14622',9272,NULL),
('result','course_reg','14623',9273,NULL),
('result','course_reg','14624',9274,NULL),
('result','course_reg','14625',9275,NULL),
('result','course_reg','14626',9276,NULL),
('result','course_reg','14627',9277,NULL),
('result','course_reg','14628',9278,NULL),
('result','course_reg','14629',9279,NULL),
('result','course_reg','14630',9280,NULL),
('result','course_reg','14631',9281,NULL),
('result','course_reg','14632',9282,NULL),
('result','course_reg','14633',9283,NULL),
('result','course_reg','14635',9284,NULL),
('result','course_reg','14636',9285,NULL),
('result','course_reg','14637',9286,NULL),
('result','course_reg','14638',9287,NULL),
('result','course_reg','14639',9288,NULL),
('result','course_reg','14640',9289,NULL),
('result','course_reg','14641',9290,NULL),
('result','course_reg','14642',9291,NULL),
('result','course_reg','14643',9292,NULL),
('result','course_reg','14644',9293,NULL),
('result','course_reg','14645',9294,NULL),
('result','course_reg','14646',9295,NULL),
('result','course_reg','14647',9296,NULL),
('result','course_reg','14648',9297,NULL),
('result','course_reg','14649',9298,NULL),
('result','course_reg','14650',9299,NULL),
('result','course_reg','14651',9300,NULL),
('result','course_reg','14652',9301,NULL),
('result','course_reg','14653',9302,NULL),
('result','course_reg','14654',9303,NULL),
('result','course_reg','14655',9304,NULL),
('result','course_reg','14656',9305,NULL),
('result','course_reg','14657',9306,NULL),
('result','course_reg','14658',9307,NULL),
('result','course_reg','14659',9308,NULL),
('result','course_reg','14660',9309,NULL),
('result','course_reg','14661',9310,NULL),
('result','course_reg','14662',9311,NULL),
('result','course_reg','14663',9312,NULL),
('result','course_reg','14664',9313,NULL),
('result','course_reg','14665',9314,NULL),
('result','course_reg','14666',9315,NULL),
('result','course_reg','14667',9316,NULL),
('result','course_reg','14668',9317,NULL),
('result','course_reg','14669',9318,NULL),
('result','course_reg','14670',9319,NULL),
('result','course_reg','14671',9320,NULL),
('result','course_reg','14672',9321,NULL),
('result','course_reg','14673',9322,NULL),
('result','course_reg','14674',9323,NULL),
('result','course_reg','14675',9324,NULL),
('result','course_reg','14676',9325,NULL),
('result','course_reg','14677',9326,NULL),
('result','course_reg','14678',9327,NULL),
('result','course_reg','14679',9328,NULL),
('result','course_reg','14680',9329,NULL),
('result','course_reg','14681',9330,NULL),
('result','course_reg','14682',9331,NULL),
('result','course_reg','14683',9332,NULL),
('result','course_reg','14684',9333,NULL),
('result','course_reg','14685',9334,NULL),
('result','course_reg','14686',9335,NULL),
('result','course_reg','14687',9336,NULL),
('result','course_reg','14688',9337,NULL),
('result','course_reg','14689',9338,NULL),
('result','course_reg','14690',9339,NULL),
('result','course_reg','14691',9340,NULL),
('result','course_reg','14692',9341,NULL),
('result','course_reg','14693',9342,NULL),
('result','course_reg','14694',9343,NULL),
('result','course_reg','14695',9344,NULL),
('result','course_reg','14696',9345,NULL),
('result','course_reg','14697',9346,NULL),
('result','course_reg','14698',9347,NULL),
('result','course_reg','14699',9348,NULL),
('result','course_reg','14700',9349,NULL),
('result','course_reg','14701',9350,NULL),
('result','course_reg','14703',9351,NULL),
('result','course_reg','14704',9352,NULL),
('result','course_reg','14705',9353,NULL),
('result','course_reg','14706',9354,NULL),
('result','course_reg','14707',9355,NULL),
('result','course_reg','14708',9356,NULL),
('result','course_reg','14709',9357,NULL),
('result','course_reg','14710',9358,NULL),
('result','course_reg','14711',9359,NULL),
('result','course_reg','14712',9360,NULL),
('result','course_reg','14713',9361,NULL),
('result','course_reg','14714',9362,NULL),
('result','course_reg','14715',9363,NULL),
('result','course_reg','14716',9364,NULL),
('result','course_reg','14717',9365,NULL),
('result','course_reg','14718',9366,NULL),
('result','course_reg','14719',9367,NULL),
('result','course_reg','14720',9368,NULL),
('result','course_reg','14721',9369,NULL),
('result','course_reg','14722',9370,NULL),
('result','course_reg','14723',9371,NULL),
('result','course_reg','14724',9372,NULL),
('result','course_reg','14725',9373,NULL),
('result','course_reg','14726',9374,NULL),
('result','course_reg','14727',9375,NULL),
('result','course_reg','14729',9376,NULL),
('result','course_reg','14730',9377,NULL),
('result','course_reg','14731',9378,NULL),
('result','course_reg','14732',9379,NULL),
('result','course_reg','14733',9380,NULL),
('result','course_reg','14734',9381,NULL),
('result','course_reg','14735',9382,NULL),
('result','course_reg','14736',9383,NULL),
('result','course_reg','14737',9384,NULL),
('result','course_reg','14738',9385,NULL),
('result','course_reg','14739',9386,NULL),
('result','course_reg','14740',9387,NULL),
('result','course_reg','14741',9388,NULL),
('result','course_reg','14742',9389,NULL),
('result','course_reg','14743',9390,NULL),
('result','course_reg','14744',9391,NULL),
('result','course_reg','14745',9392,NULL),
('result','course_reg','14746',9393,NULL),
('result','course_reg','14747',9394,NULL),
('result','course_reg','14748',9395,NULL),
('result','course_reg','14749',9396,NULL),
('result','course_reg','14751',9397,NULL),
('result','course_reg','14752',9398,NULL),
('result','course_reg','14753',9399,NULL),
('result','course_reg','14754',9400,NULL),
('result','course_reg','14755',9401,NULL),
('result','course_reg','14756',9402,NULL),
('result','course_reg','14757',9403,NULL),
('result','course_reg','14758',9404,NULL),
('result','course_reg','14759',9405,NULL),
('result','course_reg','14760',9406,NULL),
('result','course_reg','14761',9407,NULL),
('result','course_reg','14762',9408,NULL),
('result','course_reg','14763',9409,NULL),
('result','course_reg','14764',9410,NULL),
('result','course_reg','14765',9411,NULL),
('result','course_reg','14766',9412,NULL),
('result','course_reg','14767',9413,NULL),
('result','course_reg','14768',9414,NULL),
('result','course_reg','14769',9415,NULL),
('result','course_reg','14770',9416,NULL),
('result','course_reg','14771',9417,NULL),
('result','course_reg','14772',9418,NULL),
('result','course_reg','14773',9419,NULL),
('result','course_reg','14774',9420,NULL),
('result','course_reg','14775',9421,NULL),
('result','course_reg','14776',9422,NULL),
('result','course_reg','14777',9423,NULL),
('result','course_reg','14778',9424,NULL),
('result','course_reg','14779',9425,NULL),
('result','course_reg','14780',9426,NULL),
('result','course_reg','14781',9427,NULL),
('result','course_reg','14782',9428,NULL),
('result','course_reg','14783',9429,NULL),
('result','course_reg','14784',9430,NULL),
('result','course_reg','14785',9431,NULL),
('result','course_reg','14786',9432,NULL),
('result','course_reg','14787',9433,NULL),
('result','course_reg','14788',9434,NULL),
('result','course_reg','14789',9435,NULL),
('result','course_reg','14790',9436,NULL),
('result','course_reg','14791',9437,NULL),
('result','course_reg','14792',9438,NULL),
('result','course_reg','14793',9439,NULL),
('result','course_reg','14794',9440,NULL),
('result','course_reg','14795',9441,NULL),
('result','course_reg','14796',9442,NULL),
('result','course_reg','14797',9443,NULL),
('result','course_reg','14798',9444,NULL),
('result','course_reg','14799',9445,NULL),
('result','course_reg','14800',9446,NULL),
('result','course_reg','14801',9447,NULL),
('result','course_reg','14802',9448,NULL),
('result','course_reg','14803',9449,NULL),
('result','course_reg','14804',9450,NULL),
('result','course_reg','14806',9451,NULL),
('result','course_reg','14807',9452,NULL),
('result','course_reg','14808',9453,NULL),
('result','course_reg','14809',9454,NULL),
('result','course_reg','14810',9455,NULL),
('result','course_reg','14811',9456,NULL),
('result','course_reg','14812',9457,NULL),
('result','course_reg','14813',9458,NULL),
('result','course_reg','14814',9459,NULL),
('result','course_reg','14815',9460,NULL),
('result','course_reg','14816',9461,NULL),
('result','course_reg','14817',9462,NULL),
('result','course_reg','14818',9463,NULL),
('result','course_reg','14819',9464,NULL),
('result','course_reg','14820',9465,NULL),
('result','course_reg','14821',9466,NULL),
('result','course_reg','14822',9467,NULL),
('result','course_reg','14823',9468,NULL),
('result','course_reg','14824',9469,NULL),
('result','course_reg','14825',9470,NULL),
('result','course_reg','14826',9471,NULL),
('result','course_reg','14827',9472,NULL),
('result','course_reg','14828',9473,NULL),
('result','course_reg','14829',9474,NULL),
('result','course_reg','14830',9475,NULL),
('result','course_reg','14831',9476,NULL),
('result','course_reg','14832',9477,NULL),
('result','course_reg','14833',9478,NULL),
('result','course_reg','14834',9479,NULL),
('result','course_reg','14835',9480,NULL),
('result','course_reg','14837',9481,NULL),
('result','course_reg','14838',9482,NULL),
('result','course_reg','14839',9483,NULL),
('result','course_reg','14841',9484,NULL),
('result','course_reg','14842',9485,NULL),
('result','course_reg','14843',9486,NULL),
('result','course_reg','14844',9487,NULL),
('result','course_reg','14845',9488,NULL),
('result','course_reg','14846',9489,NULL);
INSERT INTO `legacy_mappings` (`entity_type`,`legacy_table`,`legacy_id`,`new_id`,`notes`) VALUES
('result','course_reg','14847',9490,NULL),
('result','course_reg','14848',9491,NULL),
('result','course_reg','14849',9492,NULL),
('result','course_reg','14850',9493,NULL),
('result','course_reg','14851',9494,NULL),
('result','course_reg','14852',9495,NULL),
('result','course_reg','14853',9496,NULL),
('result','course_reg','14854',9497,NULL),
('result','course_reg','14855',9498,NULL),
('result','course_reg','14856',9499,NULL),
('result','course_reg','14857',9500,NULL),
('result','course_reg','14858',9501,NULL),
('result','course_reg','14859',9502,NULL),
('result','course_reg','14860',9503,NULL),
('result','course_reg','14861',9504,NULL),
('result','course_reg','14862',9505,NULL),
('result','course_reg','14863',9506,NULL),
('result','course_reg','14864',9507,NULL),
('result','course_reg','14865',9508,NULL),
('result','course_reg','14866',9509,NULL),
('result','course_reg','14867',9510,NULL),
('result','course_reg','14868',9511,NULL),
('result','course_reg','14869',9512,NULL),
('result','course_reg','14870',9513,NULL),
('result','course_reg','14871',9514,NULL),
('result','course_reg','14872',9515,NULL),
('result','course_reg','14873',9516,NULL),
('result','course_reg','14874',9517,NULL),
('result','course_reg','14875',9518,NULL),
('result','course_reg','14876',9519,NULL),
('result','course_reg','14877',9520,NULL),
('result','course_reg','14878',9521,NULL),
('result','course_reg','14879',9522,NULL),
('result','course_reg','14880',9523,NULL),
('result','course_reg','14881',9524,NULL),
('result','course_reg','14882',9525,NULL),
('result','course_reg','14883',9526,NULL),
('result','course_reg','14884',9527,NULL),
('result','course_reg','14885',9528,NULL),
('result','course_reg','14886',9529,NULL),
('result','course_reg','14887',9530,NULL),
('result','course_reg','14888',9531,NULL),
('result','course_reg','14889',9532,NULL),
('result','course_reg','14890',9533,NULL),
('result','course_reg','14891',9534,NULL),
('result','course_reg','14892',9535,NULL),
('result','course_reg','14893',9536,NULL),
('result','course_reg','14894',9537,NULL),
('result','course_reg','14895',9538,NULL),
('result','course_reg','14896',9539,NULL),
('result','course_reg','14897',9540,NULL),
('result','course_reg','14898',9541,NULL),
('result','course_reg','14899',9542,NULL),
('result','course_reg','14900',9543,NULL),
('result','course_reg','14901',9544,NULL),
('result','course_reg','14902',9545,NULL),
('result','course_reg','14903',9546,NULL),
('result','course_reg','14904',9547,NULL),
('result','course_reg','14905',9548,NULL),
('result','course_reg','14906',9549,NULL),
('result','course_reg','14907',9550,NULL),
('result','course_reg','14908',9551,NULL),
('result','course_reg','14909',9552,NULL),
('result','course_reg','14910',9553,NULL),
('result','course_reg','14911',9554,NULL),
('result','course_reg','14912',9555,NULL),
('result','course_reg','14913',9556,NULL),
('result','course_reg','14914',9557,NULL),
('result','course_reg','14915',9558,NULL),
('result','course_reg','14916',9559,NULL),
('result','course_reg','14917',9560,NULL),
('result','course_reg','14918',9561,NULL),
('result','course_reg','14919',9562,NULL),
('result','course_reg','14920',9563,NULL),
('result','course_reg','14921',9564,NULL),
('result','course_reg','14922',9565,NULL),
('result','course_reg','14923',9566,NULL),
('result','course_reg','14924',9567,NULL),
('result','course_reg','14925',9568,NULL),
('result','course_reg','14926',9569,NULL),
('result','course_reg','14927',9570,NULL),
('result','course_reg','14928',9571,NULL),
('result','course_reg','14929',9572,NULL),
('result','course_reg','14930',9573,NULL),
('result','course_reg','14931',9574,NULL),
('result','course_reg','14932',9575,NULL),
('result','course_reg','14933',9576,NULL),
('result','course_reg','14934',9577,NULL),
('result','course_reg','14935',9578,NULL),
('result','course_reg','14936',9579,NULL),
('result','course_reg','14937',9580,NULL),
('result','course_reg','14938',9581,NULL),
('result','course_reg','14939',9582,NULL),
('result','course_reg','14940',9583,NULL),
('result','course_reg','14941',9584,NULL),
('result','course_reg','14942',9585,NULL),
('result','course_reg','14943',9586,NULL),
('result','course_reg','14944',9587,NULL),
('result','course_reg','14945',9588,NULL),
('result','course_reg','14946',9589,NULL),
('result','course_reg','14947',9590,NULL),
('result','course_reg','14948',9591,NULL),
('result','course_reg','14949',9592,NULL),
('result','course_reg','14950',9593,NULL),
('result','course_reg','14951',9594,NULL),
('result','course_reg','14952',9595,NULL),
('result','course_reg','14953',9596,NULL),
('result','course_reg','14954',9597,NULL),
('result','course_reg','14955',9598,NULL),
('result','course_reg','14956',9599,NULL),
('result','course_reg','14957',9600,NULL),
('result','course_reg','14958',9601,NULL),
('result','course_reg','14959',9602,NULL),
('result','course_reg','14960',9603,NULL),
('result','course_reg','14961',9604,NULL),
('result','course_reg','14962',9605,NULL),
('result','course_reg','14963',9606,NULL),
('result','course_reg','14964',9607,NULL),
('result','course_reg','14965',9608,NULL),
('result','course_reg','14966',9609,NULL),
('result','course_reg','14967',9610,NULL),
('result','course_reg','14968',9611,NULL),
('result','course_reg','14969',9612,NULL),
('result','course_reg','14970',9613,NULL),
('result','course_reg','14971',9614,NULL),
('result','course_reg','14972',9615,NULL),
('result','course_reg','14973',9616,NULL),
('result','course_reg','14974',9617,NULL),
('result','course_reg','14975',9618,NULL),
('result','course_reg','14976',9619,NULL),
('result','course_reg','14977',9620,NULL),
('result','course_reg','14978',9621,NULL),
('result','course_reg','14979',9622,NULL),
('result','course_reg','14980',9623,NULL),
('result','course_reg','14981',9624,NULL),
('result','course_reg','14982',9625,NULL),
('result','course_reg','14983',9626,NULL),
('result','course_reg','14984',9627,NULL),
('result','course_reg','14985',9628,NULL),
('result','course_reg','14986',9629,NULL),
('result','course_reg','14987',9630,NULL),
('result','course_reg','14988',9631,NULL),
('result','course_reg','14989',9632,NULL),
('result','course_reg','14990',9633,NULL),
('result','course_reg','14991',9634,NULL),
('result','course_reg','14992',9635,NULL),
('result','course_reg','14993',9636,NULL),
('result','course_reg','14994',9637,NULL),
('result','course_reg','14995',9638,NULL),
('result','course_reg','14996',9639,NULL),
('result','course_reg','14997',9640,NULL),
('result','course_reg','14998',9641,NULL),
('result','course_reg','14999',9642,NULL),
('result','course_reg','15000',9643,NULL),
('result','course_reg','15001',9644,NULL),
('result','course_reg','15002',9645,NULL),
('result','course_reg','15003',9646,NULL),
('result','course_reg','15004',9647,NULL),
('result','course_reg','15005',9648,NULL),
('result','course_reg','15006',9649,NULL),
('result','course_reg','15007',9650,NULL),
('result','course_reg','15008',9651,NULL),
('result','course_reg','15009',9652,NULL),
('result','course_reg','15010',9653,NULL),
('result','course_reg','15011',9654,NULL),
('result','course_reg','15012',9655,NULL),
('result','course_reg','15013',9656,NULL),
('result','course_reg','15014',9657,NULL),
('result','course_reg','15015',9658,NULL),
('result','course_reg','15016',9659,NULL),
('result','course_reg','15017',9660,NULL),
('result','course_reg','15018',9661,NULL),
('result','course_reg','15019',9662,NULL),
('result','course_reg','15020',9663,NULL),
('result','course_reg','15021',9664,NULL),
('result','course_reg','15022',9665,NULL),
('result','course_reg','15023',9666,NULL),
('result','course_reg','15024',9667,NULL),
('result','course_reg','15025',9668,NULL),
('result','course_reg','15026',9669,NULL),
('result','course_reg','15027',9670,NULL),
('result','course_reg','15028',9671,NULL),
('result','course_reg','15029',9672,NULL),
('result','course_reg','15030',9673,NULL),
('result','course_reg','15031',9674,NULL),
('result','course_reg','15032',9675,NULL),
('result','course_reg','15033',9676,NULL),
('result','course_reg','15034',9677,NULL),
('result','course_reg','15035',9678,NULL),
('result','course_reg','15036',9679,NULL),
('result','course_reg','15037',9680,NULL),
('result','course_reg','15038',9681,NULL),
('result','course_reg','15039',9682,NULL),
('result','course_reg','15040',9683,NULL),
('result','course_reg','15041',9684,NULL),
('result','course_reg','15042',9685,NULL),
('result','course_reg','15043',9686,NULL),
('result','course_reg','15044',9687,NULL),
('result','course_reg','15045',9688,NULL),
('result','course_reg','15046',9689,NULL),
('result','course_reg','15047',9690,NULL),
('result','course_reg','15048',9691,NULL),
('result','course_reg','15049',9692,NULL),
('result','course_reg','15050',9693,NULL),
('result','course_reg','15051',9694,NULL),
('result','course_reg','15052',9695,NULL),
('result','course_reg','15053',9696,NULL),
('result','course_reg','15054',9697,NULL),
('result','course_reg','15055',9698,NULL),
('result','course_reg','15056',9699,NULL),
('result','course_reg','15057',9700,NULL),
('result','course_reg','15058',9701,NULL),
('result','course_reg','15059',9702,NULL),
('result','course_reg','15060',9703,NULL),
('result','course_reg','15061',9704,NULL),
('result','course_reg','15062',9705,NULL),
('result','course_reg','15063',9706,NULL),
('result','course_reg','15064',9707,NULL),
('result','course_reg','15065',9708,NULL),
('result','course_reg','15066',9709,NULL),
('result','course_reg','15067',9710,NULL),
('result','course_reg','15068',9711,NULL),
('result','course_reg','15069',9712,NULL),
('result','course_reg','15070',9713,NULL),
('result','course_reg','15071',9714,NULL),
('result','course_reg','15072',9715,NULL),
('result','course_reg','15073',9716,NULL),
('result','course_reg','15074',9717,NULL),
('result','course_reg','15075',9718,NULL),
('result','course_reg','15076',9719,NULL),
('result','course_reg','15077',9720,NULL),
('result','course_reg','15078',9721,NULL),
('result','course_reg','15079',9722,NULL),
('result','course_reg','15080',9723,NULL),
('result','course_reg','15081',9724,NULL),
('result','course_reg','15082',9725,NULL),
('result','course_reg','15083',9726,NULL),
('result','course_reg','15084',9727,NULL),
('result','course_reg','15085',9728,NULL),
('result','course_reg','15086',9729,NULL),
('result','course_reg','15087',9730,NULL),
('result','course_reg','15088',9731,NULL),
('result','course_reg','15089',9732,NULL),
('result','course_reg','15090',9733,NULL),
('result','course_reg','15091',9734,NULL),
('result','course_reg','15092',9735,NULL),
('result','course_reg','15093',9736,NULL),
('result','course_reg','15094',9737,NULL),
('result','course_reg','15095',9738,NULL),
('result','course_reg','15097',9739,NULL);
INSERT INTO `legacy_mappings` (`entity_type`,`legacy_table`,`legacy_id`,`new_id`,`notes`) VALUES
('result','course_reg','15098',9740,NULL),
('result','course_reg','15099',9741,NULL),
('result','course_reg','15100',9742,NULL),
('result','course_reg','15101',9743,NULL),
('result','course_reg','15102',9744,NULL),
('result','course_reg','15103',9745,NULL),
('result','course_reg','15104',9746,NULL),
('result','course_reg','15105',9747,NULL),
('result','course_reg','15106',9748,NULL),
('result','course_reg','15107',9749,NULL),
('result','course_reg','15108',9750,NULL),
('result','course_reg','15109',9751,NULL),
('result','course_reg','15110',9752,NULL),
('result','course_reg','15111',9753,NULL),
('result','course_reg','15112',9754,NULL),
('result','course_reg','15113',9755,NULL),
('result','course_reg','15114',9756,NULL),
('result','course_reg','15115',9757,NULL),
('result','course_reg','15116',9758,NULL),
('result','course_reg','15117',9759,NULL),
('result','course_reg','15118',9760,NULL),
('result','course_reg','15119',9761,NULL),
('result','course_reg','15120',9762,NULL),
('result','course_reg','15121',9763,NULL),
('result','course_reg','15122',9764,NULL),
('result','course_reg','15123',9765,NULL),
('result','course_reg','15124',9766,NULL),
('result','course_reg','15125',9767,NULL),
('result','course_reg','15126',9768,NULL),
('result','course_reg','15127',9769,NULL),
('result','course_reg','15128',9770,NULL),
('result','course_reg','15129',9771,NULL),
('result','course_reg','15130',9772,NULL),
('result','course_reg','15131',9773,NULL),
('result','course_reg','15132',9774,NULL),
('result','course_reg','15133',9775,NULL),
('result','course_reg','15134',9776,NULL),
('result','course_reg','15135',9777,NULL),
('result','course_reg','15136',9778,NULL),
('result','course_reg','15137',9779,NULL),
('result','course_reg','15138',9780,NULL),
('result','course_reg','15139',9781,NULL),
('result','course_reg','15140',9782,NULL),
('result','course_reg','15141',9783,NULL),
('result','course_reg','15142',9784,NULL),
('result','course_reg','15143',9785,NULL),
('result','course_reg','15144',9786,NULL),
('result','course_reg','15145',9787,NULL),
('result','course_reg','15146',9788,NULL),
('result','course_reg','15147',9789,NULL),
('result','course_reg','15148',9790,NULL),
('result','course_reg','15149',9791,NULL),
('result','course_reg','15150',9792,NULL),
('result','course_reg','15151',9793,NULL),
('result','course_reg','15152',9794,NULL),
('result','course_reg','15153',9795,NULL),
('result','course_reg','15154',9796,NULL),
('result','course_reg','15155',9797,NULL),
('result','course_reg','15156',9798,NULL),
('result','course_reg','15157',9799,NULL),
('result','course_reg','15158',9800,NULL),
('result','course_reg','15159',9801,NULL),
('result','course_reg','15160',9802,NULL),
('result','course_reg','15161',9803,NULL),
('result','course_reg','15162',9804,NULL),
('result','course_reg','15163',9805,NULL),
('result','course_reg','15164',9806,NULL),
('result','course_reg','15165',9807,NULL),
('result','course_reg','15166',9808,NULL),
('result','course_reg','15167',9809,NULL),
('result','course_reg','15168',9810,NULL),
('result','course_reg','15169',9811,NULL),
('result','course_reg','15170',9812,NULL),
('result','course_reg','15171',9813,NULL),
('result','course_reg','15172',9814,NULL),
('result','course_reg','15173',9815,NULL),
('result','course_reg','15174',9816,NULL),
('result','course_reg','15175',9817,NULL),
('result','course_reg','15176',9818,NULL),
('result','course_reg','15177',9819,NULL),
('result','course_reg','15178',9820,NULL),
('result','course_reg','15179',9821,NULL),
('result','course_reg','15180',9822,NULL),
('result','course_reg','15181',9823,NULL),
('result','course_reg','15182',9824,NULL),
('result','course_reg','15183',9825,NULL),
('result','course_reg','15184',9826,NULL),
('result','course_reg','15185',9827,NULL),
('result','course_reg','15186',9828,NULL),
('result','course_reg','15187',9829,NULL),
('result','course_reg','15188',9830,NULL),
('result','course_reg','15189',9831,NULL),
('result','course_reg','15190',9832,NULL),
('result','course_reg','15191',9833,NULL),
('result','course_reg','15192',9834,NULL),
('result','course_reg','15193',9835,NULL),
('result','course_reg','15194',9836,NULL),
('result','course_reg','15195',9837,NULL),
('result','course_reg','15196',9838,NULL),
('result','course_reg','15197',9839,NULL),
('result','course_reg','15198',9840,NULL),
('result','course_reg','15199',9841,NULL),
('result','course_reg','15200',9842,NULL),
('announcement','announcement','3',1,NULL);

-- migration_issues: 956 records
INSERT INTO `migration_issues` (`entity_type`,`legacy_table`,`legacy_id`,`issue_code`,`message`,`legacy_payload`) VALUES
('user','users','769','DUPLICATE_EMAIL','Duplicate email omegavc644@gmail.com; placeholder generated.','{}'),
('user','users','815','DUPLICATE_EMAIL','Duplicate email omegavc644@gmail.com; placeholder generated.','{}'),
('user','users','820','INVALID_IDENTITY','Missing username or name.','{"id":"820","user_id":" 40311434","username":" Saanusofiat@gmail.com","matric_id":" ","session":" 2025/2026","firstname":" ","lastname":" ","middlename":" ","department":" ","programme":null,"gender":" ","phone":" ","occupation":" ","marital":" ","nationality":" ","state":" ","address":" ","dob":" 0000-00-00","lga":" ","email":" Saanusofiat@gmail.com","course":" ","status":" new","f_pay_status":" UNPAID","f_pay_amount":" ","reg_num":" ","campus":" Imeko","c_level":"300","passport":" default.jpg","level":"0","regdate":" 2024-07-30 04:54:21","send_status":"0","check_promoted":"1"}'),
('user','users','821','INVALID_IDENTITY','Missing username or name.','{"id":"821","user_id":" 76234340","username":" Saanusofiat22@gmail.com","matric_id":" ","session":" 2025/2026","firstname":" ","lastname":" ","middlename":" ","department":" ","programme":null,"gender":" ","phone":" ","occupation":" ","marital":" ","nationality":" ","state":" ","address":" ","dob":" 0000-00-00","lga":" ","email":" Saanusofiat22@gmail.com","course":" ","status":" new","f_pay_status":" UNPAID","f_pay_amount":" ","reg_num":" ","campus":" Imeko","c_level":"300","passport":" default.jpg","level":"0","regdate":" 2024-07-30 05:17:18","send_status":"0","check_promoted":"1"}'),
('user','users','822','INVALID_IDENTITY','Missing username or name.','{"id":"822","user_id":" 94823103","username":" sofiatsaanu@gmail.com","matric_id":" ","session":" 2025/2026","firstname":" ","lastname":" ","middlename":" ","department":" ","programme":null,"gender":" ","phone":" ","occupation":" ","marital":" ","nationality":" ","state":" ","address":" ","dob":" 0000-00-00","lga":" ","email":" sofiatsaanu@gmail.com","course":" ","status":" new","f_pay_status":" UNPAID","f_pay_amount":" ","reg_num":" ","campus":" Imeko","c_level":"300","passport":" default.jpg","level":"0","regdate":" 2024-07-30 06:39:37","send_status":"0","check_promoted":"1"}'),
('user','users','828','INVALID_IDENTITY','Missing username or name.','{"id":"828","user_id":" 64693372","username":" temytopea@gmail.com","matric_id":" ","session":" 2025/2026","firstname":" ","lastname":" ","middlename":" ","department":" ","programme":null,"gender":" ","phone":" ","occupation":" ","marital":" ","nationality":" ","state":" ","address":" ","dob":" 0000-00-00","lga":" ","email":" temytopea@gmail.com","course":" ","status":" new","f_pay_status":" UNPAID","f_pay_amount":" ","reg_num":" ","campus":" Ile-Ife","c_level":"300","passport":" default.jpg","level":"0","regdate":" 2024-08-29 07:58:27","send_status":"0","check_promoted":"1"}'),
('user','users','896','INVALID_IDENTITY','Missing username or name.','{"id":"896","user_id":" 79618528","username":" femioluwaleimu@gmail.com","matric_id":" ","session":" 2025/2026","firstname":" ","lastname":" ","middlename":" ","department":" ","programme":null,"gender":" ","phone":" ","occupation":" ","marital":" ","nationality":" ","state":" ","address":" ","dob":" 0000-00-00","lga":" ","email":" oyinadeaderemi@gmail.com","course":" ","status":" new","f_pay_status":" UNPAID","f_pay_amount":" ","reg_num":" ","campus":" Ile-Ife","c_level":"800","passport":" default.jpg","level":"2","regdate":" 2025-03-11 05:21:15","send_status":"1","check_promoted":"1"}'),
('user','users','1106','INVALID_IDENTITY','Missing username or name.','{"id":"1106","user_id":" 64968455","username":" chuksajeh123@gmail.com","matric_id":" ","session":" 2025/2026","firstname":" ","lastname":" ","middlename":" ","department":" ","programme":null,"gender":" ","phone":" ","occupation":" ","marital":" ","nationality":" ","state":" ","address":" ","dob":" 0000-00-00","lga":" ","email":" chuksajeh123@gmail.com","course":" ","status":" new","f_pay_status":" UNPAID","f_pay_amount":" ","reg_num":" ","campus":" Imeko","c_level":"200","passport":" default.jpg","level":"0","regdate":" 2025-09-27 15:03:30","send_status":"0","check_promoted":"0"}'),
('user','users','1107','INVALID_IDENTITY','Missing username or name.','{"id":"1107","user_id":" 50894153","username":" lamidikehinde5369@gmail.com","matric_id":" ","session":" 2025/2026","firstname":" ","lastname":" ","middlename":" ","department":" ","programme":null,"gender":" ","phone":" ","occupation":" ","marital":" ","nationality":" ","state":" ","address":" ","dob":" 0000-00-00","lga":" ","email":" lamidikehinde5369@gmail.com","course":" ","status":" new","f_pay_status":" UNPAID","f_pay_amount":" ","reg_num":" ","campus":" Ile-Ife","c_level":"200","passport":" default.jpg","level":"0","regdate":" 2025-10-03 05:11:27","send_status":"0","check_promoted":"0"}'),
('user','users','1109','INVALID_IDENTITY','Missing username or name.','{"id":"1109","user_id":" 96661037","username":" qezevacif424@gmail.com","matric_id":" ","session":" ","firstname":" ","lastname":" ","middlename":" ","department":" ","programme":null,"gender":" ","phone":" ","occupation":" ","marital":" ","nationality":" ","state":" ","address":" ","dob":" 0000-00-00","lga":" ","email":" qezevacif424@gmail.com","course":" ","status":" new","f_pay_status":" UNPAID","f_pay_amount":" ","reg_num":" ","campus":" Imeko","c_level":"100","passport":" default.jpg","level":"0","regdate":" 2025-10-18 18:33:55","send_status":"0","check_promoted":"0"}'),
('user','users','1110','INVALID_IDENTITY','Missing username or name.','{"id":"1110","user_id":" 73419078","username":" iyusubafol055@gmail.com","matric_id":" ","session":" ","firstname":" ","lastname":" ","middlename":" ","department":" ","programme":null,"gender":" ","phone":" ","occupation":" ","marital":" ","nationality":" ","state":" ","address":" ","dob":" 0000-00-00","lga":" ","email":" iyusubafol055@gmail.com","course":" ","status":" new","f_pay_status":" UNPAID","f_pay_amount":" ","reg_num":" ","campus":" Imeko","c_level":"100","passport":" default.jpg","level":"0","regdate":" 2025-10-19 12:25:06","send_status":"0","check_promoted":"0"}'),
('user','users','1113','INVALID_IDENTITY','Missing username or name.','{"id":"1113","user_id":" 21285933","username":" ikifawav71@gmail.com","matric_id":" ","session":" ","firstname":" ","lastname":" ","middlename":" ","department":" ","programme":null,"gender":" ","phone":" ","occupation":" ","marital":" ","nationality":" ","state":" ","address":" ","dob":" 0000-00-00","lga":" ","email":" ikifawav71@gmail.com","course":" ","status":" new","f_pay_status":" UNPAID","f_pay_amount":" ","reg_num":" ","campus":" Imeko","c_level":"100","passport":" default.jpg","level":"0","regdate":" 2025-10-22 11:45:11","send_status":"0","check_promoted":"0"}'),
('user','users','1115','INVALID_IDENTITY','Missing username or name.','{"id":"1115","user_id":" 94114250","username":" noxavoqice081@gmail.com","matric_id":" ","session":" ","firstname":" ","lastname":" ","middlename":" ","department":" ","programme":null,"gender":" ","phone":" ","occupation":" ","marital":" ","nationality":" ","state":" ","address":" ","dob":" 0000-00-00","lga":" ","email":" noxavoqice081@gmail.com","course":" ","status":" new","f_pay_status":" UNPAID","f_pay_amount":" ","reg_num":" ","campus":" Ile-Ife","c_level":"100","passport":" default.jpg","level":"0","regdate":" 2025-10-24 21:15:41","send_status":"0","check_promoted":"0"}'),
('user','users','1124','INVALID_IDENTITY','Missing username or name.','{"id":"1124","user_id":" 42641615","username":" ejadilufogiw57@gmail.com","matric_id":" ","session":" ","firstname":" ","lastname":" ","middlename":" ","department":" ","programme":null,"gender":" ","phone":" ","occupation":" ","marital":" ","nationality":" ","state":" ","address":" ","dob":" 0000-00-00","lga":" ","email":" ejadilufogiw57@gmail.com","course":" ","status":" new","f_pay_status":" UNPAID","f_pay_amount":" ","reg_num":" ","campus":" Ile-Ife","c_level":"100","passport":" default.jpg","level":"0","regdate":" 2025-11-17 07:23:53","send_status":"0","check_promoted":"0"}'),
('user','users','1125','INVALID_IDENTITY','Missing username or name.','{"id":"1125","user_id":" 16106903","username":" esiqisijem540@gmail.com","matric_id":" ","session":" ","firstname":" ","lastname":" ","middlename":" ","department":" ","programme":null,"gender":" ","phone":" ","occupation":" ","marital":" ","nationality":" ","state":" ","address":" ","dob":" 0000-00-00","lga":" ","email":" esiqisijem540@gmail.com","course":" ","status":" new","f_pay_status":" UNPAID","f_pay_amount":" ","reg_num":" ","campus":" Imeko","c_level":"100","passport":" default.jpg","level":"0","regdate":" 2025-11-17 16:30:31","send_status":"0","check_promoted":"0"}'),
('user','users','1128','INVALID_IDENTITY','Missing username or name.','{"id":"1128","user_id":" 95640224","username":" Umarhudu024@gmail.com","matric_id":" ","session":" 2025/2026","firstname":" ","lastname":" ","middlename":" ","department":" ","programme":null,"gender":" ","phone":" ","occupation":" ","marital":" ","nationality":" ","state":" ","address":" ","dob":" 0000-00-00","lga":" ","email":" Umarhudu024@gmail.com","course":" ","status":" new","f_pay_status":" UNPAID","f_pay_amount":" ","reg_num":" ","campus":" Imeko","c_level":"100","passport":" default.jpg","level":"0","regdate":" 2025-11-19 12:17:01","send_status":"0","check_promoted":"0"}'),
('user','users','1143','INVALID_IDENTITY','Missing username or name.','{"id":"1143","user_id":" 14200162","username":" ezutinof79@gmail.com","matric_id":" ","session":" ","firstname":" ","lastname":" ","middlename":" ","department":" ","programme":null,"gender":" ","phone":" ","occupation":" ","marital":" ","nationality":" ","state":" ","address":" ","dob":" 0000-00-00","lga":" ","email":" ezutinof79@gmail.com","course":" ","status":" new","f_pay_status":" UNPAID","f_pay_amount":" ","reg_num":" ","campus":" Imeko","c_level":"100","passport":" default.jpg","level":"0","regdate":" 2025-11-22 06:00:15","send_status":"0","check_promoted":"0"}'),
('user','users','1158','INVALID_IDENTITY','Missing username or name.','{"id":"1158","user_id":" 35409730","username":" ayobamishola@gmail.com","matric_id":" ","session":" 2025/2026","firstname":" ","lastname":" ","middlename":" ","department":" ","programme":null,"gender":" ","phone":" ","occupation":" ","marital":" ","nationality":" ","state":" ","address":" ","dob":" 0000-00-00","lga":" ","email":" ayobamishola@gmail.com","course":" ","status":" new","f_pay_status":" UNPAID","f_pay_amount":" ","reg_num":" ","campus":" Ile-Ife","c_level":"100","passport":" default.jpg","level":"0","regdate":" 2025-11-26 14:11:38","send_status":"0","check_promoted":"0"}'),
('user','users','1194','INVALID_IDENTITY','Missing username or name.','{"id":"1194","user_id":" 92315644","username":" nunisubadi44@gmail.com","matric_id":" ","session":" ","firstname":" ","lastname":" ","middlename":" ","department":" ","programme":null,"gender":" ","phone":" ","occupation":" ","marital":" ","nationality":" ","state":" ","address":" ","dob":" 0000-00-00","lga":" ","email":" nunisubadi44@gmail.com","course":" ","status":" new","f_pay_status":" UNPAID","f_pay_amount":" ","reg_num":" ","campus":" Ile-Ife","c_level":"100","passport":" default.jpg","level":"0","regdate":" 2025-12-05 01:09:25","send_status":"0","check_promoted":"0"}'),
('user','users','1196','INVALID_IDENTITY','Missing username or name.','{"id":"1196","user_id":" 56994510","username":" zovuxufey299@gmail.com","matric_id":" ","session":" ","firstname":" ","lastname":" ","middlename":" ","department":" ","programme":null,"gender":" ","phone":" ","occupation":" ","marital":" ","nationality":" ","state":" ","address":" ","dob":" 0000-00-00","lga":" ","email":" zovuxufey299@gmail.com","course":" ","status":" new","f_pay_status":" UNPAID","f_pay_amount":" ","reg_num":" ","campus":" Imeko","c_level":"100","passport":" default.jpg","level":"0","regdate":" 2025-12-22 01:35:55","send_status":"0","check_promoted":"0"}'),
('user','users','1198','INVALID_IDENTITY','Missing username or name.','{"id":"1198","user_id":" 40408854","username":" ca.x.ek.i.cuv.1.90@gmail.com","matric_id":" ","session":" ","firstname":" ","lastname":" ","middlename":" ","department":" ","programme":null,"gender":" ","phone":" ","occupation":" ","marital":" ","nationality":" ","state":" ","address":" ","dob":" 0000-00-00","lga":" ","email":" ca.x.ek.i.cuv.1.90@gmail.com","course":" ","status":" new","f_pay_status":" UNPAID","f_pay_amount":" ","reg_num":" ","campus":" Imeko","c_level":"100","passport":" default.jpg","level":"0","regdate":" 2026-02-21 00:09:11","send_status":"0","check_promoted":"0"}'),
('user','users','1199','INVALID_IDENTITY','Missing username or name.','{"id":"1199","user_id":" 58396741","username":" l.it.inolumes.e1.4@gmail.com","matric_id":" ","session":" ","firstname":" ","lastname":" ","middlename":" ","department":" ","programme":null,"gender":" ","phone":" ","occupation":" ","marital":" ","nationality":" ","state":" ","address":" ","dob":" 0000-00-00","lga":" ","email":" l.it.inolumes.e1.4@gmail.com","course":" ","status":" new","f_pay_status":" UNPAID","f_pay_amount":" ","reg_num":" ","campus":" Imeko","c_level":"100","passport":" default.jpg","level":"0","regdate":" 2026-02-21 13:43:50","send_status":"0","check_promoted":"0"}'),
('user','users','1200','INVALID_IDENTITY','Missing username or name.','{"id":"1200","user_id":" 35905632","username":" cu.k.a.j.am257@gmail.com","matric_id":" ","session":" ","firstname":" ","lastname":" ","middlename":" ","department":" ","programme":null,"gender":" ","phone":" ","occupation":" ","marital":" ","nationality":" ","state":" ","address":" ","dob":" 0000-00-00","lga":" ","email":" cu.k.a.j.am257@gmail.com","course":" ","status":" new","f_pay_status":" UNPAID","f_pay_amount":" ","reg_num":" ","campus":" Imeko","c_level":"100","passport":" default.jpg","level":"0","regdate":" 2026-02-21 15:40:55","send_status":"0","check_promoted":"0"}'),
('user','users','1201','INVALID_IDENTITY','Missing username or name.','{"id":"1201","user_id":" 29198839","username":" ak.ali.gewe.7.3@gmail.com","matric_id":" ","session":" ","firstname":" ","lastname":" ","middlename":" ","department":" ","programme":null,"gender":" ","phone":" ","occupation":" ","marital":" ","nationality":" ","state":" ","address":" ","dob":" 0000-00-00","lga":" ","email":" ak.ali.gewe.7.3@gmail.com","course":" ","status":" new","f_pay_status":" UNPAID","f_pay_amount":" ","reg_num":" ","campus":" Imeko","c_level":"100","passport":" default.jpg","level":"0","regdate":" 2026-02-22 19:14:58","send_status":"0","check_promoted":"0"}'),
('course','course_list','411','DUPLICATE_COURSE_CODE','Course code CHM101 has conflicting titles.','{}'),
('course','course_list','497','DUPLICATE_COURSE_CODE','Course code CHE213 has conflicting titles.','{}'),
('course','course_list','583','DUPLICATE_COURSE_CODE','Course code HIT111 has conflicting titles.','{}'),
('course','course_list','611','DUPLICATE_COURSE_CODE','Course code GNS102 has conflicting titles.','{}'),
('course','course_list','614','DUPLICATE_COURSE_CODE','Course code GNS213 has conflicting titles.','{}'),
('course','course_list','627','DUPLICATE_COURSE_CODE','Course code BCH111 has conflicting titles.','{}'),
('course','course_list','628','DUPLICATE_COURSE_CODE','Course code CHE116 has conflicting titles.','{}'),
('course','course_list','630','DUPLICATE_COURSE_CODE','Course code CHE112 has conflicting titles.','{}'),
('course','course_list','631','DUPLICATE_COURSE_CODE','Course code COM111 has conflicting titles.','{}'),
('course','course_list','632','DUPLICATE_COURSE_CODE','Course code GNS111 has conflicting titles.','{}'),
('course','course_list','648','DUPLICATE_COURSE_CODE','Course code CHE213 has conflicting titles.','{}'),
('course','course_list','652','DUPLICATE_COURSE_CODE','Course code CHE231 has conflicting titles.','{}'),
('course','course_list','656','DUPLICATE_COURSE_CODE','Course code GNS213 has conflicting titles.','{}'),
('course','course_list','671','DUPLICATE_COURSE_CODE','Course code EHT111 has conflicting titles.','{}'),
('course','course_list','672','DUPLICATE_COURSE_CODE','Course code BCH111 has conflicting titles.','{}'),
('course','course_list','673','DUPLICATE_COURSE_CODE','Course code CHE116 has conflicting titles.','{}'),
('course','course_list','675','DUPLICATE_COURSE_CODE','Course code CHE112 has conflicting titles.','{}'),
('course','course_list','676','DUPLICATE_COURSE_CODE','Course code COM101 has conflicting titles.','{}'),
('course','course_list','677','DUPLICATE_COURSE_CODE','Course code GNS111 has conflicting titles.','{}'),
('course','course_list','685','DUPLICATE_COURSE_CODE','Course code HET212 has conflicting titles.','{}'),
('course','course_list','687','DUPLICATE_COURSE_CODE','Course code CHE213 has conflicting titles.','{}'),
('course','course_list','692','DUPLICATE_COURSE_CODE','Course code DTH217 has conflicting titles.','{}'),
('course','course_list','705','DUPLICATE_COURSE_CODE','Course code GNS105 has conflicting titles.','{}'),
('course','course_list','714','DUPLICATE_COURSE_CODE','Course code GNS102 has conflicting titles.','{}'),
('course','course_list','717','DUPLICATE_COURSE_CODE','Course code MLT201 has conflicting titles.','{}'),
('course','course_list','719','DUPLICATE_COURSE_CODE','Course code CHE255 has conflicting titles.','{}'),
('course','course_list','720','DUPLICATE_COURSE_CODE','Course code HET221 has conflicting titles.','{}'),
('course','course_list','723','DUPLICATE_COURSE_CODE','Course code BIO101 has conflicting titles.','{}'),
('course','course_list','725','DUPLICATE_COURSE_CODE','Course code GNS101 has conflicting titles.','{}'),
('course','course_list','729','DUPLICATE_COURSE_CODE','Course code CHM101 has conflicting titles.','{}'),
('course','course_list','732','DUPLICATE_COURSE_CODE','Course code GHT103 has conflicting titles.','{}'),
('course','course_list','733','DUPLICATE_COURSE_CODE','Course code GST103 has conflicting titles.','{}'),
('course','course_list','735','DUPLICATE_COURSE_CODE','Course code GNS102 has conflicting titles.','{}'),
('course','course_list','738','DUPLICATE_COURSE_CODE','Course code HCP361 has conflicting titles.','{}'),
('course','course_list','741','DUPLICATE_COURSE_CODE','Course code AUM321 has conflicting titles.','{}'),
('course','course_list','742','DUPLICATE_COURSE_CODE','Course code ANA342 has conflicting titles.','{}'),
('course','course_list','746','DUPLICATE_COURSE_CODE','Course code STB102 has conflicting titles.','{}'),
('course','course_list','747','DUPLICATE_COURSE_CODE','Course code CHE212 has conflicting titles.','{}'),
('course','course_list','749','DUPLICATE_COURSE_CODE','Course code CHE311 has conflicting titles.','{}'),
('course','course_list','758','DUPLICATE_COURSE_CODE','Course code MLT201 has conflicting titles.','{}'),
('course','course_list','759','DUPLICATE_COURSE_CODE','Course code GNS222 has conflicting titles.','{}'),
('course','course_list','760','DUPLICATE_COURSE_CODE','Course code DST210 has conflicting titles.','{}'),
('course','course_list','761','DUPLICATE_COURSE_CODE','Course code GHT207 has conflicting titles.','{}'),
('course','course_list','762','DUPLICATE_COURSE_CODE','Course code COM203 has conflicting titles.','{}'),
('course','course_list','763','DUPLICATE_COURSE_CODE','Course code HET317 has conflicting titles.','{}'),
('course','course_list','765','DUPLICATE_COURSE_CODE','Course code PUB316 has conflicting titles.','{}'),
('course','course_list','766','DUPLICATE_COURSE_CODE','Course code PUB201 has conflicting titles.','{}'),
('course','course_list','767','DUPLICATE_COURSE_CODE','Course code HET315 has conflicting titles.','{}'),
('course','course_list','772','DUPLICATE_COURSE_CODE','Course code HET302 has conflicting titles.','{}'),
('course','course_list','774','DUPLICATE_COURSE_CODE','Course code MLT202 has conflicting titles.','{}'),
('course','course_list','776','DUPLICATE_COURSE_CODE','Course code MLT204 has conflicting titles.','{}'),
('course','course_list','777','DUPLICATE_COURSE_CODE','Course code MLT205 has conflicting titles.','{}'),
('course','course_list','783','DUPLICATE_COURSE_CODE','Course code CHE231 has conflicting titles.','{}'),
('course','course_list','784','DUPLICATE_COURSE_CODE','Course code HET221 has conflicting titles.','{}'),
('course','course_list','788','DUPLICATE_COURSE_CODE','Course code GHT132 has conflicting titles.','{}'),
('course','course_list','791','DUPLICATE_COURSE_CODE','Course code CHE125 has conflicting titles.','{}'),
('course','course_list','792','DUPLICATE_COURSE_CODE','Course code HET106 has conflicting titles.','{}'),
('course','course_list','793','DUPLICATE_COURSE_CODE','Course code CHE121 has conflicting titles.','{}'),
('course','course_list','794','DUPLICATE_COURSE_CODE','Course code HET101 has conflicting titles.','{}'),
('course','course_list','795','DUPLICATE_COURSE_CODE','Course code CHE146 has conflicting titles.','{}'),
('course','course_list','798','DUPLICATE_COURSE_CODE','Course code GNS121 has conflicting titles.','{}'),
('course','course_list','801','DUPLICATE_COURSE_CODE','Course code GNS222 has conflicting titles.','{}'),
('course','course_list','802','DUPLICATE_COURSE_CODE','Course code DST210 has conflicting titles.','{}'),
('course','course_list','804','DUPLICATE_COURSE_CODE','Course code GHT207 has conflicting titles.','{}'),
('course','course_list','805','DUPLICATE_COURSE_CODE','Course code COM203 has conflicting titles.','{}'),
('course','course_list','806','DUPLICATE_COURSE_CODE','Course code HET317 has conflicting titles.','{}'),
('course','course_list','807','DUPLICATE_COURSE_CODE','Course code PUB316 has conflicting titles.','{}'),
('course','course_list','808','DUPLICATE_COURSE_CODE','Course code HET315 has conflicting titles.','{}'),
('course','course_list','809','DUPLICATE_COURSE_CODE','Course code PUB312 has conflicting titles.','{}'),
('course','course_list','810','DUPLICATE_COURSE_CODE','Course code HET315 has conflicting titles.','{}'),
('course','course_list','813','DUPLICATE_COURSE_CODE','Course code PUB315 has conflicting titles.','{}'),
('course','course_list','814','DUPLICATE_COURSE_CODE','Course code MLT201 has conflicting titles.','{}'),
('course','result_semester','9316','COURSE_SYNTHESIZED','Course DST101 was absent from course_list.','{}'),
('course','result_semester','9317','COURSE_SYNTHESIZED','Course ACC111 was absent from course_list.','{}'),
('course','result_semester','9318','COURSE_SYNTHESIZED','Course ACC112 was absent from course_list.','{}'),
('course','result_semester','9319','COURSE_SYNTHESIZED','Course ACC113 was absent from course_list.','{}'),
('course','result_semester','9320','COURSE_SYNTHESIZED','Course ACC114 was absent from course_list.','{}'),
('course','result_semester','9321','COURSE_SYNTHESIZED','Course ACC115 was absent from course_list.','{}'),
('course','result_semester','9322','COURSE_SYNTHESIZED','Course COURSE9322 was absent from course_list.','{}'),
('course','result_semester','9323','COURSE_SYNTHESIZED','Course COURSE9323 was absent from course_list.','{}'),
('course','result_semester','9324','COURSE_SYNTHESIZED','Course COURSE9324 was absent from course_list.','{}'),
('course','result_semester','9325','COURSE_SYNTHESIZED','Course COURSE9325 was absent from course_list.','{}'),
('course','result_semester','9326','COURSE_SYNTHESIZED','Course COURSE9326 was absent from course_list.','{}'),
('course','result_semester','9327','COURSE_SYNTHESIZED','Course COURSE9327 was absent from course_list.','{}'),
('course','result_semester','9328','COURSE_SYNTHESIZED','Course COURSE9328 was absent from course_list.','{}'),
('course','result_semester','9329','COURSE_SYNTHESIZED','Course COURSE9329 was absent from course_list.','{}'),
('course','result_semester','9330','COURSE_SYNTHESIZED','Course COURSE9330 was absent from course_list.','{}'),
('course','result_semester','9331','COURSE_SYNTHESIZED','Course COURSE9331 was absent from course_list.','{}'),
('course','result_semester','9332','COURSE_SYNTHESIZED','Course COURSE9332 was absent from course_list.','{}'),
('course','course_reg','4629','COURSE_SYNTHESIZED','Course GNS411 was absent from course_list.','{}'),
('course','course_reg','4631','COURSE_SYNTHESIZED','Course FOT111 was absent from course_list.','{}'),
('course','course_reg','4817','COURSE_SYNTHESIZED','Course CHE221 was absent from course_list.','{}'),
('course','course_reg','4818','COURSE_SYNTHESIZED','Course CHE222 was absent from course_list.','{}'),
('course','course_reg','4821','COURSE_SYNTHESIZED','Course CHE224 was absent from course_list.','{}'),
('course','course_reg','4822','COURSE_SYNTHESIZED','Course CHE225 was absent from course_list.','{}'),
('course','course_reg','4823','COURSE_SYNTHESIZED','Course CHE226 was absent from course_list.','{}'),
('course','course_reg','4824','COURSE_SYNTHESIZED','Course CHE227 was absent from course_list.','{}'),
('course','course_reg','4858','COURSE_SYNTHESIZED','Course CHE251 was absent from course_list.','{}'),
('course','course_reg','4859','COURSE_SYNTHESIZED','Course CHE252 was absent from course_list.','{}'),
('course','course_reg','4861','COURSE_SYNTHESIZED','Course CHE253 was absent from course_list.','{}'),
('course','course_reg','4863','COURSE_SYNTHESIZED','Course CHE257 was absent from course_list.','{}'),
('course','course_reg','4864','COURSE_SYNTHESIZED','Course CHE258 was absent from course_list.','{}'),
('course','course_reg','4865','COURSE_SYNTHESIZED','Course CHE254 was absent from course_list.','{}'),
('course','course_reg','4866','COURSE_SYNTHESIZED','Course CHE261 was absent from course_list.','{}'),
('course','course_reg','4867','COURSE_SYNTHESIZED','Course CHE262 was absent from course_list.','{}'),
('course','course_reg','4868','COURSE_SYNTHESIZED','Course CHE263 was absent from course_list.','{}'),
('course','course_reg','5397','COURSE_SYNTHESIZED','Course CHE241 was absent from course_list.','{}'),
('course','course_reg','5399','COURSE_SYNTHESIZED','Course CHE243 was absent from course_list.','{}'),
('course','course_reg','5402','COURSE_SYNTHESIZED','Course CHE246 was absent from course_list.','{}'),
('course','course_reg','5403','COURSE_SYNTHESIZED','Course CHE247 was absent from course_list.','{}'),
('course','course_reg','5404','COURSE_SYNTHESIZED','Course CHE248 was absent from course_list.','{}'),
('course','course_reg','5405','COURSE_SYNTHESIZED','Course GNP123 was absent from course_list.','{}'),
('course','course_reg','5487','COURSE_SYNTHESIZED','Course CHE234 was absent from course_list.','{}'),
('course','course_reg','5489','COURSE_SYNTHESIZED','Course CHE236 was absent from course_list.','{}'),
('course','course_reg','5491','COURSE_SYNTHESIZED','Course CHE240 was absent from course_list.','{}'),
('course','course_reg','5493','COURSE_SYNTHESIZED','Course CHE238 was absent from course_list.','{}'),
('course','course_reg','5501','COURSE_SYNTHESIZED','Course EHT103 was absent from course_list.','{}'),
('course','course_reg','7664','COURSE_SYNTHESIZED','Course CHE237 was absent from course_list.','{}'),
('course','course_reg','11213','COURSE_SYNTHESIZED','Course 201 was absent from course_list.','{}'),
('course','course_reg','11915','COURSE_SYNTHESIZED','Course CHE2307 was absent from course_list.','{}'),
('registration','course_reg','5384','UNRESOLVED_REGISTRATION','Student, semester, or course offering could not be resolved.','{}'),
('registration','course_reg','5385','UNRESOLVED_REGISTRATION','Student, semester, or course offering could not be resolved.','{}'),
('registration','course_reg','5386','UNRESOLVED_REGISTRATION','Student, semester, or course offering could not be resolved.','{}'),
('registration','course_reg','5387','UNRESOLVED_REGISTRATION','Student, semester, or course offering could not be resolved.','{}'),
('registration','course_reg','8459','UNRESOLVED_REGISTRATION','Student, semester, or course offering could not be resolved.','{}'),
('registration','course_reg','8460','UNRESOLVED_REGISTRATION','Student, semester, or course offering could not be resolved.','{}'),
('registration','course_reg','8461','UNRESOLVED_REGISTRATION','Student, semester, or course offering could not be resolved.','{}'),
('registration','course_reg','8462','UNRESOLVED_REGISTRATION','Student, semester, or course offering could not be resolved.','{}'),
('registration','course_reg','8463','UNRESOLVED_REGISTRATION','Student, semester, or course offering could not be resolved.','{}'),
('registration','course_reg','8464','UNRESOLVED_REGISTRATION','Student, semester, or course offering could not be resolved.','{}'),
('registration','course_reg','8465','UNRESOLVED_REGISTRATION','Student, semester, or course offering could not be resolved.','{}'),
('registration','course_reg','8466','UNRESOLVED_REGISTRATION','Student, semester, or course offering could not be resolved.','{}'),
('registration','course_reg','8467','UNRESOLVED_REGISTRATION','Student, semester, or course offering could not be resolved.','{}'),
('registration','course_reg','8468','UNRESOLVED_REGISTRATION','Student, semester, or course offering could not be resolved.','{}'),
('registration','course_reg','8469','UNRESOLVED_REGISTRATION','Student, semester, or course offering could not be resolved.','{}'),
('registration','course_reg','8470','UNRESOLVED_REGISTRATION','Student, semester, or course offering could not be resolved.','{}'),
('registration','course_reg','8471','UNRESOLVED_REGISTRATION','Student, semester, or course offering could not be resolved.','{}'),
('registration','course_reg','12216','UNRESOLVED_REGISTRATION','Student, semester, or course offering could not be resolved.','{}'),
('registration','course_reg','12217','UNRESOLVED_REGISTRATION','Student, semester, or course offering could not be resolved.','{}'),
('registration','course_reg','12218','UNRESOLVED_REGISTRATION','Student, semester, or course offering could not be resolved.','{}'),
('registration','course_reg','12219','UNRESOLVED_REGISTRATION','Student, semester, or course offering could not be resolved.','{}'),
('registration','course_reg','12220','UNRESOLVED_REGISTRATION','Student, semester, or course offering could not be resolved.','{}'),
('registration','course_reg','12221','UNRESOLVED_REGISTRATION','Student, semester, or course offering could not be resolved.','{}'),
('registration','course_reg','12222','UNRESOLVED_REGISTRATION','Student, semester, or course offering could not be resolved.','{}'),
('registration','course_reg','12223','UNRESOLVED_REGISTRATION','Student, semester, or course offering could not be resolved.','{}'),
('registration','course_reg','12224','UNRESOLVED_REGISTRATION','Student, semester, or course offering could not be resolved.','{}'),
('registration','course_reg','12225','UNRESOLVED_REGISTRATION','Student, semester, or course offering could not be resolved.','{}'),
('registration','course_reg','12226','UNRESOLVED_REGISTRATION','Student, semester, or course offering could not be resolved.','{}'),
('registration','course_reg','12227','UNRESOLVED_REGISTRATION','Student, semester, or course offering could not be resolved.','{}'),
('registration','course_reg','12228','UNRESOLVED_REGISTRATION','Student, semester, or course offering could not be resolved.','{}'),
('registration','course_reg','12328','UNRESOLVED_REGISTRATION','Student, semester, or course offering could not be resolved.','{}'),
('registration','course_reg','12329','UNRESOLVED_REGISTRATION','Student, semester, or course offering could not be resolved.','{}'),
('registration','course_reg','12330','UNRESOLVED_REGISTRATION','Student, semester, or course offering could not be resolved.','{}'),
('registration','course_reg','12787','UNRESOLVED_REGISTRATION','Student, semester, or course offering could not be resolved.','{}'),
('registration','course_reg','12788','UNRESOLVED_REGISTRATION','Student, semester, or course offering could not be resolved.','{}'),
('registration','course_reg','12789','UNRESOLVED_REGISTRATION','Student, semester, or course offering could not be resolved.','{}'),
('registration','course_reg','12790','UNRESOLVED_REGISTRATION','Student, semester, or course offering could not be resolved.','{}'),
('registration','course_reg','12791','UNRESOLVED_REGISTRATION','Student, semester, or course offering could not be resolved.','{}'),
('registration','course_reg','12821','UNRESOLVED_REGISTRATION','Student, semester, or course offering could not be resolved.','{}'),
('registration','course_reg','12822','UNRESOLVED_REGISTRATION','Student, semester, or course offering could not be resolved.','{}'),
('registration','course_reg','12823','UNRESOLVED_REGISTRATION','Student, semester, or course offering could not be resolved.','{}'),
('registration','course_reg','12824','UNRESOLVED_REGISTRATION','Student, semester, or course offering could not be resolved.','{}'),
('registration','course_reg','12825','UNRESOLVED_REGISTRATION','Student, semester, or course offering could not be resolved.','{}'),
('registration','course_reg','12826','UNRESOLVED_REGISTRATION','Student, semester, or course offering could not be resolved.','{}'),
('registration','course_reg','13522','UNRESOLVED_REGISTRATION','Student, semester, or course offering could not be resolved.','{}'),
('result','course_reg','4634','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','4705','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','4810','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','4852','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','4891','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','4925','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','4960','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','4985','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','5010','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','5023','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','5079','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','5093','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','5099','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','5141','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','5185','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','5191','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','5268','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','5384','INVALID_RESULT','Student/course unresolved or score outside 0–100.','{"username":" ","course_code":" CHE 213","total":0}'),
('result','course_reg','5385','INVALID_RESULT','Student/course unresolved or score outside 0–100.','{"username":" ","course_code":" CHE 235","total":0}'),
('result','course_reg','5386','INVALID_RESULT','Student/course unresolved or score outside 0–100.','{"username":" ","course_code":" GUT 214","total":0}'),
('result','course_reg','5387','INVALID_RESULT','Student/course unresolved or score outside 0–100.','{"username":" ","course_code":" CHE 233","total":0}'),
('result','course_reg','5428','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','5473','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','5566','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','5573','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','5583','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','5618','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','5630','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','5642','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','5654','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','5679','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','5701','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','5723','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','5784','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','5825','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','5881','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','5897','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','5940','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','5964','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','5977','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','6024','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','6068','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','6413','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','6470','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','6640','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','6876','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','6885','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','7140','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','7441','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','7648','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','7988','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','8042','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','8376','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','8459','INVALID_RESULT','Student/course unresolved or score outside 0–100.','{"username":" admin@unicohstech.org","course_code":" DTH 217","total":0}'),
('result','course_reg','8460','INVALID_RESULT','Student/course unresolved or score outside 0–100.','{"username":" admin@unicohstech.org","course_code":" GHT 311","total":0}'),
('result','course_reg','8461','INVALID_RESULT','Student/course unresolved or score outside 0–100.','{"username":" admin@unicohstech.org","course_code":" DTH 217","total":0}'),
('result','course_reg','8462','INVALID_RESULT','Student/course unresolved or score outside 0–100.','{"username":" admin@unicohstech.org","course_code":" HIM 212","total":0}'),
('result','course_reg','8463','INVALID_RESULT','Student/course unresolved or score outside 0–100.','{"username":" admin@unicohstech.org","course_code":" EHT 214","total":0}'),
('result','course_reg','8464','INVALID_RESULT','Student/course unresolved or score outside 0–100.','{"username":" admin@unicohstech.org","course_code":" EHT 214","total":0}'),
('result','course_reg','8465','INVALID_RESULT','Student/course unresolved or score outside 0–100.','{"username":" admin@unicohstech.org","course_code":" HIM 212","total":0}'),
('result','course_reg','8466','INVALID_RESULT','Student/course unresolved or score outside 0–100.','{"username":" admin@unicohstech.org","course_code":" GHT 311","total":0}');
INSERT INTO `migration_issues` (`entity_type`,`legacy_table`,`legacy_id`,`issue_code`,`message`,`legacy_payload`) VALUES
('result','course_reg','8467','INVALID_RESULT','Student/course unresolved or score outside 0–100.','{"username":" admin@unicohstech.org","course_code":" DTH 217","total":0}'),
('result','course_reg','8468','INVALID_RESULT','Student/course unresolved or score outside 0–100.','{"username":" admin@unicohstech.org","course_code":" DTH 217","total":0}'),
('result','course_reg','8469','INVALID_RESULT','Student/course unresolved or score outside 0–100.','{"username":" admin@unicohstech.org","course_code":" DTH 217","total":0}'),
('result','course_reg','8470','INVALID_RESULT','Student/course unresolved or score outside 0–100.','{"username":" admin@unicohstech.org","course_code":" DTH 217","total":0}'),
('result','course_reg','8471','INVALID_RESULT','Student/course unresolved or score outside 0–100.','{"username":" admin@unicohstech.org","course_code":" DTH 217","total":0}'),
('result','course_reg','8481','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','9344','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','10115','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','10116','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','10131','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','10238','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','10239','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','10483','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','10549','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','10550','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','10561','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','10570','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','10579','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','10588','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','10679','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','10690','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','10813','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','10845','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','11088','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','11285','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','11492','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','11506','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','11541','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','11549','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','11557','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','11580','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','11705','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','11708','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','11755','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','11886','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','11894','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','11902','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','11913','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','11961','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','11962','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','12011','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','12055','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','12216','INVALID_RESULT','Student/course unresolved or score outside 0–100.','{"username":" CHEW/UN/250212","course_code":" GNS 101","total":0}'),
('result','course_reg','12217','INVALID_RESULT','Student/course unresolved or score outside 0–100.','{"username":" CHEW/UN/250212","course_code":" CHE 101","total":0}'),
('result','course_reg','12218','INVALID_RESULT','Student/course unresolved or score outside 0–100.','{"username":" CHEW/UN/250212","course_code":" CHE 103","total":0}'),
('result','course_reg','12219','INVALID_RESULT','Student/course unresolved or score outside 0–100.','{"username":" CHEW/UN/250212","course_code":" CHE 105","total":0}'),
('result','course_reg','12220','INVALID_RESULT','Student/course unresolved or score outside 0–100.','{"username":" CHEW/UN/250212","course_code":" GNS103","total":0}'),
('result','course_reg','12221','INVALID_RESULT','Student/course unresolved or score outside 0–100.','{"username":" CHEW/UN/250212","course_code":" CHE107","total":0}'),
('result','course_reg','12222','INVALID_RESULT','Student/course unresolved or score outside 0–100.','{"username":" CHEW/UN/250212","course_code":" GNS 105","total":0}'),
('result','course_reg','12223','INVALID_RESULT','Student/course unresolved or score outside 0–100.','{"username":" CHEW/UN/250212","course_code":" EHT101","total":0}'),
('result','course_reg','12224','INVALID_RESULT','Student/course unresolved or score outside 0–100.','{"username":" CHEW/UN/250212","course_code":" FOT 101","total":0}'),
('result','course_reg','12225','INVALID_RESULT','Student/course unresolved or score outside 0–100.','{"username":" CHEW/UN/250212","course_code":" COM 101","total":0}'),
('result','course_reg','12226','INVALID_RESULT','Student/course unresolved or score outside 0–100.','{"username":" CHEW/UN/250212","course_code":" GNS 107","total":0}'),
('result','course_reg','12227','INVALID_RESULT','Student/course unresolved or score outside 0–100.','{"username":" CHEW/UN/250212","course_code":" CHE 109","total":0}'),
('result','course_reg','12228','INVALID_RESULT','Student/course unresolved or score outside 0–100.','{"username":" CHEW/UN/250212","course_code":" BCH 101","total":0}'),
('result','course_reg','12273','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','12307','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','12328','INVALID_RESULT','Student/course unresolved or score outside 0–100.','{"username":" ","course_code":" CHE 301","total":0}'),
('result','course_reg','12329','INVALID_RESULT','Student/course unresolved or score outside 0–100.','{"username":" ","course_code":" CHE303","total":0}'),
('result','course_reg','12330','INVALID_RESULT','Student/course unresolved or score outside 0–100.','{"username":" ","course_code":" CHE 301","total":0}'),
('result','course_reg','12360','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','12532','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','12535','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','12550','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','12586','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','12785','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','12787','INVALID_RESULT','Student/course unresolved or score outside 0–100.','{"username":" admin@unicohstech.org","course_code":" COM 203","total":0}'),
('result','course_reg','12788','INVALID_RESULT','Student/course unresolved or score outside 0–100.','{"username":" admin@unicohstech.org","course_code":" GHT 207","total":0}'),
('result','course_reg','12789','INVALID_RESULT','Student/course unresolved or score outside 0–100.','{"username":" admin@unicohstech.org","course_code":" EHT 203","total":0}'),
('result','course_reg','12790','INVALID_RESULT','Student/course unresolved or score outside 0–100.','{"username":" admin@unicohstech.org","course_code":" GNS 222","total":0}'),
('result','course_reg','12791','INVALID_RESULT','Student/course unresolved or score outside 0–100.','{"username":" admin@unicohstech.org","course_code":" DST 210","total":0}'),
('result','course_reg','12821','INVALID_RESULT','Student/course unresolved or score outside 0–100.','{"username":" ","course_code":" DST 210","total":0}'),
('result','course_reg','12822','INVALID_RESULT','Student/course unresolved or score outside 0–100.','{"username":" ","course_code":" DST 210","total":0}'),
('result','course_reg','12823','INVALID_RESULT','Student/course unresolved or score outside 0–100.','{"username":" ","course_code":" DST 210","total":0}'),
('result','course_reg','12824','INVALID_RESULT','Student/course unresolved or score outside 0–100.','{"username":" ","course_code":" DST 210","total":0}'),
('result','course_reg','12825','INVALID_RESULT','Student/course unresolved or score outside 0–100.','{"username":" ","course_code":" DST 210","total":0}'),
('result','course_reg','12826','INVALID_RESULT','Student/course unresolved or score outside 0–100.','{"username":" ","course_code":" DST 210","total":0}'),
('result','course_reg','13238','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','13356','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','13522','INVALID_RESULT','Student/course unresolved or score outside 0–100.','{"username":" lamidikehinde5369@gmail.com","course_code":" CHE213","total":0}'),
('result','course_reg','13727','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','13985','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','14250','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','14273','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','14302','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','14702','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','14836','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('result','course_reg','15201','DUPLICATE_RESULT','Lower-priority course_reg result skipped.','{}'),
('payment','form_payment','646','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','form_payment','647','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','form_payment','648','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','form_payment','649','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','form_payment','650','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','form_payment','651','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','form_payment','652','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','form_payment','653','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','form_payment','654','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','form_payment','655','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','form_payment','656','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','form_payment','657','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','form_payment','658','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','form_payment','659','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','form_payment','660','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','form_payment','661','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','form_payment','662','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','form_payment','663','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','form_payment','664','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','form_payment','665','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','form_payment','666','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','form_payment','667','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','form_payment','668','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','form_payment','669','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','form_payment','670','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','form_payment','671','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','form_payment','672','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','form_payment','673','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','form_payment','674','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','form_payment','675','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','form_payment','676','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','form_payment','677','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','form_payment','678','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','form_payment','679','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','form_payment','680','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','form_payment','681','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','form_payment','682','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','form_payment','683','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','form_payment','684','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','form_payment','685','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','form_payment','686','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','form_payment','687','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','form_payment','688','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','form_payment','689','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','form_payment','690','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1532','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1533','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1534','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1535','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1536','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1537','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1538','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1539','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1540','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1541','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1542','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1543','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1544','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1545','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1546','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1547','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1548','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1549','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1550','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1551','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1552','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1553','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1554','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1555','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1556','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1557','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1558','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1559','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1560','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1561','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1562','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1563','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1564','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1565','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1566','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1567','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1568','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1569','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1570','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1571','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1572','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1573','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1574','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1575','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1576','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1577','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1578','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1579','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1580','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1581','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1582','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1583','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1584','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1585','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1586','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1587','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1588','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1589','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1590','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1591','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1592','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1593','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1594','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1595','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1596','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1597','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1598','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1599','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1600','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1601','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1602','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1603','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1604','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1605','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1606','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1607','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1608','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1609','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1610','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1611','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1612','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1613','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1614','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1615','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1616','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1617','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1618','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1619','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1620','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1621','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1622','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1623','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1624','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1625','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1626','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1627','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1628','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1629','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1630','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1631','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1632','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1633','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1634','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1635','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1636','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1637','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1638','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1639','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1640','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1641','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1642','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1643','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1644','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1645','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1646','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1647','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1648','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}');
INSERT INTO `migration_issues` (`entity_type`,`legacy_table`,`legacy_id`,`issue_code`,`message`,`legacy_payload`) VALUES
('payment','school_fee','1649','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1650','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1651','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1652','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1653','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1654','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1655','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1656','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1657','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1658','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1659','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1660','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1661','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1662','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1663','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1664','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1665','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1666','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1667','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1668','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1669','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1670','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1671','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1672','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1673','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1674','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1675','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1676','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1677','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1678','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1679','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1680','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1681','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1682','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1683','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1684','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1685','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1686','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1687','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1688','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1689','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1690','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1691','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1692','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1693','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1694','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1695','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1696','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1697','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1698','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1699','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1700','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1701','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1702','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1703','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1704','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1705','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1706','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1707','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1708','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1709','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1710','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1711','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1712','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1713','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1714','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1715','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1716','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1717','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1718','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1719','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1720','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1721','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1722','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1723','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1724','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1725','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1726','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1727','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1728','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1729','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1730','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1731','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1732','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1733','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1734','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1735','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1736','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1737','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1738','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1739','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1740','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1741','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1742','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1743','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1744','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1745','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1746','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1747','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1748','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1749','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1750','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1751','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1752','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1753','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1754','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1755','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1756','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1757','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1758','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1759','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1760','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1761','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1762','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1763','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1764','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1765','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1766','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1767','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1768','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1769','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1770','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1771','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1772','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1773','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1774','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1775','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1776','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1777','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1778','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1779','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1780','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1781','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1782','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1783','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1784','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1785','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1786','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1787','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1788','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1789','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1790','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1791','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1792','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1793','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1794','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1795','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1796','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1797','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1798','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1799','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1800','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1801','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1802','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1803','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1804','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1805','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1806','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1807','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1808','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1809','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1810','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1811','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1812','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1813','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1814','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1815','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1816','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1817','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1818','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1819','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1820','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1821','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1822','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1823','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1824','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1825','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1826','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1827','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1828','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1829','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1830','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1831','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1832','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1833','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1834','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1835','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1836','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1837','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1838','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1839','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1840','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1841','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1842','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1843','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1844','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1845','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1846','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1847','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1848','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1849','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1850','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1851','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1852','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1853','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1854','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1855','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1856','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1857','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1858','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1859','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1860','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1861','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1862','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1863','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1864','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1865','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1866','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1867','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1868','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1869','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1870','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1871','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1872','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1873','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1874','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1875','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1876','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1877','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1878','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1879','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1880','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1881','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1882','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1883','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1884','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1885','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1886','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1887','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1888','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1889','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1890','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1891','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1892','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1893','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1894','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1895','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1896','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1897','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1898','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}');
INSERT INTO `migration_issues` (`entity_type`,`legacy_table`,`legacy_id`,`issue_code`,`message`,`legacy_payload`) VALUES
('payment','school_fee','1899','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1900','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1901','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1902','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1903','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1904','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1905','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1906','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1907','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1908','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1909','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1910','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1911','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1912','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1913','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1914','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1915','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1916','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1917','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1918','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1919','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1920','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1921','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1922','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1923','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1924','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1925','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1926','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1927','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1928','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1929','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1930','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1931','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1932','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1933','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1934','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1935','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1936','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1937','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1938','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1939','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1940','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1941','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1942','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1943','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1944','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1945','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1946','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1947','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1948','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1949','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1950','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1951','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1952','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1953','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1954','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1955','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1956','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1957','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1958','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1959','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1960','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1961','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1962','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1963','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1964','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1965','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1966','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1967','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1968','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1969','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1970','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1971','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1972','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1973','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1974','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1975','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1976','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1977','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1978','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1979','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1980','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1981','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1982','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1983','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1984','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1985','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1986','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1987','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1988','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1989','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1990','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1991','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1992','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1993','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1994','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1995','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1996','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1997','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1998','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','1999','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2000','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2001','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2002','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2003','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2004','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2005','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2006','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2007','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2008','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2009','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2010','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2011','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2012','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2013','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2014','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2015','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2016','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2017','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2018','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2019','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2020','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2021','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2022','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2023','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2024','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2025','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2026','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2027','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2028','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2029','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2030','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2031','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2032','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2033','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2034','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2035','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2036','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2037','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2038','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2039','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2040','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2041','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2042','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2043','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2044','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2045','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2046','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2047','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2048','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2049','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2050','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2051','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2052','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2053','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2054','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2055','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2056','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2057','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2058','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2059','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2060','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2061','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2062','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2063','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2064','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2065','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2066','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2067','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2068','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2069','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2070','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2071','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2072','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2073','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2074','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2075','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2076','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2077','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2078','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2079','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2080','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2081','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2082','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2083','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2084','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2085','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2086','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2087','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2088','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2089','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2090','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2091','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2092','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2093','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2094','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2095','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2096','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2097','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2098','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2099','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2100','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2101','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2102','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2103','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}'),
('payment','school_fee','2104','UNCONFIRMED_PAYMENT','Payment status was not confirmed.','{"status":" UNPAID"}');

COMMIT;
SET FOREIGN_KEY_CHECKS=1;
