├── .gitignore ├── controllers ├── Departments.js ├── Courses.js ├── Schedules.js ├── DepartmentsService.js ├── CoursesService.js └── SchedulesService.js ├── readme.md ├── package.json ├── LICENSE.md ├── index.js ├── mysql_config.example.js ├── test └── tests.js ├── api └── swagger.json ├── schedule_functions.js ├── schema.sql └── test-data.sql /.gitignore: -------------------------------------------------------------------------------- 1 | # Dependencies 2 | node_modules/ 3 | 4 | #DB config 5 | mysql_config.js 6 | 7 | # Logs 8 | npm-debug.log -------------------------------------------------------------------------------- /controllers/Departments.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var url = require('url'); 4 | var async = require('async'); 5 | 6 | var Departments = require('./DepartmentsService'); 7 | 8 | 9 | module.exports.departmentsGet = function departmentsGet (req, res, next) { 10 | async.series([ 11 | function(callback){ 12 | Departments.departmentsGet(callback); 13 | }], 14 | function(err, result){ 15 | if(typeof result !== 'undefined') { 16 | res.setHeader('Access-Control-Allow-Origin', '*'); 17 | res.setHeader('Content-Type', 'application/json'); 18 | res.end(JSON.stringify(result[0] || {}, null, 2)); 19 | } 20 | else{ 21 | res.end(); 22 | } 23 | }); 24 | }; 25 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | ## Installation 2 | - Install Dependencies ```npm install``` 3 | - Create Test Database 4 | - Create Production Database 5 | - Rename and configure ```mysql_config.example.js``` to ```mysql_config.js``` 6 | - Execute/Import ```schema.sql ``` on each database connection 7 | 8 | #### Run Tests 9 | - Execute/Import ```test-data.sql ``` on the test database connection 10 | - ```./node_modules/mocha/bin/mocha``` 11 | 12 | #### Run the Express API server 13 | - Create Production database 14 | - ```node index.js``` 15 | - Help: ```node main.js --help``` 16 | 17 | ## Related Apps 18 | - https://github.com/kyleladd/MSCschedulizer_scraper 19 | - https://github.com/kyleladd/MSCschedulizer_api_swagger 20 | - https://github.com/kyleladd/MSCschedulizer_FrontEnd 21 | -------------------------------------------------------------------------------- /controllers/Courses.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var url = require('url'); 4 | var async = require('async'); 5 | 6 | var Courses = require('./CoursesService'); 7 | 8 | 9 | module.exports.coursesGet = function coursesGet (req, res, next) { 10 | var id = req.swagger.params['id'].value; 11 | var departmentId = req.swagger.params['department_id'].value; 12 | 13 | async.series([ 14 | function(callback){ 15 | Courses.coursesGet(id, departmentId,callback); 16 | }], 17 | function(err, result){ 18 | if(typeof result !== 'undefined') { 19 | res.setHeader('Access-Control-Allow-Origin', '*'); 20 | res.setHeader('Content-Type', 'application/json'); 21 | res.end(JSON.stringify(result[0] || {}, null, 2)); 22 | } 23 | else 24 | res.end(); 25 | }); 26 | }; 27 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "MSCschedulizer_api_swagger", 3 | "version": "1.0.0", 4 | "description": "API to generate class schedules for MSCschedulizer", 5 | "main": "index.js", 6 | "keywords": [ 7 | "swagger" 8 | ], 9 | "license": "MIT", 10 | "private": true, 11 | "dependencies": { 12 | "connect": "^3.2.0", 13 | "swagger-tools": "0.8.*", 14 | "node-mysql-nesting": "latest", 15 | "mysql": "latest", 16 | "async" : "latest", 17 | "node_generic_functions":"https://github.com/kyleladd/node_generic_functions.git", 18 | "js-combinatorics":"latest", 19 | "util":"latest" 20 | }, 21 | "devDependencies": { 22 | "mocha" : "latest", 23 | "expect.js":"latest", 24 | "chai":"latest", 25 | "chai-spies":"latest", 26 | "sinon":"latest", 27 | "sinon-chai":"latest", 28 | "supertest":"latest" 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /controllers/Schedules.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var url = require('url'); 4 | var async = require('async'); 5 | 6 | var Schedules = require('./SchedulesService'); 7 | 8 | 9 | module.exports.scheduleGet = function scheduleGet (req, res, next) { 10 | async.series([ 11 | function(callback){ 12 | var courses = req.swagger.params['courses'].originalValue; 13 | // console.log(req.swagger.params['courses']); 14 | // ?courses[]=1&courses[]=2&courses[]=3 15 | // ?courses=1&courses=2&courses=3 16 | // .value does not allow a list 17 | Schedules.scheduleGet(courses,callback); 18 | }], 19 | function(err, result){ 20 | if(typeof result !== 'undefined') { 21 | res.setHeader('Access-Control-Allow-Origin', '*'); 22 | res.setHeader('Content-Type', 'application/json'); 23 | res.end(JSON.stringify(result[0] || {}, null, 2)); 24 | } 25 | else{ 26 | res.end(); 27 | } 28 | }); 29 | }; 30 | -------------------------------------------------------------------------------- /controllers/DepartmentsService.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var mysql = require('mysql'); 3 | var mysqlnesting = require('node-mysql-nesting'); 4 | var mysql_config = require('../mysql_config.js'); 5 | 6 | var mysqlConnection = mysql_config.connectToDatabase(); 7 | 8 | exports.departmentsGet = function(callback) { 9 | var sql = 'SELECT * FROM departments'; 10 | //Key relations require the column names to be the same, primary and foreign key 11 | // var nestingOptions = [ 12 | // { tableName : 'departments', pkey: 'id'}, 13 | // ]; 14 | 15 | mysqlConnection.query({sql: sql, nestTables: false}, function (err, rows) { 16 | // error handling 17 | if (err){ 18 | console.log('Internal error: ', err); 19 | return "Mysql query execution error!"; 20 | } 21 | 22 | else { 23 | // var nestedRows = mysqlnesting.convertToNested(rows, nestingOptions); 24 | callback(null,rows); 25 | } 26 | }); 27 | } -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016 Kyle Ladd 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var app = require('connect')(); 4 | var http = require('http'); 5 | var swaggerTools = require('swagger-tools'); 6 | var server; 7 | var serverPort = 8014; 8 | 9 | // swaggerRouter configuration 10 | var options = { 11 | swaggerUi: '/swagger.json', 12 | controllers: './controllers', 13 | useStubs: process.env.NODE_ENV === 'development' ? true : false // Conditionally turn on stubs (mock mode) 14 | }; 15 | 16 | // The Swagger document (require it, build it programmatically, fetch it from a URL, ...) 17 | var swaggerDoc = require('./api/swagger.json'); 18 | 19 | // Initialize the Swagger middleware 20 | swaggerTools.initializeMiddleware(swaggerDoc, function (middleware) { 21 | // Interpret Swagger resources and attach metadata to request - must be first in swagger-tools middleware chain 22 | app.use(middleware.swaggerMetadata()); 23 | 24 | // Validate Swagger requests 25 | app.use(middleware.swaggerValidator()); 26 | 27 | // Route validated requests to appropriate controller 28 | app.use(middleware.swaggerRouter(options)); 29 | 30 | // Serve the Swagger documents and Swagger UI 31 | app.use(middleware.swaggerUi()); 32 | 33 | // Start the server 34 | server = http.createServer(app).listen(serverPort, function () { 35 | console.log('Your server is listening on port %d (http://localhost:%d)', serverPort, serverPort); 36 | console.log('Swagger-ui is available on http://localhost:%d/docs', serverPort); 37 | }); 38 | }); 39 | 40 | module.exports = server; -------------------------------------------------------------------------------- /controllers/CoursesService.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var mysql = require('mysql'); 3 | var mysqlnesting = require('node-mysql-nesting'); 4 | var mysql_config = require('../mysql_config.js'); 5 | 6 | var mysqlConnection = mysql_config.connectToDatabase(); 7 | 8 | exports.coursesGet = function(id, departmentId,callback) { 9 | var sql = 'SELECT * FROM courses LEFT JOIN departments ON departments.id = courses.department_id'; 10 | if(!isNaN(id)){ 11 | sql = 'SELECT * FROM courses LEFT JOIN departments ON departments.id = courses.department_id WHERE courses.id='+id; 12 | } 13 | else if(!isNaN(departmentId)){ 14 | sql = 'SELECT * FROM courses LEFT JOIN departments ON departments.id = courses.department_id WHERE departments.id='+departmentId+' ORDER BY courseNumber ASC'; 15 | } 16 | //Key relations require the column names to be the same, primary and foreign key 17 | var nestingOptions = [ 18 | { tableName : 'courses', pkey: 'id', fkeys:[{table:'departments',col:'department_id'}]}, 19 | { tableName : 'departments', pkey: 'id'}, 20 | ]; 21 | 22 | mysqlConnection.query({sql: sql, nestTables: true}, function (err, rows) { 23 | // error handling 24 | if (err){ 25 | console.log('Internal error: ', err); 26 | return "Mysql query execution error!"; 27 | } 28 | 29 | else { 30 | var nestedRows = mysqlnesting.convertToNested(rows, nestingOptions); 31 | callback(null,nestedRows); 32 | } 33 | }); 34 | } 35 | -------------------------------------------------------------------------------- /mysql_config.example.js: -------------------------------------------------------------------------------- 1 | var genericfunctions = require('node_generic_functions'); 2 | var mysql = require('mysql'); 3 | var mySQLConfiguration = function (isTest) { 4 | if(genericfunctions.toBoolean(isTest)===true){ 5 | return { 6 | host:"", 7 | database:"", 8 | user: "", 9 | password: "" 10 | }; 11 | } 12 | return { 13 | host:"", 14 | database:"", 15 | user: "", 16 | password: "" 17 | }; 18 | }; 19 | 20 | var connectToDatabase = function(isTest) { 21 | var mysqlConnection = mysql.createConnection(mySQLConfiguration(isTest)); // Recreate the connection, since 22 | // the old one cannot be reused. 23 | mysqlConnection.connect(function(err) { // The server is either down 24 | if(err) { // or restarting (takes a while sometimes). 25 | console.log('error when connecting to db:', err); 26 | setTimeout(connectToDatabase(isTest), 2000); // We introduce a delay before attempting to reconnect, 27 | } // to avoid a hot loop, and to allow our node script to 28 | }); // process asynchronous requests in the meantime. 29 | // If you're also serving http, display a 503 error. 30 | mysqlConnection.on('error', function(err) { 31 | console.log('db error', err); 32 | if(err.code === 'PROTOCOL_CONNECTION_LOST') { // Connection to the MySQL server is usually 33 | connectToDatabase(isTest); // lost due to either server restart, or a 34 | } else { // connnection idle timeout (the wait_timeout 35 | throw err; // server variable configures this) 36 | } 37 | }); 38 | return mysqlConnection; 39 | }; 40 | module.exports = { 41 | mySQLConfiguration:mySQLConfiguration, 42 | connectToDatabase:connectToDatabase 43 | }; -------------------------------------------------------------------------------- /test/tests.js: -------------------------------------------------------------------------------- 1 | // var exec = require('child_process').exec; 2 | var request = require('supertest'); 3 | var server; 4 | var mysql_config = require('../mysql_config.js'); 5 | var chai = require('chai'); 6 | var sinon = require("sinon"); 7 | var sinonChai = require("sinon-chai"); 8 | chai.should(); 9 | chai.use(sinonChai); 10 | describe('loading express', function () { 11 | // before(function() { 12 | // // runs before all tests in this block 13 | // exec("node ../mscschedulizer_scraper/main.js --db true", function(error, stdout, stderr) { 14 | // // command output is in stdout 15 | // }); 16 | // }); 17 | beforeEach(function () { 18 | delete require.cache[require.resolve('../index')]; 19 | mysql_config.mySQLConfiguration = sinon.stub().returns(mysql_config.mySQLConfiguration(true)); 20 | server = require('../index'); 21 | }); 22 | afterEach(function () { 23 | server.close(function () { console.log('Server closed!'); }); 24 | }); 25 | it('responds to /departments', function testSlash(done) { 26 | request(server) 27 | .get('/v1/departments') 28 | .set('Accept', 'application/json') 29 | .expect(200, done); 30 | // .expect(200,[], done); 31 | }); 32 | it('responds to /courses', function testSlash(done) { 33 | request(server) 34 | .get('/v1/courses') 35 | .set('Accept', 'application/json') 36 | .expect(200, done); 37 | }); 38 | it('500 to /schedule', function testSlash(done) { 39 | request(server) 40 | .get('/v1/schedule') 41 | .set('Accept', 'application/json') 42 | .expect(400, done); 43 | }); 44 | it('responds to /schedule/ with courses and brackets', function testSlash(done) { 45 | request(server) 46 | .get('/v1/schedule/?courses[]=1&courses[]=2&courses[]=3') 47 | .set('Accept', 'application/json') 48 | .expect(200, done); 49 | }); 50 | it('responds to /schedule/ with courses and without brackets', function testSlash(done) { 51 | request(server) 52 | .get('/v1/schedule/?courses=1&courses=2&courses=3') 53 | .set('Accept', 'application/json') 54 | .expect(200, done); 55 | }); 56 | it('404 everything else', function testPath(done) { 57 | request(server) 58 | .get('/foo/bar') 59 | .set('Accept', 'application/json') 60 | .expect(404, done); 61 | }); 62 | }); -------------------------------------------------------------------------------- /controllers/SchedulesService.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var mysql = require('mysql'); 3 | var mysqlnesting = require('node-mysql-nesting'); 4 | var mysql_config = require('../mysql_config.js'); 5 | var genericfunctions = require('node_generic_functions'); 6 | var schedule = require('../schedule_functions.js'); 7 | var util = require('util'); 8 | 9 | var mysqlConnection = mysql_config.connectToDatabase(); 10 | 11 | exports.scheduleGet = function(courses, callback) { 12 | var sectionCombinations = []; 13 | var courseslist = []; 14 | var outputCombinations = []; 15 | if(typeof courses != 'undefined'){ 16 | // Any more than 20 courses selected is ridiculous 17 | if(courses.length > 20){ 18 | courses = []; 19 | } 20 | } 21 | var sql = 'SELECT * FROM courses ' 22 | + 'LEFT JOIN course_sections ON course_sections.course_id = courses.id ' 23 | + 'LEFT JOIN departments ON departments.id = courses.department_id ' 24 | + 'LEFT JOIN course_terms ON course_sections.courseterm_id = course_terms.id ' 25 | + 'LEFT JOIN meetings ON course_sections.id = meetings.coursesection_id ' 26 | + 'LEFT JOIN required_identifiers ON course_sections.id = required_identifiers.section_id ' 27 | + 'LEFT JOIN term_weeks ON course_sections.courseterm_id = term_weeks.term_id '; 28 | if(typeof courses != 'undefined'){ 29 | if(courses.length != 0){ 30 | sql += 'WHERE courses.id IN (' + courses.join(',') + ')'; 31 | } 32 | } 33 | //Key relations require the column names to be the same, primary and foreign key 34 | var nestingOptions = [ 35 | { tableName : 'courses', pkey: 'id', fkeys:[{table:'departments',col:'department_id'}]}, 36 | { tableName : 'course_sections', pkey: 'id', fkeys:[{table:'courses',col:'course_id'},{table:'course_terms',col:'courseterm_id'}]}, 37 | { tableName : 'departments', pkey: 'id'}, 38 | { tableName : 'course_terms', pkey: 'id'}, 39 | { tableName : 'meetings', pkey: 'id', fkeys:[{table:'course_sections',col:'coursesection_id'}]}, 40 | { tableName : 'required_identifiers', pkey: 'id', fkeys:[{table:'course_sections',col:'section_id'}]}, 41 | { tableName : 'term_weeks', pkey: 'id', fkeys:[{table:'course_terms',col:'term_id'}]} 42 | ]; 43 | 44 | mysqlConnection.query({sql: sql, nestTables: true}, function (err, rows) { 45 | // error handling 46 | if (err){ 47 | console.log('Internal error: ', err); 48 | return "Mysql query execution error!"; 49 | } 50 | else { 51 | var nestedRows = mysqlnesting.convertToNested(rows, nestingOptions); 52 | for (var i in nestedRows) { 53 | var course = nestedRows[i]; 54 | var aSectionCombination = schedule.getSectionCombinations(course.course_sections); 55 | sectionCombinations.push(aSectionCombination); 56 | courseslist.push({id:course.id,name:course.name,courseNumber:course.courseNumber,department:course.departments}); 57 | } 58 | var scheduleCombinations = schedule.getScheduleCombinations(sectionCombinations); 59 | // For each schedule 60 | for (var h = scheduleCombinations.length-1; h >= 0; h--) { 61 | outputCombinations[h] = []; 62 | //for each class in the schedule 63 | for (var c = scheduleCombinations[h].length-1; c >= 0; c--) { 64 | var coursekey = genericfunctions.searchListDictionaries(courseslist,{id:scheduleCombinations[h][c][0].course_id}); 65 | // Deep copy around ByRef 66 | outputCombinations[h][c] = JSON.parse(JSON.stringify(coursekey)); 67 | outputCombinations[h][c].course_sections = JSON.parse(JSON.stringify(scheduleCombinations[h][c])); 68 | } 69 | } 70 | callback(null,outputCombinations); 71 | } 72 | }); 73 | } -------------------------------------------------------------------------------- /api/swagger.json: -------------------------------------------------------------------------------- 1 | { 2 | "swagger": "2.0", 3 | "info": { 4 | "title": "MSCschedulizer API", 5 | "description": "Generate class schedules with MSCschedulizer", 6 | "version": "1.0.0" 7 | }, 8 | "produces": ["application/json"], 9 | "host": "localhost:8014", 10 | "basePath": "/v1", 11 | "paths": { 12 | 13 | "/schedule": { 14 | 15 | "get": { 16 | "summary": "Get the valid schedule combinations or show information for a schedule.", 17 | "description":"The Schedule endpoint returns all valid schedule combinations or shows information for a schedule", 18 | "x-swagger-router-controller": "Schedules", 19 | "tags": ["Schedules"], 20 | "operationId": "scheduleGet", 21 | "parameters": [ 22 | { 23 | "name" : "courses", 24 | "in" : "query", 25 | "description" : "Get all possible schedules for the input courses.", 26 | "required" : true, 27 | "type" : "number", 28 | "format" : "integer" 29 | } 30 | 31 | ], 32 | "responses": { 33 | "200": { 34 | "description" : "An array of departments", 35 | "schema" : { 36 | "type" : "array", 37 | "items" : { 38 | "$ref" : "#/definitions/Department" 39 | } 40 | } 41 | } 42 | , 43 | "default": { 44 | "description" : "Unexpected error", 45 | "schema" : { 46 | "$ref" : "#/definitions/Error" 47 | } 48 | } 49 | 50 | 51 | } 52 | } 53 | 54 | } , 55 | 56 | 57 | "/departments": { 58 | 59 | "get": { 60 | "summary": "List all Departments", 61 | "description":"The Departments endpoint returns all the departments", 62 | "x-swagger-router-controller": "Departments", 63 | "tags": ["Departments"], 64 | "operationId": "departmentsGet", 65 | "responses": { 66 | "200": { 67 | "description" : "An array of departments", 68 | "schema" : { 69 | "type" : "array", 70 | "items" : { 71 | "$ref" : "#/definitions/Department" 72 | } 73 | } 74 | } 75 | , 76 | "default": { 77 | "description" : "Unexpected error", 78 | "schema" : { 79 | "$ref" : "#/definitions/Error" 80 | } 81 | } 82 | 83 | 84 | } 85 | } 86 | 87 | } , 88 | 89 | 90 | "/courses": { 91 | 92 | "get": { 93 | "summary": "List all Courses", 94 | "description":"The Courses endpoint returns all the Courses being offered", 95 | "x-swagger-router-controller": "Courses", 96 | "tags": ["Courses"], 97 | "operationId": "coursesGet", 98 | "parameters": [ 99 | { 100 | "name" : "id", 101 | "in" : "query", 102 | "description" : "Get the information for a particular course.", 103 | "required" : false, 104 | "type" : "number", 105 | "format" : "integer" 106 | }, 107 | { 108 | "name" : "department_id", 109 | "in" : "query", 110 | "description" : "Get the courses within a department.", 111 | "required" : false, 112 | "type" : "number", 113 | "format" : "integer" 114 | } 115 | 116 | ], 117 | "responses": { 118 | "200": { 119 | "description" : "An array of courses", 120 | "schema" : { 121 | "type" : "array", 122 | "items" : { 123 | "$ref" : "#/definitions/Course" 124 | } 125 | } 126 | } 127 | , 128 | "default": { 129 | "description" : "Unexpected error", 130 | "schema" : { 131 | "$ref" : "#/definitions/Error" 132 | } 133 | } 134 | 135 | 136 | } 137 | } 138 | 139 | } 140 | 141 | }, "definitions": { 142 | "Course": { 143 | "type" : "object", 144 | "properties" : { 145 | "id" : { 146 | "type" : "integer", 147 | "description" : "Unique identifier representing a specific course. PK." 148 | }, 149 | "departmentId" : { 150 | "type" : "integer", 151 | "description" : "FK to the department in which the course belongs." 152 | }, 153 | "courseNumber" : { 154 | "type" : "string", 155 | "description" : "The course number" 156 | } 157 | } 158 | },"Department": { 159 | "type" : "object", 160 | "properties" : { 161 | "id" : { 162 | "type" : "integer", 163 | "description" : "Unique identifier representing a specific department. PK" 164 | }, 165 | "abbreviation" : { 166 | "type" : "string", 167 | "description" : "Department abbreviation such as CIT, AGBS, PHYS." 168 | } 169 | } 170 | },"Error": { 171 | "type" : "object", 172 | "properties" : { 173 | "code" : { 174 | "type" : "integer", 175 | "format" : "int32" 176 | }, 177 | "message" : { 178 | "type" : "string" 179 | }, 180 | "fields" : { 181 | "type" : "string" 182 | } 183 | } 184 | } 185 | } 186 | } 187 | -------------------------------------------------------------------------------- /schedule_functions.js: -------------------------------------------------------------------------------- 1 | var Combinatorics = require('js-combinatorics'); 2 | 3 | var doDaysOverlap = function(meeting1,meeting2){ 4 | if(meeting1.monday==1&&meeting2.monday==1){ 5 | return true; 6 | } 7 | else if(meeting1.tuesday==1&&meeting2.tuesday==1){ 8 | return true; 9 | } 10 | else if(meeting1.wednesday==1&&meeting2.wednesday==1){ 11 | return true; 12 | } 13 | else if(meeting1.thursday==1&&meeting2.thursday==1){ 14 | return true; 15 | } 16 | else if(meeting1.friday==1&&meeting2.friday==1){ 17 | return true; 18 | } 19 | return false; 20 | }; 21 | 22 | var doTimesOverlap = function(timeblock1,timeblock2){ 23 | if(timeblock1.startTime != 0 && timeblock1.endTime != 0 &&timeblock2.startTime != 0 &&timeblock2.endTime != 0){ 24 | if((timeblock1.startTime <= timeblock2.startTime && timeblock1.endTime > timeblock2.startTime)||((timeblock2.startTime <= timeblock1.startTime && timeblock2.endTime > timeblock1.startTime))){ 25 | return true; 26 | } 27 | } 28 | return false; 29 | }; 30 | 31 | var doWeeksOverlap = function(weeks1,weeks2){ 32 | for (var w = weeks1.length-1; w >= 0; w--) { 33 | if(weeks1[w] in weeks2){ 34 | return true; 35 | } 36 | } 37 | return false; 38 | }; 39 | 40 | var doMeetingsOverlap = function(section1meetings,section2meetings){ 41 | //for each meeting in section1 42 | if(typeof section1meetings !== 'undefined' && typeof section2meetings !== 'undefined'){ 43 | for (var i = section1meetings.length-1; i >= 0; i--) { 44 | var s1meeting = section1meetings[i]; 45 | //for each meeting in section2 46 | for (var m = section2meetings.length-1; m >= 0; m--) { 47 | var s2meeting = section2meetings[m]; 48 | if(doTimesOverlap({startTime:s1meeting.startTime,endTime:s1meeting.endTime},{startTime:s2meeting.startTime,endTime:s2meeting.endTime})){ 49 | if(doDaysOverlap(s1meeting,s2meeting)){ 50 | return true; 51 | } 52 | } 53 | } 54 | } 55 | } 56 | return false; 57 | }; 58 | 59 | var doSectionsOverlap = function(section1,section2){ 60 | if(doMeetingsOverlap(section1.meetings,section2.meetings)){ 61 | var weeks1 = []; 62 | var weeks2 = []; 63 | for (var w = section1.course_terms.term_weeks.length-1; w >= 0; w--) { 64 | weeks1.push(section1.course_terms.term_weeks[w].week); 65 | } 66 | for (var w = section2.course_terms.term_weeks.length-1; w >= 0; w--) { 67 | weeks2.push(section2.course_terms.term_weeks[w].week); 68 | } 69 | if(doWeeksOverlap(weeks1,weeks2)){ 70 | return true; 71 | } 72 | } 73 | return false; 74 | }; 75 | 76 | var groupSections = function(course_sections){ 77 | var grouped_sections = {}; 78 | for (var i in course_sections) { 79 | var course_section = course_sections[i]; 80 | var identifier = course_section['identifier']; 81 | if(identifier == ""){ 82 | identifier = "empty"; 83 | } 84 | if (!(identifier in grouped_sections)){ 85 | grouped_sections[identifier] = []; 86 | } 87 | grouped_sections[identifier].push(course_section); 88 | } 89 | return grouped_sections; 90 | }; 91 | 92 | var getSectionCombinations = function(course_sections){ 93 | var grouped_sections = groupSections(course_sections); 94 | var values = []; 95 | Object.keys(grouped_sections).forEach(function(key) { 96 | var val = grouped_sections[key]; 97 | values.push(val); 98 | }); 99 | var cp = Combinatorics.cartesianProduct.apply(null,values) 100 | cp = cp.toArray(); 101 | //Might remove this and just go with filtering in another function (get schedule combinations)-to prevent from going through this twice 102 | //For each combination 103 | for (var i = cp.length-1; i >= 0; i--) { 104 | var combination = cp[i]; 105 | for (var s = combination.length-1; s >= 1; s--) { 106 | var section1 = combination[s]; 107 | for (var t = s-1; t >= 0; t--) { 108 | var section2 = combination[t]; 109 | if(doSectionsOverlap(section1,section2)){ 110 | //If they do overlap, remove combination and break 111 | cp.splice(i, 1); 112 | //break out of section loop 113 | } 114 | } 115 | } 116 | } 117 | return cp; 118 | }; 119 | var getScheduleCombinations = function(section_combinations){ 120 | var cp = Combinatorics.cartesianProduct.apply(null,section_combinations) 121 | cp = cp.toArray(); 122 | //filter based on overlapping 123 | // returns list of schedules containing 124 | // a list of classes containing 125 | // a list of sections 126 | // http://localhost:8014/v1/schedule/?courses[]=121&courses[]=127 127 | 128 | //for each schedule 129 | for (var h = cp.length-1; h >= 0; h--) { 130 | //for each class in the schedule 131 | classloop: 132 | for (var c = cp[h].length-1; c >= 1; c--) { 133 | var course = cp[h][c]; 134 | //for each section in the class 135 | for (var s = course.length-1; s >= 0; s--) { 136 | var section1 = course[s]; 137 | // Compare against all other class sections within schedule 138 | // don't need to compare against current class' sections because that was already done 139 | for (var oc = c-1; oc >= 0; oc--) { 140 | var acourse = cp[h][oc]; 141 | for (var os = acourse.length-1; os >= 0; os--) { 142 | var section2 = acourse[os]; 143 | if(doSectionsOverlap(section1,section2)){ 144 | //If they do overlap, remove combination and break 145 | cp.splice(h, 1); 146 | //Break out of course loop 147 | break classloop; 148 | } 149 | } 150 | } 151 | } 152 | } 153 | } 154 | 155 | return cp; 156 | }; 157 | 158 | 159 | 160 | 161 | 162 | module.exports = { 163 | doDaysOverlap:doDaysOverlap, 164 | doTimesOverlap:doTimesOverlap, 165 | doWeeksOverlap:doWeeksOverlap, 166 | doMeetingsOverlap:doMeetingsOverlap, 167 | doSectionsOverlap:doSectionsOverlap, 168 | groupSections:groupSections, 169 | getSectionCombinations:getSectionCombinations, 170 | getScheduleCombinations:getScheduleCombinations 171 | }; -------------------------------------------------------------------------------- /schema.sql: -------------------------------------------------------------------------------- 1 | -- phpMyAdmin SQL Dump 2 | -- version 4.5.1 3 | -- http://www.phpmyadmin.net 4 | -- 5 | -- Host: 127.0.0.1 6 | -- Generation Time: Dec 27, 2015 at 05:16 AM 7 | -- Server version: 5.7.9 8 | -- PHP Version: 5.6.15 9 | 10 | SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; 11 | SET time_zone = "+00:00"; 12 | 13 | 14 | /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; 15 | /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; 16 | /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; 17 | /*!40101 SET NAMES utf8mb4 */; 18 | 19 | -- 20 | -- Database: `mscschedulizer` 21 | -- 22 | 23 | -- -------------------------------------------------------- 24 | 25 | -- 26 | -- Table structure for table `courses` 27 | -- 28 | 29 | DROP TABLE IF EXISTS `courses`; 30 | CREATE TABLE IF NOT EXISTS `courses` ( 31 | `id` int(11) NOT NULL AUTO_INCREMENT, 32 | `name` varchar(100) NOT NULL, 33 | `department_id` int(11) NOT NULL, 34 | `courseNumber` varchar(25) NOT NULL, 35 | PRIMARY KEY (`id`) 36 | ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=latin1; 37 | 38 | -- -------------------------------------------------------- 39 | 40 | -- 41 | -- Table structure for table `course_sections` 42 | -- 43 | 44 | DROP TABLE IF EXISTS `course_sections`; 45 | CREATE TABLE IF NOT EXISTS `course_sections` ( 46 | `id` int(11) NOT NULL AUTO_INCREMENT, 47 | `name` varchar(25) NOT NULL, 48 | `course_id` int(11) NOT NULL, 49 | `courseterm_id` int(11) NOT NULL, 50 | `courseCRN` varchar(5) NOT NULL, 51 | `instructor` varchar(25) NOT NULL, 52 | `currentEnrollment` int(11) NOT NULL, 53 | `maxEnrollment` int(11) NOT NULL, 54 | `credits` int(11) NOT NULL, 55 | `identifier` varchar(2) NOT NULL, 56 | PRIMARY KEY (`id`) 57 | ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=latin1; 58 | 59 | -- -------------------------------------------------------- 60 | 61 | -- 62 | -- Table structure for table `course_terms` 63 | -- 64 | 65 | DROP TABLE IF EXISTS `course_terms`; 66 | CREATE TABLE IF NOT EXISTS `course_terms` ( 67 | `id` int(11) NOT NULL AUTO_INCREMENT, 68 | `abbreviation` varchar(5) NOT NULL, 69 | `name` varchar(50) NOT NULL, 70 | PRIMARY KEY (`id`) 71 | ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=15 ; 72 | 73 | -- 74 | -- Dumping data for table `course_terms` 75 | -- 76 | 77 | INSERT INTO `course_terms` (`id`, `abbreviation`, `name`) VALUES 78 | (1, '1', 'Full Term'), 79 | (2, '5', '5 Week Course/ 1st 5 weeks of term'), 80 | (3, '6', '5 Week Course/ 2nd 5 weeks of term'), 81 | (4, '7', '5 Week Course/ 3rd 5 weeks of term'), 82 | (5, '8', '8 Week Course/ 1st 8 weeks of term'), 83 | (6, '9', '8 Week Course/ 2nd 8 weeks of term'), 84 | (7, 'A', '10 Week Course/ 1st 10 weeks of term'), 85 | (8, 'B', '10 Week Course/ last 10 weeks of term'), 86 | (9, 'C', 'Combined Parts of Term'), 87 | (10, 'D', '6 Week Course/1st 6 weeks of term'), 88 | (11, 'E', '6 Week Course/ 2nd 6 weeks of term'), 89 | (12, 'F', 'Summer 1'), 90 | (13, 'G', 'Summer 2'), 91 | (14, 'H', 'Summer 3'); 92 | 93 | -- -------------------------------------------------------- 94 | 95 | -- 96 | -- Table structure for table `departments` 97 | -- 98 | 99 | DROP TABLE IF EXISTS `departments`; 100 | CREATE TABLE IF NOT EXISTS `departments` ( 101 | `id` int(5) NOT NULL AUTO_INCREMENT, 102 | `abbreviation` varchar(5) NOT NULL, 103 | PRIMARY KEY (`id`) 104 | ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=latin1; 105 | 106 | -- -------------------------------------------------------- 107 | 108 | -- 109 | -- Table structure for table `meetings` 110 | -- 111 | DROP TABLE IF EXISTS `meetings`; 112 | CREATE TABLE IF NOT EXISTS `meetings` ( 113 | `id` int(11) NOT NULL AUTO_INCREMENT, 114 | `monday` tinyint(1) NOT NULL DEFAULT '0', 115 | `tuesday` tinyint(1) NOT NULL DEFAULT '0', 116 | `wednesday` tinyint(1) NOT NULL DEFAULT '0', 117 | `thursday` tinyint(1) NOT NULL DEFAULT '0', 118 | `friday` tinyint(1) NOT NULL DEFAULT '0', 119 | `startTime` int(4) NOT NULL, 120 | `endTime` int(4) NOT NULL, 121 | `coursesection_id` int(11) NOT NULL, 122 | `building` varchar(25) NOT NULL, 123 | `room` varchar(25) NOT NULL, 124 | PRIMARY KEY (`id`) 125 | ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ; 126 | 127 | -- -------------------------------------------------------- 128 | 129 | -- 130 | -- Table structure for table `required_identifiers` 131 | -- 132 | 133 | DROP TABLE IF EXISTS `required_identifiers`; 134 | CREATE TABLE IF NOT EXISTS `required_identifiers` ( 135 | `id` int(11) NOT NULL AUTO_INCREMENT, 136 | `identifier` varchar(2) NOT NULL, 137 | `section_id` int(11) NOT NULL, 138 | PRIMARY KEY (`id`) 139 | ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=latin1; 140 | 141 | -- -------------------------------------------------------- 142 | 143 | -- 144 | -- Table structure for table `term_weeks` 145 | -- 146 | 147 | DROP TABLE IF EXISTS `term_weeks`; 148 | CREATE TABLE IF NOT EXISTS `term_weeks` ( 149 | `id` int(11) NOT NULL AUTO_INCREMENT, 150 | `week` int(11) NOT NULL, 151 | `term_id` int(11) NOT NULL, 152 | PRIMARY KEY (`id`) 153 | ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=95 ; 154 | 155 | -- 156 | -- Dumping data for table `term_weeks` 157 | -- 158 | 159 | INSERT INTO `term_weeks` (`id`, `week`, `term_id`) VALUES 160 | (1, 1, 1), 161 | (2, 2, 1), 162 | (3, 3, 1), 163 | (4, 4, 1), 164 | (5, 5, 1), 165 | (6, 6, 1), 166 | (7, 7, 1), 167 | (8, 8, 1), 168 | (9, 9, 1), 169 | (10, 10, 1), 170 | (11, 11, 1), 171 | (12, 12, 1), 172 | (13, 13, 1), 173 | (14, 14, 1), 174 | (15, 15, 1), 175 | (16, 1, 2), 176 | (17, 2, 2), 177 | (18, 3, 2), 178 | (19, 4, 2), 179 | (20, 5, 2), 180 | (21, 6, 3), 181 | (22, 7, 3), 182 | (23, 8, 3), 183 | (24, 9, 3), 184 | (25, 10, 3), 185 | (26, 10, 3), 186 | (27, 11, 4), 187 | (28, 14, 4), 188 | (29, 13, 4), 189 | (30, 14, 4), 190 | (31, 15, 4), 191 | (32, 1, 5), 192 | (33, 2, 5), 193 | (34, 3, 5), 194 | (35, 4, 5), 195 | (36, 5, 5), 196 | (37, 6, 5), 197 | (38, 7, 5), 198 | (39, 8, 5), 199 | (40, 8, 6), 200 | (41, 9, 6), 201 | (42, 10, 6), 202 | (43, 11, 6), 203 | (44, 12, 6), 204 | (45, 13, 6), 205 | (46, 14, 6), 206 | (47, 15, 6), 207 | (48, 1, 7), 208 | (49, 2, 7), 209 | (50, 3, 7), 210 | (51, 4, 7), 211 | (52, 5, 7), 212 | (53, 6, 7), 213 | (54, 7, 7), 214 | (55, 8, 7), 215 | (56, 9, 7), 216 | (57, 10, 7), 217 | (58, 6, 8), 218 | (59, 7, 8), 219 | (60, 8, 8), 220 | (61, 9, 8), 221 | (62, 10, 8), 222 | (63, 11, 8), 223 | (64, 12, 8), 224 | (65, 13, 8), 225 | (66, 14, 8), 226 | (67, 15, 8), 227 | (68, 1, 9), 228 | (69, 2, 9), 229 | (70, 3, 9), 230 | (71, 4, 9), 231 | (72, 5, 9), 232 | (73, 6, 9), 233 | (74, 7, 9), 234 | (75, 8, 9), 235 | (76, 9, 9), 236 | (77, 10, 9), 237 | (78, 11, 9), 238 | (79, 12, 9), 239 | (80, 13, 9), 240 | (81, 14, 9), 241 | (82, 15, 9), 242 | (83, 1, 10), 243 | (84, 2, 10), 244 | (85, 3, 10), 245 | (86, 4, 10), 246 | (87, 5, 10), 247 | (88, 6, 10), 248 | (89, 7, 11), 249 | (90, 8, 11), 250 | (91, 9, 11), 251 | (92, 10, 11), 252 | (93, 11, 11), 253 | (94, 12, 11); 254 | 255 | /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; 256 | /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; 257 | /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; 258 | -------------------------------------------------------------------------------- /test-data.sql: -------------------------------------------------------------------------------- 1 | -- phpMyAdmin SQL Dump 2 | -- version 4.5.1 3 | -- http://www.phpmyadmin.net 4 | -- 5 | -- Host: 127.0.0.1 6 | -- Generation Time: Jan 20, 2016 at 02:32 AM 7 | -- Server version: 5.7.9 8 | -- PHP Version: 5.6.15 9 | 10 | SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; 11 | SET time_zone = "+00:00"; 12 | 13 | 14 | /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; 15 | /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; 16 | /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; 17 | /*!40101 SET NAMES utf8mb4 */; 18 | 19 | -- 20 | -- Database: `mscschedulizer` 21 | -- 22 | 23 | -- -------------------------------------------------------- 24 | 25 | -- 26 | -- Table structure for table `courses` 27 | -- 28 | 29 | DROP TABLE IF EXISTS `courses`; 30 | CREATE TABLE IF NOT EXISTS `courses` ( 31 | `id` int(11) NOT NULL AUTO_INCREMENT, 32 | `name` varchar(100) NOT NULL, 33 | `department_id` int(11) NOT NULL, 34 | `courseNumber` varchar(25) NOT NULL, 35 | PRIMARY KEY (`id`) 36 | ) ENGINE=InnoDB AUTO_INCREMENT=485 DEFAULT CHARSET=latin1; 37 | 38 | -- 39 | -- Dumping data for table `courses` 40 | -- 41 | 42 | INSERT INTO `courses` (`id`, `name`, `department_id`, `courseNumber`) VALUES 43 | (1, 'Accounting Info & Mgt Decision', 1, '100'), 44 | (2, 'Principles of Accounting I', 1, '101'), 45 | (3, 'Principles of Accounting II', 1, '102'), 46 | (4, 'Managerial Accounting', 1, '105'), 47 | (5, 'Intermediate Accounting I', 1, '201'), 48 | (6, 'Cost Accounting', 1, '205'), 49 | (7, 'Federal Income TAxiom Accounting', 1, '212'), 50 | (8, 'Intro to Ag Business Mgt', 2, '110'), 51 | (9, 'Marketing Agricultural Prodcts', 2, '200'), 52 | (10, 'Environmental Economics', 2, '225'), 53 | (11, 'Farm Management and Finance', 2, '240'), 54 | (12, 'Ag Business Development', 2, '350'), 55 | (13, 'Distribution/Mkt Ag Products', 2, '400'), 56 | (14, 'Farm & Rural Mngt Capstone', 2, '405'), 57 | (15, 'Internship in Ag Business Dev', 2, '470'), 58 | (16, 'Retailing Agriculture Products', 2, '480'), 59 | (17, 'Tractor Care & Maintenance', 3, '100'), 60 | (18, 'Heavy Equipment Operation', 3, '103'), 61 | (19, 'Electrification', 3, '125'), 62 | (20, 'Applied Hydraulics Hydropower', 3, '151'), 63 | (21, 'Basic Hydraulics', 3, '161'), 64 | (22, 'Small Power Equipment II', 3, '210'), 65 | (23, 'Main,Rep, Perf Tune Artic Cat', 3, '220'), 66 | (24, 'Advanced Welding', 3, '240'), 67 | (25, 'Tractor Overhaul and Repair', 3, '270'), 68 | (26, 'Instructional Assistance Exp', 4, '400'), 69 | (27, 'Soil Science', 5, '110'), 70 | (28, 'Soil Fertility & Fertilizers', 5, '215'), 71 | (29, 'Analysis/Interp Ag Data', 6, '137'), 72 | (30, 'Animal Genetics', 6, '350'), 73 | (31, 'American Sign Language II', 7, '102'), 74 | (32, 'Animal Science and Industry', 8, '100'), 75 | (33, 'Introduction to Anthropology', 9, '101'), 76 | (34, 'Architectural Design II', 10, '142'), 77 | (35, 'Arch Pre History to 1800', 10, '151'), 78 | (36, 'Architectural Design IV', 10, '244'), 79 | (37, 'Architecture: 1800 to Present', 10, '252'), 80 | (38, 'Architectural Technology II', 10, '272'), 81 | (39, 'Introduction to Visual Arts', 11, '110'), 82 | (40, 'Introduction to Painting', 11, '121'), 83 | (41, 'Basic Engine Repair', 12, '121'), 84 | (42, 'Electrical & Electronic System', 12, '122'), 85 | (43, 'ASSET Co-Operative Training I', 12, '123'), 86 | (44, 'Engine Performance', 12, '222'), 87 | (45, 'Automatic Transmissions', 12, '223'), 88 | (46, 'ASSET Cooperative Training 3', 12, '225'), 89 | (47, 'Metals', 13, '102'), 90 | (48, 'Internal Combustion Engines I', 13, '103'), 91 | (49, 'Automotive Electronics I', 13, '104'), 92 | (50, 'Car/Light Truck Diesel', 13, '105'), 93 | (51, 'Summer Work Experience', 13, '110'), 94 | (52, 'Automobile Industry Awareness', 13, '138'), 95 | (53, 'Automotive Electronics II', 13, '155'), 96 | (54, 'Automotive Drivetrains', 13, '171'), 97 | (55, 'Automotive Engine Analysis', 13, '203'), 98 | (56, 'Chassis Analysis II', 13, '209'), 99 | (57, 'Driveability &Performance Prob', 13, '255'), 100 | (58, 'Non-Structural Repair Refinish', 13, '259'), 101 | (59, 'Auto Air Cond & Refrg Recovery', 13, '260'), 102 | (60, 'Auto Air Condition & Heat', 13, '261'), 103 | (61, 'Autobody Structural Repair', 13, '279'), 104 | (62, 'Advanced Automotive Diagnostic', 13, '355'), 105 | (63, 'Collision Business & Mgt', 13, '359'), 106 | (64, 'Auto Shop Mgt & Supervision', 13, '360'), 107 | (65, 'Adv Powertrain Management', 13, '371'), 108 | (66, 'Auto Parts Management', 13, '380'), 109 | (67, 'Automotive Fleet Management', 13, '400'), 110 | (68, 'Auto Industry Internship Orien', 13, '420'), 111 | (69, 'Automotive Industry Internship', 13, '421'), 112 | (70, 'Introduction to Biology', 14, '101'), 113 | (71, 'Botany-Form Function Seed Plt', 14, '102'), 114 | (72, 'Human Biology', 14, '105'), 115 | (73, 'Topics in Contemporary Biology', 14, '107'), 116 | (74, 'General Biology I', 14, '120'), 117 | (75, 'General Biology II', 14, '121'), 118 | (76, 'Myology II', 14, '136'), 119 | (77, 'Human Anatomy + Physiology I', 14, '150'), 120 | (78, 'Human Anatomy + Physiology II', 14, '151'), 121 | (79, 'Principles of Zoology', 14, '260'), 122 | (80, 'General Microbiology', 14, '285'), 123 | (81, 'Epidemiology', 14, '302'), 124 | (82, 'Business in the 21st Century', 15, '100'), 125 | (83, 'Business Mathematics', 15, '102'), 126 | (84, 'Legal & Reg Aspects of Gaming', 15, '107'), 127 | (85, 'Business Law 1', 15, '108'), 128 | (86, 'Marketing', 15, '112'), 129 | (87, 'Business Organization & Mgmnt', 15, '116'), 130 | (88, 'Business Communications', 15, '140'), 131 | (89, 'Business Law II', 15, '203'), 132 | (90, 'Promotion Management', 15, '206'), 133 | (91, 'Salesmanship', 15, '209'), 134 | (92, 'Human Resource Management', 15, '215'), 135 | (93, 'Investments', 15, '220'), 136 | (94, 'Business Statistics', 15, '221'), 137 | (95, 'Special Topics in Business', 15, '295'), 138 | (96, 'Management Communications', 15, '300'), 139 | (97, 'Human Resource Management', 15, '310'), 140 | (98, 'Entrepreneurship', 15, '320'), 141 | (99, 'Analytic Marketing', 15, '325'), 142 | (100, 'Advertising Management', 15, '327'), 143 | (101, 'Principles Corporate Finance', 15, '350'), 144 | (102, 'Management Information Systems', 15, '375'), 145 | (103, 'International Business', 15, '380'), 146 | (104, 'Production & Operation Mgt', 15, '400'), 147 | (105, 'Global Marketing', 15, '419'), 148 | (106, 'Management Policy and Issues', 15, '449'), 149 | (107, 'Strategic Management', 15, '470'), 150 | (108, 'Intro To Computer-Aided Drftng', 16, '181'), 151 | (109, '3-D Parametric Solid Modeling', 16, '186'), 152 | (110, 'Advanced Solid Modeling', 16, '288'), 153 | (111, 'Casino Security', 17, '103'), 154 | (112, 'Leadership Development', 17, '280'), 155 | (113, 'Basic Chemistry', 18, '101'), 156 | (114, 'General College Chemistry I', 18, '121'), 157 | (115, 'General College Chemistry II', 18, '122'), 158 | (116, 'Chemical Principles II', 18, '142'), 159 | (117, 'Organic Chemistry II', 18, '242'), 160 | (118, 'Principles Computer Apps', 19, '101'), 161 | (119, 'Computer Applications I', 19, '110'), 162 | (120, 'Intro to Game Development', 19, '112'), 163 | (121, 'Computer Concepts & Op Sys', 19, '120'), 164 | (122, 'Introduction to Programming', 19, '140'), 165 | (123, 'Data Management Techniques', 19, '150'), 166 | (124, 'Intro to LINUX/UNIX Systems', 19, '190'), 167 | (125, 'Data Communications Networking', 19, '200'), 168 | (126, 'Network Technology', 19, '230'), 169 | (127, 'Web and E-Commerce Development', 19, '240'), 170 | (128, 'Fundamentals Network Security', 19, '270'), 171 | (129, 'Computer Crime Digital Forensi', 19, '275'), 172 | (130, 'Tools/Tech for Appl Devel.', 19, '280'), 173 | (131, 'Web Server Administration', 19, '310'), 174 | (132, 'Data Base Concepts', 19, '340'), 175 | (133, 'Object-Oriented Systems', 19, '350'), 176 | (134, 'Oper Systems & Software Deploy', 19, '360'), 177 | (135, 'Network Design Concepts', 19, '370'), 178 | (136, 'Internet & Intranet Firewalls', 19, '375'), 179 | (137, 'Dynamic Graphics & Animation', 19, '380'), 180 | (138, 'Internship Orientation Seminar', 19, '395'), 181 | (139, 'Project Management', 19, '405'), 182 | (140, 'Internship Information Tech', 19, '480'), 183 | (141, 'Intro Criminal JusTicen Systems', 20, '101'), 184 | (142, 'Corrections', 20, '201'), 185 | (143, 'Policing', 20, '202'), 186 | (144, 'Criminal Investigation I', 20, '220'), 187 | (145, 'Criminal Investigation II', 20, '221'), 188 | (146, 'Criminal Procedure Law', 20, '231'), 189 | (147, 'Juvenile Delinquency', 20, '235'), 190 | (148, 'Crime Scene Investigation &Mgt', 20, '301'), 191 | (149, 'Serial Murder Criminal JusTicen', 20, '310'), 192 | (150, 'Interviewing Techniques in CJ', 20, '311'), 193 | (151, 'Arson & Bomb Investigations', 20, '412'), 194 | (152, 'Staff Misconduct/Work Violence', 20, '414'), 195 | (153, 'Internship Preparation', 20, '449'), 196 | (154, 'Criminal JusTicen Internship', 20, '450'), 197 | (155, 'Coaching Effectiveness', 21, '101'), 198 | (156, 'Theory Technique Coaching', 21, '102'), 199 | (157, 'Health Related Aspect Coaching', 21, '103'), 200 | (158, 'Introduction to Speech', 22, '111'), 201 | (159, 'Theories Interpersonal Comm', 22, '121'), 202 | (160, 'Introduction College Writing', 23, '100'), 203 | (161, 'Composition and Research', 23, '101'), 204 | (162, 'Writing About Literature', 23, '102'), 205 | (163, 'Technical Communications', 23, '110'), 206 | (164, 'Creative Writing - Poetry', 23, '231'), 207 | (165, 'Advance Tech Communication', 23, '310'), 208 | (166, 'Elementary Data Structures', 24, '112'), 209 | (167, 'Programming With C', 24, '201'), 210 | (168, 'Advanced Programming Technique', 24, '231'), 211 | (169, 'Culinary Arts I', 25, '101'), 212 | (170, 'Professional Baking', 25, '111'), 213 | (171, 'Culinary Restaurant', 25, '211'), 214 | (172, 'Breeding Dairy Cattle', 26, '110'), 215 | (173, 'Dairy Cattle Artificial Insem', 26, '115'), 216 | (174, 'Anatomy & Physiology-Dairy Cow', 26, '120'), 217 | (175, 'Dairy Farm Practicum', 26, '150'), 218 | (176, 'Dairy Techniques', 26, '151'), 219 | (177, 'Nutrition Mnagmnt-Dairy Cattle', 26, '200'), 220 | (178, 'Dairy Production & Management', 26, '225'), 221 | (179, 'Dairy Management Perspectives', 26, '250'), 222 | (180, 'Cornell Dairy Mgt Experience', 26, '301'), 223 | (181, 'Dairy Heifer Repl & Mgt', 26, '305'), 224 | (182, 'Diesel Powertrains I', 27, '105'), 225 | (183, 'Diesel Powertrains II', 27, '110'), 226 | (184, 'Diesel Electronics', 27, '225'), 227 | (185, 'Diesel Equip Tech Internship 1', 27, '290'), 228 | (186, 'Advanced Diesel Fuel Systems', 27, '350'), 229 | (187, 'Academic Writing 088', 28, '088'), 230 | (188, 'English for Academic Purposes', 28, '099'), 231 | (189, 'Academic Writing 100', 28, '100'), 232 | (190, 'Academic Writing 101', 28, '101'), 233 | (191, 'Academic Writing 102', 28, '102'), 234 | (192, 'Introduction to Macroeconomics', 29, '100'), 235 | (193, 'Introduction to Microeconomics', 29, '140'), 236 | (194, 'Foundations of Education', 30, '201'), 237 | (195, 'Guided Fieldwork in Education', 30, '202'), 238 | (196, 'Electromechanical Energy Devic', 31, '291'), 239 | (197, 'Comp & Numer Tech for Science', 32, '135'), 240 | (198, 'Analytic Mechanics II', 32, '202'), 241 | (199, 'Introdctn To Electrical Systms', 32, '210'), 242 | (200, 'Mechanics Of Materials', 32, '212'), 243 | (201, 'Intro to Environmental Science', 33, '100'), 244 | (202, 'Pesticide Use and Handling', 33, '106'), 245 | (203, 'Legal Issues for Entrepreneur', 34, '338'), 246 | (204, 'Innovation & Venture Creation', 34, '342'), 247 | (205, 'Practicum in Entre/Bus Consult', 34, '475'), 248 | (206, 'Surface & Groundwater Mgt', 35, '345'), 249 | (207, 'Inter. Western Equitation II', 36, '103'), 250 | (208, 'Adv Western Equitation II', 36, '105'), 251 | (209, 'Intermediate Hunt Seat', 36, '111'), 252 | (210, 'Advanced Hunt Seat', 36, '112'), 253 | (211, 'Western Dressage', 36, '220'), 254 | (212, 'Intermed Breaking & Training', 36, '255'), 255 | (213, 'Inter Training Hunters Jumpers', 36, '260'), 256 | (214, 'Advanced Equine Special II', 36, '350'), 257 | (215, 'Adv Equine Specialization III', 36, '400'), 258 | (216, 'Equine Anatomy & Physiology', 37, '110'), 259 | (217, 'Equine Judging', 37, '140'), 260 | (218, 'Farm Practicum I Equine', 37, '150'), 261 | (219, 'Farm Practicum II (Equine)', 37, '151'), 262 | (220, 'Draft Horse Management', 37, '170'), 263 | (221, 'Equine Artificial Insemination', 37, '225'), 264 | (222, 'Equine Reproduction/Mgt', 37, '305'), 265 | (223, 'Equine Health & Lameness', 37, '312'), 266 | (224, 'Lab in Equine Health Lameness', 37, '313'), 267 | (225, 'Equine Rehabilitation II', 37, '365'), 268 | (226, 'Adv Equine Reproduction/Mgt', 37, '400'), 269 | (227, 'Equine Exercise Physiology', 37, '410'), 270 | (228, 'Equine Internship', 37, '420'), 271 | (229, 'Care & Training Race Horse II', 38, '101'), 272 | (230, 'Equine Racing Capstone', 38, '220'), 273 | (231, 'Adv Equine Special II Racing', 38, '350'), 274 | (232, 'Equine Racing Mgt III', 38, '400'), 275 | (233, 'Basic Op Wastewater Treatment', 39, '101'), 276 | (234, 'Basic WW Laboratory Procedures', 39, '102'), 277 | (235, 'Activated Sludge WW Treatment', 39, '200'), 278 | (236, 'Grade 3 Supervision', 39, '210'), 279 | (237, 'Management I', 40, '153'), 280 | (238, 'Equipment Selection & Layout', 40, '154'), 281 | (239, 'Senior Seminar', 40, '257'), 282 | (240, 'Restaurant Mgt & Operations', 40, '258'), 283 | (241, 'Intro World Regional Geography', 41, '101'), 284 | (242, 'First Year Experience', 42, '100'), 285 | (243, 'Practical Study Skills', 42, '102'), 286 | (244, 'Basic Research Methods', 42, '104'), 287 | (245, 'Peer Tutor Training I', 42, '203'), 288 | (246, 'Peer Tutor Training II', 42, '204'), 289 | (247, 'United States History to 1800', 43, '101'), 290 | (248, 'U.S. History 1800 to 1900', 43, '102'), 291 | (249, 'U.S. History from 1900-Present', 43, '103'), 292 | (250, 'World History from 1500', 43, '152'), 293 | (251, 'European History from 1500', 43, '162'), 294 | (252, 'History Technology From 1750', 43, '182'), 295 | (253, 'Introduction to Horticulture', 44, '100'), 296 | (254, 'Landscape Planning & Design I', 44, '103'), 297 | (255, 'Herbaceous Plant Materials', 44, '108'), 298 | (256, 'Fruit & Vegetable Production', 44, '150'), 299 | (257, 'Greenhouse Production', 44, '202'), 300 | (258, 'Horticultural PracTicens II', 44, '210'), 301 | (259, 'Landcadd', 44, '240'), 302 | (260, 'Plant Protection', 44, '241'), 303 | (261, 'Internship In Horticulture', 44, '250'), 304 | (262, 'Horticulture Internship Orient', 44, '320'), 305 | (263, 'Horticulture Business Develop', 44, '430'), 306 | (264, 'Hort Business Internship', 44, '440'), 307 | (265, 'Intro to Wellness & Fitness', 45, '100'), 308 | (266, 'Fieldwork Clinical Exer Sci', 45, '101'), 309 | (267, 'Exercise Physiology II', 45, '201'), 310 | (268, 'Sport & Exercise Psychology', 45, '300'), 311 | (269, 'Community Service in Sport Sci', 45, '304'), 312 | (270, 'Fitness Assess and Ex Rx', 45, '305'), 313 | (271, 'Wellness Center Internship', 45, '402'), 314 | (272, 'Fitness Leadership and Admin', 45, '404'), 315 | (273, 'HPHP Internship', 45, '405'), 316 | (274, 'Introduction to Human Services', 46, '101'), 317 | (275, 'News Writing II', 47, '112'), 318 | (276, 'Principls of Press Photography', 47, '121'), 319 | (277, 'Broadcast Writing & Editing', 47, '126'), 320 | (278, 'Production Lab II', 47, '186'), 321 | (279, 'Mass Media and Society', 47, '220'), 322 | (280, 'Broadcast Mgt, News, Promotion', 47, '280'), 323 | (281, 'Production Laboratory IV', 47, '286'), 324 | (282, 'Online Writing & Production', 47, '315'), 325 | (283, 'Content Producing Media Platfo', 47, '327'), 326 | (284, 'Production Lab in JCOM II', 47, '386'), 327 | (285, 'Production Lab WCVM Media VI', 47, '388'), 328 | (286, 'Legal Ethical Issues Mass Comm', 47, '401'), 329 | (287, 'Pre-Internship Seminar', 47, '409'), 330 | (288, 'Capstone Course in JCOM', 47, '411'), 331 | (289, 'Production Lab in JCOM IV', 47, '486'), 332 | (290, 'American Lit 1900 to Present', 48, '204'), 333 | (291, 'English Lit 1800 to Present', 48, '206'), 334 | (292, 'Elementary Algebra', 49, '101'), 335 | (293, 'CPR for Healthcare Providers', 50, '100'), 336 | (294, 'Western Massage II', 50, '103'), 337 | (295, 'Eastern Massage', 50, '104'), 338 | (296, 'Massage Clinical Experience', 50, '204'), 339 | (297, 'Senior Seminar', 50, '205'), 340 | (298, 'Professional PracTicen Issues', 50, '206'), 341 | (299, 'Intermediate Algebra w Trig', 51, '102'), 342 | (300, 'College Algebra w/ Trig', 51, '103'), 343 | (301, 'Elementary Statistics', 51, '123'), 344 | (302, 'Statistics', 51, '141'), 345 | (303, 'Discrete Mathematics', 51, '145'), 346 | (304, 'Selected Topics In Precalculus', 51, '147'), 347 | (305, 'Elementary Linear Algebra', 51, '149'), 348 | (306, 'Analytic Geometry & Calculus I', 51, '151'), 349 | (307, 'Analytic Geometry&Calculus II', 51, '152'), 350 | (308, 'Business Calculus', 51, '153'), 351 | (309, 'EnginePartingg Calculus II', 51, '162'), 352 | (310, 'Differential Equations', 51, '262'), 353 | (311, 'Machine Tools', 52, '101'), 354 | (312, 'Analytical Mechanics (Statics)', 52, '211'), 355 | (313, 'Mechanical Design', 52, '212'), 356 | (314, 'Strength of Materials', 52, '213'), 357 | (315, 'Fluid Power and Control', 52, '233'), 358 | (316, 'Dimensional Metrology', 53, '110'), 359 | (317, 'Quality Control', 53, '207'), 360 | (318, 'CAM - Mastercam', 53, '208'), 361 | (319, 'Design/Manufacture Capstone', 53, '240'), 362 | (320, 'Ensemble', 54, '150'), 363 | (321, 'Ensemble', 54, '155'), 364 | (322, 'Ensemble', 54, '160'), 365 | (323, 'Ensemble', 54, '165'), 366 | (324, 'General Ecology', 55, '101'), 367 | (325, 'Natural Resources Measurements', 55, '110'), 368 | (326, 'Forest Ecology', 55, '115'), 369 | (327, 'North American Waterfowl', 55, '130'), 370 | (328, 'Geology', 55, '140'), 371 | (329, 'Fish Nutrition', 55, '158'), 372 | (330, 'Principles of Arboriculture', 55, '160'), 373 | (331, 'PracTicens of Arboriculture', 55, '161'), 374 | (332, 'Forest Protection', 55, '211'), 375 | (333, 'Basics Geospatial Technology', 55, '213'), 376 | (334, 'PracTicens Of Silviculture', 55, '215'), 377 | (335, 'Basics Geospatial Analysis', 55, '216'), 378 | (336, 'Invasive Species Management', 55, '221'), 379 | (337, 'Wildlife Management', 55, '232'), 380 | (338, 'Fish Ecology and Management', 55, '252'), 381 | (339, 'Fish Health Management', 55, '254'), 382 | (340, 'Aquaculture Practicum II', 55, '256'), 383 | (341, 'Aquaculture Practicum IV', 55, '258'), 384 | (342, 'Holistic Health', 56, '100'), 385 | (343, 'Skills for Success in Nursing', 56, '101'), 386 | (344, 'Fundamentals of Nursing 1A', 56, '105'), 387 | (345, 'Fundamentals of Nursing IB', 56, '110'), 388 | (346, 'Care of Common Health Problems', 56, '150'), 389 | (347, 'Pharmacology I', 56, '152'), 390 | (348, 'Care - Complex Health Problems', 56, '210'), 391 | (349, 'Pharmacology II', 56, '212'), 392 | (350, 'Multiple Common Complex Probs', 56, '250'), 393 | (351, 'Transition into PracTicen', 56, '251'), 394 | (352, 'Basic Nutrition', 57, '108'), 395 | (353, 'Nutrition I', 57, '110'), 396 | (354, 'Diet Therapy', 57, '160'), 397 | (355, 'Supervised Field Experience I', 57, '170'), 398 | (356, 'Orientation to Field Experienc', 57, '219'), 399 | (357, 'Sports Nutrition', 57, '250'), 400 | (358, 'Meal Management - Spa Cuisine', 57, '260'), 401 | (359, 'Supervised Field Experienc III', 57, '270'), 402 | (360, 'Intro Word Processing Software', 58, '100'), 403 | (361, 'Personal Computer Keyboarding', 58, '106'), 404 | (362, 'Intro Personal Mgt Software', 58, '108'), 405 | (363, 'Intro Presentation Software', 58, '109'), 406 | (364, 'Intro Spreadsheet Software', 58, '110'), 407 | (365, 'Keyboarding 1-A', 58, '111'), 408 | (366, 'Keyboarding 1-B', 58, '112'), 409 | (367, 'Keyboarding 2-A', 58, '113'), 410 | (368, 'Keyboarding 2-B', 58, '114'), 411 | (369, 'Medical Keyboarding', 58, '116'), 412 | (370, 'Document Design Effective Comm', 58, '120'), 413 | (371, 'Medical Coding', 58, '200'), 414 | (372, 'Inpatient Billing', 58, '202'), 415 | (373, 'Professional Office Simulation', 58, '216'), 416 | (374, 'Medical Transcription', 58, '235'), 417 | (375, 'Medical Terminology', 58, '250'), 418 | (376, 'Office Management', 58, '251'), 419 | (377, 'Office Technology Internship I', 58, '291'), 420 | (378, 'Office Tech Internship II', 58, '292'), 421 | (379, 'Body Conditioning/Ice Skating', 59, '128'), 422 | (380, 'Aerobics & Sports Skills', 59, '134'), 423 | (381, 'Fitness One', 59, '141'), 424 | (382, 'Fitness Two', 59, '142'), 425 | (383, 'Fitness Three', 59, '143'), 426 | (384, 'Varsity Golf - Men', 59, '149'), 427 | (385, 'Self Defense', 59, '150'), 428 | (386, 'Varsity Basketball', 59, '169'), 429 | (387, 'Varsity Softball', 59, '179'), 430 | (388, 'Varsity Equestrian - Huntseat', 59, '182'), 431 | (389, 'Varsity Ice Hockey', 59, '189'), 432 | (390, 'Varsity LaFavioe Women', 59, '190'), 433 | (391, 'Varsity LaFavioe Men', 59, '190'), 434 | (392, 'Varsity Equestrian Western', 59, '196'), 435 | (393, 'Self Defense II', 59, '260'), 436 | (394, 'Introduction To Philosophy', 60, '201'), 437 | (395, 'Professional Ethics', 60, '311'), 438 | (396, 'Introductory Physics I', 61, '107'), 439 | (397, 'General Physics II', 61, '128'), 440 | (398, 'Univ Physics I (Mechanics)', 61, '157'), 441 | (399, 'Univ Physics IV (Optics)', 61, '268'), 442 | (400, 'American Judiciary System', 62, '113'), 443 | (401, 'Introduction to Psychology', 63, '101'), 444 | (402, 'Child Development', 63, '241'), 445 | (403, 'Adolescent Development', 63, '242'), 446 | (404, 'Industrial/Org Psychology', 63, '304'), 447 | (405, 'Research Methods App Psyc II', 63, '362'), 448 | (406, 'Personality', 63, '381'), 449 | (407, 'Group Behavior', 63, '384'), 450 | (408, 'Social Psychology', 63, '386'), 451 | (409, 'Applied Psyc Internship Orient', 63, '405'), 452 | (410, 'Applied Psychology Internship', 63, '406'), 453 | (411, 'Tests and Measures', 63, '461'), 454 | (412, 'Renewable Energy Resources', 64, '102'), 455 | (413, 'Analysis Tech. Renewable Energ', 64, '150'), 456 | (414, 'Intro to Small Wind Systems', 64, '221'), 457 | (415, 'Tower Climbing and Rescue', 64, '225'), 458 | (416, 'Alternative Fuel Vehicles', 64, '306'), 459 | (417, 'Biomass Energy Resources II', 64, '315'), 460 | (418, 'Intro to Solar Thermal Systems', 64, '331'), 461 | (419, 'Solar Photovoltaic Systems', 64, '430'), 462 | (420, 'Systems Integration', 64, '460'), 463 | (421, 'Renewable Energy Internship', 64, '490'), 464 | (422, 'Intro Bldg Materials & Estimat', 65, '160'), 465 | (423, 'Heating And Energy Systems', 65, '260'), 466 | (424, 'Construction Planning & Mgt', 65, '270'), 467 | (425, 'Fundamentals Geospatial System', 66, '303'), 468 | (426, 'Ren Resources Laws & Regs', 66, '305'), 469 | (427, 'Environ Plan and NR Mgt', 66, '332'), 470 | (428, 'Geospatial Tech Applications I', 66, '420'), 471 | (429, 'RREN Internship Orientation', 66, '450'), 472 | (430, 'Internship Renewable Resources', 66, '470'), 473 | (431, 'Training Design & Impl - Hosp', 67, '425'), 474 | (432, 'Assessment Customer Satisfacti', 67, '430'), 475 | (433, 'International Hotel Resort Mgt', 67, '460'), 476 | (434, 'RR Internship Orientation', 67, '470'), 477 | (435, 'Meeting Management', 67, '475'), 478 | (436, 'Internship RR Service Mgt', 67, '480'), 479 | (437, 'Reading Essentials', 68, '087'), 480 | (438, 'Writing Essentials', 68, '088'), 481 | (439, 'Pre-Algebra', 68, '091'), 482 | (440, 'Introduction to Sociology', 69, '101'), 483 | (441, 'Social Problems', 69, '201'), 484 | (442, 'Social Gerontology', 69, '250'), 485 | (443, 'Drugs, Society & Behavior', 69, '270'), 486 | (444, 'Beginning College Spanish 1', 70, '101'), 487 | (445, 'Beginning College Spanish 2', 70, '102'), 488 | (446, 'Spec. Proj Diesel Tech I', 71, '120'), 489 | (447, 'Spec Proj Diesel Tech II', 71, '121'), 490 | (448, 'Spec Proj WoodTech/Rescon II', 71, '127'), 491 | (449, 'Spec Proj Wood Tech/ResCon III', 71, '128'), 492 | (450, 'Special Projects in Business I', 71, '130'), 493 | (451, 'Spec Proj Horticulture I', 71, '136'), 494 | (452, 'Spec Proj:Growing Hops in NY', 71, '136'), 495 | (453, 'Spec Proj Equine I', 71, '146'), 496 | (454, 'Spec Proj Equine II', 71, '147'), 497 | (455, 'Spec Proj Equine III', 71, '148'), 498 | (456, 'Spec Proj Natural Resources I', 71, '177'), 499 | (457, 'Spec Proj Natural Resources II', 71, '178'), 500 | (458, 'Special Project in Dairy', 71, '184'), 501 | (459, 'SPPR in Agriculture I', 71, '190'), 502 | (460, 'SPPR in Agriculture II', 71, '191'), 503 | (461, 'Special Project in RRMT I', 71, '301'), 504 | (462, 'Special Project in RRMT II', 71, '302'), 505 | (463, 'Special Project in RRMT III', 71, '303'), 506 | (464, 'Special Project in Info Tech I', 71, '331'), 507 | (465, 'Special Project Info Tech II', 71, '332'), 508 | (466, 'Special Project Info Tech III', 71, '333'), 509 | (467, 'Upper Level SPPR Ren Energy', 71, '351'), 510 | (468, 'Investigating Cyberculture', 72, '316'), 511 | (469, 'Internship in Tech Management', 73, '480'), 512 | (470, 'Introduction to Theatre', 74, '124'), 513 | (471, 'Theatre Production Laboratory', 74, '150'), 514 | (472, 'Computerized Reservation Syste', 75, '151'), 515 | (473, 'Trav Ind Operations & Admin', 75, '152'), 516 | (474, 'Hotel Operations', 75, '153'), 517 | (475, 'Meeting & Convention Services', 75, '252'), 518 | (476, 'Travel Agency Operations', 75, '253'), 519 | (477, 'Tourism Agency Operations', 75, '255'), 520 | (478, 'University Success Seminar', 76, '100'), 521 | (479, 'Stress and Wellness', 77, '101'), 522 | (480, 'Wood Technology', 78, '160'), 523 | (481, 'Lumber Manufacturing & Grading', 78, '170'), 524 | (482, 'Furniture Design Construction', 78, '180'), 525 | (483, 'Production Maint Supervision', 78, '260'), 526 | (484, 'Cabinet Design/Manufacturing', 78, '271'); 527 | 528 | -- -------------------------------------------------------- 529 | 530 | -- 531 | -- Table structure for table `course_sections` 532 | -- 533 | 534 | DROP TABLE IF EXISTS `course_sections`; 535 | CREATE TABLE IF NOT EXISTS `course_sections` ( 536 | `id` int(11) NOT NULL AUTO_INCREMENT, 537 | `name` varchar(25) NOT NULL, 538 | `course_id` int(11) NOT NULL, 539 | `courseterm_id` int(11) NOT NULL, 540 | `courseCRN` varchar(5) NOT NULL, 541 | `instructor` varchar(25) NOT NULL, 542 | `currentEnrollment` int(11) NOT NULL, 543 | `maxEnrollment` int(11) NOT NULL, 544 | `credits` int(11) NOT NULL, 545 | `identifier` varchar(2) NOT NULL, 546 | PRIMARY KEY (`id`) 547 | ) ENGINE=InnoDB AUTO_INCREMENT=1045 DEFAULT CHARSET=latin1; 548 | 549 | -- 550 | -- Dumping data for table `course_sections` 551 | -- 552 | 553 | INSERT INTO `course_sections` (`id`, `name`, `course_id`, `courseterm_id`, `courseCRN`, `instructor`, `currentEnrollment`, `maxEnrollment`, `credits`, `identifier`) VALUES 554 | (1, '01', 1, 1, '11480', 'Blueport,Thomas A', 0, 30, 3, ''), 555 | (2, '03', 1, 1, '13509', 'Tolls,Robert R', 0, 30, 3, ''), 556 | (3, '01', 2, 1, '10050', 'Butler,Christopher M', 0, 30, 3, ''), 557 | (4, '03', 2, 1, '10048', 'Tolls,Robert R', 0, 30, 3, ''), 558 | (5, '04', 2, 1, '10046', 'Butler,Christopher M', 0, 30, 3, ''), 559 | (6, '05', 2, 1, '14086', 'Butler,Christopher M', 0, 30, 3, ''), 560 | (7, '01', 3, 1, '10069', 'Tolls,Robert R', 0, 30, 3, ''), 561 | (8, '02', 3, 1, '15216', 'Tolls,Robert R', 0, 30, 3, ''), 562 | (9, '01', 4, 1, '15727', 'Cooper,Carol A', 0, 30, 3, ''), 563 | (10, '01', 5, 1, '13610', 'Cooper,Carol A', 0, 30, 3, ''), 564 | (11, '01', 6, 1, '15728', 'Cooper,Carol A', 0, 30, 3, ''), 565 | (12, 'HY1', 7, 1, '10326', 'Cooper,Carol A', 0, 30, 3, ''), 566 | (13, 'SJH', 8, 1, '15130', 'Rodgers,Willis', 0, 0, 3, ''), 567 | (14, '01', 9, 1, '12617', 'Govern,Corey M', 0, 70, 3, ''), 568 | (15, 'LN1', 10, 1, '15563', 'Beck,Kenneth M', 0, 20, 3, ''), 569 | (16, 'LN2', 10, 1, '15928', 'Beck,Kenneth M', 0, 20, 3, ''), 570 | (17, '01', 11, 1, '15492', 'Mintz,Sheila A', 0, 20, 4, ''), 571 | (18, '01', 12, 1, '15494', 'Govern,Corey M', 0, 20, 3, ''), 572 | (19, '01', 13, 1, '15079', 'Mintz,Sheila A', 0, 20, 4, 'A1'), 573 | (20, '01L', 13, 1, '15080', 'Mintz,Sheila A', 0, 10, 0, 'A2'), 574 | (21, '01', 14, 1, '14661', 'Mintz,Sheila A', 0, 20, 3, 'A1'), 575 | (22, '02L', 14, 1, '15652', 'Govern,Corey M', 0, 20, 0, 'A2'), 576 | (23, 'NP1', 15, 1, '15943', 'Mintz,Sheila A', 0, 2, 15, ''), 577 | (24, 'PD1', 15, 1, '15720', 'Mintz,Sheila A', 0, 10, 15, ''), 578 | (25, 'HY1', 16, 1, '15082', 'Mintz,Sheila A', 0, 20, 3, ''), 579 | (26, 'HCS', 17, 1, '15849', 'Enron,Johanna N', 0, 0, 3, ''), 580 | (27, '01L', 18, 1, '14026', 'Carol,Seth A', 0, 12, 0, 'A2'), 581 | (28, '02', 18, 1, '14258', 'Jennings-Walker,Medgarn T', 0, 48, 2, 'A1'), 582 | (29, '02L', 18, 1, '14461', 'Carol,Seth A', 0, 12, 0, 'A2'), 583 | (30, '03L', 18, 1, '14261', 'Carol,Seth A', 0, 12, 0, 'A2'), 584 | (31, '04L', 18, 1, '14263', 'Carol,Seth A', 0, 12, 0, 'A2'), 585 | (32, '01', 19, 1, '10014', 'Kerner,Ford C', 0, 45, 3, 'A1'), 586 | (33, '01L', 19, 1, '10585', 'Kerner,Ford C', 0, 10, 0, 'A2'), 587 | (34, '02L', 19, 1, '10588', 'Kerner,Ford C', 0, 10, 0, 'A2'), 588 | (35, '03L', 19, 1, '10587', 'Kerner,Ford C', 0, 10, 0, 'A2'), 589 | (36, '04L', 19, 1, '10586', 'Kerner,Ford C', 0, 10, 0, 'A2'), 590 | (37, '01', 20, 1, '15561', 'Dess,Walid', 0, 30, 3, 'A1'), 591 | (38, '01L', 20, 1, '15562', 'Dess,Walid', 0, 15, 0, 'A2'), 592 | (39, '01', 21, 1, '14663', 'Favio,Robert R', 0, 48, 3, 'A1'), 593 | (40, '01L', 21, 1, '14664', 'Favio,Robert R', 0, 12, 0, 'A2'), 594 | (41, '02L', 21, 1, '14665', 'Favio,Robert R', 0, 12, 0, 'A2'), 595 | (42, '03L', 21, 1, '14666', 'Favio,Robert R', 0, 14, 0, 'A2'), 596 | (43, '01', 22, 1, '12625', 'Axiom,Jennings-Walker J', 0, 15, 3, 'A1'), 597 | (44, '01L', 22, 1, '12626', 'Axiom,Jennings-Walker J', 0, 15, 0, 'A2'), 598 | (45, '01', 23, 1, '14959', 'Axiom,Jennings-Walker J', 0, 20, 4, 'A1'), 599 | (46, '01L', 23, 1, '14960', 'Axiom,Jennings-Walker J', 0, 20, 0, 'A2'), 600 | (47, '02', 24, 1, '15651', 'Liquid,Graham', 0, 12, 2, ''), 601 | (48, '01', 25, 1, '13457', 'Batch,Frederick W', 0, 36, 5, 'A1'), 602 | (49, '01L', 25, 1, '13458', 'Batch,Frederick W', 0, 10, 0, 'A2'), 603 | (50, '01R', 25, 1, '13510', 'Batch,Frederick W', 0, 36, 0, 'A2'), 604 | (51, '02L', 25, 1, '13459', 'Chevy,Jared T', 0, 10, 0, 'A2'), 605 | (52, '01', 26, 1, '15175', 'Pennington,Jennings-Walke', 0, 0, 0, ''), 606 | (53, '02', 26, 1, '15289', 'Leeroy-Jenkins,Jack K', 0, 10, 0, ''), 607 | (54, '03', 26, 1, '15290', 'Skywalker,Jennings-Walker', 0, 10, 0, ''), 608 | (55, '04', 26, 1, '15423', 'Solo,David S', 0, 0, 0, ''), 609 | (56, '06', 26, 1, '15655', 'Favio,Robert R', 0, 5, 0, ''), 610 | (57, '08', 26, 1, '15752', 'Amys,Aida A', 0, 10, 0, ''), 611 | (58, '09', 26, 1, '15759', 'Newmington,Michelle', 0, 10, 1, ''), 612 | (59, '13', 26, 1, '15797', 'Govern,Corey M', 0, 10, 0, ''), 613 | (60, '15', 26, 1, '15815', 'Huffington,Philip V', 0, 10, 0, ''), 614 | (61, '01', 27, 1, '10017', 'Leeroy-Jenkins,Jack K', 0, 45, 3, 'A1'), 615 | (62, '01L', 27, 1, '10563', 'Leeroy-Jenkins,Jack K', 0, 18, 0, 'A2'), 616 | (63, '02', 27, 1, '10018', 'Leeroy-Jenkins,Jack K', 0, 45, 3, 'A1'), 617 | (64, '02L', 27, 1, '10562', 'Leeroy-Jenkins,Jack K', 0, 18, 0, 'A2'), 618 | (65, '03L', 27, 1, '10561', 'Leeroy-Jenkins,Jack K', 0, 18, 0, 'A2'), 619 | (66, '06L', 27, 1, '12221', 'Leeroy-Jenkins,Jack K', 0, 18, 0, 'A2'), 620 | (67, '01', 28, 1, '10388', 'Leeroy-Jenkins,Jack K', 0, 15, 3, 'A1'), 621 | (68, '01L', 28, 1, '13156', 'Leeroy-Jenkins,Jack K', 0, 15, 0, 'A2'), 622 | (69, '02', 29, 1, '14797', 'Dess,Walid', 0, 16, 2, ''), 623 | (70, '01', 30, 1, '13918', 'Knight,Tiffany R', 0, 60, 3, ''), 624 | (71, '01', 31, 1, '15262', 'TBA', 0, 25, 3, ''), 625 | (72, '02', 31, 1, '15908', 'TBA', 0, 25, 3, ''), 626 | (73, 'HCS', 32, 1, '15850', 'Enron,Johanna N', 0, 0, 3, ''), 627 | (74, 'SJH', 32, 1, '15745', 'Rodgers,Willis', 0, 0, 3, ''), 628 | (75, '01', 33, 1, '15504', 'Megatron,Kurt E', 0, 35, 3, ''), 629 | (76, 'SV1', 33, 1, '15583', 'Jetson,Nicole', 0, 0, 3, ''), 630 | (77, '02', 34, 1, '15323', 'Jennings-Walker,Brent J', 0, 15, 4, 'A1'), 631 | (78, '02L', 34, 1, '15324', 'Jennings-Walker,Brent J', 0, 15, 0, 'A2'), 632 | (79, '01', 35, 1, '15319', 'Jennings-Walker,Deborah J', 0, 15, 3, ''), 633 | (80, '01', 36, 1, '15327', 'Jennings-Walker,Brent J', 0, 15, 4, 'A1'), 634 | (81, '01L', 36, 1, '15328', 'Jennings-Walker,Brent J', 0, 15, 0, 'A2'), 635 | (82, '01', 37, 1, '15320', 'Jennings-Walker,Deborah J', 0, 15, 3, ''), 636 | (83, '01', 38, 1, '15325', 'Jennings-Walker,Brent J', 0, 15, 3, 'A1'), 637 | (84, '01L', 38, 1, '15326', 'Jennings-Walker,Brent J', 0, 15, 0, 'A2'), 638 | (85, '01', 39, 1, '15418', 'TBA', 0, 30, 3, ''), 639 | (86, 'OC1', 39, 1, '15953', 'TBA', 0, 0, 3, ''), 640 | (87, '01', 40, 1, '13634', 'TBA', 0, 12, 2, ''), 641 | (88, '01', 41, 5, '13912', 'Vader-Walker,Daniel P', 0, 30, 3, 'A1'), 642 | (89, '01L', 41, 5, '14151', 'Middleton,Nathan M', 0, 12, 0, 'A2'), 643 | (90, '02L', 41, 5, '14152', 'Middleton,Nathan M', 0, 12, 0, 'A2'), 644 | (91, '01', 42, 6, '13913', 'Vader-Walker,Daniel P', 0, 24, 4, 'A1'), 645 | (92, '01L', 42, 6, '14153', 'Middleton,Nathan M', 0, 12, 0, 'A2'), 646 | (93, '02L', 42, 6, '14154', 'Middleton,Nathan M', 0, 12, 0, 'A2'), 647 | (94, '01', 43, 1, '13914', 'Vader-Walker,Daniel P', 0, 24, 1, ''), 648 | (95, '01', 44, 6, '14052', 'Vader-Walker,Daniel P', 0, 15, 4, 'A1'), 649 | (96, '01L', 44, 6, '14272', 'Vader-Walker,Daniel P', 0, 15, 0, 'A2'), 650 | (97, '01', 45, 5, '14053', 'Vader-Walker,Daniel P', 0, 15, 4, 'A1'), 651 | (98, '01L', 45, 5, '14274', 'Vader-Walker,Daniel P', 0, 15, 0, 'A2'), 652 | (99, '01', 46, 1, '14054', 'Vader-Walker,Daniel P', 0, 24, 1, ''), 653 | (100, '01', 47, 1, '10122', 'Liquid,Graham', 0, 50, 3, 'A1'), 654 | (101, '01L', 47, 1, '13939', 'Liquid,Graham', 0, 12, 0, 'A2'), 655 | (102, '02', 47, 1, '14802', 'Liquid,Graham', 0, 50, 3, 'A1'), 656 | (103, '02L', 47, 1, '15709', 'Liquid,Graham', 0, 12, 0, 'A2'), 657 | (104, '04L', 47, 1, '15711', 'Liquid,Graham', 0, 12, 0, 'A2'), 658 | (105, '05L', 47, 1, '15712', 'Liquid,Graham', 0, 12, 0, 'A2'), 659 | (106, '01', 48, 1, '15019', 'Brent,Rich L', 0, 24, 3, 'A1'), 660 | (107, '01L', 48, 1, '10540', 'Brent,Rich L', 0, 12, 0, 'A2'), 661 | (108, '02', 48, 1, '15191', 'Brent,Rich L', 0, 24, 3, 'A1'), 662 | (109, '02L', 48, 1, '15192', 'Moore,MurCooper D', 0, 12, 0, 'A2'), 663 | (110, '03L', 48, 1, '15193', 'Moore,MurCooper D', 0, 12, 0, 'A2'), 664 | (111, '04L', 48, 1, '15195', 'Moore,MurCooper D', 0, 12, 0, 'A2'), 665 | (112, '01', 49, 1, '10128', 'G-No,Willis S', 0, 36, 3, 'A1'), 666 | (113, '01L', 49, 1, '10484', 'G-No,Willis S', 0, 12, 0, 'A2'), 667 | (114, '01', 50, 7, '15658', 'Adult,Joseph D', 0, 12, 2, 'A1'), 668 | (115, '01L', 50, 7, '15659', 'Adult,Joseph D', 0, 12, 0, 'A2'), 669 | (116, '01', 51, 1, '14123', 'Alexandria,Ronald F', 0, 5, 3, ''), 670 | (117, '01', 52, 1, '15247', 'Alexandria,Ronald F', 0, 20, 1, ''), 671 | (118, '01', 53, 1, '12162', 'Makeme,Loren A', 0, 34, 3, 'A1'), 672 | (119, '02', 53, 1, '12446', 'Makeme,Loren A', 0, 34, 3, 'A1'), 673 | (120, '02L', 53, 1, '12164', 'Makeme,Loren A', 0, 12, 0, 'A2'), 674 | (121, '03', 53, 1, '14669', 'Makeme,Loren A', 0, 34, 3, 'A1'), 675 | (122, '03L', 53, 1, '12212', 'Makeme,Loren A', 0, 12, 0, 'A2'), 676 | (123, '04L', 53, 1, '12456', 'Makeme,Loren A', 0, 12, 0, 'A2'), 677 | (124, '05L', 53, 1, '13400', 'TBA', 0, 12, 0, 'A2'), 678 | (125, '06L', 53, 1, '14670', 'TBA', 0, 12, 0, 'A2'), 679 | (126, '07L', 53, 1, '14805', 'G-No,Willis S', 0, 12, 0, 'A2'), 680 | (127, '08L', 53, 1, '14804', 'Makeme,Loren A', 0, 12, 0, 'A2'), 681 | (128, '01', 54, 1, '10135', 'Alexandria,Ronald F', 0, 24, 3, 'A1'), 682 | (129, '01L', 54, 1, '10444', 'Alexandria,Ronald F', 0, 12, 0, 'A2'), 683 | (130, '01', 55, 1, '10334', 'Grabinnnnnski,Coopermond ', 0, 10, 3, 'A1'), 684 | (131, '01L', 55, 1, '10471', 'Moore,MurCooper D', 0, 10, 0, 'A2'), 685 | (132, '01', 56, 1, '13559', 'Strut,Draymond W', 0, 48, 4, 'A1'), 686 | (133, '01L', 56, 1, '13560', 'Strut,Draymond W', 0, 8, 0, 'A2'), 687 | (134, '02', 56, 1, '14671', 'Strut,Draymond W', 0, 48, 4, 'A1'), 688 | (135, '02L', 56, 1, '13561', 'TBA', 0, 8, 0, 'A2'), 689 | (136, '03L', 56, 1, '13562', 'TBA', 0, 8, 0, 'A2'), 690 | (137, '04L', 56, 1, '14672', 'Strut,Draymond W', 0, 8, 0, 'A2'), 691 | (138, '05L', 56, 1, '14673', 'Strut,Draymond W', 0, 8, 0, 'A2'), 692 | (139, '06L', 56, 1, '14806', 'TBA', 0, 8, 0, 'A2'), 693 | (140, '07L', 56, 1, '14807', 'TBA', 0, 8, 0, 'A2'), 694 | (141, '01', 57, 1, '12092', 'Brent,Rich L', 0, 48, 5, 'A1'), 695 | (142, '01L', 57, 1, '10542', 'Lorem,Andrew P', 0, 10, 0, 'A2'), 696 | (143, '02L', 57, 1, '10543', 'Lorem,Andrew P', 0, 10, 0, 'A2'), 697 | (144, '03L', 57, 1, '12549', 'Brent,Rich L', 0, 10, 0, 'A2'), 698 | (145, '04L', 57, 1, '14919', 'Lorem,Andrew P', 0, 10, 0, 'A2'), 699 | (146, '01', 58, 1, '12098', 'Talbot,Leeroy M', 0, 36, 5, 'A1'), 700 | (147, '01L', 58, 1, '14808', 'Tablit,Ryan M', 0, 12, 0, 'A2'), 701 | (148, '02L', 58, 1, '12316', 'Tablit,Ryan M', 0, 12, 0, 'A2'), 702 | (149, '01', 59, 5, '13298', 'Adult,Joseph D', 0, 12, 1, ''), 703 | (150, '02', 59, 6, '13299', 'Adult,Joseph D', 0, 12, 1, ''), 704 | (151, '03', 59, 6, '15139', 'Liquid,Graham', 0, 12, 1, ''), 705 | (152, '01', 60, 1, '16027', 'Adult,Joseph D', 0, 12, 3, 'A1'), 706 | (153, '01L', 60, 1, '16028', 'Adult,Joseph D', 0, 12, 0, 'A2'), 707 | (154, '01', 61, 1, '15552', 'Talbot,Leeroy M', 0, 12, 6, 'A1'), 708 | (155, '01L', 61, 1, '15553', 'Talbot,Leeroy M', 0, 12, 0, 'A2'), 709 | (156, '01', 62, 1, '14501', 'G-No,Willis S', 0, 36, 3, 'A1'), 710 | (157, '01L', 62, 1, '14502', 'G-No,Willis S', 0, 8, 0, 'A2'), 711 | (158, '02L', 62, 1, '14809', 'G-No,Willis S', 0, 8, 0, 'A2'), 712 | (159, '03L', 62, 1, '15430', 'G-No,Willis S', 0, 8, 0, 'A2'), 713 | (160, '01', 63, 1, '14499', 'Talbot,Leeroy M', 0, 18, 3, 'A1'), 714 | (161, '01L', 63, 1, '14500', 'Talbot,Leeroy M', 0, 18, 0, 'A2'), 715 | (162, '01', 64, 1, '15717', 'Grabinnnnnski,Coopermond ', 0, 24, 3, 'A1'), 716 | (163, '01L', 64, 1, '15018', 'Brownhall,Rich R', 0, 2, 0, 'A2'), 717 | (164, '02L', 64, 1, '15200', 'Brownhall,Rich R', 0, 2, 0, 'A2'), 718 | (165, '04L', 64, 1, '15855', 'Grabinnnnnski,Coopermond ', 0, 2, 0, 'A2'), 719 | (166, '05L', 64, 1, '15856', 'Brownhall,Rich R', 0, 2, 0, 'A2'), 720 | (167, '06L', 64, 1, '15857', 'Brownhall,Rich R', 0, 2, 0, 'A2'), 721 | (168, '08L', 64, 1, '15859', 'Brownhall,Rich R', 0, 2, 0, 'A2'), 722 | (169, '09L', 64, 1, '15860', 'Brownhall,Rich R', 0, 2, 0, 'A2'), 723 | (170, '11L', 64, 1, '15862', 'Brownhall,Rich R', 0, 2, 0, 'A2'), 724 | (171, '01', 65, 1, '15316', 'Alexandria,Ronald F', 0, 24, 3, 'A1'), 725 | (172, '01L', 65, 1, '15317', 'Alexandria,Ronald F', 0, 12, 0, 'A2'), 726 | (173, '01', 66, 1, '15201', 'Grabinnnnnski,Coopermond ', 0, 24, 3, 'A1'), 727 | (174, '01L', 66, 1, '15202', 'Middleton,Nathan M', 0, 2, 0, 'A2'), 728 | (175, '04L', 66, 1, '15878', 'Grabinnnnnski,Coopermond ', 0, 2, 0, 'A2'), 729 | (176, '06L', 66, 1, '15880', 'Brownhall,Rich R', 0, 2, 0, 'A2'), 730 | (177, '07L', 66, 1, '15881', 'Brownhall,Rich R', 0, 2, 0, 'A2'), 731 | (178, '08L', 66, 1, '15882', 'Brownhall,Rich R', 0, 2, 0, 'A2'), 732 | (179, '09L', 66, 1, '15883', 'Brownhall,Rich R', 0, 2, 0, 'A2'), 733 | (180, '10L', 66, 1, '15884', 'Brownhall,Rich R', 0, 2, 0, 'A2'), 734 | (181, '11L', 66, 1, '15885', 'Brownhall,Rich R', 0, 2, 0, 'A2'), 735 | (182, '12L', 66, 1, '15886', 'Brownhall,Rich R', 0, 2, 0, 'A2'), 736 | (183, '01', 67, 1, '15622', 'Grabinnnnnski,Coopermond ', 0, 20, 3, 'A1'), 737 | (184, '01L', 67, 1, '15623', 'Moore,MurCooper D', 0, 10, 0, 'A2'), 738 | (185, '02', 67, 1, '15810', 'Grabinnnnnski,Coopermond ', 0, 20, 3, 'A1'), 739 | (186, '02L', 67, 1, '15624', 'Moore,MurCooper D', 0, 10, 0, 'A2'), 740 | (187, '01', 68, 1, '15286', 'Grabinnnnnski,Coopermond ', 0, 20, 1, ''), 741 | (188, 'NP1', 69, 1, '15944', 'Grabinnnnnski,Coopermond ', 0, 1, 12, ''), 742 | (189, 'PD1', 69, 1, '14725', 'Grabinnnnnski,Coopermond ', 0, 30, 12, ''), 743 | (190, '01', 70, 1, '15958', 'O''Grande,Dean P', 0, 40, 4, 'A1'), 744 | (191, '01L', 70, 1, '15959', 'Blitz,Maggie', 0, 20, 0, 'A2'), 745 | (192, '02L', 70, 1, '15960', 'Blitz,Maggie', 0, 20, 0, 'A2'), 746 | (193, 'OC1', 70, 1, '16031', 'Safety,Chad', 0, 20, 3, 'A1'), 747 | (194, 'OCL', 70, 1, '16032', 'Safety,Chad', 0, 20, 1, 'A2'), 748 | (195, '01', 71, 1, '13412', 'Pennington,Jennings-Walke', 0, 40, 3, 'A1'), 749 | (196, '03L', 71, 1, '13416', 'Pennington,Jennings-Walke', 0, 20, 0, 'A2'), 750 | (197, '01', 72, 1, '13985', 'Carll,Jerry J', 0, 45, 3, ''), 751 | (198, '01L', 72, 1, '14570', 'RanChevy,Shirley E', 0, 20, 1, ''), 752 | (199, '02', 72, 1, '13811', 'RanChevy,Shirley E', 0, 45, 3, ''), 753 | (200, '02L', 72, 1, '14983', 'Carll,Jerry J', 0, 20, 1, ''), 754 | (201, '03', 72, 1, '14395', 'RanChevy,Shirley E', 0, 45, 3, ''), 755 | (202, '03L', 72, 1, '13812', 'Carll,Jerry J', 0, 20, 1, ''), 756 | (203, '04', 72, 1, '14917', 'Carll,Jerry J', 0, 45, 3, ''), 757 | (204, '04L', 72, 1, '13814', 'Carll,Jerry J', 0, 20, 1, ''), 758 | (205, '05L', 72, 1, '15441', 'RanChevy,Shirley E', 0, 20, 1, ''), 759 | (206, '06L', 72, 1, '13815', 'Carll,Jerry J', 0, 20, 1, ''), 760 | (207, '07L', 72, 1, '14399', 'RanChevy,Shirley E', 0, 20, 1, ''), 761 | (208, '08L', 72, 1, '13984', 'Carll,Jerry J', 0, 20, 1, ''), 762 | (209, '09L', 72, 1, '14727', 'RanChevy,Shirley E', 0, 20, 1, ''), 763 | (210, '02', 73, 1, '15783', 'Blitz,Maggie', 0, 30, 3, ''), 764 | (211, '01', 74, 1, '14276', 'O''Grande,Dean P', 0, 40, 4, 'A1'), 765 | (212, '01L', 74, 1, '14084', 'Blitz,Maggie', 0, 20, 0, 'A2'), 766 | (213, '02', 74, 1, '11244', 'Blitz,Maggie', 0, 40, 4, 'A1'), 767 | (214, '02L', 74, 1, '11657', 'Safety,Chad', 0, 20, 0, 'A2'), 768 | (215, '03L', 74, 1, '14083', 'Blitz,Maggie', 0, 20, 0, 'A2'), 769 | (216, '04L', 74, 1, '11655', 'Blitz,Maggie', 0, 20, 0, 'A2'), 770 | (217, '01', 75, 1, '13997', 'O''Grande,Dean P', 0, 23, 4, 'A1'), 771 | (218, '02L', 75, 1, '11661', 'O''Grande,Dean P', 0, 23, 0, 'A2'), 772 | (219, '01', 76, 1, '14481', 'Lolz,Shane', 0, 20, 3, 'A1'), 773 | (220, '01L', 76, 1, '14482', 'Lolz,Shane', 0, 20, 0, 'A2'), 774 | (221, '01', 77, 1, '15021', 'Ticen,Diane', 0, 100, 4, 'A1'), 775 | (222, '01L', 77, 1, '15287', 'Kinney,Kristen L', 0, 20, 0, 'A2'), 776 | (223, '02L', 77, 1, '15022', 'Lolz,Shane', 0, 20, 0, 'A2'), 777 | (224, '03L', 77, 1, '15598', 'Kinney,Kristen L', 0, 20, 0, 'A2'), 778 | (225, '04L', 77, 1, '15023', 'Lolz,Shane', 0, 20, 0, 'A2'), 779 | (226, '05L', 77, 1, '15439', 'Lolz,Shane', 0, 20, 0, 'A2'), 780 | (227, '01', 78, 1, '11257', 'Ticen,Diane', 0, 60, 4, 'A1'), 781 | (228, '01L', 78, 1, '15625', 'Lolz,Shane', 0, 20, 0, 'A2'), 782 | (229, '02', 78, 1, '14767', 'Ticen,Diane', 0, 80, 4, 'A1'), 783 | (230, '02L', 78, 1, '11690', 'Reagess,Jan', 0, 20, 0, 'A2'), 784 | (231, '03L', 78, 1, '11684', 'Lolz,Shane', 0, 20, 0, 'A2'), 785 | (232, '04L', 78, 1, '12826', 'Reagess,Jan', 0, 20, 0, 'A2'), 786 | (233, '05L', 78, 1, '11686', 'Reagess,Jan', 0, 20, 0, 'A2'), 787 | (234, '06L', 78, 1, '11687', 'Lolz,Shane', 0, 20, 0, 'A2'), 788 | (235, '01', 79, 1, '14049', 'O''Grande,Dean P', 0, 20, 4, 'A1'), 789 | (236, '01L', 79, 1, '14051', 'O''Grande,Dean P', 0, 20, 0, 'A2'), 790 | (237, '01', 80, 1, '15793', 'Reagess,Jan', 0, 40, 4, 'A1'), 791 | (238, '01L', 80, 1, '15794', 'Reagess,Jan', 0, 20, 0, 'A2'), 792 | (239, '02L', 80, 1, '15795', 'Reagess,Jan', 0, 20, 0, 'A2'), 793 | (240, 'LN1', 81, 1, '15219', 'Ticen,Diane', 0, 20, 3, ''), 794 | (241, '02', 82, 1, '13204', 'TBA', 0, 30, 3, ''), 795 | (242, '01', 83, 1, '10043', 'Blueport,Thomas A', 0, 30, 3, ''), 796 | (243, '02', 83, 1, '10041', 'Blueport,Thomas A', 0, 30, 3, ''), 797 | (244, '01', 84, 1, '13502', 'Doe,Wayne J', 0, 18, 3, ''), 798 | (245, '01', 85, 1, '10075', 'Cooper,Carol A', 0, 30, 3, ''), 799 | (246, '02', 85, 1, '10074', 'Fowler,Amy G', 0, 30, 3, ''), 800 | (247, '03', 85, 1, '10073', 'Fowler,Amy G', 0, 30, 3, ''), 801 | (248, '03', 86, 1, '13493', 'Tungeston,Phyllis', 0, 25, 3, ''), 802 | (249, '04', 86, 1, '12929', 'Tungeston,Phyllis', 0, 30, 3, ''), 803 | (250, '05', 86, 1, '15009', 'Washington,Cydney', 0, 30, 3, ''), 804 | (251, '06', 86, 1, '15218', 'Washington,Cydney', 0, 30, 3, ''), 805 | (252, '01', 87, 1, '10100', 'Doh,Judith A', 0, 25, 3, ''), 806 | (253, '02', 87, 1, '10099', 'Doh,Judith A', 0, 30, 3, ''), 807 | (254, '04', 87, 1, '14257', 'Tungeston,Phyllis', 0, 30, 3, ''), 808 | (255, '06', 87, 1, '15188', 'Washington,Cydney', 0, 30, 3, ''), 809 | (256, 'CHS', 87, 1, '13210', 'Reforoh,Elizabeth A', 0, 0, 3, ''), 810 | (257, 'LN1', 87, 1, '13232', 'Doh,Judith A', 0, 20, 3, ''), 811 | (258, '01', 88, 1, '15118', 'Doh,Judith A', 0, 30, 3, ''), 812 | (259, 'LN1', 88, 1, '15076', 'Boyle,Melinda E', 0, 20, 3, ''), 813 | (260, '01', 89, 1, '10874', 'Cooper,Carol A', 0, 30, 3, ''), 814 | (261, '01', 90, 1, '10426', 'Washington,Cydney', 0, 25, 3, ''), 815 | (262, '01', 91, 1, '12342', 'Blueport,Thomas A', 0, 30, 3, ''), 816 | (263, '01', 92, 1, '10953', 'Amussing,Alfred P', 0, 30, 3, ''), 817 | (264, '01', 93, 1, '15341', 'Tolls,Robert R', 0, 25, 3, ''), 818 | (265, '01', 94, 1, '10103', 'Rejoyce,ShEnron Y', 0, 20, 3, ''), 819 | (266, '02', 94, 1, '10101', 'Rejoyce,ShEnron Y', 0, 20, 3, ''), 820 | (267, '03', 94, 1, '12195', 'Boyle,Melinda E', 0, 20, 3, ''), 821 | (268, '01', 95, 1, '15893', 'Rejoyce,ShEnron Y', 0, 30, 3, ''), 822 | (269, '01', 96, 1, '14546', 'Amussing,Alfred P', 0, 20, 3, ''), 823 | (270, '02', 96, 1, '14980', 'Amussing,Alfred P', 0, 20, 3, ''), 824 | (271, '03', 96, 1, '14948', 'Amussing,Alfred P', 0, 30, 3, ''), 825 | (272, '01', 97, 1, '14329', 'Straighter,Linda F', 0, 20, 3, ''), 826 | (273, '02', 97, 1, '14389', 'Straighter,Linda F', 0, 20, 3, ''), 827 | (274, '04', 97, 1, '14697', 'Straighter,Linda F', 0, 20, 3, ''), 828 | (275, '02', 98, 1, '15010', 'Doh,Judith A', 0, 20, 3, ''), 829 | (276, '01', 99, 1, '15189', 'Tungeston,Phyllis', 0, 20, 3, ''), 830 | (277, '02', 99, 1, '15457', 'Tungeston,Phyllis', 0, 20, 3, ''), 831 | (278, '01', 100, 1, '15871', 'Blueport,Thomas A', 0, 20, 3, ''), 832 | (279, '01', 101, 1, '14906', 'Butler,Christopher M', 0, 30, 3, ''), 833 | (280, '01', 102, 1, '15726', 'Boyle,Melinda E', 0, 20, 3, ''), 834 | (281, '01', 103, 1, '15610', 'Straighter,Linda F', 0, 20, 3, ''), 835 | (282, '01', 104, 1, '14680', 'Butler,Christopher M', 0, 30, 3, ''), 836 | (283, '01', 105, 1, '15462', 'Washington,Cydney', 0, 20, 3, ''), 837 | (284, '01', 106, 1, '14512', 'Amussing,Alfred P', 0, 20, 3, ''), 838 | (285, '01', 107, 1, '15611', 'Straighter,Linda F', 0, 20, 3, ''), 839 | (286, '02', 108, 1, '12322', 'Syke,Robert', 0, 0, 1, ''), 840 | (287, '03', 108, 1, '15181', 'Guess,Draymond', 0, 15, 1, ''), 841 | (288, '04', 108, 1, '15182', 'Guess,Draymond', 0, 15, 1, ''), 842 | (289, '05', 108, 1, '13567', 'Guess,Draymond', 0, 15, 1, ''), 843 | (290, '01', 109, 1, '14226', 'Basil,Mehmet', 0, 30, 2, 'A1'), 844 | (291, '01L', 109, 1, '15183', 'Basil,Mehmet', 0, 12, 0, 'A2'), 845 | (292, '01L', 110, 1, '15784', 'Basil,Mehmet', 0, 15, 2, ''), 846 | (293, '02', 111, 1, '14061', 'Doe,Wayne J', 0, 20, 3, ''), 847 | (294, '01', 112, 1, '13916', 'Washington,Joan M', 0, 20, 3, ''), 848 | (295, '01', 113, 1, '11264', 'McArthur,Mark P', 0, 80, 3, 'A1'), 849 | (296, '01L', 113, 1, '11697', 'McArthur,Mark P', 0, 15, 1, 'A2'), 850 | (297, '02L', 113, 1, '14978', 'McArthur,Mark P', 0, 15, 1, 'A2'), 851 | (298, '03L', 113, 1, '12219', 'Safety,Chad', 0, 15, 1, 'A2'), 852 | (299, '04L', 113, 1, '14175', 'McArthur,Mark P', 0, 15, 1, 'A2'), 853 | (300, '05L', 113, 1, '11699', 'McArthur,Mark P', 0, 15, 1, 'A2'), 854 | (301, 'OC1', 113, 1, '15307', 'Safety,Chad', 0, 20, 3, 'A1'), 855 | (302, 'OCL', 113, 1, '15442', 'Safety,Chad', 0, 20, 1, 'A2'), 856 | (303, '01', 114, 1, '11265', 'Harbor,Arthur', 0, 20, 3, 'A1'), 857 | (304, '01L', 114, 1, '11702', 'Harbor,Arthur', 0, 20, 1, 'A2'), 858 | (305, '01', 115, 1, '11269', 'Harbor,Arthur', 0, 20, 3, 'A1'), 859 | (306, '01L', 115, 1, '14486', 'Harbor,Arthur', 0, 20, 1, 'A2'), 860 | (307, '01', 116, 1, '15964', 'McArthur,Mark P', 0, 20, 3, 'A1'), 861 | (308, '01L', 116, 1, '15965', 'McArthur,Mark P', 0, 20, 1, 'A2'), 862 | (309, '01', 117, 1, '11273', 'Harbor,Arthur', 0, 10, 3, 'A1'), 863 | (310, '01L', 117, 1, '11719', 'Harbor,Arthur', 0, 10, 1, 'A2'), 864 | (311, 'HY1', 118, 1, '15628', 'Livingston,David', 0, 30, 3, ''), 865 | (312, 'HY2', 118, 1, '15792', 'Marcoux,Amy', 0, 30, 3, ''), 866 | (313, 'HY3', 118, 1, '15853', 'Normalization,Roberte H', 0, 30, 3, ''), 867 | (314, 'HY4', 118, 1, '15631', 'TBA', 0, 30, 3, ''), 868 | (315, 'HY5', 118, 1, '15629', 'TBA', 0, 30, 3, ''), 869 | (316, 'HY6', 118, 1, '15630', 'TBA', 0, 30, 3, ''), 870 | (317, '01', 119, 1, '14141', 'Marcoux,Amy', 0, 20, 3, ''), 871 | (318, '01', 120, 1, '15343', 'Marcoux,Amy', 0, 24, 3, ''), 872 | (319, '01', 121, 1, '14284', 'Geoff,Patrick J', 0, 30, 3, 'A1'), 873 | (320, '01L', 121, 1, '14279', 'Geoff,Patrick J', 0, 12, 0, 'A2'), 874 | (321, '02L', 121, 1, '14280', 'Geoff,Patrick J', 0, 12, 0, 'A2'), 875 | (322, '03L', 121, 1, '14281', 'Kinzelton,Carol R', 0, 12, 0, 'A2'), 876 | (323, '02', 122, 1, '14134', 'Normalization,Roberte H', 0, 20, 3, ''), 877 | (324, '01', 123, 1, '11831', 'Livingston,David', 0, 20, 3, ''), 878 | (325, '01', 124, 1, '15103', 'Yi,Yea-Chyn', 0, 20, 3, 'A1'), 879 | (326, '01L', 124, 1, '15105', 'Yi,Yea-Chyn', 0, 12, 0, 'A2'), 880 | (327, '02L', 124, 1, '15106', 'Yi,Yea-Chyn', 0, 12, 0, 'A2'), 881 | (328, '01', 125, 1, '14161', 'Friar,Alvin G', 0, 30, 3, ''), 882 | (329, '01', 126, 1, '14295', 'Kinzelton,Carol R', 0, 20, 3, ''), 883 | (330, '01', 127, 1, '15301', 'Livingston,David', 0, 20, 3, ''), 884 | (331, '01', 128, 1, '14714', 'Yi,Yea-Chyn', 0, 30, 3, ''), 885 | (332, '01', 129, 1, '15923', 'Friar,Alvin G', 0, 18, 3, ''), 886 | (333, '01', 130, 1, '13376', 'Normalization,Roberte H', 0, 20, 3, ''), 887 | (334, '01', 131, 1, '14419', 'Livingston,David', 0, 20, 3, 'A1'), 888 | (335, '01L', 131, 1, '14420', 'Livingston,David', 0, 20, 0, 'A2'), 889 | (336, '02', 132, 1, '14946', 'Normalization,Roberte H', 0, 20, 3, ''), 890 | (337, '01', 133, 1, '14471', 'Yi,Yea-Chyn', 0, 20, 3, ''), 891 | (338, '01', 134, 1, '14474', 'Geoff,Patrick J', 0, 20, 3, ''), 892 | (339, '01', 135, 1, '14300', 'Friar,Alvin G', 0, 20, 3, 'A1'), 893 | (340, '01L', 135, 1, '14301', 'Friar,Alvin G', 0, 20, 0, 'A2'), 894 | (341, '01', 136, 1, '14776', 'Geoff,Patrick J', 0, 18, 3, ''), 895 | (342, '01', 137, 1, '14475', 'Marcoux,Amy', 0, 20, 3, ''), 896 | (343, '01', 138, 1, '15302', 'Yi,Yea-Chyn', 0, 18, 1, ''), 897 | (344, '01', 139, 1, '14469', 'Kinzelton,Carol R', 0, 24, 3, ''), 898 | (345, 'NP1', 140, 1, '15749', 'Friar,Alvin G', 0, 12, 12, ''), 899 | (346, 'PD1', 140, 1, '15627', 'Friar,Alvin G', 0, 12, 12, ''), 900 | (347, '01', 141, 1, '15565', 'TBA', 0, 35, 3, ''), 901 | (348, '01', 142, 1, '15208', 'Doberman,Diane M', 0, 35, 3, ''), 902 | (349, '02', 142, 1, '15656', 'Ballestra,Donielle H', 0, 35, 3, ''), 903 | (350, '03', 142, 1, '15924', 'Ballestra,Donielle H', 0, 35, 3, ''), 904 | (351, '01', 143, 1, '15210', 'Legstrong,Steven J', 0, 35, 3, ''), 905 | (352, '02', 143, 1, '15666', 'Legstrong,Steven J', 0, 35, 3, ''), 906 | (353, '03', 143, 1, '15205', 'Legstrong,Steven J', 0, 35, 3, ''), 907 | (354, '01', 144, 1, '15821', 'Scialabba,Mark D', 0, 35, 3, ''), 908 | (355, '01', 145, 1, '15306', 'Tungeston,Christina M', 0, 25, 3, ''), 909 | (356, '02', 145, 1, '15694', 'Tungeston,Christina M', 0, 25, 3, ''), 910 | (357, '01', 146, 1, '15305', 'Legstrong,Steven J', 0, 35, 3, ''), 911 | (358, '02', 146, 1, '15693', 'Scialabba,Mark D', 0, 35, 3, ''), 912 | (359, '01', 147, 1, '15695', 'Ballestra,Donielle H', 0, 35, 3, ''), 913 | (360, '01', 148, 1, '15866', 'Scampi,Robert W', 0, 24, 3, ''), 914 | (361, '01', 149, 1, '15867', 'Legstrong-SeMcQueen,Clare', 0, 35, 3, ''), 915 | (362, '01', 150, 1, '15496', 'Ballestra,Donielle H', 0, 24, 3, ''), 916 | (363, '02', 150, 1, '15921', 'Ballestra,Donielle H', 0, 24, 3, ''), 917 | (364, '01', 151, 1, '15498', 'TBA', 0, 25, 3, ''), 918 | (365, '01', 152, 1, '15952', 'Zi,Draymond H', 0, 35, 3, ''), 919 | (366, '01', 153, 1, '15499', 'Legstrong-SeMcQueen,Clare', 0, 12, 1, ''), 920 | (367, '02', 153, 1, '15864', 'Legstrong-SeMcQueen,Clare', 0, 12, 1, ''), 921 | (368, 'NP1', 154, 1, '15648', 'Legstrong-SeMcQueen,Clare', 0, 12, 15, ''), 922 | (369, 'NP2', 154, 1, '15865', 'Legstrong-SeMcQueen,Clare', 0, 12, 15, ''), 923 | (370, 'PD1', 154, 1, '15922', 'Legstrong-SeMcQueen,Clare', 0, 12, 15, ''), 924 | (371, '01', 155, 1, '15272', 'Hitchingston,Justin', 0, 20, 3, ''), 925 | (372, '01', 156, 7, '15273', 'Archemedes,Melissa A', 0, 20, 2, ''), 926 | (373, '01', 157, 1, '15274', 'Nastiche,Geoff B', 0, 20, 3, ''), 927 | (374, '01', 158, 1, '11411', 'Whit,Mark R', 0, 25, 3, ''), 928 | (375, '02', 158, 1, '11409', 'Arazanka,Devon', 0, 25, 3, ''), 929 | (376, '03', 158, 1, '11407', 'Whit,Mark R', 0, 25, 3, ''), 930 | (377, '04', 158, 1, '12423', 'Hinkle,Carol', 0, 25, 3, ''), 931 | (378, '05', 158, 1, '13012', 'Hinkle,Carol', 0, 25, 3, ''), 932 | (379, '01', 159, 1, '12627', 'Whit,Mark R', 0, 25, 3, ''), 933 | (380, 'OC1', 159, 1, '14338', 'TBA', 0, 0, 3, ''), 934 | (381, 'OC2', 159, 1, '16045', 'TBA', 0, 0, 3, ''), 935 | (382, '03', 160, 1, '14877', 'Loope,Andres G', 0, 25, 3, ''), 936 | (383, '06', 160, 1, '14881', 'Sydoriw,Salizar W', 0, 25, 3, ''), 937 | (384, 'OC1', 160, 1, '14875', 'TBA', 0, 0, 3, ''), 938 | (385, 'OC2', 160, 1, '14886', 'TBA', 0, 0, 3, ''), 939 | (386, '01', 161, 1, '10152', 'Peepe,Laura M', 0, 25, 3, ''), 940 | (387, '02', 161, 1, '10151', 'Gargunkle,Timothy', 0, 25, 3, ''), 941 | (388, '03', 161, 1, '10150', 'Loope,Andres G', 0, 25, 3, ''), 942 | (389, '04', 161, 1, '10148', 'Gargunkle,Timothy', 0, 25, 3, ''), 943 | (390, '05', 161, 1, '13249', 'Efimenko,Enron J', 0, 25, 3, ''), 944 | (391, '06', 161, 1, '12956', 'Arazanka,Devon', 0, 25, 3, ''), 945 | (392, '07', 161, 1, '13709', 'Gargunkle,Timothy', 0, 25, 3, ''), 946 | (393, '08', 161, 1, '13788', 'Peepe,Laura M', 0, 25, 3, ''), 947 | (394, '09', 161, 1, '14405', 'Gargunkle,Timothy', 0, 25, 3, ''), 948 | (395, '11', 161, 1, '14445', 'Pisiak,Rocke', 0, 25, 3, ''), 949 | (396, 'BAH', 161, 1, '13789', 'TBA', 0, 0, 3, ''), 950 | (397, 'BNV', 161, 1, '14423', 'TBA', 0, 0, 3, ''), 951 | (398, 'OC1', 161, 1, '14444', 'TBA', 0, 0, 3, ''), 952 | (399, 'OC2', 161, 1, '14874', 'TBA', 0, 0, 3, ''), 953 | (400, '01', 162, 1, '10210', 'Peepe,Laura M', 0, 35, 3, ''), 954 | (401, '02', 162, 1, '10209', 'Deep,Vickia T', 0, 35, 3, ''), 955 | (402, '03', 162, 1, '10208', 'Deep,Vickia T', 0, 35, 3, ''), 956 | (403, '05', 162, 1, '10206', 'Efimenko,Enron J', 0, 35, 3, ''), 957 | (404, '06', 162, 1, '10205', 'Efimenko,Enron J', 0, 35, 3, ''), 958 | (405, '07', 162, 1, '10204', 'Loope,Andres G', 0, 35, 3, ''), 959 | (406, '11', 162, 1, '10232', 'Arazanka,Devon', 0, 35, 3, ''), 960 | (407, '18', 162, 1, '10225', 'Sydoriw,Salizar W', 0, 35, 3, ''), 961 | (408, '20', 162, 1, '14564', 'TBA', 0, 35, 3, ''), 962 | (409, 'OC2', 162, 1, '10226', 'TBA', 0, 0, 3, ''), 963 | (410, '01', 163, 1, '13370', 'Sydoriw,Salizar W', 0, 25, 3, ''), 964 | (411, '04', 163, 1, '13434', 'TBA', 0, 25, 3, ''), 965 | (412, '10', 163, 1, '14019', 'Pisiak,Rocke', 0, 25, 3, ''), 966 | (413, '01', 164, 1, '15785', 'Loope,Andres G', 0, 25, 3, ''), 967 | (414, '01', 165, 1, '14563', 'Whit,Mark R', 0, 25, 3, ''), 968 | (415, 'HY2', 165, 1, '15768', 'Efimenko,Enron J', 0, 25, 3, ''), 969 | (416, 'LN1', 165, 1, '14155', 'Pisiak,Rocke', 0, 25, 3, ''), 970 | (417, 'LN2', 165, 1, '14156', 'Pisiak,Rocke', 0, 25, 3, ''), 971 | (418, '01', 166, 1, '11606', 'O''Neil,Carol', 0, 16, 3, ''), 972 | (419, '01', 167, 1, '12858', 'Farrell,Joe', 0, 16, 3, ''), 973 | (420, '01', 168, 1, '11607', 'O''Neil,Carol', 0, 16, 3, ''), 974 | (421, '01', 169, 1, '16046', 'Lupino,Antonio', 0, 10, 4, 'A1'), 975 | (422, '01L', 169, 1, '16047', 'Lupino,Antonio', 0, 10, 0, 'A2'), 976 | (423, '01', 170, 1, '15875', 'Beele,Kerry J', 0, 20, 3, 'A1'), 977 | (424, '01L', 170, 1, '15876', 'Beele,Kerry J', 0, 10, 0, 'A2'), 978 | (425, '02L', 170, 1, '16048', 'Beele,Kerry J', 0, 10, 0, 'A2'), 979 | (426, '01', 171, 1, '15969', 'Beele,Kerry J', 0, 10, 6, 'A1'), 980 | (427, '01L', 171, 1, '15970', 'Beele,Kerry J', 0, 10, 0, 'A2'), 981 | (428, '01', 172, 1, '10011', 'Adams,Stephenn E', 0, 50, 3, 'A1'), 982 | (429, '01L', 172, 1, '10686', 'Adams,Stephenn E', 0, 25, 0, 'A2'), 983 | (430, '03L', 172, 1, '10687', 'Adams,Stephenn E', 0, 25, 0, 'A2'), 984 | (431, '01', 173, 1, '12899', 'Adams,Stephenn E', 0, 50, 1, ''), 985 | (432, '01', 174, 1, '12127', 'Skywalker,Jennings-Walker', 0, 50, 3, ''), 986 | (433, '01L', 175, 1, '11572', 'Bossard,Shawn', 0, 50, 1, ''), 987 | (434, '01L', 176, 1, '13903', 'Bossard,Shawn', 0, 50, 1, ''), 988 | (435, '01', 177, 1, '11826', 'Skywalker,Jennings-Walker', 0, 24, 2, 'A1'), 989 | (436, '01L', 177, 1, '13641', 'Skywalker,Jennings-Walker', 0, 24, 0, 'A2'), 990 | (437, '01', 178, 1, '10021', 'Skywalker,Jennings-Walker', 0, 40, 3, 'A1'), 991 | (438, '01L', 178, 1, '10481', 'Skywalker,Jennings-Walker', 0, 20, 0, 'A2'), 992 | (439, '03L', 178, 1, '10482', 'Skywalker,Jennings-Walker', 0, 20, 0, 'A2'), 993 | (440, '01', 179, 1, '12900', 'Adams,Stephenn E', 0, 50, 1, ''), 994 | (441, '01', 180, 1, '14431', 'Skywalker,Jennings-Walker', 0, 6, 16, ''), 995 | (442, '01', 181, 1, '14220', 'Adams,Stephenn E', 0, 24, 3, 'A1'), 996 | (443, '01L', 181, 1, '14221', 'Adams,Stephenn E', 0, 24, 0, 'A2'), 997 | (444, '01', 182, 1, '13604', 'Favio,Robert R', 0, 50, 4, 'A1'), 998 | (445, '01L', 182, 1, '13627', 'Chevy,Jared T', 0, 12, 0, 'A2'), 999 | (446, '02L', 182, 1, '14516', 'Chevy,Jared T', 0, 12, 0, 'A2'), 1000 | (447, '03L', 182, 1, '13605', 'Favio,Robert R', 0, 12, 0, 'A2'), 1001 | (448, '01', 183, 1, '13606', 'Favio,Robert R', 0, 40, 4, 'A1'), 1002 | (449, '01L', 183, 1, '13607', 'Favio,Robert R', 0, 12, 0, 'A2'), 1003 | (450, '02L', 183, 1, '14398', 'Favio,Robert R', 0, 12, 0, 'A2'), 1004 | (451, '01', 184, 1, '15241', 'Axiom,Jennings-Walker J', 0, 42, 4, 'A1'), 1005 | (452, '01L', 184, 1, '15242', 'Axiom,Jennings-Walker J', 0, 14, 0, 'A2'), 1006 | (453, '02L', 184, 1, '15243', 'Axiom,Jennings-Walker J', 0, 14, 0, 'A2'), 1007 | (454, '03L', 184, 1, '15426', 'Axiom,Jennings-Walker J', 0, 14, 0, 'A2'), 1008 | (455, '01', 185, 1, '14840', 'Batch,Frederick W', 0, 5, 1, ''), 1009 | (456, '01', 186, 1, '13600', 'Batch,Frederick W', 0, 24, 3, 'A1'), 1010 | (457, '02L', 186, 1, '13922', 'Batch,Frederick W', 0, 12, 0, 'A2'), 1011 | (458, 'OX1', 187, 1, '16020', 'Borger,Roberte', 0, 0, 0, ''), 1012 | (459, 'OC1', 188, 1, '15997', 'Borger,Roberte', 0, 0, 0, ''), 1013 | (460, 'OC2', 188, 1, '15998', 'Baggett,Jack J', 0, 0, 0, ''), 1014 | (461, 'OC3', 188, 1, '16023', 'Borger,Roberte', 0, 0, 0, ''), 1015 | (462, 'OC4', 188, 1, '16025', 'Baggett,Jack J', 0, 0, 0, ''), 1016 | (463, 'OX1', 188, 1, '16024', 'Borger,Roberte', 0, 0, 0, ''), 1017 | (464, 'OC1', 189, 1, '15999', 'Baggett,Jack J', 0, 0, 0, ''), 1018 | (465, 'OC2', 189, 1, '16026', 'Baggett,Jack J', 0, 0, 0, ''), 1019 | (466, 'OC1', 190, 1, '16001', 'Baggett,Jack J', 0, 0, 0, ''), 1020 | (467, 'OC3', 190, 1, '16022', 'Baggett,Jack J', 0, 0, 0, ''), 1021 | (468, 'OC1', 191, 1, '16021', 'Borger,Roberte', 0, 0, 0, ''), 1022 | (469, '01', 192, 1, '15522', 'Newston,Nga', 0, 35, 3, ''), 1023 | (470, '02', 192, 1, '15523', 'Newston,Nga', 0, 35, 3, ''), 1024 | (471, '03', 192, 1, '15615', 'Newston,Nga', 0, 35, 3, ''), 1025 | (472, '01', 193, 1, '15524', 'Newston,Nga', 0, 35, 3, ''), 1026 | (473, '02', 193, 1, '15525', 'Newston,Nga', 0, 35, 3, ''), 1027 | (474, '01', 194, 1, '14627', 'Peepe,Laura M', 0, 0, 3, ''), 1028 | (475, '1', 195, 1, '15968', 'Peepe,Laura M', 0, 0, 1, ''), 1029 | (476, '01', 196, 1, '15526', 'Luigi,Michael J', 0, 30, 3, ''), 1030 | (477, '01', 197, 1, '15956', 'Civiletti,Rich J', 0, 15, 0, ''), 1031 | (478, '01', 198, 1, '16037', 'Syke,Robert', 0, 15, 3, ''), 1032 | (479, '01', 199, 1, '16039', 'Syke,Robert', 0, 15, 3, ''), 1033 | (480, '01', 200, 1, '16038', 'Syke,Robert', 0, 15, 3, ''), 1034 | (481, 'AFC', 201, 1, '14551', 'Salizar,Vickia L', 0, 0, 3, ''), 1035 | (482, 'NOB', 201, 1, '14371', 'Dewey,Carol', 0, 0, 3, ''), 1036 | (483, '01', 202, 1, '12600', 'Pennington,Jennings-Walke', 0, 40, 2, 'A1'), 1037 | (484, '01L', 202, 1, '12601', 'Pennington,Jennings-Walke', 0, 24, 0, 'A2'), 1038 | (485, '01', 203, 1, '15221', 'Cooper,Carol A', 0, 20, 3, ''), 1039 | (486, '01', 204, 1, '15222', 'Rejoyce,ShEnron Y', 0, 20, 3, ''), 1040 | (487, 'LN1', 205, 1, '15467', 'Rejoyce,ShEnron Y', 0, 8, 15, ''), 1041 | (488, '01', 206, 1, '14433', 'Okereke,Vick I', 0, 30, 3, ''), 1042 | (489, '01', 207, 1, '14921', 'Newmington,Michelle', 0, 0, 1, ''), 1043 | (490, '03', 207, 1, '14923', 'Newmington,Michelle', 0, 12, 1, ''), 1044 | (491, '04', 207, 1, '14924', 'Newmington,Michelle', 0, 12, 1, ''), 1045 | (492, '05', 207, 1, '14925', 'Newmington,Michelle', 0, 12, 1, ''), 1046 | (493, '06', 207, 1, '14926', 'Newmington,Michelle', 0, 12, 1, ''), 1047 | (494, '07', 207, 1, '15527', 'Newmington,Michelle', 0, 12, 1, ''), 1048 | (495, '01', 208, 1, '14927', 'Gagliardi,Sarahphina M', 0, 0, 1, ''), 1049 | (496, '01', 209, 1, '14782', 'Dunn,Parting E', 0, 12, 1, ''), 1050 | (497, '02', 209, 1, '14783', 'Dunn,Parting E', 0, 12, 1, ''), 1051 | (498, '04', 209, 1, '14785', 'Dunn,Parting E', 0, 12, 1, ''), 1052 | (499, '05', 209, 1, '14786', 'Dunn,Parting E', 0, 12, 1, ''), 1053 | (500, '06', 209, 1, '14787', 'Dunn,Parting E', 0, 12, 1, ''), 1054 | (501, '07', 209, 1, '15359', 'Dunn,Parting E', 0, 12, 1, ''), 1055 | (502, '01', 210, 1, '14788', 'Dunn,Parting E', 0, 12, 1, ''), 1056 | (503, '02', 210, 1, '15732', 'Dunn,Parting E', 0, 12, 1, ''), 1057 | (504, '01', 211, 1, '13511', 'TBA', 0, 45, 2, 'A1'), 1058 | (505, '01L', 211, 1, '12135', 'Gagliardi,Sarahphina M', 0, 15, 0, 'A2'), 1059 | (506, '02L', 211, 1, '12168', 'Gagliardi,Sarahphina M', 0, 15, 0, 'A2'), 1060 | (507, '03L', 211, 1, '14355', 'Gagliardi,Sarahphina M', 0, 15, 0, 'A2'), 1061 | (508, '01', 212, 1, '11946', 'Gagliardi,Sarahphina M', 0, 30, 4, ''), 1062 | (509, '01', 213, 1, '14796', 'Esieley,Leeve L', 0, 30, 4, ''), 1063 | (510, '01', 214, 1, '13640', 'Esieley,Leeve L', 0, 10, 4, 'A1'), 1064 | (511, '01L', 214, 1, '13792', 'Esieley,Leeve L', 0, 10, 0, 'A2'), 1065 | (512, '02', 214, 1, '14350', 'TBA', 0, 12, 4, 'A1'), 1066 | (513, '02L', 214, 1, '13791', 'TBA', 0, 12, 0, 'A2'), 1067 | (514, '02', 215, 1, '14347', 'Esieley,Leeve L', 0, 12, 0, 'A1'), 1068 | (515, '02L', 215, 1, '13798', 'Esieley,Leeve L', 0, 12, 0, 'A2'), 1069 | (516, '01', 216, 1, '13597', 'Knight,Willis E', 0, 120, 3, ''), 1070 | (517, '01', 217, 1, '12619', 'Newmington,Michelle', 0, 105, 2, 'A1'), 1071 | (518, '01L', 217, 1, '13786', 'Newmington,Michelle', 0, 105, 0, 'A2'), 1072 | (519, '01', 218, 1, '11576', 'Masa,Michael L', 0, 20, 2, ''), 1073 | (520, '01', 219, 1, '13665', 'Winter,Cole F', 0, 100, 2, ''), 1074 | (521, '01', 220, 1, '11884', 'Seymour,Taeja D', 0, 40, 2, 'A1'), 1075 | (522, '01L', 220, 1, '11885', 'Seymour,Taeja D', 0, 8, 0, 'A2'), 1076 | (523, '02L', 220, 1, '12923', 'Seymour,Taeja D', 0, 12, 0, 'A2'), 1077 | (524, '03L', 220, 1, '12464', 'Seymour,Taeja D', 0, 8, 0, 'A2'), 1078 | (525, '04L', 220, 1, '13700', 'Seymour,Taeja D', 0, 12, 0, 'A2'), 1079 | (526, '05L', 220, 1, '14440', 'Seymour,Taeja D', 0, 8, 0, 'A2'), 1080 | (527, '01', 221, 1, '11945', 'Shantel,Parting M', 0, 6, 1, ''), 1081 | (528, '02', 221, 1, '14780', 'Shantel,Parting M', 0, 10, 1, ''), 1082 | (529, '03', 221, 1, '14781', 'Shantel,Parting M', 0, 10, 1, ''), 1083 | (530, '01', 222, 1, '15378', 'Knight,Willis E', 0, 90, 3, 'A1'), 1084 | (531, '01L', 222, 1, '15379', 'Knight,Willis E', 0, 22, 0, 'A2'), 1085 | (532, '02L', 222, 1, '15380', 'Knight,Willis E', 0, 22, 0, 'A2'), 1086 | (533, '04L', 222, 1, '15382', 'Knight,Willis E', 0, 22, 0, 'A2'), 1087 | (534, '05L', 222, 1, '15528', 'Knight,Willis E', 0, 22, 0, 'A2'), 1088 | (535, '01', 223, 1, '15361', 'Knight,Tiffany R', 0, 110, 3, ''), 1089 | (536, '01L', 224, 1, '15362', 'Knight,Tiffany R', 0, 12, 1, ''), 1090 | (537, '02L', 224, 1, '15363', 'Knight,Tiffany R', 0, 12, 1, ''), 1091 | (538, '03L', 224, 1, '15364', 'Knight,Tiffany R', 0, 12, 1, ''), 1092 | (539, '01', 225, 1, '15735', 'Morgan-Paugh,Parting E', 0, 30, 4, 'A1'), 1093 | (540, '01L', 225, 1, '15736', 'Morgan-Paugh,Parting E', 0, 5, 0, 'A2'), 1094 | (541, '02L', 225, 1, '15897', 'Morgan-Paugh,Parting E', 0, 5, 0, 'A2'), 1095 | (542, '01', 226, 1, '13799', 'Knight,Willis E', 0, 20, 4, 'A1'), 1096 | (543, '01L', 226, 1, '13800', 'Knight,Willis E', 0, 20, 0, 'A2'), 1097 | (544, '01', 227, 1, '15114', 'Morgan-Paugh,Parting E', 0, 40, 2, ''), 1098 | (545, 'NP1', 228, 1, '15945', 'Esieley,Leeve L', 0, 3, 15, ''), 1099 | (546, 'NP2', 228, 1, '15915', 'Morgan-Paugh,Parting E', 0, 10, 15, ''), 1100 | (547, 'PD1', 228, 1, '15942', 'Morgan-Paugh,Parting E', 0, 3, 15, ''), 1101 | (548, 'PD2', 228, 1, '15757', 'Cornwalld,Devonte D', 0, 5, 15, ''), 1102 | (549, 'PD3', 228, 1, '15113', 'Esieley,Leeve L', 0, 10, 15, ''), 1103 | (550, 'PD4', 228, 1, '15112', 'TBA', 0, 10, 15, ''), 1104 | (551, 'PD5', 228, 1, '13525', 'Knight,Willis E', 0, 25, 15, ''), 1105 | (552, '01', 229, 1, '11550', 'Whiteside,Keith A', 0, 20, 5, ''), 1106 | (553, '02', 229, 1, '12922', 'Cornwalld,Devonte D', 0, 20, 5, ''), 1107 | (554, '01', 230, 1, '15425', 'Cornwalld,Devonte D', 0, 10, 4, ''), 1108 | (555, '02', 230, 1, '15990', 'Whiteside,Keith A', 0, 0, 4, ''), 1109 | (556, '01', 231, 1, '13503', 'Cornwalld,Devonte D', 0, 15, 4, 'A1'), 1110 | (557, '02L', 231, 1, '14657', 'Cornwalld,Devonte D', 0, 10, 0, 'A2'), 1111 | (558, '01', 232, 1, '13801', 'Cornwalld,Devonte D', 0, 1, 4, 'A1'), 1112 | (559, '01', 233, 1, '15744', 'Sanders,Carol D', 0, 0, 4, ''), 1113 | (560, '01', 234, 1, '14089', 'Sanders,Carol D', 0, 0, 1, ''), 1114 | (561, '01', 235, 1, '14090', 'Sanders,Carol D', 0, 0, 1, ''), 1115 | (562, '01', 236, 1, '14091', 'Sanders,Carol D', 0, 15, 3, ''), 1116 | (563, '01', 237, 1, '11334', 'Felton,Draymond D', 0, 24, 3, ''), 1117 | (564, '02', 237, 1, '13179', 'Felton,Draymond D', 0, 35, 3, ''), 1118 | (565, '02', 238, 1, '11352', 'Lupino,Antonio', 0, 30, 3, ''), 1119 | (566, '01', 239, 1, '11354', 'Felton,Draymond D', 0, 24, 1, ''), 1120 | (567, '02', 239, 1, '15127', 'Felton,Draymond D', 0, 24, 1, ''), 1121 | (568, '01', 240, 1, '11530', 'Lupino,Antonio', 0, 24, 6, 'A1'), 1122 | (569, '01L', 240, 1, '12143', 'Lupino,Antonio', 0, 14, 0, 'A2'), 1123 | (570, '01', 241, 1, '15263', 'Levinsohn,Pete M', 0, 30, 3, ''), 1124 | (571, '01', 242, 1, '12450', 'Rizzo,Juliet E', 0, 20, 2, ''), 1125 | (572, '02', 242, 1, '15963', 'CorneYis,Marsha L', 0, 20, 2, ''), 1126 | (573, '03', 242, 1, '15902', 'Adult,Joseph D', 0, 20, 2, ''), 1127 | (574, '01', 243, 1, '11581', 'Legstrong,Lakeisha M', 0, 0, 1, ''), 1128 | (575, '01', 244, 8, '13806', 'TBA', 0, 25, 1, ''), 1129 | (576, 'LN1', 245, 1, '15753', 'ByLaw,Stephanie', 0, 0, 1, ''), 1130 | (577, 'LN1', 246, 1, '15755', 'ByLaw,Stephanie', 0, 0, 1, ''), 1131 | (578, '01', 247, 1, '15391', 'Hogle,Draymond T', 0, 35, 3, ''), 1132 | (579, '02', 248, 1, '15395', 'Hogle,Draymond T', 0, 35, 3, ''), 1133 | (580, '03', 248, 1, '15398', 'Hogle,Draymond T', 0, 35, 3, ''), 1134 | (581, '01', 249, 1, '15396', 'Levinsohn,Pete M', 0, 35, 3, ''), 1135 | (582, '02', 249, 1, '15397', 'Hogle,Draymond T', 0, 35, 3, ''), 1136 | (583, '03', 249, 1, '15399', 'Hogle,Draymond T', 0, 35, 3, ''), 1137 | (584, '04', 249, 1, '15400', 'Levinsohn,Pete M', 0, 35, 3, ''), 1138 | (585, '01', 250, 1, '15405', 'Buckingham,Carol', 0, 35, 3, ''), 1139 | (586, '01', 251, 1, '15401', 'Buckingham,Carol', 0, 35, 3, ''), 1140 | (587, '02', 251, 1, '15402', 'Buckingham,Carol', 0, 35, 3, ''), 1141 | (588, '01', 252, 1, '15684', 'Buckingham,Carol', 0, 35, 3, ''), 1142 | (589, 'SVH', 253, 1, '16009', 'McCaffrey,Kerry E', 0, 0, 3, ''), 1143 | (590, '01', 254, 1, '10314', 'TBA', 0, 24, 3, 'A1'), 1144 | (591, '01L', 254, 1, '12372', 'TBA', 0, 12, 0, 'A2'), 1145 | (592, '02L', 254, 1, '10316', 'TBA', 0, 12, 0, 'A2'), 1146 | (593, '01', 255, 1, '12897', 'Solo,David S', 0, 32, 2, ''), 1147 | (594, '01', 256, 1, '15913', 'Pennington,Jennings-Walke', 0, 10, 3, 'A1'), 1148 | (595, '01L', 256, 1, '15914', 'Pennington,Jennings-Walke', 0, 10, 0, 'A2'), 1149 | (596, '01', 257, 1, '10024', 'Solo,David S', 0, 20, 3, 'A1'), 1150 | (597, '02L', 257, 1, '12377', 'Solo,David S', 0, 20, 0, 'A2'), 1151 | (598, '01', 258, 1, '15955', 'Solo,David S', 0, 25, 2, ''), 1152 | (599, '01', 259, 1, '12613', 'Otisco,Adam J', 0, 15, 3, 'A1'), 1153 | (600, '01L', 259, 1, '12614', 'Otisco,Adam J', 0, 15, 0, 'A2'), 1154 | (601, '01', 260, 1, '15172', 'Pennington,Jennings-Walke', 0, 25, 3, 'A1'), 1155 | (602, '01L', 260, 1, '15173', 'Pennington,Jennings-Walke', 0, 25, 0, 'A2'), 1156 | (603, 'NP1', 261, 1, '11962', 'Pennington,Jennings-Walke', 0, 5, 4, ''), 1157 | (604, '01', 262, 1, '15122', 'Pennington,Jennings-Walke', 0, 15, 1, ''), 1158 | (605, '01', 263, 1, '15087', 'Solo,David S', 0, 25, 3, ''), 1159 | (606, 'PD1', 264, 1, '15874', 'Pennington,Jennings-Walke', 0, 10, 15, ''), 1160 | (607, 'PD2', 264, 1, '15946', 'Pennington,Jennings-Walke', 0, 10, 15, ''), 1161 | (608, '01', 265, 1, '15487', 'Kinney,Kristen L', 0, 30, 4, 'A1'), 1162 | (609, '01L', 265, 1, '15488', 'Kinney,Kristen L', 0, 15, 0, 'A2'), 1163 | (610, '01', 266, 1, '15176', 'Kinney,Kristen L', 0, 40, 1, ''), 1164 | (611, '01', 267, 1, '15408', 'Cardinal,ShEnron L', 0, 32, 4, 'A1'), 1165 | (612, '01L', 267, 1, '15409', 'Cardinal,ShEnron L', 0, 16, 0, 'A2'), 1166 | (613, '02L', 267, 1, '15410', 'Cardinal,ShEnron L', 0, 16, 0, 'A2'), 1167 | (614, '01', 268, 1, '15134', 'Kinney,Kristen L', 0, 30, 3, ''), 1168 | (615, 'NP1', 269, 1, '15767', 'Kinney,Kristen L', 0, 15, 1, ''), 1169 | (616, '01', 270, 1, '15349', 'Cardinal,ShEnron L', 0, 14, 4, 'A1'), 1170 | (617, '01L', 270, 1, '15350', 'Cardinal,ShEnron L', 0, 14, 0, 'A2'), 1171 | (618, 'NP1', 271, 1, '15180', 'Cardinal,ShEnron L', 0, 10, 3, ''), 1172 | (619, '01', 272, 1, '15178', 'Kinney,Kristen L', 0, 15, 3, ''), 1173 | (620, 'NP1', 273, 1, '15653', 'Kinney,Kristen L', 0, 10, 6, ''), 1174 | (621, '01', 274, 1, '15868', 'Waiters,Anne E', 0, 35, 3, ''), 1175 | (622, '01', 275, 1, '10363', 'Kelce,Michael', 0, 36, 3, 'A1'), 1176 | (623, '01L', 275, 1, '10681', 'Kelce,Michael', 0, 36, 0, 'A2'), 1177 | (624, '01', 276, 1, '14320', 'Lamberguinta,Wade B', 0, 0, 3, 'A1'), 1178 | (625, '02L', 276, 1, '14322', 'Lamberguinta,Wade B', 0, 0, 0, 'A2'), 1179 | (626, '01', 277, 1, '15407', 'Jennings-Walker,Merrill B', 0, 30, 3, ''), 1180 | (627, '01L', 278, 1, '11519', 'Kelce,Michael', 0, 30, 1, ''), 1181 | (628, '02L', 278, 1, '11523', 'Howell-Peters,Marti C', 0, 35, 1, ''), 1182 | (629, '03L', 278, 1, '11522', 'Lamberguinta,Wade B', 0, 20, 1, ''), 1183 | (630, '01', 279, 1, '15212', 'Howell-Peters,Marti C', 0, 25, 3, ''), 1184 | (631, '01', 280, 1, '13491', 'Jennings-Walker,Merrill B', 0, 30, 3, ''), 1185 | (632, '01L', 281, 1, '11634', 'Kelce,Michael', 0, 30, 1, ''), 1186 | (633, '02L', 281, 1, '11640', 'Howell-Peters,Marti C', 0, 35, 1, ''), 1187 | (634, '03L', 281, 1, '11638', 'Lamberguinta,Wade B', 0, 20, 1, ''), 1188 | (635, '01', 282, 1, '15165', 'Kelce,Michael', 0, 20, 3, ''), 1189 | (636, '01', 283, 1, '15935', 'Jennings-Walker,Merrill B', 0, 20, 3, ''), 1190 | (637, '01L', 284, 1, '15166', 'Howell-Peters,Marti C', 0, 30, 1, ''), 1191 | (638, '01L', 285, 1, '15314', 'Jennings-Walker,Merrill B', 0, 35, 2, ''), 1192 | (639, '01', 286, 1, '15787', 'Howell-Peters,Marti C', 0, 30, 3, ''), 1193 | (640, '01', 287, 1, '15214', 'Howell-Peters,Marti C', 0, 15, 1, ''), 1194 | (641, '01', 288, 1, '15661', 'Howell-Peters,Marti C', 0, 15, 3, ''), 1195 | (642, '01L', 289, 1, '15170', 'Howell-Peters,Marti C', 0, 30, 1, ''), 1196 | (643, '02L', 289, 1, '15870', 'Howell-Peters,Marti C', 0, 35, 1, ''), 1197 | (644, '03', 290, 1, '13968', 'Arazanka,Devon', 0, 30, 3, ''), 1198 | (645, '01', 291, 1, '10236', 'Sydoriw,Salizar W', 0, 30, 3, ''), 1199 | (646, '01', 292, 1, '13771', 'Van Waes,Sherry S', 0, 25, 3, ''), 1200 | (647, '02', 292, 1, '13772', 'Elko,Dacia', 0, 25, 3, ''), 1201 | (648, '03', 292, 1, '15024', 'McClellan,Jeanmarie J', 0, 25, 3, ''), 1202 | (649, '04', 292, 1, '13774', 'McQueen,Terrence L', 0, 25, 3, ''), 1203 | (650, '05', 292, 1, '13775', 'McQueen,Terrence L', 0, 25, 3, ''), 1204 | (651, '07', 292, 1, '13777', 'TBA', 0, 25, 3, ''), 1205 | (652, '08', 292, 1, '13778', 'Elko,Dacia', 0, 25, 3, ''), 1206 | (653, '09', 292, 1, '14984', 'Kenber,Thomas', 0, 25, 3, ''), 1207 | (654, '10', 292, 1, '13996', 'McClellan,Jeanmarie J', 0, 25, 3, ''), 1208 | (655, '11', 292, 1, '14288', 'Kenber,Thomas', 0, 25, 3, ''), 1209 | (656, '12', 292, 1, '14010', 'McQueen,Terrence L', 0, 25, 3, ''), 1210 | (657, '15', 292, 1, '15025', 'Kenber,Thomas', 0, 25, 3, ''), 1211 | (658, '16', 292, 1, '15026', 'TBA', 0, 25, 3, ''), 1212 | (659, '01', 293, 2, '15532', 'Cywikla,Angela M', 0, 8, 1, ''), 1213 | (660, '02', 293, 3, '15539', 'Cywikla,Angela M', 0, 8, 1, ''), 1214 | (661, '03', 293, 2, '15540', 'Cywikla,Angela M', 0, 8, 1, ''), 1215 | (662, '04', 293, 3, '15541', 'Cywikla,Angela M', 0, 8, 1, ''), 1216 | (663, '02', 294, 1, '14683', 'Bache,Laurie A', 0, 25, 2, 'A1'), 1217 | (664, '02L', 294, 1, '14684', 'Bache,Laurie A', 0, 25, 0, 'A2'), 1218 | (665, '02', 295, 1, '14685', 'Cywikla,Angela M', 0, 25, 2, 'A1'), 1219 | (666, '02L', 295, 1, '14686', 'Cywikla,Angela M', 0, 25, 0, 'A2'), 1220 | (667, '02L', 296, 1, '14624', 'Bache,Laurie A', 0, 12, 5, ''), 1221 | (668, '01', 297, 1, '14622', 'Cywikla,Angela M', 0, 26, 3, ''), 1222 | (669, '01', 298, 1, '15543', 'Bache,Laurie A', 0, 25, 2, ''), 1223 | (670, '01', 299, 1, '12014', 'Oursler White,Medgar', 0, 25, 3, ''), 1224 | (671, '02', 299, 1, '12019', 'O''Neil,Carol', 0, 25, 3, ''), 1225 | (672, '03', 299, 1, '12018', 'McQueen,Terrence L', 0, 25, 3, ''), 1226 | (673, '04', 299, 1, '14299', 'Oursler White,Medgar', 0, 25, 3, ''), 1227 | (674, '05', 299, 1, '12336', 'Edgar,Jack L', 0, 25, 3, ''), 1228 | (675, '06', 299, 1, '13873', 'Berge,Ken', 0, 25, 3, ''), 1229 | (676, '07', 299, 1, '12180', 'Oursler White,Medgar', 0, 25, 3, ''), 1230 | (677, '09', 299, 1, '12200', 'McQueen,Terrence L', 0, 25, 3, ''), 1231 | (678, '10', 299, 1, '12216', 'Kenber,Karin', 0, 25, 3, ''), 1232 | (679, '11', 299, 1, '12659', 'Kenber,Karin', 0, 25, 3, ''), 1233 | (680, '12', 299, 1, '12836', 'Elko,Dacia', 0, 25, 3, ''), 1234 | (681, '13', 299, 1, '14344', 'Berge,Ken', 0, 25, 3, ''), 1235 | (682, '14', 299, 1, '12015', 'Edgar,Jack L', 0, 25, 3, ''), 1236 | (683, 'OC1', 299, 1, '12181', 'O''Neil,Carol', 0, 0, 3, ''), 1237 | (684, '01', 300, 1, '12572', 'Van Waes,Sherry S', 0, 25, 3, ''), 1238 | (685, '02', 300, 1, '12573', 'Van Waes,Sherry S', 0, 25, 3, ''), 1239 | (686, '04', 300, 1, '12575', 'Kenber,Karin', 0, 25, 3, ''), 1240 | (687, '05', 300, 1, '12576', 'Van Waes,Sherry S', 0, 25, 3, ''), 1241 | (688, 'OC1', 300, 1, '14488', 'Kenber,Karin', 0, 0, 3, ''), 1242 | (689, '01', 301, 1, '15490', 'Berge,Ken', 0, 20, 3, ''), 1243 | (690, '02', 302, 1, '13014', 'Edgar,Jack L', 0, 25, 3, ''), 1244 | (691, '01', 303, 1, '12058', 'Kenber,Karin', 0, 25, 3, ''), 1245 | (692, '01', 304, 1, '12059', 'Edgar,Jack L', 0, 25, 3, ''), 1246 | (693, '02', 304, 1, '13222', 'Edgar,Jack L', 0, 25, 3, ''), 1247 | (694, 'OC1', 304, 1, '14393', 'Edgar,Jack L', 0, 0, 3, ''), 1248 | (695, 'SVH', 304, 1, '15813', 'McClellan,Jeanmarie J', 0, 0, 3, ''), 1249 | (696, '01', 305, 1, '12061', 'Berge,Ken', 0, 25, 3, ''), 1250 | (697, '01', 306, 1, '12062', 'Elko,Dacia', 0, 25, 3, ''), 1251 | (698, 'OC1', 306, 1, '12069', 'Elko,Dacia', 0, 0, 3, ''), 1252 | (699, 'SVH', 306, 1, '15581', 'Boccee,Michael E', 0, 0, 3, ''), 1253 | (700, '01', 307, 1, '12070', 'Oursler White,Medgar', 0, 25, 3, ''), 1254 | (701, 'OC1', 307, 1, '12072', 'Oursler White,Medgar', 0, 0, 3, ''), 1255 | (702, '01', 308, 1, '15491', 'Kenber,Thomas', 0, 25, 3, ''), 1256 | (703, '01', 309, 1, '11310', 'Van Waes,Sherry S', 0, 25, 4, ''), 1257 | (704, '01', 310, 1, '12077', 'Kenber,Thomas', 0, 20, 4, ''), 1258 | (705, '01', 311, 1, '10976', 'Guess,Draymond', 0, 30, 3, 'A1'), 1259 | (706, '02L', 311, 1, '13010', 'Guess,Draymond', 0, 10, 0, 'A2'), 1260 | (707, '01', 312, 1, '12333', 'Hearst,Eugene', 0, 25, 3, ''), 1261 | (708, '01', 313, 1, '14307', 'Basil,Mehmet', 0, 20, 4, 'A1'), 1262 | (709, '01L', 313, 1, '14309', 'Basil,Mehmet', 0, 20, 0, 'A2'), 1263 | (710, '01', 314, 1, '14335', 'Syke,Robert', 0, 20, 4, 'A1'), 1264 | (711, '01L', 314, 1, '14336', 'Syke,Robert', 0, 12, 0, 'A2'), 1265 | (712, '01', 315, 1, '13234', 'Syke,Robert', 0, 20, 4, 'A1'), 1266 | (713, '01L', 315, 1, '13235', 'Syke,Robert', 0, 20, 0, 'A2'), 1267 | (714, '01', 316, 1, '14317', 'Hearst,Eugene', 0, 21, 2, 'A1'), 1268 | (715, '01L', 316, 1, '14318', 'Guess,Draymond', 0, 7, 0, 'A2'), 1269 | (716, '02L', 316, 1, '14319', 'Hearst,Eugene', 0, 7, 0, 'A2'), 1270 | (717, '01', 317, 1, '14618', 'Hearst,Eugene', 0, 20, 2, 'A1'), 1271 | (718, '01L', 317, 1, '14619', 'Hearst,Eugene', 0, 20, 0, 'A2'), 1272 | (719, '01', 318, 1, '14961', 'Guess,Draymond', 0, 18, 2, 'A1'), 1273 | (720, '01L', 318, 1, '14962', 'Guess,Draymond', 0, 6, 0, 'A2'), 1274 | (721, '02L', 318, 1, '14963', 'Guess,Draymond', 0, 6, 0, 'A2'), 1275 | (722, '01', 319, 1, '14593', 'Hearst,Eugene', 0, 20, 3, 'A1'), 1276 | (723, '01L', 319, 1, '14594', 'Hearst,Eugene', 0, 20, 0, 'A2'), 1277 | (724, 'JZ', 320, 1, '13519', 'Foxy,David N', 0, 20, 1, ''), 1278 | (725, 'JZ', 321, 1, '13520', 'Foxy,David N', 0, 25, 1, ''), 1279 | (726, 'JZ', 322, 1, '13521', 'Foxy,David N', 0, 20, 1, ''), 1280 | (727, 'JZ', 323, 1, '13522', 'Foxy,David N', 0, 20, 1, ''), 1281 | (728, '01', 324, 1, '13473', 'Snyder,Willis', 0, 50, 3, ''), 1282 | (729, '01', 325, 1, '10811', 'Hardwick,J. R', 0, 36, 3, 'A1'), 1283 | (730, '01L', 325, 1, '12365', 'Hardwick,J. R', 0, 14, 0, 'A2'), 1284 | (731, '02L', 325, 1, '13197', 'Hardwick,J. R', 0, 14, 0, 'A2'), 1285 | (732, '01', 326, 1, '12608', 'Jennings-Walker,Medgarn T', 0, 32, 3, 'A1'), 1286 | (733, '01L', 326, 1, '12609', 'Jennings-Walker,Medgarn T', 0, 16, 0, 'A2'), 1287 | (734, '02L', 326, 1, '13020', 'Jennings-Walker,Medgarn T', 0, 16, 0, 'A2'), 1288 | (735, '01', 327, 1, '11415', 'Snyder,Willis', 0, 12, 1, ''), 1289 | (736, '01', 328, 1, '11967', 'Okereke,Vick I', 0, 20, 3, 'A1'), 1290 | (737, '01L', 328, 1, '10613', 'Okereke,Vick I', 0, 15, 0, 'A2'), 1291 | (738, '01', 329, 1, '12382', 'Livengood,ELeeve J', 0, 20, 2, 'A1'), 1292 | (739, '01L', 329, 1, '12383', 'Livengood,ELeeve J', 0, 20, 0, 'A2'), 1293 | (740, '01', 330, 1, '14436', 'Hardwick,J. R', 0, 30, 2, ''), 1294 | (741, '01L', 331, 1, '14271', 'Hardwick,J. R', 0, 12, 1, ''), 1295 | (742, '01', 332, 1, '15725', 'Okereke,Vick I', 0, 48, 3, ''), 1296 | (743, '01', 333, 5, '12896', 'Dess,Walid', 0, 30, 1, 'A1'), 1297 | (744, '01L', 333, 5, '15887', 'Dess,Walid', 0, 15, 0, 'A2'), 1298 | (745, '02L', 333, 5, '15888', 'Dess,Walid', 0, 15, 0, 'A2'), 1299 | (746, '01', 334, 1, '14434', 'Jennings-Walker,Medgarn T', 0, 20, 3, 'A1'), 1300 | (747, '01L', 334, 1, '14435', 'Jennings-Walker,Medgarn T', 0, 10, 0, 'A2'), 1301 | (748, '02L', 334, 1, '14899', 'Jennings-Walker,Medgarn T', 0, 20, 0, 'A2'), 1302 | (749, '01', 335, 6, '15971', 'Dess,Walid', 0, 15, 1, ''), 1303 | (750, '01L', 335, 6, '15972', 'Dess,Walid', 0, 15, 0, 'A2'), 1304 | (751, '01', 336, 1, '15985', 'Hardwick,J. R', 0, 15, 3, ''), 1305 | (752, '01L', 336, 1, '15986', 'Hardwick,J. R', 0, 15, 0, ''), 1306 | (753, '01', 337, 1, '10364', 'Snyder,Willis', 0, 40, 3, 'A1'), 1307 | (754, '01L', 337, 1, '12362', 'Snyder,Willis', 0, 12, 0, 'A2'), 1308 | (755, '02L', 337, 1, '12363', 'Snyder,Willis', 0, 12, 0, 'A2'), 1309 | (756, '01', 338, 1, '10932', 'Snyder,Willis', 0, 20, 3, 'A1'), 1310 | (757, '01L', 338, 1, '10934', 'Snyder,Willis', 0, 12, 0, 'A2'), 1311 | (758, '01', 339, 1, '13034', 'Livengood,ELeeve J', 0, 20, 3, 'A1'), 1312 | (759, '01L', 339, 1, '12606', 'Livengood,ELeeve J', 0, 20, 0, 'A2'), 1313 | (760, '01', 340, 1, '12607', 'Livengood,ELeeve J', 0, 12, 1, ''), 1314 | (761, '01', 341, 1, '15989', 'Livengood,ELeeve J', 0, 20, 1, ''), 1315 | (762, '01', 342, 1, '14192', 'Bache,Laurie A', 0, 20, 3, ''), 1316 | (763, '02', 342, 1, '14211', 'Bache,Laurie A', 0, 20, 3, ''), 1317 | (764, '01', 343, 6, '15826', 'Carolson,Jane E', 0, 20, 1, ''), 1318 | (765, '01', 344, 5, '15028', 'Carolson,Jane E', 0, 63, 3, 'A1'), 1319 | (766, '01L', 344, 5, '15030', 'Hall,Antonie', 0, 7, 0, 'A2'), 1320 | (767, '02L', 344, 5, '15031', 'Matt,Brent', 0, 7, 0, 'A2'), 1321 | (768, '03L', 344, 5, '15032', 'Matt,Brent', 0, 7, 0, 'A2'), 1322 | (769, '04L', 344, 5, '15033', 'Hall,Antonie', 0, 7, 0, 'A2'), 1323 | (770, '05L', 344, 5, '15034', 'Carolson,Jane E', 0, 7, 0, 'A2'), 1324 | (771, '06L', 344, 5, '15035', 'TBA', 0, 0, 0, 'A2'), 1325 | (772, '07L', 344, 5, '15036', 'Carolson,Jane E', 0, 7, 0, 'A2'), 1326 | (773, '08L', 344, 5, '15037', 'TBA', 0, 7, 0, 'A2'), 1327 | (774, '09L', 344, 5, '15531', 'Carolson,Jane E', 0, 7, 0, 'A2'), 1328 | (775, '01', 345, 6, '14237', 'Carolson,Jane E', 0, 63, 4, 'A1'), 1329 | (776, '01L', 345, 6, '15039', 'Hall,Antonie', 0, 7, 0, 'A2'), 1330 | (777, '01R', 345, 6, '15698', 'Caraher,Susan E', 0, 8, 0, 'A3'), 1331 | (778, '02L', 345, 6, '15040', 'Carolson,Jane E', 0, 7, 0, 'A2'), 1332 | (779, '02R', 345, 6, '15699', 'TBA', 0, 8, 0, 'A3'), 1333 | (780, '03L', 345, 6, '15041', 'Carolson,Jane E', 0, 7, 0, 'A2'), 1334 | (781, '03R', 345, 6, '15700', 'Caraher,Susan E', 0, 8, 0, 'A3'), 1335 | (782, '04L', 345, 6, '15042', 'Matt,Brent', 0, 7, 0, 'A2'), 1336 | (783, '04R', 345, 6, '15701', 'TBA', 0, 8, 0, 'A3'), 1337 | (784, '05L', 345, 6, '15043', 'Carolson,Jane E', 0, 7, 0, 'A2'), 1338 | (785, '05R', 345, 6, '15702', 'Graham,Carol A', 0, 8, 0, 'A3'), 1339 | (786, '06L', 345, 6, '15044', 'TBA', 0, 0, 0, 'A2'), 1340 | (787, '06R', 345, 6, '15703', 'Graham,Carol A', 0, 8, 0, 'A3'), 1341 | (788, '07L', 345, 6, '15534', 'Matt,Brent', 0, 7, 0, 'A2'), 1342 | (789, '07R', 345, 6, '15704', 'Graham,Carol A', 0, 8, 0, 'A3'), 1343 | (790, '08L', 345, 6, '15593', 'Matt,Brent', 0, 7, 0, 'A2'), 1344 | (791, '08R', 345, 6, '15705', 'TBA', 0, 8, 0, 'A3'), 1345 | (792, '09L', 345, 6, '15594', 'Hall,Antonie', 0, 7, 0, 'A2'), 1346 | (793, '01', 346, 1, '10857', 'Morris,Sonia M', 0, 48, 9, 'A1'), 1347 | (794, '01L', 346, 1, '10647', 'TBA', 0, 8, 0, 'A2'), 1348 | (795, '01R', 346, 5, '10757', 'TBA', 0, 8, 0, 'A3'), 1349 | (796, '02L', 346, 1, '10658', 'Gallogly,Ceilia M', 0, 8, 0, 'A2'), 1350 | (797, '02R', 346, 5, '10765', 'TBA', 0, 8, 0, 'A3'), 1351 | (798, '03L', 346, 1, '10654', 'Jeffrey,Seily M', 0, 8, 0, 'A2'), 1352 | (799, '03R', 346, 5, '10764', 'TBA', 0, 8, 0, 'A3'), 1353 | (800, '04L', 346, 1, '10655', 'TBA', 0, 8, 0, 'A2'), 1354 | (801, '04R', 346, 5, '10758', 'TBA', 0, 8, 0, 'A3'), 1355 | (802, '05R', 346, 5, '10761', 'TBA', 0, 8, 0, 'A3'), 1356 | (803, '07L', 346, 1, '12688', 'TBA', 0, 8, 0, 'A2'), 1357 | (804, '08L', 346, 5, '10648', 'Matt,Brent', 0, 7, 0, 'A2'), 1358 | (805, '09L', 346, 1, '10650', 'Morris,Sonia M', 0, 8, 0, 'A2'), 1359 | (806, '09R', 346, 5, '14812', 'TBA', 0, 8, 0, 'A3'), 1360 | (807, '01', 347, 1, '16049', 'Hall,Antonie', 0, 24, 1, ''); 1361 | INSERT INTO `course_sections` (`id`, `name`, `course_id`, `courseterm_id`, `courseCRN`, `instructor`, `currentEnrollment`, `maxEnrollment`, `credits`, `identifier`) VALUES 1362 | (808, 'HY1', 347, 1, '16033', 'Gallogly,Ceilia M', 0, 24, 1, ''), 1363 | (809, 'LN2', 347, 1, '16034', 'Morris,Sonia M', 0, 24, 1, ''), 1364 | (810, '01', 348, 1, '15053', 'Trustworthy,Susan', 0, 40, 9, 'A1'), 1365 | (811, '01L', 348, 1, '15055', 'TBA', 0, 8, 0, 'A2'), 1366 | (812, '02L', 348, 1, '15056', 'Trustworthy,Susan', 0, 8, 0, 'A2'), 1367 | (813, '03L', 348, 1, '15057', 'Trustworthy,Susan', 0, 0, 0, 'A2'), 1368 | (814, '04L', 348, 1, '15058', 'TBA', 0, 8, 0, 'A2'), 1369 | (815, '14L', 348, 1, '15572', 'Fitzgerald,Diana L', 0, 8, 0, 'A2'), 1370 | (816, 'LN1', 349, 1, '16035', 'Trustworthy,Susan', 0, 24, 1, ''), 1371 | (817, 'LN2', 349, 1, '16036', 'Fitzgerald,Diana L', 0, 24, 1, ''), 1372 | (818, '01', 350, 1, '12924', 'Furco,Jaine F', 0, 40, 8, 'A1'), 1373 | (819, '02L', 350, 1, '10579', 'Egert,Steven C', 0, 8, 0, 'A2'), 1374 | (820, '03L', 350, 1, '10580', 'Swartout,Norma J', 0, 8, 0, 'A2'), 1375 | (821, '04L', 350, 1, '10582', 'TBA', 0, 8, 0, 'A2'), 1376 | (822, '05L', 350, 1, '10581', 'Swartout,Norma J', 0, 8, 0, 'A2'), 1377 | (823, '07L', 350, 1, '10578', 'Furco,Jaine F', 0, 0, 0, 'A2'), 1378 | (824, '08L', 350, 1, '10574', 'Furco,Jaine F', 0, 0, 0, 'A2'), 1379 | (825, 'HY2', 351, 1, '14464', 'Furco,Jaine F', 0, 20, 2, ''), 1380 | (826, 'HY3', 351, 1, '14891', 'Swartout,Norma J', 0, 20, 2, ''), 1381 | (827, '01', 352, 1, '11329', 'TBA', 0, 30, 3, ''), 1382 | (828, 'HY2', 352, 1, '13182', 'Jennings-Walker,Parting K', 0, 30, 3, ''), 1383 | (829, 'HY1', 353, 1, '13698', 'Nicholls,Joan A', 0, 20, 3, ''), 1384 | (830, '01', 354, 1, '11419', 'Nicholls,Joan A', 0, 24, 3, ''), 1385 | (831, '01', 355, 1, '12696', 'St. Hilaire,Claudia', 0, 18, 3, 'A1'), 1386 | (832, '01L', 355, 1, '11493', 'St. Hilaire,Claudia', 0, 7, 0, 'A2'), 1387 | (833, '02L', 355, 1, '13016', 'St. Hilaire,Claudia', 0, 7, 0, 'A2'), 1388 | (834, '01', 356, 1, '15601', 'St. Hilaire,Claudia', 0, 20, 1, ''), 1389 | (835, 'HY1', 357, 1, '13821', 'Nicholls,Joan A', 0, 20, 3, ''), 1390 | (836, '01', 358, 1, '15416', 'St. Hilaire,Claudia', 0, 20, 3, 'A1'), 1391 | (837, '01L', 358, 1, '15417', 'St. Hilaire,Claudia', 0, 20, 0, 'A2'), 1392 | (838, '01', 359, 1, '11501', 'Nicholls,Joan A', 0, 14, 3, 'A1'), 1393 | (839, '01L', 359, 1, '11502', 'Nicholls,Joan A', 0, 7, 0, 'A2'), 1394 | (840, '02L', 359, 1, '12352', 'Nicholls,Joan A', 0, 7, 0, 'A2'), 1395 | (841, '02', 360, 3, '14769', 'Dereymers,Susan M', 0, 20, 1, ''), 1396 | (842, 'LN1', 360, 3, '15012', 'Boyle,Melinda E', 0, 30, 1, ''), 1397 | (843, 'LN2', 360, 4, '14766', 'Dereymers,Susan M', 0, 30, 1, ''), 1398 | (844, '02L', 361, 6, '13635', 'Dereymers,Susan M', 0, 25, 1, ''), 1399 | (845, 'LN1', 362, 3, '14770', 'TBA', 0, 30, 1, ''), 1400 | (846, '01', 363, 4, '15121', 'Dereymers,Susan M', 0, 20, 1, ''), 1401 | (847, 'LN1', 363, 3, '14771', 'Payette,Dacia', 0, 30, 1, ''), 1402 | (848, 'LN2', 363, 4, '14912', 'Boyle,Melinda E', 0, 30, 1, ''), 1403 | (849, '01', 364, 2, '15671', 'Dereymers,Susan M', 0, 20, 1, ''), 1404 | (850, '03', 364, 3, '14896', 'Dereymers,Susan M', 0, 20, 1, ''), 1405 | (851, 'LN1', 364, 3, '14772', 'Boyle,Melinda E', 0, 30, 1, ''), 1406 | (852, 'LN2', 364, 3, '15459', 'Payette,Dacia', 0, 30, 1, ''), 1407 | (853, 'LN3', 364, 4, '15576', 'Payette,Dacia', 0, 30, 1, ''), 1408 | (854, 'LN1', 365, 5, '12512', 'Payette,Dacia', 0, 20, 1, ''), 1409 | (855, 'LN1', 366, 6, '12447', 'Payette,Dacia', 0, 20, 1, ''), 1410 | (856, 'LN1', 367, 5, '12188', 'Payette,Dacia', 0, 20, 1, ''), 1411 | (857, 'LN1', 368, 6, '11930', 'Payette,Dacia', 0, 20, 1, ''), 1412 | (858, 'LN1', 369, 1, '14954', 'Payette,Dacia', 0, 20, 2, ''), 1413 | (859, 'LN1', 370, 1, '13401', 'Payette,Dacia', 0, 20, 3, ''), 1414 | (860, 'LN1', 371, 1, '15013', 'Connolly,Cherr A', 0, 20, 3, ''), 1415 | (861, 'LN1', 372, 7, '15411', 'Connolly,Cherr A', 0, 20, 2, ''), 1416 | (862, 'LN1', 373, 1, '15190', 'Payette,Dacia', 0, 20, 3, ''), 1417 | (863, 'LN1', 374, 1, '15111', 'Payette,Dacia', 0, 20, 3, ''), 1418 | (864, 'LN1', 375, 1, '15015', 'Connolly,Cherr A', 0, 20, 3, ''), 1419 | (865, 'LN2', 375, 1, '15764', 'Boyle,Melinda E', 0, 20, 3, ''), 1420 | (866, 'LN1', 376, 1, '14038', 'Boyle,Melinda E', 0, 20, 3, ''), 1421 | (867, 'NP1', 377, 1, '15808', 'Payette,Dacia', 0, 10, 1, ''), 1422 | (868, 'NP1', 378, 1, '15809', 'Payette,Dacia', 0, 10, 1, ''), 1423 | (869, '01', 379, 3, '15250', 'Noyes,Spence', 0, 30, 1, ''), 1424 | (870, '01', 380, 3, '15898', 'Noyes,Spence', 0, 30, 1, ''), 1425 | (871, '01', 381, 2, '14993', 'Hitchingston,Justin', 0, 30, 1, ''), 1426 | (872, '01', 382, 3, '15239', 'Hitchingston,Justin', 0, 30, 1, ''), 1427 | (873, '01', 383, 4, '15240', 'Hitchingston,Justin', 0, 30, 1, ''), 1428 | (874, '01', 384, 1, '15933', 'Krogol,Kevin J', 0, 20, 1, ''), 1429 | (875, '01', 385, 3, '15251', 'Szarek,Reynold', 0, 20, 1, ''), 1430 | (876, '02', 385, 4, '15600', 'Szarek,Reynold', 0, 20, 1, ''), 1431 | (877, '01', 386, 1, '14571', 'Smith,Joseph A', 0, 30, 1, ''), 1432 | (878, '02', 386, 1, '14859', 'Skaradek,Parting E', 0, 15, 1, ''), 1433 | (879, '01', 387, 1, '14581', 'Wanner,Juleah J', 0, 30, 2, ''), 1434 | (880, '01', 388, 1, '13759', 'Esieley,Leeve L', 0, 80, 2, ''), 1435 | (881, '01', 389, 1, '14741', 'Krogol,Kevin J', 0, 50, 1, ''), 1436 | (882, '01', 390, 1, '14747', 'Schwan,Kelsey U', 0, 20, 2, ''), 1437 | (883, '02', 391, 1, '14751', 'Longo,Jason B', 0, 34, 2, ''), 1438 | (884, '01', 392, 1, '15140', 'Knight,Tiffany R', 0, 80, 2, ''), 1439 | (885, '02', 393, 4, '15421', 'Szarek,Reynold', 0, 20, 1, ''), 1440 | (886, '01', 394, 1, '10821', 'Davenport,Wyatt', 0, 25, 3, ''), 1441 | (887, '01', 395, 1, '14529', 'Davenport,Wyatt', 0, 25, 3, ''), 1442 | (888, '03', 395, 1, '16006', 'Davenport,Wyatt', 0, 25, 3, ''), 1443 | (889, '01', 396, 1, '10937', 'Bros,Mario', 0, 30, 4, 'A1'), 1444 | (890, '02', 396, 1, '10936', 'Bros,Mario', 0, 30, 4, 'A1'), 1445 | (891, '02L', 396, 1, '10504', 'Civiletti,Rich J', 0, 15, 0, 'A2'), 1446 | (892, '03L', 396, 1, '10503', 'Civiletti,Rich J', 0, 15, 0, 'A2'), 1447 | (893, '04', 396, 1, '15444', 'Bros,Mario', 0, 30, 4, 'A1'), 1448 | (894, '04L', 396, 1, '10502', 'Bros,Mario', 0, 15, 0, 'A2'), 1449 | (895, '05L', 396, 1, '14085', 'Bros,Mario', 0, 15, 0, 'A2'), 1450 | (896, '06L', 396, 1, '12166', 'Luigi,Michael J', 0, 15, 0, 'A2'), 1451 | (897, '07L', 396, 1, '14734', 'Civiletti,Rich J', 0, 15, 0, 'A2'), 1452 | (898, '08L', 396, 1, '14981', 'Luigi,Michael J', 0, 15, 0, 'A2'), 1453 | (899, '02', 397, 1, '12961', 'Luigi,Michael J', 0, 15, 4, 'A1'), 1454 | (900, '02L', 397, 1, '10557', 'Luigi,Michael J', 0, 15, 0, 'A2'), 1455 | (901, '01', 398, 1, '16040', 'Civiletti,Rich J', 0, 16, 4, 'A1'), 1456 | (902, '01L', 398, 1, '16041', 'Civiletti,Rich J', 0, 16, 0, 'A2'), 1457 | (903, '01', 399, 1, '10144', 'TBA', 0, 15, 4, 'A1'), 1458 | (904, '01L', 399, 1, '12299', 'Civiletti,Rich J', 0, 15, 0, 'A2'), 1459 | (905, '01', 400, 1, '15500', 'Healy,Elizabeth S', 0, 30, 3, ''), 1460 | (906, '01', 401, 1, '15508', 'Bryant,Birgit A', 0, 35, 3, ''), 1461 | (907, '02', 401, 1, '15509', 'Dushay,Robert', 0, 35, 3, ''), 1462 | (908, '03', 401, 1, '15510', 'Cesare,Willis A', 0, 35, 3, ''), 1463 | (909, '04', 401, 1, '15513', 'Cesare,Willis A', 0, 35, 3, ''), 1464 | (910, '05', 401, 1, '15514', 'Waiters,Anne E', 0, 35, 3, ''), 1465 | (911, '06', 401, 1, '15515', 'TBA', 0, 35, 3, ''), 1466 | (912, '07', 401, 1, '15520', 'Samson,Dacia A', 0, 35, 3, ''), 1467 | (913, '01', 402, 1, '15516', 'Cordary,Katey', 0, 30, 3, ''), 1468 | (914, '02', 402, 1, '15518', 'TBA', 0, 30, 3, ''), 1469 | (915, '03', 402, 1, '15519', 'Cordary,Katey', 0, 30, 3, ''), 1470 | (916, '01', 403, 1, '15546', 'Cordary,Katey', 0, 30, 3, ''), 1471 | (917, 'HY1', 404, 1, '15511', 'Bryant,Birgit A', 0, 25, 3, ''), 1472 | (918, 'LN1', 404, 1, '15512', 'Bryant,Birgit A', 0, 25, 3, ''), 1473 | (919, 'LN2', 404, 1, '15586', 'Bryant,Birgit A', 0, 25, 3, ''), 1474 | (920, '01', 405, 1, '15889', 'Dushay,Robert', 0, 35, 4, ''), 1475 | (921, '1', 406, 1, '15966', 'Bryant,Birgit A', 0, 25, 3, ''), 1476 | (922, '01', 407, 1, '15685', 'Dushay,Robert', 0, 25, 3, ''), 1477 | (923, '01', 408, 1, '15517', 'Dushay,Robert', 0, 25, 3, ''), 1478 | (924, '01', 409, 1, '15890', 'Cesare,Willis A', 0, 0, 1, ''), 1479 | (925, 'NP1', 410, 1, '15967', 'Cesare,Willis A', 0, 0, 12, ''), 1480 | (926, '01', 411, 1, '15916', 'Cesare,Willis A', 0, 20, 3, ''), 1481 | (927, 'LN1', 412, 1, '15558', 'Huffington,Philip V', 0, 30, 3, ''), 1482 | (928, '01', 413, 1, '15719', 'Ballard,Finny D', 0, 30, 1, ''), 1483 | (929, '01', 414, 1, '15909', 'Huffington,Philip V', 0, 30, 3, 'A1'), 1484 | (930, '01L', 414, 1, '15910', 'Huffington,Philip V', 0, 15, 0, 'A2'), 1485 | (931, '01', 415, 1, '15686', 'Ballard,Finny D', 0, 10, 2, ''), 1486 | (932, '01', 416, 1, '15741', 'Adult,Joseph D', 0, 30, 2, 'A1'), 1487 | (933, '01L', 416, 1, '15742', 'Adult,Joseph D', 0, 15, 0, 'A2'), 1488 | (934, '02L', 416, 1, '15991', 'Adult,Joseph D', 0, 15, 0, 'A2'), 1489 | (935, '01', 417, 1, '15687', 'Ballard,Finny D', 0, 15, 3, 'A1'), 1490 | (936, '01L', 417, 1, '15688', 'Ballard,Finny D', 0, 15, 0, 'A2'), 1491 | (937, '01', 418, 1, '15911', 'Ballard,Finny D', 0, 15, 3, 'A1'), 1492 | (938, '01L', 418, 1, '15912', 'Ballard,Finny D', 0, 15, 0, 'A2'), 1493 | (939, '01', 419, 1, '16043', 'Huffington,Philip V', 0, 15, 3, 'A1'), 1494 | (940, '01L', 419, 1, '16044', 'Huffington,Philip V', 0, 15, 0, 'A2'), 1495 | (941, '01', 420, 1, '15804', 'Huffington,Philip V', 0, 10, 1, ''), 1496 | (942, 'PD1', 421, 1, '15992', 'Ballard,Finny D', 0, 0, 0, ''), 1497 | (943, '01', 422, 1, '10862', 'Revette,Bruce M', 0, 30, 3, 'A1'), 1498 | (944, '01L', 422, 1, '10863', 'Revette,Bruce M', 0, 30, 0, 'A2'), 1499 | (945, '01', 423, 1, '11904', 'Kerner,Ford C', 0, 20, 3, 'A1'), 1500 | (946, '01L', 423, 1, '12360', 'Kerner,Ford C', 0, 10, 0, 'A2'), 1501 | (947, '02L', 423, 1, '12361', 'Kerner,Ford C', 0, 10, 0, 'A2'), 1502 | (948, '01', 424, 1, '14651', 'Revette,Bruce M', 0, 20, 4, 'A1'), 1503 | (949, '01L', 424, 1, '11902', 'Revette,Bruce M', 0, 10, 0, 'A2'), 1504 | (950, '02L', 424, 1, '11903', 'Revette,Bruce M', 0, 10, 0, 'A2'), 1505 | (951, '01', 425, 1, '14437', 'Dess,Walid', 0, 15, 4, 'A1'), 1506 | (952, '01L', 425, 1, '14513', 'Dess,Walid', 0, 15, 0, 'A2'), 1507 | (953, '01', 426, 1, '14902', 'Okereke,Vick I', 0, 20, 3, ''), 1508 | (954, '01', 427, 1, '14438', 'Livengood,ELeeve J', 0, 20, 3, ''), 1509 | (955, '01', 428, 8, '15603', 'Dess,Walid', 0, 12, 1, 'A1'), 1510 | (956, '01L', 428, 8, '15649', 'Dess,Walid', 0, 12, 0, 'A2'), 1511 | (957, '01', 429, 5, '14640', 'Hardwick,J. R', 0, 20, 1, ''), 1512 | (958, '03', 429, 1, '15530', 'Dunn,Parting E', 0, 50, 1, ''), 1513 | (959, '05', 429, 1, '15769', 'Ballard,Finny D', 0, 10, 1, ''), 1514 | (960, 'NP2', 430, 1, '15973', 'Okereke,Vick I', 0, 0, 15, ''), 1515 | (961, 'NP3', 430, 1, '15975', 'Hardwick,J. R', 0, 0, 15, ''), 1516 | (962, 'NP4', 430, 1, '15977', 'Jennings-Walker,Medgarn T', 0, 0, 15, ''), 1517 | (963, 'NP5', 430, 1, '15979', 'Livengood,ELeeve J', 0, 0, 15, ''), 1518 | (964, 'NP6', 430, 1, '15981', 'Snyder,Willis', 0, 0, 15, ''), 1519 | (965, 'PD1', 430, 1, '15664', 'Dess,Walid', 0, 0, 15, ''), 1520 | (966, 'PD2', 430, 1, '15974', 'Okereke,Vick I', 0, 0, 15, ''), 1521 | (967, 'PD3', 430, 1, '15976', 'Hardwick,J. R', 0, 0, 15, ''), 1522 | (968, '01', 431, 1, '14794', 'Beele,Kerry J', 0, 15, 3, ''), 1523 | (969, '01', 432, 1, '14429', 'Washington,Joan M', 0, 16, 3, ''), 1524 | (970, '01', 433, 1, '14572', 'Felton,Draymond D', 0, 15, 3, ''), 1525 | (971, '01', 434, 1, '14428', 'Washington,Joan M', 0, 12, 1, ''), 1526 | (972, '01', 435, 1, '16051', 'Felton,Draymond D', 0, 15, 3, ''), 1527 | (973, 'PD1', 436, 1, '14707', 'Washington,Joan M', 0, 10, 12, ''), 1528 | (974, 'OC1', 437, 1, '13613', 'Weiss,Kathleen D', 0, 0, 3, ''), 1529 | (975, 'OC1', 438, 1, '13149', 'TBA', 0, 0, 3, ''), 1530 | (976, '02', 439, 1, '12087', 'TBA', 0, 25, 3, ''), 1531 | (977, '03', 439, 1, '12086', 'TBA', 0, 25, 3, ''), 1532 | (978, '06', 439, 1, '15285', 'TBA', 0, 25, 3, ''), 1533 | (979, '01', 440, 1, '15501', 'Deep,Vickia T', 0, 35, 3, ''), 1534 | (980, '02', 440, 1, '15502', 'Deep,Vickia T', 0, 35, 3, ''), 1535 | (981, '01', 441, 1, '15507', 'Megatron,Kurt E', 0, 25, 3, ''), 1536 | (982, '01', 442, 1, '15503', 'Deep,Vickia T', 0, 25, 3, ''), 1537 | (983, '01', 443, 1, '15616', 'Megatron,Kurt E', 0, 25, 3, ''), 1538 | (984, '01', 444, 1, '12919', 'Diss,Silvia', 0, 25, 3, ''), 1539 | (985, '02', 444, 1, '14869', 'Diss,Silvia', 0, 25, 3, ''), 1540 | (986, '03', 444, 1, '14979', 'Diss,Silvia', 0, 25, 3, ''), 1541 | (987, '04', 444, 1, '15495', 'Diss,Silvia', 0, 25, 3, ''), 1542 | (988, '02', 445, 1, '14699', 'Diss,Silvia', 0, 25, 3, ''), 1543 | (989, '01', 446, 1, '11039', 'Batch,Frederick W', 0, 10, 1, ''), 1544 | (990, '01', 447, 1, '11102', 'Batch,Frederick W', 0, 10, 1, ''), 1545 | (991, '01', 448, 1, '15845', 'Costello,Alvin T', 0, 1, 1, ''), 1546 | (992, '01', 449, 1, '13851', 'Costello,Alvin T', 0, 5, 1, ''), 1547 | (993, '01', 450, 1, '11146', 'Tungeston,Phyllis', 0, 1, 1, ''), 1548 | (994, '01', 451, 1, '13855', 'Pennington,Jennings-Walke', 0, 0, 1, ''), 1549 | (995, '02', 451, 1, '14573', 'Otisco,Adam J', 0, 0, 1, ''), 1550 | (996, '03', 452, 1, '15008', 'Townsend,Jason M', 0, 20, 1, ''), 1551 | (997, '01', 453, 1, '15773', 'Knight,Willis E', 0, 0, 1, ''), 1552 | (998, '02', 453, 1, '15825', 'TBA', 0, 10, 1, ''), 1553 | (999, '03', 453, 1, '15936', 'Cornwalld,Devonte D', 0, 0, 1, ''), 1554 | (1000, '01', 454, 1, '15774', 'TBA', 0, 1, 1, ''), 1555 | (1001, '02', 454, 1, '15937', 'Cornwalld,Devonte D', 0, 1, 1, ''), 1556 | (1002, '03', 454, 1, '16012', 'Seymour,Taeja D', 0, 1, 1, ''), 1557 | (1003, '02', 455, 1, '15938', 'Cornwalld,Devonte D', 0, 0, 1, ''), 1558 | (1004, '01', 456, 4, '13861', 'Snyder,Willis', 0, 15, 1, ''), 1559 | (1005, '01', 457, 4, '13862', 'Snyder,Willis', 0, 10, 1, ''), 1560 | (1006, '01', 458, 1, '14705', 'Bruno,Rich A', 0, 5, 1, ''), 1561 | (1007, '01', 459, 4, '16015', 'Axiom,Jennings-Walker J', 0, 9, 1, ''), 1562 | (1008, '01', 460, 4, '16016', 'Axiom,Jennings-Walker J', 0, 9, 1, ''), 1563 | (1009, '01', 461, 1, '15746', 'Washington,Joan M', 0, 0, 1, ''), 1564 | (1010, '01', 462, 1, '15747', 'Washington,Joan M', 0, 0, 1, ''), 1565 | (1011, '01', 463, 1, '15748', 'Washington,Joan M', 0, 0, 1, ''), 1566 | (1012, '01', 464, 1, '15761', 'Marcoux,Amy', 0, 0, 1, ''), 1567 | (1013, '02', 464, 1, '16010', 'Mills,Ken', 0, 0, 0, ''), 1568 | (1014, '01', 465, 1, '15762', 'Marcoux,Amy', 0, 0, 1, ''), 1569 | (1015, '01', 466, 1, '15763', 'Marcoux,Amy', 0, 0, 1, ''), 1570 | (1016, '01', 467, 1, '15995', 'Ballard,Finny D', 0, 0, 1, ''), 1571 | (1017, '01', 468, 1, '15791', 'Megatron,Kurt E', 0, 25, 3, ''), 1572 | (1018, 'NP1', 469, 1, '15775', 'Rejoyce,ShEnron Y', 0, 1, 15, ''), 1573 | (1019, 'PD1', 469, 1, '15587', 'Rejoyce,ShEnron Y', 0, 4, 15, ''), 1574 | (1020, '01', 470, 1, '14792', 'Hinkle,Carol', 0, 35, 3, ''), 1575 | (1021, '01', 471, 7, '14985', 'Hinkle,Carol', 0, 31, 0, ''), 1576 | (1022, '01', 472, 1, '12893', 'Gabriel,Rene C', 0, 12, 3, ''), 1577 | (1023, '01', 473, 1, '12152', 'Gabriel,Rene C', 0, 30, 3, ''), 1578 | (1024, '01', 474, 1, '12154', 'Felton,Draymond D', 0, 25, 3, ''), 1579 | (1025, '01', 475, 1, '12351', 'Gabriel,Rene C', 0, 30, 3, ''), 1580 | (1026, '01', 476, 1, '13994', 'Gabriel,Rene C', 0, 10, 2, ''), 1581 | (1027, '01', 477, 1, '13993', 'Washington,Joan M', 0, 6, 2, ''), 1582 | (1028, '0C4', 478, 1, '16019', 'Bjork,Jerry E', 0, 0, 0, ''), 1583 | (1029, 'OC1', 478, 1, '16003', 'Baggett,Jack J', 0, 0, 0, ''), 1584 | (1030, 'OC2', 478, 1, '16004', 'Baggett,Jack J', 0, 0, 0, ''), 1585 | (1031, 'OC3', 478, 1, '16018', 'Bjork,Jerry E', 0, 0, 0, ''), 1586 | (1032, 'OX1', 478, 1, '16017', 'Baggett,Jack J', 0, 0, 0, ''), 1587 | (1033, '01', 479, 1, '15567', 'TBA', 0, 0, 3, ''), 1588 | (1034, '01', 480, 1, '10438', 'Nbaga,Lenno', 0, 24, 3, 'A1'), 1589 | (1035, '01L', 480, 1, '14040', 'Nbaga,Lenno', 0, 20, 0, 'A2'), 1590 | (1036, '01', 481, 1, '10141', 'Costello,Alvin T', 0, 24, 3, 'A1'), 1591 | (1037, '02L', 481, 1, '10511', 'Costello,Alvin T', 0, 12, 0, 'A2'), 1592 | (1038, '01', 482, 1, '12158', 'Nbaga,Lenno', 0, 15, 3, 'A1'), 1593 | (1039, '01L', 482, 1, '13783', 'Nbaga,Lenno', 0, 15, 0, 'A2'), 1594 | (1040, '01', 483, 1, '11368', 'Costello,Alvin T', 0, 30, 2, 'A1'), 1595 | (1041, '01L', 483, 1, '14845', 'Costello,Alvin T', 0, 10, 0, 'A2'), 1596 | (1042, '02L', 483, 1, '14846', 'Costello,Alvin T', 0, 10, 0, 'A2'), 1597 | (1043, '01', 484, 1, '15389', 'Nbaga,Lenno', 0, 12, 3, 'A1'), 1598 | (1044, '01L', 484, 1, '15390', 'Nbaga,Lenno', 0, 12, 0, 'A2'); 1599 | 1600 | -- -------------------------------------------------------- 1601 | 1602 | -- 1603 | -- Table structure for table `course_terms` 1604 | -- 1605 | 1606 | DROP TABLE IF EXISTS `course_terms`; 1607 | CREATE TABLE IF NOT EXISTS `course_terms` ( 1608 | `id` int(11) NOT NULL AUTO_INCREMENT, 1609 | `abbreviation` varchar(5) NOT NULL, 1610 | `name` varchar(50) NOT NULL, 1611 | PRIMARY KEY (`id`) 1612 | ) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=latin1; 1613 | 1614 | -- 1615 | -- Dumping data for table `course_terms` 1616 | -- 1617 | 1618 | INSERT INTO `course_terms` (`id`, `abbreviation`, `name`) VALUES 1619 | (1, '1', 'Full Term'), 1620 | (2, '5', '5 Week Course/ 1st 5 weeks of term'), 1621 | (3, '6', '5 Week Course/ 2nd 5 weeks of term'), 1622 | (4, '7', '5 Week Course/ 3rd 5 weeks of term'), 1623 | (5, '8', '8 Week Course/ 1st 8 weeks of term'), 1624 | (6, '9', '8 Week Course/ 2nd 8 weeks of term'), 1625 | (7, 'A', '10 Week Course/ 1st 10 weeks of term'), 1626 | (8, 'B', '10 Week Course/ last 10 weeks of term'), 1627 | (9, 'C', 'Combined Parts of Term'), 1628 | (10, 'D', '6 Week Course/1st 6 weeks of term'), 1629 | (11, 'E', '6 Week Course/ 2nd 6 weeks of term'), 1630 | (12, 'F', 'Summer 1'), 1631 | (13, 'G', 'Summer 2'), 1632 | (14, 'H', 'Summer 3'); 1633 | 1634 | -- -------------------------------------------------------- 1635 | 1636 | -- 1637 | -- Table structure for table `departments` 1638 | -- 1639 | 1640 | DROP TABLE IF EXISTS `departments`; 1641 | CREATE TABLE IF NOT EXISTS `departments` ( 1642 | `id` int(5) NOT NULL AUTO_INCREMENT, 1643 | `abbreviation` varchar(5) NOT NULL, 1644 | PRIMARY KEY (`id`) 1645 | ) ENGINE=InnoDB AUTO_INCREMENT=79 DEFAULT CHARSET=latin1; 1646 | 1647 | -- 1648 | -- Dumping data for table `departments` 1649 | -- 1650 | 1651 | INSERT INTO `departments` (`id`, `abbreviation`) VALUES 1652 | (1, 'ACCT'), 1653 | (2, 'AGBS'), 1654 | (3, 'AGEN'), 1655 | (4, 'AGNR'), 1656 | (5, 'AGRO'), 1657 | (6, 'AGSC'), 1658 | (7, 'AMSL'), 1659 | (8, 'ANSC'), 1660 | (9, 'ANTH'), 1661 | (10, 'ARCH'), 1662 | (11, 'ART'), 1663 | (12, 'ASET'), 1664 | (13, 'AUTO'), 1665 | (14, 'BIOL'), 1666 | (15, 'BSAD'), 1667 | (16, 'CAD'), 1668 | (17, 'CAS'), 1669 | (18, 'CHEM'), 1670 | (19, 'CITA'), 1671 | (20, 'CJUS'), 1672 | (21, 'COAC'), 1673 | (22, 'COMM'), 1674 | (23, 'COMP'), 1675 | (24, 'COSC'), 1676 | (25, 'CUL'), 1677 | (26, 'DANS'), 1678 | (27, 'DTEC'), 1679 | (28, 'EAP'), 1680 | (29, 'ECON'), 1681 | (30, 'EDU'), 1682 | (31, 'ELEC'), 1683 | (32, 'ENGR'), 1684 | (33, 'ENSC'), 1685 | (34, 'ENTR'), 1686 | (35, 'ENVT'), 1687 | (36, 'ERID'), 1688 | (37, 'ESCI'), 1689 | (38, 'ESTB'), 1690 | (39, 'ETC'), 1691 | (40, 'FSAD'), 1692 | (41, 'GEOG'), 1693 | (42, 'GNED'), 1694 | (43, 'HIST'), 1695 | (44, 'HORT'), 1696 | (45, 'HPHP'), 1697 | (46, 'HUMS'), 1698 | (47, 'JOUR'), 1699 | (48, 'LITR'), 1700 | (49, 'MAGN'), 1701 | (50, 'MAST'), 1702 | (51, 'MATH'), 1703 | (52, 'MECH'), 1704 | (53, 'MFG'), 1705 | (54, 'MUSI'), 1706 | (55, 'NATR'), 1707 | (56, 'NURS'), 1708 | (57, 'NUTR'), 1709 | (58, 'OFFT'), 1710 | (59, 'PHED'), 1711 | (60, 'PHIL'), 1712 | (61, 'PHYS'), 1713 | (62, 'POLI'), 1714 | (63, 'PSYC'), 1715 | (64, 'RENG'), 1716 | (65, 'RESC'), 1717 | (66, 'RREN'), 1718 | (67, 'RRMT'), 1719 | (68, 'SKLS'), 1720 | (69, 'SOCI'), 1721 | (70, 'SPAN'), 1722 | (71, 'SPPR'), 1723 | (72, 'STS'), 1724 | (73, 'TECH'), 1725 | (74, 'THEA'), 1726 | (75, 'TOUR'), 1727 | (76, 'USS'), 1728 | (77, 'WELL'), 1729 | (78, 'WOOD'); 1730 | 1731 | -- -------------------------------------------------------- 1732 | 1733 | -- 1734 | -- Table structure for table `meetings` 1735 | -- 1736 | 1737 | DROP TABLE IF EXISTS `meetings`; 1738 | CREATE TABLE IF NOT EXISTS `meetings` ( 1739 | `id` int(11) NOT NULL AUTO_INCREMENT, 1740 | `monday` tinyint(1) NOT NULL DEFAULT '0', 1741 | `tuesday` tinyint(1) NOT NULL DEFAULT '0', 1742 | `wednesday` tinyint(1) NOT NULL DEFAULT '0', 1743 | `thursday` tinyint(1) NOT NULL DEFAULT '0', 1744 | `friday` tinyint(1) NOT NULL DEFAULT '0', 1745 | `startTime` int(4) NOT NULL, 1746 | `endTime` int(4) NOT NULL, 1747 | `coursesection_id` int(11) NOT NULL, 1748 | `building` varchar(25) NOT NULL, 1749 | `room` varchar(25) NOT NULL, 1750 | PRIMARY KEY (`id`) 1751 | ) ENGINE=InnoDB AUTO_INCREMENT=1012 DEFAULT CHARSET=latin1; 1752 | 1753 | -- 1754 | -- Dumping data for table `meetings` 1755 | -- 1756 | 1757 | INSERT INTO `meetings` (`id`, `monday`, `tuesday`, `wednesday`, `thursday`, `friday`, `startTime`, `endTime`, `coursesection_id`, `building`, `room`) VALUES 1758 | (1, 1, 1, 0, 1, 0, 1100, 1150, 1, '', ''), 1759 | (2, 1, 1, 0, 1, 0, 1000, 1050, 2, '', ''), 1760 | (3, 1, 0, 1, 1, 0, 1000, 1050, 3, '', ''), 1761 | (4, 1, 1, 0, 1, 0, 900, 950, 4, '', ''), 1762 | (5, 0, 1, 0, 1, 0, 1100, 1215, 5, '', ''), 1763 | (6, 0, 1, 0, 1, 0, 1400, 1515, 6, '', ''), 1764 | (7, 1, 1, 0, 1, 0, 1100, 1150, 7, '', ''), 1765 | (8, 1, 1, 1, 0, 0, 1200, 1250, 8, '', ''), 1766 | (9, 1, 0, 0, 0, 1, 1200, 1315, 9, '', ''), 1767 | (10, 1, 0, 0, 0, 1, 1330, 1445, 10, '', ''), 1768 | (11, 1, 0, 0, 0, 1, 1200, 1315, 11, '', ''), 1769 | (12, 1, 0, 0, 0, 0, 900, 1050, 12, '', ''), 1770 | (13, 0, 0, 0, 1, 0, 1500, 1650, 14, '', ''), 1771 | (14, 0, 1, 0, 0, 0, 1700, 1750, 14, '', ''), 1772 | (15, 0, 1, 0, 1, 0, 1000, 1050, 17, '', ''), 1773 | (16, 1, 0, 1, 1, 0, 1000, 1050, 18, '', ''), 1774 | (17, 0, 1, 0, 1, 0, 1100, 1150, 19, '', ''), 1775 | (18, 0, 0, 1, 0, 0, 1200, 1550, 20, '', ''), 1776 | (19, 1, 0, 0, 0, 0, 1400, 1550, 21, '', ''), 1777 | (20, 0, 0, 1, 0, 0, 1700, 1850, 22, '', ''), 1778 | (21, 1, 0, 1, 0, 0, 1100, 1150, 25, '', ''), 1779 | (22, 0, 0, 0, 0, 1, 800, 1050, 27, '', ''), 1780 | (23, 0, 0, 0, 1, 0, 1200, 1250, 28, '', ''), 1781 | (24, 1, 0, 0, 0, 0, 1400, 1650, 29, '', ''), 1782 | (25, 0, 0, 1, 0, 0, 800, 1050, 30, '', ''), 1783 | (26, 0, 0, 1, 0, 0, 1400, 1650, 31, '', ''), 1784 | (27, 1, 0, 1, 0, 0, 900, 950, 32, '', ''), 1785 | (28, 1, 0, 0, 0, 0, 1300, 1450, 33, '', ''), 1786 | (29, 1, 0, 0, 0, 0, 1500, 1650, 34, '', ''), 1787 | (30, 0, 0, 0, 1, 0, 900, 1050, 35, '', ''), 1788 | (31, 0, 1, 0, 0, 0, 1400, 1550, 36, '', ''), 1789 | (32, 0, 1, 0, 1, 0, 1000, 1050, 37, '', ''), 1790 | (33, 0, 0, 0, 1, 0, 1400, 1550, 38, '', ''), 1791 | (34, 0, 1, 0, 1, 0, 900, 950, 39, '', ''), 1792 | (35, 0, 1, 0, 0, 0, 1400, 1550, 40, '', ''), 1793 | (36, 0, 1, 0, 0, 0, 1600, 1750, 41, '', ''), 1794 | (37, 0, 1, 0, 0, 0, 1000, 1150, 42, '', ''), 1795 | (38, 0, 0, 1, 0, 1, 1200, 1250, 43, '', ''), 1796 | (39, 0, 0, 0, 1, 0, 1400, 1650, 44, '', ''), 1797 | (40, 1, 0, 0, 1, 0, 1200, 1250, 45, '', ''), 1798 | (41, 0, 1, 0, 0, 0, 1400, 1750, 46, '', ''), 1799 | (42, 0, 0, 1, 0, 0, 1800, 2050, 47, '', ''), 1800 | (43, 0, 0, 0, 0, 1, 1100, 1150, 48, '', ''), 1801 | (44, 1, 0, 0, 0, 0, 1600, 1650, 48, '', ''), 1802 | (45, 0, 0, 1, 0, 0, 1300, 1650, 49, '', ''), 1803 | (46, 1, 0, 0, 0, 0, 1800, 1850, 50, '', ''), 1804 | (47, 0, 0, 0, 1, 0, 1400, 1750, 51, '', ''), 1805 | (48, 0, 0, 1, 0, 0, 700, 750, 55, '', ''), 1806 | (49, 0, 0, 0, 1, 0, 700, 750, 56, '', ''), 1807 | (50, 0, 0, 0, 1, 0, 700, 750, 57, '', ''), 1808 | (51, 1, 0, 0, 0, 0, 700, 750, 58, '', ''), 1809 | (52, 1, 0, 0, 0, 0, 700, 750, 59, '', ''), 1810 | (53, 1, 0, 0, 0, 0, 700, 750, 60, '', ''), 1811 | (54, 0, 1, 0, 1, 0, 800, 850, 61, '', ''), 1812 | (55, 1, 0, 0, 0, 0, 1300, 1450, 62, '', ''), 1813 | (56, 0, 1, 0, 1, 0, 900, 950, 63, '', ''), 1814 | (57, 1, 0, 0, 0, 0, 1500, 1650, 64, '', ''), 1815 | (58, 0, 0, 1, 0, 0, 1300, 1450, 65, '', ''), 1816 | (59, 0, 0, 0, 0, 1, 1300, 1450, 66, '', ''), 1817 | (60, 0, 1, 0, 0, 0, 1400, 1550, 67, '', ''), 1818 | (61, 0, 1, 0, 0, 0, 1600, 1750, 68, '', ''), 1819 | (62, 1, 0, 0, 0, 0, 800, 950, 69, '', ''), 1820 | (63, 1, 0, 1, 0, 1, 800, 850, 70, '', ''), 1821 | (64, 0, 1, 0, 1, 0, 1000, 1115, 71, '', ''), 1822 | (65, 0, 1, 0, 1, 0, 1130, 1245, 72, '', ''), 1823 | (66, 1, 0, 1, 0, 0, 1400, 1515, 75, '', ''), 1824 | (67, 0, 1, 0, 1, 0, 1400, 1450, 77, '', ''), 1825 | (68, 0, 1, 0, 1, 0, 1500, 1650, 78, '', ''), 1826 | (69, 0, 1, 0, 1, 0, 1030, 1145, 79, '', ''), 1827 | (70, 1, 0, 1, 0, 0, 1400, 1450, 80, '', ''), 1828 | (71, 1, 0, 1, 0, 0, 1500, 1650, 81, '', ''), 1829 | (72, 0, 1, 0, 1, 0, 1400, 1515, 82, '', ''), 1830 | (73, 0, 1, 0, 0, 0, 900, 950, 83, '', ''), 1831 | (74, 0, 0, 0, 1, 0, 900, 1050, 84, '', ''), 1832 | (75, 0, 1, 0, 0, 0, 1000, 1150, 84, '', ''), 1833 | (76, 1, 0, 1, 0, 0, 1530, 1645, 85, '', ''), 1834 | (77, 0, 1, 0, 1, 0, 1545, 1700, 86, '', ''), 1835 | (78, 1, 0, 1, 0, 0, 1300, 1450, 87, '', ''), 1836 | (79, 1, 1, 1, 1, 0, 800, 850, 88, '', ''), 1837 | (80, 1, 1, 1, 1, 0, 900, 1150, 89, '', ''), 1838 | (81, 1, 1, 1, 1, 0, 1400, 1650, 90, '', ''), 1839 | (82, 1, 1, 1, 1, 0, 800, 850, 91, '', ''), 1840 | (83, 1, 1, 1, 1, 0, 900, 1150, 92, '', ''), 1841 | (84, 1, 1, 1, 1, 0, 1400, 1650, 93, '', ''), 1842 | (85, 1, 0, 0, 0, 0, 700, 750, 94, '', ''), 1843 | (86, 1, 1, 1, 1, 0, 900, 950, 95, '', ''), 1844 | (87, 1, 0, 1, 0, 0, 1400, 1650, 96, '', ''), 1845 | (88, 0, 1, 0, 1, 0, 1400, 1650, 96, '', ''), 1846 | (89, 1, 1, 1, 1, 0, 900, 950, 97, '', ''), 1847 | (90, 1, 0, 1, 0, 0, 1400, 1650, 98, '', ''), 1848 | (91, 0, 1, 0, 1, 0, 1400, 1650, 98, '', ''), 1849 | (92, 1, 0, 0, 0, 0, 700, 750, 99, '', ''), 1850 | (93, 1, 0, 0, 0, 0, 900, 950, 100, '', ''), 1851 | (94, 1, 0, 0, 0, 0, 1400, 1650, 101, '', ''), 1852 | (95, 0, 0, 1, 0, 0, 900, 950, 102, '', ''), 1853 | (96, 0, 1, 0, 0, 0, 900, 1150, 103, '', ''), 1854 | (97, 0, 1, 0, 0, 0, 1400, 1650, 104, '', ''), 1855 | (98, 0, 0, 1, 0, 0, 1400, 1650, 105, '', ''), 1856 | (99, 0, 1, 0, 1, 0, 1100, 1150, 106, '', ''), 1857 | (100, 1, 0, 0, 0, 0, 900, 1150, 107, '', ''), 1858 | (101, 0, 1, 0, 1, 0, 1200, 1250, 108, '', ''), 1859 | (102, 1, 0, 0, 0, 0, 1300, 1550, 109, '', ''), 1860 | (103, 0, 0, 1, 0, 0, 900, 1150, 110, '', ''), 1861 | (104, 0, 0, 1, 0, 0, 1400, 1650, 111, '', ''), 1862 | (105, 0, 1, 0, 1, 0, 1200, 1250, 112, '', ''), 1863 | (106, 0, 0, 1, 0, 0, 1100, 1350, 113, '', ''), 1864 | (107, 1, 0, 1, 0, 0, 1300, 1350, 114, '', ''), 1865 | (108, 0, 0, 1, 0, 0, 1400, 1550, 115, '', ''), 1866 | (109, 0, 0, 1, 0, 0, 1200, 1250, 117, '', ''), 1867 | (110, 1, 0, 1, 0, 0, 1200, 1250, 118, '', ''), 1868 | (111, 1, 0, 1, 0, 0, 1300, 1350, 119, '', ''), 1869 | (112, 0, 1, 0, 0, 0, 900, 1150, 120, '', ''), 1870 | (113, 1, 0, 1, 0, 0, 1500, 1550, 121, '', ''), 1871 | (114, 0, 0, 1, 0, 0, 1400, 1650, 122, '', ''), 1872 | (115, 0, 0, 0, 1, 0, 900, 1150, 123, '', ''), 1873 | (116, 0, 0, 0, 1, 0, 1400, 1650, 124, '', ''), 1874 | (117, 0, 1, 0, 0, 0, 1400, 1650, 125, '', ''), 1875 | (118, 0, 0, 1, 0, 0, 800, 1050, 126, '', ''), 1876 | (119, 0, 0, 0, 0, 1, 900, 1150, 127, '', ''), 1877 | (120, 0, 1, 0, 1, 0, 1200, 1250, 128, '', ''), 1878 | (121, 0, 1, 0, 0, 0, 900, 1150, 129, '', ''), 1879 | (122, 0, 1, 0, 1, 0, 1100, 1150, 130, '', ''), 1880 | (123, 0, 0, 0, 0, 1, 900, 1150, 131, '', ''), 1881 | (124, 0, 1, 0, 1, 0, 1200, 1250, 132, '', ''), 1882 | (125, 1, 0, 0, 0, 0, 800, 1150, 133, '', ''), 1883 | (126, 0, 1, 0, 1, 0, 1400, 1450, 134, '', ''), 1884 | (127, 1, 0, 0, 0, 0, 1300, 1650, 135, '', ''), 1885 | (128, 0, 0, 0, 0, 1, 800, 1150, 136, '', ''), 1886 | (129, 0, 0, 1, 0, 0, 800, 1150, 137, '', ''), 1887 | (130, 0, 0, 1, 0, 0, 1300, 1650, 138, '', ''), 1888 | (131, 0, 0, 0, 1, 0, 800, 1150, 139, '', ''), 1889 | (132, 0, 0, 0, 1, 0, 1400, 1750, 140, '', ''), 1890 | (133, 1, 0, 1, 0, 0, 1300, 1350, 141, '', ''), 1891 | (134, 1, 0, 0, 0, 0, 800, 1050, 142, '', ''), 1892 | (135, 1, 0, 0, 0, 0, 1400, 1750, 142, '', ''), 1893 | (136, 0, 1, 0, 0, 0, 800, 1050, 143, '', ''), 1894 | (137, 0, 1, 0, 0, 0, 1400, 1750, 143, '', ''), 1895 | (138, 0, 0, 1, 0, 0, 800, 1050, 144, '', ''), 1896 | (139, 0, 0, 1, 0, 0, 1400, 1750, 144, '', ''), 1897 | (140, 0, 0, 0, 1, 0, 800, 1050, 145, '', ''), 1898 | (141, 0, 0, 0, 1, 0, 1400, 1750, 145, '', ''), 1899 | (142, 1, 0, 1, 0, 0, 1100, 1150, 146, '', ''), 1900 | (143, 1, 0, 0, 0, 0, 800, 1050, 147, '', ''), 1901 | (144, 0, 1, 0, 0, 0, 800, 1150, 147, '', ''), 1902 | (145, 0, 0, 0, 1, 0, 800, 1150, 148, '', ''), 1903 | (146, 0, 0, 1, 0, 0, 800, 1050, 148, '', ''), 1904 | (147, 0, 0, 0, 1, 0, 1400, 1650, 149, '', ''), 1905 | (148, 0, 0, 0, 1, 0, 1400, 1650, 150, '', ''), 1906 | (149, 0, 0, 0, 0, 1, 1500, 1750, 151, '', ''), 1907 | (150, 0, 1, 0, 1, 0, 1200, 1250, 152, '', ''), 1908 | (151, 0, 0, 0, 1, 0, 900, 1150, 153, '', ''), 1909 | (152, 1, 0, 1, 0, 0, 1300, 1350, 154, '', ''), 1910 | (153, 1, 0, 1, 0, 0, 1400, 1650, 155, '', ''), 1911 | (154, 0, 1, 0, 1, 0, 1400, 1650, 155, '', ''), 1912 | (155, 0, 1, 0, 1, 0, 1000, 1050, 156, '', ''), 1913 | (156, 1, 0, 0, 0, 0, 900, 1150, 157, '', ''), 1914 | (157, 0, 0, 0, 0, 1, 900, 1150, 158, '', ''), 1915 | (158, 0, 0, 0, 0, 1, 1300, 1550, 159, '', ''), 1916 | (159, 0, 1, 0, 1, 0, 1100, 1150, 160, '', ''), 1917 | (160, 0, 1, 0, 0, 0, 1400, 1650, 161, '', ''), 1918 | (161, 0, 1, 0, 1, 0, 1200, 1250, 162, '', ''), 1919 | (162, 1, 0, 0, 0, 0, 800, 1050, 163, '', ''), 1920 | (163, 1, 0, 0, 0, 0, 1400, 1650, 164, '', ''), 1921 | (164, 0, 1, 0, 0, 0, 1400, 1650, 165, '', ''), 1922 | (165, 0, 0, 1, 0, 0, 800, 1050, 166, '', ''), 1923 | (166, 0, 0, 1, 0, 0, 1400, 1650, 167, '', ''), 1924 | (167, 0, 0, 0, 1, 0, 1400, 1650, 168, '', ''), 1925 | (168, 0, 0, 0, 0, 1, 800, 1050, 169, '', ''), 1926 | (169, 1, 1, 1, 0, 0, 1700, 1750, 170, '', ''), 1927 | (170, 1, 0, 1, 0, 0, 1200, 1250, 171, '', ''), 1928 | (171, 1, 0, 0, 0, 0, 1400, 1650, 172, '', ''), 1929 | (172, 0, 0, 1, 0, 0, 1000, 1050, 173, '', ''), 1930 | (173, 0, 0, 1, 0, 0, 1300, 1350, 173, '', ''), 1931 | (174, 1, 0, 0, 0, 0, 800, 1050, 174, '', ''), 1932 | (175, 0, 1, 0, 0, 0, 1400, 1650, 175, '', ''), 1933 | (176, 0, 0, 1, 0, 0, 1400, 1650, 176, '', ''), 1934 | (177, 0, 0, 0, 1, 0, 800, 1050, 177, '', ''), 1935 | (178, 0, 0, 0, 1, 0, 1400, 1650, 178, '', ''), 1936 | (179, 0, 0, 0, 0, 1, 800, 1050, 179, '', ''), 1937 | (180, 1, 1, 1, 0, 0, 1100, 1150, 180, '', ''), 1938 | (181, 1, 1, 1, 0, 0, 1700, 1750, 181, '', ''), 1939 | (182, 0, 0, 0, 1, 0, 1700, 1750, 182, '', ''), 1940 | (183, 0, 0, 0, 1, 1, 1100, 1150, 182, '', ''), 1941 | (184, 0, 1, 0, 1, 0, 1000, 1050, 183, '', ''), 1942 | (185, 0, 1, 0, 0, 0, 1500, 1750, 184, '', ''), 1943 | (186, 0, 1, 0, 1, 0, 900, 950, 185, '', ''), 1944 | (187, 0, 0, 0, 1, 0, 1500, 1750, 186, '', ''), 1945 | (188, 0, 0, 0, 0, 1, 1200, 1250, 187, '', ''), 1946 | (189, 1, 0, 1, 0, 1, 1000, 1050, 190, '', ''), 1947 | (190, 1, 0, 0, 0, 0, 1300, 1450, 191, '', ''), 1948 | (191, 0, 1, 0, 0, 0, 1100, 1250, 192, '', ''), 1949 | (192, 1, 0, 1, 0, 1, 800, 850, 193, '', ''), 1950 | (193, 1, 0, 0, 0, 0, 1100, 1250, 194, '', ''), 1951 | (194, 0, 1, 0, 1, 0, 1100, 1150, 195, '', ''), 1952 | (195, 0, 0, 0, 1, 0, 1400, 1550, 196, '', ''), 1953 | (196, 1, 0, 1, 0, 1, 1100, 1150, 197, '', ''), 1954 | (197, 1, 0, 0, 0, 0, 900, 1050, 198, '', ''), 1955 | (198, 1, 0, 1, 0, 1, 1200, 1250, 199, '', ''), 1956 | (199, 1, 0, 0, 0, 0, 1400, 1550, 200, '', ''), 1957 | (200, 1, 0, 1, 0, 1, 1300, 1350, 201, '', ''), 1958 | (201, 0, 1, 0, 0, 0, 1100, 1250, 202, '', ''), 1959 | (202, 1, 0, 1, 0, 1, 1300, 1350, 203, '', ''), 1960 | (203, 0, 1, 0, 0, 0, 1400, 1550, 204, '', ''), 1961 | (204, 0, 0, 1, 0, 0, 900, 1050, 205, '', ''), 1962 | (205, 0, 0, 1, 0, 0, 1400, 1550, 206, '', ''), 1963 | (206, 0, 0, 0, 1, 0, 900, 1050, 207, '', ''), 1964 | (207, 0, 0, 0, 1, 0, 1400, 1550, 208, '', ''), 1965 | (208, 0, 0, 0, 1, 0, 1100, 1250, 209, '', ''), 1966 | (209, 1, 0, 1, 0, 1, 1200, 1250, 210, '', ''), 1967 | (210, 1, 0, 1, 0, 1, 1200, 1250, 211, '', ''), 1968 | (211, 0, 0, 1, 0, 0, 1300, 1450, 212, '', ''), 1969 | (212, 1, 0, 1, 0, 1, 900, 950, 213, '', ''), 1970 | (213, 0, 1, 0, 0, 0, 1400, 1550, 214, '', ''), 1971 | (214, 0, 0, 1, 0, 0, 1000, 1150, 215, '', ''), 1972 | (215, 0, 0, 0, 0, 1, 1000, 1150, 216, '', ''), 1973 | (216, 1, 0, 1, 0, 1, 1100, 1150, 217, '', ''), 1974 | (217, 0, 0, 1, 0, 0, 1400, 1550, 218, '', ''), 1975 | (218, 0, 1, 0, 0, 0, 900, 1050, 219, '', ''), 1976 | (219, 0, 0, 0, 1, 0, 1000, 1250, 220, '', ''), 1977 | (220, 1, 1, 1, 0, 0, 900, 950, 221, '', ''), 1978 | (221, 0, 1, 0, 0, 0, 1100, 1250, 222, '', ''), 1979 | (222, 0, 1, 0, 0, 0, 1400, 1550, 223, '', ''), 1980 | (223, 0, 0, 0, 1, 0, 1100, 1250, 224, '', ''), 1981 | (224, 0, 0, 0, 1, 0, 1400, 1550, 225, '', ''), 1982 | (225, 0, 0, 0, 0, 1, 1100, 1250, 226, '', ''), 1983 | (226, 1, 0, 1, 0, 1, 800, 850, 227, '', ''), 1984 | (227, 1, 0, 0, 0, 0, 1000, 1150, 228, '', ''), 1985 | (228, 1, 0, 0, 0, 0, 1500, 1550, 229, '', ''), 1986 | (229, 0, 1, 0, 0, 0, 1100, 1250, 229, '', ''), 1987 | (230, 1, 0, 0, 0, 0, 1300, 1450, 230, '', ''), 1988 | (231, 0, 0, 1, 0, 0, 1000, 1150, 231, '', ''), 1989 | (232, 0, 0, 1, 0, 0, 1300, 1450, 232, '', ''), 1990 | (233, 0, 0, 0, 1, 0, 900, 1050, 233, '', ''), 1991 | (234, 0, 0, 0, 0, 1, 900, 1050, 234, '', ''), 1992 | (235, 0, 0, 0, 0, 1, 1300, 1350, 235, '', ''), 1993 | (236, 0, 1, 0, 0, 0, 900, 1050, 235, '', ''), 1994 | (237, 0, 1, 0, 0, 0, 1100, 1250, 236, '', ''), 1995 | (238, 1, 0, 0, 0, 0, 1000, 1130, 237, '', ''), 1996 | (239, 0, 1, 0, 0, 0, 1000, 1130, 237, '', ''), 1997 | (240, 0, 1, 1, 0, 0, 1200, 1250, 238, '', ''), 1998 | (241, 0, 0, 0, 1, 0, 1200, 1250, 239, '', ''), 1999 | (242, 0, 1, 0, 0, 0, 1400, 1450, 239, '', ''), 2000 | (243, 1, 0, 0, 0, 0, 1100, 1150, 241, '', ''), 2001 | (244, 0, 1, 0, 1, 0, 1100, 1150, 241, '', ''), 2002 | (245, 0, 1, 0, 1, 0, 830, 945, 242, '', ''), 2003 | (246, 0, 1, 0, 1, 0, 1400, 1515, 243, '', ''), 2004 | (247, 1, 0, 1, 0, 1, 1300, 1350, 244, '', ''), 2005 | (248, 0, 1, 0, 1, 1, 1000, 1050, 245, '', ''), 2006 | (249, 1, 1, 0, 1, 0, 1430, 1545, 246, '', ''), 2007 | (250, 1, 1, 0, 1, 0, 1600, 1715, 247, '', ''), 2008 | (251, 0, 1, 0, 0, 0, 1600, 1850, 248, '', ''), 2009 | (252, 1, 0, 1, 1, 0, 900, 950, 249, '', ''), 2010 | (253, 1, 1, 0, 1, 0, 1200, 1250, 250, '', ''), 2011 | (254, 1, 1, 0, 1, 0, 1200, 1250, 252, '', ''), 2012 | (255, 1, 1, 0, 1, 0, 900, 950, 253, '', ''), 2013 | (256, 1, 1, 0, 1, 0, 1100, 1150, 254, '', ''), 2014 | (257, 0, 1, 0, 0, 0, 1600, 1850, 255, '', ''), 2015 | (258, 0, 0, 1, 0, 0, 700, 750, 256, '', ''), 2016 | (259, 1, 0, 1, 1, 0, 1100, 1150, 258, '', ''), 2017 | (260, 0, 1, 0, 1, 1, 900, 950, 260, '', ''), 2018 | (261, 1, 0, 1, 1, 0, 1100, 1150, 261, '', ''), 2019 | (262, 1, 0, 1, 0, 0, 1400, 1515, 262, '', ''), 2020 | (263, 1, 0, 1, 1, 0, 1200, 1250, 263, '', ''), 2021 | (264, 1, 1, 1, 0, 0, 1400, 1450, 264, '', ''), 2022 | (265, 1, 1, 0, 1, 0, 1400, 1450, 265, '', ''), 2023 | (266, 1, 1, 0, 1, 0, 1500, 1550, 266, '', ''), 2024 | (267, 0, 1, 0, 1, 0, 1130, 1245, 267, '', ''), 2025 | (268, 1, 1, 0, 1, 0, 1100, 1150, 268, '', ''), 2026 | (269, 1, 0, 1, 0, 0, 1400, 1550, 269, '', ''), 2027 | (270, 1, 0, 1, 0, 0, 800, 950, 270, '', ''), 2028 | (271, 0, 1, 0, 1, 0, 1000, 1150, 271, '', ''), 2029 | (272, 0, 1, 0, 1, 0, 1400, 1515, 272, '', ''), 2030 | (273, 1, 0, 1, 0, 0, 1530, 1645, 273, '', ''), 2031 | (274, 0, 1, 0, 1, 0, 1530, 1645, 274, '', ''), 2032 | (275, 0, 1, 0, 1, 0, 830, 945, 275, '', ''), 2033 | (276, 1, 0, 1, 0, 0, 1200, 1350, 276, '', ''), 2034 | (277, 0, 1, 0, 1, 0, 1400, 1550, 277, '', ''), 2035 | (278, 1, 1, 0, 1, 0, 1000, 1050, 278, '', ''), 2036 | (279, 1, 0, 1, 0, 0, 1400, 1515, 279, '', ''), 2037 | (280, 0, 1, 0, 1, 0, 1400, 1515, 280, '', ''), 2038 | (281, 1, 0, 1, 0, 0, 1130, 1245, 281, '', ''), 2039 | (282, 1, 0, 0, 0, 0, 900, 950, 282, '', ''), 2040 | (283, 0, 0, 1, 1, 0, 900, 950, 282, '', ''), 2041 | (284, 1, 0, 1, 0, 0, 1400, 1515, 283, '', ''), 2042 | (285, 0, 1, 0, 1, 0, 1400, 1515, 284, '', ''), 2043 | (286, 0, 1, 0, 1, 0, 1130, 1245, 285, '', ''), 2044 | (287, 0, 0, 0, 1, 0, 1400, 1550, 286, '', ''), 2045 | (288, 1, 0, 0, 0, 0, 1500, 1650, 287, '', ''), 2046 | (289, 0, 0, 0, 1, 0, 1100, 1250, 288, '', ''), 2047 | (290, 0, 1, 0, 0, 0, 1500, 1650, 289, '', ''), 2048 | (291, 1, 0, 1, 0, 0, 1300, 1350, 290, '', ''), 2049 | (292, 0, 0, 1, 0, 0, 1400, 1550, 291, '', ''), 2050 | (293, 0, 1, 0, 1, 0, 900, 1050, 292, '', ''), 2051 | (294, 0, 1, 0, 1, 0, 1000, 1115, 293, '', ''), 2052 | (295, 0, 1, 0, 0, 0, 1000, 1250, 294, '', ''), 2053 | (296, 1, 0, 1, 0, 1, 900, 950, 295, '', ''), 2054 | (297, 1, 0, 0, 0, 0, 1200, 1350, 296, '', ''), 2055 | (298, 1, 0, 0, 0, 0, 1400, 1550, 297, '', ''), 2056 | (299, 0, 1, 0, 0, 0, 1000, 1150, 298, '', ''), 2057 | (300, 0, 0, 1, 0, 0, 1200, 1350, 299, '', ''), 2058 | (301, 0, 0, 1, 0, 0, 1400, 1550, 300, '', ''), 2059 | (302, 1, 0, 1, 0, 1, 900, 950, 301, '', ''), 2060 | (303, 0, 0, 0, 0, 1, 1100, 1250, 302, '', ''), 2061 | (304, 1, 0, 1, 0, 1, 800, 850, 303, '', ''), 2062 | (305, 0, 1, 0, 0, 0, 1000, 1150, 304, '', ''), 2063 | (306, 1, 0, 1, 0, 1, 1100, 1150, 305, '', ''), 2064 | (307, 0, 0, 0, 1, 0, 900, 1150, 306, '', ''), 2065 | (308, 1, 0, 1, 0, 1, 1000, 1050, 307, '', ''), 2066 | (309, 0, 1, 0, 0, 0, 1400, 1650, 308, '', ''), 2067 | (310, 1, 0, 1, 0, 1, 900, 950, 309, '', ''), 2068 | (311, 0, 0, 0, 1, 0, 1400, 1750, 310, '', ''), 2069 | (312, 1, 0, 1, 0, 0, 1000, 1050, 311, '', ''), 2070 | (313, 0, 0, 1, 0, 1, 1400, 1450, 312, '', ''), 2071 | (314, 0, 1, 0, 1, 0, 900, 950, 313, '', ''), 2072 | (315, 1, 0, 1, 0, 0, 1600, 1650, 314, '', ''), 2073 | (316, 1, 0, 1, 0, 0, 1700, 1750, 315, '', ''), 2074 | (317, 1, 0, 1, 0, 0, 1800, 1850, 316, '', ''), 2075 | (318, 0, 0, 1, 0, 1, 1000, 1115, 317, '', ''), 2076 | (319, 0, 1, 0, 1, 0, 1600, 1750, 318, '', ''), 2077 | (320, 1, 0, 0, 0, 0, 900, 1050, 319, '', ''), 2078 | (321, 0, 1, 0, 0, 0, 900, 1050, 320, '', ''), 2079 | (322, 0, 0, 1, 0, 0, 900, 1050, 321, '', ''), 2080 | (323, 0, 0, 0, 0, 1, 1000, 1150, 322, '', ''), 2081 | (324, 0, 1, 0, 1, 0, 1100, 1250, 323, '', ''), 2082 | (325, 0, 1, 0, 1, 0, 1100, 1250, 324, '', ''), 2083 | (326, 0, 1, 0, 0, 0, 1400, 1550, 325, '', ''), 2084 | (327, 0, 0, 0, 1, 0, 1400, 1550, 326, '', ''), 2085 | (328, 0, 0, 0, 0, 1, 1400, 1550, 327, '', ''), 2086 | (329, 0, 1, 0, 1, 0, 800, 950, 328, '', ''), 2087 | (330, 0, 1, 0, 1, 0, 800, 950, 329, '', ''), 2088 | (331, 1, 0, 1, 0, 0, 1400, 1550, 330, '', ''), 2089 | (332, 0, 1, 0, 1, 0, 1100, 1250, 331, '', ''), 2090 | (333, 1, 0, 1, 0, 0, 1400, 1515, 332, '', ''), 2091 | (334, 1, 0, 1, 0, 0, 900, 1050, 333, '', ''), 2092 | (335, 0, 1, 0, 0, 0, 800, 950, 334, '', ''), 2093 | (336, 0, 0, 0, 1, 0, 800, 950, 335, '', ''), 2094 | (337, 1, 0, 1, 0, 0, 1400, 1550, 336, '', ''), 2095 | (338, 0, 0, 1, 0, 1, 1000, 1150, 337, '', ''), 2096 | (339, 1, 0, 1, 0, 0, 1200, 1350, 338, '', ''), 2097 | (340, 1, 0, 0, 0, 0, 800, 950, 339, '', ''), 2098 | (341, 0, 0, 1, 0, 0, 800, 950, 340, '', ''), 2099 | (342, 0, 1, 0, 1, 0, 1400, 1550, 341, '', ''), 2100 | (343, 0, 1, 0, 1, 0, 1100, 1250, 342, '', ''), 2101 | (344, 0, 1, 0, 0, 0, 1600, 1650, 343, '', ''), 2102 | (345, 0, 0, 0, 0, 1, 800, 950, 344, '', ''), 2103 | (346, 1, 0, 0, 1, 0, 1000, 1050, 344, '', ''), 2104 | (347, 1, 0, 1, 0, 0, 1400, 1515, 347, '', ''), 2105 | (348, 0, 1, 0, 0, 0, 1800, 2050, 348, '', ''), 2106 | (349, 1, 0, 1, 0, 0, 1000, 1115, 349, '', ''), 2107 | (350, 1, 0, 1, 0, 0, 1400, 1515, 350, '', ''), 2108 | (351, 0, 1, 0, 1, 0, 830, 945, 351, '', ''), 2109 | (352, 0, 1, 0, 1, 0, 1000, 1115, 352, '', ''), 2110 | (353, 1, 0, 1, 0, 0, 1000, 1115, 353, '', ''), 2111 | (354, 0, 1, 0, 1, 0, 1400, 1515, 354, '', ''), 2112 | (355, 0, 1, 0, 1, 0, 1530, 1645, 355, '', ''), 2113 | (356, 0, 1, 0, 1, 0, 1400, 1515, 356, '', ''), 2114 | (357, 1, 0, 1, 0, 0, 830, 945, 357, '', ''), 2115 | (358, 0, 1, 0, 1, 0, 1000, 1115, 358, '', ''), 2116 | (359, 0, 1, 0, 1, 0, 1400, 1515, 359, '', ''), 2117 | (360, 0, 0, 1, 0, 0, 1630, 1920, 360, '', ''), 2118 | (361, 0, 1, 0, 1, 0, 1400, 1515, 361, '', ''), 2119 | (362, 1, 0, 1, 0, 0, 1130, 1245, 362, '', ''), 2120 | (363, 0, 1, 0, 1, 0, 1000, 1115, 363, '', ''), 2121 | (364, 1, 0, 0, 0, 0, 1800, 2050, 364, '', ''), 2122 | (365, 0, 1, 0, 0, 0, 1800, 2050, 365, '', ''), 2123 | (366, 1, 0, 1, 0, 0, 1300, 1350, 366, '', ''), 2124 | (367, 1, 0, 1, 0, 0, 1400, 1450, 367, '', ''), 2125 | (368, 0, 0, 0, 1, 0, 1130, 1245, 371, '', ''), 2126 | (369, 0, 1, 0, 0, 0, 1130, 1245, 371, '', ''), 2127 | (370, 0, 1, 0, 1, 0, 1000, 1115, 372, '', ''), 2128 | (371, 1, 0, 0, 0, 0, 1800, 2050, 373, '', ''), 2129 | (372, 1, 0, 1, 0, 1, 1000, 1050, 374, '', ''), 2130 | (373, 0, 1, 0, 1, 0, 1530, 1645, 375, '', ''), 2131 | (374, 1, 0, 1, 0, 1, 900, 950, 376, '', ''), 2132 | (375, 0, 1, 0, 1, 0, 1130, 1245, 377, '', ''), 2133 | (376, 1, 0, 1, 0, 1, 1100, 1150, 378, '', ''), 2134 | (377, 1, 1, 0, 1, 0, 1100, 1150, 379, '', ''), 2135 | (378, 1, 0, 1, 0, 1, 1000, 1050, 382, '', ''), 2136 | (379, 1, 0, 1, 0, 0, 1400, 1515, 383, '', ''), 2137 | (380, 1, 0, 1, 0, 0, 1300, 1415, 386, '', ''), 2138 | (381, 0, 1, 0, 1, 0, 1400, 1515, 387, '', ''), 2139 | (382, 1, 0, 1, 0, 1, 1100, 1150, 388, '', ''), 2140 | (383, 1, 0, 1, 0, 0, 1400, 1515, 389, '', ''), 2141 | (384, 1, 0, 1, 0, 0, 1130, 1245, 390, '', ''), 2142 | (385, 1, 0, 1, 0, 0, 1530, 1645, 391, '', ''), 2143 | (386, 0, 1, 0, 1, 0, 1530, 1645, 392, '', ''), 2144 | (387, 1, 0, 1, 1, 0, 900, 950, 393, '', ''), 2145 | (388, 1, 0, 1, 0, 0, 1700, 1815, 394, '', ''), 2146 | (389, 1, 0, 1, 0, 0, 1000, 1115, 395, '', ''), 2147 | (390, 1, 1, 0, 1, 0, 1200, 1250, 400, '', ''), 2148 | (391, 1, 0, 1, 0, 1, 1000, 1050, 401, '', ''), 2149 | (392, 1, 0, 1, 0, 1, 900, 950, 402, '', ''), 2150 | (393, 0, 1, 0, 1, 0, 1130, 1245, 403, '', ''), 2151 | (394, 0, 1, 0, 1, 0, 1000, 1115, 404, '', ''), 2152 | (395, 1, 0, 1, 0, 1, 1300, 1350, 405, '', ''), 2153 | (396, 1, 0, 1, 0, 0, 1400, 1515, 406, '', ''), 2154 | (397, 0, 1, 0, 1, 0, 1530, 1645, 407, '', ''), 2155 | (398, 1, 0, 1, 0, 0, 1830, 1945, 408, '', ''), 2156 | (399, 1, 0, 1, 0, 0, 1130, 1245, 410, '', ''), 2157 | (400, 0, 1, 0, 0, 0, 1800, 2050, 411, '', ''), 2158 | (401, 0, 1, 0, 1, 0, 1130, 1245, 412, '', ''), 2159 | (402, 0, 1, 0, 1, 0, 1000, 1115, 413, '', ''), 2160 | (403, 1, 0, 1, 0, 1, 1200, 1250, 414, '', ''), 2161 | (404, 0, 0, 1, 0, 0, 1300, 1350, 415, '', ''), 2162 | (405, 1, 0, 1, 0, 1, 1100, 1150, 418, '', ''), 2163 | (406, 0, 1, 0, 1, 0, 1400, 1515, 419, '', ''), 2164 | (407, 1, 0, 1, 0, 0, 1400, 1515, 420, '', ''), 2165 | (408, 0, 1, 0, 0, 0, 1400, 1450, 421, '', ''), 2166 | (409, 0, 0, 0, 0, 1, 800, 1350, 422, '', ''), 2167 | (410, 0, 0, 1, 0, 0, 1300, 1350, 423, '', ''), 2168 | (411, 0, 0, 1, 0, 0, 900, 1250, 424, '', ''), 2169 | (412, 0, 0, 1, 0, 0, 1400, 1750, 425, '', ''), 2170 | (413, 0, 0, 0, 1, 0, 1500, 1550, 426, '', ''), 2171 | (414, 1, 0, 1, 0, 0, 1000, 1050, 428, '', ''), 2172 | (415, 0, 0, 1, 0, 0, 1300, 1450, 429, '', ''), 2173 | (416, 0, 0, 1, 0, 0, 1500, 1650, 430, '', ''), 2174 | (417, 0, 1, 0, 0, 0, 1400, 1550, 431, '', ''), 2175 | (418, 0, 1, 0, 1, 0, 1100, 1230, 432, '', ''), 2176 | (419, 1, 0, 0, 0, 0, 800, 850, 433, '', ''), 2177 | (420, 1, 0, 0, 0, 0, 1830, 1950, 434, '', ''), 2178 | (421, 0, 0, 1, 0, 0, 1300, 1350, 435, '', ''), 2179 | (422, 0, 0, 1, 0, 0, 1400, 1650, 436, '', ''), 2180 | (423, 1, 0, 1, 0, 0, 1100, 1150, 437, '', ''), 2181 | (424, 1, 0, 0, 0, 0, 1300, 1450, 438, '', ''), 2182 | (425, 1, 0, 0, 0, 0, 1500, 1650, 439, '', ''), 2183 | (426, 0, 1, 0, 0, 0, 1600, 1650, 440, '', ''), 2184 | (427, 0, 1, 0, 1, 0, 1000, 1050, 442, '', ''), 2185 | (428, 0, 0, 0, 0, 1, 1000, 1150, 443, '', ''), 2186 | (429, 0, 0, 0, 0, 1, 1100, 1150, 444, '', ''), 2187 | (430, 1, 0, 1, 0, 0, 1100, 1150, 444, '', ''), 2188 | (431, 0, 0, 1, 0, 0, 1300, 1450, 445, '', ''), 2189 | (432, 0, 0, 1, 0, 0, 1500, 1650, 446, '', ''), 2190 | (433, 0, 0, 0, 1, 0, 1400, 1550, 447, '', ''), 2191 | (434, 1, 0, 1, 0, 1, 1000, 1050, 448, '', ''), 2192 | (435, 0, 0, 0, 0, 1, 1300, 1450, 449, '', ''), 2193 | (436, 0, 0, 0, 0, 1, 800, 950, 450, '', ''), 2194 | (437, 1, 0, 1, 0, 1, 900, 950, 451, '', ''), 2195 | (438, 1, 0, 0, 0, 0, 1300, 1450, 452, '', ''), 2196 | (439, 1, 0, 0, 0, 0, 1500, 1650, 453, '', ''), 2197 | (440, 0, 0, 1, 0, 0, 1300, 1450, 454, '', ''), 2198 | (441, 0, 1, 0, 1, 0, 900, 950, 456, '', ''), 2199 | (442, 0, 1, 0, 0, 0, 1000, 1150, 457, '', ''), 2200 | (443, 0, 1, 0, 1, 0, 1600, 1800, 458, '', ''), 2201 | (444, 1, 0, 1, 0, 0, 1600, 1800, 459, '', ''), 2202 | (445, 1, 0, 1, 0, 0, 1600, 1800, 460, '', ''), 2203 | (446, 1, 0, 1, 0, 0, 1815, 2015, 461, '', ''), 2204 | (447, 1, 0, 1, 0, 0, 1815, 2015, 462, '', ''), 2205 | (448, 0, 1, 0, 1, 0, 1815, 2015, 463, '', ''), 2206 | (449, 0, 1, 0, 0, 0, 1600, 1800, 464, '', ''), 2207 | (450, 0, 1, 0, 1, 0, 1815, 2015, 465, '', ''), 2208 | (451, 0, 0, 0, 1, 0, 1600, 1800, 466, '', ''), 2209 | (452, 0, 0, 0, 0, 1, 1600, 1800, 467, '', ''), 2210 | (453, 0, 0, 0, 0, 1, 1600, 1800, 468, '', ''), 2211 | (454, 0, 1, 0, 1, 0, 1000, 1115, 469, '', ''), 2212 | (455, 0, 1, 0, 1, 0, 1130, 1245, 470, '', ''), 2213 | (456, 0, 1, 0, 1, 0, 1400, 1515, 471, '', ''), 2214 | (457, 1, 0, 1, 0, 0, 1000, 1115, 472, '', ''), 2215 | (458, 1, 0, 1, 0, 0, 1400, 1515, 473, '', ''), 2216 | (459, 0, 1, 0, 1, 0, 1000, 1115, 474, '', ''), 2217 | (460, 1, 0, 1, 0, 1, 1300, 1350, 476, '', ''), 2218 | (461, 1, 0, 1, 0, 1, 900, 950, 477, '', ''), 2219 | (462, 1, 0, 1, 0, 1, 1300, 1350, 478, '', ''), 2220 | (463, 1, 0, 1, 0, 1, 1500, 1550, 479, '', ''), 2221 | (464, 1, 0, 1, 0, 1, 1000, 1050, 480, '', ''), 2222 | (465, 1, 0, 0, 0, 0, 1200, 1250, 483, '', ''), 2223 | (466, 0, 0, 0, 0, 1, 1300, 1450, 484, '', ''), 2224 | (467, 0, 1, 0, 1, 1, 1100, 1150, 485, '', ''), 2225 | (468, 0, 1, 0, 1, 1, 1000, 1050, 486, '', ''), 2226 | (469, 1, 0, 1, 0, 1, 900, 950, 488, '', ''), 2227 | (470, 1, 0, 0, 0, 0, 800, 950, 489, '', ''), 2228 | (471, 0, 0, 0, 1, 0, 1000, 1150, 490, '', ''), 2229 | (472, 0, 1, 0, 0, 0, 1000, 1150, 491, '', ''), 2230 | (473, 0, 0, 1, 0, 0, 800, 950, 492, '', ''), 2231 | (474, 1, 0, 0, 0, 0, 1000, 1150, 493, '', ''), 2232 | (475, 0, 0, 0, 1, 0, 800, 950, 494, '', ''), 2233 | (476, 0, 0, 0, 0, 1, 800, 950, 495, '', ''), 2234 | (477, 0, 0, 1, 0, 0, 800, 950, 496, '', ''), 2235 | (478, 0, 0, 0, 1, 0, 800, 950, 497, '', ''), 2236 | (479, 0, 0, 0, 0, 1, 1000, 1150, 498, '', ''), 2237 | (480, 0, 0, 0, 0, 1, 800, 950, 499, '', ''), 2238 | (481, 1, 0, 0, 0, 0, 1000, 1150, 500, '', ''), 2239 | (482, 1, 0, 0, 0, 0, 800, 950, 501, '', ''), 2240 | (483, 0, 0, 0, 1, 0, 1000, 1150, 502, '', ''), 2241 | (484, 0, 1, 0, 0, 0, 1000, 1150, 503, '', ''), 2242 | (485, 0, 0, 0, 1, 0, 800, 850, 504, '', ''), 2243 | (486, 0, 1, 0, 0, 0, 800, 950, 505, '', ''), 2244 | (487, 0, 0, 0, 0, 1, 1000, 1150, 506, '', ''), 2245 | (488, 0, 0, 1, 0, 0, 1000, 1150, 507, '', ''), 2246 | (489, 1, 1, 1, 1, 0, 1300, 1450, 508, '', ''), 2247 | (490, 1, 0, 0, 0, 1, 1300, 1550, 509, '', ''), 2248 | (491, 0, 1, 0, 1, 0, 1400, 1650, 509, '', ''), 2249 | (492, 0, 0, 0, 1, 0, 1200, 1250, 510, '', ''), 2250 | (493, 1, 0, 0, 0, 1, 1500, 1750, 511, '', ''), 2251 | (494, 0, 0, 1, 0, 0, 1300, 1550, 511, '', ''), 2252 | (495, 0, 0, 0, 1, 0, 1200, 1250, 512, '', ''), 2253 | (496, 0, 1, 0, 1, 1, 1400, 1650, 513, '', ''), 2254 | (497, 0, 1, 0, 0, 0, 1200, 1250, 514, '', ''), 2255 | (498, 1, 0, 1, 0, 1, 1300, 1550, 515, '', ''), 2256 | (499, 1, 0, 1, 0, 1, 1200, 1250, 516, '', ''), 2257 | (500, 1, 0, 0, 0, 0, 1300, 1350, 517, '', ''), 2258 | (501, 0, 0, 1, 0, 0, 1000, 1150, 518, '', ''), 2259 | (502, 1, 1, 1, 1, 1, 700, 750, 519, '', ''), 2260 | (503, 1, 1, 1, 1, 1, 1600, 1750, 519, '', ''), 2261 | (504, 1, 1, 1, 1, 1, 700, 750, 520, '', ''), 2262 | (505, 1, 1, 1, 1, 1, 1600, 1750, 520, '', ''), 2263 | (506, 1, 0, 0, 0, 0, 1100, 1150, 521, '', ''), 2264 | (507, 0, 0, 0, 1, 0, 1400, 1650, 522, '', ''), 2265 | (508, 0, 1, 0, 0, 0, 1400, 1650, 523, '', ''), 2266 | (509, 1, 0, 0, 0, 0, 1400, 1650, 524, '', ''), 2267 | (510, 0, 0, 1, 0, 0, 1300, 1550, 525, '', ''), 2268 | (511, 0, 0, 0, 0, 1, 1300, 1550, 526, '', ''), 2269 | (512, 1, 0, 0, 0, 0, 1000, 1150, 527, '', ''), 2270 | (513, 0, 0, 1, 0, 0, 1000, 1150, 528, '', ''), 2271 | (514, 0, 0, 0, 0, 1, 1000, 1150, 529, '', ''), 2272 | (515, 0, 1, 0, 1, 0, 1000, 1050, 530, '', ''), 2273 | (516, 1, 0, 0, 0, 0, 1300, 1450, 531, '', ''), 2274 | (517, 0, 0, 1, 0, 0, 1300, 1450, 532, '', ''), 2275 | (518, 1, 0, 0, 0, 0, 1500, 1650, 533, '', ''), 2276 | (519, 0, 0, 1, 0, 0, 1500, 1650, 534, '', ''), 2277 | (520, 0, 1, 0, 1, 0, 1130, 1250, 535, '', ''), 2278 | (521, 0, 0, 1, 0, 0, 900, 1050, 536, '', ''), 2279 | (522, 0, 0, 0, 0, 1, 1200, 1350, 537, '', ''), 2280 | (523, 0, 0, 0, 0, 1, 1000, 1150, 538, '', ''), 2281 | (524, 1, 0, 0, 0, 0, 1300, 1350, 539, '', ''), 2282 | (525, 1, 1, 1, 1, 1, 1400, 1650, 540, '', ''), 2283 | (526, 1, 1, 1, 1, 1, 900, 1150, 541, '', ''), 2284 | (527, 0, 0, 0, 1, 0, 800, 850, 542, '', ''), 2285 | (528, 1, 0, 1, 0, 1, 1300, 1550, 543, '', ''), 2286 | (529, 0, 0, 1, 0, 1, 1200, 1250, 544, '', ''), 2287 | (530, 1, 0, 1, 0, 0, 1300, 1550, 552, '', ''), 2288 | (531, 0, 1, 0, 1, 0, 1100, 1150, 552, '', ''), 2289 | (532, 0, 1, 0, 1, 0, 1400, 1650, 552, '', ''), 2290 | (533, 1, 1, 1, 1, 1, 700, 1050, 553, '', ''), 2291 | (534, 0, 1, 0, 1, 0, 1100, 1150, 553, '', ''), 2292 | (535, 1, 0, 0, 0, 0, 1400, 1450, 554, '', ''), 2293 | (536, 1, 1, 1, 1, 1, 700, 1050, 554, '', ''), 2294 | (537, 1, 0, 0, 0, 0, 1300, 1350, 555, '', ''), 2295 | (538, 1, 0, 0, 0, 0, 1400, 1450, 555, '', ''), 2296 | (539, 1, 0, 0, 0, 0, 1500, 1550, 555, '', ''), 2297 | (540, 0, 1, 1, 1, 1, 1300, 1550, 555, '', ''), 2298 | (541, 0, 0, 0, 1, 0, 1200, 1250, 556, '', ''), 2299 | (542, 0, 1, 0, 1, 0, 800, 1050, 557, '', ''), 2300 | (543, 1, 1, 1, 1, 1, 700, 1050, 558, '', ''), 2301 | (544, 0, 1, 0, 0, 0, 1200, 1250, 558, '', ''), 2302 | (545, 1, 1, 1, 1, 0, 1100, 1150, 559, '', ''), 2303 | (546, 0, 1, 0, 0, 0, 800, 850, 560, '', ''), 2304 | (547, 1, 0, 0, 0, 0, 800, 850, 561, '', ''), 2305 | (548, 0, 0, 1, 0, 0, 1600, 1850, 563, '', ''), 2306 | (549, 1, 0, 1, 0, 0, 1000, 1115, 564, '', ''), 2307 | (550, 0, 1, 0, 1, 0, 900, 1050, 565, '', ''), 2308 | (551, 1, 0, 0, 0, 0, 1600, 1650, 566, '', ''), 2309 | (552, 1, 0, 0, 0, 0, 1500, 1550, 567, '', ''), 2310 | (553, 0, 0, 0, 1, 0, 1100, 1150, 568, '', ''), 2311 | (554, 1, 1, 1, 1, 0, 1600, 1950, 569, '', ''), 2312 | (555, 0, 1, 0, 1, 0, 1530, 1645, 570, '', ''), 2313 | (556, 1, 0, 1, 0, 0, 1500, 1550, 571, '', ''), 2314 | (557, 1, 0, 1, 0, 0, 1100, 1150, 572, '', ''), 2315 | (558, 1, 0, 1, 0, 0, 900, 950, 573, '', ''), 2316 | (559, 0, 0, 1, 0, 0, 1300, 1350, 574, '', ''), 2317 | (560, 0, 0, 1, 0, 0, 1800, 1930, 575, '', ''), 2318 | (561, 1, 0, 1, 1, 0, 1400, 1450, 578, '', ''), 2319 | (562, 1, 0, 1, 0, 0, 1530, 1645, 579, '', ''), 2320 | (563, 0, 1, 0, 1, 0, 1530, 1645, 580, '', ''), 2321 | (564, 1, 0, 1, 0, 0, 1000, 1115, 581, '', ''), 2322 | (565, 1, 0, 1, 1, 0, 1100, 1150, 582, '', ''), 2323 | (566, 0, 1, 0, 0, 0, 1800, 2050, 583, '', ''), 2324 | (567, 1, 0, 1, 0, 0, 830, 945, 584, '', ''), 2325 | (568, 1, 0, 1, 0, 1, 1000, 1050, 585, '', ''), 2326 | (569, 1, 0, 1, 0, 1, 1300, 1350, 586, '', ''), 2327 | (570, 1, 0, 1, 0, 1, 900, 950, 587, '', ''), 2328 | (571, 0, 1, 0, 1, 0, 1000, 1115, 588, '', ''), 2329 | (572, 0, 1, 0, 1, 0, 1200, 1250, 590, '', ''), 2330 | (573, 0, 0, 1, 0, 0, 1000, 1150, 591, '', ''), 2331 | (574, 0, 0, 1, 0, 0, 1500, 1650, 592, '', ''), 2332 | (575, 0, 1, 0, 1, 0, 900, 950, 593, '', ''), 2333 | (576, 0, 0, 1, 0, 1, 900, 950, 594, '', ''), 2334 | (577, 0, 1, 0, 0, 0, 1400, 1550, 595, '', ''), 2335 | (578, 0, 1, 0, 1, 0, 1100, 1150, 596, '', ''), 2336 | (579, 0, 0, 1, 0, 0, 1000, 1150, 597, '', ''), 2337 | (580, 1, 0, 0, 0, 1, 1000, 1050, 598, '', ''), 2338 | (581, 0, 1, 0, 0, 0, 1400, 1550, 599, '', ''), 2339 | (582, 0, 0, 0, 1, 0, 1400, 1550, 600, '', ''), 2340 | (583, 0, 1, 0, 1, 0, 1000, 1050, 601, '', ''), 2341 | (584, 0, 0, 1, 0, 0, 1300, 1450, 602, '', ''), 2342 | (585, 0, 0, 1, 0, 0, 1100, 1150, 604, '', ''), 2343 | (586, 1, 0, 1, 0, 1, 1200, 1250, 605, '', ''), 2344 | (587, 1, 0, 1, 0, 1, 1300, 1350, 608, '', ''), 2345 | (588, 0, 1, 0, 0, 0, 800, 950, 609, '', ''), 2346 | (589, 1, 0, 1, 0, 1, 1200, 1250, 611, '', ''), 2347 | (590, 0, 0, 1, 0, 0, 1300, 1350, 612, '', ''), 2348 | (591, 0, 0, 1, 0, 0, 1400, 1550, 612, '', ''), 2349 | (592, 0, 0, 0, 1, 0, 900, 950, 613, '', ''), 2350 | (593, 0, 0, 0, 1, 0, 1000, 1150, 613, '', ''), 2351 | (594, 1, 0, 1, 0, 1, 1000, 1050, 614, '', ''), 2352 | (595, 1, 0, 1, 0, 1, 900, 950, 616, '', ''), 2353 | (596, 0, 1, 0, 0, 0, 1000, 1050, 617, '', ''), 2354 | (597, 0, 1, 0, 0, 0, 1100, 1250, 617, '', ''), 2355 | (598, 1, 0, 1, 0, 1, 1100, 1150, 619, '', ''), 2356 | (599, 0, 0, 1, 0, 0, 1730, 2015, 621, '', ''), 2357 | (600, 1, 0, 1, 0, 0, 1300, 1350, 622, '', ''), 2358 | (601, 0, 1, 0, 0, 0, 1100, 1250, 623, '', ''), 2359 | (602, 1, 0, 0, 0, 0, 1000, 1150, 624, '', ''), 2360 | (603, 0, 0, 1, 0, 0, 1000, 1150, 625, '', ''), 2361 | (604, 1, 0, 1, 0, 1, 1000, 1050, 626, '', ''), 2362 | (605, 1, 0, 1, 0, 0, 1400, 1450, 627, '', ''), 2363 | (606, 1, 0, 1, 0, 0, 1400, 1450, 628, '', ''), 2364 | (607, 1, 0, 1, 0, 0, 1400, 1450, 629, '', ''), 2365 | (608, 1, 0, 1, 0, 0, 1000, 1115, 630, '', ''), 2366 | (609, 1, 0, 1, 0, 1, 1200, 1250, 631, '', ''), 2367 | (610, 1, 0, 1, 0, 0, 1400, 1450, 632, '', ''), 2368 | (611, 1, 0, 1, 0, 0, 1400, 1450, 633, '', ''), 2369 | (612, 1, 0, 1, 0, 0, 1400, 1450, 634, '', ''), 2370 | (613, 0, 1, 0, 1, 0, 1400, 1515, 635, '', ''), 2371 | (614, 0, 1, 0, 1, 0, 1000, 1115, 636, '', ''), 2372 | (615, 1, 0, 1, 0, 0, 1400, 1450, 637, '', ''), 2373 | (616, 0, 1, 0, 1, 0, 1200, 1250, 638, '', ''), 2374 | (617, 0, 0, 0, 1, 0, 1000, 1250, 639, '', ''), 2375 | (618, 0, 0, 1, 0, 0, 1000, 1050, 640, '', ''), 2376 | (619, 1, 0, 0, 0, 0, 1300, 1350, 641, '', ''), 2377 | (620, 0, 1, 0, 0, 0, 1000, 1050, 641, '', ''), 2378 | (621, 1, 0, 1, 0, 0, 1400, 1450, 642, '', ''), 2379 | (622, 1, 0, 1, 0, 0, 1400, 1450, 643, '', ''), 2380 | (623, 0, 1, 0, 1, 0, 1400, 1515, 644, '', ''), 2381 | (624, 0, 1, 0, 1, 0, 1130, 1245, 645, '', ''), 2382 | (625, 1, 0, 1, 0, 1, 1000, 1050, 646, '', ''), 2383 | (626, 0, 0, 0, 1, 0, 1000, 1115, 647, '', ''), 2384 | (627, 0, 1, 0, 0, 0, 1000, 1115, 647, '', ''), 2385 | (628, 1, 0, 1, 0, 0, 1830, 1945, 648, '', ''), 2386 | (629, 1, 0, 1, 0, 1, 900, 950, 649, '', ''), 2387 | (630, 1, 0, 1, 0, 1, 1100, 1150, 650, '', ''), 2388 | (631, 0, 1, 0, 1, 0, 1130, 1245, 651, '', ''), 2389 | (632, 0, 1, 0, 1, 0, 830, 945, 652, '', ''), 2390 | (633, 1, 0, 1, 0, 1, 1300, 1350, 653, '', ''), 2391 | (634, 1, 0, 1, 0, 0, 1700, 1815, 654, '', ''), 2392 | (635, 0, 1, 0, 1, 0, 1400, 1515, 655, '', ''), 2393 | (636, 0, 1, 0, 1, 0, 830, 945, 656, '', ''), 2394 | (637, 0, 1, 0, 1, 0, 1130, 1245, 657, '', ''), 2395 | (638, 1, 0, 1, 0, 1, 1200, 1250, 658, '', ''), 2396 | (639, 0, 1, 0, 0, 0, 900, 1150, 659, '', ''), 2397 | (640, 0, 1, 0, 0, 0, 900, 1150, 660, '', ''), 2398 | (641, 0, 0, 0, 1, 0, 1400, 1650, 661, '', ''), 2399 | (642, 0, 0, 0, 1, 0, 1400, 1650, 662, '', ''), 2400 | (643, 0, 0, 0, 0, 1, 900, 950, 663, '', ''), 2401 | (644, 0, 0, 0, 0, 1, 1000, 1320, 664, '', ''), 2402 | (645, 0, 0, 1, 0, 0, 900, 950, 665, '', ''), 2403 | (646, 0, 0, 1, 0, 0, 1000, 1320, 666, '', ''), 2404 | (647, 0, 0, 0, 1, 0, 745, 1250, 667, '', ''), 2405 | (648, 0, 0, 1, 0, 0, 1400, 1900, 667, '', ''), 2406 | (649, 1, 0, 0, 0, 0, 1200, 1450, 668, '', ''), 2407 | (650, 0, 1, 0, 0, 0, 1100, 1250, 669, '', ''), 2408 | (651, 1, 0, 1, 0, 1, 1300, 1350, 670, '', ''), 2409 | (652, 1, 0, 1, 0, 1, 900, 950, 671, '', ''), 2410 | (653, 0, 0, 0, 1, 0, 1400, 1515, 672, '', ''), 2411 | (654, 0, 1, 0, 0, 0, 1400, 1515, 672, '', ''), 2412 | (655, 0, 1, 0, 1, 0, 830, 945, 673, '', ''), 2413 | (656, 1, 0, 1, 0, 1, 1400, 1450, 674, '', ''), 2414 | (657, 1, 0, 1, 0, 1, 1000, 1050, 675, '', ''), 2415 | (658, 0, 1, 0, 1, 0, 1000, 1115, 676, '', ''), 2416 | (659, 0, 1, 0, 1, 0, 1000, 1115, 677, '', ''), 2417 | (660, 0, 1, 0, 1, 0, 1130, 1245, 678, '', ''), 2418 | (661, 0, 1, 0, 1, 0, 830, 945, 679, '', ''), 2419 | (662, 1, 0, 1, 0, 1, 1200, 1250, 680, '', ''), 2420 | (663, 1, 0, 1, 0, 1, 1100, 1150, 681, '', ''), 2421 | (664, 0, 1, 0, 1, 0, 1400, 1515, 682, '', ''), 2422 | (665, 1, 0, 1, 0, 1, 1000, 1050, 683, '', ''), 2423 | (666, 0, 1, 0, 1, 0, 1000, 1115, 684, '', ''), 2424 | (667, 0, 1, 0, 1, 0, 1400, 1515, 685, '', ''), 2425 | (668, 1, 0, 1, 0, 1, 1200, 1250, 686, '', ''), 2426 | (669, 1, 0, 1, 0, 1, 1300, 1350, 687, '', ''), 2427 | (670, 1, 0, 1, 0, 1, 1000, 1050, 688, '', ''), 2428 | (671, 0, 1, 0, 1, 0, 1400, 1515, 689, '', ''), 2429 | (672, 0, 1, 0, 1, 0, 1130, 1245, 690, '', ''), 2430 | (673, 1, 0, 1, 0, 1, 900, 950, 691, '', ''), 2431 | (674, 1, 0, 1, 0, 1, 1300, 1350, 692, '', ''), 2432 | (675, 1, 0, 1, 0, 1, 900, 950, 693, '', ''), 2433 | (676, 1, 0, 1, 0, 1, 1000, 1050, 694, '', ''), 2434 | (677, 0, 1, 0, 0, 0, 700, 750, 695, '', ''), 2435 | (678, 1, 0, 1, 0, 1, 1300, 1350, 696, '', ''), 2436 | (679, 1, 0, 1, 0, 1, 1300, 1350, 697, '', ''), 2437 | (680, 1, 0, 1, 0, 1, 1000, 1050, 698, '', ''), 2438 | (681, 1, 0, 0, 0, 0, 700, 750, 699, '', ''), 2439 | (682, 1, 0, 1, 0, 1, 900, 950, 700, '', ''), 2440 | (683, 1, 0, 1, 0, 1, 1000, 1050, 701, '', ''), 2441 | (684, 1, 0, 1, 0, 1, 1000, 1050, 702, '', ''), 2442 | (685, 0, 0, 0, 0, 1, 1400, 1450, 703, '', ''), 2443 | (686, 1, 0, 1, 0, 0, 1400, 1515, 703, '', ''), 2444 | (687, 1, 1, 1, 1, 0, 900, 950, 704, '', ''), 2445 | (688, 1, 0, 1, 0, 0, 1200, 1250, 705, '', ''), 2446 | (689, 0, 0, 1, 0, 0, 800, 1050, 706, '', ''), 2447 | (690, 1, 0, 1, 0, 1, 1100, 1150, 707, '', ''), 2448 | (691, 1, 0, 1, 0, 0, 1000, 1115, 708, '', ''), 2449 | (692, 0, 0, 0, 1, 0, 1400, 1550, 709, '', ''), 2450 | (693, 1, 0, 1, 0, 1, 900, 950, 710, '', ''), 2451 | (694, 0, 0, 0, 1, 0, 1100, 1250, 711, '', ''), 2452 | (695, 1, 0, 1, 0, 1, 1200, 1250, 712, '', ''), 2453 | (696, 0, 1, 0, 0, 0, 1500, 1750, 713, '', ''), 2454 | (697, 1, 0, 0, 0, 0, 1300, 1350, 714, '', ''), 2455 | (698, 0, 1, 0, 0, 0, 900, 1150, 715, '', ''), 2456 | (699, 0, 1, 0, 0, 0, 1400, 1650, 716, '', ''), 2457 | (700, 1, 0, 0, 0, 0, 1500, 1550, 717, '', ''), 2458 | (701, 1, 0, 0, 0, 0, 1600, 1650, 718, '', ''), 2459 | (702, 1, 0, 0, 0, 0, 1400, 1450, 719, '', ''), 2460 | (703, 0, 0, 0, 0, 1, 800, 1050, 720, '', ''), 2461 | (704, 0, 0, 0, 0, 1, 1300, 1550, 721, '', ''), 2462 | (705, 0, 1, 0, 0, 0, 1100, 1150, 722, '', ''), 2463 | (706, 0, 0, 1, 0, 0, 1400, 1750, 723, '', ''), 2464 | (707, 0, 1, 0, 1, 0, 1900, 2020, 724, '', ''), 2465 | (708, 0, 1, 0, 1, 0, 1900, 2020, 725, '', ''), 2466 | (709, 0, 1, 0, 1, 0, 1900, 2020, 726, '', ''), 2467 | (710, 0, 1, 0, 1, 0, 1900, 2020, 727, '', ''), 2468 | (711, 1, 0, 1, 0, 1, 1200, 1250, 728, '', ''), 2469 | (712, 0, 1, 0, 1, 0, 900, 950, 729, '', ''), 2470 | (713, 0, 0, 1, 0, 0, 1400, 1650, 730, '', ''), 2471 | (714, 0, 1, 0, 0, 0, 1400, 1650, 731, '', ''), 2472 | (715, 1, 0, 0, 0, 0, 900, 1050, 732, '', ''), 2473 | (716, 1, 0, 0, 0, 0, 1300, 1550, 733, '', ''), 2474 | (717, 0, 1, 0, 0, 0, 1000, 1250, 734, '', ''), 2475 | (718, 0, 1, 0, 0, 0, 1400, 1550, 735, '', ''), 2476 | (719, 1, 0, 1, 0, 0, 1000, 1050, 736, '', ''), 2477 | (720, 0, 0, 1, 0, 0, 1100, 1250, 737, '', ''), 2478 | (721, 0, 1, 0, 0, 0, 1400, 1450, 738, '', ''), 2479 | (722, 0, 1, 0, 0, 0, 1500, 1650, 739, '', ''), 2480 | (723, 0, 0, 0, 1, 0, 1200, 1250, 740, '', ''), 2481 | (724, 0, 1, 0, 0, 0, 1200, 1250, 740, '', ''), 2482 | (725, 1, 0, 0, 0, 0, 1300, 1450, 741, '', ''), 2483 | (726, 1, 0, 1, 0, 1, 800, 850, 742, '', ''), 2484 | (727, 0, 1, 0, 0, 0, 800, 850, 743, '', ''), 2485 | (728, 0, 0, 0, 0, 1, 900, 1050, 744, '', ''), 2486 | (729, 0, 0, 0, 0, 1, 1100, 1250, 745, '', ''), 2487 | (730, 1, 0, 1, 0, 0, 1100, 1150, 746, '', ''), 2488 | (731, 0, 0, 0, 1, 0, 1400, 1650, 747, '', ''), 2489 | (732, 0, 0, 0, 1, 0, 800, 1050, 748, '', ''), 2490 | (733, 0, 1, 0, 0, 0, 800, 850, 749, '', ''), 2491 | (734, 0, 0, 0, 0, 1, 900, 1050, 750, '', ''), 2492 | (735, 1, 0, 1, 0, 0, 1200, 1250, 751, '', ''), 2493 | (736, 0, 0, 0, 1, 0, 1400, 1650, 752, '', ''), 2494 | (737, 0, 1, 0, 1, 0, 1100, 1150, 753, '', ''), 2495 | (738, 1, 0, 0, 0, 0, 1400, 1650, 754, '', ''), 2496 | (739, 0, 0, 0, 1, 0, 1400, 1650, 755, '', ''), 2497 | (740, 1, 0, 1, 0, 0, 900, 950, 756, '', ''), 2498 | (741, 0, 0, 1, 0, 0, 1300, 1550, 757, '', ''), 2499 | (742, 1, 0, 1, 0, 0, 800, 850, 758, '', ''), 2500 | (743, 1, 0, 0, 0, 0, 1300, 1700, 759, '', ''), 2501 | (744, 0, 0, 0, 1, 0, 1400, 1650, 760, '', ''), 2502 | (745, 0, 0, 0, 1, 0, 1400, 1650, 761, '', ''), 2503 | (746, 0, 1, 0, 0, 0, 1400, 1650, 762, '', ''), 2504 | (747, 0, 1, 0, 0, 0, 1700, 1950, 763, '', ''), 2505 | (748, 1, 0, 0, 0, 0, 1000, 1150, 764, '', ''), 2506 | (749, 1, 1, 0, 0, 0, 1400, 1550, 765, '', ''), 2507 | (750, 0, 0, 1, 0, 0, 700, 1150, 766, '', ''), 2508 | (751, 0, 0, 1, 0, 0, 700, 1150, 767, '', ''), 2509 | (752, 0, 0, 0, 1, 0, 700, 1150, 768, '', ''), 2510 | (753, 0, 0, 1, 0, 0, 1200, 1650, 769, '', ''), 2511 | (754, 0, 0, 0, 1, 0, 1200, 1650, 770, '', ''), 2512 | (755, 0, 0, 0, 0, 1, 700, 1150, 771, '', ''), 2513 | (756, 0, 0, 1, 0, 0, 1200, 1650, 772, '', ''), 2514 | (757, 0, 0, 0, 0, 1, 700, 1150, 773, '', ''), 2515 | (758, 0, 0, 0, 1, 0, 700, 1150, 774, '', ''), 2516 | (759, 1, 1, 0, 0, 0, 1400, 1550, 775, '', ''), 2517 | (760, 0, 0, 1, 0, 0, 600, 655, 776, '', ''), 2518 | (761, 0, 0, 1, 0, 0, 700, 1200, 776, '', ''), 2519 | (762, 0, 0, 1, 0, 0, 1201, 1355, 776, '', ''), 2520 | (763, 1, 0, 0, 0, 0, 1200, 1350, 777, '', ''), 2521 | (764, 0, 0, 1, 0, 0, 600, 655, 778, '', ''), 2522 | (765, 0, 0, 1, 0, 0, 700, 1200, 778, '', ''), 2523 | (766, 0, 0, 1, 0, 0, 1201, 1355, 778, '', ''), 2524 | (767, 0, 1, 0, 0, 0, 800, 950, 779, '', ''), 2525 | (768, 0, 0, 0, 1, 0, 600, 655, 780, '', ''), 2526 | (769, 0, 0, 0, 1, 0, 700, 1200, 780, '', ''), 2527 | (770, 0, 0, 0, 1, 0, 1201, 1355, 780, '', ''), 2528 | (771, 1, 0, 0, 0, 0, 800, 950, 781, '', ''), 2529 | (772, 0, 0, 0, 0, 1, 600, 655, 782, '', ''), 2530 | (773, 0, 0, 0, 0, 1, 700, 1200, 782, '', ''), 2531 | (774, 0, 0, 0, 0, 1, 1201, 1355, 782, '', ''), 2532 | (775, 1, 0, 0, 0, 0, 1400, 1550, 783, '', ''), 2533 | (776, 0, 0, 0, 0, 1, 600, 655, 784, '', ''), 2534 | (777, 0, 0, 0, 0, 1, 700, 1200, 784, '', ''), 2535 | (778, 0, 0, 0, 0, 1, 1201, 1355, 784, '', ''), 2536 | (779, 0, 0, 0, 1, 0, 900, 1050, 785, '', ''), 2537 | (780, 0, 0, 0, 0, 1, 600, 650, 786, '', ''), 2538 | (781, 0, 0, 0, 0, 1, 700, 1150, 786, '', ''), 2539 | (782, 0, 0, 0, 0, 1, 1200, 1250, 786, '', ''), 2540 | (783, 0, 0, 1, 0, 0, 1000, 1150, 787, '', ''), 2541 | (784, 0, 0, 0, 1, 0, 600, 655, 788, '', ''), 2542 | (785, 0, 0, 0, 1, 0, 700, 1200, 788, '', ''), 2543 | (786, 0, 0, 0, 1, 0, 1201, 1355, 788, '', ''), 2544 | (787, 0, 0, 1, 0, 0, 1300, 1450, 789, '', ''), 2545 | (788, 0, 0, 1, 0, 0, 600, 655, 790, '', ''), 2546 | (789, 0, 0, 1, 0, 0, 700, 1200, 790, '', ''), 2547 | (790, 0, 0, 1, 0, 0, 1201, 1355, 790, '', ''), 2548 | (791, 0, 0, 0, 1, 0, 1300, 1450, 791, '', ''), 2549 | (792, 0, 0, 0, 1, 0, 600, 655, 792, '', ''), 2550 | (793, 0, 0, 0, 1, 0, 700, 1200, 792, '', ''), 2551 | (794, 0, 0, 0, 1, 0, 1201, 1355, 792, '', ''), 2552 | (795, 1, 1, 0, 0, 0, 1400, 1550, 793, '', ''), 2553 | (796, 0, 0, 1, 0, 0, 600, 650, 794, '', ''), 2554 | (797, 0, 0, 1, 0, 0, 700, 1655, 794, '', ''), 2555 | (798, 0, 0, 1, 0, 0, 1700, 1750, 794, '', ''), 2556 | (799, 1, 0, 0, 0, 0, 800, 950, 795, '', ''), 2557 | (800, 0, 0, 1, 0, 0, 600, 655, 796, '', ''), 2558 | (801, 0, 0, 1, 0, 0, 700, 1655, 796, '', ''), 2559 | (802, 0, 0, 1, 0, 0, 1700, 1750, 796, '', ''), 2560 | (803, 1, 0, 0, 0, 0, 1000, 1150, 797, '', ''), 2561 | (804, 0, 0, 0, 0, 1, 600, 655, 798, '', ''), 2562 | (805, 0, 0, 0, 0, 1, 700, 1655, 798, '', ''), 2563 | (806, 0, 0, 0, 0, 1, 1700, 1750, 798, '', ''), 2564 | (807, 1, 0, 0, 0, 0, 1200, 1350, 799, '', ''), 2565 | (808, 0, 0, 0, 1, 0, 600, 655, 800, '', ''), 2566 | (809, 0, 0, 0, 1, 0, 700, 1655, 800, '', ''), 2567 | (810, 0, 0, 0, 1, 0, 1700, 1755, 800, '', ''), 2568 | (811, 0, 1, 0, 0, 0, 800, 950, 801, '', ''), 2569 | (812, 0, 0, 1, 0, 0, 900, 1050, 802, '', ''), 2570 | (813, 0, 0, 0, 1, 0, 600, 659, 803, '', ''), 2571 | (814, 0, 0, 0, 1, 0, 700, 1700, 803, '', ''), 2572 | (815, 0, 0, 0, 1, 0, 1701, 1750, 803, '', ''), 2573 | (816, 0, 0, 0, 1, 0, 1200, 1650, 804, '', ''), 2574 | (817, 0, 0, 1, 0, 0, 600, 659, 805, '', ''), 2575 | (818, 0, 0, 1, 0, 0, 700, 1700, 805, '', ''), 2576 | (819, 0, 0, 1, 0, 0, 1701, 1750, 805, '', ''), 2577 | (820, 0, 0, 1, 0, 0, 1300, 1450, 806, '', ''), 2578 | (821, 1, 0, 0, 0, 0, 1300, 1350, 808, '', ''), 2579 | (822, 1, 0, 0, 0, 0, 1300, 1350, 809, '', ''), 2580 | (823, 1, 1, 0, 0, 0, 1400, 1550, 810, '', ''), 2581 | (824, 0, 0, 0, 0, 1, 600, 655, 811, '', ''), 2582 | (825, 0, 0, 0, 0, 1, 700, 1700, 811, '', ''), 2583 | (826, 0, 0, 0, 0, 1, 1701, 1755, 811, '', ''), 2584 | (827, 0, 0, 0, 1, 0, 600, 655, 812, '', ''), 2585 | (828, 0, 0, 0, 1, 0, 700, 1700, 812, '', ''), 2586 | (829, 0, 0, 0, 1, 0, 1701, 1755, 812, '', ''), 2587 | (830, 0, 0, 1, 0, 0, 600, 655, 813, '', ''), 2588 | (831, 0, 0, 1, 0, 0, 700, 1650, 813, '', ''), 2589 | (832, 0, 0, 1, 0, 0, 1700, 1750, 813, '', ''), 2590 | (833, 0, 0, 1, 0, 0, 600, 655, 814, '', ''), 2591 | (834, 0, 0, 1, 0, 0, 700, 1700, 814, '', ''), 2592 | (835, 0, 0, 1, 0, 0, 1701, 1755, 814, '', ''), 2593 | (836, 0, 0, 0, 1, 0, 600, 655, 815, '', ''), 2594 | (837, 0, 0, 0, 1, 0, 700, 1655, 815, '', ''), 2595 | (838, 0, 0, 0, 1, 0, 1700, 1755, 815, '', ''), 2596 | (839, 1, 1, 0, 0, 0, 900, 1050, 818, '', ''), 2597 | (840, 0, 0, 1, 0, 0, 700, 1600, 819, '', ''), 2598 | (841, 0, 0, 0, 1, 0, 700, 1600, 820, '', ''), 2599 | (842, 0, 0, 0, 0, 1, 700, 1550, 821, '', ''), 2600 | (843, 0, 0, 0, 0, 1, 700, 1550, 822, '', ''), 2601 | (844, 0, 0, 1, 0, 0, 700, 1600, 823, '', ''), 2602 | (845, 0, 0, 0, 1, 0, 700, 1600, 824, '', ''), 2603 | (846, 0, 1, 0, 0, 0, 1300, 1450, 825, '', ''), 2604 | (847, 0, 1, 0, 0, 0, 1300, 1450, 826, '', ''), 2605 | (848, 0, 0, 1, 0, 0, 1700, 1950, 827, '', ''), 2606 | (849, 0, 1, 0, 0, 0, 1700, 1820, 828, '', ''), 2607 | (850, 0, 1, 0, 0, 0, 1000, 1115, 829, '', ''), 2608 | (851, 0, 0, 0, 0, 1, 1300, 1350, 830, '', ''), 2609 | (852, 1, 0, 0, 0, 0, 1300, 1450, 830, '', ''), 2610 | (853, 0, 1, 0, 0, 0, 1400, 1450, 830, '', ''), 2611 | (854, 0, 0, 0, 0, 1, 1100, 1150, 831, '', ''), 2612 | (855, 0, 0, 1, 0, 0, 700, 750, 832, '', ''), 2613 | (856, 0, 0, 1, 0, 0, 800, 1350, 832, '', ''), 2614 | (857, 0, 0, 1, 0, 0, 1400, 1450, 832, '', ''), 2615 | (858, 0, 0, 0, 1, 0, 700, 750, 833, '', ''), 2616 | (859, 0, 0, 0, 1, 0, 800, 1350, 833, '', ''), 2617 | (860, 0, 0, 0, 1, 0, 1400, 1450, 833, '', ''), 2618 | (861, 0, 0, 0, 0, 1, 1200, 1250, 834, '', ''), 2619 | (862, 0, 1, 0, 0, 1, 800, 850, 835, '', ''), 2620 | (863, 0, 0, 0, 0, 1, 1000, 1050, 836, '', ''), 2621 | (864, 1, 0, 0, 0, 0, 1000, 1350, 837, '', ''), 2622 | (865, 0, 0, 0, 0, 1, 1100, 1150, 838, '', ''), 2623 | (866, 0, 0, 0, 1, 0, 700, 750, 839, '', ''), 2624 | (867, 0, 0, 0, 1, 0, 800, 1350, 839, '', ''), 2625 | (868, 0, 0, 0, 1, 0, 1400, 1450, 839, '', ''), 2626 | (869, 0, 0, 1, 0, 0, 700, 750, 840, '', ''), 2627 | (870, 0, 0, 1, 0, 0, 800, 1350, 840, '', ''), 2628 | (871, 0, 0, 1, 0, 0, 1400, 1450, 840, '', ''), 2629 | (872, 0, 0, 1, 0, 0, 1700, 1950, 841, '', ''), 2630 | (873, 0, 1, 0, 1, 0, 1200, 1250, 844, '', ''), 2631 | (874, 0, 0, 1, 0, 0, 1700, 1950, 846, '', ''), 2632 | (875, 1, 1, 0, 1, 0, 1100, 1150, 849, '', ''), 2633 | (876, 1, 1, 0, 1, 0, 1000, 1050, 850, '', ''), 2634 | (877, 1, 0, 1, 0, 1, 1000, 1050, 869, '', ''), 2635 | (878, 1, 0, 1, 0, 1, 1100, 1150, 870, '', ''), 2636 | (879, 1, 0, 1, 0, 1, 1000, 1050, 871, '', ''), 2637 | (880, 1, 0, 1, 0, 1, 1000, 1050, 872, '', ''), 2638 | (881, 1, 0, 1, 0, 1, 1000, 1050, 873, '', ''), 2639 | (882, 0, 0, 0, 0, 1, 700, 750, 874, '', ''), 2640 | (883, 1, 0, 0, 0, 0, 1900, 2130, 875, '', ''), 2641 | (884, 0, 1, 0, 1, 0, 1730, 1900, 876, '', ''), 2642 | (885, 0, 0, 1, 0, 0, 700, 750, 877, '', ''), 2643 | (886, 0, 1, 0, 0, 0, 700, 750, 878, '', ''), 2644 | (887, 0, 0, 1, 0, 0, 700, 750, 879, '', ''), 2645 | (888, 0, 0, 1, 0, 0, 700, 750, 880, '', ''), 2646 | (889, 1, 0, 0, 0, 0, 700, 750, 881, '', ''), 2647 | (890, 1, 0, 0, 0, 0, 700, 750, 882, '', ''), 2648 | (891, 0, 1, 0, 0, 0, 700, 750, 883, '', ''), 2649 | (892, 0, 1, 0, 0, 0, 700, 750, 884, '', ''), 2650 | (893, 0, 1, 0, 1, 0, 1930, 2100, 885, '', ''), 2651 | (894, 1, 0, 1, 0, 0, 1400, 1515, 886, '', ''), 2652 | (895, 0, 1, 0, 1, 0, 1130, 1245, 887, '', ''), 2653 | (896, 1, 0, 1, 0, 0, 1530, 1645, 888, '', ''), 2654 | (897, 1, 0, 1, 0, 1, 1000, 1050, 889, '', ''), 2655 | (898, 1, 0, 1, 0, 1, 900, 950, 890, '', ''), 2656 | (899, 0, 0, 0, 1, 0, 1000, 1150, 891, '', ''), 2657 | (900, 0, 0, 1, 0, 0, 1500, 1650, 892, '', ''), 2658 | (901, 1, 0, 1, 0, 1, 1300, 1350, 893, '', ''), 2659 | (902, 0, 1, 0, 0, 0, 1500, 1650, 894, '', ''), 2660 | (903, 0, 1, 0, 0, 0, 900, 1050, 895, '', ''), 2661 | (904, 0, 0, 0, 1, 0, 1730, 1920, 896, '', ''), 2662 | (905, 0, 1, 0, 0, 0, 1730, 1920, 897, '', ''), 2663 | (906, 0, 0, 0, 1, 0, 1500, 1650, 898, '', ''), 2664 | (907, 1, 0, 1, 0, 1, 1100, 1150, 899, '', ''), 2665 | (908, 0, 1, 0, 0, 0, 1500, 1650, 900, '', ''), 2666 | (909, 1, 0, 1, 0, 1, 1100, 1150, 901, '', ''), 2667 | (910, 0, 1, 0, 0, 0, 1000, 1150, 902, '', ''), 2668 | (911, 1, 0, 1, 0, 1, 1500, 1550, 903, '', ''), 2669 | (912, 0, 0, 0, 1, 0, 1400, 1550, 904, '', ''), 2670 | (913, 1, 0, 1, 0, 0, 1600, 1715, 905, '', ''), 2671 | (914, 0, 1, 0, 1, 0, 830, 945, 906, '', ''), 2672 | (915, 1, 0, 1, 0, 1, 1300, 1350, 907, '', ''), 2673 | (916, 0, 1, 1, 0, 1, 1400, 1450, 908, '', ''), 2674 | (917, 0, 1, 0, 1, 0, 1130, 1245, 909, '', ''), 2675 | (918, 1, 0, 0, 0, 0, 1700, 1950, 910, '', ''), 2676 | (919, 0, 1, 0, 1, 0, 1730, 1845, 911, '', ''), 2677 | (920, 0, 0, 0, 1, 0, 1730, 2015, 912, '', ''), 2678 | (921, 1, 0, 1, 0, 0, 1900, 2015, 913, '', ''), 2679 | (922, 0, 1, 0, 1, 0, 1700, 1815, 914, '', ''), 2680 | (923, 0, 1, 0, 1, 0, 1830, 1945, 915, '', ''), 2681 | (924, 1, 0, 1, 0, 0, 1730, 1845, 916, '', ''), 2682 | (925, 0, 1, 0, 1, 0, 1000, 1050, 917, '', ''), 2683 | (926, 0, 0, 0, 0, 1, 1400, 1450, 920, '', ''), 2684 | (927, 1, 0, 1, 0, 0, 1400, 1515, 920, '', ''), 2685 | (928, 1, 0, 1, 0, 0, 1000, 1115, 921, '', ''), 2686 | (929, 0, 1, 0, 1, 0, 1400, 1515, 922, '', ''), 2687 | (930, 1, 0, 1, 0, 0, 1600, 1715, 923, '', ''), 2688 | (931, 0, 1, 0, 0, 0, 1500, 1550, 924, '', ''), 2689 | (932, 0, 1, 0, 1, 0, 1000, 1115, 926, '', ''), 2690 | (933, 0, 1, 0, 0, 0, 800, 950, 928, '', ''), 2691 | (934, 1, 0, 1, 0, 0, 900, 950, 929, '', ''), 2692 | (935, 0, 0, 0, 1, 0, 1400, 1650, 930, '', ''), 2693 | (936, 1, 0, 0, 0, 0, 1400, 1650, 931, '', ''), 2694 | (937, 1, 0, 0, 0, 0, 1200, 1250, 932, '', ''), 2695 | (938, 1, 0, 0, 0, 0, 1400, 1650, 933, '', ''), 2696 | (939, 0, 1, 0, 0, 0, 1400, 1650, 934, '', ''), 2697 | (940, 1, 0, 1, 0, 0, 1000, 1050, 935, '', ''), 2698 | (941, 0, 0, 0, 0, 1, 900, 1150, 936, '', ''), 2699 | (942, 0, 1, 0, 1, 0, 1100, 1150, 937, '', ''), 2700 | (943, 0, 0, 1, 0, 0, 1400, 1650, 938, '', ''), 2701 | (944, 0, 1, 0, 1, 0, 900, 950, 939, '', ''), 2702 | (945, 0, 1, 0, 0, 0, 1400, 1650, 940, '', ''), 2703 | (946, 0, 0, 1, 0, 0, 1100, 1150, 941, '', ''), 2704 | (947, 1, 0, 1, 0, 0, 800, 850, 943, '', ''), 2705 | (948, 0, 0, 1, 0, 0, 1300, 1550, 944, '', ''), 2706 | (949, 1, 0, 1, 0, 0, 800, 850, 945, '', ''), 2707 | (950, 0, 0, 1, 0, 0, 1300, 1550, 946, '', ''), 2708 | (951, 0, 0, 0, 1, 0, 1300, 1550, 947, '', ''), 2709 | (952, 0, 1, 0, 0, 0, 1100, 1150, 948, '', ''), 2710 | (953, 0, 1, 0, 1, 0, 1400, 1650, 949, '', ''), 2711 | (954, 1, 0, 1, 0, 0, 900, 1150, 950, '', ''), 2712 | (955, 1, 0, 1, 0, 0, 1100, 1150, 951, '', ''), 2713 | (956, 1, 0, 1, 0, 0, 1400, 1550, 952, '', ''), 2714 | (957, 0, 1, 0, 1, 0, 900, 1015, 953, '', ''), 2715 | (958, 0, 1, 0, 1, 0, 1030, 1145, 954, '', ''), 2716 | (959, 0, 0, 0, 0, 1, 1400, 1450, 955, '', ''), 2717 | (960, 0, 0, 0, 0, 1, 1500, 1650, 956, '', ''), 2718 | (961, 0, 0, 0, 0, 1, 1000, 1150, 957, '', ''), 2719 | (962, 1, 0, 0, 0, 0, 1200, 1250, 958, '', ''), 2720 | (963, 0, 0, 0, 1, 0, 1200, 1250, 959, '', ''), 2721 | (964, 0, 1, 0, 0, 0, 900, 1150, 968, '', ''), 2722 | (965, 1, 0, 0, 0, 0, 1100, 1350, 969, '', ''), 2723 | (966, 0, 0, 0, 1, 0, 900, 1150, 970, '', ''), 2724 | (967, 1, 0, 0, 0, 0, 900, 1050, 971, '', ''), 2725 | (968, 0, 0, 0, 1, 0, 1400, 1650, 972, '', ''), 2726 | (969, 0, 1, 0, 1, 0, 1400, 1515, 974, '', ''), 2727 | (970, 1, 0, 1, 0, 1, 900, 950, 976, '', ''), 2728 | (971, 1, 0, 1, 0, 1, 1400, 1450, 977, '', ''), 2729 | (972, 1, 0, 1, 0, 1, 1200, 1250, 978, '', ''), 2730 | (973, 1, 0, 1, 0, 1, 800, 850, 979, '', ''), 2731 | (974, 0, 1, 0, 1, 0, 830, 945, 980, '', ''), 2732 | (975, 1, 0, 1, 0, 0, 1000, 1115, 981, '', ''), 2733 | (976, 0, 1, 0, 1, 0, 1400, 1515, 982, '', ''), 2734 | (977, 0, 1, 0, 1, 0, 1530, 1645, 983, '', ''), 2735 | (978, 1, 0, 1, 0, 1, 1000, 1050, 984, '', ''), 2736 | (979, 1, 0, 1, 0, 1, 1100, 1150, 985, '', ''), 2737 | (980, 1, 1, 0, 1, 0, 1400, 1450, 986, '', ''), 2738 | (981, 1, 1, 0, 1, 0, 1500, 1550, 987, '', ''), 2739 | (982, 0, 1, 0, 1, 1, 1200, 1250, 988, '', ''), 2740 | (983, 0, 0, 0, 0, 1, 1500, 1550, 996, '', ''), 2741 | (984, 0, 1, 0, 1, 0, 1130, 1245, 1017, '', ''), 2742 | (985, 1, 0, 1, 0, 1, 1200, 1250, 1020, '', ''), 2743 | (986, 1, 1, 1, 1, 0, 1800, 2150, 1021, '', ''), 2744 | (987, 1, 0, 1, 0, 1, 1300, 1730, 1021, '', ''), 2745 | (988, 0, 1, 0, 1, 0, 1400, 1730, 1021, '', ''), 2746 | (989, 0, 0, 0, 1, 0, 900, 1150, 1022, '', ''), 2747 | (990, 1, 0, 1, 0, 0, 1130, 1245, 1023, '', ''), 2748 | (991, 0, 1, 0, 0, 0, 1600, 1850, 1024, '', ''), 2749 | (992, 1, 0, 1, 0, 0, 1000, 1115, 1025, '', ''), 2750 | (993, 0, 0, 0, 0, 1, 1300, 1450, 1027, '', ''), 2751 | (994, 0, 0, 1, 0, 1, 1200, 1250, 1027, '', ''), 2752 | (995, 0, 0, 0, 1, 0, 1400, 1515, 1028, '', ''), 2753 | (996, 0, 1, 0, 0, 0, 1400, 1515, 1029, '', ''), 2754 | (997, 0, 0, 0, 1, 0, 1400, 1515, 1030, '', ''), 2755 | (998, 0, 1, 0, 0, 0, 1400, 1515, 1031, '', ''), 2756 | (999, 0, 1, 0, 1, 0, 830, 945, 1032, '', ''), 2757 | (1000, 0, 0, 1, 0, 0, 1800, 2050, 1033, '', ''), 2758 | (1001, 0, 1, 0, 1, 0, 800, 850, 1034, '', ''), 2759 | (1002, 0, 1, 0, 0, 0, 1600, 1850, 1035, '', ''), 2760 | (1003, 1, 0, 1, 0, 0, 1000, 1050, 1036, '', ''), 2761 | (1004, 0, 0, 0, 1, 0, 1400, 1650, 1037, '', ''), 2762 | (1005, 0, 1, 0, 1, 0, 1200, 1250, 1038, '', ''), 2763 | (1006, 0, 1, 0, 0, 0, 1400, 1550, 1039, '', ''), 2764 | (1007, 0, 1, 0, 0, 0, 900, 1050, 1040, '', ''), 2765 | (1008, 0, 0, 0, 1, 0, 900, 1050, 1041, '', ''), 2766 | (1009, 0, 0, 0, 0, 1, 900, 1050, 1042, '', ''), 2767 | (1010, 0, 1, 0, 0, 0, 1100, 1150, 1043, '', ''), 2768 | (1011, 1, 0, 0, 0, 0, 1400, 1750, 1044, '', ''); 2769 | 2770 | -- -------------------------------------------------------- 2771 | 2772 | -- 2773 | -- Table structure for table `required_identifiers` 2774 | -- 2775 | 2776 | DROP TABLE IF EXISTS `required_identifiers`; 2777 | CREATE TABLE IF NOT EXISTS `required_identifiers` ( 2778 | `id` int(11) NOT NULL AUTO_INCREMENT, 2779 | `identifier` varchar(2) NOT NULL, 2780 | `section_id` int(11) NOT NULL, 2781 | PRIMARY KEY (`id`) 2782 | ) ENGINE=InnoDB AUTO_INCREMENT=577 DEFAULT CHARSET=latin1; 2783 | 2784 | -- 2785 | -- Dumping data for table `required_identifiers` 2786 | -- 2787 | 2788 | INSERT INTO `required_identifiers` (`id`, `identifier`, `section_id`) VALUES 2789 | (1, 'A2', 19), 2790 | (2, 'A1', 20), 2791 | (3, 'A2', 21), 2792 | (4, 'A1', 22), 2793 | (5, 'A1', 27), 2794 | (6, 'A2', 28), 2795 | (7, 'A1', 29), 2796 | (8, 'A1', 30), 2797 | (9, 'A1', 31), 2798 | (10, 'A2', 32), 2799 | (11, 'A1', 33), 2800 | (12, 'A1', 34), 2801 | (13, 'A1', 35), 2802 | (14, 'A1', 36), 2803 | (15, 'A2', 37), 2804 | (16, 'A1', 38), 2805 | (17, 'A2', 39), 2806 | (18, 'A1', 40), 2807 | (19, 'A1', 41), 2808 | (20, 'A1', 42), 2809 | (21, 'A2', 43), 2810 | (22, 'A1', 44), 2811 | (23, 'A2', 45), 2812 | (24, 'A1', 46), 2813 | (25, 'A2', 48), 2814 | (26, 'A2', 48), 2815 | (27, 'A1', 49), 2816 | (28, 'A1', 50), 2817 | (29, 'A1', 51), 2818 | (30, 'A2', 61), 2819 | (31, 'A1', 62), 2820 | (32, 'A2', 63), 2821 | (33, 'A1', 64), 2822 | (34, 'A1', 65), 2823 | (35, 'A1', 66), 2824 | (36, 'A2', 67), 2825 | (37, 'A1', 68), 2826 | (38, 'A2', 77), 2827 | (39, 'A1', 78), 2828 | (40, 'A2', 80), 2829 | (41, 'A1', 81), 2830 | (42, 'A2', 83), 2831 | (43, 'A1', 84), 2832 | (44, 'A1', 84), 2833 | (45, 'A2', 88), 2834 | (46, 'A1', 89), 2835 | (47, 'A1', 90), 2836 | (48, 'A2', 91), 2837 | (49, 'A1', 92), 2838 | (50, 'A1', 93), 2839 | (51, 'A2', 95), 2840 | (52, 'A1', 96), 2841 | (53, 'A1', 96), 2842 | (54, 'A2', 97), 2843 | (55, 'A1', 98), 2844 | (56, 'A1', 98), 2845 | (57, 'A2', 100), 2846 | (58, 'A1', 101), 2847 | (59, 'A2', 102), 2848 | (60, 'A1', 103), 2849 | (61, 'A1', 104), 2850 | (62, 'A1', 105), 2851 | (63, 'A2', 106), 2852 | (64, 'A1', 107), 2853 | (65, 'A2', 108), 2854 | (66, 'A1', 109), 2855 | (67, 'A1', 110), 2856 | (68, 'A1', 111), 2857 | (69, 'A2', 112), 2858 | (70, 'A1', 113), 2859 | (71, 'A2', 114), 2860 | (72, 'A1', 115), 2861 | (73, 'A2', 118), 2862 | (74, 'A2', 119), 2863 | (75, 'A1', 120), 2864 | (76, 'A2', 121), 2865 | (77, 'A1', 122), 2866 | (78, 'A1', 123), 2867 | (79, 'A1', 124), 2868 | (80, 'A1', 125), 2869 | (81, 'A1', 126), 2870 | (82, 'A1', 127), 2871 | (83, 'A2', 128), 2872 | (84, 'A1', 129), 2873 | (85, 'A2', 130), 2874 | (86, 'A1', 131), 2875 | (87, 'A2', 132), 2876 | (88, 'A1', 133), 2877 | (89, 'A2', 134), 2878 | (90, 'A1', 135), 2879 | (91, 'A1', 136), 2880 | (92, 'A1', 137), 2881 | (93, 'A1', 138), 2882 | (94, 'A1', 139), 2883 | (95, 'A1', 140), 2884 | (96, 'A2', 141), 2885 | (97, 'A1', 142), 2886 | (98, 'A1', 142), 2887 | (99, 'A1', 143), 2888 | (100, 'A1', 143), 2889 | (101, 'A1', 144), 2890 | (102, 'A1', 144), 2891 | (103, 'A1', 145), 2892 | (104, 'A1', 145), 2893 | (105, 'A2', 146), 2894 | (106, 'A1', 147), 2895 | (107, 'A1', 147), 2896 | (108, 'A1', 148), 2897 | (109, 'A1', 148), 2898 | (110, 'A2', 152), 2899 | (111, 'A1', 153), 2900 | (112, 'A2', 154), 2901 | (113, 'A1', 155), 2902 | (114, 'A1', 155), 2903 | (115, 'A2', 156), 2904 | (116, 'A1', 157), 2905 | (117, 'A1', 158), 2906 | (118, 'A1', 159), 2907 | (119, 'A2', 160), 2908 | (120, 'A1', 161), 2909 | (121, 'A2', 162), 2910 | (122, 'A1', 163), 2911 | (123, 'A1', 164), 2912 | (124, 'A1', 165), 2913 | (125, 'A1', 166), 2914 | (126, 'A1', 167), 2915 | (127, 'A1', 168), 2916 | (128, 'A1', 169), 2917 | (129, 'A1', 170), 2918 | (130, 'A2', 171), 2919 | (131, 'A1', 172), 2920 | (132, 'A2', 173), 2921 | (133, 'A2', 173), 2922 | (134, 'A1', 174), 2923 | (135, 'A1', 175), 2924 | (136, 'A1', 176), 2925 | (137, 'A1', 177), 2926 | (138, 'A1', 178), 2927 | (139, 'A1', 179), 2928 | (140, 'A1', 180), 2929 | (141, 'A1', 181), 2930 | (142, 'A1', 182), 2931 | (143, 'A1', 182), 2932 | (144, 'A2', 183), 2933 | (145, 'A1', 184), 2934 | (146, 'A2', 185), 2935 | (147, 'A1', 186), 2936 | (148, 'A2', 190), 2937 | (149, 'A1', 191), 2938 | (150, 'A1', 192), 2939 | (151, 'A2', 193), 2940 | (152, 'A1', 194), 2941 | (153, 'A2', 195), 2942 | (154, 'A1', 196), 2943 | (155, 'A2', 211), 2944 | (156, 'A1', 212), 2945 | (157, 'A2', 213), 2946 | (158, 'A1', 214), 2947 | (159, 'A1', 215), 2948 | (160, 'A1', 216), 2949 | (161, 'A2', 217), 2950 | (162, 'A1', 218), 2951 | (163, 'A2', 219), 2952 | (164, 'A1', 220), 2953 | (165, 'A2', 221), 2954 | (166, 'A1', 222), 2955 | (167, 'A1', 223), 2956 | (168, 'A1', 224), 2957 | (169, 'A1', 225), 2958 | (170, 'A1', 226), 2959 | (171, 'A2', 227), 2960 | (172, 'A1', 228), 2961 | (173, 'A2', 229), 2962 | (174, 'A2', 229), 2963 | (175, 'A1', 230), 2964 | (176, 'A1', 231), 2965 | (177, 'A1', 232), 2966 | (178, 'A1', 233), 2967 | (179, 'A1', 234), 2968 | (180, 'A2', 235), 2969 | (181, 'A2', 235), 2970 | (182, 'A1', 236), 2971 | (183, 'A2', 237), 2972 | (184, 'A2', 237), 2973 | (185, 'A1', 238), 2974 | (186, 'A1', 239), 2975 | (187, 'A1', 239), 2976 | (188, 'A2', 290), 2977 | (189, 'A1', 291), 2978 | (190, 'A2', 295), 2979 | (191, 'A1', 296), 2980 | (192, 'A1', 297), 2981 | (193, 'A1', 298), 2982 | (194, 'A1', 299), 2983 | (195, 'A1', 300), 2984 | (196, 'A2', 301), 2985 | (197, 'A1', 302), 2986 | (198, 'A2', 303), 2987 | (199, 'A1', 304), 2988 | (200, 'A2', 305), 2989 | (201, 'A1', 306), 2990 | (202, 'A2', 307), 2991 | (203, 'A1', 308), 2992 | (204, 'A2', 309), 2993 | (205, 'A1', 310), 2994 | (206, 'A2', 319), 2995 | (207, 'A1', 320), 2996 | (208, 'A1', 321), 2997 | (209, 'A1', 322), 2998 | (210, 'A2', 325), 2999 | (211, 'A1', 326), 3000 | (212, 'A1', 327), 3001 | (213, 'A2', 334), 3002 | (214, 'A1', 335), 3003 | (215, 'A2', 339), 3004 | (216, 'A1', 340), 3005 | (217, 'A2', 421), 3006 | (218, 'A1', 422), 3007 | (219, 'A2', 423), 3008 | (220, 'A1', 424), 3009 | (221, 'A2', 426), 3010 | (222, 'A1', 427), 3011 | (223, 'A2', 428), 3012 | (224, 'A1', 429), 3013 | (225, 'A1', 430), 3014 | (226, 'A2', 435), 3015 | (227, 'A1', 436), 3016 | (228, 'A2', 437), 3017 | (229, 'A1', 438), 3018 | (230, 'A1', 439), 3019 | (231, 'A2', 442), 3020 | (232, 'A1', 443), 3021 | (233, 'A2', 444), 3022 | (234, 'A2', 444), 3023 | (235, 'A1', 445), 3024 | (236, 'A1', 446), 3025 | (237, 'A1', 447), 3026 | (238, 'A2', 448), 3027 | (239, 'A1', 449), 3028 | (240, 'A1', 450), 3029 | (241, 'A2', 451), 3030 | (242, 'A1', 452), 3031 | (243, 'A1', 453), 3032 | (244, 'A1', 454), 3033 | (245, 'A2', 456), 3034 | (246, 'A1', 457), 3035 | (247, 'A2', 483), 3036 | (248, 'A1', 484), 3037 | (249, 'A2', 504), 3038 | (250, 'A1', 505), 3039 | (251, 'A1', 506), 3040 | (252, 'A1', 507), 3041 | (253, 'A2', 510), 3042 | (254, 'A1', 511), 3043 | (255, 'A1', 511), 3044 | (256, 'A2', 512), 3045 | (257, 'A1', 513), 3046 | (258, 'A2', 514), 3047 | (259, 'A1', 515), 3048 | (260, 'A2', 517), 3049 | (261, 'A1', 518), 3050 | (262, 'A2', 521), 3051 | (263, 'A1', 522), 3052 | (264, 'A1', 523), 3053 | (265, 'A1', 524), 3054 | (266, 'A1', 525), 3055 | (267, 'A1', 526), 3056 | (268, 'A2', 530), 3057 | (269, 'A1', 531), 3058 | (270, 'A1', 532), 3059 | (271, 'A1', 533), 3060 | (272, 'A1', 534), 3061 | (273, 'A2', 539), 3062 | (274, 'A1', 540), 3063 | (275, 'A1', 541), 3064 | (276, 'A2', 542), 3065 | (277, 'A1', 543), 3066 | (278, 'A2', 556), 3067 | (279, 'A1', 557), 3068 | (280, 'A2', 558), 3069 | (281, 'A2', 558), 3070 | (282, 'A2', 568), 3071 | (283, 'A1', 569), 3072 | (284, 'A2', 590), 3073 | (285, 'A1', 591), 3074 | (286, 'A1', 592), 3075 | (287, 'A2', 594), 3076 | (288, 'A1', 595), 3077 | (289, 'A2', 596), 3078 | (290, 'A1', 597), 3079 | (291, 'A2', 599), 3080 | (292, 'A1', 600), 3081 | (293, 'A2', 601), 3082 | (294, 'A1', 602), 3083 | (295, 'A2', 608), 3084 | (296, 'A1', 609), 3085 | (297, 'A2', 611), 3086 | (298, 'A1', 612), 3087 | (299, 'A1', 612), 3088 | (300, 'A1', 613), 3089 | (301, 'A1', 613), 3090 | (302, 'A2', 616), 3091 | (303, 'A1', 617), 3092 | (304, 'A1', 617), 3093 | (305, 'A2', 622), 3094 | (306, 'A1', 623), 3095 | (307, 'A2', 624), 3096 | (308, 'A1', 625), 3097 | (309, 'A2', 663), 3098 | (310, 'A1', 664), 3099 | (311, 'A2', 665), 3100 | (312, 'A1', 666), 3101 | (313, 'A2', 705), 3102 | (314, 'A1', 706), 3103 | (315, 'A2', 708), 3104 | (316, 'A1', 709), 3105 | (317, 'A2', 710), 3106 | (318, 'A1', 711), 3107 | (319, 'A2', 712), 3108 | (320, 'A1', 713), 3109 | (321, 'A2', 714), 3110 | (322, 'A1', 715), 3111 | (323, 'A1', 716), 3112 | (324, 'A2', 717), 3113 | (325, 'A1', 718), 3114 | (326, 'A2', 719), 3115 | (327, 'A1', 720), 3116 | (328, 'A1', 721), 3117 | (329, 'A2', 722), 3118 | (330, 'A1', 723), 3119 | (331, 'A2', 729), 3120 | (332, 'A1', 730), 3121 | (333, 'A1', 731), 3122 | (334, 'A2', 732), 3123 | (335, 'A1', 733), 3124 | (336, 'A1', 734), 3125 | (337, 'A2', 736), 3126 | (338, 'A1', 737), 3127 | (339, 'A2', 738), 3128 | (340, 'A1', 739), 3129 | (341, 'A2', 743), 3130 | (342, 'A1', 744), 3131 | (343, 'A1', 745), 3132 | (344, 'A2', 746), 3133 | (345, 'A1', 747), 3134 | (346, 'A1', 748), 3135 | (347, 'A1', 750), 3136 | (348, 'A2', 753), 3137 | (349, 'A1', 754), 3138 | (350, 'A1', 755), 3139 | (351, 'A2', 756), 3140 | (352, 'A1', 757), 3141 | (353, 'A2', 758), 3142 | (354, 'A1', 759), 3143 | (355, 'A2', 765), 3144 | (356, 'A1', 766), 3145 | (357, 'A1', 767), 3146 | (358, 'A1', 768), 3147 | (359, 'A1', 769), 3148 | (360, 'A1', 770), 3149 | (361, 'A1', 771), 3150 | (362, 'A1', 772), 3151 | (363, 'A1', 773), 3152 | (364, 'A1', 774), 3153 | (365, 'A2', 775), 3154 | (366, 'A3', 775), 3155 | (367, 'A1', 776), 3156 | (368, 'A3', 776), 3157 | (369, 'A1', 776), 3158 | (370, 'A3', 776), 3159 | (371, 'A1', 776), 3160 | (372, 'A3', 776), 3161 | (373, 'A1', 777), 3162 | (374, 'A2', 777), 3163 | (375, 'A1', 778), 3164 | (376, 'A3', 778), 3165 | (377, 'A1', 778), 3166 | (378, 'A3', 778), 3167 | (379, 'A1', 778), 3168 | (380, 'A3', 778), 3169 | (381, 'A1', 779), 3170 | (382, 'A2', 779), 3171 | (383, 'A1', 780), 3172 | (384, 'A3', 780), 3173 | (385, 'A1', 780), 3174 | (386, 'A3', 780), 3175 | (387, 'A1', 780), 3176 | (388, 'A3', 780), 3177 | (389, 'A1', 781), 3178 | (390, 'A2', 781), 3179 | (391, 'A1', 782), 3180 | (392, 'A3', 782), 3181 | (393, 'A1', 782), 3182 | (394, 'A3', 782), 3183 | (395, 'A1', 782), 3184 | (396, 'A3', 782), 3185 | (397, 'A1', 783), 3186 | (398, 'A2', 783), 3187 | (399, 'A1', 784), 3188 | (400, 'A3', 784), 3189 | (401, 'A1', 784), 3190 | (402, 'A3', 784), 3191 | (403, 'A1', 784), 3192 | (404, 'A3', 784), 3193 | (405, 'A1', 785), 3194 | (406, 'A2', 785), 3195 | (407, 'A1', 786), 3196 | (408, 'A3', 786), 3197 | (409, 'A1', 786), 3198 | (410, 'A3', 786), 3199 | (411, 'A1', 786), 3200 | (412, 'A3', 786), 3201 | (413, 'A1', 787), 3202 | (414, 'A2', 787), 3203 | (415, 'A1', 788), 3204 | (416, 'A3', 788), 3205 | (417, 'A1', 788), 3206 | (418, 'A3', 788), 3207 | (419, 'A1', 788), 3208 | (420, 'A3', 788), 3209 | (421, 'A1', 789), 3210 | (422, 'A2', 789), 3211 | (423, 'A1', 790), 3212 | (424, 'A3', 790), 3213 | (425, 'A1', 790), 3214 | (426, 'A3', 790), 3215 | (427, 'A1', 790), 3216 | (428, 'A3', 790), 3217 | (429, 'A1', 791), 3218 | (430, 'A2', 791), 3219 | (431, 'A1', 792), 3220 | (432, 'A3', 792), 3221 | (433, 'A1', 792), 3222 | (434, 'A3', 792), 3223 | (435, 'A1', 792), 3224 | (436, 'A3', 792), 3225 | (437, 'A2', 793), 3226 | (438, 'A3', 793), 3227 | (439, 'A1', 794), 3228 | (440, 'A3', 794), 3229 | (441, 'A1', 794), 3230 | (442, 'A3', 794), 3231 | (443, 'A1', 794), 3232 | (444, 'A3', 794), 3233 | (445, 'A1', 795), 3234 | (446, 'A2', 795), 3235 | (447, 'A1', 796), 3236 | (448, 'A3', 796), 3237 | (449, 'A1', 796), 3238 | (450, 'A3', 796), 3239 | (451, 'A1', 796), 3240 | (452, 'A3', 796), 3241 | (453, 'A1', 797), 3242 | (454, 'A2', 797), 3243 | (455, 'A1', 798), 3244 | (456, 'A3', 798), 3245 | (457, 'A1', 798), 3246 | (458, 'A3', 798), 3247 | (459, 'A1', 798), 3248 | (460, 'A3', 798), 3249 | (461, 'A1', 799), 3250 | (462, 'A2', 799), 3251 | (463, 'A1', 800), 3252 | (464, 'A3', 800), 3253 | (465, 'A1', 800), 3254 | (466, 'A3', 800), 3255 | (467, 'A1', 800), 3256 | (468, 'A3', 800), 3257 | (469, 'A1', 801), 3258 | (470, 'A2', 801), 3259 | (471, 'A1', 802), 3260 | (472, 'A2', 802), 3261 | (473, 'A1', 803), 3262 | (474, 'A3', 803), 3263 | (475, 'A1', 803), 3264 | (476, 'A3', 803), 3265 | (477, 'A1', 803), 3266 | (478, 'A3', 803), 3267 | (479, 'A1', 804), 3268 | (480, 'A3', 804), 3269 | (481, 'A1', 805), 3270 | (482, 'A3', 805), 3271 | (483, 'A1', 805), 3272 | (484, 'A3', 805), 3273 | (485, 'A1', 805), 3274 | (486, 'A3', 805), 3275 | (487, 'A1', 806), 3276 | (488, 'A2', 806), 3277 | (489, 'A2', 810), 3278 | (490, 'A1', 811), 3279 | (491, 'A1', 811), 3280 | (492, 'A1', 811), 3281 | (493, 'A1', 812), 3282 | (494, 'A1', 812), 3283 | (495, 'A1', 812), 3284 | (496, 'A1', 813), 3285 | (497, 'A1', 813), 3286 | (498, 'A1', 813), 3287 | (499, 'A1', 814), 3288 | (500, 'A1', 814), 3289 | (501, 'A1', 814), 3290 | (502, 'A1', 815), 3291 | (503, 'A1', 815), 3292 | (504, 'A1', 815), 3293 | (505, 'A2', 818), 3294 | (506, 'A1', 819), 3295 | (507, 'A1', 820), 3296 | (508, 'A1', 821), 3297 | (509, 'A1', 822), 3298 | (510, 'A1', 823), 3299 | (511, 'A1', 824), 3300 | (512, 'A2', 831), 3301 | (513, 'A1', 832), 3302 | (514, 'A1', 832), 3303 | (515, 'A1', 832), 3304 | (516, 'A1', 833), 3305 | (517, 'A1', 833), 3306 | (518, 'A1', 833), 3307 | (519, 'A2', 836), 3308 | (520, 'A1', 837), 3309 | (521, 'A2', 838), 3310 | (522, 'A1', 839), 3311 | (523, 'A1', 839), 3312 | (524, 'A1', 839), 3313 | (525, 'A1', 840), 3314 | (526, 'A1', 840), 3315 | (527, 'A1', 840), 3316 | (528, 'A2', 889), 3317 | (529, 'A2', 890), 3318 | (530, 'A1', 891), 3319 | (531, 'A1', 892), 3320 | (532, 'A2', 893), 3321 | (533, 'A1', 894), 3322 | (534, 'A1', 895), 3323 | (535, 'A1', 896), 3324 | (536, 'A1', 897), 3325 | (537, 'A1', 898), 3326 | (538, 'A2', 899), 3327 | (539, 'A1', 900), 3328 | (540, 'A2', 901), 3329 | (541, 'A1', 902), 3330 | (542, 'A2', 903), 3331 | (543, 'A1', 904), 3332 | (544, 'A2', 929), 3333 | (545, 'A1', 930), 3334 | (546, 'A2', 932), 3335 | (547, 'A1', 933), 3336 | (548, 'A2', 935), 3337 | (549, 'A1', 936), 3338 | (550, 'A2', 937), 3339 | (551, 'A1', 938), 3340 | (552, 'A2', 939), 3341 | (553, 'A1', 940), 3342 | (554, 'A2', 943), 3343 | (555, 'A1', 944), 3344 | (556, 'A2', 945), 3345 | (557, 'A1', 946), 3346 | (558, 'A1', 947), 3347 | (559, 'A2', 948), 3348 | (560, 'A1', 949), 3349 | (561, 'A1', 950), 3350 | (562, 'A2', 951), 3351 | (563, 'A1', 952), 3352 | (564, 'A2', 955), 3353 | (565, 'A1', 956), 3354 | (566, 'A2', 1034), 3355 | (567, 'A1', 1035), 3356 | (568, 'A2', 1036), 3357 | (569, 'A1', 1037), 3358 | (570, 'A2', 1038), 3359 | (571, 'A1', 1039), 3360 | (572, 'A2', 1040), 3361 | (573, 'A1', 1041), 3362 | (574, 'A1', 1042), 3363 | (575, 'A2', 1043), 3364 | (576, 'A1', 1044); 3365 | 3366 | -- -------------------------------------------------------- 3367 | 3368 | -- 3369 | -- Table structure for table `term_weeks` 3370 | -- 3371 | 3372 | DROP TABLE IF EXISTS `term_weeks`; 3373 | CREATE TABLE IF NOT EXISTS `term_weeks` ( 3374 | `id` int(11) NOT NULL AUTO_INCREMENT, 3375 | `week` int(11) NOT NULL, 3376 | `term_id` int(11) NOT NULL, 3377 | PRIMARY KEY (`id`) 3378 | ) ENGINE=InnoDB AUTO_INCREMENT=95 DEFAULT CHARSET=latin1; 3379 | 3380 | -- 3381 | -- Dumping data for table `term_weeks` 3382 | -- 3383 | 3384 | INSERT INTO `term_weeks` (`id`, `week`, `term_id`) VALUES 3385 | (1, 1, 1), 3386 | (2, 2, 1), 3387 | (3, 3, 1), 3388 | (4, 4, 1), 3389 | (5, 5, 1), 3390 | (6, 6, 1), 3391 | (7, 7, 1), 3392 | (8, 8, 1), 3393 | (9, 9, 1), 3394 | (10, 10, 1), 3395 | (11, 11, 1), 3396 | (12, 12, 1), 3397 | (13, 13, 1), 3398 | (14, 14, 1), 3399 | (15, 15, 1), 3400 | (16, 1, 2), 3401 | (17, 2, 2), 3402 | (18, 3, 2), 3403 | (19, 4, 2), 3404 | (20, 5, 2), 3405 | (21, 6, 3), 3406 | (22, 7, 3), 3407 | (23, 8, 3), 3408 | (24, 9, 3), 3409 | (25, 10, 3), 3410 | (26, 10, 3), 3411 | (27, 11, 4), 3412 | (28, 14, 4), 3413 | (29, 13, 4), 3414 | (30, 14, 4), 3415 | (31, 15, 4), 3416 | (32, 1, 5), 3417 | (33, 2, 5), 3418 | (34, 3, 5), 3419 | (35, 4, 5), 3420 | (36, 5, 5), 3421 | (37, 6, 5), 3422 | (38, 7, 5), 3423 | (39, 8, 5), 3424 | (40, 8, 6), 3425 | (41, 9, 6), 3426 | (42, 10, 6), 3427 | (43, 11, 6), 3428 | (44, 12, 6), 3429 | (45, 13, 6), 3430 | (46, 14, 6), 3431 | (47, 15, 6), 3432 | (48, 1, 7), 3433 | (49, 2, 7), 3434 | (50, 3, 7), 3435 | (51, 4, 7), 3436 | (52, 5, 7), 3437 | (53, 6, 7), 3438 | (54, 7, 7), 3439 | (55, 8, 7), 3440 | (56, 9, 7), 3441 | (57, 10, 7), 3442 | (58, 6, 8), 3443 | (59, 7, 8), 3444 | (60, 8, 8), 3445 | (61, 9, 8), 3446 | (62, 10, 8), 3447 | (63, 11, 8), 3448 | (64, 12, 8), 3449 | (65, 13, 8), 3450 | (66, 14, 8), 3451 | (67, 15, 8), 3452 | (68, 1, 9), 3453 | (69, 2, 9), 3454 | (70, 3, 9), 3455 | (71, 4, 9), 3456 | (72, 5, 9), 3457 | (73, 6, 9), 3458 | (74, 7, 9), 3459 | (75, 8, 9), 3460 | (76, 9, 9), 3461 | (77, 10, 9), 3462 | (78, 11, 9), 3463 | (79, 12, 9), 3464 | (80, 13, 9), 3465 | (81, 14, 9), 3466 | (82, 15, 9), 3467 | (83, 1, 10), 3468 | (84, 2, 10), 3469 | (85, 3, 10), 3470 | (86, 4, 10), 3471 | (87, 5, 10), 3472 | (88, 6, 10), 3473 | (89, 7, 11), 3474 | (90, 8, 11), 3475 | (91, 9, 11), 3476 | (92, 10, 11), 3477 | (93, 11, 11), 3478 | (94, 12, 11); 3479 | 3480 | /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; 3481 | /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; 3482 | /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; 3483 | --------------------------------------------------------------------------------