├── .gitignore ├── AI_CSP └── backtracking.py ├── Cipher └── caesar_cipher.html ├── JavaRandom ├── ArraySum.java ├── Calculator.java ├── DecimalToBinary.java ├── Flight.java ├── Skyscraper.java ├── Student_Entry.java ├── pre_final_act1.java └── pre_final_project.java ├── JavaSampleEmployeeSystemWithGUI └── Main.java ├── NLP Studies ├── src │ └── img │ │ └── nltk downloader.PNG └── study_NLTK.ipynb ├── OS_Deadlock ├── __main__.py └── banker_s_algo.py ├── README.md ├── automate ├── file.pdf ├── main.py └── submit │ └── ABOITIZ POWER RENEWABLES, INC . - ENGR. JOSE LACHICA III - Asst. Vice President.pdf └── sql_generator_from_excel ├── main.py ├── sql_inserts_by_region ├── RO10_seeds_inserts.sql ├── RO11_seeds_inserts.sql ├── RO12_seeds_inserts.sql ├── RO13_seeds_inserts.sql ├── RO1_seeds_inserts.sql ├── RO2_seeds_inserts.sql ├── RO3_seeds_inserts.sql ├── RO4B_seeds_inserts.sql ├── RO4_seeds_inserts.sql ├── RO5_seeds_inserts.sql ├── RO6_seeds_inserts.sql ├── RO7_seeds_inserts.sql ├── RO8_seeds_inserts.sql └── RO9_seeds_inserts.sql └── variety.xlsx /.gitignore: -------------------------------------------------------------------------------- 1 | /OS_Deadlock/banker_s_algo_orig.py 2 | *.class 3 | *.exe -------------------------------------------------------------------------------- /AI_CSP/backtracking.py: -------------------------------------------------------------------------------- 1 | # class variable 2 | class Variable(): 3 | 4 | def __init__(self, var: str, dom: int = 1) -> None: 5 | self.__set_var(var) 6 | self.dom = dom 7 | 8 | def __set_var(self, variable: str) -> None: 9 | self.__var = variable 10 | 11 | def get_var(self) -> str: 12 | return self.__var 13 | 14 | # constraint(s) 15 | 16 | 17 | def a_greater_than_b(a: int, b: int) -> bool: 18 | return a > b 19 | 20 | 21 | def b_not_equal_c(b: int, c: int) -> bool: 22 | return b != c 23 | 24 | 25 | def a_not_equal_c(a: int, c: int) -> bool: 26 | return a != c 27 | 28 | 29 | def isSatisfied(a: int = 0, b: int = 0, c: int = 0) -> bool: 30 | if not a_greater_than_b(a, b): 31 | return False 32 | if not b_not_equal_c(b, c): 33 | return False 34 | if not a_not_equal_c(a, c): 35 | return False 36 | return True 37 | 38 | 39 | def print_variables(var: Variable) -> None: 40 | print('solution:') 41 | for i in var: 42 | print(f'\t {i.get_var()} = {i.dom}') 43 | 44 | 45 | def change_value(domain: int): 46 | return domain + 1 47 | 48 | 49 | # main function 50 | def main(): 51 | # V - Variables 52 | var = [ 53 | Variable('a'), 54 | Variable('b'), 55 | Variable('c'), 56 | ] 57 | 58 | # D - Domains 59 | dom = [1, 2, 3] 60 | 61 | # C - Constraints 62 | constraint_satisfied: bool = False 63 | 64 | # S - Solution to Satisfy C using backtracking (systematic) 65 | while not constraint_satisfied: 66 | 67 | for i in range(len(dom)): 68 | if var[0].dom <= var[1].dom: 69 | var[0].dom = dom[i] 70 | 71 | var[2].dom = dom[i] 72 | 73 | if isSatisfied(var[0].dom, var[1].dom, var[2].dom) == True: 74 | constraint_satisfied = True 75 | break 76 | 77 | print('satified_constraint:', constraint_satisfied) 78 | print_variables(var) 79 | # answer must be: a - 2, b - 1, c - 3 80 | 81 | 82 | if __name__ == "__main__": 83 | main() 84 | -------------------------------------------------------------------------------- /Cipher/caesar_cipher.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Encryption Decryption 8 | 9 | 37 | 38 | 39 | 40 |

Caesar Cipher

41 |
42 | 43 |

44 | 45 |

46 | 47 |

48 | 49 | 50 |
51 | 95 | 96 | 97 | -------------------------------------------------------------------------------- /JavaRandom/ArraySum.java: -------------------------------------------------------------------------------- 1 | import java.util.Scanner; 2 | 3 | public class ArraySum { 4 | 5 | public static void printSum(int[] arr) { 6 | int sum = 0; 7 | for (int i = 0; i < arr.length; i++) { 8 | sum += arr[i]; 9 | } 10 | System.out.println("The sum of the elements is: " + sum); 11 | } 12 | 13 | public static void main(String[] args) { 14 | Scanner scanner = new Scanner(System.in); 15 | 16 | System.out.print("Enter the number of elements: "); 17 | int n = scanner.nextInt(); 18 | 19 | int[] arr = new int[n]; 20 | 21 | System.out.println("Enter the elements."); 22 | for (int i = 0; i < n; i++) { 23 | System.out.print("[" + (i + 1) + "]="); 24 | arr[i] = scanner.nextInt(); 25 | } 26 | 27 | printSum(arr); 28 | } 29 | 30 | } 31 | -------------------------------------------------------------------------------- /JavaRandom/Calculator.java: -------------------------------------------------------------------------------- 1 | import java.util.Scanner; 2 | 3 | public class Calculator { 4 | public int addNum(int a, int b) { 5 | return a + b; 6 | } 7 | 8 | public int subtract(int a, int b) { 9 | return a - b; 10 | } 11 | 12 | public int multiplyNum(int a, int b) { 13 | return a * b; 14 | } 15 | 16 | public double divNum(int a, int b) { 17 | return (double) a / b; 18 | } 19 | 20 | public static void main(String[] args) { 21 | 22 | Calculator calculator = new Calculator(); 23 | Scanner input = new Scanner(System.in); 24 | 25 | while (true) { 26 | System.out.print("Please select an operation (+, -, *, /, exit): "); 27 | String operation = input.nextLine(); 28 | 29 | if (operation.equals("exit")) { 30 | System.out.println("Exiting..."); 31 | break; 32 | } 33 | 34 | System.out.print("Enter first number: "); 35 | int num1 = input.nextInt(); 36 | 37 | System.out.print("Enter second number: "); 38 | int num2 = input.nextInt(); 39 | input.nextLine(); // Consume the newline character left by nextInt() 40 | 41 | double result = 0; 42 | 43 | switch (operation) { 44 | case "+": 45 | result = calculator.addNum(num1, num2); 46 | System.out.println("Result: " + (int) result); 47 | break; 48 | case "-": 49 | result = calculator.subtract(num1, num2); 50 | System.out.println("Result: " + (int) result); 51 | break; 52 | case "*": 53 | result = calculator.multiplyNum(num1, num2); 54 | System.out.println("Result: " + (int) result); 55 | break; 56 | case "/": 57 | result = calculator.divNum(num1, num2); 58 | System.out.println("Result: " + result); 59 | break; 60 | default: 61 | System.out.println("Invalid operation. Please try again."); 62 | continue; 63 | } 64 | } 65 | input.close(); 66 | } 67 | } 68 | -------------------------------------------------------------------------------- /JavaRandom/DecimalToBinary.java: -------------------------------------------------------------------------------- 1 | import java.util.Scanner; 2 | 3 | public class DecimalToBinary { 4 | public static int decimalToBinary(int decimalNum) { 5 | if (decimalNum == 0) { 6 | return 0; 7 | } else { 8 | return (decimalNum % 2) + 10 * decimalToBinary(decimalNum / 2); 9 | } 10 | } 11 | 12 | public static void main(String[] args) { 13 | Scanner scanner = new Scanner(System.in); 14 | 15 | System.out.print("Enter a decimal number: "); 16 | int decimalNum = scanner.nextInt(); 17 | int binaryNum = decimalToBinary(decimalNum); 18 | 19 | System.out.println("The binary equivalent of " + decimalNum + " is " + binaryNum); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /JavaRandom/Flight.java: -------------------------------------------------------------------------------- 1 | import java.io.File; 2 | import java.io.FileWriter; 3 | import java.util.Scanner; 4 | 5 | public class Flight { 6 | public static void main(String[] args) { 7 | Scanner scanner = new Scanner(System.in); 8 | String input = ""; 9 | 10 | while (!input.equalsIgnoreCase("3")) { 11 | printOptions(); 12 | System.out.print("Select an option: "); 13 | input = scanner.nextLine(); 14 | 15 | switch (input) { 16 | case "1": 17 | System.out.print("\nEnter Passenger Name: "); 18 | String name = scanner.nextLine(); 19 | 20 | System.out.print("Enter Ticket Number: "); 21 | String ticketNumber = scanner.nextLine(); 22 | 23 | System.out.print("Enter Date and Time of Departure: "); 24 | String dateAndTime = scanner.nextLine(); 25 | 26 | System.out.print("Enter Airport Origin Code: "); 27 | String originCode = scanner.nextLine(); 28 | 29 | System.out.print("Enter Airport Destination Code: "); 30 | String destinationCode = scanner.nextLine(); 31 | 32 | try { 33 | FileWriter writer = new FileWriter("db.txt", true); 34 | writer.write(String.format("%s;%s;%s;%s;%s\n", name, ticketNumber, dateAndTime, originCode, 35 | destinationCode)); 36 | writer.close(); 37 | System.out.println("\nRecord added successfully."); 38 | } catch (Exception e) { 39 | System.out.println("\nAn error occurred while adding the record."); 40 | } 41 | break; 42 | 43 | case "2": 44 | System.out.print("\nSearch: "); 45 | String searchField = scanner.nextLine(); 46 | 47 | try { 48 | File file = new File("db.txt"); 49 | Scanner fileScanner = new Scanner(file); 50 | 51 | boolean found = false; 52 | while (fileScanner.hasNextLine()) { 53 | String line = fileScanner.nextLine(); 54 | String[] parts = line.split(";"); 55 | String dbString = String.format("%-20s %-15s %-20s %-10s %-10s", 56 | parts[0], 57 | parts[1], 58 | parts[2], 59 | parts[3], 60 | parts[4]); 61 | 62 | if (dbString.toLowerCase().contains(searchField.toLowerCase())) { 63 | System.out.println(dbString); 64 | found = true; 65 | } 66 | } 67 | 68 | if (!found) { 69 | System.out.println("No matching records found."); 70 | } 71 | 72 | fileScanner.close(); 73 | } catch (Exception e) { 74 | System.out.println("\nAn error occurred while searching for records."); 75 | } 76 | break; 77 | 78 | case "3": 79 | System.out.print("\nExiting program..."); 80 | break; 81 | 82 | default: 83 | System.out.println("\nInvalid input. Please try again."); 84 | break; 85 | } 86 | System.out.println(); 87 | } 88 | scanner.close(); 89 | } 90 | 91 | static void printOptions() { 92 | System.out.println("1. Write/Append to the program"); 93 | System.out.println("2. Search and display the contents of the database [text file]"); 94 | System.out.println("3. Exit"); 95 | } 96 | } 97 | -------------------------------------------------------------------------------- /JavaRandom/Skyscraper.java: -------------------------------------------------------------------------------- 1 | import java.util.Scanner; 2 | 3 | public class Skyscraper { 4 | public static void main(String[] args) { 5 | Scanner input = new Scanner(System.in); 6 | 7 | System.out.print("Enter width of skyscraper: "); 8 | int width = input.nextInt(); 9 | 10 | System.out.print("Enter height of skyscraper: "); 11 | int height = input.nextInt(); 12 | 13 | int base = width + 2; 14 | for (int i = 0; i < height; i++) { 15 | String top = (width % 2 == 1) ? "*" : "**"; 16 | if (i == 0) { 17 | System.out.println(" " + centerString(top, width, " ") + " "); 18 | } else if (i == height - 1) { 19 | System.out.println("*".repeat(base)); 20 | } else { 21 | System.out.println(" " + "*".repeat(width) + " "); 22 | } 23 | } 24 | } 25 | 26 | public static String centerString(String s, int width, String fill) { 27 | int padding = width - s.length(); 28 | int leftPadding = padding / 2; 29 | int rightPadding = padding - leftPadding; 30 | return fill.repeat(leftPadding) + s + fill.repeat(rightPadding); 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /JavaRandom/Student_Entry.java: -------------------------------------------------------------------------------- 1 | import java.io.File; 2 | import java.io.FileWriter; 3 | import java.util.Scanner; 4 | 5 | public class Student_Entry { 6 | 7 | // function to print options for the user 8 | static void printOptions(String[] options) { 9 | for (int i = 0; i < options.length; i++) { 10 | System.out.println((i + 1) + ". " + options[i]); 11 | } 12 | } 13 | 14 | public static void main(String[] args) { 15 | 16 | String input = ""; 17 | String[] options = { "Write/Append to the program", "Read and display the contents of the database [text file]", 18 | "Exit" }; 19 | 20 | Scanner scanner = new Scanner(System.in); 21 | 22 | while (!input.equalsIgnoreCase("3")) { 23 | printOptions(options); 24 | 25 | System.out.print("Select an option: "); 26 | input = scanner.nextLine(); 27 | 28 | switch (input) { 29 | case "1": 30 | // input 31 | System.out.println("\n(e.g. Juan De La Cruz)"); 32 | System.out.print("Student full name: "); 33 | String stdFullName = scanner.nextLine(); 34 | 35 | System.out.println("\n(e.g. BSIT 1)"); 36 | System.out.print("Course and year: "); 37 | String stdCourseYear = scanner.nextLine(); 38 | 39 | System.out.print("\nContact Number: "); 40 | String stdContactNo = scanner.nextLine(); 41 | 42 | System.out.print("\nAddress: "); 43 | String stdAddress = scanner.nextLine(); 44 | 45 | // write 46 | try { 47 | FileWriter writer = new FileWriter("FELIPE_finact1.txt", true); 48 | writer.write(String.format("%s;;%s;;%s;;%s%n", stdFullName, stdCourseYear, stdContactNo, 49 | stdAddress)); 50 | writer.close(); 51 | System.out.println("\nStudent details saved successfully."); 52 | } catch (Exception e) { 53 | System.out.println("\nAn error occurred while saving the details."); 54 | e.printStackTrace(); 55 | } 56 | break; 57 | 58 | case "2": 59 | // read 60 | try { 61 | File file = new File("FELIPE_finact1.txt"); 62 | Scanner fileScanner = new Scanner(file); 63 | 64 | System.out.println(); 65 | while (fileScanner.hasNextLine()) { 66 | String line = fileScanner.nextLine(); 67 | String[] fields = line.split(";;"); 68 | 69 | String name = fields[0]; 70 | String course = fields[1]; 71 | String contact = fields[2]; 72 | String address = fields[3]; 73 | 74 | System.out.printf("%-20s %-10s %-15s %-20s%n", name, course, contact, address); 75 | } 76 | 77 | fileScanner.close(); 78 | 79 | } catch (Exception e) { 80 | System.out.println("\nError: file not found."); 81 | } 82 | break; 83 | 84 | case "3": 85 | // exit 86 | System.out.print("\nExiting program..."); 87 | break; 88 | 89 | default: 90 | // invalid input 91 | System.out.println("\nInvalid input. Please try again."); 92 | break; 93 | } 94 | System.out.println(); 95 | } 96 | 97 | scanner.close(); 98 | } 99 | 100 | } 101 | 102 | // Scanner (/) 103 | // nextLine (/) 104 | // split (/) 105 | // Filewriter-append mode (/) -------------------------------------------------------------------------------- /JavaRandom/pre_final_act1.java: -------------------------------------------------------------------------------- 1 | import java.util.Scanner; 2 | 3 | public class pre_final_act1 { 4 | public static void main(String[] args) { 5 | Scanner scanner = new Scanner(System.in); 6 | 7 | System.out.print("Enter a string: "); 8 | String inputString = scanner.nextLine().toLowerCase(); 9 | 10 | String reversedString = new StringBuilder(inputString).reverse().toString(); 11 | 12 | if (inputString.equals(reversedString)) { 13 | System.out.println("Amazing!"); 14 | } else { 15 | System.out.println("Transformed data: " + reversedString); 16 | } 17 | 18 | int[] characterCounts = new int[26]; 19 | for (char c : inputString.toCharArray()) { 20 | if (Character.isAlphabetic(c)) { 21 | characterCounts[c - 'a']++; 22 | } 23 | } 24 | 25 | System.out.print("Character counts: "); 26 | for (int i = 0; i < characterCounts.length; i++) { 27 | if (characterCounts[i] > 0) { 28 | System.out.print((char) ('a' + i) + "=" + characterCounts[i] + " "); 29 | } 30 | } 31 | scanner.close(); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /JavaRandom/pre_final_project.java: -------------------------------------------------------------------------------- 1 | import java.util.Random; 2 | import java.util.Scanner; 3 | 4 | class BingoCard { 5 | private static final int CARD_SIZE = 5; 6 | private static final int MAX_NUMBER = 75; 7 | private final int[][] card; 8 | 9 | public BingoCard() { 10 | this.card = generateCard(); 11 | } 12 | 13 | private int[][] generateCard() { 14 | int[][] card = new int[CARD_SIZE][CARD_SIZE]; 15 | boolean[] usedNumbers = new boolean[MAX_NUMBER]; 16 | 17 | Random random = new Random(); 18 | for (int i = 0; i < CARD_SIZE; i++) { 19 | for (int j = 0; j < CARD_SIZE; j++) { 20 | if (j == CARD_SIZE / 2 && i == CARD_SIZE / 2) { 21 | card[i][j] = -1; // Set the center square to -1 22 | } else { 23 | int num; 24 | do { 25 | num = random.nextInt(MAX_NUMBER) + 1; 26 | } while (usedNumbers[num - 1]); 27 | usedNumbers[num - 1] = true; 28 | card[i][j] = num; 29 | } 30 | } 31 | } 32 | return card; 33 | } 34 | 35 | public int[][] getCard() { 36 | return this.card; 37 | } 38 | 39 | @Override 40 | public String toString() { 41 | StringBuilder res = new StringBuilder(); 42 | for (int[] row : card) { 43 | for (int num : row) { 44 | String str = (num == -1) ? "FREE" : Integer.toString(num); 45 | res.append(String.format("%-4s", str)); 46 | } 47 | res.append("\n"); 48 | } 49 | return res.toString(); 50 | } 51 | } 52 | 53 | class BingoGame { 54 | private int num_players; 55 | private BingoCard[] players; 56 | private boolean[] called_numbers; 57 | private int turns; 58 | 59 | public BingoGame(int num_players) { 60 | this.num_players = num_players; 61 | this.players = new BingoCard[num_players]; 62 | for (int i = 0; i < num_players; i++) { 63 | this.players[i] = new BingoCard(); 64 | } 65 | this.called_numbers = new boolean[75]; 66 | this.turns = 0; 67 | } 68 | 69 | public boolean checkBingo(int[][] card) { 70 | for (int i = 0; i < 5; i++) { 71 | boolean rowBingo = true; 72 | boolean colBingo = true; 73 | for (int j = 0; j < 5; j++) { 74 | if (card[i][j] != -1) { 75 | rowBingo = false; 76 | } 77 | if (card[j][i] != -1) { 78 | colBingo = false; 79 | } 80 | } 81 | if (rowBingo || colBingo) { 82 | return true; 83 | } 84 | } 85 | boolean diagonal1Bingo = true; 86 | boolean diagonal2Bingo = true; 87 | for (int i = 0; i < 5; i++) { 88 | if (card[i][i] != -1) { 89 | diagonal1Bingo = false; 90 | } 91 | if (card[i][4 - i] != -1) { 92 | diagonal2Bingo = false; 93 | } 94 | } 95 | if (diagonal1Bingo || diagonal2Bingo) { 96 | return true; 97 | } 98 | return false; 99 | } 100 | 101 | public void play() { 102 | Scanner scanner = new Scanner(System.in); 103 | System.out.println("Press Enter to start the game..."); 104 | scanner.nextLine(); 105 | int currentPlayer = 0; // Initialize to player 1 106 | while (true) { 107 | this.turns += 1; 108 | int called_number = new Random().nextInt(75) + 1; 109 | while (this.called_numbers[called_number - 1]) { 110 | called_number = new Random().nextInt(75) + 1; 111 | } 112 | this.called_numbers[called_number - 1] = true; 113 | System.out.println("\nTurn: " + this.turns); 114 | System.out.println("Player " + (currentPlayer + 1) + "'s turn"); 115 | System.out.println("Called number: " + called_number); 116 | for (int i = 0; i < this.num_players; i++) { 117 | int[][] card = this.players[i].getCard(); 118 | for (int j = 0; j < 5; j++) { 119 | for (int k = 0; k < 5; k++) { 120 | if (card[j][k] == called_number) { 121 | card[j][k] = -1; 122 | if (this.checkBingo(card)) { 123 | System.out.println("Player " + (i + 1) + " wins!"); 124 | return; 125 | } 126 | } 127 | } 128 | } 129 | } 130 | scanner.nextLine(); 131 | currentPlayer = (currentPlayer + 1) % this.num_players; // Update current player 132 | } 133 | } 134 | } 135 | 136 | public class pre_final_project { 137 | 138 | public static void main(String[] args) { 139 | System.out.println("Welcome to Bingo!"); 140 | try (Scanner scanner = new Scanner(System.in)) { 141 | boolean playAgain = true; 142 | while (playAgain) { 143 | int num_players = 5; 144 | BingoGame game = new BingoGame(num_players); 145 | game.play(); 146 | scanner.nextLine(); // Consume the newline character left by nextInt() 147 | System.out.print("Do you want to play again? (y/n): "); 148 | String input = scanner.nextLine(); 149 | playAgain = input.equals("y"); 150 | } 151 | } 152 | System.out.println("Thanks for playing!"); 153 | } 154 | 155 | } -------------------------------------------------------------------------------- /JavaSampleEmployeeSystemWithGUI/Main.java: -------------------------------------------------------------------------------- 1 | 2 | /** 3 | * made by Joemar J. Cardiño 4 | */ 5 | 6 | import java.awt.GridLayout; 7 | import javax.swing.JButton; 8 | import javax.swing.JFrame; 9 | import javax.swing.JLabel; 10 | import javax.swing.JTextField; 11 | import javax.swing.SwingConstants; 12 | import java.awt.event.ActionEvent; 13 | import java.awt.event.ActionListener; 14 | 15 | public class Main implements ActionListener { 16 | 17 | final float DEDUCT = 600.0f; 18 | 19 | JTextField empName, empMon, empTue, empWed, empThu, empFri, 20 | hourlyRate, hoursAbsent, monthlySalary, monthlyAbsenses, monthlyTardiness, 21 | deduction, grossPay, netPay; 22 | JButton button; 23 | 24 | Main() { 25 | // frame 26 | JFrame f = new JFrame(); 27 | 28 | // button - set bound to x axis, y axis, width, height of button 29 | button = new JButton("Compute"); 30 | 31 | // labels 32 | JLabel blank = new JLabel(""); 33 | JLabel empLabel = new JLabel("Enter Employee's Name: ", SwingConstants.RIGHT); 34 | JLabel monLabel = new JLabel("Monday: ", SwingConstants.RIGHT); 35 | JLabel tueLabel = new JLabel("Tuesday: ", SwingConstants.RIGHT); 36 | JLabel wedLabel = new JLabel("Wednesday: ", SwingConstants.RIGHT); 37 | JLabel thuLabel = new JLabel("Thursday: ", SwingConstants.RIGHT); 38 | JLabel friLabel = new JLabel("Friday: ", SwingConstants.RIGHT); 39 | JLabel hrLabel = new JLabel("Enter Employee's Hourly Rate: ", SwingConstants.RIGHT); 40 | JLabel haLabel = new JLabel("Enter Employee's Hours Absent: ", SwingConstants.RIGHT); 41 | JLabel bspm = new JLabel("Salary Per Month", SwingConstants.CENTER); 42 | JLabel tapm = new JLabel("Total Absense Per Month", SwingConstants.CENTER); 43 | JLabel ttpm = new JLabel("Total Tardiness Per Month", SwingConstants.CENTER); 44 | JLabel pgpd = new JLabel("SSS, PAGIBIG, and PHILHEALTH deduction", SwingConstants.CENTER); 45 | JLabel gp = new JLabel("Gross Pay", SwingConstants.CENTER); 46 | JLabel np = new JLabel("Net Pay", SwingConstants.CENTER); 47 | 48 | // text fields 49 | empName = new JTextField(""); 50 | empMon = new JTextField(""); 51 | empTue = new JTextField(""); 52 | empWed = new JTextField(""); 53 | empThu = new JTextField(""); 54 | empFri = new JTextField(""); 55 | hourlyRate = new JTextField(""); 56 | hoursAbsent = new JTextField(""); 57 | monthlySalary = new JTextField(""); 58 | monthlySalary.setEditable(false); 59 | monthlyAbsenses = new JTextField(""); 60 | monthlyAbsenses.setEditable(false); 61 | monthlyTardiness = new JTextField(""); 62 | monthlyTardiness.setEditable(false); 63 | deduction = new JTextField(""); 64 | deduction.setEditable(false); 65 | grossPay = new JTextField(""); 66 | grossPay.setEditable(false); 67 | netPay = new JTextField(""); 68 | netPay.setEditable(false); 69 | 70 | // adding objects to JFrame 71 | f.add(empLabel); 72 | f.add(empName); 73 | f.add(monLabel); 74 | f.add(empMon); 75 | f.add(tueLabel); 76 | f.add(empTue); 77 | f.add(wedLabel); 78 | f.add(empWed); 79 | f.add(thuLabel); 80 | f.add(empThu); 81 | f.add(friLabel); 82 | f.add(empFri); 83 | f.add(hrLabel); 84 | f.add(hourlyRate); 85 | f.add(haLabel); 86 | f.add(hoursAbsent); 87 | f.add(blank); 88 | f.add(button); 89 | f.add(blank); 90 | f.add(bspm); 91 | f.add(monthlySalary); 92 | f.add(tapm); 93 | f.add(monthlyAbsenses); 94 | f.add(ttpm); 95 | f.add(monthlyTardiness); 96 | f.add(pgpd); 97 | f.add(deduction); 98 | f.add(gp); 99 | f.add(grossPay); 100 | f.add(np); 101 | f.add(netPay); 102 | 103 | // click button 104 | button.addActionListener(this); 105 | // setting frame 106 | f.setSize(500, 500); 107 | // using grid layout 3 * 3 grid is created 108 | // with the horizontal gap 9 and vertical gap 9 109 | f.setLayout(new GridLayout(15, 14, 15, 15)); 110 | // making the frame visible 111 | f.setVisible(true); 112 | // center alignment of frame 113 | f.setLocationRelativeTo(null); 114 | // exit on close 115 | f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); 116 | } 117 | 118 | public void actionPerformed(ActionEvent e) { 119 | 120 | int m = 0, t = 0, w = 0, th = 0, f = 0, ha = 0; 121 | float hr = 0; 122 | if (!empMon.getText().isEmpty()) { 123 | m = Integer.parseInt(empMon.getText()); 124 | } 125 | if (!empTue.getText().isEmpty()) { 126 | t = Integer.parseInt(empTue.getText()); 127 | } 128 | if (!empWed.getText().isEmpty()) { 129 | w = Integer.parseInt(empWed.getText()); 130 | } 131 | if (!empThu.getText().isEmpty()) { 132 | th = Integer.parseInt(empThu.getText()); 133 | } 134 | if (!empFri.getText().isEmpty()) { 135 | f = Integer.parseInt(empFri.getText()); 136 | } 137 | if (!empFri.getText().isEmpty()) { 138 | f = Integer.parseInt(empFri.getText()); 139 | } 140 | if (!hourlyRate.getText().isEmpty()) { 141 | hr = Float.parseFloat(hourlyRate.getText()); 142 | } 143 | if (!hoursAbsent.getText().isEmpty()) { 144 | ha = Integer.parseInt(hoursAbsent.getText()); 145 | } 146 | 147 | int totalHours = m + t + w + th + f; 148 | float totalRate = totalHours * hr; 149 | float absense = ha * hr; 150 | 151 | // 4 means, 4 weeks in a month - to get monthly salary 152 | // no deduction, just calculate for the month 153 | float ms = (totalRate * 4); 154 | 155 | if (e.getSource() == button) { 156 | monthlySalary.setText(Float.toString(ms)); 157 | monthlyAbsenses.setText(Integer.toString(ha)); 158 | monthlyTardiness.setText(Integer.toString(0)); 159 | deduction.setText(Float.toString(ms - DEDUCT)); 160 | grossPay.setText(Float.toString(ms)); 161 | netPay.setText(Float.toString(ms - (absense + DEDUCT))); 162 | } 163 | } 164 | 165 | public static void main(String args[]) { 166 | new Main(); 167 | } 168 | } -------------------------------------------------------------------------------- /NLP Studies/src/img/nltk downloader.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/Random-Projects/f384bbc9519aa3a7bdfb272ea7db1819f8beded8/NLP Studies/src/img/nltk downloader.PNG -------------------------------------------------------------------------------- /NLP Studies/study_NLTK.ipynb: -------------------------------------------------------------------------------- 1 | { 2 | "cells": [ 3 | { 4 | "cell_type": "markdown", 5 | "id": "0454ecd3", 6 | "metadata": {}, 7 | "source": [ 8 | "

Natural Language Toolkit (NLTK)

\n", 9 | "

\n", 10 | " is a leading platform for building Python programs to work with human language data. It provides easy-to-use interfaces to over over 50 corpora and lexical resources such as WordNet, along with a suite of text processing for classification, tokenization, stemming, tagging, parsing, and semantic reasoning, wrappers for industrial-strength NLP Libriaries, and an active discussion forum.\n", 11 | "

\n", 12 | "
\n", 13 | "

Installation

\n", 14 | "\n", 19 | "
\n", 20 | "

NLTK data installation

\n", 21 | "

\n", 22 | " NLTK comes with many corpora, toy grammars, trained models, etc. A complete list is posted at NLTK main page (nltk data)\n", 23 | "

\n", 24 | "```python\n", 25 | " import nltk\n", 26 | " nltk.download()\n", 27 | "```\n", 28 | "

that will lunch the nltk downloader gui, from which you can download corpus

\n", 29 | "\"Alt" 30 | ] 31 | }, 32 | { 33 | "cell_type": "markdown", 34 | "id": "ff28ea5f", 35 | "metadata": {}, 36 | "source": [ 37 | "

Start...

" 38 | ] 39 | }, 40 | { 41 | "cell_type": "code", 42 | "execution_count": 1, 43 | "id": "5b397ec5", 44 | "metadata": {}, 45 | "outputs": [ 46 | { 47 | "name": "stdout", 48 | "output_type": "stream", 49 | "text": [ 50 | "Defaulting to user installation because normal site-packages is not writeable\n", 51 | "Requirement already satisfied: nltk in c:\\programdata\\anaconda3\\lib\\site-packages (3.7)\n", 52 | "Requirement already satisfied: tqdm in c:\\programdata\\anaconda3\\lib\\site-packages (from nltk) (4.64.1)\n", 53 | "Requirement already satisfied: regex>=2021.8.3 in c:\\programdata\\anaconda3\\lib\\site-packages (from nltk) (2022.7.9)\n", 54 | "Requirement already satisfied: joblib in c:\\programdata\\anaconda3\\lib\\site-packages (from nltk) (1.1.0)\n", 55 | "Requirement already satisfied: click in c:\\programdata\\anaconda3\\lib\\site-packages (from nltk) (8.0.4)\n", 56 | "Requirement already satisfied: colorama in c:\\programdata\\anaconda3\\lib\\site-packages (from click->nltk) (0.4.5)\n" 57 | ] 58 | } 59 | ], 60 | "source": [ 61 | "!pip install nltk" 62 | ] 63 | }, 64 | { 65 | "cell_type": "code", 66 | "execution_count": 2, 67 | "id": "4996b2c0", 68 | "metadata": {}, 69 | "outputs": [], 70 | "source": [ 71 | "import nltk" 72 | ] 73 | }, 74 | { 75 | "cell_type": "code", 76 | "execution_count": 19, 77 | "id": "0d758eec", 78 | "metadata": {}, 79 | "outputs": [], 80 | "source": [ 81 | "# nltk.download() # uncomment to see the gui, comment if you wish not to." 82 | ] 83 | }, 84 | { 85 | "cell_type": "code", 86 | "execution_count": 11, 87 | "id": "8aa46f91", 88 | "metadata": {}, 89 | "outputs": [], 90 | "source": [ 91 | "text = \"\"\"Monticello wasn't designated as UNESCO World Heritage Site until 1987 \"\"\"" 92 | ] 93 | }, 94 | { 95 | "cell_type": "code", 96 | "execution_count": 15, 97 | "id": "c3ae68f6", 98 | "metadata": {}, 99 | "outputs": [ 100 | { 101 | "data": { 102 | "text/plain": [ 103 | "\"Monticello wasn't designated as UNESCO World Heritage Site until 1987 \"" 104 | ] 105 | }, 106 | "execution_count": 15, 107 | "metadata": {}, 108 | "output_type": "execute_result" 109 | } 110 | ], 111 | "source": [ 112 | "text # display text" 113 | ] 114 | }, 115 | { 116 | "cell_type": "markdown", 117 | "id": "d9eb165e", 118 | "metadata": {}, 119 | "source": [ 120 | "better word tokenizers" 121 | ] 122 | }, 123 | { 124 | "cell_type": "code", 125 | "execution_count": 16, 126 | "id": "e9396698", 127 | "metadata": {}, 128 | "outputs": [ 129 | { 130 | "data": { 131 | "text/plain": [ 132 | "['Monticello',\n", 133 | " \"wasn't\",\n", 134 | " 'designated',\n", 135 | " 'as',\n", 136 | " 'UNESCO',\n", 137 | " 'World',\n", 138 | " 'Heritage',\n", 139 | " 'Site',\n", 140 | " 'until',\n", 141 | " '1987',\n", 142 | " '']" 143 | ] 144 | }, 145 | "execution_count": 16, 146 | "metadata": {}, 147 | "output_type": "execute_result" 148 | } 149 | ], 150 | "source": [ 151 | "import regex\n", 152 | "regex.split(\"[\\s\\.\\,]\", text)" 153 | ] 154 | }, 155 | { 156 | "cell_type": "code", 157 | "execution_count": 17, 158 | "id": "eee2e2d9", 159 | "metadata": {}, 160 | "outputs": [ 161 | { 162 | "data": { 163 | "text/plain": [ 164 | "['Monticello',\n", 165 | " 'was',\n", 166 | " \"n't\",\n", 167 | " 'designated',\n", 168 | " 'as',\n", 169 | " 'UNESCO',\n", 170 | " 'World',\n", 171 | " 'Heritage',\n", 172 | " 'Site',\n", 173 | " 'until',\n", 174 | " '1987']" 175 | ] 176 | }, 177 | "execution_count": 17, 178 | "metadata": {}, 179 | "output_type": "execute_result" 180 | } 181 | ], 182 | "source": [ 183 | "nltk.word_tokenize(text)" 184 | ] 185 | }, 186 | { 187 | "cell_type": "markdown", 188 | "id": "200b54d7", 189 | "metadata": {}, 190 | "source": [ 191 | "Notice that \"wasn't\" is separated as \"was\" and \"n't\" in which can be efficient in some cases. Also, the empty space is not included." 192 | ] 193 | }, 194 | { 195 | "cell_type": "markdown", 196 | "id": "2a9b1bcd", 197 | "metadata": {}, 198 | "source": [ 199 | "

Stemming

\n", 200 | "

there are multiple stemmers in nltk, let's investigate them!

\n", 201 | "\n", 202 | "

Porter Stemming

\n", 203 | "

it applies some rules on the text, you can check the rules here.

" 204 | ] 205 | }, 206 | { 207 | "cell_type": "code", 208 | "execution_count": 31, 209 | "id": "fe1cf425", 210 | "metadata": {}, 211 | "outputs": [ 212 | { 213 | "name": "stdout", 214 | "output_type": "stream", 215 | "text": [ 216 | "Armies >>>> armi\n", 217 | "Children >>>> children\n", 218 | "Essays >>>> essay\n", 219 | "Baby >>>> babi\n", 220 | "Bamboos >>>> bamboo\n", 221 | "Benches >>>> bench\n", 222 | "Birds >>>> bird\n", 223 | "Boats >>>> boat\n", 224 | "Bones >>>> bone\n", 225 | "Boxes >>>> box\n" 226 | ] 227 | } 228 | ], 229 | "source": [ 230 | "from nltk.stem import PorterStemmer\n", 231 | "p_stemmer = PorterStemmer()\n", 232 | "\n", 233 | "# Read more: https://onlymyenglish.com/plural-noun-list/\n", 234 | "plurals = [\n", 235 | " 'Armies', 'Children' ,'Essays', 'Baby', 'Bamboos', 'Benches', 'Birds' ,'Boats' ,'Bones', 'Boxes'\n", 236 | "]\n", 237 | "\n", 238 | "for word in plurals:\n", 239 | " print(f'{word} >>>> {p_stemmer.stem(word)}')" 240 | ] 241 | }, 242 | { 243 | "cell_type": "markdown", 244 | "id": "e9d3b3a8", 245 | "metadata": {}, 246 | "source": [ 247 | "Note: This algorithm for stemming is ok to use, but there are other stemming algorithm like SnowballStemming is better and far more convinient.\n", 248 | "\n", 249 | "

Snowball Stemming

\n", 250 | "

it supports multiple languages

" 251 | ] 252 | }, 253 | { 254 | "cell_type": "code", 255 | "execution_count": 32, 256 | "id": "3b87e6a3", 257 | "metadata": {}, 258 | "outputs": [ 259 | { 260 | "data": { 261 | "text/plain": [ 262 | "('arabic',\n", 263 | " 'danish',\n", 264 | " 'dutch',\n", 265 | " 'english',\n", 266 | " 'finnish',\n", 267 | " 'french',\n", 268 | " 'german',\n", 269 | " 'hungarian',\n", 270 | " 'italian',\n", 271 | " 'norwegian',\n", 272 | " 'porter',\n", 273 | " 'portuguese',\n", 274 | " 'romanian',\n", 275 | " 'russian',\n", 276 | " 'spanish',\n", 277 | " 'swedish')" 278 | ] 279 | }, 280 | "execution_count": 32, 281 | "metadata": {}, 282 | "output_type": "execute_result" 283 | } 284 | ], 285 | "source": [ 286 | "from nltk.stem import SnowballStemmer\n", 287 | "SnowballStemmer.languages" 288 | ] 289 | }, 290 | { 291 | "cell_type": "code", 292 | "execution_count": 33, 293 | "id": "36286a96", 294 | "metadata": {}, 295 | "outputs": [], 296 | "source": [ 297 | "sn_stemmer = SnowballStemmer('english') # we use English in which far superior than Porter" 298 | ] 299 | }, 300 | { 301 | "cell_type": "code", 302 | "execution_count": 34, 303 | "id": "678b529a", 304 | "metadata": {}, 305 | "outputs": [ 306 | { 307 | "data": { 308 | "text/plain": [ 309 | "'generous'" 310 | ] 311 | }, 312 | "execution_count": 34, 313 | "metadata": {}, 314 | "output_type": "execute_result" 315 | } 316 | ], 317 | "source": [ 318 | "sn_stemmer.stem('generously')" 319 | ] 320 | }, 321 | { 322 | "cell_type": "markdown", 323 | "id": "6322f0db", 324 | "metadata": {}, 325 | "source": [ 326 | "compare to...." 327 | ] 328 | }, 329 | { 330 | "cell_type": "code", 331 | "execution_count": 35, 332 | "id": "bc335d91", 333 | "metadata": {}, 334 | "outputs": [ 335 | { 336 | "data": { 337 | "text/plain": [ 338 | "'gener'" 339 | ] 340 | }, 341 | "execution_count": 35, 342 | "metadata": {}, 343 | "output_type": "execute_result" 344 | } 345 | ], 346 | "source": [ 347 | "p_stemmer.stem('generously')" 348 | ] 349 | }, 350 | { 351 | "cell_type": "markdown", 352 | "id": "349c0bd3", 353 | "metadata": {}, 354 | "source": [ 355 | "See, you can judge the result.\n", 356 | "
\n", 357 | "

Lemmatization

\n", 358 | "

retrieving the source of the word

" 359 | ] 360 | }, 361 | { 362 | "cell_type": "code", 363 | "execution_count": 36, 364 | "id": "7d179980", 365 | "metadata": {}, 366 | "outputs": [ 367 | { 368 | "name": "stdout", 369 | "output_type": "stream", 370 | "text": [ 371 | "Armies >>>> Armies\n", 372 | "Children >>>> Children\n", 373 | "Essays >>>> Essays\n", 374 | "Baby >>>> Baby\n", 375 | "Bamboos >>>> Bamboos\n", 376 | "Benches >>>> Benches\n", 377 | "Birds >>>> Birds\n", 378 | "Boats >>>> Boats\n", 379 | "Bones >>>> Bones\n", 380 | "Boxes >>>> Boxes\n" 381 | ] 382 | } 383 | ], 384 | "source": [ 385 | "from nltk.stem import WordNetLemmatizer\n", 386 | "lemmatizer = WordNetLemmatizer()\n", 387 | "\n", 388 | "for word in plurals:\n", 389 | " print(f'{word} >>>> {lemmatizer.lemmatize(word)}')" 390 | ] 391 | }, 392 | { 393 | "cell_type": "markdown", 394 | "id": "536d7509", 395 | "metadata": {}, 396 | "source": [ 397 | "

Summary!

\n", 398 | "" 404 | ] 405 | }, 406 | { 407 | "cell_type": "markdown", 408 | "id": "4e9e085e", 409 | "metadata": {}, 410 | "source": [ 411 | "sources\n", 412 | "
\n", 413 | "intro: https://www.youtube.com/watch?v=WYge0KZBhe0&ab_channel=ProgrammingKnowledge" 414 | ] 415 | } 416 | ], 417 | "metadata": { 418 | "kernelspec": { 419 | "display_name": "Python 3 (ipykernel)", 420 | "language": "python", 421 | "name": "python3" 422 | }, 423 | "language_info": { 424 | "codemirror_mode": { 425 | "name": "ipython", 426 | "version": 3 427 | }, 428 | "file_extension": ".py", 429 | "mimetype": "text/x-python", 430 | "name": "python", 431 | "nbconvert_exporter": "python", 432 | "pygments_lexer": "ipython3", 433 | "version": "3.9.13" 434 | } 435 | }, 436 | "nbformat": 4, 437 | "nbformat_minor": 5 438 | } 439 | -------------------------------------------------------------------------------- /OS_Deadlock/__main__.py: -------------------------------------------------------------------------------- 1 | # total matrix is given 2 | # process. allocation matrix. max need matrix. are also given 3 | 4 | import numpy as np 5 | 6 | 7 | def str_fix(a_string): 8 | a_string = str(a_string) 9 | for character in '[,]': 10 | a_string = a_string.replace(character, '') 11 | 12 | return a_string 13 | 14 | 15 | def display_matrix(array) -> None: 16 | ''' 17 | # Displaying Array of Processes 18 | - requires 1 parameter which is the array 19 | - get that array 20 | - and display the array 21 | ''' 22 | 23 | # processes display 24 | print(' id alloc max avail need') 25 | for data in array: 26 | id = data[0] 27 | allocated_matrix = data[1] 28 | max_need = data[2] 29 | available_matrix = data[3] 30 | need_matrix = data[4] 31 | status = data[5] 32 | 33 | # printing 34 | print(' ', id, ' ', str_fix(allocated_matrix), ' ', str_fix(max_need), 35 | ' ', str_fix(available_matrix), ' ', str_fix(need_matrix), ' ', status) 36 | 37 | 38 | def get_total_allocation(array) -> object: 39 | # total allocation 40 | total_allocation = np.array( 41 | [0, 0, 0, 0], 42 | dtype=object, 43 | copy=False, 44 | order='K', 45 | subok=False, 46 | ndmin=0 47 | ) 48 | for data in array: 49 | 50 | # get allocation matrix 51 | allocated_matrix = data[1] 52 | 53 | # get processes 54 | a = allocated_matrix[0] 55 | b = allocated_matrix[1] 56 | c = allocated_matrix[2] 57 | d = allocated_matrix[3] 58 | 59 | # calculate total allocation 60 | total_allocation[0] += a 61 | total_allocation[1] += b 62 | total_allocation[2] += c 63 | total_allocation[3] += d 64 | 65 | return total_allocation 66 | 67 | 68 | def main(): 69 | 70 | # total matrix (all of the process) 71 | total_matrix = np.array( 72 | [3, 17, 16, 12], 73 | dtype=object, 74 | copy=False, 75 | order='K', 76 | subok=False, 77 | ndmin=0 78 | ) 79 | # all processes need to handle 80 | processes = np.array( 81 | [ 82 | # ['id', [allocation matrix], [max need matrix], [available matrix], [need matrix]], 'status' 83 | ['P1', [0, 1, 1, 0], [0, 2, 1, 0], [ 84 | 0, 0, 0, 0], [0, 0, 0, 0], 'unchecked'], 85 | ['P2', [1, 2, 3, 1], [1, 6, 5, 2], [ 86 | 0, 0, 0, 0], [0, 0, 0, 0], 'unchecked'], 87 | ['P3', [1, 3, 6, 5], [2, 3, 6, 6], [ 88 | 0, 0, 0, 0], [0, 0, 0, 0], 'unchecked'], 89 | ['P4', [0, 6, 3, 2], [0, 6, 5, 2], [ 90 | 0, 0, 0, 0], [0, 0, 0, 0], 'unchecked'], 91 | ['P5', [0, 0, 1, 4], [0, 6, 5, 6], [ 92 | 0, 0, 0, 0], [0, 0, 0, 0], 'unchecked'], 93 | ], 94 | dtype=object, 95 | copy=False, 96 | order='K', 97 | subok=False, 98 | ndmin=0 99 | ) 100 | 101 | # total allocation 102 | total_allocation = np.array( 103 | get_total_allocation(processes), 104 | dtype=object, 105 | copy=False, 106 | order='K', 107 | subok=False, 108 | ndmin=0 109 | ) 110 | 111 | # max - alloc = need 112 | sample_blank = np.zeros((4,), dtype=int) 113 | for data in processes: 114 | 115 | # get allocation matrix 116 | allocated_matrix = data[1] 117 | # get max matrix 118 | max_need = data[2] 119 | 120 | # set need matrix 121 | data[4] = np.subtract(max_need, allocated_matrix) 122 | sample_blank = np.zeros((4,), dtype=int) 123 | data[3] = sample_blank 124 | 125 | # initialized available matrix from total available matrix minus total allocation 126 | init_available_matrix = np.subtract(total_matrix, total_allocation) 127 | processes[0][3] = init_available_matrix 128 | 129 | # disp 130 | display_matrix(processes) 131 | 132 | # available matrix row counter 133 | r = 0 134 | for data in processes: 135 | # available matrix 136 | am = processes[r][3] 137 | 138 | # check if available matrix can cover up the need matrix 139 | if (am >= data[4]).all() and data[5] == 'unchecked': 140 | max_matrix = data[2] 141 | available_matrix = np.subtract(processes[r][3], data[4]) 142 | data[4] = np.zeros((4,), dtype=int) 143 | data[5] = 'checked' 144 | 145 | r += 1 146 | if r >= 5: 147 | r = 0 148 | break 149 | 150 | processes[r][3] = np.add(available_matrix, max_matrix) 151 | 152 | for data in processes: 153 | # if (data[4] != sample_blank).any(): 154 | if data[5] == 'unchecked': 155 | needBacktrack = True 156 | break 157 | else: 158 | needBacktrack = False 159 | 160 | for data in processes: 161 | # available matrix 162 | am = processes[r][3] 163 | 164 | # check if available matrix can cover up the need matrix 165 | if (am >= data[4]).all() and data[5] == 'unchecked': 166 | max_matrix = data[2] 167 | available_matrix = np.subtract(processes[r][3], data[4]) 168 | data[4] = np.zeros((4,), dtype=int) 169 | data[5] = 'checked' 170 | 171 | r += 1 172 | if r >= 5: 173 | r = 0 174 | break 175 | 176 | processes[r][3] = np.add(available_matrix, max_matrix) 177 | 178 | # display result 179 | print('result') 180 | display_matrix(processes) 181 | 182 | 183 | if __name__ == "__main__": 184 | main() 185 | 186 | 187 | # useful learning materials 188 | # numpy - https://numpy.org/doc/stable/reference/generated/numpy.array.html 189 | # numpy array - https://www.geeksforgeeks.org/python-numpy/ 190 | # numpy array - https://www.educba.com/numpy-arrays/ 191 | -------------------------------------------------------------------------------- /OS_Deadlock/banker_s_algo.py: -------------------------------------------------------------------------------- 1 | """" 2 | algorithm to avopid deadlock processes on cpu 3 | made by Joemar 4 | 5 | @todo 6 | set the maximum resources (a=printer, etc...) 7 | calculate the initial work 8 | """ 9 | 10 | 11 | class Process(): 12 | 13 | def __init__(self, pid, alloc, maximum, work=None): 14 | # need to fill 15 | self.___set_id(pid) 16 | self.___set_alloc(alloc) 17 | self.___set_max(maximum) 18 | 19 | # defining the need to do the job of a specific process -> Needed = Maximum – Allocated. 20 | self.need = [0, 0, 0] 21 | for i in range(3): 22 | self.need[i] = maximum[i] - alloc[i] 23 | 24 | # mandatory, mainly the first process is required 25 | self.work = [0, 0, 0] if (work is None) else work 26 | 27 | def ___set_id(self, _id): 28 | self.pid = _id 29 | 30 | def ___set_alloc(self, _alloc): 31 | self.alloc = _alloc 32 | 33 | def ___set_max(self, _max): 34 | self.max = _max 35 | 36 | 37 | def display(data): 38 | data.sort(key=lambda list: list.pid) 39 | print("process alloc max need work") 40 | for _p in data: 41 | print(f"{_p.pid} {_p.alloc} {_p.max} {_p.need} {_p.work}") 42 | 43 | 44 | def safe_list(data): 45 | print("\t\t<", end="") 46 | for _p in data: 47 | print(f" {_p.pid} ", end="") 48 | print(">") 49 | 50 | 51 | def algo(unsafe): 52 | 53 | print("\n\t\t UNSAFE LIST") 54 | display(unsafe) 55 | 56 | safe = [] 57 | work_list = [] 58 | 59 | i = w_len = 0 60 | size = len(unsafe) 61 | work_list.append(unsafe[0].work) 62 | 63 | while size != 0: 64 | if i == size: 65 | i = 0 66 | 67 | if unsafe[i].need > work_list[w_len]: 68 | i += 1 69 | else: 70 | temp = [0, 0, 0] 71 | for j in range(3): 72 | temp[j] += work_list[w_len][j] + unsafe[i].alloc[j] 73 | work_list.append(temp) 74 | unsafe[i].work = temp 75 | 76 | safe.append(unsafe[i]) 77 | unsafe.pop(i) 78 | 79 | w_len += 1 80 | size -= 1 81 | 82 | print("\n\t\t SAFE LIST") 83 | safe_list(safe) 84 | display(safe) 85 | 86 | 87 | # Main 88 | def main(): 89 | # list of process 90 | plist = [] 91 | plist.append(Process(0, [0, 1, 0], [7, 5, 3], [3, 3, 2])) 92 | plist.append(Process(1, [2, 0, 0], [3, 2, 2])) 93 | plist.append(Process(2, [3, 0, 2], [9, 0, 2])) 94 | plist.append(Process(3, [2, 1, 1], [2, 2, 2])) 95 | plist.append(Process(4, [0, 0, 2], [4, 3, 3])) 96 | 97 | # Do Algo 98 | algo(plist) 99 | 100 | 101 | if __name__ == '__main__': 102 | main() 103 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Programs 2 | -------------------------------------------------------------------------------- /automate/file.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/Random-Projects/f384bbc9519aa3a7bdfb272ea7db1819f8beded8/automate/file.pdf -------------------------------------------------------------------------------- /automate/main.py: -------------------------------------------------------------------------------- 1 | import os 2 | from PyPDF2 import PdfReader, PdfWriter 3 | 4 | 5 | def extract_title_from_page(page_text): 6 | lines = page_text.split('\n') 7 | for i in range(len(lines)): 8 | if lines[i].strip().startswith(('MR.', 'MS.', 'ENGR.', 'DR.', 'HON.')): 9 | return f"{lines[i+2].strip()} - {lines[i].strip()} - {lines[i+1].strip()}" 10 | return None 11 | 12 | 13 | def save_individual_pdf_pages(input_file_path): 14 | # Create 'automated_files' folder if it doesn't exist 15 | output_folder = "automated_files" 16 | if not os.path.exists(output_folder): 17 | os.makedirs(output_folder) 18 | 19 | reader = PdfReader(input_file_path) 20 | num_pages = len(reader.pages) 21 | 22 | for i in range(0, num_pages, 2): 23 | page1 = reader.pages[i] 24 | page1_text = page1.extract_text() 25 | title_text1 = extract_title_from_page(page1_text) 26 | 27 | if i + 1 < num_pages: 28 | page2 = reader.pages[i + 1] 29 | page2_text = page2.extract_text() 30 | title_text2 = extract_title_from_page(page2_text) 31 | else: 32 | page2 = None 33 | title_text2 = None 34 | 35 | if title_text1: 36 | output_title = title_text1 37 | elif title_text2: 38 | output_title = title_text2 39 | else: 40 | output_title = f"Page_{i+1}_to_{i+2}" 41 | 42 | output_title = output_title.replace('\n', ' ').replace('/', '_') 43 | writer = PdfWriter() 44 | writer.add_page(page1) 45 | if page2: 46 | writer.add_page(page2) 47 | 48 | output_file_path = os.path.join(output_folder, f"{output_title}.pdf") 49 | with open(output_file_path, 'wb') as output_file: 50 | writer.write(output_file) 51 | 52 | print(f"Saved: {output_file_path}") 53 | 54 | 55 | input_pdf = "file.pdf" 56 | save_individual_pdf_pages(input_pdf) 57 | -------------------------------------------------------------------------------- /automate/submit/ABOITIZ POWER RENEWABLES, INC . - ENGR. JOSE LACHICA III - Asst. Vice President.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/Random-Projects/f384bbc9519aa3a7bdfb272ea7db1819f8beded8/automate/submit/ABOITIZ POWER RENEWABLES, INC . - ENGR. JOSE LACHICA III - Asst. Vice President.pdf -------------------------------------------------------------------------------- /sql_generator_from_excel/main.py: -------------------------------------------------------------------------------- 1 | import os 2 | import pandas as pd 3 | 4 | # Load the Excel file 5 | file_path = 'variety.xlsx' 6 | 7 | try: 8 | # Load the Excel sheet into pandas dataframe 9 | sheet_data = pd.read_excel(file_path, sheet_name='Sheet1') 10 | except FileNotFoundError: 11 | print(f"Error: The file {file_path} was not found.") 12 | exit() 13 | except Exception as e: 14 | print(f"Error reading Excel file: {e}") 15 | exit() 16 | 17 | # Create output directory for SQL files 18 | output_directory = 'sql_inserts_by_region' 19 | if not os.path.exists(output_directory): 20 | os.makedirs(output_directory) 21 | 22 | # Updated mapping of region codes to their actual UUIDs (using "RO" instead of "PO") 23 | region_id_map = { 24 | "RO1": "256c6ab8-65b9-4574-a19b-bfe8b34cee51", 25 | "RO2": "fa1cf64e-6170-4ebd-96c9-d31e21975635", 26 | "RO3": "61f5aa2b-6808-4c7b-8b40-24a2fb800f33", 27 | "RO4": "436de17a-adad-4ee8-ab2c-e0018492d362", 28 | "RO5": "45b38c31-58d2-481c-bba7-dd01791464da", 29 | "RO6": "69baa427-4f56-46ef-a157-a5acf6dee5c2", 30 | "RO7": "b850899c-8f2a-475c-948e-0d1122a55ed4", 31 | "RO8": "a3d9e99a-4a90-4504-b9a5-a4b205892d73", 32 | "RO9": "fd8e77d8-4615-413d-818b-df9fe0276b62", 33 | "RO10": "0cf345a4-68fc-408f-94b8-e71050abe52c", 34 | "RO11": "795454c2-26fd-4825-8feb-3f7c8441401a", 35 | "RO12": "5ba97c6b-60eb-4699-9a16-729bde4211c2" 36 | } 37 | 38 | # Debugging: Print the columns to check their names 39 | print("Columns found in the Excel file:", sheet_data.columns) 40 | 41 | # Function to generate SQL inserts for all regions, grouped by RICE and CORN 42 | 43 | 44 | def generate_sql_inserts(sheet_data): 45 | # Iterate over the columns two by two (RICE, CORN) 46 | for col in range(0, sheet_data.shape[1], 2): 47 | region = sheet_data.columns[col] 48 | 49 | # Handle cases where column name is "Unnamed" and match the correct region name 50 | if "Unnamed" in region: 51 | continue 52 | 53 | # Skip regions not mapped 54 | if region not in region_id_map: 55 | print(f"Skipping region {region} (not in the region_id_map).") 56 | continue 57 | 58 | region_uuid = region_id_map[region] 59 | 60 | # RICE column, keep the text exactly as is, skip header row 61 | rice_col = sheet_data[region].dropna()[1:] # Skip header row 62 | corn_col = sheet_data[sheet_data.columns[col + 1] 63 | ].dropna()[1:] # Skip header row for CORN 64 | 65 | # Debugging: Check if there are seeds in the RICE and CORN columns 66 | print(f"Generating SQL for region: {region} (UUID: {region_uuid})") 67 | print(f" RICE seeds count: {len(rice_col)}") 68 | print(f" CORN seeds count: {len(corn_col)}") 69 | 70 | # SQL file path for the current region (filename will be region_seeds_inserts.sql) 71 | sql_file_path = os.path.join( 72 | output_directory, f'{region}_seeds_inserts.sql') 73 | 74 | # Open the SQL file for writing 75 | with open(sql_file_path, 'w') as f: 76 | f.write(f"-- SQL for {region}\n") 77 | 78 | # Write SQL for Rice seeds (lowercase "rice") 79 | f.write(f"-- rice seeds\n") 80 | for seed in rice_col: 81 | f.write(f"INSERT INTO seeds (seed, seed_type, region_id) VALUES ('{ 82 | seed}', 'rice', '{region_uuid}');\n") 83 | 84 | # Write SQL for Corn seeds (lowercase "corn") 85 | f.write(f"-- corn seeds\n") 86 | for seed in corn_col: 87 | f.write(f"INSERT INTO seeds (seed, seed_type, region_id) VALUES ('{ 88 | seed}', 'corn', '{region_uuid}');\n") 89 | 90 | print(f"SQL insert statements have been generated and saved to { 91 | sql_file_path}") 92 | 93 | 94 | # Generate SQL inserts for all regions 95 | generate_sql_inserts(sheet_data) 96 | 97 | print("SQL insert statements for all regions have been generated.") 98 | -------------------------------------------------------------------------------- /sql_generator_from_excel/sql_inserts_by_region/RO10_seeds_inserts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/Random-Projects/f384bbc9519aa3a7bdfb272ea7db1819f8beded8/sql_generator_from_excel/sql_inserts_by_region/RO10_seeds_inserts.sql -------------------------------------------------------------------------------- /sql_generator_from_excel/sql_inserts_by_region/RO11_seeds_inserts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/Random-Projects/f384bbc9519aa3a7bdfb272ea7db1819f8beded8/sql_generator_from_excel/sql_inserts_by_region/RO11_seeds_inserts.sql -------------------------------------------------------------------------------- /sql_generator_from_excel/sql_inserts_by_region/RO12_seeds_inserts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/Random-Projects/f384bbc9519aa3a7bdfb272ea7db1819f8beded8/sql_generator_from_excel/sql_inserts_by_region/RO12_seeds_inserts.sql -------------------------------------------------------------------------------- /sql_generator_from_excel/sql_inserts_by_region/RO13_seeds_inserts.sql: -------------------------------------------------------------------------------- 1 | -- SQL for RO13 2 | -- rice seeds 3 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC150(TUBIGAN 9)TPR', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 4 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC152 (TUBIGAN 10) DWSR', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 5 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC134 (TUBIGAN 4) DWSR', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 6 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC144 (TUBIGAN 8) DWSR', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 7 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC196H (MESTISO 16)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 8 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC 2010 RC226 (TUBIGAN20) DWSR', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 9 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC130 (TUBIGAN 3) DWSR', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 10 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC140 (TUBIGAN 6) DWSR', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 11 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC146 (PJ7) DWSR', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 12 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC156 (TUBIGAN 12) DWSR', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 13 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC178H (MESTISO 14)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 14 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC216 (TUBIGAN 17) DWSR', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 15 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC4 (MOLAWIN)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 16 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC142 (TUBIGAN 7) DWSR', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 17 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC198H (MESTISO 17)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 18 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC114H (MESTISO 2)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 19 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC116H (MESTISO 3)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 20 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC138 (TUBIGAN 5) DWSR', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 21 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC164H (MESTISO 9)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 22 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC192 (SAHOD ULAN 1)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 23 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC224 (TUBIGAN 18) DWSR', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 24 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC10 (PAGSANJAN)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 25 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC76 (PANAY)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 26 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC118 (MATATAG 3) TPR', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 27 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC134 (TUBIGAN 4) TPR', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 28 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC136H (MESTISO 7)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 29 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC144 (TUBIGAN 8) TPR', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 30 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC160 (TUBIGAN 14) DWSR', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 31 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC206H (MESTISO 21)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 32 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC 2010 RC228H (MESTISO 24)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 33 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC 2010 RC230H (MESTISO 25)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 34 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC130 (TUBIGAN 3) TPR', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 35 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC8 (TALAVERA)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 36 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC120 (MATATAG 6) TPR', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 37 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC150 (TUBIGAN 9) TPR', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 38 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC152 (TUBIGAN 10) TPR', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 39 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC220 SR (JAPONICA 1)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 40 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC12 (CALIRAYA)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 41 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC 2010 RC232H (MESTISO 26)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 42 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC126H (MESTISO 5)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 43 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC140 (TUBIGAN 6) TPR', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 44 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC146 (PJ7) TPR', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 45 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC154 (TUBIGAN 11)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 46 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC166H (MESTISO 10)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 47 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC180H (MESTISO 15)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 48 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC202H (MESTISO 19)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 49 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC214 (TUBIGAN 16) DWSR', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 50 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC14 (RIO GRANDE)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 51 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC26H (MAGAT)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 52 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC82 (PEÑARANDA)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 53 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC 2010 RC224 (TUBIGAN19)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 54 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC112 (TUBIGAN 2)  ', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 55 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC138 (TUBIGAN 5) TPR', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 56 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC148 (MABANGO 2)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 57 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC156 (TUBIGAN 12) TPR', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 58 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC162H (MESTISO 8)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 59 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC200H (MESTISO 18)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 60 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC204H (MESTISO 20)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 61 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC212 (TUBIGAN 15) DWSR', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 62 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC20 (CHICO)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 63 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC28 (AGNO)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 64 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC78 (PAMPANGA)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 65 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC84 (SIPOCOT)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 66 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC 2010 RC226 (TUBIGAN20) TPR', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 67 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC142 (TUBIGAN 7) TPR', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 68 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC170 (MS 11)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 69 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC172 (MS 13)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 70 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC174H (MESTISO 12)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 71 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC194 (SUBMARINO 1) NORMAL', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 72 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC216 (TUBIGAN 17) TPR', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 73 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC32 (JARO)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 74 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC6 (CARRANGLAN)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 75 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC80 (PASIG)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 76 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC110 (TUBIGAN 1)  ', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 77 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC132H (MESTISO 6)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 78 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC158 (TUBIGAN 13)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 79 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC168H (MESTISO 11)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 80 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC176H (MESTISO 13)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 81 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC182 (SALINAS 1)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 82 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC210H (MESTISO 23)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 83 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC54 (ABRA)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 84 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC60 (TUGATOG)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 85 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC86 (MATNOG)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 86 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC 2010 RC236H (MESTISO 28)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 87 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC188 (SALINAS 4)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 88 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC222 (TUBIGAN 18) TPR', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 89 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC42 (BALIWAG)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 90 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC56 (DAPITAN)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 91 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC70 (BAMBAN)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 92 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC74 (AKLAN)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 93 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('IR65', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 94 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('IR73885-1-4-3-2-1-6 (MATATAG9)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 95 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC 2010 RC234H (MESTISO 27)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 96 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC186 (SALINAS 3)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 97 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC208H (MESTISO 22)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 98 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC212 (TUBIGAN 15) TPR', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 99 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC52 (GANDARA)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 100 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('IR69726-29-1-2-2-2 (MATATAG2)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 101 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC214 (TUBIGAN 16) TPR', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 102 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC68 (SACOBIA)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 103 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC88 (NAGA)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 104 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC98 (LIAN)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 105 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC106 (SUMILAO)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 106 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC17 (MALAGKIT 3)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 107 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC102 (MAMBURAO)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 108 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC24 (CAGAYAN)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 109 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC62 (NAGUILIAN)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 110 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC124H (MESTISO 4)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 111 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC128 (MABANGO 1) (A)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 112 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC100 (SANTIAGO)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 113 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC30 (AGUS)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 114 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC50 (BICOL)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 115 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC9 (APO)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 116 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('BPI Ri1', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 117 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('IR60', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 118 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('IR64', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 119 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('IR66', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 120 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC118 (MATATAG 3) DWSR', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 121 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC120 (MATATAG 6) DWSR', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 122 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC13 (MALAGKIT 1)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 123 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC15 (MALAGKIT 2) WS', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 124 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC184 (SALINAS 2)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 125 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC190 (SALINAS 5)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 126 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('(SUBMARINO 1) SUBMERGED', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 127 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC218 SR (MABANGO 3)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 128 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC122 (ANGELICA)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 129 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC15 (MALAGKIT 2) DS', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 130 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC1 (MAKILING)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 131 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC7 (BANAHAW)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 132 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC160 (TUBIGAN 14) TPR', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 133 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC5 (ARAYAT)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 134 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC18 (ALA)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 135 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC2 (NAHALIN)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 136 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC3 (GINILINGAN PUTI)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 137 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC66 (AGUSAN)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 138 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC72 (MESTISO 1)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 139 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC34 (BURDAGOL)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 140 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC58 (MAYAPA)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 141 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC64 (KABACAN)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 142 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC90 (BUGUEY)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 143 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC11 (CANLAON)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 144 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC19 (MALAGKIT 4)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 145 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC194', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 146 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC16 (ENNANO)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 147 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC48 (HAGONOY)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 148 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC36 (MA-AYON)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 149 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC38 (RINARA)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 150 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('RC NSIC RC156 (TUBIGAN 12) DWSR', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 151 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC22 (LILIW)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 152 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC40 (CHAYONG)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 153 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('UPL Ri1', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 154 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC92 (SAGADA)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 155 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC94 (HUNGDUAN)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 156 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC46 (SUMADEL)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 157 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC96 (IBULAO)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 158 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC44 (GOHANG)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 159 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC104 (BALILI)', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 160 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('RICE100DAYS', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 161 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('RICE110DAYS', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 162 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('RICE120DAYS', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 163 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('RICE130DAYS', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 164 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('RICE135DAYS', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 165 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('RICE135DAYS', 'rice', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 166 | 167 | -- corn seeds 168 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-5 /P-3278 (Y8 G-61)', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 169 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-4 /SX 767 (CPX 312) hybrid', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 170 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-7 /CPX 912 (CPX 912) hybrid', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 171 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-9 /P-3234 (Y8 G-66) hybrid', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 172 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-2 /P-3262', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 173 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('IPB Var 1E      - PSB Cn 90-1 IPB Var 5', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 174 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-3 /VM-2 (VISCA 8550)', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 175 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-6 /SMC E-25 (SMC E-25) hybrid', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 176 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-8 /US Var 6 (USMARC 2088)', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 177 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('Cargill 747', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 178 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-1 /IPB Var 5 (IES Var 1E)', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 179 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('Y8 G-61              - PSBCn 90-5 P 3278', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 180 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('VISCA 8550    - PSB Cn 90-2 IPB VM 2', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 181 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('CPX-811             - PSBCn 90-4 SX 767', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 182 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('Y8 G-66              - PSBCn 90-9 P-3234', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 183 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('CPX 912     - PSB Cn 90-7 CPX 912 CX 777', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 184 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('Y9-69 (P78930)   - PSBCn 90-2 P-3262', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 185 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SMC E-25           - PSBCn 90-6 SMC E-25', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 186 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('USMARC 2088    - PSB Cn90-8 USM Var 6', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 187 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('IES Glut. #1 IES Cn1  - PSB Cn12', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 188 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-12 (IES Glut#1 IES Cn1)', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 189 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-13 (IPB Macapuno)', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 190 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn 94-52 (IPAS054)', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 191 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('7PASO54 PSB CN-52', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 192 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('8PASO23 PSB CN-53', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 193 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('Hybrid', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 194 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('Yellow', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 195 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('Phil DMR Comp 1', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 196 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('"IES Cn2 ""Isabela White Corn 2"" (IES Var2)"', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 197 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-16 (CPX 1014) hybrid', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 198 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('IES Var 8   - IES Cn2 (Isabela White Corn2)', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 199 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-18 (YOF 62) pioneer/hybrid', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 200 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-20 (USMARC 1888)', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 201 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-21 (USMARC 1888)', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 202 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-11 (CPX 921) hybrid', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 203 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-15 (CPX 1012) hybrid', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 204 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-19 (USMARC 1887)', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 205 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-10 (AP 4)', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 206 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-14 (CPX 1011) hybrid', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 207 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('Cornworld 18', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 208 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('Cargill 711', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 209 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn 95-61 (IES Cn4)', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 210 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn 95-62 (IPB (911)', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 211 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn 95-63 (IPB 9204)', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 212 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn 95-64 (BS 9754)', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 213 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn 95-65 (FE 827)', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 214 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn 95-66 (FE 820)', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 215 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-32 (IES Cn3)', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 216 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-17 (7PG238 P 3014) pioneer/hybrid', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 217 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SC 111                     - PSB Cn-48', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 218 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-42 (CPX3122)', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 219 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-45 (CTH501)', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 220 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-49 (DLU Pearl Sweet)', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 221 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-28 (IES Cn6)', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 222 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn 94-55 (C-520A or CPX 520X)', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 223 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-48 (SC111)', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 224 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('CPX 1014 (CPX 3905)  - PSB Cn-16', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 225 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('IPB Var 7 (Dafrosa)     - PSB Cn-35', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 226 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-26 (IES E02)', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 227 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-35 (YOF-61)', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 228 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('(YOP 62) P3026 PSB CN-18', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 229 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('USMARC 1887     - PSB Cn20', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 230 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('USMARC 1388   - PSB Cn21', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 231 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('AP-4                   - PSB Cn 10 IPB Var 4', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 232 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('IES Cn 3             - PSB Cn-32', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 233 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('CPX 3122           - PSB Cn-42', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 234 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('CPX 921             - PSB Cn-11  ', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 235 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PX 1012           - PSB Cn-15', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 236 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('CPX 1011           - PSB Cn-14', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 237 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-43 (MX8190)', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 238 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-29 (CMU Var2)', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 239 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-41 (MX8336)', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 240 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SMC 323 (SMC-E19) hybrid', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 241 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SMC Hi-yield 305', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 242 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('Phil DMR Comp 2', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 243 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('MIT2', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 244 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SMC Hi-yield 305 (SMC 305) hybrid', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 245 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('USMARC1887             - PSB Cn-19', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 246 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('(7PG6238) P 3014 PSB CN-17', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 247 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('IES (Cn 4) (OPV White)  - Cn 95-61', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 248 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('IES EO2                       - PSB Cn-26', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 249 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('CPX 612             - CSX-767', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 250 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('P 3246 (YIG68)(7PG137) - PSB Cn-33', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 251 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('Pioneer XCG33', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 252 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-39 (XCW11)', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 253 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-33 (Pioneer 3246)', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 254 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('XCG-33 (P8120736) hybrid', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 255 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SMC Hi-yield 102', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 256 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SMC Hi-yield 152', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 257 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SMC Hi-yield 301', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 258 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SMC Hi-yield 301 (SMC 301) hybrid', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 259 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-22 (YIF 623) hybrid', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 260 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SMC 321 (SMC-E17) hybrid', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 261 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SMC Hi-yield 152 (SMC 152) hybrid', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 262 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('CPX 1113                    - PSB Cn-23', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 263 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-23 (CPX 1113)', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 264 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-25 (YOF-61)', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 265 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-40 (XCW15)', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 266 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn 94-57 (CPX 3205)', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 267 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn 94-60 (P-3008 /X1420V /Y1402W 11PG0127', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 268 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('CSX-767 (CPX 621) hybrid', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 269 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('CTH 501                      - PSB Cn-45', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 270 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('IES Cn 6                  - PSB Cn-28', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 271 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('CPX 3205                     - PSB Cn-57', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 272 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('P-8120763          - XCG-33', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 273 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('XCW 11                      - PSB Cn-39', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 274 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('FE 817                         - Cn 95-65', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 275 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('USM Var 5              - PSB Cn-31', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 276 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('X13526(Y35261)(11PGO133) - PSB Cn-44 P3016', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 277 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-37 (IPB 921)', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 278 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-44 (X13526))', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 279 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-34 (X14020)', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 280 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('IES Var 2         - IES Cn1 (Isabela Yellow)', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 281 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-47 (CW 18)', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 282 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('"IES Cn1 ""Isabela Yellow"" (IES Var2)"', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 283 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-38 (IPB 929)', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 284 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-27 (USM Var 10)', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 285 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('IPB Var 2', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 286 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('UPL Cn-2 Tanco white (IPB Var 2)', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 287 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn 94-54 (FE815)', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 288 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-31 (USM var5)', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 289 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('P-3008(C1402V/Y1402V/11PG0127) - PSB Cn-60', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 290 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('FE 820                         - Cn 95-66', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 291 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('MX 8190                      - PSB Cn-43', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 292 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('CMU Var 2             - PSB', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 293 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SMC 301      - SMC HI-YIELD 305', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 294 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('X1402U (Y1402U)(10PG010) - PSB Cn-34', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 295 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('IPB-921                       - PSB Cn-37', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 296 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SMC 153            - SMC HI-YIELD 153', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 297 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('USMARC Var 9        - PSB Cn-51', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 298 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SMC Hi-yield 153 (SMC 153) hybrid', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 299 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('Cargill SX 747 (C 6385) hybrid', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 300 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('Cargill CS 711 (CE-1) hybrid', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 301 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-30 (USM Var3)', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 302 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('P3228 (2H 113) hybrid', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 303 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn 94-51 (USM Var 7 SMARC 1191)', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 304 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SMC-E19            - SMC-323', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 305 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('MX 8336                     - PSB Cn-41', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 306 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('BS 9754                       - Cn 95-64', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 307 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('C-520A (CPX520A)      - PSB Cn-55', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 308 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('CW                              -PSB Cn-47', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 309 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('IPB 911                     - Cn 95-62', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 310 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('CW                              -PSB Cn-46', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 311 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-46 (CW 16)', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 312 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SMC Hi-yield 201(SMC 201) hybrid', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 313 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('Hycorn 9', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 314 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('Pioneer 6181', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 315 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SMC 305            - SMC HI-YIELD 305', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 316 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SMC 152            - SMC HI-YIELD 152', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 317 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SMC 201            - SMC HI-YIELD 201', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 318 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SMC-E17            - SMC-321', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 319 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('YIF 62 P-3022 W         - PSB Cn-20', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 320 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('IPB-929                       - PSB Cn-38', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 321 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('IPB 9204                   - Cn 95-63', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 322 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('CE-1                  - Cargill-CS 711', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 323 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('C 6385               - Cargill-SX 747', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 324 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SMC-E9              - SMC-319', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 325 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SMC Hi-yield 103', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 326 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('CX 757 (CPX 613) hybrid', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 327 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('Phil DMR 2', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 328 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('Phil DNR 2', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 329 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn 94-59 (CPX 3007)', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 330 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SMC 319 (SMC-E9) hybrid', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 331 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('AH 193 or FE 815         - PSB Cn-54', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 332 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('CPX 3007                     - PSB Cn-59', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 333 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-36 (IPB 919)', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 334 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('P3274 (2H 106) hybrid pioneer', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 335 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('Cargill 200', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 336 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('USM Var 10             - PSB', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 337 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('2H 13 P-3228', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 338 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('P3208 (3H 208) hybrid pioneer', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 339 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SMC 308 (S-E2) hybrid', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 340 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('Cargill 100', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 341 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('P3224 (3H 201) hybrid', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 342 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn 94-56 (C-900M or C 900)', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 343 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn 94-50 (BPI LG COMP 1 or LG COMP 1-91)', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 344 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('CPX 621             - CSX-767', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 345 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('C-900M                        - PSB Cn-56', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 346 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('BP LG Comp 1 (LG Comp 1-91)       - PSB Cn-50', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 347 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SMC Hi-yield 309', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 348 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SMC Hi-yield 309 (SMC 309) hybrid', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 349 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SMC 317 (S-E3) hybrid', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 350 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('(YOF-61) P 3400 PSB CN-25', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 351 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('IPB-919                       - PSB Cn-36', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 352 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SMARC 1283   - SMARC 1283', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 353 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SMC 308 (SMARC 1283)', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 354 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-24 (IPBXH913)', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 355 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn 94-58 (PAC 1358 or ICI 1358)', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 356 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('S E2                    - SMC 308', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 357 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PAC 1358                     - PSB Cn-58', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 358 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SMC 309            - SMC HI-YIELD 309', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 359 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('IBB', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 360 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('UPCA Var 1', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 361 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('UPCA Var 2', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 362 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('BPI Var 1', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 363 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('IPB Var 1', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 364 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('IPB Var 1 913', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 365 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('2H 106 P-3274', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 366 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('IPB Var2      - UPLB Cn-2 Tanco White', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 367 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('3H 201 P-3224', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 368 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('S-E3                   - SMC 317', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 369 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('IPBXH 913                  - PBS Cn-24', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 370 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('3H 208 P-3208', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 371 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('XCW 15  - PSB Cn-40', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 372 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('USMARC 104          - PSB Cn-01', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 373 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-01 (USMARC 104)', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 374 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('Cornworld (CW1)/ Cargill 909', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 375 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('Cornworld (CW)/ Cargill 818', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 376 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('Cornworld (CW) 58', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 377 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('Hybrid 3013', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 378 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('Hybrid 3014', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 379 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('Hybrid 3065', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 380 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('Pioneer 3161', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 381 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('CORN 110 DAYS', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 382 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('CORN 100 DAYS', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); 383 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('CORN 120 DAYS', 'corn', '61e760ce-3efe-4725-8cb3-87660cafd95d'); -------------------------------------------------------------------------------- /sql_generator_from_excel/sql_inserts_by_region/RO1_seeds_inserts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/Random-Projects/f384bbc9519aa3a7bdfb272ea7db1819f8beded8/sql_generator_from_excel/sql_inserts_by_region/RO1_seeds_inserts.sql -------------------------------------------------------------------------------- /sql_generator_from_excel/sql_inserts_by_region/RO2_seeds_inserts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/Random-Projects/f384bbc9519aa3a7bdfb272ea7db1819f8beded8/sql_generator_from_excel/sql_inserts_by_region/RO2_seeds_inserts.sql -------------------------------------------------------------------------------- /sql_generator_from_excel/sql_inserts_by_region/RO3_seeds_inserts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/Random-Projects/f384bbc9519aa3a7bdfb272ea7db1819f8beded8/sql_generator_from_excel/sql_inserts_by_region/RO3_seeds_inserts.sql -------------------------------------------------------------------------------- /sql_generator_from_excel/sql_inserts_by_region/RO4B_seeds_inserts.sql: -------------------------------------------------------------------------------- 1 | -- SQL for RO4 2 | -- rice seeds 3 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC150(TUBIGAN 9)TPR', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 4 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC152 (TUBIGAN 10) DWSR', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 5 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC134 (TUBIGAN 4) DWSR', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 6 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC144 (TUBIGAN 8) DWSR', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 7 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC196H (MESTISO 16)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 8 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC 2010 RC226 (TUBIGAN20) DWSR', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 9 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC130 (TUBIGAN 3) DWSR', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 10 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC140 (TUBIGAN 6) DWSR', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 11 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC146 (PJ7) DWSR', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 12 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC156 (TUBIGAN 12) DWSR', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 13 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC178H (MESTISO 14)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 14 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC216 (TUBIGAN 17) DWSR', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 15 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC4 (MOLAWIN)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 16 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC142 (TUBIGAN 7) DWSR', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 17 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC198H (MESTISO 17)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 18 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC114H (MESTISO 2)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 19 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC116H (MESTISO 3)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 20 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC138 (TUBIGAN 5) DWSR', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 21 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC164H (MESTISO 9)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 22 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC192 (SAHOD ULAN 1)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 23 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC224 (TUBIGAN 18) DWSR', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 24 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC10 (PAGSANJAN)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 25 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC76 (PANAY)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 26 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC118 (MATATAG 3) TPR', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 27 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC134 (TUBIGAN 4) TPR', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 28 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC136H (MESTISO 7)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 29 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC144 (TUBIGAN 8) TPR', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 30 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC160 (TUBIGAN 14) DWSR', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 31 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC206H (MESTISO 21)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 32 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC 2010 RC228H (MESTISO 24)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 33 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC 2010 RC230H (MESTISO 25)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 34 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC130 (TUBIGAN 3) TPR', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 35 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC8 (TALAVERA)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 36 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC120 (MATATAG 6) TPR', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 37 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC150 (TUBIGAN 9) TPR', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 38 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC152 (TUBIGAN 10) TPR', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 39 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC220 SR (JAPONICA 1)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 40 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC12 (CALIRAYA)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 41 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC 2010 RC232H (MESTISO 26)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 42 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC126H (MESTISO 5)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 43 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC140 (TUBIGAN 6) TPR', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 44 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC146 (PJ7) TPR', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 45 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC154 (TUBIGAN 11)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 46 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC166H (MESTISO 10)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 47 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC180H (MESTISO 15)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 48 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC202H (MESTISO 19)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 49 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC214 (TUBIGAN 16) DWSR', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 50 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC14 (RIO GRANDE)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 51 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC26H (MAGAT)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 52 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC82 (PEÑARANDA)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 53 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC 2010 RC224 (TUBIGAN19)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 54 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC112 (TUBIGAN 2)  ', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 55 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC138 (TUBIGAN 5) TPR', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 56 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC148 (MABANGO 2)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 57 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC156 (TUBIGAN 12) TPR', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 58 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC162H (MESTISO 8)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 59 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC200H (MESTISO 18)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 60 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC204H (MESTISO 20)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 61 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC212 (TUBIGAN 15) DWSR', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 62 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC20 (CHICO)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 63 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC28 (AGNO)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 64 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC78 (PAMPANGA)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 65 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC84 (SIPOCOT)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 66 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC 2010 RC226 (TUBIGAN20) TPR', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 67 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC142 (TUBIGAN 7) TPR', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 68 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC170 (MS 11)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 69 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC172 (MS 13)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 70 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC174H (MESTISO 12)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 71 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC194 (SUBMARINO 1) NORMAL', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 72 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC216 (TUBIGAN 17) TPR', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 73 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC32 (JARO)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 74 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC6 (CARRANGLAN)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 75 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC80 (PASIG)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 76 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC110 (TUBIGAN 1)  ', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 77 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC132H (MESTISO 6)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 78 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC158 (TUBIGAN 13)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 79 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC168H (MESTISO 11)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 80 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC176H (MESTISO 13)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 81 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC182 (SALINAS 1)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 82 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC210H (MESTISO 23)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 83 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC54 (ABRA)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 84 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC60 (TUGATOG)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 85 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC86 (MATNOG)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 86 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC 2010 RC236H (MESTISO 28)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 87 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC188 (SALINAS 4)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 88 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC222 (TUBIGAN 18) TPR', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 89 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC42 (BALIWAG)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 90 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC56 (DAPITAN)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 91 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC70 (BAMBAN)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 92 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC74 (AKLAN)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 93 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('IR65', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 94 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('IR73885-1-4-3-2-1-6 (MATATAG9)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 95 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC 2010 RC234H (MESTISO 27)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 96 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC186 (SALINAS 3)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 97 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC208H (MESTISO 22)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 98 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC212 (TUBIGAN 15) TPR', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 99 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC52 (GANDARA)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 100 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('IR69726-29-1-2-2-2 (MATATAG2)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 101 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC214 (TUBIGAN 16) TPR', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 102 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC68 (SACOBIA)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 103 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC88 (NAGA)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 104 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC98 (LIAN)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 105 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC106 (SUMILAO)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 106 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC17 (MALAGKIT 3)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 107 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC102 (MAMBURAO)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 108 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC24 (CAGAYAN)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 109 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC62 (NAGUILIAN)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 110 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC124H (MESTISO 4)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 111 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC128 (MABANGO 1) (A)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 112 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC100 (SANTIAGO)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 113 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC30 (AGUS)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 114 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC50 (BICOL)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 115 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC9 (APO)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 116 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('BPI Ri1', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 117 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('IR60', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 118 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('IR64', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 119 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('IR66', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 120 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC118 (MATATAG 3) DWSR', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 121 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC120 (MATATAG 6) DWSR', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 122 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC13 (MALAGKIT 1)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 123 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC15 (MALAGKIT 2) WS', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 124 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC184 (SALINAS 2)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 125 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC190 (SALINAS 5)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 126 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('(SUBMARINO 1) SUBMERGED', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 127 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC218 SR (MABANGO 3)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 128 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC122 (ANGELICA)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 129 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC15 (MALAGKIT 2) DS', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 130 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC1 (MAKILING)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 131 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC7 (BANAHAW)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 132 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC160 (TUBIGAN 14) TPR', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 133 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC5 (ARAYAT)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 134 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC18 (ALA)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 135 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC2 (NAHALIN)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 136 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC3 (GINILINGAN PUTI)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 137 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC66 (AGUSAN)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 138 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC72 (MESTISO 1)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 139 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC34 (BURDAGOL)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 140 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC58 (MAYAPA)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 141 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC64 (KABACAN)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 142 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC90 (BUGUEY)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 143 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC11 (CANLAON)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 144 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC19 (MALAGKIT 4)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 145 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC194', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 146 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC16 (ENNANO)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 147 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC48 (HAGONOY)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 148 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC36 (MA-AYON)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 149 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC38 (RINARA)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 150 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('RC NSIC RC156 (TUBIGAN 12) DWSR', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 151 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC22 (LILIW)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 152 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC40 (CHAYONG)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 153 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('UPL Ri1', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 154 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC92 (SAGADA)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 155 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC94 (HUNGDUAN)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 156 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC46 (SUMADEL)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 157 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC96 (IBULAO)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 158 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB RC44 (GOHANG)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 159 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NSIC RC104 (BALILI)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 160 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('RICE100DAYS', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 161 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('RICE110DAYS', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 162 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('RICE120DAYS', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 163 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('RICE130DAYS', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 164 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SL-8H', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 165 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('RICE135DAYS', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 166 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('RICE135DAYS', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 167 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('IR-42', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 168 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('BIGANTE PLUS', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 169 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('AZ 7888', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 170 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('DIAMOND X', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 171 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('RC402', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 172 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('RC480', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 173 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('RC480 (DROUGHT/SALINE)', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 174 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('RC300 TPR', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 175 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('RC300 DWSR', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 176 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('LONGPING', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 177 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('KINADOY', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 178 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('HABILIS', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 179 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('BINADONG', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 180 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PINILI', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 181 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('MELLENIEL', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 182 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('BLANDE', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 183 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('TH-82', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 184 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SYNGENTA', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 185 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PHB-73', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 186 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('LONGPING 2096', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 187 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('LONGPING 534', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 188 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('VIETNAM RICE', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 189 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('RC-841', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 190 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SYNGENTA NK-5017', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 191 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SL-19', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 192 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SL-20', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 193 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('RC-27', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 194 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('RED RICE', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 195 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('JASMINE', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 196 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('QUADRO ALAS', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 197 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('MINDORO', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 198 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('RC440', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 199 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('888', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 200 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('BINATO', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 201 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SAN FRANCISCO', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 202 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('RESCO', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 203 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('CAMUROS', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 204 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('CAPINO', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 205 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('KINALABAW', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 206 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PINONGO', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 207 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SL7', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 208 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SL9', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 209 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PIONEER 77', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 210 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PIONEER 79', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 211 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NK6009', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 212 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SL12', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 213 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('MESTIZO', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 214 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('MATATAG', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 215 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('GENETICS', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 216 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('OFF SPRING', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 217 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('BIOSEED', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 218 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NK5017', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 219 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('S6003', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 220 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('RC 356', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 221 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SANDAKOT', 'rice', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 222 | -- corn seeds 223 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-5 /P-3278 (Y8 G-61)', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 224 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-4 /SX 767 (CPX 312) hybrid', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 225 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-7 /CPX 912 (CPX 912) hybrid', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 226 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-9 /P-3234 (Y8 G-66) hybrid', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 227 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-2 /P-3262', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 228 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('IPB Var 1E      - PSB Cn 90-1 IPB Var 5', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 229 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-3 /VM-2 (VISCA 8550)', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 230 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-6 /SMC E-25 (SMC E-25) hybrid', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 231 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-8 /US Var 6 (USMARC 2088)', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 232 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('Cargill 747', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 233 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-1 /IPB Var 5 (IES Var 1E)', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 234 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('Y8 G-61              - PSBCn 90-5 P 3278', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 235 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('VISCA 8550    - PSB Cn 90-2 IPB VM 2', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 236 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('CPX-811             - PSBCn 90-4 SX 767', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 237 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('Y8 G-66              - PSBCn 90-9 P-3234', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 238 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('CPX 912     - PSB Cn 90-7 CPX 912 CX 777', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 239 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('Y9-69 (P78930)   - PSBCn 90-2 P-3262', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 240 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SMC E-25           - PSBCn 90-6 SMC E-25', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 241 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('USMARC 2088    - PSB Cn90-8 USM Var 6', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 242 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('IES Glut. #1 IES Cn1  - PSB Cn12', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 243 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-12 (IES Glut#1 IES Cn1)', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 244 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-13 (IPB Macapuno)', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 245 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn 94-52 (IPAS054)', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 246 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('7PASO54 PSB CN-52', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 247 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('8PASO23 PSB CN-53', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 248 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('Hybrid', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 249 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('Yellow', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 250 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('Phil DMR Comp 1', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 251 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('"IES Cn2 ""Isabela White Corn 2"" (IES Var2)"', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 252 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-16 (CPX 1014) hybrid', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 253 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('IES Var 8   - IES Cn2 (Isabela White Corn2)', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 254 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-18 (YOF 62) pioneer/hybrid', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 255 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-20 (USMARC 1888)', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 256 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-21 (USMARC 1888)', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 257 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-11 (CPX 921) hybrid', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 258 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-15 (CPX 1012) hybrid', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 259 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-19 (USMARC 1887)', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 260 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-10 (AP 4)', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 261 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-14 (CPX 1011) hybrid', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 262 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('Cornworld 18', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 263 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('Cargill 711', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 264 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn 95-61 (IES Cn4)', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 265 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn 95-62 (IPB (911)', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 266 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn 95-63 (IPB 9204)', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 267 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn 95-64 (BS 9754)', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 268 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn 95-65 (FE 827)', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 269 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn 95-66 (FE 820)', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 270 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-32 (IES Cn3)', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 271 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-17 (7PG238 P 3014) pioneer/hybrid', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 272 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SC 111                     - PSB Cn-48', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 273 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-42 (CPX3122)', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 274 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-45 (CTH501)', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 275 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-49 (DLU Pearl Sweet)', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 276 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-28 (IES Cn6)', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 277 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn 94-55 (C-520A or CPX 520X)', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 278 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-48 (SC111)', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 279 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('CPX 1014 (CPX 3905)  - PSB Cn-16', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 280 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('IPB Var 7 (Dafrosa)     - PSB Cn-35', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 281 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-26 (IES E02)', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 282 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-35 (YOF-61)', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 283 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('(YOP 62) P3026 PSB CN-18', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 284 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('USMARC 1887     - PSB Cn20', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 285 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('USMARC 1388   - PSB Cn21', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 286 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('AP-4                   - PSB Cn 10 IPB Var 4', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 287 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('IES Cn 3             - PSB Cn-32', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 288 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('CPX 3122           - PSB Cn-42', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 289 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('CPX 921             - PSB Cn-11  ', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 290 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('CPX 1012           - PSB Cn-15', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 291 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('CPX 1011           - PSB Cn-14', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 292 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-43 (MX8190)', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 293 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-29 (CMU Var2)', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 294 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-41 (MX8336)', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 295 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SMC 323 (SMC-E19) hybrid', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 296 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SMC Hi-yield 305', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 297 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('Phil DMR Comp 2', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 298 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('MIT2', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 299 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SMC Hi-yield 305 (SMC 305) hybrid', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 300 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('USMARC1887             - PSB Cn-19', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 301 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('(7PG6238) P 3014 PSB CN-17', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 302 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('IES (Cn 4) (OPV White)  - Cn 95-61', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 303 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('IES EO2                       - PSB Cn-26', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 304 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('CPX 612             - CSX-767', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 305 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('P 3246 (YIG68)(7PG137) - PSB Cn-33', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 306 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('Pioneer XCG33', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 307 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-39 (XCW11)', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 308 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-33 (Pioneer 3246)', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 309 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('XCG-33 (P8120736) hybrid', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 310 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SMC Hi-yield 102', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 311 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SMC Hi-yield 152', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 312 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SMC Hi-yield 301', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 313 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SMC Hi-yield 301 (SMC 301) hybrid', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 314 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-22 (YIF 623) hybrid', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 315 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SMC 321 (SMC-E17) hybrid', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 316 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SMC Hi-yield 152 (SMC 152) hybrid', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 317 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('CPX 1113                    - PSB Cn-23', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 318 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-23 (CPX 1113)', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 319 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-25 (YOF-61)', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 320 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-40 (XCW15)', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 321 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn 94-57 (CPX 3205)', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 322 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn 94-60 (P-3008 /X1420V /Y1402W 11PG0127', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 323 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('CSX-767 (CPX 621) hybrid', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 324 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('CTH 501                      - PSB Cn-45', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 325 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('IES Cn 6                  - PSB Cn-28', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 326 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('CPX 3205                     - PSB Cn-57', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 327 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('P-8120763          - XCG-33', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 328 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('XCW 11                      - PSB Cn-39', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 329 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('FE 817                         - Cn 95-65', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 330 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('USM Var 5              - PSB Cn-31', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 331 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('X13526(Y35261)(11PGO133) - PSB Cn-44 P3016', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 332 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-37 (IPB 921)', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 333 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-44 (X13526))', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 334 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-34 (X14020)', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 335 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('IES Var 2         - IES Cn1 (Isabela Yellow)', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 336 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-47 (CW 18)', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 337 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('"IES Cn1 ""Isabela Yellow"" (IES Var2)"', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 338 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-38 (IPB 929)', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 339 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-27 (USM Var 10)', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 340 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('IPB Var 2', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 341 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('UPL Cn-2 Tanco white (IPB Var 2)', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 342 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn 94-54 (FE815)', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 343 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-31 (USM var5)', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 344 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('P-3008(C1402V/Y1402V/11PG0127) - PSB Cn-60', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 345 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('FE 820                         - Cn 95-66', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 346 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('MX 8190                      - PSB Cn-43', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 347 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('CMU Var 2             - PSB', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 348 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SMC 301      - SMC HI-YIELD 305', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 349 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('X1402U (Y1402U)(10PG010) - PSB Cn-34', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 350 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('IPB-921                       - PSB Cn-37', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 351 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SMC 153            - SMC HI-YIELD 153', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 352 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('USMARC Var 9        - PSB Cn-51', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 353 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SMC Hi-yield 153 (SMC 153) hybrid', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 354 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('Cargill SX 747 (C 6385) hybrid', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 355 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('Cargill CS 711 (CE-1) hybrid', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 356 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-30 (USM Var3)', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 357 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('P3228 (2H 113) hybrid', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 358 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn 94-51 (USM Var 7 SMARC 1191)', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 359 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SMC-E19            - SMC-323', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 360 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('MX 8336                     - PSB Cn-41', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 361 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('BS 9754                       - Cn 95-64', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 362 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('C-520A (CPX520A)      - PSB Cn-55', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 363 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('CW                              -PSB Cn-47', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 364 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('IPB 911                     - Cn 95-62', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 365 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('CW                              -PSB Cn-46', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 366 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-46 (CW 16)', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 367 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SMC Hi-yield 201(SMC 201) hybrid', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 368 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('Hycorn 9', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 369 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('Pioneer 6181', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 370 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SMC 305            - SMC HI-YIELD 305', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 371 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SMC 152            - SMC HI-YIELD 152', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 372 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SMC 201            - SMC HI-YIELD 201', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 373 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SMC-E17            - SMC-321', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 374 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('YIF 62 P-3022 W         - PSB Cn-20', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 375 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('IPB-929                       - PSB Cn-38', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 376 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('IPB 9204                   - Cn 95-63', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 377 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('CE-1                  - Cargill-CS 711', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 378 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('C 6385               - Cargill-SX 747', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 379 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SMC-E9              - SMC-319', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 380 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SMC Hi-yield 103', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 381 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('CX 757 (CPX 613) hybrid', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 382 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('Phil DMR 2', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 383 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('Phil DNR 2', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 384 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn 94-59 (CPX 3007)', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 385 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SMC 319 (SMC-E9) hybrid', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 386 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('AH 193 or FE 815         - PSB Cn-54', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 387 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('CPX 3007                     - PSB Cn-59', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 388 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-36 (IPB 919)', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 389 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('P3274 (2H 106) hybrid pioneer', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 390 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('Cargill 200', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 391 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('USM Var 10             - PSB', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 392 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('2H 13 P-3228', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 393 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('P3208 (3H 208) hybrid pioneer', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 394 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SMC 308 (S-E2) hybrid', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 395 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('Cargill 100', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 396 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('P3224 (3H 201) hybrid', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 397 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn 94-56 (C-900M or C 900)', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 398 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn 94-50 (BPI LG COMP 1 or LG COMP 1-91)', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 399 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('CPX 621             - CSX-767', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 400 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('C-900M                        - PSB Cn-56', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 401 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('BP LG Comp 1 (LG Comp 1-91)       - PSB Cn-50', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 402 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SMC Hi-yield 309', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 403 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SMC Hi-yield 309 (SMC 309) hybrid', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 404 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SMC 317 (S-E3) hybrid', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 405 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('(YOF-61) P 3400 PSB CN-25', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 406 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('IPB-919                       - PSB Cn-36', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 407 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SMARC 1283   - SMARC 1283', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 408 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SMC 308 (SMARC 1283)', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 409 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-24 (IPBXH913)', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 410 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn 94-58 (PAC 1358 or ICI 1358)', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 411 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('S E2                    - SMC 308', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 412 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PAC 1358                     - PSB Cn-58', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 413 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SMC 309            - SMC HI-YIELD 309', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 414 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('IBB', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 415 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('UPCA Var 1', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 416 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('UPCA Var 2', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 417 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('BPI Var 1', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 418 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('IPB Var 1', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 419 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('IPB Var 1 913', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 420 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('2H 106 P-3274', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 421 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('IPB Var2      - UPLB Cn-2 Tanco White', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 422 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('3H 201 P-3224', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 423 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('S-E3                   - SMC 317', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 424 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('IPBXH 913                  - PBS Cn-24', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 425 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('3H 208 P-3208', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 426 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('XCW 15  - PSB Cn-40', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 427 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('USMARC 104          - PSB Cn-01', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 428 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PSB Cn-01 (USMARC 104)', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 429 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('Cornworld (CW1)/ Cargill 909', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 430 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('Cornworld (CW)/ Cargill 818', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 431 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('Cornworld (CW) 58', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 432 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('Hybrid 3013', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 433 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('Hybrid 3014', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 434 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('Hybrid 3065', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 435 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('Pioneer 3161', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 436 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('CORN 110 DAYS', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 437 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('CORN 100 DAYS', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 438 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('CORN 120 DAYS', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 439 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('30T80', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 440 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NK8840', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 441 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('4097 YR', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 442 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('WHITE CORN', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 443 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('LAGKITAN', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 444 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NK-6410', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 445 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('DEKALB', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 446 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('MAHARLIKA 5400', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 447 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('J505', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 448 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('PIONEER 3585', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 449 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('DEKALD 9919', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 450 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('SWEET PEARL', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 451 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NK306', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 452 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('NK6414', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 453 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('LONGPING 2096', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 454 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('LONGPING 937', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 455 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('LONGPING 205', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); 456 | INSERT INTO seeds (seed, seed_type, region_id) VALUES ('LONGPING 534', 'corn', 'e1700a08-7b1f-472c-bea6-6180c32f202f'); -------------------------------------------------------------------------------- /sql_generator_from_excel/sql_inserts_by_region/RO4_seeds_inserts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/Random-Projects/f384bbc9519aa3a7bdfb272ea7db1819f8beded8/sql_generator_from_excel/sql_inserts_by_region/RO4_seeds_inserts.sql -------------------------------------------------------------------------------- /sql_generator_from_excel/sql_inserts_by_region/RO5_seeds_inserts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/Random-Projects/f384bbc9519aa3a7bdfb272ea7db1819f8beded8/sql_generator_from_excel/sql_inserts_by_region/RO5_seeds_inserts.sql -------------------------------------------------------------------------------- /sql_generator_from_excel/sql_inserts_by_region/RO6_seeds_inserts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/Random-Projects/f384bbc9519aa3a7bdfb272ea7db1819f8beded8/sql_generator_from_excel/sql_inserts_by_region/RO6_seeds_inserts.sql -------------------------------------------------------------------------------- /sql_generator_from_excel/sql_inserts_by_region/RO7_seeds_inserts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/Random-Projects/f384bbc9519aa3a7bdfb272ea7db1819f8beded8/sql_generator_from_excel/sql_inserts_by_region/RO7_seeds_inserts.sql -------------------------------------------------------------------------------- /sql_generator_from_excel/sql_inserts_by_region/RO8_seeds_inserts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/Random-Projects/f384bbc9519aa3a7bdfb272ea7db1819f8beded8/sql_generator_from_excel/sql_inserts_by_region/RO8_seeds_inserts.sql -------------------------------------------------------------------------------- /sql_generator_from_excel/sql_inserts_by_region/RO9_seeds_inserts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/Random-Projects/f384bbc9519aa3a7bdfb272ea7db1819f8beded8/sql_generator_from_excel/sql_inserts_by_region/RO9_seeds_inserts.sql -------------------------------------------------------------------------------- /sql_generator_from_excel/variety.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joemar25/Random-Projects/f384bbc9519aa3a7bdfb272ea7db1819f8beded8/sql_generator_from_excel/variety.xlsx --------------------------------------------------------------------------------