/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: admission_register
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `admission_register` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `patient_id` varchar(50) NOT NULL,
  `session_id` varchar(50) NOT NULL,
  `admission_type` varchar(50) NOT NULL,
  `status` enum('admitted', 'observing', 'discharged') NOT NULL DEFAULT 'admitted',
  `diagnosis` text DEFAULT NULL,
  `admission_notes` text DEFAULT NULL,
  `admitted_by` varchar(100) DEFAULT NULL,
  `admitted_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `discharged_by` varchar(100) DEFAULT NULL,
  `discharged_at` timestamp NULL DEFAULT NULL,
  `discharge_summary` text DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `admission_register_patient_id_session_id_unique` (`patient_id`, `session_id`),
  KEY `idx_admission_register_patient` (`patient_id`),
  KEY `idx_admission_register_session` (`session_id`)
) ENGINE = InnoDB AUTO_INCREMENT = 9 DEFAULT CHARSET = latin1 COLLATE = latin1_swedish_ci;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: billing_hx
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `billing_hx` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `pt_id` varchar(20) NOT NULL,
  `rx_time` varchar(100) DEFAULT NULL,
  `previous_bill` decimal(10, 2) NOT NULL,
  `new_bill` decimal(10, 2) NOT NULL,
  `difference` decimal(10, 2) NOT NULL,
  `previous_bill_to` varchar(100) NOT NULL,
  `new_bill_to` varchar(50) DEFAULT NULL,
  `updated_by` varchar(100) NOT NULL,
  `date_time` datetime NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE = InnoDB AUTO_INCREMENT = 31 DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_unicode_ci;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: billing_summary
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `billing_summary` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `patient_id` varchar(50) NOT NULL,
  `session_id` varchar(50) NOT NULL,
  `rx_time` datetime NOT NULL,
  `total_bill` decimal(10, 2) NOT NULL,
  `bill_to` varchar(255) DEFAULT NULL,
  `vat_rate` decimal(5, 2) DEFAULT 0.00,
  `discount_type` varchar(20) DEFAULT NULL,
  `discount_rate` decimal(10, 2) DEFAULT 0.00,
  `vat_amount` decimal(10, 2) DEFAULT 0.00,
  `discount_amount` decimal(10, 2) DEFAULT 0.00,
  `net_payable` decimal(10, 2) NOT NULL,
  `total_paid` decimal(10, 2) DEFAULT 0.00,
  `balance_remaining` decimal(10, 2) DEFAULT 0.00,
  `status` enum('pending', 'paid', 'partially_paid') DEFAULT 'pending',
  `created_at` datetime DEFAULT current_timestamp(),
  `bill_for` varchar(100) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE = InnoDB AUTO_INCREMENT = 144 DEFAULT CHARSET = latin1 COLLATE = latin1_swedish_ci;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: bills
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `bills` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `patient_id` varchar(50) NOT NULL,
  `session_id` varchar(50) NOT NULL,
  `inventory_id` int(11) DEFAULT NULL,
  `item_name` varchar(255) NOT NULL,
  `quantity` int(11) DEFAULT 1,
  `unit_price` decimal(10, 2) NOT NULL,
  `amount_price` decimal(10, 2) NOT NULL,
  `item_type` enum('inventory', 'service', 'summary') DEFAULT 'inventory',
  `rx_time` datetime NOT NULL,
  `billed_by` varchar(100) DEFAULT NULL,
  `created_at` datetime DEFAULT current_timestamp(),
  `discount_type` varchar(10) DEFAULT 'percent',
  `discount_value` decimal(10, 2) DEFAULT 0.00,
  `discount_amount` decimal(10, 2) DEFAULT 0.00,
  `revision` int(11) DEFAULT 1,
  `origin_device_id` varchar(255) DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `sync_status` tinyint(4) DEFAULT 0,
  `last_modified` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE = InnoDB AUTO_INCREMENT = 313 DEFAULT CHARSET = latin1 COLLATE = latin1_swedish_ci;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: clinical_categories
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `clinical_categories` (
  `id` smallint(6) NOT NULL,
  `name` varchar(20) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `name` (`name`)
) ENGINE = InnoDB DEFAULT CHARSET = latin1 COLLATE = latin1_swedish_ci;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: clinical_suggestions
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `clinical_suggestions` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `category_id` smallint(6) NOT NULL,
  `term` varchar(100) NOT NULL,
  `created_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `idx_clinical_suggestions_category` (`category_id`),
  KEY `idx_clinical_suggestions_term` (`term`(50)),
  CONSTRAINT `clinical_suggestions_ibfk_1` FOREIGN KEY (`category_id`) REFERENCES `clinical_categories` (`id`)
) ENGINE = InnoDB DEFAULT CHARSET = latin1 COLLATE = latin1_swedish_ci;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: common_clinical_hx
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `common_clinical_hx` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `category` varchar(100) DEFAULT NULL,
  `icd10_code` varchar(20) DEFAULT NULL,
  `created_at` datetime DEFAULT current_timestamp(),
  `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `fk_hx_icd10` (`icd10_code`),
  CONSTRAINT `fk_hx_icd10` FOREIGN KEY (`icd10_code`) REFERENCES `icd10_codes` (`code`) ON DELETE
  SET
  NULL ON UPDATE CASCADE
) ENGINE = InnoDB AUTO_INCREMENT = 79 DEFAULT CHARSET = latin1 COLLATE = latin1_swedish_ci;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: common_oe_findings
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `common_oe_findings` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `category` varchar(100) DEFAULT NULL,
  `icd10_code` varchar(10) DEFAULT NULL,
  `created_at` datetime DEFAULT current_timestamp(),
  `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `fk_oe_icd10` (`icd10_code`),
  CONSTRAINT `fk_oe_icd10` FOREIGN KEY (`icd10_code`) REFERENCES `icd10_codes` (`code`) ON DELETE
  SET
  NULL ON UPDATE CASCADE
) ENGINE = InnoDB AUTO_INCREMENT = 59 DEFAULT CHARSET = latin1 COLLATE = latin1_swedish_ci;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: consultation_queue
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `consultation_queue` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `patient_id` varchar(15) NOT NULL,
  `session_id` varchar(50) NOT NULL,
  `department` varchar(100) DEFAULT NULL,
  `logged_by` varchar(100) DEFAULT NULL,
  `doctor` varchar(100) DEFAULT NULL,
  `status` enum('waiting', 'attended', 'skipped') DEFAULT 'waiting',
  `date_time` datetime DEFAULT current_timestamp(),
  `attended_at` datetime DEFAULT NULL,
  `attended_by` varchar(100) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE = InnoDB AUTO_INCREMENT = 32 DEFAULT CHARSET = latin1 COLLATE = latin1_swedish_ci;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: counters
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `counters` (
  `table_name` varchar(255) NOT NULL,
  `month_year` varchar(7) NOT NULL,
  `total_count` bigint(20) DEFAULT 0,
  PRIMARY KEY (`table_name`, `month_year`)
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_unicode_ci;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: devices
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `devices` (
  `device_id` varchar(64) NOT NULL,
  `user_id` int(11) DEFAULT NULL,
  `name` varchar(255) DEFAULT NULL,
  `platform` varchar(50) DEFAULT NULL,
  `last_cursor` bigint(20) DEFAULT 0,
  `last_seen` timestamp NULL DEFAULT NULL,
  `meta` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`meta`)),
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`device_id`)
) ENGINE = InnoDB DEFAULT CHARSET = latin1 COLLATE = latin1_swedish_ci;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: diagnosis_suggestions
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `diagnosis_suggestions` (
  `suggestion_id` int(11) NOT NULL,
  `icd11_code` varchar(10) NOT NULL,
  PRIMARY KEY (`suggestion_id`),
  CONSTRAINT `diagnosis_suggestions_ibfk_1` FOREIGN KEY (`suggestion_id`) REFERENCES `clinical_suggestions` (`id`) ON DELETE CASCADE
) ENGINE = InnoDB DEFAULT CHARSET = latin1 COLLATE = latin1_swedish_ci;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: drug_suggestions
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `drug_suggestions` (
  `suggestion_id` int(11) NOT NULL,
  `atc_code` varchar(10) DEFAULT NULL,
  PRIMARY KEY (`suggestion_id`),
  CONSTRAINT `drug_suggestions_ibfk_1` FOREIGN KEY (`suggestion_id`) REFERENCES `clinical_suggestions` (`id`) ON DELETE CASCADE
) ENGINE = InnoDB DEFAULT CHARSET = latin1 COLLATE = latin1_swedish_ci;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: families
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `families` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `address` varchar(500) DEFAULT NULL,
  `contact_person` varchar(255) DEFAULT NULL,
  `contact_email` varchar(255) DEFAULT NULL,
  `phone_num` varchar(20) DEFAULT NULL,
  `type` varchar(20) DEFAULT NULL,
  `wallet` decimal(10, 2) DEFAULT 0.00,
  `date_time` datetime DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE = InnoDB AUTO_INCREMENT = 9 DEFAULT CHARSET = latin1 COLLATE = latin1_swedish_ci;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: family_wallet_tx
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `family_wallet_tx` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `family_id` int(11) NOT NULL,
  `transaction_type` enum('credit', 'debit', 'reversal') NOT NULL,
  `amount` decimal(10, 2) NOT NULL,
  `balance_before` decimal(10, 2) NOT NULL,
  `balance_after` decimal(10, 2) NOT NULL,
  `purpose` varchar(255) DEFAULT NULL,
  `tx_ref` varchar(100) DEFAULT NULL,
  `patient_id` varchar(25) DEFAULT NULL,
  `payment_channel` varchar(50) DEFAULT NULL,
  `updated_by` varchar(255) DEFAULT NULL,
  `reversal_of` int(11) DEFAULT NULL,
  `date_time` datetime DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `family_id` (`family_id`),
  KEY `reversal_of` (`reversal_of`),
  CONSTRAINT `family_wallet_tx_ibfk_1` FOREIGN KEY (`family_id`) REFERENCES `families` (`id`) ON DELETE CASCADE,
  CONSTRAINT `family_wallet_tx_ibfk_2` FOREIGN KEY (`reversal_of`) REFERENCES `family_wallet_tx` (`id`) ON DELETE
  SET
  NULL
) ENGINE = InnoDB AUTO_INCREMENT = 38 DEFAULT CHARSET = latin1 COLLATE = latin1_swedish_ci;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: foc
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `foc` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `patient_id` varchar(15) NOT NULL,
  `amount` decimal(10, 2) NOT NULL,
  `date_time` datetime NOT NULL DEFAULT current_timestamp(),
  `awarded_by` varchar(50) NOT NULL,
  `session_id` varchar(50) DEFAULT NULL,
  `rx_time` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `amount` (`amount`),
  KEY `patient_id` (`patient_id`),
  KEY `date_time` (`date_time`),
  KEY `awarded_by` (`awarded_by`),
  KEY `session_id` (`session_id`),
  KEY `rx_time` (`rx_time`)
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_unicode_ci;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: generated_reports
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `generated_reports` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(11) NOT NULL COMMENT 'References hospital_man.id',
  `preference_id` int(10) unsigned DEFAULT NULL COMMENT 'NULL if manually generated',
  `report_type` enum('clinical', 'financial', 'comprehensive') NOT NULL,
  `report_period_start` date NOT NULL,
  `report_period_end` date NOT NULL,
  `file_name` varchar(255) NOT NULL,
  `file_url` varchar(500) NOT NULL COMMENT 'Cloudflare R2 URL',
  `file_size_kb` int(11) DEFAULT NULL,
  `delivery_method` varchar(50) DEFAULT NULL,
  `email_sent` tinyint(1) DEFAULT 0,
  `whatsapp_sent` tinyint(1) DEFAULT 0,
  `app_notified` tinyint(1) DEFAULT 0,
  `generation_time_seconds` decimal(5, 2) DEFAULT NULL COMMENT 'How long to generate',
  `llm_tokens_used` int(11) DEFAULT NULL COMMENT 'For cost tracking',
  `generated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `expires_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT 'Auto-delete after this date',
  `downloaded_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  `download_count` int(11) DEFAULT 0,
  PRIMARY KEY (`id`),
  KEY `generated_reports_preference_id_foreign` (`preference_id`),
  KEY `generated_reports_user_id_generated_at_index` (`user_id`, `generated_at`),
  KEY `generated_reports_report_type_index` (`report_type`),
  KEY `generated_reports_expires_at_index` (`expires_at`),
  KEY `generated_reports_report_period_start_report_period_end_index` (`report_period_start`, `report_period_end`),
  CONSTRAINT `generated_reports_preference_id_foreign` FOREIGN KEY (`preference_id`) REFERENCES `report_preferences` (`id`) ON DELETE
  SET
  NULL,
  CONSTRAINT `generated_reports_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `hospital_man` (`id`) ON DELETE CASCADE
) ENGINE = InnoDB AUTO_INCREMENT = 23 DEFAULT CHARSET = latin1 COLLATE = latin1_swedish_ci;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: hmo_bills
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `hmo_bills` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `code_name` varchar(10) NOT NULL,
  `patient_id` varchar(50) NOT NULL,
  `service_type` enum(
  'consultation',
  'treatment',
  'medication',
  'lab_test'
  ) NOT NULL DEFAULT 'treatment',
  `amount` decimal(10, 2) NOT NULL,
  `date_time` datetime DEFAULT current_timestamp(),
  `status` enum('unbilled', 'billed', 'paid') DEFAULT 'unbilled',
  PRIMARY KEY (`id`)
) ENGINE = InnoDB AUTO_INCREMENT = 6 DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_unicode_ci;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: hmo_payments
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `hmo_payments` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `code_name` varchar(10) NOT NULL,
  `amount_paid` decimal(10, 2) NOT NULL,
  `payment_month` year(4) NOT NULL,
  `paid_by` varchar(255) NOT NULL,
  `confirmed_by` varchar(255) NOT NULL,
  `date_time` datetime DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_unicode_ci;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: hmo_reg
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `hmo_reg` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `code_name` varchar(255) DEFAULT NULL,
  `address` varchar(255) DEFAULT NULL,
  `contact_person` varchar(255) DEFAULT NULL,
  `contact_email` varchar(255) NOT NULL,
  `phone_num` varchar(20) NOT NULL,
  `wallet` varchar(5) DEFAULT NULL,
  `date_time` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE = InnoDB AUTO_INCREMENT = 7 DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_unicode_ci;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: hospital_man
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `hospital_man` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `firstName` varchar(25) NOT NULL,
  `lastName` varchar(25) NOT NULL,
  `email` varchar(50) NOT NULL,
  `phone_num` varchar(15) NOT NULL,
  `password` varchar(100) NOT NULL,
  `rank` tinyint(4) NOT NULL DEFAULT 1,
  `rcode` int(11) DEFAULT NULL,
  `date_time` datetime NOT NULL DEFAULT current_timestamp(),
  `rcode_expires` datetime DEFAULT NULL,
  `branch_id` int(11) NOT NULL DEFAULT 1,
  PRIMARY KEY (`id`)
) ENGINE = InnoDB AUTO_INCREMENT = 2 DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_unicode_ci;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: hospitals
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `hospitals` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(150) NOT NULL,
  `code_name` varchar(10) DEFAULT NULL,
  `address` varchar(200) NOT NULL,
  `phone_num` varchar(15) NOT NULL,
  `email` varchar(50) DEFAULT NULL,
  `slogan` varchar(150) DEFAULT NULL,
  `online_id` int(11) DEFAULT NULL,
  `branch_id` int(11) DEFAULT NULL,
  `machine_id` varchar(255) DEFAULT NULL,
  `backup_mode` varchar(20) NOT NULL DEFAULT 'local',
  `backup_drive_folder_id` varchar(128) DEFAULT NULL,
  `backup_auto_frequency` varchar(16) NOT NULL DEFAULT 'off',
  `backup_auto_next_run` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `code_name` (`code_name`)
) ENGINE = InnoDB AUTO_INCREMENT = 3 DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_unicode_ci;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: icd10_codes
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `icd10_codes` (
  `code` varchar(20) NOT NULL,
  `title` text DEFAULT NULL,
  `category` text DEFAULT NULL,
  PRIMARY KEY (`code`)
) ENGINE = InnoDB DEFAULT CHARSET = latin1 COLLATE = latin1_swedish_ci;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: inventories
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `inventories` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `item_name` varchar(255) NOT NULL,
  `unit_quantities` int(11) NOT NULL DEFAULT 0,
  `store_quantities` int(11) NOT NULL DEFAULT 0,
  `cp_pu` decimal(10, 2) NOT NULL DEFAULT 0.00,
  `sp_pu` decimal(10, 2) NOT NULL DEFAULT 0.00,
  `item_type` varchar(50) NOT NULL DEFAULT 'general_drug',
  `item_class` varchar(255) DEFAULT NULL,
  `low_stock_threshold` int(11) DEFAULT NULL,
  `branch_id` int(11) NOT NULL,
  `updated_by` varchar(255) NOT NULL,
  `date_time` datetime NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `last_restock_quantity` int(11) NOT NULL DEFAULT 0,
  `revision` int(11) DEFAULT 1,
  `origin_device_id` varchar(255) DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `sync_status` tinyint(4) DEFAULT 0,
  `last_modified` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `item_class` (`item_class`),
  KEY `branch_id` (`branch_id`)
) ENGINE = InnoDB AUTO_INCREMENT = 895 DEFAULT CHARSET = latin1 COLLATE = latin1_swedish_ci;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: inventory_dispensed
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `inventory_dispensed` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `inventory_id` int(11) NOT NULL,
  `patient_id` varchar(15) DEFAULT NULL,
  `rx_time` varchar(25) DEFAULT NULL,
  `customer_name` varchar(255) DEFAULT NULL,
  `quantity_before` int(11) NOT NULL,
  `quantity_dispensed` int(11) NOT NULL,
  `quantity_after` int(11) NOT NULL,
  `dispensed_by` varchar(255) NOT NULL,
  `date_time` datetime NOT NULL DEFAULT current_timestamp(),
  `branch_id` int(11) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `idx_dispensed_inventory` (`inventory_id`),
  CONSTRAINT `inventory_dispensed_ibfk_1` FOREIGN KEY (`inventory_id`) REFERENCES `inventories` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE = InnoDB AUTO_INCREMENT = 9 DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_unicode_ci;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: inventory_restock_history
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `inventory_restock_history` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `inventory_id` int(11) NOT NULL,
  `quantity_added` int(11) NOT NULL,
  `balance_before` int(11) NOT NULL,
  `balance_after` int(11) NOT NULL,
  `restocked_by` varchar(255) NOT NULL,
  `branch_id` int(11) NOT NULL,
  `date_time` datetime NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `inventory_id` (`inventory_id`),
  CONSTRAINT `inventory_restock_history_ibfk_1` FOREIGN KEY (`inventory_id`) REFERENCES `inventories` (`id`) ON DELETE CASCADE
) ENGINE = InnoDB AUTO_INCREMENT = 6 DEFAULT CHARSET = latin1 COLLATE = latin1_swedish_ci;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: inventory_transfers
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `inventory_transfers` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `inventory_id` int(11) NOT NULL,
  `from_location` varchar(50) NOT NULL,
  `to_location` varchar(50) NOT NULL,
  `transfer_type` varchar(50) NOT NULL DEFAULT 'internal',
  `quantity` int(11) NOT NULL,
  `from_qty_before` int(11) NOT NULL,
  `from_qty_after` int(11) NOT NULL,
  `to_qty_before` int(11) NOT NULL,
  `to_qty_after` int(11) NOT NULL,
  `transfer_by` varchar(255) NOT NULL,
  `date_time` datetime NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `inventory_id` (`inventory_id`),
  CONSTRAINT `inventory_transfers_ibfk_1` FOREIGN KEY (`inventory_id`) REFERENCES `inventories` (`id`) ON DELETE CASCADE
) ENGINE = InnoDB AUTO_INCREMENT = 6 DEFAULT CHARSET = latin1 COLLATE = latin1_swedish_ci;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: knex_migrations
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `knex_migrations` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) DEFAULT NULL,
  `batch` int(11) DEFAULT NULL,
  `migration_time` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE = InnoDB AUTO_INCREMENT = 22 DEFAULT CHARSET = latin1 COLLATE = latin1_swedish_ci;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: knex_migrations_lock
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `knex_migrations_lock` (
  `index` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `is_locked` int(11) DEFAULT NULL,
  PRIMARY KEY (`index`)
) ENGINE = InnoDB AUTO_INCREMENT = 2 DEFAULT CHARSET = latin1 COLLATE = latin1_swedish_ci;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: lab
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `lab` (
  `id` int(11) NOT NULL,
  `lab_id` varchar(25) NOT NULL,
  `patient_id` varchar(25) NOT NULL,
  `inv_req` text NOT NULL,
  `req_date` varchar(20) NOT NULL,
  `result` text NOT NULL,
  `bill` decimal(10, 0) NOT NULL,
  `comment` text NOT NULL,
  PRIMARY KEY (`patient_id`, `lab_id`)
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_unicode_ci;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: lab_requests
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `lab_requests` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `patient_id` varchar(15) NOT NULL,
  `doctor_id` varchar(255) NOT NULL,
  `test_name` varchar(255) NOT NULL,
  `status` enum('pending', 'completed', 'canceled') DEFAULT 'pending',
  `date_time` datetime NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `test_id` (`test_name`),
  KEY `patient_id` (`patient_id`),
  KEY `doctor_id` (`doctor_id`),
  KEY `date_time` (`date_time`)
) ENGINE = InnoDB AUTO_INCREMENT = 19 DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_unicode_ci;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: lab_result_fields
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `lab_result_fields` (
  `id` int(11) NOT NULL,
  `result_id` int(11) NOT NULL,
  `test_category` varchar(255) DEFAULT NULL,
  `test_name` varchar(255) NOT NULL,
  `value` text NOT NULL,
  KEY `test_name` (`test_name`),
  KEY `result_to_result_fileds` (`result_id`),
  CONSTRAINT `result_to_result_fileds` FOREIGN KEY (`result_id`) REFERENCES `lab_results` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_unicode_ci;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: lab_results
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `lab_results` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `request_id` int(11) DEFAULT NULL,
  `pt_id` varchar(255) NOT NULL,
  `signed_by` varchar(255) NOT NULL,
  `specimen` varchar(255) NOT NULL,
  `comment` text DEFAULT NULL,
  `date_time` datetime DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE = InnoDB AUTO_INCREMENT = 15 DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_unicode_ci;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: lab_results_fileds
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `lab_results_fileds` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `result_id` int(11) NOT NULL,
  `test_category` varchar(100) DEFAULT NULL,
  `test_name` varchar(100) DEFAULT NULL,
  `value` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE = InnoDB AUTO_INCREMENT = 29 DEFAULT CHARSET = latin1 COLLATE = latin1_swedish_ci;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: lab_tests
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `lab_tests` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `test_name` varchar(255) NOT NULL,
  `description` text DEFAULT NULL,
  `cost` decimal(10, 2) DEFAULT NULL,
  `date_time` datetime DEFAULT current_timestamp(),
  `test_category` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `test_name` (`test_name`)
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_unicode_ci;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: licenses
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `licenses` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `hospital_id` int(11) NOT NULL,
  `license_key` varchar(255) NOT NULL,
  `machine_id` varchar(255) NOT NULL,
  `expiry_date` datetime NOT NULL,
  `status` enum('active', 'expired', 'grace_period') NOT NULL DEFAULT 'active',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `license_key` (`license_key`),
  KEY `hospital_id` (`hospital_id`),
  CONSTRAINT `licenses_ibfk_1` FOREIGN KEY (`hospital_id`) REFERENCES `hospitals` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_unicode_ci;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: monthly_table_counters
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `monthly_table_counters` (
  `table_name` varchar(255) NOT NULL,
  `jan` bigint(20) DEFAULT 0,
  `feb` bigint(20) DEFAULT 0,
  `mar` bigint(20) DEFAULT 0,
  `apr` bigint(20) DEFAULT 0,
  `may` bigint(20) DEFAULT 0,
  `jun` bigint(20) DEFAULT 0,
  `jul` bigint(20) DEFAULT 0,
  `aug` bigint(20) DEFAULT 0,
  `sep` bigint(20) DEFAULT 0,
  `oct` bigint(20) DEFAULT 0,
  `nov` bigint(20) DEFAULT 0,
  `decem` bigint(20) DEFAULT 0,
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`table_name`)
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_unicode_ci;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: next_of_kin
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `next_of_kin` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `patient_id` varchar(15) DEFAULT NULL,
  `title` varchar(10) DEFAULT NULL,
  `firstName` varchar(25) NOT NULL,
  `lastName` varchar(25) NOT NULL,
  `phone_num` varchar(15) NOT NULL,
  `houseNum_or_name` varchar(255) NOT NULL,
  `street` varchar(255) NOT NULL,
  `city_and_state` varchar(255) NOT NULL,
  `country` varchar(255) NOT NULL,
  `email` varchar(100) DEFAULT NULL,
  `relationship` varchar(20) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `pt_id` (`patient_id`),
  CONSTRAINT `pt_next_of_kin` FOREIGN KEY (`patient_id`) REFERENCES `patients` (`patient_id`) ON UPDATE CASCADE
) ENGINE = InnoDB AUTO_INCREMENT = 4 DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_unicode_ci;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: nursing_sheet
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `nursing_sheet` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `patient_id` varchar(15) NOT NULL,
  `medication_name` varchar(150) NOT NULL,
  `dosage` varchar(100) DEFAULT NULL,
  `frequency_hours` int(10) unsigned NOT NULL,
  `due_time` datetime NOT NULL,
  `administered` enum('no', 'yes') NOT NULL DEFAULT 'no',
  `administered_at` datetime DEFAULT NULL,
  `administered_by` varchar(100) DEFAULT NULL,
  `notes` text DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `session_id` varchar(50) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `nursing_sheet_patient_due_idx` (`patient_id`, `due_time`),
  KEY `nursing_sheet_session_idx` (`session_id`),
  KEY `nursing_sheet_patient_session_idx` (`patient_id`, `session_id`),
  CONSTRAINT `nursing_sheet_patient_id_foreign` FOREIGN KEY (`patient_id`) REFERENCES `patients` (`patient_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE = InnoDB AUTO_INCREMENT = 23 DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_unicode_ci;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: patient_communicable_conditions
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `patient_communicable_conditions` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `patient_id` varchar(128) NOT NULL,
  `label` varchar(255) NOT NULL,
  `status` enum('positive', 'negative', 'others') NOT NULL DEFAULT 'negative',
  `status_note` text DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `patient_communicable_conditions_patient_id_index` (`patient_id`),
  KEY `patient_communicable_conditions_patient_id_label_index` (`patient_id`, `label`)
) ENGINE = InnoDB AUTO_INCREMENT = 24 DEFAULT CHARSET = latin1 COLLATE = latin1_swedish_ci;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: patient_lifestyle_allergies
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `patient_lifestyle_allergies` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `patient_id` varchar(128) NOT NULL,
  `smoking` tinyint(1) NOT NULL DEFAULT 0,
  `alcohol` tinyint(1) NOT NULL DEFAULT 0,
  `clubbing` tinyint(1) NOT NULL DEFAULT 0,
  `allergies_text` text DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NULL DEFAULT NULL,
  `communicable_terminal_ailment` text DEFAULT NULL,
  `communicable_status` varchar(32) NOT NULL DEFAULT 'negative',
  `communicable_status_note` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `patient_lifestyle_allergies_patient_id_index` (`patient_id`)
) ENGINE = InnoDB AUTO_INCREMENT = 7 DEFAULT CHARSET = latin1 COLLATE = latin1_swedish_ci;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: patient_wallet_tx
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `patient_wallet_tx` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `patient_id` varchar(15) NOT NULL,
  `amount` decimal(10, 2) NOT NULL,
  `tx_type` enum('debit', 'credit') NOT NULL,
  `source` varchar(100) DEFAULT NULL,
  `reference` varchar(100) DEFAULT NULL,
  `created_at` datetime DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE = InnoDB DEFAULT CHARSET = latin1 COLLATE = latin1_swedish_ci;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: patient_wallet_txn
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `patient_wallet_txn` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `patient_id` varchar(15) NOT NULL,
  `transaction_type` enum('credit', 'debit') NOT NULL,
  `amount` decimal(10, 2) NOT NULL,
  `balance_before` decimal(10, 2) NOT NULL,
  `balance_after` decimal(10, 2) NOT NULL,
  `purpose` varchar(255) DEFAULT NULL,
  `tx_ref` varchar(100) DEFAULT NULL,
  `payment_channel` varchar(100) DEFAULT 'wallet',
  `updated_by` varchar(100) DEFAULT NULL,
  `date_time` datetime DEFAULT current_timestamp(),
  PRIMARY KEY (`id`)
) ENGINE = InnoDB AUTO_INCREMENT = 75 DEFAULT CHARSET = latin1 COLLATE = latin1_swedish_ci;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: patients
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `patients` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(20) DEFAULT NULL,
  `firstName` varchar(25) NOT NULL,
  `lastName` varchar(25) NOT NULL,
  `Address` varchar(150) NOT NULL,
  `phone_num` varchar(15) DEFAULT NULL,
  `houseNum_or_name` varchar(255) DEFAULT NULL,
  `street` varchar(255) DEFAULT NULL,
  `city_and_state` varchar(255) DEFAULT NULL,
  `country` varchar(255) DEFAULT NULL,
  `email` varchar(50) DEFAULT NULL,
  `gender` varchar(2) NOT NULL,
  `age` varchar(255) DEFAULT NULL,
  `religion` varchar(99) DEFAULT NULL,
  `hmo` varchar(20) DEFAULT NULL,
  `family_or_group` varchar(150) DEFAULT NULL,
  `outstanding_balance` decimal(10, 2) NOT NULL DEFAULT 0.00,
  `hmo_wallet` decimal(10, 2) DEFAULT NULL,
  `patient_id` varchar(15) NOT NULL,
  `nok_id` int(11) NOT NULL,
  `nok_num` varchar(15) DEFAULT NULL,
  `date_time` datetime NOT NULL DEFAULT current_timestamp(),
  `date_of_birth` date DEFAULT NULL,
  `revision` int(11) DEFAULT 1,
  `origin_device_id` varchar(255) DEFAULT NULL,
  `deleted_at` timestamp NULL DEFAULT NULL,
  `sync_status` tinyint(4) DEFAULT 0,
  `last_modified` timestamp NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`, `patient_id`),
  UNIQUE KEY `phoneNumber` (`phone_num`),
  UNIQUE KEY `email` (`email`),
  KEY `patients_next_of_kin` (`nok_id`),
  KEY `firstName` (`firstName`),
  KEY `lastName` (`lastName`),
  KEY `Age` (`age`),
  KEY `patient_id` (`patient_id`),
  KEY `nok_num` (`nok_num`)
) ENGINE = InnoDB AUTO_INCREMENT = 27 DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_unicode_ci;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: payments
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `payments` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `patient_id` varchar(15) NOT NULL,
  `rx_time` varchar(50) DEFAULT NULL,
  `amount_paid` decimal(10, 2) NOT NULL,
  `paid_for` varchar(100) DEFAULT NULL,
  `bill_reference` varchar(100) DEFAULT NULL,
  `payment_method` varchar(50) DEFAULT NULL,
  `bank_name` varchar(100) DEFAULT NULL,
  `payer_type` enum('patient', 'hmo', 'foc', 'family/group', 'customer') DEFAULT NULL,
  `confirmed_by` varchar(55) NOT NULL,
  `date_time` datetime DEFAULT current_timestamp(),
  `rx_session` varchar(100) DEFAULT NULL,
  `wallet_txn_ref` varchar(100) DEFAULT NULL,
  `branch_id` varchar(36) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `idx_wallet_ref` (`wallet_txn_ref`),
  KEY `payments_branch_id_index` (`branch_id`)
) ENGINE = InnoDB AUTO_INCREMENT = 99 DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_unicode_ci;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: report_generation_queue
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `report_generation_queue` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `preference_id` int(10) unsigned NOT NULL,
  `user_id` int(11) NOT NULL COMMENT 'References hospital_man.id',
  `status` enum('pending', 'processing', 'completed', 'failed') NOT NULL DEFAULT 'pending',
  `priority` int(11) DEFAULT 5 COMMENT '1=highest, 10=lowest',
  `scheduled_for` datetime NOT NULL,
  `started_at` datetime DEFAULT NULL,
  `completed_at` datetime DEFAULT NULL,
  `retry_count` int(11) DEFAULT 0,
  `max_retries` int(11) DEFAULT 3,
  `error_message` text DEFAULT NULL,
  `generated_report_id` int(10) unsigned DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `report_generation_queue_preference_id_foreign` (`preference_id`),
  KEY `report_generation_queue_generated_report_id_foreign` (`generated_report_id`),
  KEY `report_generation_queue_status_scheduled_for_index` (`status`, `scheduled_for`),
  KEY `report_generation_queue_user_id_index` (`user_id`),
  CONSTRAINT `report_generation_queue_generated_report_id_foreign` FOREIGN KEY (`generated_report_id`) REFERENCES `generated_reports` (`id`) ON DELETE
  SET
  NULL,
  CONSTRAINT `report_generation_queue_preference_id_foreign` FOREIGN KEY (`preference_id`) REFERENCES `report_preferences` (`id`) ON DELETE CASCADE,
  CONSTRAINT `report_generation_queue_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `hospital_man` (`id`) ON DELETE CASCADE
) ENGINE = InnoDB DEFAULT CHARSET = latin1 COLLATE = latin1_swedish_ci;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: report_preferences
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `report_preferences` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(11) NOT NULL COMMENT 'References hospital_man.id',
  `user_email` varchar(255) NOT NULL,
  `user_phone` varchar(20) DEFAULT NULL,
  `user_name` varchar(255) DEFAULT NULL,
  `frequency` enum('daily', 'weekly', 'monthly', 'yearly') NOT NULL DEFAULT 'weekly',
  `report_type` enum('clinical', 'financial', 'comprehensive') NOT NULL DEFAULT 'comprehensive',
  `delivery_method` enum('email', 'whatsapp', 'app_link', 'all') NOT NULL DEFAULT 'email',
  `scheduled_time` time DEFAULT '08:00:00',
  `scheduled_day` int(11) DEFAULT 1 COMMENT '1-7 for weekly, 1-31 for monthly',
  `is_active` tinyint(1) DEFAULT 1,
  `last_generated_at` datetime DEFAULT NULL,
  `next_generation_at` datetime DEFAULT NULL COMMENT 'Calculated next run time',
  `created_at` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `report_preferences_user_id_unique` (`user_id`),
  KEY `report_preferences_is_active_next_generation_at_index` (`is_active`, `next_generation_at`),
  KEY `report_preferences_user_email_index` (`user_email`),
  KEY `report_preferences_frequency_index` (`frequency`),
  CONSTRAINT `report_preferences_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `hospital_man` (`id`) ON DELETE CASCADE
) ENGINE = InnoDB AUTO_INCREMENT = 4 DEFAULT CHARSET = latin1 COLLATE = latin1_swedish_ci;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: services_catalog
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `services_catalog` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(100) NOT NULL,
  `price` decimal(10, 2) NOT NULL,
  `description` text DEFAULT NULL,
  `created_at` datetime DEFAULT current_timestamp(),
  `updated_at` datetime DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `updated_by` varchar(250) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `name` (`name`)
) ENGINE = InnoDB AUTO_INCREMENT = 14 DEFAULT CHARSET = latin1 COLLATE = latin1_swedish_ci;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: staffs
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `staffs` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `staff_id` varchar(20) DEFAULT NULL,
  `firstName` varchar(25) NOT NULL,
  `lastName` varchar(25) NOT NULL,
  `age` int(3) DEFAULT NULL,
  `gender` varchar(10) DEFAULT NULL,
  `email` varchar(50) NOT NULL,
  `address` varchar(100) DEFAULT NULL,
  `phone_num` varchar(15) NOT NULL,
  `password` varchar(100) NOT NULL,
  `sPIN` varchar(150) DEFAULT NULL,
  `cadre` varchar(50) NOT NULL,
  `rcode` int(11) DEFAULT NULL,
  `rcode_expires` datetime DEFAULT NULL,
  `branch_id` int(11) NOT NULL DEFAULT 1,
  PRIMARY KEY (`id`)
) ENGINE = InnoDB AUTO_INCREMENT = 14 DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_unicode_ci;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: subscription_plans
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `subscription_plans` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(50) NOT NULL,
  `duration` int(11) NOT NULL,
  `price` decimal(10, 2) NOT NULL,
  `currency` varchar(10) DEFAULT 'NGN',
  PRIMARY KEY (`id`),
  UNIQUE KEY `name` (`name`)
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_unicode_ci;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: suggested_complaints
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `suggested_complaints` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `complaint` varchar(255) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `complaint` (`complaint`)
) ENGINE = InnoDB AUTO_INCREMENT = 195 DEFAULT CHARSET = latin1 COLLATE = latin1_swedish_ci;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: suggested_diagnosis
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `suggested_diagnosis` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `complaint_id` int(11) DEFAULT NULL,
  `diagnosis_name` varchar(255) NOT NULL,
  `icd10_code` varchar(20) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `fk_icd10` (`icd10_code`),
  KEY `fk_suggested_diagnosis_complaint` (`complaint_id`),
  CONSTRAINT `fk_icd10` FOREIGN KEY (`icd10_code`) REFERENCES `icd10_codes` (`code`),
  CONSTRAINT `fk_suggested_diagnosis_complaint` FOREIGN KEY (`complaint_id`) REFERENCES `suggested_complaints` (`id`)
) ENGINE = InnoDB AUTO_INCREMENT = 230 DEFAULT CHARSET = latin1 COLLATE = latin1_swedish_ci;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: suggested_tests
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `suggested_tests` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `complaint_id` int(11) NOT NULL,
  `test_name` varchar(255) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `fk_suggested_tests_complaint` (`complaint_id`),
  CONSTRAINT `fk_suggested_tests_complaint` FOREIGN KEY (`complaint_id`) REFERENCES `suggested_complaints` (`id`)
) ENGINE = InnoDB AUTO_INCREMENT = 30 DEFAULT CHARSET = latin1 COLLATE = latin1_swedish_ci;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: suggestion_synonyms
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `suggestion_synonyms` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `suggestion_id` int(11) NOT NULL,
  `synonym` varchar(100) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `suggestion_id` (`suggestion_id`),
  KEY `idx_suggestion_synonyms_term` (`synonym`(50)),
  CONSTRAINT `suggestion_synonyms_ibfk_1` FOREIGN KEY (`suggestion_id`) REFERENCES `clinical_suggestions` (`id`) ON DELETE CASCADE
) ENGINE = InnoDB DEFAULT CHARSET = latin1 COLLATE = latin1_swedish_ci;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: suggestion_usage
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `suggestion_usage` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `suggestion_id` int(11) NOT NULL,
  `used_count` int(11) DEFAULT 1,
  `last_used` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `idx_suggestion_usage_metrics` (`suggestion_id`, `last_used`),
  CONSTRAINT `suggestion_usage_ibfk_1` FOREIGN KEY (`suggestion_id`) REFERENCES `clinical_suggestions` (`id`)
) ENGINE = InnoDB DEFAULT CHARSET = latin1 COLLATE = latin1_swedish_ci;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: sync_log
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `sync_log` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `device_id` varchar(64) DEFAULT NULL,
  `idempotency_key` varchar(128) DEFAULT NULL,
  `table_name` varchar(255) NOT NULL,
  `row_id` varchar(255) DEFAULT NULL,
  `action` enum('create', 'update', 'delete') NOT NULL,
  `data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`data`)),
  `server_revision` int(11) DEFAULT 1,
  `server_cursor` bigint(20) DEFAULT 0,
  `applied_at` timestamp NOT NULL DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `sync_log_idempotency_key_unique` (`idempotency_key`),
  KEY `sync_log_table_name_server_cursor_index` (`table_name`, `server_cursor`),
  KEY `sync_log_device_id_index` (`device_id`)
) ENGINE = InnoDB DEFAULT CHARSET = latin1 COLLATE = latin1_swedish_ci;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: tx
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `tx` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `patient_id` varchar(15) NOT NULL,
  `c_o` text NOT NULL,
  `hx` text NOT NULL,
  `drug_hx` text NOT NULL,
  `o_e` text NOT NULL,
  `lab_inv` text NOT NULL,
  `diag` text NOT NULL,
  `rx` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL CHECK (json_valid(`rx`)),
  `date_time` datetime NOT NULL DEFAULT current_timestamp(),
  `admission_status` varchar(25) DEFAULT 'NULL',
  `dr_note` text DEFAULT NULL,
  `signed_by` varchar(80) NOT NULL,
  `bill` decimal(10, 2) NOT NULL,
  `paid` decimal(10, 2) NOT NULL,
  `to_balance` decimal(10, 2) NOT NULL,
  `bill_to` varchar(255) DEFAULT NULL,
  `session_id` varchar(36) NOT NULL,
  `rx_backup` text DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `patient_id` (`patient_id`),
  KEY `drug_hx` (`drug_hx`(768)),
  KEY `date&time` (`date_time`),
  KEY `signed_by` (`signed_by`),
  CONSTRAINT `pt's-Tx` FOREIGN KEY (`patient_id`) REFERENCES `patients` (`patient_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE = InnoDB AUTO_INCREMENT = 121 DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_unicode_ci;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: vitals
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `vitals` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `pt_id` varchar(15) NOT NULL,
  `age` varchar(255) DEFAULT NULL,
  `gender` varchar(8) DEFAULT NULL,
  `temp` decimal(3, 1) unsigned DEFAULT NULL,
  `pulse_rate` tinyint(4) unsigned DEFAULT NULL,
  `spo2` tinyint(4) unsigned DEFAULT NULL,
  `systolic` tinyint(4) unsigned DEFAULT NULL,
  `diastolic` tinyint(4) unsigned DEFAULT NULL,
  `Weight` tinyint(4) unsigned DEFAULT NULL,
  `height` tinyint(4) unsigned DEFAULT NULL,
  `bmi` tinyint(3) DEFAULT NULL,
  `date_time` datetime NOT NULL DEFAULT current_timestamp(),
  `resp_rate` tinyint(4) unsigned DEFAULT NULL,
  `session_id` varchar(191) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `temp` (`temp`),
  KEY `pulse_rate` (`pulse_rate`),
  KEY `resp_rate` (`spo2`),
  KEY `systolic` (`systolic`),
  KEY `diastolic` (`diastolic`),
  KEY `Weight` (`Weight`),
  KEY `height` (`height`),
  KEY `date_time` (`date_time`),
  KEY `pt_id` (`pt_id`),
  KEY `vitals_session_id_index` (`session_id`),
  CONSTRAINT `patient_vitals_identification` FOREIGN KEY (`pt_id`) REFERENCES `patients` (`patient_id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE = InnoDB AUTO_INCREMENT = 72 DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_unicode_ci;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: wallet_transactions
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `wallet_transactions` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `hospital_id` int(11) NOT NULL,
  `transaction_type` enum('credit', 'debit') NOT NULL,
  `amount` decimal(10, 2) NOT NULL,
  `balance_before` decimal(10, 2) NOT NULL,
  `balance_after` decimal(10, 2) NOT NULL,
  `description` varchar(255) NOT NULL,
  `date_time` datetime DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  KEY `hospital_id` (`hospital_id`),
  CONSTRAINT `wallet_transactions_ibfk_1` FOREIGN KEY (`hospital_id`) REFERENCES `hospitals` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_unicode_ci;

# ------------------------------------------------------------
# SCHEMA DUMP FOR TABLE: wallets
# ------------------------------------------------------------

CREATE TABLE IF NOT EXISTS `wallets` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `hospital_id` int(11) NOT NULL,
  `balance` decimal(10, 2) DEFAULT 0.00,
  `currency` varchar(10) DEFAULT 'NGN',
  `date_time` datetime DEFAULT current_timestamp(),
  PRIMARY KEY (`id`),
  UNIQUE KEY `hospital_id` (`hospital_id`),
  CONSTRAINT `wallets_ibfk_1` FOREIGN KEY (`hospital_id`) REFERENCES `hospitals` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 COLLATE = utf8mb4_unicode_ci;

# ------------------------------------------------------------
# DATA DUMP FOR TABLE: admission_register
# ------------------------------------------------------------

INSERT INTO
  `admission_register` (
    `id`,
    `patient_id`,
    `session_id`,
    `admission_type`,
    `status`,
    `diagnosis`,
    `admission_notes`,
    `admitted_by`,
    `admitted_at`,
    `discharged_by`,
    `discharged_at`,
    `discharge_summary`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    1,
    '7/2505/GOH',
    'w2xlf.1763987005295',
    'admit',
    'discharged',
    NULL,
    NULL,
    'Doctor Abiodun Salako',
    '2025-11-24 15:58:57',
    'Doctor Abiodun Salako',
    '2025-11-24 16:22:46',
    'discharge home on current drugs',
    '2025-11-24 15:58:57',
    '2025-11-24 16:22:46'
  );
INSERT INTO
  `admission_register` (
    `id`,
    `patient_id`,
    `session_id`,
    `admission_type`,
    `status`,
    `diagnosis`,
    `admission_notes`,
    `admitted_by`,
    `admitted_at`,
    `discharged_by`,
    `discharged_at`,
    `discharge_summary`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    2,
    '6/2504/GOH',
    '2nxj7.1764059955039',
    'admit',
    'admitted',
    NULL,
    NULL,
    'Doctor Abiodun Salako',
    '2025-11-25 09:39:15',
    NULL,
    NULL,
    NULL,
    '2025-11-25 09:39:15',
    '2025-11-25 11:06:14'
  );
INSERT INTO
  `admission_register` (
    `id`,
    `patient_id`,
    `session_id`,
    `admission_type`,
    `status`,
    `diagnosis`,
    `admission_notes`,
    `admitted_by`,
    `admitted_at`,
    `discharged_by`,
    `discharged_at`,
    `discharge_summary`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    3,
    '9/2507/GOH',
    'g211t.1764062275298',
    'admit-for-observation',
    'observing',
    NULL,
    NULL,
    'Doctor Abiodun Salako',
    '2025-11-25 10:17:55',
    NULL,
    NULL,
    NULL,
    '2025-11-25 10:17:55',
    '2025-11-25 10:17:55'
  );
INSERT INTO
  `admission_register` (
    `id`,
    `patient_id`,
    `session_id`,
    `admission_type`,
    `status`,
    `diagnosis`,
    `admission_notes`,
    `admitted_by`,
    `admitted_at`,
    `discharged_by`,
    `discharged_at`,
    `discharge_summary`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    4,
    '12/2507/GOH',
    'uexel.1764062948315',
    'admit-for-observation',
    'observing',
    NULL,
    NULL,
    'Doctor Abiodun Salako',
    '2025-11-25 10:29:08',
    NULL,
    NULL,
    NULL,
    '2025-11-25 10:29:08',
    '2025-11-25 10:29:08'
  );
INSERT INTO
  `admission_register` (
    `id`,
    `patient_id`,
    `session_id`,
    `admission_type`,
    `status`,
    `diagnosis`,
    `admission_notes`,
    `admitted_by`,
    `admitted_at`,
    `discharged_by`,
    `discharged_at`,
    `discharge_summary`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    5,
    '23/2510/GOH',
    'tzesl.1766672134843',
    'admit-for-observation',
    'observing',
    'spondylosis',
    NULL,
    'Doctor Abiodun Salako',
    '2025-12-25 15:15:34',
    NULL,
    NULL,
    NULL,
    '2025-12-25 15:15:34',
    '2025-12-25 15:15:34'
  );
INSERT INTO
  `admission_register` (
    `id`,
    `patient_id`,
    `session_id`,
    `admission_type`,
    `status`,
    `diagnosis`,
    `admission_notes`,
    `admitted_by`,
    `admitted_at`,
    `discharged_by`,
    `discharged_at`,
    `discharge_summary`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    6,
    '13/2507/GOH',
    '4xb8g.1766702985237',
    'admit',
    'admitted',
    'Abdominal Pain',
    NULL,
    'Doctor Abiodun Salako',
    '2025-12-25 23:49:45',
    NULL,
    NULL,
    NULL,
    '2025-12-25 23:49:45',
    '2025-12-26 00:02:02'
  );
INSERT INTO
  `admission_register` (
    `id`,
    `patient_id`,
    `session_id`,
    `admission_type`,
    `status`,
    `diagnosis`,
    `admission_notes`,
    `admitted_by`,
    `admitted_at`,
    `discharged_by`,
    `discharged_at`,
    `discharge_summary`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    7,
    '22/2508/GOH',
    'h5otn.1766744913963',
    'admit',
    'admitted',
    '?bleeding PUD',
    NULL,
    'Doctor Abiodun Salako',
    '2025-12-26 11:45:31',
    NULL,
    NULL,
    NULL,
    '2025-12-26 11:45:31',
    '2025-12-26 11:45:31'
  );
INSERT INTO
  `admission_register` (
    `id`,
    `patient_id`,
    `session_id`,
    `admission_type`,
    `status`,
    `diagnosis`,
    `admission_notes`,
    `admitted_by`,
    `admitted_at`,
    `discharged_by`,
    `discharged_at`,
    `discharge_summary`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    8,
    '24/2512/GOH',
    'd17k2.1766789113857',
    'admit',
    'admitted',
    'Acute Appendicitis',
    'check vital signs  2hrly',
    'Doctor Abiodun Salako',
    '2025-12-26 23:45:13',
    NULL,
    NULL,
    NULL,
    '2025-12-26 23:45:13',
    '2025-12-26 23:45:13'
  );

# ------------------------------------------------------------
# DATA DUMP FOR TABLE: billing_hx
# ------------------------------------------------------------

INSERT INTO
  `billing_hx` (
    `id`,
    `pt_id`,
    `rx_time`,
    `previous_bill`,
    `new_bill`,
    `difference`,
    `previous_bill_to`,
    `new_bill_to`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    1,
    '1/2504/GOH',
    NULL,
    0.00,
    1000.00,
    1000.00,
    'patient',
    'patient',
    'Kunle Fadairo',
    '2025-04-03 08:15:40'
  );
INSERT INTO
  `billing_hx` (
    `id`,
    `pt_id`,
    `rx_time`,
    `previous_bill`,
    `new_bill`,
    `difference`,
    `previous_bill_to`,
    `new_bill_to`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    2,
    '1/2504/GOH',
    NULL,
    1000.00,
    1500.00,
    500.00,
    'patient',
    'patient',
    'Kunle Fadairo',
    '2025-04-03 08:15:40'
  );
INSERT INTO
  `billing_hx` (
    `id`,
    `pt_id`,
    `rx_time`,
    `previous_bill`,
    `new_bill`,
    `difference`,
    `previous_bill_to`,
    `new_bill_to`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    3,
    '2/2504/GOH',
    NULL,
    0.00,
    1000.00,
    1000.00,
    'patient',
    'patient',
    'Abebi Konsu',
    '2025-04-03 12:29:14'
  );
INSERT INTO
  `billing_hx` (
    `id`,
    `pt_id`,
    `rx_time`,
    `previous_bill`,
    `new_bill`,
    `difference`,
    `previous_bill_to`,
    `new_bill_to`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    4,
    '2/2504/GOH',
    '2025-04-03 12:18:10',
    0.00,
    600.00,
    600.00,
    'patient',
    'patient',
    'Abebi Konsu',
    '2025-04-03 12:18:10'
  );
INSERT INTO
  `billing_hx` (
    `id`,
    `pt_id`,
    `rx_time`,
    `previous_bill`,
    `new_bill`,
    `difference`,
    `previous_bill_to`,
    `new_bill_to`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    5,
    '2/2504/GOH',
    '2025-04-03 11:57:40',
    0.00,
    500.00,
    500.00,
    'patient',
    'patient',
    'Abebi Konsu',
    '2025-04-03 11:57:40'
  );
INSERT INTO
  `billing_hx` (
    `id`,
    `pt_id`,
    `rx_time`,
    `previous_bill`,
    `new_bill`,
    `difference`,
    `previous_bill_to`,
    `new_bill_to`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    6,
    '2/2504/GOH',
    '2025-04-03 12:18:10',
    600.00,
    1000.00,
    400.00,
    'patient',
    'patient',
    'Abebi Konsu',
    '2025-04-03 12:18:10'
  );
INSERT INTO
  `billing_hx` (
    `id`,
    `pt_id`,
    `rx_time`,
    `previous_bill`,
    `new_bill`,
    `difference`,
    `previous_bill_to`,
    `new_bill_to`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    7,
    '2/2504/GOH',
    '2025-04-03 12:18:10',
    1000.00,
    500.00,
    -500.00,
    'patient',
    'patient',
    'Abebi Konsu',
    '2025-04-03 12:18:10'
  );
INSERT INTO
  `billing_hx` (
    `id`,
    `pt_id`,
    `rx_time`,
    `previous_bill`,
    `new_bill`,
    `difference`,
    `previous_bill_to`,
    `new_bill_to`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    8,
    '3/2504/GOH',
    '2025-04-04 07:35:17',
    1000.00,
    1000.00,
    0.00,
    'patient',
    'patient',
    'Kunle Fadairo',
    '2025-04-04 07:35:17'
  );
INSERT INTO
  `billing_hx` (
    `id`,
    `pt_id`,
    `rx_time`,
    `previous_bill`,
    `new_bill`,
    `difference`,
    `previous_bill_to`,
    `new_bill_to`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    11,
    '8/2507/GOH',
    '2025-07-07 21:07:43',
    0.00,
    7000.00,
    7000.00,
    'Nil',
    'family/group',
    'Abebi Konsu',
    '2025-07-07 21:07:43'
  );
INSERT INTO
  `billing_hx` (
    `id`,
    `pt_id`,
    `rx_time`,
    `previous_bill`,
    `new_bill`,
    `difference`,
    `previous_bill_to`,
    `new_bill_to`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    14,
    '2/2504/GOH',
    '2025-07-10 21:44:45',
    0.00,
    3000.00,
    3000.00,
    'N/A',
    'patient',
    'Dele Fadairo',
    '2025-07-10 21:44:45'
  );
INSERT INTO
  `billing_hx` (
    `id`,
    `pt_id`,
    `rx_time`,
    `previous_bill`,
    `new_bill`,
    `difference`,
    `previous_bill_to`,
    `new_bill_to`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    15,
    '2/2504/GOH',
    '2025-07-10 21:44:30',
    6500.00,
    4500.00,
    -2000.00,
    'patient',
    'patient',
    'Dele Fadairo',
    '2025-07-10 21:44:30'
  );
INSERT INTO
  `billing_hx` (
    `id`,
    `pt_id`,
    `rx_time`,
    `previous_bill`,
    `new_bill`,
    `difference`,
    `previous_bill_to`,
    `new_bill_to`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    18,
    '17/2507/GOH',
    '2025-07-30 15:31:06',
    0.00,
    6500.00,
    6500.00,
    'N/A',
    'patient',
    'Abiodun Salako',
    '2025-07-30 15:31:06'
  );
INSERT INTO
  `billing_hx` (
    `id`,
    `pt_id`,
    `rx_time`,
    `previous_bill`,
    `new_bill`,
    `difference`,
    `previous_bill_to`,
    `new_bill_to`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    19,
    '12/2507/GOH',
    '2025-08-22 09:51:14',
    0.00,
    25000.00,
    25000.00,
    'N/A',
    'Loyola Farms',
    'Abiodun Salako',
    '2025-08-22 09:51:14'
  );
INSERT INTO
  `billing_hx` (
    `id`,
    `pt_id`,
    `rx_time`,
    `previous_bill`,
    `new_bill`,
    `difference`,
    `previous_bill_to`,
    `new_bill_to`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    20,
    '8/2507/GOH',
    '2025-08-24 14:12:03',
    0.00,
    2000.00,
    2000.00,
    'N/A',
    'Chief Alani family',
    'Abiodun Salako',
    '2025-08-24 14:12:03'
  );
INSERT INTO
  `billing_hx` (
    `id`,
    `pt_id`,
    `rx_time`,
    `previous_bill`,
    `new_bill`,
    `difference`,
    `previous_bill_to`,
    `new_bill_to`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    21,
    '19/2507/GOH',
    '2025-08-25 09:28:09',
    0.00,
    6000.00,
    6000.00,
    'N/A',
    'Chief Alani family',
    'Abiodun Salako',
    '2025-08-25 09:28:09'
  );
INSERT INTO
  `billing_hx` (
    `id`,
    `pt_id`,
    `rx_time`,
    `previous_bill`,
    `new_bill`,
    `difference`,
    `previous_bill_to`,
    `new_bill_to`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    22,
    '21/2508/GOH',
    '2025-09-01 13:52:49',
    0.00,
    25000.00,
    25000.00,
    'N/A',
    'Chief Alani family',
    'Abiodun Salako',
    '2025-09-01 13:52:49'
  );
INSERT INTO
  `billing_hx` (
    `id`,
    `pt_id`,
    `rx_time`,
    `previous_bill`,
    `new_bill`,
    `difference`,
    `previous_bill_to`,
    `new_bill_to`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    23,
    '21/2508/GOH',
    '2025-09-20 12:52:46',
    2600.00,
    3600.00,
    1000.00,
    'patient',
    'patient',
    'Abiodun Salako',
    '2025-09-20 12:52:46'
  );
INSERT INTO
  `billing_hx` (
    `id`,
    `pt_id`,
    `rx_time`,
    `previous_bill`,
    `new_bill`,
    `difference`,
    `previous_bill_to`,
    `new_bill_to`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    24,
    '19/2507/GOH',
    '2025-08-31 12:33:03',
    0.00,
    15000.00,
    15000.00,
    'N/A',
    'patient',
    'Abiodun Salako',
    '2025-08-31 12:33:03'
  );
INSERT INTO
  `billing_hx` (
    `id`,
    `pt_id`,
    `rx_time`,
    `previous_bill`,
    `new_bill`,
    `difference`,
    `previous_bill_to`,
    `new_bill_to`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    25,
    '7/2505/GOH',
    '2025-10-03 10:14:28',
    0.00,
    5800.00,
    5800.00,
    'patient',
    'patient',
    'Abiodun Salako',
    '2025-10-03 10:14:28'
  );
INSERT INTO
  `billing_hx` (
    `id`,
    `pt_id`,
    `rx_time`,
    `previous_bill`,
    `new_bill`,
    `difference`,
    `previous_bill_to`,
    `new_bill_to`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    26,
    '13/2507/GOH',
    '2025-12-25 21:23:28',
    0.00,
    3500.00,
    3500.00,
    'hmo',
    'patient',
    'Abiodun Salako',
    '2025-12-25 21:23:28'
  );
INSERT INTO
  `billing_hx` (
    `id`,
    `pt_id`,
    `rx_time`,
    `previous_bill`,
    `new_bill`,
    `difference`,
    `previous_bill_to`,
    `new_bill_to`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    27,
    '22/2508/GOH',
    '2025-12-26 11:28:33',
    0.00,
    2000.00,
    2000.00,
    'family/group',
    'patient',
    'Abiodun Salako',
    '2025-12-26 11:28:33'
  );
INSERT INTO
  `billing_hx` (
    `id`,
    `pt_id`,
    `rx_time`,
    `previous_bill`,
    `new_bill`,
    `difference`,
    `previous_bill_to`,
    `new_bill_to`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    28,
    '22/2508/GOH',
    '2025-12-26 11:45:31',
    5000.00,
    4000.00,
    -1000.00,
    'Loyola Farms',
    'Loyola Farms',
    'Abiodun Salako',
    '2025-12-26 11:45:31'
  );
INSERT INTO
  `billing_hx` (
    `id`,
    `pt_id`,
    `rx_time`,
    `previous_bill`,
    `new_bill`,
    `difference`,
    `previous_bill_to`,
    `new_bill_to`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    29,
    '22/2508/GOH',
    '2025-12-26 11:45:31',
    4000.00,
    4000.00,
    0.00,
    'Loyola Farms',
    'patient',
    'Abiodun Salako',
    '2025-12-26 11:45:31'
  );
INSERT INTO
  `billing_hx` (
    `id`,
    `pt_id`,
    `rx_time`,
    `previous_bill`,
    `new_bill`,
    `difference`,
    `previous_bill_to`,
    `new_bill_to`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    30,
    '21/2508/GOH',
    '2025-12-26 12:11:17',
    0.00,
    2000.00,
    2000.00,
    'patient',
    'patient',
    'Abiodun Salako',
    '2025-12-26 12:11:17'
  );

# ------------------------------------------------------------
# DATA DUMP FOR TABLE: billing_summary
# ------------------------------------------------------------

INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    4,
    '6/2504/GOH',
    'oxgdq.1745505255936',
    '2025-04-24 15:34:15',
    15632.00,
    NULL,
    7.50,
    'percent',
    0.00,
    1172.40,
    0.00,
    0.00,
    0.00,
    0.00,
    'partially_paid',
    '2025-04-29 19:54:31',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    7,
    '3/2504/GOH',
    'iclax.1746095014380',
    '2025-05-01 11:23:34',
    2073.60,
    NULL,
    0.00,
    'percent',
    0.00,
    0.00,
    0.00,
    2073.60,
    0.00,
    0.00,
    'paid',
    '2025-05-06 20:30:31',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    8,
    'customer',
    'sales.1748267641065',
    '2025-05-26 14:54:01',
    9467.00,
    NULL,
    7.50,
    'percent',
    0.00,
    710.03,
    0.00,
    10177.03,
    0.00,
    0.00,
    'paid',
    '2025-05-26 14:54:01',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    9,
    'customer',
    'sales.1748274521302',
    '2025-05-26 16:48:41',
    17000.00,
    NULL,
    7.50,
    'percent',
    5.00,
    1275.00,
    850.00,
    17425.00,
    0.00,
    0.00,
    'paid',
    '2025-05-26 16:48:43',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    10,
    '7/2505/GOH',
    '47bgv.1748434936074',
    '2025-05-28 13:22:16',
    13844.00,
    NULL,
    0.00,
    'amount',
    2500.00,
    0.00,
    0.00,
    13844.00,
    13844.00,
    0.00,
    'paid',
    '2025-05-28 13:31:07',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    12,
    '7/2505/GOH',
    'xtu5p.1748481295291',
    '2025-05-29 01:14:55',
    9500.00,
    NULL,
    0.00,
    'none',
    0.00,
    0.00,
    0.00,
    9500.00,
    3656.00,
    5844.00,
    'partially_paid',
    '2025-05-29 02:14:55',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    13,
    'customer',
    'sales.1748555934191',
    '2025-05-29 22:58:54',
    5100.00,
    NULL,
    7.00,
    'amount',
    500.00,
    357.00,
    500.00,
    4957.00,
    4957.00,
    0.00,
    'paid',
    '2025-05-29 22:58:56',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    18,
    '7/2505/GOH',
    'xtu5p.1748481295291',
    '2025-05-29 02:14:55',
    5640.00,
    NULL,
    0.00,
    'percent',
    0.00,
    0.00,
    0.00,
    5640.00,
    5640.00,
    0.00,
    'paid',
    '2025-05-30 01:04:09',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    19,
    'customer',
    'sales.1749017810893',
    '2025-06-04 07:16:50',
    3753.20,
    NULL,
    0.00,
    'percent',
    0.00,
    0.00,
    0.00,
    3753.20,
    3753.20,
    0.00,
    'paid',
    '2025-06-04 07:17:10',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    20,
    'customer',
    'sales.1749294651384',
    '2025-06-07 12:10:51',
    8300.00,
    NULL,
    0.00,
    'amount',
    1000.00,
    0.00,
    1000.00,
    7300.00,
    7300.00,
    0.00,
    'paid',
    '2025-06-07 12:10:59',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    21,
    'customer',
    'sales.1750157195578',
    '2025-06-17 11:46:35',
    7108.00,
    NULL,
    0.00,
    'amount',
    0.00,
    0.00,
    0.00,
    7108.00,
    7108.00,
    0.00,
    'paid',
    '2025-06-17 11:46:39',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    22,
    '2/2504/GOH',
    'nqd2c.1750156809076',
    '2025-06-17 11:40:09',
    5100.00,
    NULL,
    0.00,
    'percent',
    0.00,
    0.00,
    0.00,
    5100.00,
    5100.00,
    0.00,
    'paid',
    '2025-07-07 12:20:10',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    23,
    '8/2507/GOH',
    'opndv.1751918863929',
    '2025-07-07 21:07:43',
    7000.00,
    NULL,
    0.00,
    'none',
    0.00,
    0.00,
    0.00,
    7000.00,
    7000.00,
    0.00,
    'paid',
    '2025-07-07 22:11:37',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    24,
    '8/2507/GOH',
    'p3k9p.1752077617158',
    '2025-07-09 17:13:37',
    2000.00,
    NULL,
    0.00,
    'percent',
    0.00,
    0.00,
    0.00,
    2000.00,
    2000.00,
    0.00,
    'paid',
    '2025-07-09 17:23:08',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    25,
    '8/2507/GOH',
    'alzgp.1752078980440',
    '2025-07-09 17:36:20',
    7000.00,
    NULL,
    0.00,
    'percent',
    0.00,
    0.00,
    0.00,
    7000.00,
    7000.00,
    0.00,
    'paid',
    '2025-07-09 17:36:47',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    29,
    '10/2507/GOH',
    'ign9m.1752079394378',
    '2025-07-09 17:43:14',
    17000.00,
    NULL,
    0.00,
    'percent',
    0.00,
    0.00,
    0.00,
    17000.00,
    0.00,
    17000.00,
    'pending',
    '2025-07-09 17:59:14',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    30,
    '8/2507/GOH',
    'i7v71.1752081845488',
    '2025-07-09 18:24:05',
    8500.00,
    NULL,
    0.00,
    'percent',
    0.00,
    0.00,
    0.00,
    8500.00,
    8000.00,
    500.00,
    'partially_paid',
    '2025-07-09 18:25:22',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    31,
    '10/2507/GOH',
    'hvc9j.1752084038298',
    '2025-07-09 19:00:38',
    2000.00,
    NULL,
    0.00,
    'percent',
    0.00,
    0.00,
    0.00,
    2000.00,
    0.00,
    2000.00,
    'pending',
    '2025-07-09 19:01:09',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    33,
    '11/2507/GOH',
    'hi6qj.1752148007328',
    '2025-07-10 12:46:47',
    6000.00,
    NULL,
    0.00,
    'percent',
    0.00,
    0.00,
    0.00,
    6000.00,
    6000.00,
    0.00,
    'paid',
    '2025-07-10 12:51:05',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    34,
    '12/2507/GOH',
    'itojj.1752147942925',
    '2025-07-10 12:45:42',
    14000.00,
    NULL,
    0.00,
    'percent',
    0.00,
    0.00,
    0.00,
    14000.00,
    3500.00,
    10500.00,
    'partially_paid',
    '2025-07-10 12:52:51',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    35,
    '11/2507/GOH',
    '3zh0x.1752147872340',
    '2025-07-10 12:44:32',
    6500.00,
    NULL,
    0.00,
    'percent',
    0.00,
    0.00,
    0.00,
    6500.00,
    6500.00,
    0.00,
    'paid',
    '2025-07-10 12:53:32',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    37,
    '6/2504/GOH',
    'voo8v.1752148073037',
    '2025-07-10 12:47:53',
    2000.00,
    NULL,
    0.00,
    'percent',
    0.00,
    0.00,
    0.00,
    2000.00,
    0.00,
    2000.00,
    'pending',
    '2025-07-10 12:54:10',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    39,
    '7/2505/GOH',
    '8pqfm.1752157996257',
    '2025-07-10 15:33:16',
    6500.00,
    NULL,
    0.00,
    'percent',
    0.00,
    0.00,
    0.00,
    6500.00,
    0.00,
    6500.00,
    'pending',
    '2025-07-10 15:37:19',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    40,
    '3/2504/GOH',
    'zwas1.1752158039307',
    '2025-07-10 15:33:59',
    6500.00,
    NULL,
    0.00,
    'percent',
    0.00,
    0.00,
    0.00,
    6500.00,
    0.00,
    6500.00,
    'pending',
    '2025-07-10 15:41:40',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    41,
    '7/2505/GOH',
    'ydlsf.1752160400252',
    '2025-07-10 16:13:20',
    6500.00,
    NULL,
    0.00,
    'percent',
    0.00,
    0.00,
    0.00,
    6500.00,
    0.00,
    6500.00,
    'pending',
    '2025-07-10 16:23:25',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    43,
    '3/2504/GOH',
    'xmx4b.1752160846201',
    '2025-07-10 16:20:46',
    6500.00,
    NULL,
    0.00,
    'percent',
    0.00,
    0.00,
    0.00,
    6500.00,
    6500.00,
    0.00,
    'paid',
    '2025-07-10 16:31:31',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    44,
    '3/2504/GOH',
    '9ful1.1752163617229',
    '2025-07-10 17:06:57',
    19500.00,
    NULL,
    0.00,
    'percent',
    0.00,
    0.00,
    0.00,
    19500.00,
    17500.00,
    2000.00,
    'partially_paid',
    '2025-07-10 17:09:28',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    45,
    '2/2504/GOH',
    'ejy9y.1752163646430',
    '2025-07-10 17:07:26',
    21500.00,
    NULL,
    0.00,
    'percent',
    0.00,
    0.00,
    0.00,
    21500.00,
    21500.00,
    0.00,
    'paid',
    '2025-07-10 17:10:09',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    46,
    '3/2504/GOH',
    'ae17m.1752163681067',
    '2025-07-10 17:08:01',
    12000.00,
    NULL,
    0.00,
    'percent',
    0.00,
    0.00,
    0.00,
    12000.00,
    0.00,
    12000.00,
    'pending',
    '2025-07-10 17:10:40',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    47,
    '7/2505/GOH',
    'k75y4.1752174453405',
    '2025-07-10 20:07:33',
    2522.00,
    NULL,
    0.00,
    'percent',
    0.00,
    0.00,
    0.00,
    2522.00,
    2522.00,
    0.00,
    'paid',
    '2025-07-10 20:09:21',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    48,
    '2/2504/GOH',
    '9wzzs.1752177591222',
    '2025-07-10 20:59:51',
    2000.00,
    NULL,
    0.00,
    'percent',
    0.00,
    0.00,
    0.00,
    2000.00,
    0.00,
    2000.00,
    'pending',
    '2025-07-10 21:01:44',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    52,
    '2/2504/GOH',
    'r7ylq.1752178077423',
    '2025-07-10 21:07:57',
    4500.00,
    NULL,
    0.00,
    'percent',
    0.00,
    0.00,
    0.00,
    4500.00,
    0.00,
    4500.00,
    'pending',
    '2025-07-10 21:12:26',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    53,
    '2/2504/GOH',
    'stryg.1752178784564',
    '2025-07-10 21:19:44',
    6500.00,
    NULL,
    0.00,
    'percent',
    0.00,
    0.00,
    0.00,
    6500.00,
    0.00,
    6500.00,
    'pending',
    '2025-07-10 21:20:37',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    54,
    '2/2504/GOH',
    'e0ctx.1752178773561',
    '2025-07-10 21:19:33',
    6500.00,
    NULL,
    0.00,
    'percent',
    0.00,
    0.00,
    0.00,
    6500.00,
    0.00,
    6500.00,
    'pending',
    '2025-07-10 21:21:14',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    68,
    '2/2504/GOH',
    'gf5ha.1752180260299',
    '2025-07-10 21:44:20',
    6500.00,
    NULL,
    0.00,
    'percent',
    0.00,
    0.00,
    0.00,
    6500.00,
    3400.00,
    3100.00,
    'partially_paid',
    '2025-07-10 22:28:14',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    69,
    '2/2504/GOH',
    'z1qr8.1752180285964',
    '2025-07-10 21:44:45',
    3000.00,
    NULL,
    0.00,
    'none',
    0.00,
    0.00,
    0.00,
    3000.00,
    0.00,
    3000.00,
    'pending',
    '2025-07-10 23:54:53',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    73,
    '2/2504/GOH',
    'ac9y6.1752180270158',
    '2025-07-10 21:44:30',
    4500.00,
    NULL,
    0.00,
    'none',
    0.00,
    0.00,
    0.00,
    4500.00,
    0.00,
    4500.00,
    'pending',
    '2025-07-10 23:56:36',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    74,
    '11/2507/GOH',
    'scqzl.1753044318748',
    '2025-07-20 21:45:18',
    2000.00,
    NULL,
    0.00,
    'percent',
    0.00,
    0.00,
    0.00,
    2000.00,
    1500.00,
    500.00,
    'partially_paid',
    '2025-07-20 21:57:07',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    75,
    '12/2507/GOH',
    'qhxsp.1753544038289',
    '2025-07-26 16:33:58',
    24000.00,
    NULL,
    0.00,
    'percent',
    0.00,
    0.00,
    0.00,
    24000.00,
    0.00,
    24000.00,
    'pending',
    '2025-07-26 16:35:29',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    76,
    '17/2507/GOH',
    'g5pvz.1753885866833',
    '2025-07-30 15:31:06',
    6500.00,
    'patient',
    0.00,
    'none',
    0.00,
    0.00,
    0.00,
    6500.00,
    5000.00,
    1500.00,
    'partially_paid',
    '2025-07-30 20:50:30',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    77,
    '20/2508/GOH',
    '5c2nm.1754242931623',
    '2025-08-03 18:42:11',
    375.30,
    NULL,
    0.00,
    'percent',
    0.00,
    0.00,
    0.00,
    375.30,
    0.00,
    375.30,
    'pending',
    '2025-08-03 18:43:50',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    78,
    '12/2507/GOH',
    'sales.1755874350345',
    '2025-08-22 15:52:30',
    2000.00,
    NULL,
    0.00,
    'percent',
    0.00,
    0.00,
    0.00,
    2000.00,
    0.00,
    2000.00,
    'pending',
    '2025-08-22 15:52:38',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    80,
    'customer',
    'sales.1755874443261',
    '2025-08-22 15:54:03',
    5000.00,
    NULL,
    0.00,
    'percent',
    0.00,
    0.00,
    0.00,
    5000.00,
    0.00,
    5000.00,
    'pending',
    '2025-08-22 15:54:05',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    81,
    'customer',
    'sales.1755874886233',
    '2025-08-22 16:01:26',
    2000.00,
    NULL,
    0.00,
    'percent',
    0.00,
    0.00,
    0.00,
    2000.00,
    0.00,
    2000.00,
    'pending',
    '2025-08-22 16:01:28',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    82,
    'customer',
    'sales.1755875062026',
    '2025-08-22 16:04:22',
    2000.00,
    NULL,
    0.00,
    'percent',
    0.00,
    0.00,
    0.00,
    2000.00,
    0.00,
    2000.00,
    'pending',
    '2025-08-22 16:04:24',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    83,
    'customer',
    'sales.1755875079029',
    '2025-08-22 16:04:39',
    2000.00,
    NULL,
    0.00,
    'percent',
    0.00,
    0.00,
    0.00,
    2000.00,
    0.00,
    2000.00,
    'pending',
    '2025-08-22 16:04:40',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    84,
    'customer',
    'sales.1755875302573',
    '2025-08-22 16:08:22',
    2000.00,
    NULL,
    0.00,
    'percent',
    0.00,
    0.00,
    0.00,
    2000.00,
    0.00,
    2000.00,
    'pending',
    '2025-08-22 16:08:24',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    88,
    'customer',
    'sales.1755875564505',
    '2025-08-22 16:12:44',
    2000.00,
    NULL,
    0.00,
    'percent',
    0.00,
    0.00,
    0.00,
    2000.00,
    0.00,
    2000.00,
    'pending',
    '2025-08-22 16:12:46',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    92,
    '12/2507/GOH',
    '0sbrl.1755852674905',
    '2025-08-22 09:51:14',
    25000.00,
    'Loyola Farms',
    0.00,
    'none',
    0.00,
    0.00,
    0.00,
    25000.00,
    25000.00,
    0.00,
    'paid',
    '2025-08-22 16:39:51',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    96,
    'customer',
    'sales.1755939261857',
    '2025-08-23 09:54:21',
    2000.00,
    NULL,
    0.00,
    'percent',
    0.00,
    0.00,
    0.00,
    2000.00,
    2000.00,
    0.00,
    'paid',
    '2025-08-23 09:54:27',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    98,
    'customer',
    'sales.1755955600045',
    '2025-08-23 14:26:40',
    7000.00,
    NULL,
    0.00,
    'percent',
    0.00,
    0.00,
    0.00,
    7000.00,
    7000.00,
    0.00,
    'paid',
    '2025-08-23 14:26:42',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    99,
    '8/2507/GOH',
    'n7w8m.1756041123326',
    '2025-08-24 14:12:03',
    2000.00,
    'Chief Alani family',
    0.00,
    'none',
    0.00,
    0.00,
    0.00,
    2000.00,
    0.00,
    2000.00,
    'pending',
    '2025-08-24 14:13:08',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    100,
    'customer',
    'sales.1756111289851',
    '2025-08-25 09:41:29',
    2000.00,
    NULL,
    0.00,
    'percent',
    0.00,
    0.00,
    0.00,
    2000.00,
    2000.00,
    0.00,
    'paid',
    '2025-08-25 09:41:40',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    101,
    '19/2507/GOH',
    'jf0qc.1756110489408',
    '2025-08-25 09:28:09',
    6000.00,
    'Chief Alani family',
    0.00,
    'none',
    0.00,
    0.00,
    0.00,
    6000.00,
    0.00,
    6000.00,
    'pending',
    '2025-08-26 08:01:39',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    102,
    'customer',
    'sales.1756647693321',
    '2025-08-31 14:41:33',
    2000.00,
    NULL,
    0.00,
    'percent',
    0.00,
    0.00,
    0.00,
    2000.00,
    2000.00,
    0.00,
    'paid',
    '2025-08-31 14:41:41',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    103,
    '19/2507/GOH',
    'kri03.1756481714789',
    '2025-08-29 16:35:14',
    2000.00,
    NULL,
    0.00,
    'percent',
    0.00,
    0.00,
    0.00,
    2000.00,
    0.00,
    2000.00,
    'pending',
    '2025-08-31 14:44:29',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    104,
    '21/2508/GOH',
    'sn125.1756731169422',
    '2025-09-01 13:52:49',
    25000.00,
    'Chief Alani family',
    0.00,
    'none',
    0.00,
    0.00,
    0.00,
    25000.00,
    0.00,
    25000.00,
    'pending',
    '2025-09-01 13:53:21',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    105,
    'customer',
    'sales.1757167460258',
    '2025-09-06 15:04:20',
    4000.00,
    NULL,
    0.00,
    'percent',
    0.00,
    0.00,
    0.00,
    4000.00,
    4000.00,
    0.00,
    'paid',
    '2025-09-06 15:04:29',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    106,
    '21/2508/GOH',
    'sn125.1756731169422',
    '2025-09-20 12:52:46',
    3600.00,
    NULL,
    0.00,
    'none',
    0.00,
    0.00,
    0.00,
    3600.00,
    5000.00,
    -1400.00,
    'partially_paid',
    '2025-09-21 09:56:08',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    107,
    '21/2508/GOH',
    '2',
    '2025-09-13 12:03:33',
    2000.00,
    NULL,
    7.50,
    'percent',
    0.00,
    150.00,
    0.00,
    2000.00,
    0.00,
    2000.00,
    'pending',
    '2025-09-25 18:35:06',
    'lab_investigation'
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    108,
    '19/2507/GOH',
    'vsauj.1756639983223',
    '2025-08-31 12:33:03',
    15000.00,
    'patient',
    0.00,
    'none',
    0.00,
    0.00,
    0.00,
    15000.00,
    10000.00,
    5000.00,
    'partially_paid',
    '2025-10-01 09:37:21',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    109,
    '22/2508/GOH',
    'zn4pr.1759418103400',
    '2025-10-02 16:15:03',
    5412.00,
    NULL,
    7.50,
    'percent',
    0.00,
    405.90,
    0.00,
    0.00,
    0.00,
    0.00,
    'pending',
    '2025-10-02 16:17:46',
    'treatment billing'
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    110,
    '22/2508/GOH',
    '1',
    '2025-09-02 12:27:20',
    2000.00,
    NULL,
    7.50,
    'percent',
    0.00,
    150.00,
    0.00,
    2000.00,
    0.00,
    2000.00,
    'pending',
    '2025-10-02 18:12:36',
    'lab_investigation'
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    112,
    '7/2505/GOH',
    '0su2m.1759482868397',
    '2025-10-03 10:14:28',
    5800.00,
    NULL,
    0.00,
    'none',
    0.00,
    0.00,
    0.00,
    5800.00,
    5800.00,
    0.00,
    'paid',
    '2025-10-03 10:23:56',
    'rx_bill'
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    114,
    '7/2505/GOH',
    '5',
    '2025-10-03 10:08:03',
    7500.00,
    NULL,
    7.50,
    'percent',
    0.00,
    562.50,
    0.00,
    0.00,
    0.00,
    0.00,
    'pending',
    '2025-10-03 11:01:32',
    'lab_investigation'
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    115,
    '22/2508/GOH',
    '4',
    '2025-10-02 16:06:38',
    2000.00,
    NULL,
    7.50,
    'percent',
    0.00,
    150.00,
    0.00,
    2000.00,
    0.00,
    2000.00,
    'pending',
    '2025-10-03 11:48:12',
    'lab_investigation'
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    116,
    '6/2504/GOH',
    '6',
    '2025-10-03 13:42:19',
    9500.00,
    'patient',
    7.50,
    'percent',
    5.00,
    712.50,
    475.00,
    9737.50,
    0.00,
    9737.50,
    'pending',
    '2025-10-03 16:28:34',
    'lab_investigation'
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    117,
    '22/2508/GOH',
    'zn4pr.1759418103400',
    '2025-10-03 16:30:24',
    5000.00,
    'patient',
    7.50,
    'percent',
    0.00,
    375.00,
    0.00,
    5375.00,
    5375.00,
    0.00,
    'paid',
    '2025-10-03 16:31:13',
    'treatment billing'
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    119,
    '9/2507/GOH',
    '1dlbz.1759505999985',
    '2025-10-03 16:39:59',
    5141.00,
    'patient',
    7.50,
    'percent',
    0.00,
    385.58,
    0.00,
    5526.57,
    5526.57,
    0.00,
    'paid',
    '2025-10-03 16:42:31',
    'treatment billing'
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    120,
    '9/2507/GOH',
    '7',
    '2025-10-03 16:37:32',
    7500.00,
    'patient',
    7.50,
    'percent',
    0.00,
    562.50,
    0.00,
    8062.50,
    2562.50,
    5500.00,
    'partially_paid',
    '2025-10-03 16:47:59',
    'lab_investigation'
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    121,
    '9/2507/GOH',
    '1dlbz.1759505999985',
    '2025-10-03 18:23:03',
    1500.00,
    'patient',
    7.50,
    'percent',
    0.00,
    112.50,
    0.00,
    1612.50,
    1612.50,
    0.00,
    'paid',
    '2025-10-03 18:24:28',
    'treatment billing'
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    122,
    '4/2504/GOH',
    'vbuke.1759558396759',
    '2025-10-04 07:13:16',
    1824.00,
    'patient',
    7.50,
    'percent',
    0.00,
    136.80,
    0.00,
    1960.80,
    1960.80,
    0.00,
    'paid',
    '2025-10-04 07:14:47',
    'treatment billing'
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    123,
    '4/2504/GOH',
    'vbuke.1759558396759',
    '2025-10-04 07:18:14',
    840.00,
    'patient',
    7.50,
    'percent',
    0.00,
    63.00,
    0.00,
    903.00,
    39.20,
    863.80,
    'partially_paid',
    '2025-10-04 07:20:00',
    'treatment billing'
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    124,
    '12/2507/GOH',
    'v2uoz.1759561442965',
    '2025-10-04 08:04:02',
    5234.00,
    'patient',
    7.50,
    'percent',
    0.00,
    392.55,
    0.00,
    5626.55,
    0.00,
    5626.55,
    'pending',
    '2025-10-04 08:08:19',
    'treatment billing'
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    125,
    '12/2507/GOH',
    'v2uoz.1759561442965',
    '2025-10-04 08:12:09',
    2750.00,
    'family/group',
    7.50,
    'percent',
    0.00,
    206.25,
    0.00,
    2956.25,
    2956.25,
    0.00,
    'paid',
    '2025-10-04 08:13:53',
    'treatment billing'
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    126,
    '12/2507/GOH',
    'v2uoz.1759561442965',
    '2025-10-04 08:16:20',
    5000.00,
    'family/group',
    7.50,
    'percent',
    0.00,
    375.00,
    0.00,
    5375.00,
    5375.00,
    0.00,
    'paid',
    '2025-10-04 08:16:56',
    'treatment billing'
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    127,
    '19/2507/GOH',
    '10',
    '2025-11-16 10:27:58',
    2000.00,
    'patient',
    0.00,
    'percent',
    0.00,
    0.00,
    0.00,
    2000.00,
    0.00,
    2000.00,
    'pending',
    '2025-11-25 10:04:52',
    'lab_investigation'
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    128,
    '23/2510/GOH',
    '15',
    '2025-12-25 08:41:49',
    7500.00,
    'patient',
    0.00,
    'percent',
    0.00,
    0.00,
    0.00,
    7500.00,
    7500.00,
    0.00,
    'paid',
    '2025-12-25 08:43:44',
    'lab_investigation'
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    129,
    '23/2510/GOH',
    '16',
    '2025-12-25 15:12:39',
    2000.00,
    'patient',
    0.00,
    'percent',
    0.00,
    0.00,
    0.00,
    2000.00,
    2000.00,
    0.00,
    'paid',
    '2025-12-25 15:17:01',
    'lab_investigation'
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    130,
    '23/2510/GOH',
    'tzesl.1766672134843',
    '2025-12-25 15:15:34',
    234.00,
    'patient',
    0.00,
    'percent',
    0.00,
    0.00,
    0.00,
    234.00,
    234.00,
    0.00,
    'paid',
    '2025-12-25 15:27:13',
    'treatment billing'
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    131,
    '13/2507/GOH',
    'tyd9i.1766694208260',
    '2025-12-25 21:23:28',
    3500.00,
    'patient',
    0.00,
    'none',
    0.00,
    0.00,
    0.00,
    3500.00,
    1000.00,
    2500.00,
    'partially_paid',
    '2025-12-25 21:25:03',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    138,
    '22/2508/GOH',
    'h5otn.1766744913963',
    '2025-12-26 11:28:33',
    2000.00,
    'patient',
    0.00,
    'none',
    0.00,
    0.00,
    0.00,
    2000.00,
    0.00,
    2000.00,
    'pending',
    '2025-12-26 11:29:39',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    140,
    '22/2508/GOH',
    'h5otn.1766744913963',
    '2025-12-26 11:45:31',
    4000.00,
    'family/group',
    0.00,
    'none',
    0.00,
    0.00,
    0.00,
    4000.00,
    4000.00,
    0.00,
    'paid',
    '2025-12-26 11:48:37',
    'consultations'
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    141,
    '21/2508/GOH',
    'fpu24.1766747477379',
    '2025-12-26 12:11:17',
    2000.00,
    'patient',
    0.00,
    'none',
    0.00,
    0.00,
    0.00,
    2000.00,
    0.00,
    2000.00,
    'pending',
    '2025-12-26 12:11:49',
    NULL
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    142,
    '7/2505/GOH',
    '7zx93.1767545969441',
    '2026-01-04 17:59:29',
    2324.00,
    'patient',
    0.00,
    'percent',
    0.00,
    0.00,
    0.00,
    2324.00,
    700.00,
    1624.00,
    'partially_paid',
    '2026-01-04 18:00:29',
    'treatment billing'
  );
INSERT INTO
  `billing_summary` (
    `id`,
    `patient_id`,
    `session_id`,
    `rx_time`,
    `total_bill`,
    `bill_to`,
    `vat_rate`,
    `discount_type`,
    `discount_rate`,
    `vat_amount`,
    `discount_amount`,
    `net_payable`,
    `total_paid`,
    `balance_remaining`,
    `status`,
    `created_at`,
    `bill_for`
  )
VALUES
  (
    143,
    '26/2601/GOH',
    'dydvm.1767634322927',
    '2026-01-05 18:32:02',
    5234.00,
    'patient',
    0.00,
    'percent',
    0.00,
    0.00,
    0.00,
    5234.00,
    3000.00,
    2234.00,
    'partially_paid',
    '2026-01-05 18:33:03',
    'treatment billing'
  );

# ------------------------------------------------------------
# DATA DUMP FOR TABLE: bills
# ------------------------------------------------------------

INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    1,
    '6/2504/GOH',
    'oxgdq.1745505255936',
    NULL,
    'Bond pcm tab',
    18,
    6.00,
    108.00,
    'service',
    '2025-04-24 15:34:15',
    'Unknown',
    '2025-04-29 19:48:09',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    2,
    '6/2504/GOH',
    'oxgdq.1745505255936',
    NULL,
    'Tab Aldomet(bond)',
    2,
    700.00,
    1400.00,
    'service',
    '2025-04-24 15:34:15',
    'Unknown',
    '2025-04-29 19:48:09',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    3,
    '6/2504/GOH',
    'oxgdq.1745505255936',
    NULL,
    'Tab Vasoprin (drugfield)',
    1,
    400.00,
    400.00,
    'service',
    '2025-04-24 15:34:15',
    'Unknown',
    '2025-04-29 19:48:09',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    4,
    '6/2504/GOH',
    'oxgdq.1745505255936',
    NULL,
    'Krishat arthemeter inj',
    6,
    150.00,
    900.00,
    'service',
    '2025-04-24 15:34:15',
    'Unknown',
    '2025-04-29 19:48:09',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    5,
    '6/2504/GOH',
    'oxgdq.1745505255936',
    NULL,
    'Krishat diclo inj',
    1,
    100.00,
    100.00,
    'service',
    '2025-04-24 15:34:15',
    'Unknown',
    '2025-04-29 19:48:09',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    6,
    '6/2504/GOH',
    'oxgdq.1745505255936',
    NULL,
    'Consultation fee',
    1,
    1000.00,
    1000.00,
    'service',
    '2025-04-24 15:34:15',
    'Unknown',
    '2025-04-29 19:48:09',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    7,
    '6/2504/GOH',
    'oxgdq.1745505255936',
    NULL,
    'Bond pcm tab',
    18,
    6.00,
    108.00,
    'service',
    '2025-04-24 15:34:15',
    'Unknown',
    '2025-04-29 19:51:46',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    8,
    '6/2504/GOH',
    'oxgdq.1745505255936',
    NULL,
    'Tab Aldomet(bond)',
    2,
    700.00,
    1400.00,
    'service',
    '2025-04-24 15:34:15',
    'Unknown',
    '2025-04-29 19:51:46',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    9,
    '6/2504/GOH',
    'oxgdq.1745505255936',
    NULL,
    'Tab Vasoprin (drugfield)',
    1,
    400.00,
    400.00,
    'service',
    '2025-04-24 15:34:15',
    'Unknown',
    '2025-04-29 19:51:46',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    10,
    '6/2504/GOH',
    'oxgdq.1745505255936',
    NULL,
    'Krishat arthemeter inj',
    6,
    150.00,
    900.00,
    'service',
    '2025-04-24 15:34:15',
    'Unknown',
    '2025-04-29 19:51:46',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    11,
    '6/2504/GOH',
    'oxgdq.1745505255936',
    NULL,
    'Krishat diclo inj',
    1,
    100.00,
    100.00,
    'service',
    '2025-04-24 15:34:15',
    'Unknown',
    '2025-04-29 19:51:46',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    12,
    '6/2504/GOH',
    'oxgdq.1745505255936',
    NULL,
    'Consultation fee',
    1,
    1000.00,
    1000.00,
    'service',
    '2025-04-24 15:34:15',
    'Unknown',
    '2025-04-29 19:51:46',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    13,
    '6/2504/GOH',
    'oxgdq.1745505255936',
    NULL,
    'Bond pcm tab',
    18,
    6.00,
    108.00,
    'service',
    '2025-04-24 15:34:15',
    'Unknown',
    '2025-04-29 19:53:12',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    14,
    '6/2504/GOH',
    'oxgdq.1745505255936',
    NULL,
    'Tab Aldomet(bond)',
    2,
    700.00,
    1400.00,
    'service',
    '2025-04-24 15:34:15',
    'Unknown',
    '2025-04-29 19:53:12',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    15,
    '6/2504/GOH',
    'oxgdq.1745505255936',
    NULL,
    'Tab Vasoprin (drugfield)',
    1,
    400.00,
    400.00,
    'service',
    '2025-04-24 15:34:15',
    'Unknown',
    '2025-04-29 19:53:12',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    16,
    '6/2504/GOH',
    'oxgdq.1745505255936',
    NULL,
    'Krishat arthemeter inj',
    6,
    150.00,
    900.00,
    'service',
    '2025-04-24 15:34:15',
    'Unknown',
    '2025-04-29 19:53:12',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    17,
    '6/2504/GOH',
    'oxgdq.1745505255936',
    NULL,
    'Krishat diclo inj',
    1,
    100.00,
    100.00,
    'service',
    '2025-04-24 15:34:15',
    'Unknown',
    '2025-04-29 19:53:12',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    18,
    '6/2504/GOH',
    'oxgdq.1745505255936',
    NULL,
    'Consultation fee',
    1,
    1000.00,
    1000.00,
    'service',
    '2025-04-24 15:34:15',
    'Unknown',
    '2025-04-29 19:53:12',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    19,
    '6/2504/GOH',
    'oxgdq.1745505255936',
    NULL,
    'Bond pcm tab',
    18,
    6.00,
    108.00,
    'service',
    '2025-04-24 15:34:15',
    'Unknown',
    '2025-04-29 19:54:31',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    20,
    '6/2504/GOH',
    'oxgdq.1745505255936',
    NULL,
    'Tab Aldomet(bond)',
    2,
    700.00,
    1400.00,
    'service',
    '2025-04-24 15:34:15',
    'Unknown',
    '2025-04-29 19:54:31',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    21,
    '6/2504/GOH',
    'oxgdq.1745505255936',
    NULL,
    'Tab Vasoprin (drugfield)',
    1,
    400.00,
    400.00,
    'service',
    '2025-04-24 15:34:15',
    'Unknown',
    '2025-04-29 19:54:31',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    22,
    '6/2504/GOH',
    'oxgdq.1745505255936',
    NULL,
    'Krishat arthemeter inj',
    6,
    150.00,
    900.00,
    'service',
    '2025-04-24 15:34:15',
    'Unknown',
    '2025-04-29 19:54:31',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    23,
    '6/2504/GOH',
    'oxgdq.1745505255936',
    NULL,
    'Krishat diclo inj',
    1,
    100.00,
    100.00,
    'service',
    '2025-04-24 15:34:15',
    'Unknown',
    '2025-04-29 19:54:31',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    24,
    '6/2504/GOH',
    'oxgdq.1745505255936',
    NULL,
    'Consultation fee',
    1,
    1000.00,
    1000.00,
    'service',
    '2025-04-24 15:34:15',
    'Unknown',
    '2025-04-29 19:54:31',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    31,
    '3/2504/GOH',
    'iclax.1746095014380',
    NULL,
    'pcm caplet (bond)',
    18,
    9.20,
    165.60,
    'service',
    '2025-05-01 11:23:34',
    'Unknown',
    '2025-05-05 12:04:50',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    32,
    '3/2504/GOH',
    'iclax.1746095014380',
    NULL,
    'tab mtro (tuyil)',
    20,
    9.00,
    180.00,
    'service',
    '2025-05-01 11:23:34',
    'Unknown',
    '2025-05-05 12:04:50',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    33,
    '3/2504/GOH',
    'iclax.1746095014380',
    NULL,
    'tube diclomol',
    0,
    0.00,
    0.00,
    'service',
    '2025-05-01 11:23:34',
    'Unknown',
    '2025-05-05 12:04:50',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    36,
    '3/2504/GOH',
    'iclax.1746095014380',
    NULL,
    'pcm caplet (bond)',
    18,
    9.20,
    165.60,
    'service',
    '2025-05-01 11:23:34',
    'Unknown',
    '2025-05-05 12:33:04',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    37,
    '3/2504/GOH',
    'iclax.1746095014380',
    NULL,
    'tab mtro (tuyil)',
    20,
    9.00,
    180.00,
    'service',
    '2025-05-01 11:23:34',
    'Unknown',
    '2025-05-05 12:33:04',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    40,
    '3/2504/GOH',
    'iclax.1746095014380',
    NULL,
    'pcm caplet (bond)',
    18,
    9.20,
    165.60,
    'service',
    '2025-05-01 11:23:34',
    'Unknown',
    '2025-05-06 15:03:47',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    41,
    '3/2504/GOH',
    'iclax.1746095014380',
    NULL,
    'tab mtro (tuyil)',
    20,
    9.00,
    180.00,
    'service',
    '2025-05-01 11:23:34',
    'Unknown',
    '2025-05-06 15:03:47',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    42,
    '3/2504/GOH',
    'iclax.1746095014380',
    NULL,
    'pcm caplet (bond)',
    18,
    9.20,
    165.60,
    'service',
    '2025-05-01 11:23:34',
    'Unknown',
    '2025-05-06 20:29:36',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    43,
    '3/2504/GOH',
    'iclax.1746095014380',
    NULL,
    'tab mtro (tuyil)',
    20,
    9.00,
    180.00,
    'service',
    '2025-05-01 11:23:34',
    'Unknown',
    '2025-05-06 20:29:36',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    44,
    '3/2504/GOH',
    'iclax.1746095014380',
    NULL,
    'pcm caplet (bond)',
    18,
    9.20,
    165.60,
    'service',
    '2025-05-01 11:23:34',
    'Unknown',
    '2025-05-06 20:30:00',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    45,
    '3/2504/GOH',
    'iclax.1746095014380',
    NULL,
    'tab mtro (tuyil)',
    20,
    9.00,
    180.00,
    'service',
    '2025-05-01 11:23:34',
    'Unknown',
    '2025-05-06 20:30:00',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    46,
    '3/2504/GOH',
    'iclax.1746095014380',
    NULL,
    'pcm caplet (bond)',
    18,
    9.20,
    165.60,
    'service',
    '2025-05-01 11:23:34',
    'Unknown',
    '2025-05-06 20:30:31',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    47,
    '3/2504/GOH',
    'iclax.1746095014380',
    NULL,
    'tab mtro (tuyil)',
    20,
    9.00,
    180.00,
    'service',
    '2025-05-01 11:23:34',
    'Unknown',
    '2025-05-06 20:30:31',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    48,
    'customer',
    'sales.1748267641065',
    NULL,
    'Ultrasound: Abdomen',
    1,
    8500.00,
    8500.00,
    'service',
    '2025-05-26 14:54:01',
    'Nurse Abebi Konsu',
    '2025-05-26 14:54:01',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    49,
    'customer',
    'sales.1748267641065',
    5,
    'tab mtro (tuyil)',
    1,
    9.00,
    9.00,
    'inventory',
    '2025-05-26 14:54:01',
    'Nurse Abebi Konsu',
    '2025-05-26 14:54:01',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    50,
    'customer',
    'sales.1748267641065',
    7,
    'Tab Aldomet(bond)',
    1,
    450.00,
    450.00,
    'inventory',
    '2025-05-26 14:54:01',
    'Nurse Abebi Konsu',
    '2025-05-26 14:54:01',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    51,
    'customer',
    'sales.1748267641065',
    8,
    'Tab Vasoprin (drugfield)',
    1,
    500.00,
    500.00,
    'inventory',
    '2025-05-26 14:54:01',
    'Nurse Abebi Konsu',
    '2025-05-26 14:54:01',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    52,
    'customer',
    'sales.1748267641065',
    1,
    'tab pcm (bond)',
    1,
    8.00,
    8.00,
    'inventory',
    '2025-05-26 14:54:01',
    'Nurse Abebi Konsu',
    '2025-05-26 14:54:01',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    53,
    'customer',
    'sales.1748274521302',
    NULL,
    'Consultation',
    1,
    5000.00,
    5000.00,
    'service',
    '2025-05-26 16:48:41',
    'Nurse Abebi Konsu',
    '2025-05-26 16:48:43',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    54,
    'customer',
    'sales.1748274521302',
    NULL,
    'Lab Test: Full Blood Count',
    1,
    3500.00,
    3500.00,
    'service',
    '2025-05-26 16:48:41',
    'Nurse Abebi Konsu',
    '2025-05-26 16:48:43',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    55,
    'customer',
    'sales.1748274521302',
    NULL,
    'Ultrasound: Abdomen',
    1,
    8500.00,
    8500.00,
    'service',
    '2025-05-26 16:48:41',
    'Nurse Abebi Konsu',
    '2025-05-26 16:48:43',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    62,
    '7/2505/GOH',
    '47bgv.1748434936074',
    1,
    'tab pcm (bond)',
    18,
    8.00,
    144.00,
    'inventory',
    '2025-05-28 13:22:16',
    'Nurse Abebi Konsu',
    '2025-05-28 13:31:07',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    63,
    '7/2505/GOH',
    '47bgv.1748434936074',
    4,
    'arthemeter inj (krishat)',
    6,
    600.00,
    3600.00,
    'inventory',
    '2025-05-28 13:22:16',
    'Nurse Abebi Konsu',
    '2025-05-28 13:31:07',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    64,
    '7/2505/GOH',
    '47bgv.1748434936074',
    3,
    'Krishat diclo inj',
    1,
    100.00,
    100.00,
    'inventory',
    '2025-05-28 13:22:16',
    'Nurse Abebi Konsu',
    '2025-05-28 13:31:07',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    65,
    '7/2505/GOH',
    '47bgv.1748434936074',
    9,
    'Suspension Jawasil (Jawa)',
    1,
    1500.00,
    1500.00,
    'inventory',
    '2025-05-28 13:22:16',
    'Nurse Abebi Konsu',
    '2025-05-28 13:31:07',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    66,
    '7/2505/GOH',
    '47bgv.1748434936074',
    NULL,
    'Lab Test: Full Blood Count',
    1,
    3500.00,
    3500.00,
    'service',
    '2025-05-28 13:22:16',
    'Nurse Abebi Konsu',
    '2025-05-28 13:31:07',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    67,
    '7/2505/GOH',
    '47bgv.1748434936074',
    NULL,
    'Consultation',
    1,
    5000.00,
    5000.00,
    'service',
    '2025-05-28 13:22:16',
    'Nurse Abebi Konsu',
    '2025-05-28 13:31:07',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    70,
    'customer',
    'sales.1748555934191',
    4,
    'arthemeter inj (krishat)',
    6,
    600.00,
    3600.00,
    'inventory',
    '2025-05-29 22:58:54',
    'pharmacist Olawale Oladosu',
    '2025-05-29 22:58:56',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    71,
    'customer',
    'sales.1748555934191',
    9,
    'Suspension Jawasil (Jawa)',
    1,
    1500.00,
    1500.00,
    'inventory',
    '2025-05-29 22:58:54',
    'pharmacist Olawale Oladosu',
    '2025-05-29 22:58:56',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    88,
    '7/2505/GOH',
    'xtu5p.1748481295291',
    6,
    'metro infusion (dana)',
    3,
    1200.00,
    3600.00,
    'inventory',
    '2025-05-29 02:14:55',
    'pharmacist Olawale Oladosu',
    '2025-05-30 01:04:09',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    89,
    '7/2505/GOH',
    'xtu5p.1748481295291',
    10,
    'tab moduretic (bond)',
    2,
    300.00,
    600.00,
    'inventory',
    '2025-05-29 02:14:55',
    'pharmacist Olawale Oladosu',
    '2025-05-30 01:04:09',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    90,
    '7/2505/GOH',
    'xtu5p.1748481295291',
    7,
    'Tab Aldomet(bond)',
    3,
    450.00,
    1350.00,
    'inventory',
    '2025-05-29 02:14:55',
    'pharmacist Olawale Oladosu',
    '2025-05-30 01:04:09',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    91,
    '7/2505/GOH',
    'xtu5p.1748481295291',
    5,
    'tab mtro (tuyil)',
    10,
    9.00,
    90.00,
    'inventory',
    '2025-05-29 02:14:55',
    'pharmacist Olawale Oladosu',
    '2025-05-30 01:04:09',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    92,
    'customer',
    'sales.1749017810893',
    1,
    'tab pcm (bond)',
    18,
    8.00,
    144.00,
    'inventory',
    '2025-06-04 07:16:50',
    'Nurse Abebi Konsu',
    '2025-06-04 07:17:10',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    93,
    'customer',
    'sales.1749017810893',
    2,
    'syrup pcm (bond)',
    1,
    650.00,
    650.00,
    'inventory',
    '2025-06-04 07:16:50',
    'Nurse Abebi Konsu',
    '2025-06-04 07:17:10',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    94,
    'customer',
    'sales.1749017810893',
    11,
    'pcm caplet (bond)',
    1,
    9.20,
    9.20,
    'inventory',
    '2025-06-04 07:16:50',
    'Nurse Abebi Konsu',
    '2025-06-04 07:17:10',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    95,
    'customer',
    'sales.1749017810893',
    7,
    'Tab Aldomet(bond)',
    1,
    450.00,
    450.00,
    'inventory',
    '2025-06-04 07:16:50',
    'Nurse Abebi Konsu',
    '2025-06-04 07:17:10',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    96,
    'customer',
    'sales.1749017810893',
    8,
    'Tab Vasoprin (drugfield)',
    1,
    500.00,
    500.00,
    'inventory',
    '2025-06-04 07:16:50',
    'Nurse Abebi Konsu',
    '2025-06-04 07:17:10',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    97,
    'customer',
    'sales.1749017810893',
    NULL,
    'Consultation',
    1,
    2000.00,
    2000.00,
    'service',
    '2025-06-04 07:16:50',
    'Nurse Abebi Konsu',
    '2025-06-04 07:17:10',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    98,
    'customer',
    'sales.1749294651384',
    2,
    'syrup pcm (bond)',
    2,
    650.00,
    1300.00,
    'inventory',
    '2025-06-07 12:10:51',
    'Nurse Abebi Konsu',
    '2025-06-07 12:10:59',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    99,
    'customer',
    'sales.1749294651384',
    NULL,
    'X-ray: Chest',
    1,
    7000.00,
    7000.00,
    'service',
    '2025-06-07 12:10:51',
    'Nurse Abebi Konsu',
    '2025-06-07 12:10:59',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    100,
    'customer',
    'sales.1750157195578',
    1,
    'tab pcm (bond)',
    1,
    8.00,
    8.00,
    'inventory',
    '2025-06-17 11:46:35',
    'Nurse Abebi Konsu',
    '2025-06-17 11:46:39',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    101,
    'customer',
    'sales.1750157195578',
    3,
    'Krishat diclo inj',
    1,
    100.00,
    100.00,
    'inventory',
    '2025-06-17 11:46:35',
    'Nurse Abebi Konsu',
    '2025-06-17 11:46:39',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    102,
    'customer',
    'sales.1750157195578',
    NULL,
    'X-ray: Chest',
    1,
    7000.00,
    7000.00,
    'service',
    '2025-06-17 11:46:35',
    'Nurse Abebi Konsu',
    '2025-06-17 11:46:39',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    103,
    '2/2504/GOH',
    'nqd2c.1750156809076',
    4,
    'arthemeter inj (krishat)',
    6,
    600.00,
    3600.00,
    'inventory',
    '2025-06-17 11:40:09',
    'Nurse Abebi Konsu',
    '2025-07-07 12:20:10',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    104,
    '2/2504/GOH',
    'nqd2c.1750156809076',
    9,
    'Suspension Jawasil (Jawa)',
    1,
    1500.00,
    1500.00,
    'inventory',
    '2025-06-17 11:40:09',
    'Nurse Abebi Konsu',
    '2025-07-07 12:20:10',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    105,
    '8/2507/GOH',
    'p3k9p.1752077617158',
    NULL,
    'Consultation',
    1,
    2000.00,
    2000.00,
    'service',
    '2025-07-09 17:13:37',
    'Nurse Abebi Konsu',
    '2025-07-09 17:23:08',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    106,
    '8/2507/GOH',
    'alzgp.1752078980440',
    NULL,
    'X-ray: Chest',
    1,
    7000.00,
    7000.00,
    'service',
    '2025-07-09 17:36:20',
    'Doctor Dele Fadairo',
    '2025-07-09 17:36:47',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    113,
    '10/2507/GOH',
    'ign9m.1752079394378',
    NULL,
    'Ultrasound: Abdomen',
    1,
    15000.00,
    15000.00,
    'service',
    '2025-07-09 17:43:14',
    'Nurse Abebi Konsu',
    '2025-07-09 17:59:14',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    114,
    '10/2507/GOH',
    'ign9m.1752079394378',
    NULL,
    'Consultation',
    1,
    2000.00,
    2000.00,
    'service',
    '2025-07-09 17:43:14',
    'Nurse Abebi Konsu',
    '2025-07-09 17:59:14',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    115,
    '8/2507/GOH',
    'i7v71.1752081845488',
    NULL,
    'ECG',
    1,
    4000.00,
    4000.00,
    'service',
    '2025-07-09 18:24:05',
    'Nurse Abebi Konsu',
    '2025-07-09 18:25:22',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    116,
    '8/2507/GOH',
    'i7v71.1752081845488',
    NULL,
    'Lab Test: Full Blood Count',
    1,
    4500.00,
    4500.00,
    'service',
    '2025-07-09 18:24:05',
    'Nurse Abebi Konsu',
    '2025-07-09 18:25:22',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    117,
    '10/2507/GOH',
    'hvc9j.1752084038298',
    NULL,
    'Consultation',
    1,
    2000.00,
    2000.00,
    'service',
    '2025-07-09 19:00:38',
    'Nurse Abebi Konsu',
    '2025-07-09 19:01:09',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    119,
    '11/2507/GOH',
    'hi6qj.1752148007328',
    NULL,
    'ECG',
    1,
    4000.00,
    4000.00,
    'service',
    '2025-07-10 12:46:47',
    'pharmacist Olawale Oladosu',
    '2025-07-10 12:51:05',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    120,
    '11/2507/GOH',
    'hi6qj.1752148007328',
    NULL,
    'Consultation',
    1,
    2000.00,
    2000.00,
    'service',
    '2025-07-10 12:46:47',
    'pharmacist Olawale Oladosu',
    '2025-07-10 12:51:05',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    121,
    '12/2507/GOH',
    'itojj.1752147942925',
    NULL,
    'X-ray: Chest',
    1,
    7000.00,
    7000.00,
    'service',
    '2025-07-10 12:45:42',
    'pharmacist Olawale Oladosu',
    '2025-07-10 12:52:51',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    122,
    '12/2507/GOH',
    'itojj.1752147942925',
    NULL,
    'Ultrasound: Pelvic',
    1,
    5000.00,
    5000.00,
    'service',
    '2025-07-10 12:45:42',
    'pharmacist Olawale Oladosu',
    '2025-07-10 12:52:51',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    123,
    '12/2507/GOH',
    'itojj.1752147942925',
    NULL,
    'Consultation',
    1,
    2000.00,
    2000.00,
    'service',
    '2025-07-10 12:45:42',
    'pharmacist Olawale Oladosu',
    '2025-07-10 12:52:51',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    124,
    '11/2507/GOH',
    '3zh0x.1752147872340',
    NULL,
    'Consultation',
    1,
    2000.00,
    2000.00,
    'service',
    '2025-07-10 12:44:32',
    'pharmacist Olawale Oladosu',
    '2025-07-10 12:53:32',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    125,
    '11/2507/GOH',
    '3zh0x.1752147872340',
    NULL,
    'Lab Test: Full Blood Count',
    1,
    4500.00,
    4500.00,
    'service',
    '2025-07-10 12:44:32',
    'pharmacist Olawale Oladosu',
    '2025-07-10 12:53:32',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    127,
    '6/2504/GOH',
    'voo8v.1752148073037',
    NULL,
    'Consultation',
    1,
    2000.00,
    2000.00,
    'service',
    '2025-07-10 12:47:53',
    'pharmacist Olawale Oladosu',
    '2025-07-10 12:54:10',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    130,
    '7/2505/GOH',
    '8pqfm.1752157996257',
    NULL,
    'Consultation',
    1,
    2000.00,
    2000.00,
    'service',
    '2025-07-10 15:33:16',
    'pharmacist Olawale Oladosu',
    '2025-07-10 15:37:19',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    131,
    '7/2505/GOH',
    '8pqfm.1752157996257',
    NULL,
    'Lab Test: Full Blood Count',
    1,
    4500.00,
    4500.00,
    'service',
    '2025-07-10 15:33:16',
    'pharmacist Olawale Oladosu',
    '2025-07-10 15:37:19',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    132,
    '3/2504/GOH',
    'zwas1.1752158039307',
    NULL,
    'Consultation',
    1,
    2000.00,
    2000.00,
    'service',
    '2025-07-10 15:33:59',
    'pharmacist Olawale Oladosu',
    '2025-07-10 15:41:40',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    133,
    '3/2504/GOH',
    'zwas1.1752158039307',
    NULL,
    'Lab Test: Full Blood Count',
    1,
    4500.00,
    4500.00,
    'service',
    '2025-07-10 15:33:59',
    'pharmacist Olawale Oladosu',
    '2025-07-10 15:41:40',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    134,
    '7/2505/GOH',
    'ydlsf.1752160400252',
    NULL,
    'Lab Test: Full Blood Count',
    1,
    4500.00,
    4500.00,
    'service',
    '2025-07-10 16:13:20',
    'Doctor Dele Fadairo',
    '2025-07-10 16:23:25',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    135,
    '7/2505/GOH',
    'ydlsf.1752160400252',
    NULL,
    'Consultation',
    1,
    2000.00,
    2000.00,
    'service',
    '2025-07-10 16:13:20',
    'Doctor Dele Fadairo',
    '2025-07-10 16:23:25',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    138,
    '3/2504/GOH',
    'xmx4b.1752160846201',
    NULL,
    'Lab Test: Full Blood Count',
    1,
    4500.00,
    4500.00,
    'service',
    '2025-07-10 16:20:46',
    'Doctor Dele Fadairo',
    '2025-07-10 16:31:31',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    139,
    '3/2504/GOH',
    'xmx4b.1752160846201',
    NULL,
    'Consultation',
    1,
    2000.00,
    2000.00,
    'service',
    '2025-07-10 16:20:46',
    'Doctor Dele Fadairo',
    '2025-07-10 16:31:31',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    140,
    '3/2504/GOH',
    '9ful1.1752163617229',
    NULL,
    'Lab Test: Full Blood Count',
    1,
    4500.00,
    4500.00,
    'service',
    '2025-07-10 17:06:57',
    'Nurse Abebi Konsu',
    '2025-07-10 17:09:28',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    141,
    '3/2504/GOH',
    '9ful1.1752163617229',
    NULL,
    'Ultrasound: Abdomen',
    1,
    15000.00,
    15000.00,
    'service',
    '2025-07-10 17:06:57',
    'Nurse Abebi Konsu',
    '2025-07-10 17:09:28',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    142,
    '2/2504/GOH',
    'ejy9y.1752163646430',
    NULL,
    'Lab Test: Full Blood Count',
    1,
    4500.00,
    4500.00,
    'service',
    '2025-07-10 17:07:26',
    'Nurse Abebi Konsu',
    '2025-07-10 17:10:09',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    143,
    '2/2504/GOH',
    'ejy9y.1752163646430',
    NULL,
    'Ultrasound: Abdomen',
    1,
    15000.00,
    15000.00,
    'service',
    '2025-07-10 17:07:26',
    'Nurse Abebi Konsu',
    '2025-07-10 17:10:09',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    144,
    '2/2504/GOH',
    'ejy9y.1752163646430',
    NULL,
    'Consultation',
    1,
    2000.00,
    2000.00,
    'service',
    '2025-07-10 17:07:26',
    'Nurse Abebi Konsu',
    '2025-07-10 17:10:09',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    145,
    '3/2504/GOH',
    'ae17m.1752163681067',
    NULL,
    'Ultrasound: Pelvic',
    1,
    5000.00,
    5000.00,
    'service',
    '2025-07-10 17:08:01',
    'Nurse Abebi Konsu',
    '2025-07-10 17:10:40',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    146,
    '3/2504/GOH',
    'ae17m.1752163681067',
    NULL,
    'X-ray: Chest',
    1,
    7000.00,
    7000.00,
    'service',
    '2025-07-10 17:08:01',
    'Nurse Abebi Konsu',
    '2025-07-10 17:10:40',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    147,
    '7/2505/GOH',
    'k75y4.1752174453405',
    838,
    'P.C.M Tab',
    18,
    9.00,
    162.00,
    'inventory',
    '2025-07-10 20:07:33',
    'Nurse Abebi Konsu',
    '2025-07-10 20:09:21',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    148,
    '7/2505/GOH',
    'k75y4.1752174453405',
    279,
    'Aldomet',
    20,
    18.00,
    360.00,
    'inventory',
    '2025-07-10 20:07:33',
    'Nurse Abebi Konsu',
    '2025-07-10 20:09:21',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    149,
    '7/2505/GOH',
    'k75y4.1752174453405',
    NULL,
    'Consultation',
    1,
    2000.00,
    2000.00,
    'service',
    '2025-07-10 20:07:33',
    'Nurse Abebi Konsu',
    '2025-07-10 20:09:21',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    150,
    '2/2504/GOH',
    '9wzzs.1752177591222',
    NULL,
    'Consultation',
    1,
    2000.00,
    2000.00,
    'service',
    '2025-07-10 20:59:51',
    'pharmacist Olawale Oladosu',
    '2025-07-10 21:01:44',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    154,
    '2/2504/GOH',
    'r7ylq.1752178077423',
    NULL,
    'Lab Test: Full Blood Count',
    1,
    4500.00,
    4500.00,
    'service',
    '2025-07-10 21:07:57',
    'Nurse Abebi Konsu',
    '2025-07-10 21:12:26',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    155,
    '2/2504/GOH',
    'stryg.1752178784564',
    NULL,
    'Lab Test: Full Blood Count',
    1,
    4500.00,
    4500.00,
    'service',
    '2025-07-10 21:19:44',
    'Nurse Abebi Konsu',
    '2025-07-10 21:20:37',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    156,
    '2/2504/GOH',
    'stryg.1752178784564',
    NULL,
    'Consultation',
    1,
    2000.00,
    2000.00,
    'service',
    '2025-07-10 21:19:44',
    'Nurse Abebi Konsu',
    '2025-07-10 21:20:37',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    157,
    '2/2504/GOH',
    'e0ctx.1752178773561',
    NULL,
    'Lab Test: Full Blood Count',
    1,
    4500.00,
    4500.00,
    'service',
    '2025-07-10 21:19:33',
    'Nurse Abebi Konsu',
    '2025-07-10 21:21:14',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    158,
    '2/2504/GOH',
    'e0ctx.1752178773561',
    NULL,
    'Consultation',
    1,
    2000.00,
    2000.00,
    'service',
    '2025-07-10 21:19:33',
    'Nurse Abebi Konsu',
    '2025-07-10 21:21:14',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    185,
    '2/2504/GOH',
    'gf5ha.1752180260299',
    NULL,
    'Lab Test: Full Blood Count',
    1,
    4500.00,
    4500.00,
    'service',
    '2025-07-10 21:44:20',
    'Nurse Abebi Konsu',
    '2025-07-10 22:28:14',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    186,
    '2/2504/GOH',
    'gf5ha.1752180260299',
    NULL,
    'Consultation',
    1,
    2000.00,
    2000.00,
    'service',
    '2025-07-10 21:44:20',
    'Nurse Abebi Konsu',
    '2025-07-10 22:28:14',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    193,
    '2/2504/GOH',
    'ac9y6.1752180270158',
    NULL,
    'Lab Test: Full Blood Count',
    1,
    4500.00,
    4500.00,
    'service',
    '2025-07-10 21:44:30',
    'Nurse Abebi Konsu',
    '2025-07-10 23:56:36',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    194,
    '2/2504/GOH',
    'ac9y6.1752180270158',
    NULL,
    'Consultation',
    1,
    2000.00,
    2000.00,
    'service',
    '2025-07-10 21:44:30',
    'Nurse Abebi Konsu',
    '2025-07-10 23:56:36',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    195,
    '11/2507/GOH',
    'scqzl.1753044318748',
    NULL,
    'Consultation',
    1,
    2000.00,
    2000.00,
    'service',
    '2025-07-20 21:45:18',
    'Doctor Dele Fadairo',
    '2025-07-20 21:57:07',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    196,
    '12/2507/GOH',
    'qhxsp.1753544038289',
    NULL,
    'Ultrasound: Abdomen',
    1,
    15000.00,
    15000.00,
    'service',
    '2025-07-26 16:33:58',
    'Lab Scientist Mopelola Ajasa',
    '2025-07-26 16:35:29',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    197,
    '12/2507/GOH',
    'qhxsp.1753544038289',
    NULL,
    'Consultation',
    1,
    2000.00,
    2000.00,
    'service',
    '2025-07-26 16:33:58',
    'Lab Scientist Mopelola Ajasa',
    '2025-07-26 16:35:29',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    198,
    '12/2507/GOH',
    'qhxsp.1753544038289',
    NULL,
    'X-ray: Chest',
    1,
    7000.00,
    7000.00,
    'service',
    '2025-07-26 16:33:58',
    'Lab Scientist Mopelola Ajasa',
    '2025-07-26 16:35:29',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    199,
    '20/2508/GOH',
    '5c2nm.1754242931623',
    893,
    'Elaquine',
    9,
    22.50,
    202.50,
    'inventory',
    '2025-08-03 18:42:11',
    'Doctor Abiodun Salako',
    '2025-08-03 18:43:50',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    200,
    '20/2508/GOH',
    '5c2nm.1754242931623',
    838,
    'P.C.M Tab',
    18,
    9.60,
    172.80,
    'inventory',
    '2025-08-03 18:42:11',
    'Doctor Abiodun Salako',
    '2025-08-03 18:43:50',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    201,
    '12/2507/GOH',
    'sales.1755874350345',
    NULL,
    'PCV',
    1,
    2000.00,
    2000.00,
    'service',
    '2025-08-22 15:52:30',
    'Doctor Abiodun Salako',
    '2025-08-22 15:52:38',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    203,
    'customer',
    'sales.1755874443261',
    NULL,
    'MD Consultation',
    1,
    5000.00,
    5000.00,
    'service',
    '2025-08-22 15:54:03',
    'Doctor Abiodun Salako',
    '2025-08-22 15:54:05',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    204,
    'customer',
    'sales.1755874886233',
    NULL,
    'MO Consultation',
    1,
    2000.00,
    2000.00,
    'service',
    '2025-08-22 16:01:26',
    'Doctor Abiodun Salako',
    '2025-08-22 16:01:28',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    205,
    'customer',
    'sales.1755875062026',
    NULL,
    'MO Consultation',
    1,
    2000.00,
    2000.00,
    'service',
    '2025-08-22 16:04:22',
    'Doctor Abiodun Salako',
    '2025-08-22 16:04:24',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    206,
    'customer',
    'sales.1755875079029',
    NULL,
    'MO Consultation',
    1,
    2000.00,
    2000.00,
    'service',
    '2025-08-22 16:04:39',
    'Doctor Abiodun Salako',
    '2025-08-22 16:04:40',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    207,
    'customer',
    'sales.1755875302573',
    NULL,
    'MO Consultation',
    1,
    2000.00,
    2000.00,
    'service',
    '2025-08-22 16:08:22',
    'Doctor Abiodun Salako',
    '2025-08-22 16:08:24',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    211,
    'customer',
    'sales.1755875564505',
    NULL,
    'MO Consultation',
    1,
    2000.00,
    2000.00,
    'service',
    '2025-08-22 16:12:44',
    'Doctor Abiodun Salako',
    '2025-08-22 16:12:46',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    218,
    'customer',
    'sales.1755939261857',
    NULL,
    'MO Consultation',
    1,
    2000.00,
    2000.00,
    'service',
    '2025-08-23 09:54:21',
    'Doctor Abiodun Salako',
    '2025-08-23 09:54:27',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    221,
    'customer',
    'sales.1755955600045',
    NULL,
    'MO Consultation',
    1,
    2000.00,
    2000.00,
    'service',
    '2025-08-23 14:26:40',
    'Doctor Abiodun Salako',
    '2025-08-23 14:26:42',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    222,
    'customer',
    'sales.1755955600045',
    NULL,
    'MD Consultation',
    1,
    5000.00,
    5000.00,
    'service',
    '2025-08-23 14:26:40',
    'Doctor Abiodun Salako',
    '2025-08-23 14:26:42',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    223,
    'customer',
    'sales.1756111289851',
    NULL,
    'PCV',
    1,
    2000.00,
    2000.00,
    'service',
    '2025-08-25 09:41:29',
    'Doctor Abiodun Salako',
    '2025-08-25 09:41:40',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    224,
    'customer',
    'sales.1756647693321',
    NULL,
    'PCV',
    1,
    2000.00,
    2000.00,
    'service',
    '2025-08-31 14:41:33',
    'Doctor Abiodun Salako',
    '2025-08-31 14:41:41',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    225,
    '19/2507/GOH',
    'kri03.1756481714789',
    NULL,
    'MO Consultation',
    1,
    2000.00,
    2000.00,
    'service',
    '2025-08-29 16:35:14',
    'Doctor Abiodun Salako',
    '2025-08-31 14:44:29',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    226,
    'customer',
    'sales.1757167460258',
    NULL,
    'PCV',
    1,
    2000.00,
    2000.00,
    'service',
    '2025-09-06 15:04:20',
    'Doctor Abiodun Salako',
    '2025-09-06 15:04:29',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    227,
    'customer',
    'sales.1757167460258',
    NULL,
    'MO Consultation',
    1,
    2000.00,
    2000.00,
    'service',
    '2025-09-06 15:04:20',
    'Doctor Abiodun Salako',
    '2025-09-06 15:04:29',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    228,
    '21/2508/GOH',
    'sn125.1756731169422',
    492,
    'CHLORPROMAZINE 100MG TAB',
    10,
    120.00,
    1200.00,
    'inventory',
    '2025-09-20 12:52:46',
    'Doctor Abiodun Salako',
    '2025-09-21 09:56:08',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    229,
    '21/2508/GOH',
    'sn125.1756731169422',
    706,
    'GLIBENCLAMIDE 5MG (DIATAB) TAB',
    20,
    70.00,
    1400.00,
    'inventory',
    '2025-09-20 12:52:46',
    'Doctor Abiodun Salako',
    '2025-09-21 09:56:08',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    232,
    '21/2508/GOH',
    '2',
    NULL,
    'PCV',
    1,
    2000.00,
    2000.00,
    'service',
    '2025-09-13 12:03:33',
    'Doctor Abiodun Salako',
    '2025-09-25 18:35:06',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    233,
    '22/2508/GOH',
    'zn4pr.1759418103400',
    492,
    'CHLORPROMAZINE 100MG TAB',
    10,
    250.00,
    2500.00,
    'inventory',
    '2025-10-02 16:15:03',
    'Doctor Abiodun Salako',
    '2025-10-02 16:17:46',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    234,
    '22/2508/GOH',
    'zn4pr.1759418103400',
    838,
    'pcm tab',
    18,
    9.00,
    162.00,
    'inventory',
    '2025-10-02 16:15:03',
    'Doctor Abiodun Salako',
    '2025-10-02 16:17:46',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    235,
    '22/2508/GOH',
    'zn4pr.1759418103400',
    829,
    'Omeprazole Inj.',
    1,
    750.00,
    750.00,
    'inventory',
    '2025-10-02 16:15:03',
    'Doctor Abiodun Salako',
    '2025-10-02 16:17:46',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    236,
    '22/2508/GOH',
    'zn4pr.1759418103400',
    NULL,
    'MO Consultation',
    1,
    2000.00,
    2000.00,
    'service',
    '2025-10-02 16:15:03',
    'Doctor Abiodun Salako',
    '2025-10-02 16:17:46',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    237,
    '22/2508/GOH',
    '1',
    NULL,
    'PCV',
    1,
    2000.00,
    2000.00,
    'service',
    '2025-09-02 12:27:20',
    'Doctor Abiodun Salako',
    '2025-10-02 18:12:36',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    242,
    '7/2505/GOH',
    '0su2m.1759482868397',
    838,
    'pcm tab',
    18,
    13.00,
    234.00,
    'inventory',
    '2025-10-03 10:14:28',
    'Doctor Abiodun Salako',
    '2025-10-03 10:23:56',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    243,
    '7/2505/GOH',
    '0su2m.1759482868397',
    893,
    'Elaquine',
    9,
    40.00,
    360.00,
    'inventory',
    '2025-10-03 10:14:28',
    'Doctor Abiodun Salako',
    '2025-10-03 10:23:56',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    244,
    '7/2505/GOH',
    '0su2m.1759482868397',
    592,
    'Diclofenac Inj.',
    1,
    100.00,
    100.00,
    'inventory',
    '2025-10-03 10:14:28',
    'Doctor Abiodun Salako',
    '2025-10-03 10:23:56',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    245,
    '7/2505/GOH',
    '0su2m.1759482868397',
    NULL,
    'MO Consultation',
    1,
    2000.00,
    2000.00,
    'service',
    '2025-10-03 10:14:28',
    'Doctor Abiodun Salako',
    '2025-10-03 10:23:56',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    247,
    '7/2505/GOH',
    '5',
    NULL,
    'widal test',
    1,
    7500.00,
    7500.00,
    'service',
    '2025-10-03 10:08:03',
    'Doctor Abiodun Salako',
    '2025-10-03 11:01:32',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    248,
    '22/2508/GOH',
    '4',
    NULL,
    'PCV',
    1,
    2000.00,
    2000.00,
    'service',
    '2025-10-02 16:06:38',
    'Doctor Abiodun Salako',
    '2025-10-03 11:48:12',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    271,
    '6/2504/GOH',
    '6',
    NULL,
    'widal test',
    1,
    7500.00,
    7500.00,
    'service',
    '2025-10-03 13:42:19',
    'Doctor Abiodun Salako',
    '2025-10-03 16:28:34',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    272,
    '6/2504/GOH',
    '6',
    NULL,
    'PCV',
    1,
    2000.00,
    2000.00,
    'service',
    '2025-10-03 13:42:19',
    'Doctor Abiodun Salako',
    '2025-10-03 16:28:34',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    273,
    '22/2508/GOH',
    'zn4pr.1759418103400',
    NULL,
    'MD Consultation',
    1,
    5000.00,
    5000.00,
    'service',
    '2025-10-03 16:30:24',
    'Doctor Abiodun Salako',
    '2025-10-03 16:31:13',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    278,
    '9/2507/GOH',
    '1dlbz.1759505999985',
    893,
    'Elaquine',
    9,
    10.00,
    90.00,
    'inventory',
    '2025-10-03 16:39:59',
    'Doctor Abiodun Salako',
    '2025-10-03 16:42:31',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    279,
    '9/2507/GOH',
    '1dlbz.1759505999985',
    838,
    'pcm tab',
    27,
    13.00,
    351.00,
    'inventory',
    '2025-10-03 16:39:59',
    'Doctor Abiodun Salako',
    '2025-10-03 16:42:31',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    280,
    '9/2507/GOH',
    '1dlbz.1759505999985',
    251,
    '5% Dextrose water',
    3,
    900.00,
    2700.00,
    'inventory',
    '2025-10-03 16:39:59',
    'Doctor Abiodun Salako',
    '2025-10-03 16:42:31',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    281,
    '9/2507/GOH',
    '1dlbz.1759505999985',
    NULL,
    'MO Consultation',
    1,
    2000.00,
    2000.00,
    'service',
    '2025-10-03 16:39:59',
    'Doctor Abiodun Salako',
    '2025-10-03 16:42:31',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    282,
    '9/2507/GOH',
    '7',
    NULL,
    'widal test',
    1,
    7500.00,
    7500.00,
    'service',
    '2025-10-03 16:37:32',
    'Doctor Abiodun Salako',
    '2025-10-03 16:47:59',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    283,
    '9/2507/GOH',
    '1dlbz.1759505999985',
    251,
    '5% Dextrose water',
    1,
    1500.00,
    1500.00,
    'inventory',
    '2025-10-03 18:23:03',
    'Doctor Abiodun Salako',
    '2025-10-03 18:24:28',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    284,
    '4/2504/GOH',
    'vbuke.1759558396759',
    251,
    '5% Dextrose water',
    1,
    1500.00,
    1500.00,
    'inventory',
    '2025-10-04 07:13:16',
    'Doctor Abiodun Salako',
    '2025-10-04 07:14:47',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    285,
    '4/2504/GOH',
    'vbuke.1759558396759',
    893,
    'Elaquine',
    9,
    10.00,
    90.00,
    'inventory',
    '2025-10-04 07:13:16',
    'Doctor Abiodun Salako',
    '2025-10-04 07:14:47',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    286,
    '4/2504/GOH',
    'vbuke.1759558396759',
    838,
    'pcm tab',
    18,
    13.00,
    234.00,
    'inventory',
    '2025-10-04 07:13:16',
    'Doctor Abiodun Salako',
    '2025-10-04 07:14:47',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    287,
    '4/2504/GOH',
    'vbuke.1759558396759',
    885,
    'vitamin C(100)',
    84,
    10.00,
    840.00,
    'inventory',
    '2025-10-04 07:18:14',
    'Doctor Abiodun Salako',
    '2025-10-04 07:20:00',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    288,
    '12/2507/GOH',
    'v2uoz.1759561442965',
    838,
    'pcm tab',
    18,
    13.00,
    234.00,
    'inventory',
    '2025-10-04 08:04:02',
    'Doctor Abiodun Salako',
    '2025-10-04 08:08:19',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    289,
    '12/2507/GOH',
    'v2uoz.1759561442965',
    NULL,
    'MD Consultation',
    1,
    5000.00,
    5000.00,
    'service',
    '2025-10-04 08:04:02',
    'Doctor Abiodun Salako',
    '2025-10-04 08:08:19',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    290,
    '12/2507/GOH',
    'v2uoz.1759561442965',
    829,
    'Omeprazole Inj.',
    1,
    750.00,
    750.00,
    'inventory',
    '2025-10-04 08:12:09',
    'Doctor Abiodun Salako',
    '2025-10-04 08:13:53',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    291,
    '12/2507/GOH',
    'v2uoz.1759561442965',
    NULL,
    'MO Consultation',
    1,
    2000.00,
    2000.00,
    'service',
    '2025-10-04 08:12:09',
    'Doctor Abiodun Salako',
    '2025-10-04 08:13:53',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    292,
    '12/2507/GOH',
    'v2uoz.1759561442965',
    NULL,
    'MD Consultation',
    1,
    5000.00,
    5000.00,
    'service',
    '2025-10-04 08:16:20',
    'Doctor Abiodun Salako',
    '2025-10-04 08:16:56',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    293,
    '19/2507/GOH',
    '10',
    NULL,
    'PCV',
    1,
    2000.00,
    2000.00,
    'service',
    '2025-11-16 10:27:58',
    'Doctor Abiodun Salako',
    '2025-11-25 10:04:52',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-11-25 10:04:52'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    294,
    '23/2510/GOH',
    '15',
    NULL,
    'widal test',
    1,
    7500.00,
    7500.00,
    'service',
    '2025-12-25 08:41:49',
    'Doctor Abiodun Salako',
    '2025-12-25 08:43:43',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-12-25 08:43:43'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    295,
    '23/2510/GOH',
    '16',
    NULL,
    'PCV',
    1,
    2000.00,
    2000.00,
    'service',
    '2025-12-25 15:12:39',
    'Doctor Abiodun Salako',
    '2025-12-25 15:17:01',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-12-25 15:17:01'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    296,
    '23/2510/GOH',
    'tzesl.1766672134843',
    838,
    'pcm tab',
    18,
    13.00,
    234.00,
    'inventory',
    '2025-12-25 15:15:34',
    'Doctor Abiodun Salako',
    '2025-12-25 15:27:13',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-12-25 15:27:13'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    307,
    '22/2508/GOH',
    'h5otn.1766744913963',
    NULL,
    'MD Consultation',
    1,
    5000.00,
    5000.00,
    'service',
    '2025-12-26 11:45:31',
    'Doctor Abiodun Salako',
    '2025-12-26 11:48:37',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2025-12-26 11:48:37'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    308,
    '7/2505/GOH',
    '7zx93.1767545969441',
    838,
    'pcm tab',
    18,
    13.00,
    234.00,
    'inventory',
    '2026-01-04 17:59:29',
    'Doctor Abiodun Salako',
    '2026-01-04 18:00:29',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2026-01-04 18:00:29'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    309,
    '7/2505/GOH',
    '7zx93.1767545969441',
    893,
    'Elaquine',
    9,
    10.00,
    90.00,
    'inventory',
    '2026-01-04 17:59:29',
    'Doctor Abiodun Salako',
    '2026-01-04 18:00:29',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2026-01-04 18:00:29'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    310,
    '7/2505/GOH',
    '7zx93.1767545969441',
    NULL,
    'MO Consultation',
    1,
    2000.00,
    2000.00,
    'service',
    '2026-01-04 17:59:29',
    'Doctor Abiodun Salako',
    '2026-01-04 18:00:29',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2026-01-04 18:00:29'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    311,
    '26/2601/GOH',
    'dydvm.1767634322927',
    838,
    'pcm tab',
    18,
    13.00,
    234.00,
    'inventory',
    '2026-01-05 18:32:02',
    'Doctor Abiodun Salako',
    '2026-01-05 18:33:03',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2026-01-05 18:33:03'
  );
INSERT INTO
  `bills` (
    `id`,
    `patient_id`,
    `session_id`,
    `inventory_id`,
    `item_name`,
    `quantity`,
    `unit_price`,
    `amount_price`,
    `item_type`,
    `rx_time`,
    `billed_by`,
    `created_at`,
    `discount_type`,
    `discount_value`,
    `discount_amount`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    312,
    '26/2601/GOH',
    'dydvm.1767634322927',
    NULL,
    'MD Consultation',
    1,
    5000.00,
    5000.00,
    'service',
    '2026-01-05 18:32:02',
    'Doctor Abiodun Salako',
    '2026-01-05 18:33:03',
    'percent',
    0.00,
    0.00,
    1,
    NULL,
    NULL,
    0,
    '2026-01-05 18:33:03'
  );

# ------------------------------------------------------------
# DATA DUMP FOR TABLE: clinical_categories
# ------------------------------------------------------------


# ------------------------------------------------------------
# DATA DUMP FOR TABLE: clinical_suggestions
# ------------------------------------------------------------


# ------------------------------------------------------------
# DATA DUMP FOR TABLE: common_clinical_hx
# ------------------------------------------------------------

INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    1,
    'Fever',
    'Patient reports elevated body temperature',
    'General',
    NULL,
    '2025-08-22 11:54:45',
    '2025-08-22 11:54:45'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    2,
    'Cough',
    'Patient reports coughing',
    'Respiratory',
    NULL,
    '2025-08-22 11:54:45',
    '2025-08-22 11:54:45'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    3,
    'Shortness of breath',
    'Difficulty breathing',
    'Respiratory',
    NULL,
    '2025-08-22 11:54:45',
    '2025-08-22 11:54:45'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    4,
    'Chest pain',
    'Pain in the chest area',
    'Cardiovascular',
    NULL,
    '2025-08-22 11:54:45',
    '2025-08-22 11:54:45'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    5,
    'Palpitations',
    'Awareness of heart beating',
    'Cardiovascular',
    NULL,
    '2025-08-22 11:54:45',
    '2025-08-22 11:54:45'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    6,
    'Fatigue',
    'Patient reports feeling tired',
    'General',
    NULL,
    '2025-08-22 11:54:45',
    '2025-08-22 11:54:45'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    7,
    'Weight loss',
    'Unintentional weight loss',
    'General',
    NULL,
    '2025-08-22 11:54:45',
    '2025-08-22 11:54:45'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    8,
    'Weight gain',
    'Unintentional weight gain',
    'General',
    NULL,
    '2025-08-22 11:54:45',
    '2025-08-22 11:54:45'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    9,
    'Headache',
    'Patient reports headache',
    'Neurologic',
    NULL,
    '2025-08-22 11:54:45',
    '2025-08-22 11:54:45'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    10,
    'Dizziness',
    'Feeling lightheaded or faint',
    'Neurologic',
    NULL,
    '2025-08-22 11:54:45',
    '2025-08-22 11:54:45'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    11,
    'Abdominal pain',
    'Pain localized in the abdomen',
    'Gastrointestinal',
    NULL,
    '2025-08-22 11:54:45',
    '2025-08-22 11:54:45'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    12,
    'Nausea',
    'Feeling of wanting to vomit',
    'Gastrointestinal',
    NULL,
    '2025-08-22 11:54:45',
    '2025-08-22 11:54:45'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    13,
    'Vomiting',
    'Expulsion of stomach contents',
    'Gastrointestinal',
    NULL,
    '2025-08-22 11:54:45',
    '2025-08-22 11:54:45'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    14,
    'Diarrhea',
    'Loose or watery stools',
    'Gastrointestinal',
    NULL,
    '2025-08-22 11:54:45',
    '2025-08-22 11:54:45'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    15,
    'Constipation',
    'Difficulty in passing stools',
    'Gastrointestinal',
    NULL,
    '2025-08-22 11:54:45',
    '2025-08-22 11:54:45'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    16,
    'Jaundice',
    'Yellowing of eyes or skin',
    'Gastrointestinal',
    NULL,
    '2025-08-22 11:54:45',
    '2025-08-22 11:54:45'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    17,
    'Dysuria',
    'Painful urination',
    'Genitourinary',
    NULL,
    '2025-08-22 11:54:45',
    '2025-08-22 11:54:45'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    18,
    'Hematuria',
    'Blood in urine',
    'Genitourinary',
    NULL,
    '2025-08-22 11:54:45',
    '2025-08-22 11:54:45'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    19,
    'Frequent urination',
    'Increased frequency of urination',
    'Genitourinary',
    NULL,
    '2025-08-22 11:54:45',
    '2025-08-22 11:54:45'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    20,
    'Nocturia',
    'Nighttime urination',
    'Genitourinary',
    NULL,
    '2025-08-22 11:54:45',
    '2025-08-22 11:54:45'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    21,
    'Joint pain',
    'Pain in joints',
    'Musculoskeletal',
    NULL,
    '2025-08-22 11:54:45',
    '2025-08-22 11:54:45'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    22,
    'Muscle weakness',
    'Weakness in muscles',
    'Musculoskeletal',
    NULL,
    '2025-08-22 11:54:45',
    '2025-08-22 11:54:45'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    23,
    'Back pain',
    'Pain in the back',
    'Musculoskeletal',
    NULL,
    '2025-08-22 11:54:45',
    '2025-08-22 11:54:45'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    24,
    'Seizures',
    'History of convulsions',
    'Neurologic',
    NULL,
    '2025-08-22 11:54:45',
    '2025-08-22 11:54:45'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    25,
    'Loss of consciousness',
    'Patient reports episodes of unconsciousness',
    'Neurologic',
    NULL,
    '2025-08-22 11:54:45',
    '2025-08-22 11:54:45'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    26,
    'Memory loss',
    'Difficulty remembering things',
    'Neurologic',
    NULL,
    '2025-08-22 11:54:45',
    '2025-08-22 11:54:45'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    27,
    'Depression',
    'Symptoms of low mood or sadness',
    'Psychiatric',
    NULL,
    '2025-08-22 11:54:45',
    '2025-08-22 11:54:45'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    28,
    'Anxiety',
    'Symptoms of worry or tension',
    'Psychiatric',
    NULL,
    '2025-08-22 11:54:45',
    '2025-08-22 11:54:45'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    29,
    'Amenorrhea',
    'Absence of menstruation',
    'Obstetrics/Gynecology',
    NULL,
    '2025-08-22 11:54:45',
    '2025-08-22 11:54:45'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    30,
    'Menorrhagia',
    'Heavy menstrual bleeding',
    'Obstetrics/Gynecology',
    NULL,
    '2025-08-22 11:54:45',
    '2025-08-22 11:54:45'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    31,
    'Pregnancy',
    'Patient is pregnant',
    'Obstetrics/Gynecology',
    NULL,
    '2025-08-22 11:54:45',
    '2025-08-22 11:54:45'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    32,
    'Postpartum complaints',
    'Symptoms following delivery',
    'Obstetrics/Gynecology',
    NULL,
    '2025-08-22 11:54:45',
    '2025-08-22 11:54:45'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    33,
    'Poor feeding',
    'Infant has difficulty feeding',
    'Pediatrics',
    NULL,
    '2025-08-22 11:54:45',
    '2025-08-22 11:54:45'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    34,
    'Failure to thrive',
    'Child not gaining weight appropriately',
    'Pediatrics',
    NULL,
    '2025-08-22 11:54:45',
    '2025-08-22 11:54:45'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    35,
    'Crying excessively',
    'Infant/child cries more than usual',
    'Pediatrics',
    NULL,
    '2025-08-22 11:54:45',
    '2025-08-22 11:54:45'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    36,
    'Rash',
    'Skin rash observed or reported',
    'Infectious diseases',
    NULL,
    '2025-08-22 11:54:45',
    '2025-08-22 11:54:45'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    37,
    'Sore throat',
    'Painful throat',
    'Infectious diseases',
    NULL,
    '2025-08-22 11:54:45',
    '2025-08-22 11:54:45'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    38,
    'Swelling',
    'Localized swelling',
    'Infectious diseases',
    NULL,
    '2025-08-22 11:54:45',
    '2025-08-22 11:54:45'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    39,
    'Lymphadenopathy',
    'Swollen lymph nodes',
    'Infectious diseases',
    NULL,
    '2025-08-22 11:54:45',
    '2025-08-22 11:54:45'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    40,
    'Fever',
    'Patient reports elevated body temperature',
    'General',
    NULL,
    '2025-08-22 17:16:24',
    '2025-08-22 17:16:24'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    41,
    'Cough',
    'Patient reports coughing',
    'Respiratory',
    NULL,
    '2025-08-22 17:16:24',
    '2025-08-22 17:16:24'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    42,
    'Shortness of breath',
    'Difficulty breathing',
    'Respiratory',
    NULL,
    '2025-08-22 17:16:24',
    '2025-08-22 17:16:24'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    43,
    'Chest pain',
    'Pain in the chest area',
    'Cardiovascular',
    NULL,
    '2025-08-22 17:16:24',
    '2025-08-22 17:16:24'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    44,
    'Palpitations',
    'Awareness of heart beating',
    'Cardiovascular',
    NULL,
    '2025-08-22 17:16:24',
    '2025-08-22 17:16:24'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    45,
    'Fatigue',
    'Patient reports feeling tired',
    'General',
    NULL,
    '2025-08-22 17:16:24',
    '2025-08-22 17:16:24'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    46,
    'Weight loss',
    'Unintentional weight loss',
    'General',
    NULL,
    '2025-08-22 17:16:24',
    '2025-08-22 17:16:24'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    47,
    'Weight gain',
    'Unintentional weight gain',
    'General',
    NULL,
    '2025-08-22 17:16:24',
    '2025-08-22 17:16:24'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    48,
    'Headache',
    'Patient reports headache',
    'Neurologic',
    NULL,
    '2025-08-22 17:16:24',
    '2025-08-22 17:16:24'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    49,
    'Dizziness',
    'Feeling lightheaded or faint',
    'Neurologic',
    NULL,
    '2025-08-22 17:16:24',
    '2025-08-22 17:16:24'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    50,
    'Abdominal pain',
    'Pain localized in the abdomen',
    'Gastrointestinal',
    NULL,
    '2025-08-22 17:16:24',
    '2025-08-22 17:16:24'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    51,
    'Nausea',
    'Feeling of wanting to vomit',
    'Gastrointestinal',
    NULL,
    '2025-08-22 17:16:24',
    '2025-08-22 17:16:24'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    52,
    'Vomiting',
    'Expulsion of stomach contents',
    'Gastrointestinal',
    NULL,
    '2025-08-22 17:16:24',
    '2025-08-22 17:16:24'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    53,
    'Diarrhea',
    'Loose or watery stools',
    'Gastrointestinal',
    NULL,
    '2025-08-22 17:16:24',
    '2025-08-22 17:16:24'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    54,
    'Constipation',
    'Difficulty in passing stools',
    'Gastrointestinal',
    NULL,
    '2025-08-22 17:16:24',
    '2025-08-22 17:16:24'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    55,
    'Jaundice',
    'Yellowing of eyes or skin',
    'Gastrointestinal',
    NULL,
    '2025-08-22 17:16:24',
    '2025-08-22 17:16:24'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    56,
    'Dysuria',
    'Painful urination',
    'Genitourinary',
    NULL,
    '2025-08-22 17:16:24',
    '2025-08-22 17:16:24'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    57,
    'Hematuria',
    'Blood in urine',
    'Genitourinary',
    NULL,
    '2025-08-22 17:16:24',
    '2025-08-22 17:16:24'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    58,
    'Frequent urination',
    'Increased frequency of urination',
    'Genitourinary',
    NULL,
    '2025-08-22 17:16:24',
    '2025-08-22 17:16:24'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    59,
    'Nocturia',
    'Nighttime urination',
    'Genitourinary',
    NULL,
    '2025-08-22 17:16:24',
    '2025-08-22 17:16:24'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    60,
    'Joint pain',
    'Pain in joints',
    'Musculoskeletal',
    NULL,
    '2025-08-22 17:16:24',
    '2025-08-22 17:16:24'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    61,
    'Muscle weakness',
    'Weakness in muscles',
    'Musculoskeletal',
    NULL,
    '2025-08-22 17:16:24',
    '2025-08-22 17:16:24'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    62,
    'Back pain',
    'Pain in the back',
    'Musculoskeletal',
    NULL,
    '2025-08-22 17:16:24',
    '2025-08-22 17:16:24'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    63,
    'Seizures',
    'History of convulsions',
    'Neurologic',
    NULL,
    '2025-08-22 17:16:24',
    '2025-08-22 17:16:24'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    64,
    'Loss of consciousness',
    'Patient reports episodes of unconsciousness',
    'Neurologic',
    NULL,
    '2025-08-22 17:16:24',
    '2025-08-22 17:16:24'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    65,
    'Memory loss',
    'Difficulty remembering things',
    'Neurologic',
    NULL,
    '2025-08-22 17:16:24',
    '2025-08-22 17:16:24'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    66,
    'Depression',
    'Symptoms of low mood or sadness',
    'Psychiatric',
    NULL,
    '2025-08-22 17:16:24',
    '2025-08-22 17:16:24'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    67,
    'Anxiety',
    'Symptoms of worry or tension',
    'Psychiatric',
    NULL,
    '2025-08-22 17:16:24',
    '2025-08-22 17:16:24'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    68,
    'Amenorrhea',
    'Absence of menstruation',
    'Obstetrics/Gynecology',
    NULL,
    '2025-08-22 17:16:24',
    '2025-08-22 17:16:24'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    69,
    'Menorrhagia',
    'Heavy menstrual bleeding',
    'Obstetrics/Gynecology',
    NULL,
    '2025-08-22 17:16:24',
    '2025-08-22 17:16:24'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    70,
    'Pregnancy',
    'Patient is pregnant',
    'Obstetrics/Gynecology',
    NULL,
    '2025-08-22 17:16:24',
    '2025-08-22 17:16:24'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    71,
    'Postpartum complaints',
    'Symptoms following delivery',
    'Obstetrics/Gynecology',
    NULL,
    '2025-08-22 17:16:24',
    '2025-08-22 17:16:24'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    72,
    'Poor feeding',
    'Infant has difficulty feeding',
    'Pediatrics',
    NULL,
    '2025-08-22 17:16:24',
    '2025-08-22 17:16:24'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    73,
    'Failure to thrive',
    'Child not gaining weight appropriately',
    'Pediatrics',
    NULL,
    '2025-08-22 17:16:24',
    '2025-08-22 17:16:24'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    74,
    'Crying excessively',
    'Infant/child cries more than usual',
    'Pediatrics',
    NULL,
    '2025-08-22 17:16:24',
    '2025-08-22 17:16:24'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    75,
    'Rash',
    'Skin rash observed or reported',
    'Infectious diseases',
    NULL,
    '2025-08-22 17:16:24',
    '2025-08-22 17:16:24'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    76,
    'Sore throat',
    'Painful throat',
    'Infectious diseases',
    NULL,
    '2025-08-22 17:16:24',
    '2025-08-22 17:16:24'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    77,
    'Swelling',
    'Localized swelling',
    'Infectious diseases',
    NULL,
    '2025-08-22 17:16:24',
    '2025-08-22 17:16:24'
  );
INSERT INTO
  `common_clinical_hx` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    78,
    'Lymphadenopathy',
    'Swollen lymph nodes',
    'Infectious diseases',
    NULL,
    '2025-08-22 17:16:24',
    '2025-08-22 17:16:24'
  );

# ------------------------------------------------------------
# DATA DUMP FOR TABLE: common_oe_findings
# ------------------------------------------------------------

INSERT INTO
  `common_oe_findings` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    1,
    'Not pale',
    'Patient shows no pallor',
    'General',
    NULL,
    '2025-08-22 11:46:13',
    '2025-08-22 11:46:13'
  );
INSERT INTO
  `common_oe_findings` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    2,
    'Pale',
    'Patient appears pale',
    'General',
    NULL,
    '2025-08-22 11:46:13',
    '2025-08-22 11:46:13'
  );
INSERT INTO
  `common_oe_findings` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    3,
    'Not jaundiced',
    'No yellowing of the skin or eyes',
    'General',
    NULL,
    '2025-08-22 11:46:13',
    '2025-08-22 11:46:13'
  );
INSERT INTO
  `common_oe_findings` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    4,
    'Jaundiced',
    'Yellow discoloration observed',
    'General',
    NULL,
    '2025-08-22 11:46:13',
    '2025-08-22 11:46:13'
  );
INSERT INTO
  `common_oe_findings` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    5,
    'Not cyanosed',
    'No bluish discoloration',
    'General',
    NULL,
    '2025-08-22 11:46:13',
    '2025-08-22 11:46:13'
  );
INSERT INTO
  `common_oe_findings` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    6,
    'Cyanosed',
    'Bluish discoloration of lips/extremities',
    'General',
    NULL,
    '2025-08-22 11:46:13',
    '2025-08-22 11:46:13'
  );
INSERT INTO
  `common_oe_findings` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    7,
    'Not dehydrated',
    'Hydration appears normal',
    'General',
    NULL,
    '2025-08-22 11:46:13',
    '2025-08-22 11:46:13'
  );
INSERT INTO
  `common_oe_findings` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    8,
    'Dehydrated',
    'Signs of dehydration observed',
    'General',
    NULL,
    '2025-08-22 11:46:13',
    '2025-08-22 11:46:13'
  );
INSERT INTO
  `common_oe_findings` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    9,
    'Restless',
    'Patient appears restless',
    'General',
    NULL,
    '2025-08-22 11:46:13',
    '2025-08-22 11:46:13'
  );
INSERT INTO
  `common_oe_findings` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    10,
    'Calm/Alert',
    'Patient is calm and alert',
    'General',
    NULL,
    '2025-08-22 11:46:13',
    '2025-08-22 11:46:13'
  );
INSERT INTO
  `common_oe_findings` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    11,
    'Conscious',
    'Patient is conscious',
    'Neurologic',
    NULL,
    '2025-08-22 11:46:13',
    '2025-08-22 11:46:13'
  );
INSERT INTO
  `common_oe_findings` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    12,
    'Drowsy',
    'Patient is drowsy but arousable',
    'Neurologic',
    NULL,
    '2025-08-22 11:46:13',
    '2025-08-22 11:46:13'
  );
INSERT INTO
  `common_oe_findings` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    13,
    'Unconscious',
    'Patient is unresponsive',
    'Neurologic',
    NULL,
    '2025-08-22 11:46:13',
    '2025-08-22 11:46:13'
  );
INSERT INTO
  `common_oe_findings` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    14,
    'Well nourished',
    'Normal nutritional status',
    'Nutrition/Hydration',
    NULL,
    '2025-08-22 11:46:13',
    '2025-08-22 11:46:13'
  );
INSERT INTO
  `common_oe_findings` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    15,
    'Moderately nourished',
    'Moderate nutritional status',
    'Nutrition/Hydration',
    NULL,
    '2025-08-22 11:46:13',
    '2025-08-22 11:46:13'
  );
INSERT INTO
  `common_oe_findings` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    16,
    'Poorly nourished',
    'Signs of malnutrition',
    'Nutrition/Hydration',
    NULL,
    '2025-08-22 11:46:13',
    '2025-08-22 11:46:13'
  );
INSERT INTO
  `common_oe_findings` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    17,
    'Obese',
    'Patient appears obese',
    'Nutrition/Hydration',
    NULL,
    '2025-08-22 11:46:13',
    '2025-08-22 11:46:13'
  );
INSERT INTO
  `common_oe_findings` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    18,
    'Afebrile',
    'No fever detected',
    'Vitals',
    NULL,
    '2025-08-22 11:46:13',
    '2025-08-22 11:46:13'
  );
INSERT INTO
  `common_oe_findings` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    19,
    'Febrile',
    'Fever present',
    'Vitals',
    NULL,
    '2025-08-22 11:46:13',
    '2025-08-22 11:46:13'
  );
INSERT INTO
  `common_oe_findings` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    20,
    'Not tachypnoeic',
    'Normal respiratory rate',
    'Vitals',
    NULL,
    '2025-08-22 11:46:13',
    '2025-08-22 11:46:13'
  );
INSERT INTO
  `common_oe_findings` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    21,
    'Tachypnoeic',
    'High respiratory rate',
    'Vitals',
    NULL,
    '2025-08-22 11:46:13',
    '2025-08-22 11:46:13'
  );
INSERT INTO
  `common_oe_findings` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    22,
    'Not tachycardic',
    'Normal heart rate',
    'Vitals',
    NULL,
    '2025-08-22 11:46:13',
    '2025-08-22 11:46:13'
  );
INSERT INTO
  `common_oe_findings` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    23,
    'Tachycardic',
    'High heart rate',
    'Vitals',
    NULL,
    '2025-08-22 11:46:13',
    '2025-08-22 11:46:13'
  );
INSERT INTO
  `common_oe_findings` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    24,
    'Not in pain',
    'No signs of discomfort',
    'Other',
    NULL,
    '2025-08-22 11:46:13',
    '2025-08-22 11:46:13'
  );
INSERT INTO
  `common_oe_findings` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    25,
    'In obvious pain',
    'Patient shows signs of pain',
    'Other',
    NULL,
    '2025-08-22 11:46:13',
    '2025-08-22 11:46:13'
  );
INSERT INTO
  `common_oe_findings` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    26,
    'Anicteric',
    'No icterus observed',
    'General',
    NULL,
    '2025-08-22 11:46:13',
    '2025-08-22 11:46:13'
  );
INSERT INTO
  `common_oe_findings` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    27,
    'Acyanosed',
    'No cyanosis observed',
    'General',
    NULL,
    '2025-08-22 11:46:13',
    '2025-08-22 11:46:13'
  );
INSERT INTO
  `common_oe_findings` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    28,
    'Pulse regular',
    'Pulse is regular in rate and rhythm',
    'Cardiovascular',
    NULL,
    '2025-08-22 11:49:01',
    '2025-08-22 11:49:01'
  );
INSERT INTO
  `common_oe_findings` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    29,
    'Pulse irregular',
    'Irregular pulse observed',
    'Cardiovascular',
    NULL,
    '2025-08-22 11:49:01',
    '2025-08-22 11:49:01'
  );
INSERT INTO
  `common_oe_findings` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    30,
    'No murmurs',
    'No heart murmurs detected',
    'Cardiovascular',
    NULL,
    '2025-08-22 11:49:01',
    '2025-08-22 11:49:01'
  );
INSERT INTO
  `common_oe_findings` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    31,
    'Murmur present',
    'Heart murmur detected',
    'Cardiovascular',
    NULL,
    '2025-08-22 11:49:01',
    '2025-08-22 11:49:01'
  );
INSERT INTO
  `common_oe_findings` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    32,
    'No edema',
    'No swelling of extremities',
    'Cardiovascular',
    NULL,
    '2025-08-22 11:49:01',
    '2025-08-22 11:49:01'
  );
INSERT INTO
  `common_oe_findings` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    33,
    'Peripheral edema',
    'Swelling in lower limbs',
    'Cardiovascular',
    NULL,
    '2025-08-22 11:49:01',
    '2025-08-22 11:49:01'
  );
INSERT INTO
  `common_oe_findings` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    34,
    'Breath sounds clear',
    'No abnormal breath sounds',
    'Respiratory',
    NULL,
    '2025-08-22 11:49:01',
    '2025-08-22 11:49:01'
  );
INSERT INTO
  `common_oe_findings` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    35,
    'Wheeze present',
    'Wheezing detected',
    'Respiratory',
    NULL,
    '2025-08-22 11:49:01',
    '2025-08-22 11:49:01'
  );
INSERT INTO
  `common_oe_findings` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    36,
    'Crackles present',
    'Crackles heard on auscultation',
    'Respiratory',
    NULL,
    '2025-08-22 11:49:01',
    '2025-08-22 11:49:01'
  );
INSERT INTO
  `common_oe_findings` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    37,
    'No respiratory distress',
    'Breathing appears normal',
    'Respiratory',
    NULL,
    '2025-08-22 11:49:01',
    '2025-08-22 11:49:01'
  );
INSERT INTO
  `common_oe_findings` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    38,
    'Accessory muscle use',
    'Use of accessory muscles for breathing',
    'Respiratory',
    NULL,
    '2025-08-22 11:49:01',
    '2025-08-22 11:49:01'
  );
INSERT INTO
  `common_oe_findings` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    39,
    'Abdomen soft',
    'Abdomen soft on palpation',
    'Gastrointestinal',
    NULL,
    '2025-08-22 11:49:01',
    '2025-08-22 11:49:01'
  );
INSERT INTO
  `common_oe_findings` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    40,
    'Abdomen tender',
    'Tenderness noted on palpation',
    'Gastrointestinal',
    NULL,
    '2025-08-22 11:49:01',
    '2025-08-22 11:49:01'
  );
INSERT INTO
  `common_oe_findings` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    41,
    'No organomegaly',
    'No enlargement of liver/spleen',
    'Gastrointestinal',
    NULL,
    '2025-08-22 11:49:01',
    '2025-08-22 11:49:01'
  );
INSERT INTO
  `common_oe_findings` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    42,
    'Hepatomegaly',
    'Enlarged liver palpated',
    'Gastrointestinal',
    NULL,
    '2025-08-22 11:49:01',
    '2025-08-22 11:49:01'
  );
INSERT INTO
  `common_oe_findings` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    43,
    'Splenomegaly',
    'Enlarged spleen palpated',
    'Gastrointestinal',
    NULL,
    '2025-08-22 11:49:01',
    '2025-08-22 11:49:01'
  );
INSERT INTO
  `common_oe_findings` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    44,
    'Bowel sounds normal',
    'Normal bowel sounds heard',
    'Gastrointestinal',
    NULL,
    '2025-08-22 11:49:01',
    '2025-08-22 11:49:01'
  );
INSERT INTO
  `common_oe_findings` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    45,
    'GCS 15/15',
    'Fully conscious, Glasgow Coma Scale normal',
    'Neurologic',
    NULL,
    '2025-08-22 11:49:01',
    '2025-08-22 11:49:01'
  );
INSERT INTO
  `common_oe_findings` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    46,
    'GCS <15',
    'Impaired consciousness, GCS less than 15',
    'Neurologic',
    NULL,
    '2025-08-22 11:49:01',
    '2025-08-22 11:49:01'
  );
INSERT INTO
  `common_oe_findings` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    47,
    'Power 5/5',
    'Normal muscle strength',
    'Neurologic',
    NULL,
    '2025-08-22 11:49:01',
    '2025-08-22 11:49:01'
  );
INSERT INTO
  `common_oe_findings` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    48,
    'Power <5/5',
    'Reduced muscle strength',
    'Neurologic',
    NULL,
    '2025-08-22 11:49:01',
    '2025-08-22 11:49:01'
  );
INSERT INTO
  `common_oe_findings` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    49,
    'Reflexes normal',
    'Deep tendon reflexes normal',
    'Neurologic',
    NULL,
    '2025-08-22 11:49:01',
    '2025-08-22 11:49:01'
  );
INSERT INTO
  `common_oe_findings` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    50,
    'Reflexes exaggerated',
    'Hyperreflexia present',
    'Neurologic',
    NULL,
    '2025-08-22 11:49:01',
    '2025-08-22 11:49:01'
  );
INSERT INTO
  `common_oe_findings` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    51,
    'Pupils equal & reactive',
    'Pupils are equal and reactive to light',
    'HEENT',
    NULL,
    '2025-08-22 11:49:01',
    '2025-08-22 11:49:01'
  );
INSERT INTO
  `common_oe_findings` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    52,
    'Pupils unequal',
    'Anisocoria observed',
    'HEENT',
    NULL,
    '2025-08-22 11:49:01',
    '2025-08-22 11:49:01'
  );
INSERT INTO
  `common_oe_findings` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    53,
    'Oropharynx clear',
    'No lesions or exudates',
    'HEENT',
    NULL,
    '2025-08-22 11:49:01',
    '2025-08-22 11:49:01'
  );
INSERT INTO
  `common_oe_findings` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    54,
    'Tonsillar enlargement',
    'Tonsils enlarged',
    'HEENT',
    NULL,
    '2025-08-22 11:49:01',
    '2025-08-22 11:49:01'
  );
INSERT INTO
  `common_oe_findings` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    55,
    'No nasal discharge',
    'Nasal passages clear',
    'HEENT',
    NULL,
    '2025-08-22 11:49:01',
    '2025-08-22 11:49:01'
  );
INSERT INTO
  `common_oe_findings` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    56,
    'Conjunctiva normal',
    'No pallor or jaundice in eyes',
    'HEENT',
    NULL,
    '2025-08-22 11:49:01',
    '2025-08-22 11:49:01'
  );
INSERT INTO
  `common_oe_findings` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    57,
    'acynosed',
    'acynosed',
    'Custom',
    NULL,
    '2025-11-27 11:50:33',
    '2025-11-27 11:50:33'
  );
INSERT INTO
  `common_oe_findings` (
    `id`,
    `title`,
    `description`,
    `category`,
    `icd10_code`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    58,
    'there is tenderness on palpation',
    'there is tenderness on palpation',
    'Custom',
    NULL,
    '2025-12-25 23:44:10',
    '2025-12-25 23:44:10'
  );

# ------------------------------------------------------------
# DATA DUMP FOR TABLE: consultation_queue
# ------------------------------------------------------------

INSERT INTO
  `consultation_queue` (
    `id`,
    `patient_id`,
    `session_id`,
    `department`,
    `logged_by`,
    `doctor`,
    `status`,
    `date_time`,
    `attended_at`,
    `attended_by`
  )
VALUES
  (
    1,
    '22/2508/GOH',
    'clinic.1756812025712',
    'clinic',
    'Abiodun Salako',
    NULL,
    'attended',
    '2025-09-02 12:20:25',
    '2025-11-16 10:31:38',
    'Doctor Abiodun Salako'
  );
INSERT INTO
  `consultation_queue` (
    `id`,
    `patient_id`,
    `session_id`,
    `department`,
    `logged_by`,
    `doctor`,
    `status`,
    `date_time`,
    `attended_at`,
    `attended_by`
  )
VALUES
  (
    2,
    '21/2508/GOH',
    'clinic.1756812072301',
    'clinic',
    'Abiodun Salako',
    NULL,
    'attended',
    '2025-09-02 12:21:12',
    '2025-11-16 11:08:00',
    'Doctor Abiodun Salako'
  );
INSERT INTO
  `consultation_queue` (
    `id`,
    `patient_id`,
    `session_id`,
    `department`,
    `logged_by`,
    `doctor`,
    `status`,
    `date_time`,
    `attended_at`,
    `attended_by`
  )
VALUES
  (
    3,
    '19/2507/GOH',
    'clinic.1757835610032',
    'clinic',
    'Abiodun Salako',
    NULL,
    'attended',
    '2025-09-14 08:40:10',
    '2025-11-16 10:41:15',
    'Doctor Abiodun Salako'
  );
INSERT INTO
  `consultation_queue` (
    `id`,
    `patient_id`,
    `session_id`,
    `department`,
    `logged_by`,
    `doctor`,
    `status`,
    `date_time`,
    `attended_at`,
    `attended_by`
  )
VALUES
  (
    4,
    '18/2507/GOH',
    'clinic.1758864696954',
    'clinic',
    'Abiodun Salako',
    NULL,
    'attended',
    '2025-09-26 06:31:37',
    '2025-11-24 13:09:54',
    'Doctor Abiodun Salako'
  );
INSERT INTO
  `consultation_queue` (
    `id`,
    `patient_id`,
    `session_id`,
    `department`,
    `logged_by`,
    `doctor`,
    `status`,
    `date_time`,
    `attended_at`,
    `attended_by`
  )
VALUES
  (
    5,
    '7/2505/GOH',
    'clinic.1759481511337',
    'clinic',
    'Abiodun Salako',
    NULL,
    'attended',
    '2025-10-03 09:51:51',
    '2025-11-24 13:23:25',
    'Doctor Abiodun Salako'
  );
INSERT INTO
  `consultation_queue` (
    `id`,
    `patient_id`,
    `session_id`,
    `department`,
    `logged_by`,
    `doctor`,
    `status`,
    `date_time`,
    `attended_at`,
    `attended_by`
  )
VALUES
  (
    6,
    '6/2504/GOH',
    'clinic.1759481520803',
    'clinic',
    'Abiodun Salako',
    NULL,
    'attended',
    '2025-10-03 09:52:00',
    '2025-11-25 09:39:15',
    'Doctor Abiodun Salako'
  );
INSERT INTO
  `consultation_queue` (
    `id`,
    `patient_id`,
    `session_id`,
    `department`,
    `logged_by`,
    `doctor`,
    `status`,
    `date_time`,
    `attended_at`,
    `attended_by`
  )
VALUES
  (
    7,
    '9/2507/GOH',
    'clinic.1759481523934',
    'clinic',
    'Abiodun Salako',
    NULL,
    'attended',
    '2025-10-03 09:52:03',
    '2025-11-25 10:17:55',
    'Doctor Abiodun Salako'
  );
INSERT INTO
  `consultation_queue` (
    `id`,
    `patient_id`,
    `session_id`,
    `department`,
    `logged_by`,
    `doctor`,
    `status`,
    `date_time`,
    `attended_at`,
    `attended_by`
  )
VALUES
  (
    8,
    '4/2504/GOH',
    'clinic.1759557631280',
    'clinic',
    'Abiodun Salako',
    NULL,
    'skipped',
    '2025-10-04 07:00:31',
    '2025-11-26 07:34:50',
    NULL
  );
INSERT INTO
  `consultation_queue` (
    `id`,
    `patient_id`,
    `session_id`,
    `department`,
    `logged_by`,
    `doctor`,
    `status`,
    `date_time`,
    `attended_at`,
    `attended_by`
  )
VALUES
  (
    9,
    '8/2507/GOH',
    'clinic.1759557712525',
    'clinic',
    'Abiodun Salako',
    NULL,
    'skipped',
    '2025-10-04 07:01:52',
    '2025-11-26 07:34:50',
    NULL
  );
INSERT INTO
  `consultation_queue` (
    `id`,
    `patient_id`,
    `session_id`,
    `department`,
    `logged_by`,
    `doctor`,
    `status`,
    `date_time`,
    `attended_at`,
    `attended_by`
  )
VALUES
  (
    10,
    '12/2507/GOH',
    'clinic.1759561068934',
    'clinic',
    'Abiodun Salako',
    NULL,
    'attended',
    '2025-10-04 07:57:48',
    '2025-11-25 10:29:08',
    'Doctor Abiodun Salako'
  );
INSERT INTO
  `consultation_queue` (
    `id`,
    `patient_id`,
    `session_id`,
    `department`,
    `logged_by`,
    `doctor`,
    `status`,
    `date_time`,
    `attended_at`,
    `attended_by`
  )
VALUES
  (
    11,
    '11/2507/GOH',
    'clinic.1759561077005',
    'clinic',
    'Abiodun Salako',
    NULL,
    'skipped',
    '2025-10-04 07:57:57',
    '2025-11-26 07:34:50',
    NULL
  );
INSERT INTO
  `consultation_queue` (
    `id`,
    `patient_id`,
    `session_id`,
    `department`,
    `logged_by`,
    `doctor`,
    `status`,
    `date_time`,
    `attended_at`,
    `attended_by`
  )
VALUES
  (
    12,
    '10/2507/GOH',
    'clinic.1759910416611',
    'clinic',
    'Abiodun Salako',
    NULL,
    'skipped',
    '2025-10-08 09:00:19',
    '2025-11-24 09:45:28',
    'Doctor Abiodun Salako'
  );
INSERT INTO
  `consultation_queue` (
    `id`,
    `patient_id`,
    `session_id`,
    `department`,
    `logged_by`,
    `doctor`,
    `status`,
    `date_time`,
    `attended_at`,
    `attended_by`
  )
VALUES
  (
    13,
    '1/2504/GOH',
    'clinic.1759916441553',
    'clinic',
    'Abiodun Salako',
    NULL,
    'skipped',
    '2025-10-08 10:40:44',
    '2025-11-24 09:43:57',
    'Doctor Abiodun Salako'
  );
INSERT INTO
  `consultation_queue` (
    `id`,
    `patient_id`,
    `session_id`,
    `department`,
    `logged_by`,
    `doctor`,
    `status`,
    `date_time`,
    `attended_at`,
    `attended_by`
  )
VALUES
  (
    14,
    '22/2508/GOH',
    'clinic.1764106771397',
    'clinic',
    'Abiodun Salako',
    NULL,
    'skipped',
    '2025-11-25 22:39:31',
    '2025-11-26 10:53:36',
    NULL
  );
INSERT INTO
  `consultation_queue` (
    `id`,
    `patient_id`,
    `session_id`,
    `department`,
    `logged_by`,
    `doctor`,
    `status`,
    `date_time`,
    `attended_at`,
    `attended_by`
  )
VALUES
  (
    15,
    '23/2510/GOH',
    'clinic.1764168630492',
    'clinic',
    'Abiodun Salako',
    NULL,
    'skipped',
    '2025-11-26 15:50:30',
    '2025-11-27 07:12:27',
    NULL
  );
INSERT INTO
  `consultation_queue` (
    `id`,
    `patient_id`,
    `session_id`,
    `department`,
    `logged_by`,
    `doctor`,
    `status`,
    `date_time`,
    `attended_at`,
    `attended_by`
  )
VALUES
  (
    16,
    '23/2510/GOH',
    'clinic.1764240536355',
    'clinic',
    'Abiodun Salako',
    NULL,
    'skipped',
    '2025-11-27 11:48:56',
    '2025-11-28 08:39:31',
    NULL
  );
INSERT INTO
  `consultation_queue` (
    `id`,
    `patient_id`,
    `session_id`,
    `department`,
    `logged_by`,
    `doctor`,
    `status`,
    `date_time`,
    `attended_at`,
    `attended_by`
  )
VALUES
  (
    17,
    '22/2508/GOH',
    'clinic.1765301004479',
    'clinic',
    'Abiodun Salako',
    NULL,
    'skipped',
    '2025-12-09 18:23:24',
    '2025-12-10 08:39:50',
    NULL
  );
INSERT INTO
  `consultation_queue` (
    `id`,
    `patient_id`,
    `session_id`,
    `department`,
    `logged_by`,
    `doctor`,
    `status`,
    `date_time`,
    `attended_at`,
    `attended_by`
  )
VALUES
  (
    18,
    '23/2510/GOH',
    'clinic.1765633280953',
    'clinic',
    'Abiodun Salako',
    NULL,
    'skipped',
    '2025-12-13 14:41:20',
    '2025-12-15 05:20:53',
    NULL
  );
INSERT INTO
  `consultation_queue` (
    `id`,
    `patient_id`,
    `session_id`,
    `department`,
    `logged_by`,
    `doctor`,
    `status`,
    `date_time`,
    `attended_at`,
    `attended_by`
  )
VALUES
  (
    19,
    '23/2510/GOH',
    'clinic.1766589208432',
    'clinic',
    'Abiodun Salako',
    NULL,
    'attended',
    '2025-12-24 16:13:28',
    '2025-12-24 16:20:15',
    'Doctor Abiodun Salako'
  );
INSERT INTO
  `consultation_queue` (
    `id`,
    `patient_id`,
    `session_id`,
    `department`,
    `logged_by`,
    `doctor`,
    `status`,
    `date_time`,
    `attended_at`,
    `attended_by`
  )
VALUES
  (
    20,
    '23/2510/GOH',
    'clinic.1766646410273',
    'clinic',
    'Abiodun Salako',
    NULL,
    'attended',
    '2025-12-25 08:06:50',
    '2025-12-25 15:15:34',
    'Doctor Abiodun Salako'
  );
INSERT INTO
  `consultation_queue` (
    `id`,
    `patient_id`,
    `session_id`,
    `department`,
    `logged_by`,
    `doctor`,
    `status`,
    `date_time`,
    `attended_at`,
    `attended_by`
  )
VALUES
  (
    21,
    '13/2507/GOH',
    'clinic.1766680020395',
    'clinic',
    'Abiodun Salako',
    NULL,
    'attended',
    '2025-12-25 17:27:00',
    '2025-12-25 21:23:28',
    'Doctor Abiodun Salako'
  );
INSERT INTO
  `consultation_queue` (
    `id`,
    `patient_id`,
    `session_id`,
    `department`,
    `logged_by`,
    `doctor`,
    `status`,
    `date_time`,
    `attended_at`,
    `attended_by`
  )
VALUES
  (
    22,
    '13/2507/GOH',
    'clinic.1766694338849',
    'clinic',
    'Abiodun Salako',
    NULL,
    'attended',
    '2025-12-25 21:25:38',
    '2025-12-25 23:49:45',
    'Doctor Abiodun Salako'
  );
INSERT INTO
  `consultation_queue` (
    `id`,
    `patient_id`,
    `session_id`,
    `department`,
    `logged_by`,
    `doctor`,
    `status`,
    `date_time`,
    `attended_at`,
    `attended_by`
  )
VALUES
  (
    23,
    '22/2508/GOH',
    'clinic.1766735391873',
    'clinic',
    'Abiodun Salako',
    NULL,
    'attended',
    '2025-12-26 08:49:51',
    '2025-12-26 11:28:33',
    'Doctor Abiodun Salako'
  );
INSERT INTO
  `consultation_queue` (
    `id`,
    `patient_id`,
    `session_id`,
    `department`,
    `logged_by`,
    `doctor`,
    `status`,
    `date_time`,
    `attended_at`,
    `attended_by`
  )
VALUES
  (
    24,
    '21/2508/GOH',
    'clinic.1766735401052',
    'clinic',
    'Abiodun Salako',
    NULL,
    'attended',
    '2025-12-26 08:50:01',
    '2025-12-26 12:11:17',
    'Doctor Abiodun Salako'
  );
INSERT INTO
  `consultation_queue` (
    `id`,
    `patient_id`,
    `session_id`,
    `department`,
    `logged_by`,
    `doctor`,
    `status`,
    `date_time`,
    `attended_at`,
    `attended_by`
  )
VALUES
  (
    25,
    '20/2508/GOH',
    'clinic.1766735433327',
    'clinic',
    'Abiodun Salako',
    NULL,
    'skipped',
    '2025-12-26 08:50:33',
    '2025-12-26 21:20:15',
    NULL
  );
INSERT INTO
  `consultation_queue` (
    `id`,
    `patient_id`,
    `session_id`,
    `department`,
    `logged_by`,
    `doctor`,
    `status`,
    `date_time`,
    `attended_at`,
    `attended_by`
  )
VALUES
  (
    26,
    '24/2512/GOH',
    'clinic.1766783437372',
    'clinic',
    'Abiodun Salako',
    NULL,
    'attended',
    '2025-12-26 22:10:37',
    '2025-12-26 23:45:13',
    'Doctor Abiodun Salako'
  );
INSERT INTO
  `consultation_queue` (
    `id`,
    `patient_id`,
    `session_id`,
    `department`,
    `logged_by`,
    `doctor`,
    `status`,
    `date_time`,
    `attended_at`,
    `attended_by`
  )
VALUES
  (
    27,
    '25/2512/GOH',
    'clinic.1766783486492',
    'clinic',
    'Abiodun Salako',
    NULL,
    'skipped',
    '2025-12-26 22:11:26',
    '2025-12-27 10:14:50',
    NULL
  );
INSERT INTO
  `consultation_queue` (
    `id`,
    `patient_id`,
    `session_id`,
    `department`,
    `logged_by`,
    `doctor`,
    `status`,
    `date_time`,
    `attended_at`,
    `attended_by`
  )
VALUES
  (
    28,
    '7/2505/GOH',
    'clinic.1767545624034',
    'clinic',
    'Abiodun Salako',
    NULL,
    'attended',
    '2026-01-04 17:53:44',
    '2026-01-04 17:59:29',
    'Doctor Abiodun Salako'
  );
INSERT INTO
  `consultation_queue` (
    `id`,
    `patient_id`,
    `session_id`,
    `department`,
    `logged_by`,
    `doctor`,
    `status`,
    `date_time`,
    `attended_at`,
    `attended_by`
  )
VALUES
  (
    29,
    '26/2601/GOH',
    'clinic.1767634018465',
    'clinic',
    'Abiodun Salako',
    NULL,
    'attended',
    '2026-01-05 18:26:58',
    '2026-01-05 18:32:02',
    'Doctor Abiodun Salako'
  );
INSERT INTO
  `consultation_queue` (
    `id`,
    `patient_id`,
    `session_id`,
    `department`,
    `logged_by`,
    `doctor`,
    `status`,
    `date_time`,
    `attended_at`,
    `attended_by`
  )
VALUES
  (
    30,
    '7/2505/GOH',
    'clinic.1767634506467',
    'clinic',
    'Abiodun Salako',
    NULL,
    'skipped',
    '2026-01-05 18:35:06',
    '2026-01-08 17:15:53',
    NULL
  );
INSERT INTO
  `consultation_queue` (
    `id`,
    `patient_id`,
    `session_id`,
    `department`,
    `logged_by`,
    `doctor`,
    `status`,
    `date_time`,
    `attended_at`,
    `attended_by`
  )
VALUES
  (
    31,
    '26/2601/GOH',
    'clinic.1768056179217',
    'clinic',
    'Abiodun Salako',
    NULL,
    'skipped',
    '2026-01-10 15:42:59',
    '2026-01-13 07:49:07',
    NULL
  );

# ------------------------------------------------------------
# DATA DUMP FOR TABLE: counters
# ------------------------------------------------------------

INSERT INTO
  `counters` (`table_name`, `month_year`, `total_count`)
VALUES
  ('consultations', '2025-11', 8);
INSERT INTO
  `counters` (`table_name`, `month_year`, `total_count`)
VALUES
  ('consultations', '2025-12', 7);
INSERT INTO
  `counters` (`table_name`, `month_year`, `total_count`)
VALUES
  ('consultations', '2026-01', 2);
INSERT INTO
  `counters` (`table_name`, `month_year`, `total_count`)
VALUES
  ('patients', '2025-04', 6);
INSERT INTO
  `counters` (`table_name`, `month_year`, `total_count`)
VALUES
  ('patients', '2025-05', 1);
INSERT INTO
  `counters` (`table_name`, `month_year`, `total_count`)
VALUES
  ('patients', '2025-07', 26);
INSERT INTO
  `counters` (`table_name`, `month_year`, `total_count`)
VALUES
  ('patients', '2025-08', 21);
INSERT INTO
  `counters` (`table_name`, `month_year`, `total_count`)
VALUES
  ('patients', '2025-11', 21);
INSERT INTO
  `counters` (`table_name`, `month_year`, `total_count`)
VALUES
  ('patients', '2025-12', 2);
INSERT INTO
  `counters` (`table_name`, `month_year`, `total_count`)
VALUES
  ('patients', '2026-01', 1);
INSERT INTO
  `counters` (`table_name`, `month_year`, `total_count`)
VALUES
  ('tx', '2025-04', 17);
INSERT INTO
  `counters` (`table_name`, `month_year`, `total_count`)
VALUES
  ('tx', '2025-05', 4);
INSERT INTO
  `counters` (`table_name`, `month_year`, `total_count`)
VALUES
  ('tx', '2025-06', 1);
INSERT INTO
  `counters` (`table_name`, `month_year`, `total_count`)
VALUES
  ('tx', '2025-07', 33);
INSERT INTO
  `counters` (`table_name`, `month_year`, `total_count`)
VALUES
  ('tx', '2025-08', 21);
INSERT INTO
  `counters` (`table_name`, `month_year`, `total_count`)
VALUES
  ('tx', '2025-09', 2);
INSERT INTO
  `counters` (`table_name`, `month_year`, `total_count`)
VALUES
  ('tx', '2025-10', 11);
INSERT INTO
  `counters` (`table_name`, `month_year`, `total_count`)
VALUES
  ('tx', '2025-11', 52);
INSERT INTO
  `counters` (`table_name`, `month_year`, `total_count`)
VALUES
  ('tx', '2025-12', 10);
INSERT INTO
  `counters` (`table_name`, `month_year`, `total_count`)
VALUES
  ('tx', '2026-01', 2);

# ------------------------------------------------------------
# DATA DUMP FOR TABLE: devices
# ------------------------------------------------------------


# ------------------------------------------------------------
# DATA DUMP FOR TABLE: diagnosis_suggestions
# ------------------------------------------------------------


# ------------------------------------------------------------
# DATA DUMP FOR TABLE: drug_suggestions
# ------------------------------------------------------------


# ------------------------------------------------------------
# DATA DUMP FOR TABLE: families
# ------------------------------------------------------------

INSERT INTO
  `families` (
    `id`,
    `name`,
    `address`,
    `contact_person`,
    `contact_email`,
    `phone_num`,
    `type`,
    `wallet`,
    `date_time`
  )
VALUES
  (
    1,
    'Engr Awodele Family',
    'Town all str, city center, Our state.',
    'Engr Awodele',
    'N/A',
    '08112345678',
    'Family',
    -375.30,
    '2025-07-05 22:07:13'
  );
INSERT INTO
  `families` (
    `id`,
    `name`,
    `address`,
    `contact_person`,
    `contact_email`,
    `phone_num`,
    `type`,
    `wallet`,
    `date_time`
  )
VALUES
  (
    2,
    'Chief Alani family',
    'Taiwo str, Alekuwodo, Ibadab',
    'Chief Alani',
    'chiefalani@mail.com',
    '08012345678',
    'Family',
    -42500.00,
    '2025-07-06 10:21:53'
  );
INSERT INTO
  `families` (
    `id`,
    `name`,
    `address`,
    `contact_person`,
    `contact_email`,
    `phone_num`,
    `type`,
    `wallet`,
    `date_time`
  )
VALUES
  (
    3,
    'Loyola Farms',
    'Loyola bus stop, Ire Akari',
    'HR Manager',
    'hr@loyolafarmsltd.ng',
    '08012345678',
    'Other Group',
    -331.25,
    '2025-07-06 10:27:39'
  );
INSERT INTO
  `families` (
    `id`,
    `name`,
    `address`,
    `contact_person`,
    `contact_email`,
    `phone_num`,
    `type`,
    `wallet`,
    `date_time`
  )
VALUES
  (
    4,
    'Onis Construction Company',
    'Onis Industrial Estate, Lusada',
    'General Manager',
    'onisglobal@onisconstruction.com',
    '08012345678',
    'Group',
    0.00,
    '2025-07-06 10:39:46'
  );
INSERT INTO
  `families` (
    `id`,
    `name`,
    `address`,
    `contact_person`,
    `contact_email`,
    `phone_num`,
    `type`,
    `wallet`,
    `date_time`
  )
VALUES
  (
    5,
    'Mr Atanda Family',
    'Ajao Estate, Lagos',
    'Mr Ajao',
    'N/A',
    '09012345678',
    'Family',
    0.00,
    '2025-08-03 18:38:13'
  );
INSERT INTO
  `families` (
    `id`,
    `name`,
    `address`,
    `contact_person`,
    `contact_email`,
    `phone_num`,
    `type`,
    `wallet`,
    `date_time`
  )
VALUES
  (
    6,
    'Abidec Corporative Society',
    'Adrres awon group yen',
    'The Chairman',
    'N/A',
    '09012345678',
    'Group',
    0.00,
    '2025-08-08 12:58:28'
  );
INSERT INTO
  `families` (
    `id`,
    `name`,
    `address`,
    `contact_person`,
    `contact_email`,
    `phone_num`,
    `type`,
    `wallet`,
    `date_time`
  )
VALUES
  (
    7,
    'Atanda Family',
    'Jare Emily Area, Oyo',
    'Dr Atanda Alawada',
    'N/A',
    '09012345678',
    'Family',
    0.00,
    '2025-08-08 13:00:56'
  );
INSERT INTO
  `families` (
    `id`,
    `name`,
    `address`,
    `contact_person`,
    `contact_email`,
    `phone_num`,
    `type`,
    `wallet`,
    `date_time`
  )
VALUES
  (
    8,
    'G.O Tech Solutions',
    'Ibadan Oyo state',
    'General Manager',
    'N/A',
    '0123456789',
    'Group',
    0.00,
    '2025-12-26 22:02:22'
  );

# ------------------------------------------------------------
# DATA DUMP FOR TABLE: family_wallet_tx
# ------------------------------------------------------------

INSERT INTO
  `family_wallet_tx` (
    `id`,
    `family_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `patient_id`,
    `payment_channel`,
    `updated_by`,
    `reversal_of`,
    `date_time`
  )
VALUES
  (
    4,
    2,
    'debit',
    7000.00,
    0.00,
    7000.00,
    'rx_bill',
    'opndv.1751918863929',
    NULL,
    'wallet',
    'Abebi Konsu',
    NULL,
    '2025-07-07 22:11:37'
  );
INSERT INTO
  `family_wallet_tx` (
    `id`,
    `family_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `patient_id`,
    `payment_channel`,
    `updated_by`,
    `reversal_of`,
    `date_time`
  )
VALUES
  (
    5,
    3,
    'credit',
    1000.00,
    0.00,
    1000.00,
    'Wallet funding',
    NULL,
    NULL,
    'bank_transfer',
    'Abebi Konsu',
    NULL,
    '2025-07-09 07:59:11'
  );
INSERT INTO
  `family_wallet_tx` (
    `id`,
    `family_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `patient_id`,
    `payment_channel`,
    `updated_by`,
    `reversal_of`,
    `date_time`
  )
VALUES
  (
    6,
    2,
    'debit',
    7000.00,
    7000.00,
    0.00,
    'itemized billing',
    'alzgp.1752078980440',
    NULL,
    'wallet',
    'Doctor Dele Fadairo',
    NULL,
    '2025-07-09 17:36:47'
  );
INSERT INTO
  `family_wallet_tx` (
    `id`,
    `family_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `patient_id`,
    `payment_channel`,
    `updated_by`,
    `reversal_of`,
    `date_time`
  )
VALUES
  (
    10,
    2,
    'debit',
    17000.00,
    0.00,
    -17000.00,
    'itemized billing',
    'ign9m.1752079394378',
    NULL,
    'wallet',
    'Nurse Abebi Konsu',
    NULL,
    '2025-07-09 17:59:14'
  );
INSERT INTO
  `family_wallet_tx` (
    `id`,
    `family_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `patient_id`,
    `payment_channel`,
    `updated_by`,
    `reversal_of`,
    `date_time`
  )
VALUES
  (
    11,
    2,
    'debit',
    8500.00,
    -17000.00,
    -25500.00,
    'itemized billing',
    'i7v71.1752081845488',
    NULL,
    'wallet',
    'Nurse Abebi Konsu',
    NULL,
    '2025-07-09 18:25:22'
  );
INSERT INTO
  `family_wallet_tx` (
    `id`,
    `family_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `patient_id`,
    `payment_channel`,
    `updated_by`,
    `reversal_of`,
    `date_time`
  )
VALUES
  (
    12,
    2,
    'debit',
    2000.00,
    -25500.00,
    -27500.00,
    'itemized billing',
    'hvc9j.1752084038298',
    NULL,
    'wallet',
    'Nurse Abebi Konsu',
    NULL,
    '2025-07-09 19:01:09'
  );
INSERT INTO
  `family_wallet_tx` (
    `id`,
    `family_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `patient_id`,
    `payment_channel`,
    `updated_by`,
    `reversal_of`,
    `date_time`
  )
VALUES
  (
    13,
    2,
    'credit',
    15000.00,
    -27500.00,
    -12500.00,
    'Wallet funding',
    NULL,
    NULL,
    'bank_transfer',
    'Abebi Konsu',
    NULL,
    '2025-07-09 19:02:46'
  );
INSERT INTO
  `family_wallet_tx` (
    `id`,
    `family_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `patient_id`,
    `payment_channel`,
    `updated_by`,
    `reversal_of`,
    `date_time`
  )
VALUES
  (
    14,
    2,
    'debit',
    7000.00,
    -12500.00,
    -19500.00,
    'Bill payment for 8/2507/GOH',
    'opndv.1751918863929',
    NULL,
    'wallet',
    'Abebi Konsu',
    NULL,
    '2025-07-09 19:02:46'
  );
INSERT INTO
  `family_wallet_tx` (
    `id`,
    `family_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `patient_id`,
    `payment_channel`,
    `updated_by`,
    `reversal_of`,
    `date_time`
  )
VALUES
  (
    15,
    2,
    'debit',
    8000.00,
    -19500.00,
    -27500.00,
    'Bill payment for 8/2507/GOH',
    'i7v71.1752081845488',
    NULL,
    'wallet',
    'Abebi Konsu',
    NULL,
    '2025-07-09 19:02:46'
  );
INSERT INTO
  `family_wallet_tx` (
    `id`,
    `family_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `patient_id`,
    `payment_channel`,
    `updated_by`,
    `reversal_of`,
    `date_time`
  )
VALUES
  (
    16,
    3,
    'debit',
    6000.00,
    1000.00,
    -5000.00,
    'itemized billing',
    'hi6qj.1752148007328',
    NULL,
    'wallet',
    'pharmacist Olawale Oladosu',
    NULL,
    '2025-07-10 12:51:05'
  );
INSERT INTO
  `family_wallet_tx` (
    `id`,
    `family_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `patient_id`,
    `payment_channel`,
    `updated_by`,
    `reversal_of`,
    `date_time`
  )
VALUES
  (
    17,
    3,
    'debit',
    14000.00,
    -5000.00,
    -19000.00,
    'itemized billing',
    'itojj.1752147942925',
    NULL,
    'wallet',
    'pharmacist Olawale Oladosu',
    NULL,
    '2025-07-10 12:52:51'
  );
INSERT INTO
  `family_wallet_tx` (
    `id`,
    `family_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `patient_id`,
    `payment_channel`,
    `updated_by`,
    `reversal_of`,
    `date_time`
  )
VALUES
  (
    18,
    3,
    'debit',
    6500.00,
    -19000.00,
    -25500.00,
    'itemized billing',
    '3zh0x.1752147872340',
    NULL,
    'wallet',
    'pharmacist Olawale Oladosu',
    NULL,
    '2025-07-10 12:53:32'
  );
INSERT INTO
  `family_wallet_tx` (
    `id`,
    `family_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `patient_id`,
    `payment_channel`,
    `updated_by`,
    `reversal_of`,
    `date_time`
  )
VALUES
  (
    19,
    3,
    'credit',
    15000.00,
    -25500.00,
    -10500.00,
    'Wallet funding',
    'deposit-1752148759383',
    NULL,
    'bank_transfer',
    'Olawale Oladosu',
    NULL,
    '2025-07-10 12:59:19'
  );
INSERT INTO
  `family_wallet_tx` (
    `id`,
    `family_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `patient_id`,
    `payment_channel`,
    `updated_by`,
    `reversal_of`,
    `date_time`
  )
VALUES
  (
    20,
    3,
    'debit',
    24000.00,
    -10500.00,
    -34500.00,
    'billing for session qhxsp.1753544038289 received by 12/2507/GOH on 2025-07-26 16:33:58',
    'qhxsp.1753544038289',
    '12/2507/GOH',
    'wallet',
    'Lab Scientist Mopelola Ajasa',
    NULL,
    '2025-07-26 16:35:29'
  );
INSERT INTO
  `family_wallet_tx` (
    `id`,
    `family_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `patient_id`,
    `payment_channel`,
    `updated_by`,
    `reversal_of`,
    `date_time`
  )
VALUES
  (
    21,
    1,
    'debit',
    375.30,
    0.00,
    -375.30,
    'billing for session 5c2nm.1754242931623 received by 20/2508/GOH on 2025-08-03 18:42:11',
    '5c2nm.1754242931623',
    '20/2508/GOH',
    'wallet',
    'Doctor Abiodun Salako',
    NULL,
    '2025-08-03 18:43:50'
  );
INSERT INTO
  `family_wallet_tx` (
    `id`,
    `family_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `patient_id`,
    `payment_channel`,
    `updated_by`,
    `reversal_of`,
    `date_time`
  )
VALUES
  (
    22,
    3,
    'debit',
    25000.00,
    -34500.00,
    -59500.00,
    'rx_bill',
    '0sbrl.1755852674905',
    '12/2507/GOH',
    'wallet',
    'Abiodun Salako',
    NULL,
    '2025-08-22 16:39:51'
  );
INSERT INTO
  `family_wallet_tx` (
    `id`,
    `family_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `patient_id`,
    `payment_channel`,
    `updated_by`,
    `reversal_of`,
    `date_time`
  )
VALUES
  (
    23,
    3,
    'credit',
    29000.00,
    -59500.00,
    -30500.00,
    'Wallet funding',
    'deposit-1755877254912',
    NULL,
    'bank_transfer',
    'Abiodun Salako',
    NULL,
    '2025-08-22 16:40:54'
  );
INSERT INTO
  `family_wallet_tx` (
    `id`,
    `family_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `patient_id`,
    `payment_channel`,
    `updated_by`,
    `reversal_of`,
    `date_time`
  )
VALUES
  (
    24,
    3,
    'credit',
    10000.00,
    -30500.00,
    -20500.00,
    'Wallet funding',
    'deposit-1756033168460',
    NULL,
    'bank (trf or card) to FirstBank',
    'Abiodun Salako',
    NULL,
    '2025-08-24 11:59:28'
  );
INSERT INTO
  `family_wallet_tx` (
    `id`,
    `family_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `patient_id`,
    `payment_channel`,
    `updated_by`,
    `reversal_of`,
    `date_time`
  )
VALUES
  (
    25,
    2,
    'credit',
    20000.00,
    -27500.00,
    -7500.00,
    'Wallet funding',
    'deposit-1756035884387',
    NULL,
    'bank (trf or card) to FirstBank',
    'Abiodun Salako',
    NULL,
    '2025-08-24 12:44:44'
  );
INSERT INTO
  `family_wallet_tx` (
    `id`,
    `family_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `patient_id`,
    `payment_channel`,
    `updated_by`,
    `reversal_of`,
    `date_time`
  )
VALUES
  (
    26,
    2,
    'debit',
    2000.00,
    -7500.00,
    -9500.00,
    'consultations',
    'n7w8m.1756041123326',
    '8/2507/GOH',
    'wallet',
    'Abiodun Salako',
    NULL,
    '2025-08-24 14:13:08'
  );
INSERT INTO
  `family_wallet_tx` (
    `id`,
    `family_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `patient_id`,
    `payment_channel`,
    `updated_by`,
    `reversal_of`,
    `date_time`
  )
VALUES
  (
    27,
    2,
    'debit',
    6000.00,
    -9500.00,
    -15500.00,
    'rx_bill',
    'jf0qc.1756110489408',
    '19/2507/GOH',
    'wallet',
    'Abiodun Salako',
    NULL,
    '2025-08-26 08:01:39'
  );
INSERT INTO
  `family_wallet_tx` (
    `id`,
    `family_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `patient_id`,
    `payment_channel`,
    `updated_by`,
    `reversal_of`,
    `date_time`
  )
VALUES
  (
    28,
    2,
    'debit',
    2000.00,
    -15500.00,
    -17500.00,
    'billing for session kri03.1756481714789 received by 19/2507/GOH on 2025-08-29 16:35:14',
    'kri03.1756481714789',
    '19/2507/GOH',
    'wallet',
    'Doctor Abiodun Salako',
    NULL,
    '2025-08-31 14:44:29'
  );
INSERT INTO
  `family_wallet_tx` (
    `id`,
    `family_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `patient_id`,
    `payment_channel`,
    `updated_by`,
    `reversal_of`,
    `date_time`
  )
VALUES
  (
    29,
    2,
    'debit',
    25000.00,
    -17500.00,
    -42500.00,
    'rx_bill',
    'sn125.1756731169422',
    '21/2508/GOH',
    'wallet',
    'Abiodun Salako',
    NULL,
    '2025-09-01 13:53:21'
  );
INSERT INTO
  `family_wallet_tx` (
    `id`,
    `family_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `patient_id`,
    `payment_channel`,
    `updated_by`,
    `reversal_of`,
    `date_time`
  )
VALUES
  (
    30,
    3,
    'debit',
    0.00,
    -20500.00,
    0.00,
    'treatment billing received by 22/2508/GOH on 2025-10-02 16:15:03',
    'zn4pr.1759418103400',
    '22/2508/GOH',
    'wallet',
    'Doctor Abiodun Salako',
    NULL,
    '2025-10-02 16:17:46'
  );
INSERT INTO
  `family_wallet_tx` (
    `id`,
    `family_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `patient_id`,
    `payment_channel`,
    `updated_by`,
    `reversal_of`,
    `date_time`
  )
VALUES
  (
    32,
    3,
    'debit',
    2956.25,
    0.00,
    -2956.25,
    'treatment billing received by 12/2507/GOH on 2025-10-04 08:12:09',
    'v2uoz.1759561442965',
    '12/2507/GOH',
    'wallet',
    'Doctor Abiodun Salako',
    NULL,
    '2025-10-04 08:13:53'
  );
INSERT INTO
  `family_wallet_tx` (
    `id`,
    `family_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `patient_id`,
    `payment_channel`,
    `updated_by`,
    `reversal_of`,
    `date_time`
  )
VALUES
  (
    33,
    3,
    'debit',
    5375.00,
    -2956.25,
    -8331.25,
    'treatment billing received by 12/2507/GOH on 2025-10-04 08:16:20',
    'v2uoz.1759561442965',
    '12/2507/GOH',
    'wallet',
    'Doctor Abiodun Salako',
    NULL,
    '2025-10-04 08:16:56'
  );
INSERT INTO
  `family_wallet_tx` (
    `id`,
    `family_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `patient_id`,
    `payment_channel`,
    `updated_by`,
    `reversal_of`,
    `date_time`
  )
VALUES
  (
    34,
    3,
    'credit',
    7000.00,
    -8331.25,
    -1331.25,
    'Wallet funding',
    'deposit-1759562898623',
    NULL,
    'cash to ',
    'Abiodun Salako',
    NULL,
    '2025-10-04 08:28:18'
  );
INSERT INTO
  `family_wallet_tx` (
    `id`,
    `family_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `patient_id`,
    `payment_channel`,
    `updated_by`,
    `reversal_of`,
    `date_time`
  )
VALUES
  (
    35,
    3,
    'debit',
    5000.00,
    -1331.25,
    -6331.25,
    'treatment billing received by 22/2508/GOH on 2025-12-26 11:45:31',
    'h5otn.1766744913963',
    '22/2508/GOH',
    'wallet',
    'Doctor Abiodun Salako',
    NULL,
    '2025-12-26 11:48:37'
  );
INSERT INTO
  `family_wallet_tx` (
    `id`,
    `family_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `patient_id`,
    `payment_channel`,
    `updated_by`,
    `reversal_of`,
    `date_time`
  )
VALUES
  (
    36,
    3,
    'debit',
    4000.00,
    -6331.25,
    -10331.25,
    'consultations',
    'h5otn.1766744913963',
    '22/2508/GOH',
    'wallet',
    'Abiodun Salako',
    NULL,
    '2025-12-26 11:50:57'
  );
INSERT INTO
  `family_wallet_tx` (
    `id`,
    `family_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `patient_id`,
    `payment_channel`,
    `updated_by`,
    `reversal_of`,
    `date_time`
  )
VALUES
  (
    37,
    3,
    'credit',
    10000.00,
    -10331.25,
    -331.25,
    'Wallet funding',
    'deposit-1766748182956',
    NULL,
    'bank (trf or card) to MoniePoint MFB',
    'Abiodun Salako',
    NULL,
    '2025-12-26 12:23:02'
  );

# ------------------------------------------------------------
# DATA DUMP FOR TABLE: foc
# ------------------------------------------------------------


# ------------------------------------------------------------
# DATA DUMP FOR TABLE: generated_reports
# ------------------------------------------------------------

INSERT INTO
  `generated_reports` (
    `id`,
    `user_id`,
    `preference_id`,
    `report_type`,
    `report_period_start`,
    `report_period_end`,
    `file_name`,
    `file_url`,
    `file_size_kb`,
    `delivery_method`,
    `email_sent`,
    `whatsapp_sent`,
    `app_notified`,
    `generation_time_seconds`,
    `llm_tokens_used`,
    `generated_at`,
    `expires_at`,
    `downloaded_at`,
    `download_count`
  )
VALUES
  (
    1,
    1,
    NULL,
    'comprehensive',
    '2024-01-01',
    '2024-12-31',
    'comprehensive_1_1765499505427.pdf',
    'https://hms-report.4b1a3ea0b2c7d093e60985869e4e15e6.r2.cloudflarestorage.com/reports/comprehensive_1_1765499505427.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=3b8e902361ead9aa761f9931b51cc40a%2F20251212%2Fauto%2Fs3%2Faws4_request&X-Amz-Date=20251212T003146Z&X-Amz-Expires=604800&X-Amz-Signature=d64418cebc3e21cff930e5c7586e750f2f1c06c6349d272ef301209adfe2d03d&X-Amz-SignedHeaders=host&x-amz-checksum-mode=ENABLED&x-id=GetObject',
    8,
    'email',
    0,
    0,
    0,
    5.65,
    NULL,
    '2025-12-12 01:31:46',
    '2026-01-11 01:31:46',
    '0000-00-00 00:00:00',
    0
  );
INSERT INTO
  `generated_reports` (
    `id`,
    `user_id`,
    `preference_id`,
    `report_type`,
    `report_period_start`,
    `report_period_end`,
    `file_name`,
    `file_url`,
    `file_size_kb`,
    `delivery_method`,
    `email_sent`,
    `whatsapp_sent`,
    `app_notified`,
    `generation_time_seconds`,
    `llm_tokens_used`,
    `generated_at`,
    `expires_at`,
    `downloaded_at`,
    `download_count`
  )
VALUES
  (
    2,
    1,
    NULL,
    'clinical',
    '2025-11-12',
    '2025-12-12',
    'clinical_1_1765499847695.pdf',
    'https://hms-report.4b1a3ea0b2c7d093e60985869e4e15e6.r2.cloudflarestorage.com/reports/clinical_1_1765499847695.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=3b8e902361ead9aa761f9931b51cc40a%2F20251212%2Fauto%2Fs3%2Faws4_request&X-Amz-Date=20251212T003729Z&X-Amz-Expires=604800&X-Amz-Signature=ae094160936edbe4a90afc7dffdf6549450a88d7b134a3325cb35703f10ddfc7&X-Amz-SignedHeaders=host&x-amz-checksum-mode=ENABLED&x-id=GetObject',
    9,
    'email',
    0,
    0,
    0,
    6.83,
    NULL,
    '2025-12-12 01:37:29',
    '2026-01-11 01:37:29',
    '0000-00-00 00:00:00',
    0
  );
INSERT INTO
  `generated_reports` (
    `id`,
    `user_id`,
    `preference_id`,
    `report_type`,
    `report_period_start`,
    `report_period_end`,
    `file_name`,
    `file_url`,
    `file_size_kb`,
    `delivery_method`,
    `email_sent`,
    `whatsapp_sent`,
    `app_notified`,
    `generation_time_seconds`,
    `llm_tokens_used`,
    `generated_at`,
    `expires_at`,
    `downloaded_at`,
    `download_count`
  )
VALUES
  (
    3,
    1,
    NULL,
    'financial',
    '2025-09-01',
    '2025-10-01',
    'financial_1_1765532276656.pdf',
    'https://hms-report.4b1a3ea0b2c7d093e60985869e4e15e6.r2.cloudflarestorage.com/reports/financial_1_1765532276656.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=3b8e902361ead9aa761f9931b51cc40a%2F20251212%2Fauto%2Fs3%2Faws4_request&X-Amz-Date=20251212T093757Z&X-Amz-Expires=604800&X-Amz-Signature=3fe1643a512d1505eed4140e2c6141d6f340d6e7d3e555d52a36a721a2b1e27b&X-Amz-SignedHeaders=host&x-amz-checksum-mode=ENABLED&x-id=GetObject',
    8,
    'email',
    0,
    0,
    0,
    5.37,
    NULL,
    '2025-12-12 10:37:57',
    '2026-01-11 10:37:57',
    '0000-00-00 00:00:00',
    0
  );
INSERT INTO
  `generated_reports` (
    `id`,
    `user_id`,
    `preference_id`,
    `report_type`,
    `report_period_start`,
    `report_period_end`,
    `file_name`,
    `file_url`,
    `file_size_kb`,
    `delivery_method`,
    `email_sent`,
    `whatsapp_sent`,
    `app_notified`,
    `generation_time_seconds`,
    `llm_tokens_used`,
    `generated_at`,
    `expires_at`,
    `downloaded_at`,
    `download_count`
  )
VALUES
  (
    4,
    1,
    NULL,
    'clinical',
    '2025-09-01',
    '2025-10-01',
    'clinical_1_1765533398306.pdf',
    'https://hms-report.4b1a3ea0b2c7d093e60985869e4e15e6.r2.cloudflarestorage.com/reports/clinical_1_1765533398306.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=3b8e902361ead9aa761f9931b51cc40a%2F20251212%2Fauto%2Fs3%2Faws4_request&X-Amz-Date=20251212T095639Z&X-Amz-Expires=604800&X-Amz-Signature=f93d6cf995daa9e837b78d30b28232e88faac568ec6cae62a5daaf8af8ad7574&X-Amz-SignedHeaders=host&x-amz-checksum-mode=ENABLED&x-id=GetObject',
    9,
    'email',
    0,
    0,
    0,
    5.31,
    NULL,
    '2025-12-12 10:56:39',
    '2026-01-11 10:56:39',
    '0000-00-00 00:00:00',
    0
  );
INSERT INTO
  `generated_reports` (
    `id`,
    `user_id`,
    `preference_id`,
    `report_type`,
    `report_period_start`,
    `report_period_end`,
    `file_name`,
    `file_url`,
    `file_size_kb`,
    `delivery_method`,
    `email_sent`,
    `whatsapp_sent`,
    `app_notified`,
    `generation_time_seconds`,
    `llm_tokens_used`,
    `generated_at`,
    `expires_at`,
    `downloaded_at`,
    `download_count`
  )
VALUES
  (
    5,
    1,
    NULL,
    'clinical',
    '2025-06-01',
    '2025-11-30',
    'clinical_1_1765534015055.pdf',
    'https://hms-report.4b1a3ea0b2c7d093e60985869e4e15e6.r2.cloudflarestorage.com/reports/clinical_1_1765534015055.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=3b8e902361ead9aa761f9931b51cc40a%2F20251212%2Fauto%2Fs3%2Faws4_request&X-Amz-Date=20251212T100656Z&X-Amz-Expires=604800&X-Amz-Signature=e5302b4f07d681ab0613e9b6c9aec886eca01282d9c65d6430d0965340f4b832&X-Amz-SignedHeaders=host&x-amz-checksum-mode=ENABLED&x-id=GetObject',
    8,
    'email',
    0,
    0,
    0,
    5.18,
    NULL,
    '2025-12-12 11:06:56',
    '2026-01-11 11:06:56',
    '0000-00-00 00:00:00',
    0
  );
INSERT INTO
  `generated_reports` (
    `id`,
    `user_id`,
    `preference_id`,
    `report_type`,
    `report_period_start`,
    `report_period_end`,
    `file_name`,
    `file_url`,
    `file_size_kb`,
    `delivery_method`,
    `email_sent`,
    `whatsapp_sent`,
    `app_notified`,
    `generation_time_seconds`,
    `llm_tokens_used`,
    `generated_at`,
    `expires_at`,
    `downloaded_at`,
    `download_count`
  )
VALUES
  (
    6,
    1,
    NULL,
    'clinical',
    '2025-09-02',
    '2025-10-01',
    'clinical_1_1765536969457.pdf',
    'https://hms-report.4b1a3ea0b2c7d093e60985869e4e15e6.r2.cloudflarestorage.com/reports/clinical_1_1765536969457.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=3b8e902361ead9aa761f9931b51cc40a%2F20251212%2Fauto%2Fs3%2Faws4_request&X-Amz-Date=20251212T105613Z&X-Amz-Expires=604800&X-Amz-Signature=8877605c7984486d520df1b3724a76ae584e3b64f848730312f58e1a4a144024&X-Amz-SignedHeaders=host&x-amz-checksum-mode=ENABLED&x-id=GetObject',
    7,
    'email',
    0,
    0,
    0,
    9.59,
    NULL,
    '2025-12-12 11:56:13',
    '2026-01-11 11:56:13',
    '0000-00-00 00:00:00',
    0
  );
INSERT INTO
  `generated_reports` (
    `id`,
    `user_id`,
    `preference_id`,
    `report_type`,
    `report_period_start`,
    `report_period_end`,
    `file_name`,
    `file_url`,
    `file_size_kb`,
    `delivery_method`,
    `email_sent`,
    `whatsapp_sent`,
    `app_notified`,
    `generation_time_seconds`,
    `llm_tokens_used`,
    `generated_at`,
    `expires_at`,
    `downloaded_at`,
    `download_count`
  )
VALUES
  (
    7,
    1,
    NULL,
    'financial',
    '2025-06-01',
    '2025-01-01',
    'financial_1_1765537046905.pdf',
    'https://hms-report.4b1a3ea0b2c7d093e60985869e4e15e6.r2.cloudflarestorage.com/reports/financial_1_1765537046905.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=3b8e902361ead9aa761f9931b51cc40a%2F20251212%2Fauto%2Fs3%2Faws4_request&X-Amz-Date=20251212T105728Z&X-Amz-Expires=604800&X-Amz-Signature=61642a515d60e65ee75f8e820937e870e205e805bad7dc493379a471d9888f7b&X-Amz-SignedHeaders=host&x-amz-checksum-mode=ENABLED&x-id=GetObject',
    7,
    'email',
    0,
    0,
    0,
    8.75,
    NULL,
    '2025-12-12 11:57:28',
    '2026-01-11 11:57:28',
    '0000-00-00 00:00:00',
    0
  );
INSERT INTO
  `generated_reports` (
    `id`,
    `user_id`,
    `preference_id`,
    `report_type`,
    `report_period_start`,
    `report_period_end`,
    `file_name`,
    `file_url`,
    `file_size_kb`,
    `delivery_method`,
    `email_sent`,
    `whatsapp_sent`,
    `app_notified`,
    `generation_time_seconds`,
    `llm_tokens_used`,
    `generated_at`,
    `expires_at`,
    `downloaded_at`,
    `download_count`
  )
VALUES
  (
    8,
    1,
    NULL,
    'clinical',
    '2025-07-01',
    '2025-11-30',
    'clinical_1_1765549647161.pdf',
    'https://hms-report.4b1a3ea0b2c7d093e60985869e4e15e6.r2.cloudflarestorage.com/reports/clinical_1_1765549647161.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=3b8e902361ead9aa761f9931b51cc40a%2F20251212%2Fauto%2Fs3%2Faws4_request&X-Amz-Date=20251212T142728Z&X-Amz-Expires=604800&X-Amz-Signature=71c81bea4c907d32874d09864fef51a622adc5ae6919b058051e03bb577c17e6&X-Amz-SignedHeaders=host&x-amz-checksum-mode=ENABLED&x-id=GetObject',
    10,
    'email',
    0,
    0,
    0,
    6.45,
    NULL,
    '2025-12-12 15:27:28',
    '2026-01-11 15:27:28',
    '0000-00-00 00:00:00',
    0
  );
INSERT INTO
  `generated_reports` (
    `id`,
    `user_id`,
    `preference_id`,
    `report_type`,
    `report_period_start`,
    `report_period_end`,
    `file_name`,
    `file_url`,
    `file_size_kb`,
    `delivery_method`,
    `email_sent`,
    `whatsapp_sent`,
    `app_notified`,
    `generation_time_seconds`,
    `llm_tokens_used`,
    `generated_at`,
    `expires_at`,
    `downloaded_at`,
    `download_count`
  )
VALUES
  (
    9,
    1,
    NULL,
    'clinical',
    '2025-04-01',
    '2025-11-30',
    'clinical_1_1765553061476.pdf',
    'https://hms-report.4b1a3ea0b2c7d093e60985869e4e15e6.r2.cloudflarestorage.com/reports/clinical_1_1765553061476.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=3b8e902361ead9aa761f9931b51cc40a%2F20251212%2Fauto%2Fs3%2Faws4_request&X-Amz-Date=20251212T152422Z&X-Amz-Expires=604800&X-Amz-Signature=ab6caa7a8643b3da794b5b7f026858bf8a971d05201e82f2d61b5e440e65a49e&X-Amz-SignedHeaders=host&x-amz-checksum-mode=ENABLED&x-id=GetObject',
    6,
    'email',
    0,
    0,
    0,
    4.67,
    NULL,
    '2025-12-12 16:24:22',
    '2026-01-11 16:24:22',
    '0000-00-00 00:00:00',
    0
  );
INSERT INTO
  `generated_reports` (
    `id`,
    `user_id`,
    `preference_id`,
    `report_type`,
    `report_period_start`,
    `report_period_end`,
    `file_name`,
    `file_url`,
    `file_size_kb`,
    `delivery_method`,
    `email_sent`,
    `whatsapp_sent`,
    `app_notified`,
    `generation_time_seconds`,
    `llm_tokens_used`,
    `generated_at`,
    `expires_at`,
    `downloaded_at`,
    `download_count`
  )
VALUES
  (
    10,
    1,
    NULL,
    'financial',
    '2025-04-01',
    '2025-11-30',
    'financial_1_1765553141540.pdf',
    'https://hms-report.4b1a3ea0b2c7d093e60985869e4e15e6.r2.cloudflarestorage.com/reports/financial_1_1765553141540.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=3b8e902361ead9aa761f9931b51cc40a%2F20251212%2Fauto%2Fs3%2Faws4_request&X-Amz-Date=20251212T152542Z&X-Amz-Expires=604800&X-Amz-Signature=0c3b38fc19dadc57c580800d27d4742836f0bf889304cde93d06baa5bd491166&X-Amz-SignedHeaders=host&x-amz-checksum-mode=ENABLED&x-id=GetObject',
    6,
    'email',
    0,
    0,
    0,
    4.73,
    NULL,
    '2025-12-12 16:25:42',
    '2026-01-11 16:25:42',
    '0000-00-00 00:00:00',
    0
  );
INSERT INTO
  `generated_reports` (
    `id`,
    `user_id`,
    `preference_id`,
    `report_type`,
    `report_period_start`,
    `report_period_end`,
    `file_name`,
    `file_url`,
    `file_size_kb`,
    `delivery_method`,
    `email_sent`,
    `whatsapp_sent`,
    `app_notified`,
    `generation_time_seconds`,
    `llm_tokens_used`,
    `generated_at`,
    `expires_at`,
    `downloaded_at`,
    `download_count`
  )
VALUES
  (
    11,
    1,
    NULL,
    'clinical',
    '2025-04-01',
    '2025-11-30',
    'clinical_1_1765553865038.pdf',
    'https://hms-report.4b1a3ea0b2c7d093e60985869e4e15e6.r2.cloudflarestorage.com/reports/clinical_1_1765553865038.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=3b8e902361ead9aa761f9931b51cc40a%2F20251212%2Fauto%2Fs3%2Faws4_request&X-Amz-Date=20251212T153746Z&X-Amz-Expires=604800&X-Amz-Signature=80cf4e5c40d79280a9b270fb8380876239080dc689805cec511b9d056cb16b26&X-Amz-SignedHeaders=host&x-amz-checksum-mode=ENABLED&x-id=GetObject',
    6,
    'email',
    0,
    0,
    0,
    4.77,
    NULL,
    '2025-12-12 16:37:46',
    '2026-01-11 16:37:46',
    '0000-00-00 00:00:00',
    0
  );
INSERT INTO
  `generated_reports` (
    `id`,
    `user_id`,
    `preference_id`,
    `report_type`,
    `report_period_start`,
    `report_period_end`,
    `file_name`,
    `file_url`,
    `file_size_kb`,
    `delivery_method`,
    `email_sent`,
    `whatsapp_sent`,
    `app_notified`,
    `generation_time_seconds`,
    `llm_tokens_used`,
    `generated_at`,
    `expires_at`,
    `downloaded_at`,
    `download_count`
  )
VALUES
  (
    12,
    1,
    NULL,
    'clinical',
    '2025-04-01',
    '2025-11-30',
    'clinical_1_1765555874486.pdf',
    'https://hms-report.4b1a3ea0b2c7d093e60985869e4e15e6.r2.cloudflarestorage.com/reports/clinical_1_1765555874486.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=3b8e902361ead9aa761f9931b51cc40a%2F20251212%2Fauto%2Fs3%2Faws4_request&X-Amz-Date=20251212T161115Z&X-Amz-Expires=604800&X-Amz-Signature=317f2977c7d2dc6310de72ac52f83518e4d5a87ef622b14b2dcab9ea1849b2cf&X-Amz-SignedHeaders=host&x-amz-checksum-mode=ENABLED&x-id=GetObject',
    12,
    'email',
    0,
    0,
    0,
    3.58,
    NULL,
    '2025-12-12 17:11:15',
    '2026-01-11 17:11:15',
    '0000-00-00 00:00:00',
    0
  );
INSERT INTO
  `generated_reports` (
    `id`,
    `user_id`,
    `preference_id`,
    `report_type`,
    `report_period_start`,
    `report_period_end`,
    `file_name`,
    `file_url`,
    `file_size_kb`,
    `delivery_method`,
    `email_sent`,
    `whatsapp_sent`,
    `app_notified`,
    `generation_time_seconds`,
    `llm_tokens_used`,
    `generated_at`,
    `expires_at`,
    `downloaded_at`,
    `download_count`
  )
VALUES
  (
    13,
    1,
    NULL,
    'financial',
    '2025-04-01',
    '2025-11-30',
    'financial_1_1765556067920.pdf',
    'https://hms-report.4b1a3ea0b2c7d093e60985869e4e15e6.r2.cloudflarestorage.com/reports/financial_1_1765556067920.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=3b8e902361ead9aa761f9931b51cc40a%2F20251212%2Fauto%2Fs3%2Faws4_request&X-Amz-Date=20251212T161429Z&X-Amz-Expires=604800&X-Amz-Signature=ea05b75f2959a1eaf6a801beb726cb2e833a86c22bdf674c640c3facb5be1130&X-Amz-SignedHeaders=host&x-amz-checksum-mode=ENABLED&x-id=GetObject',
    11,
    'email',
    0,
    0,
    0,
    3.42,
    NULL,
    '2025-12-12 17:14:29',
    '2026-01-11 17:14:29',
    '0000-00-00 00:00:00',
    0
  );
INSERT INTO
  `generated_reports` (
    `id`,
    `user_id`,
    `preference_id`,
    `report_type`,
    `report_period_start`,
    `report_period_end`,
    `file_name`,
    `file_url`,
    `file_size_kb`,
    `delivery_method`,
    `email_sent`,
    `whatsapp_sent`,
    `app_notified`,
    `generation_time_seconds`,
    `llm_tokens_used`,
    `generated_at`,
    `expires_at`,
    `downloaded_at`,
    `download_count`
  )
VALUES
  (
    14,
    1,
    NULL,
    'clinical',
    '2025-11-12',
    '2025-12-12',
    'clinical_1_1765556314467.pdf',
    'https://hms-report.4b1a3ea0b2c7d093e60985869e4e15e6.r2.cloudflarestorage.com/reports/clinical_1_1765556314467.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=3b8e902361ead9aa761f9931b51cc40a%2F20251212%2Fauto%2Fs3%2Faws4_request&X-Amz-Date=20251212T161835Z&X-Amz-Expires=604800&X-Amz-Signature=6a40705bcacff5e4575161d8662f6e3dd6d1ca79306a0fd48d4a59b405ee039b&X-Amz-SignedHeaders=host&x-amz-checksum-mode=ENABLED&x-id=GetObject',
    10,
    'email',
    1,
    0,
    0,
    3.27,
    NULL,
    '2025-12-12 17:18:35',
    '2026-01-11 17:18:35',
    '0000-00-00 00:00:00',
    0
  );
INSERT INTO
  `generated_reports` (
    `id`,
    `user_id`,
    `preference_id`,
    `report_type`,
    `report_period_start`,
    `report_period_end`,
    `file_name`,
    `file_url`,
    `file_size_kb`,
    `delivery_method`,
    `email_sent`,
    `whatsapp_sent`,
    `app_notified`,
    `generation_time_seconds`,
    `llm_tokens_used`,
    `generated_at`,
    `expires_at`,
    `downloaded_at`,
    `download_count`
  )
VALUES
  (
    15,
    1,
    NULL,
    'clinical',
    '2025-01-01',
    '2025-11-30',
    'clinical_1_1765558531045.pdf',
    'https://hms-report.4b1a3ea0b2c7d093e60985869e4e15e6.r2.cloudflarestorage.com/reports/clinical_1_1765558531045.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=3b8e902361ead9aa761f9931b51cc40a%2F20251212%2Fauto%2Fs3%2Faws4_request&X-Amz-Date=20251212T165532Z&X-Amz-Expires=604800&X-Amz-Signature=9b2baf55ff448cdd86e9aa744da84f59f50231863babb44d52a1cfb8712cb8ef&X-Amz-SignedHeaders=host&x-amz-checksum-mode=ENABLED&x-id=GetObject',
    10,
    'email',
    1,
    0,
    0,
    3.45,
    NULL,
    '2025-12-12 17:55:32',
    '2026-01-11 17:55:32',
    '0000-00-00 00:00:00',
    0
  );
INSERT INTO
  `generated_reports` (
    `id`,
    `user_id`,
    `preference_id`,
    `report_type`,
    `report_period_start`,
    `report_period_end`,
    `file_name`,
    `file_url`,
    `file_size_kb`,
    `delivery_method`,
    `email_sent`,
    `whatsapp_sent`,
    `app_notified`,
    `generation_time_seconds`,
    `llm_tokens_used`,
    `generated_at`,
    `expires_at`,
    `downloaded_at`,
    `download_count`
  )
VALUES
  (
    16,
    1,
    NULL,
    'financial',
    '2025-01-01',
    '2025-11-30',
    'financial_1_1765559242728.pdf',
    'https://hms-report.4b1a3ea0b2c7d093e60985869e4e15e6.r2.cloudflarestorage.com/reports/financial_1_1765559242728.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=3b8e902361ead9aa761f9931b51cc40a%2F20251212%2Fauto%2Fs3%2Faws4_request&X-Amz-Date=20251212T170724Z&X-Amz-Expires=604800&X-Amz-Signature=1e6d5eaa88cd8b4eeb0c40c5d665e02a5a88196a0dd92da6e15315ff96192096&X-Amz-SignedHeaders=host&x-amz-checksum-mode=ENABLED&x-id=GetObject',
    11,
    'email',
    1,
    0,
    0,
    4.12,
    NULL,
    '2025-12-12 18:07:24',
    '2026-01-11 18:07:24',
    '0000-00-00 00:00:00',
    0
  );
INSERT INTO
  `generated_reports` (
    `id`,
    `user_id`,
    `preference_id`,
    `report_type`,
    `report_period_start`,
    `report_period_end`,
    `file_name`,
    `file_url`,
    `file_size_kb`,
    `delivery_method`,
    `email_sent`,
    `whatsapp_sent`,
    `app_notified`,
    `generation_time_seconds`,
    `llm_tokens_used`,
    `generated_at`,
    `expires_at`,
    `downloaded_at`,
    `download_count`
  )
VALUES
  (
    17,
    1,
    NULL,
    'financial',
    '2025-01-01',
    '2025-11-30',
    'financial_1_1765559921194.pdf',
    'https://hms-report.4b1a3ea0b2c7d093e60985869e4e15e6.r2.cloudflarestorage.com/reports/financial_1_1765559921194.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=3b8e902361ead9aa761f9931b51cc40a%2F20251212%2Fauto%2Fs3%2Faws4_request&X-Amz-Date=20251212T171842Z&X-Amz-Expires=604800&X-Amz-Signature=00d28bb6243f4d96aba6134f0d339e817231de2c8fa6dc478dddcffa42505059&X-Amz-SignedHeaders=host&x-amz-checksum-mode=ENABLED&x-id=GetObject',
    11,
    'email',
    1,
    0,
    0,
    4.40,
    NULL,
    '2025-12-12 18:18:42',
    '2026-01-11 18:18:42',
    '0000-00-00 00:00:00',
    0
  );
INSERT INTO
  `generated_reports` (
    `id`,
    `user_id`,
    `preference_id`,
    `report_type`,
    `report_period_start`,
    `report_period_end`,
    `file_name`,
    `file_url`,
    `file_size_kb`,
    `delivery_method`,
    `email_sent`,
    `whatsapp_sent`,
    `app_notified`,
    `generation_time_seconds`,
    `llm_tokens_used`,
    `generated_at`,
    `expires_at`,
    `downloaded_at`,
    `download_count`
  )
VALUES
  (
    18,
    1,
    NULL,
    'comprehensive',
    '2025-12-05',
    '2026-01-04',
    'comprehensive_1_1767544689737.pdf',
    'https://hms-report.4b1a3ea0b2c7d093e60985869e4e15e6.r2.cloudflarestorage.com/reports/comprehensive_1_1767544689737.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=3b8e902361ead9aa761f9931b51cc40a%2F20260104%2Fauto%2Fs3%2Faws4_request&X-Amz-Date=20260104T163811Z&X-Amz-Expires=604800&X-Amz-Signature=db59b05bcae3a270610abfa995def8a596cbee56fd07b95c637c2f4cd33cd2f1&X-Amz-SignedHeaders=host&x-amz-checksum-mode=ENABLED&x-id=GetObject',
    36,
    'email',
    1,
    0,
    0,
    5.67,
    NULL,
    '2026-01-04 17:38:11',
    '2026-02-03 17:38:11',
    '0000-00-00 00:00:00',
    0
  );
INSERT INTO
  `generated_reports` (
    `id`,
    `user_id`,
    `preference_id`,
    `report_type`,
    `report_period_start`,
    `report_period_end`,
    `file_name`,
    `file_url`,
    `file_size_kb`,
    `delivery_method`,
    `email_sent`,
    `whatsapp_sent`,
    `app_notified`,
    `generation_time_seconds`,
    `llm_tokens_used`,
    `generated_at`,
    `expires_at`,
    `downloaded_at`,
    `download_count`
  )
VALUES
  (
    19,
    1,
    NULL,
    'comprehensive',
    '2026-01-05',
    '2026-01-06',
    'comprehensive_1_1767546708557.pdf',
    'https://hms-report.4b1a3ea0b2c7d093e60985869e4e15e6.r2.cloudflarestorage.com/reports/comprehensive_1_1767546708557.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=3b8e902361ead9aa761f9931b51cc40a%2F20260104%2Fauto%2Fs3%2Faws4_request&X-Amz-Date=20260104T171150Z&X-Amz-Expires=604800&X-Amz-Signature=adf77f3bbbe9aaffb680a4709ebe33a41d4e1eeb115fd6ca469a53163084e06d&X-Amz-SignedHeaders=host&x-amz-checksum-mode=ENABLED&x-id=GetObject',
    28,
    'email',
    1,
    0,
    0,
    5.38,
    NULL,
    '2026-01-04 18:11:50',
    '2026-02-03 18:11:50',
    '0000-00-00 00:00:00',
    0
  );
INSERT INTO
  `generated_reports` (
    `id`,
    `user_id`,
    `preference_id`,
    `report_type`,
    `report_period_start`,
    `report_period_end`,
    `file_name`,
    `file_url`,
    `file_size_kb`,
    `delivery_method`,
    `email_sent`,
    `whatsapp_sent`,
    `app_notified`,
    `generation_time_seconds`,
    `llm_tokens_used`,
    `generated_at`,
    `expires_at`,
    `downloaded_at`,
    `download_count`
  )
VALUES
  (
    20,
    1,
    NULL,
    'comprehensive',
    '2026-01-04',
    '2026-01-05',
    'comprehensive_1_1767547181877.pdf',
    'https://hms-report.4b1a3ea0b2c7d093e60985869e4e15e6.r2.cloudflarestorage.com/reports/comprehensive_1_1767547181877.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=3b8e902361ead9aa761f9931b51cc40a%2F20260104%2Fauto%2Fs3%2Faws4_request&X-Amz-Date=20260104T171943Z&X-Amz-Expires=604800&X-Amz-Signature=0a9983396cbaad253b097791d571652a063f45379fbe006d37cec6e882dbb2b4&X-Amz-SignedHeaders=host&x-amz-checksum-mode=ENABLED&x-id=GetObject',
    34,
    'email',
    1,
    0,
    0,
    5.00,
    NULL,
    '2026-01-04 18:19:43',
    '2026-02-03 18:19:43',
    '0000-00-00 00:00:00',
    0
  );
INSERT INTO
  `generated_reports` (
    `id`,
    `user_id`,
    `preference_id`,
    `report_type`,
    `report_period_start`,
    `report_period_end`,
    `file_name`,
    `file_url`,
    `file_size_kb`,
    `delivery_method`,
    `email_sent`,
    `whatsapp_sent`,
    `app_notified`,
    `generation_time_seconds`,
    `llm_tokens_used`,
    `generated_at`,
    `expires_at`,
    `downloaded_at`,
    `download_count`
  )
VALUES
  (
    21,
    1,
    NULL,
    'comprehensive',
    '2025-12-10',
    '2026-01-09',
    'comprehensive_1_1767967244167.pdf',
    'https://hms-report.4b1a3ea0b2c7d093e60985869e4e15e6.r2.cloudflarestorage.com/reports/comprehensive_1_1767967244167.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=3b8e902361ead9aa761f9931b51cc40a%2F20260109%2Fauto%2Fs3%2Faws4_request&X-Amz-Date=20260109T140046Z&X-Amz-Expires=604800&X-Amz-Signature=5dd47f662bc979af593a50e913bf195df1085ac0873ec3289ca501cb4ac7665a&X-Amz-SignedHeaders=host&x-amz-checksum-mode=ENABLED&x-id=GetObject',
    37,
    'email',
    1,
    0,
    0,
    6.83,
    NULL,
    '2026-01-09 15:00:46',
    '2026-02-08 15:00:46',
    '0000-00-00 00:00:00',
    0
  );
INSERT INTO
  `generated_reports` (
    `id`,
    `user_id`,
    `preference_id`,
    `report_type`,
    `report_period_start`,
    `report_period_end`,
    `file_name`,
    `file_url`,
    `file_size_kb`,
    `delivery_method`,
    `email_sent`,
    `whatsapp_sent`,
    `app_notified`,
    `generation_time_seconds`,
    `llm_tokens_used`,
    `generated_at`,
    `expires_at`,
    `downloaded_at`,
    `download_count`
  )
VALUES
  (
    22,
    1,
    NULL,
    'comprehensive',
    '2025-12-14',
    '2026-01-13',
    'comprehensive_1_1768287962110.pdf',
    'https://hms-report.4b1a3ea0b2c7d093e60985869e4e15e6.r2.cloudflarestorage.com/reports/comprehensive_1_1768287962110.pdf?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=3b8e902361ead9aa761f9931b51cc40a%2F20260113%2Fauto%2Fs3%2Faws4_request&X-Amz-Date=20260113T070603Z&X-Amz-Expires=604800&X-Amz-Signature=1273ac3bd2bf2543305ce30b6d05aabd01f2d6504b956aaf3fde061fbe3dc08b&X-Amz-SignedHeaders=host&x-amz-checksum-mode=ENABLED&x-id=GetObject',
    37,
    'email',
    1,
    0,
    0,
    5.33,
    NULL,
    '2026-01-13 08:06:03',
    '2026-02-12 08:06:03',
    '0000-00-00 00:00:00',
    0
  );

# ------------------------------------------------------------
# DATA DUMP FOR TABLE: hmo_bills
# ------------------------------------------------------------

INSERT INTO
  `hmo_bills` (
    `id`,
    `code_name`,
    `patient_id`,
    `service_type`,
    `amount`,
    `date_time`,
    `status`
  )
VALUES
  (
    1,
    'OSHIA',
    '6/2504/GOH',
    'treatment',
    2000.00,
    '2025-07-10 12:54:10',
    'unbilled'
  );
INSERT INTO
  `hmo_bills` (
    `id`,
    `code_name`,
    `patient_id`,
    `service_type`,
    `amount`,
    `date_time`,
    `status`
  )
VALUES
  (
    2,
    'Nil',
    '7/2505/GOH',
    'treatment',
    6500.00,
    '2025-07-10 15:37:19',
    'unbilled'
  );
INSERT INTO
  `hmo_bills` (
    `id`,
    `code_name`,
    `patient_id`,
    `service_type`,
    `amount`,
    `date_time`,
    `status`
  )
VALUES
  (
    3,
    'Nil',
    '3/2504/GOH',
    'treatment',
    6500.00,
    '2025-07-10 15:41:40',
    'unbilled'
  );
INSERT INTO
  `hmo_bills` (
    `id`,
    `code_name`,
    `patient_id`,
    `service_type`,
    `amount`,
    `date_time`,
    `status`
  )
VALUES
  (
    5,
    'Nil',
    '7/2505/GOH',
    'treatment',
    6500.00,
    '2025-07-10 16:23:25',
    'unbilled'
  );

# ------------------------------------------------------------
# DATA DUMP FOR TABLE: hmo_payments
# ------------------------------------------------------------


# ------------------------------------------------------------
# DATA DUMP FOR TABLE: hmo_reg
# ------------------------------------------------------------

INSERT INTO
  `hmo_reg` (
    `id`,
    `name`,
    `code_name`,
    `address`,
    `contact_person`,
    `contact_email`,
    `phone_num`,
    `wallet`,
    `date_time`
  )
VALUES
  (
    1,
    'SAKORDIE FARM LTD',
    'SDF',
    'Aba village, Owinni',
    'health mainance officer',
    'hr@sdf.com',
    '09012345678',
    NULL,
    '2025-04-01 22:58:07'
  );
INSERT INTO
  `hmo_reg` (
    `id`,
    `name`,
    `code_name`,
    `address`,
    `contact_person`,
    `contact_email`,
    `phone_num`,
    `wallet`,
    `date_time`
  )
VALUES
  (
    2,
    'ABC Family',
    'ABC',
    NULL,
    NULL,
    'N/A',
    'N/A',
    NULL,
    '2025-04-06 10:28:34'
  );
INSERT INTO
  `hmo_reg` (
    `id`,
    `name`,
    `code_name`,
    `address`,
    `contact_person`,
    `contact_email`,
    `phone_num`,
    `wallet`,
    `date_time`
  )
VALUES
  (
    3,
    'Oyo State Health Insurance Agency',
    'OSHIA',
    'Agodi gate ibadan',
    'Sales Manager',
    'N/A',
    'N/A',
    NULL,
    '2025-04-09 21:29:01'
  );
INSERT INTO
  `hmo_reg` (
    `id`,
    `name`,
    `code_name`,
    `address`,
    `contact_person`,
    `contact_email`,
    `phone_num`,
    `wallet`,
    `date_time`
  )
VALUES
  (
    4,
    'Ola Health Insurance Agency',
    'OHIS',
    'Ola str, Akoka Lagos',
    'Admin Manager',
    'admin@ohis.org',
    '09101234567',
    NULL,
    '2025-06-17 08:23:46'
  );
INSERT INTO
  `hmo_reg` (
    `id`,
    `name`,
    `code_name`,
    `address`,
    `contact_person`,
    `contact_email`,
    `phone_num`,
    `wallet`,
    `date_time`
  )
VALUES
  (
    5,
    'HYGIA HEALTH INSURANCE INT',
    'HYGIA',
    'Challenge Area Ibadan',
    'The Operational Officer',
    'N/A',
    '09012345678',
    NULL,
    '2025-08-08 13:02:24'
  );
INSERT INTO
  `hmo_reg` (
    `id`,
    `name`,
    `code_name`,
    `address`,
    `contact_person`,
    `contact_email`,
    `phone_num`,
    `wallet`,
    `date_time`
  )
VALUES
  (
    6,
    'OGUN STATE HEALTH INSURANCE AGENCY',
    'OGHIA',
    'Kuto road, Ibafon, Ogun state',
    'Excutive Secretary',
    'N/A',
    '10293847566',
    NULL,
    '2025-12-26 22:00:45'
  );

# ------------------------------------------------------------
# DATA DUMP FOR TABLE: hospital_man
# ------------------------------------------------------------

INSERT INTO
  `hospital_man` (
    `id`,
    `firstName`,
    `lastName`,
    `email`,
    `phone_num`,
    `password`,
    `rank`,
    `rcode`,
    `date_time`,
    `rcode_expires`,
    `branch_id`
  )
VALUES
  (
    1,
    'Dev',
    'Ola',
    'ayoatiola@gmail.com',
    '08133667861',
    '$2b$10$khtCxDXLSdWU4f08Lhc9WuoRg/6VHoaKFzni.wQROTddffU8vLGGG',
    1,
    701253,
    '2025-04-01 21:43:02',
    '2025-04-06 23:12:50',
    1
  );

# ------------------------------------------------------------
# DATA DUMP FOR TABLE: hospitals
# ------------------------------------------------------------

INSERT INTO
  `hospitals` (
    `id`,
    `name`,
    `code_name`,
    `address`,
    `phone_num`,
    `email`,
    `slogan`,
    `online_id`,
    `branch_id`,
    `machine_id`,
    `backup_mode`,
    `backup_drive_folder_id`,
    `backup_auto_frequency`,
    `backup_auto_next_run`
  )
VALUES
  (
    1,
    'GO Hospital',
    'GOH',
    'Hybrid road, City state, City',
    '09152261215',
    'ayoatiola@gmail.com',
    '',
    1,
    1,
    NULL,
    'gdrive',
    '1XzM4lFSf3qpEPF9a3MnnuNEn1ZBK1Mos',
    'twice',
    '2026-01-14 08:12:10'
  );
INSERT INTO
  `hospitals` (
    `id`,
    `name`,
    `code_name`,
    `address`,
    `phone_num`,
    `email`,
    `slogan`,
    `online_id`,
    `branch_id`,
    `machine_id`,
    `backup_mode`,
    `backup_drive_folder_id`,
    `backup_auto_frequency`,
    `backup_auto_next_run`
  )
VALUES
  (
    2,
    'New Facility Centre',
    'NFC',
    'Jankara Road',
    '08112345678',
    'facility@gmail.com',
    '',
    2,
    2,
    NULL,
    'local',
    NULL,
    'off',
    NULL
  );

# ------------------------------------------------------------
# DATA DUMP FOR TABLE: icd10_codes
# ------------------------------------------------------------

INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('A01.0', 'Typhoid Fever', 'Infectious diseases');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('A06', 'Amebiasis', 'Infectious diseases');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('A07', 'Giardiasis', 'Infectious diseases');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('A09', 'Gastroenteritis', 'Digestive');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  (
    'A09.0',
    'Infectious Diarrhea',
    'Infectious diseases'
  );
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('A16', 'Tuberculosis', 'Infectious diseases');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  (
    'A50',
    'Congenital Syphilis',
    'Infectious diseases'
  );
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('A51', 'Secondary Syphilis', 'Infectious diseases');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  (
    'A54',
    'Gonococcal Infection',
    'Infectious diseases'
  );
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  (
    'A56',
    'Chlamydial Infection',
    'Infectious diseases'
  );
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  (
    'B01',
    'Varicella (Chickenpox)',
    'Infectious diseases'
  );
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('B05', 'Measles', 'Infectious diseases');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  (
    'B17.9',
    'Acute Viral Hepatitis, Unspecified',
    'Infectious diseases'
  );
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  (
    'B18.1',
    'Chronic Viral Hepatitis B',
    'Infectious diseases'
  );
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  (
    'B18.2',
    'Chronic Viral Hepatitis C',
    'Infectious diseases'
  );
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  (
    'B19.9',
    'Unspecified Viral Hepatitis',
    'Infectious diseases'
  );
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('B20', 'HIV Disease', 'Infectious diseases');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  (
    'B35',
    'Dermatophytosis (Ringworm)',
    'Infectious diseases'
  );
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('B37', 'Candidiasis', 'Infectious diseases');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('B50', 'Malaria', 'Infectious diseases');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('B86', 'Scabies', 'Infectious diseases');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('C16', 'Malignant Neoplasm of Stomach', 'Oncology');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('C18', 'Malignant Neoplasm of Colon', 'Oncology');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  (
    'C22',
    'Malignant Neoplasm of Liver and Intrahepatic Bile Ducts',
    'Oncology'
  );
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  (
    'C34',
    'Malignant Neoplasm of Bronchus and Lung',
    'Oncology'
  );
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('C50', 'Malignant Neoplasm of Breast', 'Oncology');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  (
    'C53',
    'Malignant Neoplasm of Cervix Uteri',
    'Oncology'
  );
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  (
    'C61',
    'Malignant Neoplasm of Prostate',
    'Oncology'
  );
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('C64', 'Malignant Neoplasm of Kidney', 'Oncology');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('C67', 'Malignant Neoplasm of Bladder', 'Oncology');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('C91', 'Lymphoid Leukemia', 'Oncology');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('C92', 'Myeloid Leukemia', 'Oncology');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('D50', 'Iron Deficiency Anemia', 'Hematologic');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('D57', 'Sickle Cell Disease', 'Hematologic');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('E03', 'Hypothyroidism', 'Endocrine');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  (
    'E05',
    'Hyperthyroidism (Thyrotoxicosis)',
    'Endocrine'
  );
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('E10', 'Type 1 Diabetes Mellitus', 'Endocrine');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('E11', 'Type 2 Diabetes Mellitus', 'Endocrine');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('E66', 'Obesity', 'Endocrine');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  (
    'E78',
    'Disorders of Lipoprotein Metabolism (Hyperlipidemia)',
    'Endocrine'
  );
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  (
    'F10',
    'Alcohol Related Disorders',
    'Mental health'
  );
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('F11', 'Opioid Dependence', 'Mental health');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('F17', 'Nicotine Dependence', 'Mental health');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('F20', 'Schizophrenia', 'Mental health');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('F31', 'Bipolar Disorder', 'Mental health');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('F32', 'Depressive Episode', 'Mental health');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  (
    'F33',
    'Recurrent Depressive Disorder',
    'Mental health'
  );
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('F41', 'Anxiety Disorder', 'Mental health');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  (
    'F43.1',
    'Post-Traumatic Stress Disorder (PTSD)',
    'Mental health'
  );
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('F50', 'Eating Disorders', 'Mental health');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  (
    'F70',
    'Mild Intellectual Disability',
    'Mental health'
  );
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('G25', 'Essential Tremor', 'Neurologic');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('G30', 'Alzheimer\'s Disease', 'Neurologic');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('G40', 'Epilepsy', 'Neurologic');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('G43', 'Migraine', 'Neurologic');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  (
    'G60',
    'Hereditary and Idiopathic Neuropathy',
    'Neurologic'
  );
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  (
    'G61',
    'Inflammatory Polyneuropathy (Guillain-Barr?)',
    'Neurologic'
  );
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('H10', 'Conjunctivitis', 'Ophthalmology');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('H25', 'Senile Cataract', 'Ophthalmology');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('H40', 'Glaucoma', 'Ophthalmology');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('H54', 'Blindness and Low Vision', 'Ophthalmology');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('H66', 'Otitis Media', 'ENT');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('H91', 'Hearing Loss, Unspecified', 'ENT');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('I09', 'Rheumatic Heart Disease', 'Cardiovascular');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('I10', 'Essential Hypertension', 'Cardiovascular');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  (
    'I11',
    'Hypertensive Heart Disease',
    'Cardiovascular'
  );
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('I20', 'Angina Pectoris', 'Cardiovascular');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  (
    'I21.9',
    'Acute Myocardial Infarction, Unspecified',
    'Cardiovascular'
  );
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('I25', 'Ischemic Heart Disease', 'Cardiovascular');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('I50', 'Heart Failure', 'Cardiovascular');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  (
    'I63',
    'Cerebral Infarction (Stroke)',
    'Cardiovascular'
  );
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('I70', 'Atherosclerosis', 'Cardiovascular');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  (
    'I71',
    'Aortic Aneurysm and Dissection',
    'Cardiovascular'
  );
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  (
    'I73.9',
    'Peripheral Vascular Disease, Unspecified',
    'Cardiovascular'
  );
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  (
    'I74',
    'Arterial Embolism and Thrombosis',
    'Cardiovascular'
  );
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('I85', 'Esophageal Varices', 'Cardiovascular');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('I95', 'Hypotension', 'Cardiovascular');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  (
    'I95.9',
    'Hypotension, Unspecified',
    'Cardiovascular'
  );
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  (
    'J00',
    'Acute Nasopharyngitis (Common Cold)',
    'Respiratory'
  );
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('J02', 'Pharyngitis', 'ENT');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('J03', 'Tonsillitis', 'ENT');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  (
    'J11',
    'Influenza, virus not identified',
    'Respiratory'
  );
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('J18', 'Pneumonia', 'Respiratory');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('J20', 'Acute Bronchitis', 'Respiratory');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('J30', 'Allergic Rhinitis', 'Respiratory');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('J31', 'Chronic Rhinitis', 'Respiratory');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('J32', 'Chronic Sinusitis', 'Respiratory');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  (
    'J44',
    'Chronic Obstructive Pulmonary Disease (COPD)',
    'Respiratory'
  );
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('J45', 'Asthma', 'Respiratory');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('J47', 'Bronchiectasis', 'Respiratory');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  (
    'J84',
    'Interstitial Pulmonary Disease',
    'Respiratory'
  );
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('J85', 'Lung Abscess', 'Respiratory');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  (
    'J90',
    'Pleural Effusion, Not Elsewhere Classified',
    'Respiratory'
  );
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('K27', 'Peptic Ulcer Disease', 'Digestive');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('K29', 'Gastritis', 'Digestive');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('K35', 'Acute Appendicitis', 'Digestive');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  (
    'K52',
    'Noninfective Gastroenteritis and Colitis',
    'Digestive'
  );
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  (
    'K57',
    'Diverticular Disease of Intestine',
    'Digestive'
  );
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('K74', 'Liver Cirrhosis', 'Digestive');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('K76', 'Other Diseases of Liver', 'Digestive');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('K80', 'Cholelithiasis (Gallstones)', 'Digestive');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('K81', 'Cholecystitis', 'Digestive');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('K85', 'Acute Pancreatitis', 'Digestive');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('K86', 'Other Diseases of Pancreas', 'Digestive');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  (
    'K92.2',
    'Gastrointestinal Hemorrhage, unspecified',
    'Digestive'
  );
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('L20', 'Atopic Dermatitis', 'Dermatology');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('L21', 'Seborrheic Dermatitis', 'Dermatology');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('L30', 'Dermatitis (Eczema)', 'Dermatology');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('L50', 'Urticaria (Hives)', 'Dermatology');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  (
    'M05',
    'Rheumatoid Arthritis with Rheumatoid Factor',
    'Musculoskeletal'
  );
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('M06', 'Rheumatoid Arthritis', 'Musculoskeletal');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('M10', 'Gout', 'Musculoskeletal');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('M15', 'Osteoarthritis', 'Musculoskeletal');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  (
    'M32',
    'Systemic Lupus Erythematosus',
    'Musculoskeletal'
  );
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('M54', 'Low Back Pain', 'Musculoskeletal');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('M79.1', 'Myalgia', 'Musculoskeletal');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  (
    'M80',
    'Osteoporosis with Pathological Fracture',
    'Musculoskeletal'
  );
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  (
    'M81',
    'Osteoporosis without Pathological Fracture',
    'Musculoskeletal'
  );
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('N10', 'Acute Pyelonephritis', 'Genitourinary');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('N17', 'Acute Kidney Failure', 'Genitourinary');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('N18', 'Chronic Kidney Disease', 'Genitourinary');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  (
    'N20',
    'Kidney Stone (Urolithiasis)',
    'Genitourinary'
  );
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('N25', 'Renal Tubular Disorders', 'Genitourinary');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  (
    'N39.0',
    'Urinary Tract Infection',
    'Genitourinary'
  );
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  (
    'N40',
    'Benign Prostatic Hyperplasia',
    'Genitourinary'
  );
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('N60', 'Benign Mammary Dysplasia', 'Genitourinary');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  (
    'N76',
    'Vaginitis and Vulvovaginitis',
    'Genitourinary'
  );
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  (
    'N92',
    'Excessive, Frequent and Irregular Menstruation',
    'Genitourinary'
  );
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('O00', 'Ectopic Pregnancy', 'Obstetrics');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  (
    'O03',
    'Spontaneous Abortion (Miscarriage)',
    'Obstetrics'
  );
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('O14', 'Preeclampsia', 'Obstetrics');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  (
    'O42',
    'Premature Rupture of Membranes',
    'Obstetrics'
  );
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('O72', 'Postpartum Hemorrhage', 'Obstetrics');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('O80', 'Normal Delivery', 'Obstetrics');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('P07', 'Prematurity', 'Pediatrics');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  (
    'P22',
    'Respiratory Distress of Newborn',
    'Pediatrics'
  );
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('P59', 'Neonatal Jaundice', 'Pediatrics');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('R07', 'Chest Pain', 'General');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('R10', 'Abdominal Pain', 'General');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('R50', 'Fever of Unknown Origin', 'General');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('R51', 'Headache', 'General');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('S06', 'Intracranial Injury', 'Injury/Trauma');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('S52', 'Fracture of Radius/Ulna', 'Injury/Trauma');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('S72', 'Fracture of Femur', 'Injury/Trauma');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  ('T30', 'Burn Injury', 'Injury/Trauma');
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  (
    'T81',
    'Postprocedural Complications',
    'Injury/Trauma'
  );
INSERT INTO
  `icd10_codes` (`code`, `title`, `category`)
VALUES
  (
    'U07.1',
    'COVID-19 Virus Identified',
    'Infectious diseases'
  );

# ------------------------------------------------------------
# DATA DUMP FOR TABLE: inventories
# ------------------------------------------------------------

INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    247,
    '10% Dextrose saline',
    0,
    0,
    0.00,
    0.00,
    'iv_fluid',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    248,
    '2G CREAM',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    249,
    '4.3% Dextrose saline',
    0,
    0,
    0.00,
    0.00,
    'iv_fluid',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    250,
    '5% Dextrose saline',
    0,
    0,
    0.00,
    0.00,
    'iv_fluid',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    251,
    '5% Dextrose water',
    494,
    0,
    0.00,
    1500.00,
    'iv_fluid',
    'General Drug',
    10,
    1,
    'Doctor Abiodun Salako',
    '2025-11-26 11:48:20',
    500,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    252,
    '50% DEXTROSE',
    0,
    0,
    0.00,
    0.00,
    'iv_fluid',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    253,
    '50% Dextrose saline',
    0,
    0,
    0.00,
    0.00,
    'iv_fluid',
    'General Drug',
    10,
    1,
    'Mopelola Ajasa',
    '2025-07-12 12:49:42',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    254,
    '7 keys',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    255,
    'A.T.S',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    256,
    'ABAKTAL 400MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    257,
    'ABF cream',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    258,
    'ABIDEC DROP',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'nutritional-supliment',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    259,
    'ABITREN 100MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anagelsic',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    260,
    'ACCUPRIL 200MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anti-hypertensive',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    261,
    'ACECLOFENAC 100MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anagelsic',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    262,
    'ACETAZOLAMIDE 250MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    263,
    'ACICLOVIR 200MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    264,
    'ACICLOVIR CREAM 10MG',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    265,
    'ACT tab',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'ACT',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    266,
    'ACT suspension',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'ACT',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    267,
    'ACTIFED SYR',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    268,
    'ACTIFED TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    269,
    'ACTIVATED CHARCOAL',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    270,
    'Actived (Gold)',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    271,
    'ACTRAPID INSULIN 10MLS',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    272,
    'ADRENALIN INJ 1MG',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    273,
    'Adrenaline Inj.',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    274,
    'ADVANTAN CREAM',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    275,
    'ALAXIN SUSP 10MG/5ML',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'ACT',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    276,
    'ALBENDAZOLE (ZENTEL) SUSP 400MG/20ML',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    277,
    'ALBENDAZOLE (ZENTEL) TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    278,
    'ALBINO TABLETS 25MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anti-hypertensive',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    279,
    'Aldomet',
    15,
    0,
    0.00,
    750.00,
    'card_drug',
    'anti-hypertensive',
    10,
    1,
    'Abiodun Salako',
    '2025-12-26 22:16:27',
    80,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    280,
    'ALFA D.O.SC (VIT. D SUPPLEMENT) TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'nutritional-supliment',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    281,
    'ALLOPURINOL 100MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    282,
    'ALPHA THIN CREAM',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    283,
    'ALPHAGAN P EYE DROP 10MLS',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    284,
    'ALPRAPAM 10M TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    285,
    'Amatem Forte',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'ACT',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    286,
    'Amatem soft gel(24)',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'ACT',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    287,
    'Amatem Soft gel(6)',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'ACT',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    288,
    'AMIKAS 1MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    289,
    'Amilophilline',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    290,
    'AMINO PEP SYRUP',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'nutritional-supliment',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    291,
    'AMINO SUPPOSITORIES',
    0,
    0,
    0.00,
    0.00,
    'insertion',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    292,
    'AMINOPHYLLINE INJ 250MG',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    293,
    'AMITRIPTYLINE 25MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    294,
    'Amlodipine (10mg)',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anti-hypertensive',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    295,
    'Ramipril (Amlodipine)',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anti-hypertensive',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    296,
    'AMLODIPINE + INDAPAMIDE TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anti-hypertensive',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    297,
    'Amlodipine(5mg)',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anti-hypertensive',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    298,
    'AMODIAQUINE (CAMOQUINE 200MG) TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'ACT',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    299,
    'AMODIAQUINE (CAMOQUINE) SYR',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'ACT',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    300,
    'AMOKSIKLAV SYR 156 25MG/5MLS-100MLS',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    301,
    'AMOXCILLIN SUSP',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    302,
    'AMOXCILLIN SYR 125MG/5ML',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    303,
    'Amoxicilline',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    304,
    'Amoxiclave',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    305,
    'Amoxy syrurp',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    306,
    'AMOXYCILLIN CLAVULANAT SYR 156MG (DIGICLAV)',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    307,
    'AMOXYCILLIN CLAVULANAT SYR 228MG (DIGICLAV)',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    308,
    'AMOXYCILLIN CLAVULANATE (AMOCIXLAV 1G) TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    309,
    'AMOXYCILLIN CLAVULANATE 1.2G (AUGMENTIN) INJ',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    310,
    'Ampicilline',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    311,
    'AMPICLOX 250MG/5ML - 100ML',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    312,
    'AMPICLOX 500MG INJ',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    313,
    'Ampliclox',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    314,
    'Ampliclox Inj.',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    315,
    'Ampliclox syrup',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    316,
    'Andrew liver salt',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    317,
    'ANDRIOL 40MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    318,
    'ANOROL TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    319,
    'ANTASIL',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    320,
    'ANTI BIN-PRIVIN EYE DROP-10ML',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    321,
    'ANTI-D',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    322,
    'ANTIHISAN CREAM 25MG',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'anti-alergic',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    323,
    'APOBACYN POWDER',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    324,
    'APRESOLINE 20MG INJ',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'anti-hypertensive',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    325,
    'APRESOLINE 25MG',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anti-hypertensive',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    326,
    'APRESOLINE/LABETALOL HCL 50MG',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anti-hypertensive',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    327,
    'ARCALLION TAB (SULBUTIAMINE) 200MG',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    328,
    'Aretequick',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'ACT',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    329,
    'ARSUKMAX',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'ACT',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    330,
    'ARTARE 50MG',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'ACT',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    331,
    'Arteeter Inj.',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'ACT',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    332,
    'Artemeter Inj.',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'ACT',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    333,
    'ARTEMETER/LUMEFANTRINE',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'ACT',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    334,
    'ARTEMETHER_LUMEFANTRINE (20/120) X 24',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'ACT',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    335,
    'ARTEMETHER INJ 80MG/ML',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'ACT',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    336,
    'ARTEMETHER/LUMEFANTRINE SYR',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'ACT',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    337,
    'ARTESUNATE INJECTION',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'ACT',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    338,
    'ARTESUNATE TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'ACT',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    339,
    'Artesunate(120mg) Inj.',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'ACT',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    340,
    'Artesunate(60mg) Inj.',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'ACT',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    341,
    'Artrotec',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    342,
    'ARTROTECT TAB 75MG',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    343,
    'ARVED 450MG',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    344,
    'ASOMEX 2.5',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anti-hypertensive',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    345,
    'ASPIRIN 300MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anagelsic',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    346,
    'ASPIRIN 75MG (VASOPRIN)',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anagelsic',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    347,
    'ASTMALYN SYR',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    348,
    'Astyfer',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'hematinics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    349,
    'ASTYFER CAP',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'hematinics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    350,
    'ASTYFER TONIC',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'hematinics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    351,
    'Astymin',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'hematinics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    352,
    'ASTYMIN CAPS',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'hematinics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    353,
    'Atenolol',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anti-hypertensive',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    354,
    'ATENOLOL + CHLORTALIDONE (TENORIC 50MG) TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anti-hypertensive',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    355,
    'ATENOLOL + INDAPAMIDE (TENORIC 100MG) TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anti-hypertensive',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    356,
    'ATENOLOL 100MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anti-hypertensive',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    357,
    'ATENOLOL 50MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anti-hypertensive',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    358,
    'ATIVAN 2MG',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    359,
    'ATORVASTATIN CALCIUM 10MG (AZTOR)',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    360,
    'ATORVASTATIN CALCIUM 20MG (AZTOR)',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    361,
    'Atropin Inj.',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    362,
    'ATROPINE 600MG INJ',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    363,
    'ATROPINE EYE DROP',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    364,
    'AUGMENTINE (BRANDED) 1.2G INJ',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    365,
    'AUGMENTINE (BRANDED) 1000MG',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    366,
    'AUGMENTINE (BRANDED) 228MG/5ML',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    367,
    'AUGMENTINE (BRANDED) 625MG X 14TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    368,
    'AVANDA 4MG',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    369,
    'AVASCOD N 50/5MG',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anti-hypertensive',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    370,
    'AVOLAM 150MG',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    371,
    'AVOMINE 25MG',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    372,
    'Axtived(Krister)',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    373,
    'AZITHROMYCIN 200MG/5MLS (MIRAZITH)',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    374,
    'AZITHROMYCIN 500MG',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    375,
    'Azithromycine',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    376,
    'AZOPT EYE DROP',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    377,
    'B. complex Inj.',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'hematinics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    378,
    'B.co syrup',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'hematinics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    379,
    'B/COMPLEX SYRUP',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'nutritional-supliment',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    380,
    'BACTROBAN/MUPIROCIN',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    381,
    'BANOCIDE 50MG',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    382,
    'BCG',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    383,
    'BECLOX 500MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    384,
    'BECONASAL DROP',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    385,
    'BENDROFLUAZIDE',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anti-hypertensive',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    386,
    'BENYLIN EXPECTORANT 100MLS',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    387,
    'BENYLIN WITH CODEINE',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    388,
    'Benzyl Benzoate',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anti-septic',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    389,
    'BENZYL BENZOATE LINIMENT',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'anti-septic',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    390,
    'BENZYL PEROXIDE 10 LOTION',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    391,
    'BENZYL PEROXIDE 5 LOTION',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    392,
    'BENZYTHEXOL 6MG (ARTANE) TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    393,
    'BEOPHENIC EAR DROP',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    394,
    'BETAMETHASONE 1/4 N CREAM',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'steroid',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    395,
    'BETAMETHASONE PLAIN',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'steroid',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    396,
    'BETNESOL N EYE OINTMENT',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    397,
    'BETOPTIC EYE DROP',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    398,
    'BETROSIL CREAM',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    399,
    'BIOCOTIN CREAM 20G',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    400,
    'BIOSULIN 30/70',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    401,
    'Bisacodly',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    402,
    'BISACODYL 5MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    403,
    'BIVACYN SPRAY',
    0,
    0,
    0.00,
    0.00,
    'General Drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    404,
    'BKB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    405,
    'BLOOD TONIC SYR',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'hematinics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    406,
    'Bonababe syruo',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    407,
    'BONJELA GEL 10G',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    408,
    'BRETT MOUTH WASH',
    0,
    0,
    0.00,
    0.00,
    'bottle',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    409,
    'BROMHEXINE 8MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    410,
    'BROMOCRIPTINE 2.5MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    411,
    'BRONCHICLIN SYR',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    412,
    'BRONCHOLYTE 4MG/5ML ELIXIR',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    413,
    'BROXINERINE TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    414,
    'Bunto',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    415,
    'BUSCOPAN 10MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    416,
    'BUSCOPAN INJ',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    417,
    'BUSCOPAN SYR',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    418,
    'C-phenicol eye drop',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    419,
    'Cabamizine',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    420,
    'CADIOREX TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anti-hypertensive',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    421,
    'CAFERGOT TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anagelsic',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    422,
    'CAL 1000 EFFERVESCENT TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'nutritional-supliment',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    423,
    'CALAMINE LOTION 100MLS',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    424,
    'CALCIMAX TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'nutritional-supliment',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    425,
    'Calcium',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'nutritional-supliment',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    426,
    'CALCIUM GLUCONATE INJ',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'nutritional-supliment',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    427,
    'CALCIUM LACTATE 300MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'nutritional-supliment',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    428,
    'CALPOL SYR',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'anagelsic',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    429,
    'CAMOQUINE 200MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'ACT',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    430,
    'CAMOQUINE 50MG/5ML-60ML',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'ACT',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    431,
    'Camosunate Adult',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'ACT',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    432,
    'Camusunate(children)',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'ACT',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    433,
    'CANDERIL SWEETNER',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    434,
    'CANDID B LOTION',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'antifungi cream',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    435,
    'CANDID MOUTH PAINT',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'antifungi cream',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    436,
    'CANDID V 500MG PESSARIES (1/PCK)',
    0,
    0,
    0.00,
    0.00,
    'insertion',
    'antifungi cream',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    437,
    'CANDIDERM CREAM',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'antifungi cream',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    438,
    'CANDIDIL SWEETNER POWDER',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    439,
    'Cannula blue',
    0,
    0,
    0.00,
    0.00,
    'medical_consumables',
    'consumables',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    440,
    'Cannula pink',
    0,
    0,
    0.00,
    0.00,
    'medical_consumables',
    'consumables',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    441,
    'CAPTOPRIL 12.5MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anti-hypertensive',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    442,
    'CAPTOPRIL 25MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anti-hypertensive',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    443,
    'CAPTOPRIL 50MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anti-hypertensive',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    444,
    'CARBAMAZEPINE 200MG (ZEPTOL) TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    445,
    'CARBIMAZOLE 5MG (CARBIROID) TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    446,
    'CARBIOTICS EAR DROP',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    447,
    'Carfagot',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    448,
    'Cartheter',
    0,
    0,
    0.00,
    0.00,
    'medical_consumables',
    'consumables',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    449,
    'CARVEDILOL 6.25MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anti-hypertensive',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    450,
    'CASTOR OIL',
    0,
    0,
    0.00,
    0.00,
    'bottle',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    451,
    'CATAPLAM/GRINFLAM 50MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anagelsic',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    452,
    'CEECAL TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'nutritional-supliment',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    453,
    'CEECLOR SYR',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    454,
    'CEFIPOXIME ORELOX (100MG) TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    455,
    'CEFIXIME 100MG/5MLS (IXIME) SYR',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    456,
    'CEFIXIME 400MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    457,
    'CEFPODOXIME ORELOX (200MG) TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    458,
    'CEFPODOXIME ORELOX (SUSP)',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    459,
    'CEFTAZIDIME 1G INJ',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    460,
    'Ceftraixone Infusion',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    461,
    'CEFTRIAXONE 1GM (CEFTRIAXONE)',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    462,
    'CEFUROXIME 250MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    463,
    'CEFUROXIME 500MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    464,
    'CEFUROXIME 750MG INJ',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    465,
    'Cefuroxime suspension',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    466,
    'Cefurozime',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    467,
    'CELIBREX 200MG',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anagelsic',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    468,
    'Cenox',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    469,
    'CENTRUM M/VIT',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'nutritional-supliment',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    470,
    'CEPHALEXIN 125MG/5ML (BRANDED)',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    471,
    'CEPHALEXIN 125MG/5ML SYR (CEPHALEXIN)',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    472,
    'CEPHALEXIN 250MG/5ML SYR (CEPHALEXIN)',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    473,
    'CEPHALEXIN 500MG (CEPHLEX) TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    474,
    'CEPROLOL EAR DROP',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    475,
    'CERVARIX CERVICAL CANCER VACCINE',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    476,
    'CETIRIZINE TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anti-alergic',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    477,
    'Chalamine lotion',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    478,
    'Chest&Lungs',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    479,
    'Chloramphenicol',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    480,
    'CHLORAMPHENICOL EAR DROP',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    481,
    'CHLORAMPHENICOL EYE OINT',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    482,
    'Chloraphenicol Inj.',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    483,
    'Chlorapheramine Inj.',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'anti-alergic',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    484,
    'Chloreromaxine Inj.',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    485,
    'CHLOROQUINE 150MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    486,
    'CHLOROQUINE 200MG INJ',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    487,
    'CHLOROQUINE 50MG/5ML',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    488,
    'Chloroquine Inj.',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    489,
    'Chloroquine Tab',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    490,
    'CHLORPHENIRAMINE 2MG/5ML',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'anti-alergic',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    491,
    'CHLORPHENIRAMINE 4MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anti-alergic',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    492,
    'CHLORPROMAZINE 100MG TAB',
    20,
    0,
    0.00,
    250.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'Abiodun Salako',
    '2025-10-01 09:10:34',
    20,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    493,
    'CHLORPROMAZINE 50MG INJ',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    494,
    'CHLORPROPAMIDE 250MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    495,
    'CHOTIGON 5000IU INJ',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    496,
    'Chromic 0',
    0,
    0,
    0.00,
    0.00,
    'medical_consumables',
    'consumables',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    497,
    'Chromic 2',
    0,
    0,
    0.00,
    0.00,
    'medical_consumables',
    'consumables',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    498,
    'Chromic 2.0',
    0,
    0,
    0.00,
    0.00,
    'medical_consumables',
    'consumables',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    499,
    'Chymoral',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    500,
    'CHYMORAL INJ 500 I.U. INJ',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    501,
    'CIALIS 20MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    502,
    'CICATRIN POWDER',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    503,
    'CIKLAVIT 200MLS',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'nutritional-supliment',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    504,
    'CILOXAN EYE DROP',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    505,
    'CIMETIDINE 200MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    506,
    'CIMETIDINE 200MG/2ML INJ',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    507,
    'CIMETIDINE 400MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    508,
    'CINNARIZINE 25MG (STUGERON)',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    509,
    'Cipro Infusion',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    510,
    'CIPROFLOXACIN 250MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    511,
    'CIPROFLOXACIN 500MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    512,
    'CIPROFLOXACIN IVF 200MG',
    0,
    0,
    0.00,
    0.00,
    'iv_fluid',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    513,
    'ciprofloxacine',
    0,
    0,
    0.00,
    1500.00,
    'card_drug',
    'antibiotics',
    10,
    1,
    'Abiodun Salako',
    '2025-12-26 22:17:42',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    514,
    'Ciprofloxazine (Fidson)',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    515,
    'CIPROFLOXIN EYE DROP',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    516,
    'Ciprotab eye drop',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    517,
    'Ciprotinidazole',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    518,
    'CLARITHROMYCIN 500MG (CLAREX-500MG) X 10TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    519,
    'CLAVAM 228MG/5ML-100MLS',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    520,
    'Clear curf(children)',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    521,
    'CLEXANE INJ (ENOXAPRIN)',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    522,
    'CLINITEST TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    523,
    'CLOBETASOL 45G CREAM',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'antifungi cream',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    524,
    'Clobetobel cream',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'antifungi cream',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    525,
    'CLOMIPHENE 50MG (CLOMID) TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    526,
    'CLONIDINE 100MCG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anti-hypertensive',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    527,
    'CLOPIDOGREL TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    528,
    'CLOXACILLIN 250MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    529,
    'CO-DIOVAN TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anti-hypertensive',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    530,
    'CO-PROXAMOL TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anagelsic',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    531,
    'CO-TRIMAZOLE 240MG/5ML',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    532,
    'COARTEM/ACT 24 TABS 20/120MG',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'ACT',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    533,
    'COARTEM/ACT 6 TABS 80/480MG',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'ACT',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    534,
    'COATAL POWDER',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    535,
    'COCODAMOL TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anagelsic',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    536,
    'COFLIN SYRUP',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    537,
    'COLIPAM 2.5MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    538,
    'COLLIPAN ELIXIR 5MG/5ML-100ML',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    539,
    'COLOMANK PAINT',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    540,
    'COMBANTRIN 125MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    541,
    'COMBANTRIN 250MG/5ML',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    542,
    'CORDARONE 200MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    543,
    'Cotrim syrup',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    544,
    'Cotrimoxazole syrup',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    545,
    'Cotrimoxazole tab',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    546,
    'COTTON WOOL 480MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    547,
    'Cotton wool(big)',
    0,
    0,
    0.00,
    0.00,
    'medical_consumables',
    'consumables',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    548,
    'Cotton wool(small)',
    0,
    0,
    0.00,
    0.00,
    'medical_consumables',
    'consumables',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    549,
    'Crepe bandage',
    0,
    0,
    0.00,
    0.00,
    'medical_consumables',
    'consumables',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    550,
    'CREPE BANDAGES',
    0,
    0,
    0.00,
    0.00,
    'medical_consumables',
    'consumables',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    551,
    'CRESTOR (ROSUVASTATIN) 10MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    552,
    'CRESTOR (ROSUVASTATIN) 20MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    553,
    'CRESTOR (ROSUVASTATIN) 5MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    554,
    'CRYSTALLAPEN INJ',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    555,
    'CYCLOGEST 400MG PESSARY',
    0,
    0,
    0.00,
    0.00,
    'insertion',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    556,
    'DAFLON 500MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    557,
    'DAFLON TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    558,
    'DAKTACORT CREAM',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'antifungi cream',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    559,
    'DAKTARIN CREAM (MICONAZOLE) 2G',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'antifungi cream',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    560,
    'DAZEL KIT (AZITHROMYCIN+FLUCONAZOLE+SECNIDAZOLE) TAB/PCK',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    561,
    'DEDEON HB 280ML',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'hematinics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    562,
    'DEPIXOL 20MG',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    563,
    'DEPO PROVERA INJ',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'contraceptive',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    564,
    'DEPOMEDROL 40MG INJ',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'steroid',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    565,
    'DEPOMEDROL 80MG INJ',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'steroid',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    566,
    'DEQUADIN LOZENGES',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    567,
    'DERMAZINE CREAM 25MG',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    568,
    'DERMOVATE CREAM 25G',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'steroid',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    569,
    'DETRUSITOL 2MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    570,
    'DETRUSITOL XL 4MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    571,
    'Dexa (0.5mg)',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'steroid',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    572,
    'Dexa (1mg)',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'steroid',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    573,
    'Dexa Inj.',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'steroid',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    574,
    'DEXAMETHASONE 8MG INJ',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'steroid',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    575,
    'DEXAMETHASONE TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'steroid',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    576,
    '4.3% Dextrose Saline',
    0,
    40,
    0.00,
    2000.00,
    'iv_fluid',
    'General Drug',
    10,
    1,
    'Abiodun Salako',
    '2025-12-26 22:24:19',
    40,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    577,
    'DEXTROSE 5%',
    0,
    0,
    0.00,
    0.00,
    'iv_fluid',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    578,
    'DEXTROSE 50%',
    0,
    0,
    0.00,
    0.00,
    'iv_fluid',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    579,
    'DEXTROSE WATER 500MLS',
    0,
    0,
    0.00,
    0.00,
    'iv_fluid',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    580,
    'DIABENESE 250MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    581,
    'DIABETIN 450MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    582,
    'DIAMICRON TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    583,
    'DIAMOXYL 250MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    584,
    'DIAPRANOL TAB (THEOPHYLLINE)',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    585,
    'DIAVOM SYR',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    586,
    'Diazepam Injection',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'anaesthesia',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    587,
    'Diclofenac (100mg)SR',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anagelsic',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    588,
    'DICLOFENAC 25 SA (OLFEN-25) TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anagelsic',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    589,
    'DICLOFENAC 25MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anagelsic',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    590,
    'DICLOFENAC 25MG/2ML INJECTION',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'anagelsic',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    591,
    'Diclofenac 50mg',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anagelsic',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    592,
    'Diclofenac Inj.',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'anagelsic',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    593,
    'DICLOFENAC SODIUM 100MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anagelsic',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    594,
    'DICLOFENAC SODIUM 50MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anagelsic',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    595,
    'Diclomol gel',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'anagelsic',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    596,
    'DIGOXIN 250MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    597,
    'DIGOXIN INJECTION 250MG/2ML',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    598,
    'Digoxine',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    599,
    'DIHYDROCHLOROTHIAZIDE TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anti-hypertensive',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    600,
    'DIHYDROCODEINE 30MG+IBUPROFEN (PAXADIN)',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anagelsic',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    601,
    'DILOXANIDE FUROATE 500MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    602,
    'DIOSMIN TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    603,
    'DIOVAN 160MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anti-hypertensive',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    604,
    'DIPERGAN 5MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    605,
    'DOLOMETA B',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'nutritional-supliment',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    606,
    'Dorbaxin',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    607,
    'Doxycycline',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    608,
    'DUPhASTON 10MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    609,
    'Durex',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'contraceptive',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    610,
    'DYMANOGEN LIQUID 10MLS',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'nutritional-supliment',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    611,
    'EBU (200)mg',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    612,
    'EFIN 3.125MG/5ML SUSP',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    613,
    'EMAL INJ 150MG (A.B ARTETHER)',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'ACT',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    614,
    'Emzolyn syrup',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    615,
    'ENALAPRIL+HYDROCHLOROTHIAZIDE (ENARETIC) tab',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anti-hypertensive',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    616,
    'ENCEPHABOL SYR 120MLS',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    617,
    'ENCEPHABOL SYR 200MLS',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    618,
    'ENCEPHABOL TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    619,
    'ENDIX G CREAM',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'antifungi cream',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    620,
    'ENHANCIN 375MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    621,
    'ENHANCIN 625MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    622,
    'ENZOR MENINGITIS VACCINE',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    623,
    'Epiderm cream',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'antifungi cream',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    624,
    'EPILEM TAB 200MG (SODIUM VALPORATE)',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    625,
    'ERGOT INJ',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    626,
    'ERGOTAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    627,
    'ERYTHROMYCIN 125MG/5ML SUSPENSION',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    628,
    'ERYTHROMYCIN 250MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    629,
    'ERYTHROMYCIN 500MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    630,
    'ERYTHROMYCIN CREAM 4% 30MG',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    631,
    'Erythromycine syrup',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    632,
    'ERYTHROPOETIN 2000IU',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    633,
    'ESIDEX 25MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anti-hypertensive',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    634,
    'ESSENTIAL FORTE CAP',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'nutritional-supliment',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    635,
    'ETHAMBUTOL 400MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    636,
    'ETOVIT CAPSEL 200MG CAP',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'nutritional-supliment',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    637,
    'EUCADIE 12.5MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anti-hypertensive',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    638,
    'EUCADIE 25MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anti-hypertensive',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    639,
    'EVACAIN CREAM',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    640,
    'EVENING PRIME ROSE CAP',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'nutritional-supliment',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    641,
    'EVITON MULTIVIT CAPSEL',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'nutritional-supliment',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    642,
    'Exploin (adult)',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    643,
    'EXTORGE (AMLODIPINE/VALSARTAN) 10MG/12.5MG/160 TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anti-hypertensive',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    644,
    'EXTORGE (AMLODIPINE/VALSARTAN) 10MG/5MG/160 TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anti-hypertensive',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    645,
    'EXTORGE (AMLODIPINE/VALSARTAN) 5MG/12.5MG/160 TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anti-hypertensive',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    646,
    'EXTORGE (AMLODIPINE/VALSARTAN) 5MG/5MG/160 TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anti-hypertensive',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    647,
    'FAMOTIDINE 20MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    648,
    'FAMOTIDINE 40MG (MOTIDAL) TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    649,
    'FANSIDAR(S.P.) 125MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    650,
    'FANSIDAR 2.5MG/2ML INJ',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    651,
    'FANSIDAR INJ 525MG',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    652,
    'FANSIDAR SUSP 525MG/5ML',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    653,
    'TINIDAZOLE 500MG TAB (FASGYN)',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    654,
    'Feeding tube',
    0,
    0,
    0.00,
    0.00,
    'medical_consumables',
    'consumables',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    655,
    'FELDENE GEL',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'anagelsic',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    656,
    'FELDENE INJ 20MG',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'anagelsic',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    657,
    'FEOFOL (FERROUS + FOLIC ACID) TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'hematinics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    658,
    'Ferobin capsule',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'hematinics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    659,
    'Ferobin plain',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'hematinics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    660,
    'Ferobin plus',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'hematinics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    661,
    'FERROGLOBIN 200ML SYR',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'hematinics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    662,
    'FERROLAB-12',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'hematinics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    663,
    'FERROUS FUMARATE',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'hematinics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    664,
    'FERROUS GLUCONATE 30MG',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'hematinics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    665,
    'FIACYL 400MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    666,
    'FIACYL SUSP',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    667,
    'Fiesta',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'contraceptive',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    668,
    'FIMAZOL 200MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'antifungi oral',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    669,
    'FLOXOTIDE ACCUHALER',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    670,
    'FLUAXAPEN 125MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    671,
    'FLUAXAPEN 125MG/5ML',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    672,
    'Fluconazole',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'antifungi oral',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    673,
    'FLUCONAZOLE 10MG/1ML SYRUP',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'antifungi oral',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    674,
    'FLUCONAZOLE 150MG',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'antifungi oral',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    675,
    'FLUCONAZOLE 50MG',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'antifungi oral',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    676,
    'Fluconazole cream',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'antifungi cream',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    677,
    'FOLIC ACID SYR',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'hematinics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    678,
    'FOLIC ACID TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'hematinics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    679,
    'Fortes B',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    680,
    'FORTUM 1G INJ',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    681,
    'FORTWIN 30MG (PENTAZOCINE)',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'anaesthesia',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    682,
    'FRUSEMIDE INJ 20MG',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    683,
    'Funbact A',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'antifungi cream',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    684,
    'FUNGISOLVE POWDER 20MG',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'antifungi cream',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    685,
    'Furosemide tab',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    686,
    'GACIRON EYE DROP',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    687,
    'GALVUS MET 50/1000',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    688,
    'Gascol syrup',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    689,
    'Gascol tab',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    690,
    'Gauze bandage',
    0,
    0,
    0.00,
    0.00,
    'medical_consumables',
    'consumables',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    691,
    'Gecrol (big)',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    692,
    'Gecrol(small)',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    693,
    'Gelucil',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    694,
    'Gentamicin eye/ear drop',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    695,
    'GENTAMYCIN 280MG INJ',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    696,
    'GENTAMYCIN CREAM 15G',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    697,
    'Gentamycin Inj',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    698,
    'GENTAMYCIN OINTMENT',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    699,
    'GENTIVAC B ADULT HEPATITIS VACCINE',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    700,
    'GERIATRIC PHARMATHON',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'nutritional-supliment',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    701,
    'GESTID (ANTASID) TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    702,
    'GESTID 200MG/5ML',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    703,
    'GESTID 200ML SYR',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    704,
    'GESTONE 50MG INJ',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    705,
    'Giving set',
    0,
    0,
    0.00,
    0.00,
    'medical_consumables',
    'consumables',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    706,
    'GLIBENCLAMIDE 5MG (DIATAB) TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    707,
    'GLIMEPIRIDE 2MG (MEPIRYL) TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    708,
    'GLUCOPHAGE 500MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    709,
    'Glucose',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    710,
    'Glucose calcium Inj',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    711,
    'GLYBENCLAMIDE 5MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    712,
    'Green cannula',
    0,
    0,
    0.00,
    0.00,
    'medical_consumables',
    'consumables',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    713,
    'Grey cannula',
    0,
    0,
    0.00,
    0.00,
    'medical_consumables',
    'consumables',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    714,
    'GRISEOFULVIN 125MG/5ML SYRUP',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'antifungi oral',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    715,
    'GSUNATE 100MG (RECTAL ARTESUNATE)',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'ACT',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    716,
    'GYNO-DAKTARIN 400MG VAG PESSARIES',
    0,
    0,
    0.00,
    0.00,
    'insertion',
    'antifungi cream',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    717,
    'HAEMARON TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'hematinics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    718,
    'HALOFANTRIN 250MG (HALFAN)',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'ACT',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    719,
    'HALOPERIDOL HCl (HALFAN 250MG)',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'ACT',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    720,
    'HAVRIX 1440',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    721,
    'HBV',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    722,
    'HBV kit',
    0,
    0,
    0.00,
    0.00,
    'medical_consumables',
    'consumables',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    723,
    'HCV kit',
    0,
    0,
    0.00,
    0.00,
    'medical_consumables',
    'consumables',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    724,
    'HEPATITIS A',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    725,
    'HEXIDENE MOUTHWASH',
    0,
    0,
    0.00,
    0.00,
    'bottle',
    'anti-septic',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    726,
    'HIBERIX',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    727,
    'HISTAC 150MG',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    728,
    'HIV kit',
    0,
    0,
    0.00,
    0.00,
    'medical_consumables',
    'consumables',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    729,
    'HOMTIMIN GINSENG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'nutritional-supliment',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    730,
    'HPV 0',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    731,
    'HUMULIN 70/30 CARTRIDGE 100IU/ML INSULIN',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    732,
    'HYCOMYCIN EYEDROP',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    733,
    'HYDRALAZINE INJ 20MG',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'anti-hypertensive',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    734,
    'Hydrex Tab',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    735,
    'AMILORIDE TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anti-hypertensive',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    736,
    'Hydrocort Inj.',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'steroid',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    737,
    'HYDROCORTISONE 1% CREAM',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'steroid',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    738,
    'Hyosine tab',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    739,
    'Hyosine Inj.',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    740,
    'HYPOMELLOSE EYE DROP',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    741,
    'Ibasunate',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'ACT',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    742,
    'Ibu 200mg',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anagelsic',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    743,
    'Ibu 400mg',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anagelsic',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    744,
    'Ibucap 400mg',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anagelsic',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    745,
    'IBUPROFEN 100MG/5ML SYR',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'anagelsic',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    746,
    'IBUPROFEN 200MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anagelsic',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    747,
    'Ibuprofen syrup',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'anagelsic',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    748,
    'IMACIDDIN 50MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    749,
    'IMODIUM 2MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    750,
    'INDERAL 40MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anti-hypertensive',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    751,
    'INDIVIDUAL ANTI RABIES VACCINE',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    752,
    'Indocid tab',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anagelsic',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    753,
    'Inhaler',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    754,
    'INSULIN LENTE I.U (inj)',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    755,
    'INTERFLOX 500MG CAP',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    756,
    'IPV VACCINE',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    757,
    'ISONIAZIDE 300MG (INH) TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    758,
    'ISORDIL 5MG TAB & T.L DROP',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    759,
    'ITHANOL 100MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    760,
    'IVICROM EYE',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    761,
    'JAWASIL SUSP',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    762,
    'KABIDAN 80MG ADULT TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    763,
    'KENALOG 40MG INJ',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'steroid',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    764,
    'KENALOG CREAM',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'steroid',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    765,
    'KETAMINE INJ 200MG',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'anaesthesia',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    766,
    'KETOCONAZOLE 200MG SHAMPOO',
    0,
    0,
    0.00,
    0.00,
    'bottle',
    'antifungi cream',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    767,
    'Ketoconazole cream(Purple)',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'antifungi cream',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    768,
    'Ketoconazole cream(yellow)',
    0,
    0,
    0.00,
    2000.00,
    'gel_cream',
    'antifungi cream',
    10,
    1,
    'Abiodun Salako',
    '2025-12-26 22:18:10',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    769,
    'KETOCONAZOLE SHAMPOO (NIZORAL)',
    0,
    0,
    0.00,
    0.00,
    'bottle',
    'antifungi cream',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    770,
    'Ketoconazole Tab',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'antifungi oral',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    771,
    'KETOPROFEN 200MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anagelsic',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    772,
    'KIDNAP TABLETS 200MG (KETOVAIL)',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anagelsic',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    773,
    'KIDWAY PHARMATON SYR',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'nutritional-supliment',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    774,
    'Kiss contraceptive',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'contraceptive',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    775,
    'Klovinal insertion',
    0,
    0,
    0.00,
    0.00,
    'insertion',
    'insertion',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    776,
    'KOFABEX SYR (ADULT)',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    777,
    'KOFABEX SYR (PAED)',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    778,
    'Kotase tab',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    779,
    'KY-JELLY',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    780,
    'Labetalol Inj.',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'anti-hypertensive',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    781,
    'Labetalol Tab',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anti-hypertensive',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    782,
    'LACTULOSE 10MG/ML SYR',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    783,
    'LAMISIL 250MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'antifungi oral',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    784,
    'LAMISIL CREAM 15G',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'antifungi cream',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    785,
    'LAMOXIL 500MG tab',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    786,
    'LANSOPRAZOLE 30MG (LAMISDEX) tab',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    787,
    'LAPIDAP 12 CHILDREN TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    788,
    'LARGACTIL (CHLORPROMAZINE) tab',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    789,
    'LARGACTIL (CHLORPROMAZINE) 25MG inj',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    790,
    'LAXATIVE LIQUID INJ',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    791,
    'LAXOMAG SYR',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    792,
    'LESCOL 20MG CAP',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    793,
    'LEVAX 40MG TAB',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    794,
    'LEVETIRACETAM 500MG',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    795,
    'Lisonopril(10mg) tab',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anti-hypertensive',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    796,
    'Lisonopril(5mg) tab',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anti-hypertensive',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    797,
    'Lofnac 100mg tab',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anagelsic',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    798,
    'Loperamide tab',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    799,
    'Loratidine tab',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anti-alergic',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    800,
    'Loratidine suspension',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'anti-alergic',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    801,
    'Loratidine syrup',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'anti-alergic',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    802,
    'Losartan',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anti-hypertensive',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    803,
    'Lubricant',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    804,
    'Metazone Cream',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    805,
    'Metoclop Inj.',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    806,
    'Metoclop Tab',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    807,
    'Metro 200mg tab',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    808,
    'Metro 400mg tab',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    809,
    'Metro Infusion',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    810,
    'Metro syrup',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    811,
    'Metronidazole (1000)',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    812,
    'Mist Mag',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    813,
    'Moduretic',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    814,
    'Moko spirit',
    0,
    0,
    0.00,
    0.00,
    'bottle',
    'anti-septic',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    815,
    'MP kit',
    0,
    0,
    0.00,
    0.00,
    'medical_consumables',
    'consumables',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    816,
    'Multivitamine(Krishat)',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'nutritional-supliment',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    817,
    'Needle 21G',
    0,
    0,
    0.00,
    0.00,
    'medical_consumables',
    'consumables',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    818,
    'Needle 23G',
    0,
    0,
    0.00,
    0.00,
    'medical_consumables',
    'consumables',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    819,
    'Needle&Syringe (2 mls)',
    0,
    0,
    0.00,
    0.00,
    'medical_consumables',
    'consumables',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    820,
    'Needle&Syringe (5 mls)',
    0,
    0,
    0.00,
    0.00,
    'medical_consumables',
    'consumables',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    821,
    'Needle&Syringe(10 mls)',
    0,
    0,
    0.00,
    0.00,
    'medical_consumables',
    'consumables',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    822,
    'Nitrazepam',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    823,
    'Normal saline',
    0,
    40,
    0.00,
    2000.00,
    'iv_fluid',
    'General Drug',
    10,
    1,
    'Abiodun Salako',
    '2025-12-26 22:21:55',
    40,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    824,
    'Novalgin',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anagelsic',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    825,
    'Nylon 0',
    0,
    0,
    0.00,
    0.00,
    'medical_consumables',
    'consumables',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    826,
    'Nylon 2.0',
    0,
    0,
    0.00,
    0.00,
    'medical_consumables',
    'consumables',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    827,
    'Ofloxacine',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    828,
    'Omeprazole',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    829,
    'Omeprazole Inj.',
    54,
    5,
    0.00,
    750.00,
    'injection',
    'antibiotics',
    10,
    1,
    'Doctor Abiodun Salako',
    '2025-10-04 15:13:43',
    15,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    830,
    'Orphensic',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    831,
    'ORS',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    832,
    'Oxygen tube(Adult)',
    0,
    0,
    0.00,
    0.00,
    'medical_consumables',
    'consumables',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    833,
    'Oxygen tube(Children)',
    0,
    0,
    0.00,
    0.00,
    'medical_consumables',
    'consumables',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    834,
    'Oxytocine Injection',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    835,
    'P.Alaxine syrup',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'ACT',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    836,
    'P.Alaxine Tabs',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'ACT',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    837,
    'P.C.M Cards',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anagelsic',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    838,
    'pcm tab',
    2999,
    492,
    0.00,
    13.00,
    'counting_drug',
    'anagelsic',
    10,
    1,
    'Doctor Abiodun Salako',
    '2025-12-27 00:02:02',
    500,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    839,
    'pcm syrup',
    10,
    10,
    450.00,
    800.00,
    'syrup_drug',
    'syrup_drug',
    10,
    1,
    'Doctor Abiodun Salako',
    '2025-09-30 16:43:35',
    20,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    840,
    'Panadol Extra',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anagelsic',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    841,
    'Paracetamol Inj',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'anagelsic',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    842,
    'Paracetamol Inj.',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'anagelsic',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    843,
    'Pectos',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    844,
    'Penicilline cream',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    845,
    'Pentazocine Inj.',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'anaesthesia',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    846,
    'Pilex',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    847,
    'Piroxicam',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anagelsic',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    848,
    'Plain Nifedipine',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anti-hypertensive',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    849,
    'Plaster',
    0,
    0,
    0.00,
    0.00,
    'medical_consumables',
    'consumables',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    850,
    'Plaster (small)',
    0,
    0,
    0.00,
    0.00,
    'medical_consumables',
    'consumables',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    851,
    'Prednisolone',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'steroid',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    852,
    'Pregnancy kit',
    0,
    0,
    0.00,
    0.00,
    'medical_consumables',
    'consumables',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    853,
    'Procain penicillin Inj.',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    854,
    'Procold',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    855,
    'Ramipril Tab',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anti-hypertensive',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    856,
    'Retard Nifedipine',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anti-hypertensive',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    857,
    'Rimfapicine',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    858,
    'Robb (big)',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    859,
    'Robb (small)',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    860,
    'Salbutamol inhaler',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    861,
    'Scalp vein',
    0,
    0,
    0.00,
    0.00,
    'medical_consumables',
    'consumables',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    862,
    'Semetil Tab',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    863,
    'Septrin',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    864,
    'Shalartem (24)',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'ACT',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    865,
    'Shalartem * 12',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'ACT',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    866,
    'Shalartem syrup',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'ACT',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    867,
    'Shataux',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    868,
    'Skineal cream',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'antifungi cream',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    869,
    'SP',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    870,
    'Streptomycin',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    871,
    'Stugeron',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    872,
    'Sundex',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    873,
    'Tetracycline',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'antibiotics',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    874,
    'Tomixide',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    875,
    'Touch&Go',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    876,
    'Tributan',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anagelsic',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    877,
    'Tutolin Syrup',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    878,
    'Tuxil (Adult)',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    879,
    'Tuxil pro (child)',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    880,
    'Urine bag',
    0,
    0,
    0.00,
    0.00,
    'medical_consumables',
    'consumables',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    881,
    'Vasoprin',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'anti-hypertensive',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    882,
    'Ventoline Nebulizer Inj.',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    883,
    'Piroxicam Inj.',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'anagelsic',
    10,
    1,
    'Dele Fadairo',
    '2025-07-08 16:01:15',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    884,
    'Vit. c syrup',
    0,
    0,
    0.00,
    0.00,
    'syrup_drug',
    'nutritional-supliment',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    885,
    'vitamin C(100)',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'nutritional-supliment',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    886,
    'Vitamin C(1000)',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'nutritional-supliment',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    887,
    'Warfin',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    888,
    'Water for Inj',
    0,
    0,
    0.00,
    0.00,
    'injection',
    'iv_fluid',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    889,
    'Whitefield cream',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'antifungi cream',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    890,
    'X-pen',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    891,
    'Zet gel',
    0,
    0,
    0.00,
    0.00,
    'gel_cream',
    'General Drug',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    892,
    'Zinc',
    0,
    0,
    0.00,
    0.00,
    'card_drug',
    'nutritional-supliment',
    10,
    1,
    'system',
    '2025-07-07 09:59:21',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    893,
    'Elaquine',
    204,
    200,
    0.00,
    10.00,
    'card_drug',
    'ACT',
    20,
    1,
    'Doctor Abiodun Salako',
    '2025-11-26 11:45:48',
    500,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `inventories` (
    `id`,
    `item_name`,
    `unit_quantities`,
    `store_quantities`,
    `cp_pu`,
    `sp_pu`,
    `item_type`,
    `item_class`,
    `low_stock_threshold`,
    `branch_id`,
    `updated_by`,
    `date_time`,
    `last_restock_quantity`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    894,
    'Mectizan',
    0,
    0,
    0.00,
    0.00,
    'counting_drug',
    'antifungi oral',
    20,
    1,
    'Abiodun Salako',
    '2025-12-26 22:27:43',
    0,
    1,
    NULL,
    NULL,
    0,
    '2025-12-26 22:27:43'
  );

# ------------------------------------------------------------
# DATA DUMP FOR TABLE: inventory_dispensed
# ------------------------------------------------------------

INSERT INTO
  `inventory_dispensed` (
    `id`,
    `inventory_id`,
    `patient_id`,
    `rx_time`,
    `customer_name`,
    `quantity_before`,
    `quantity_dispensed`,
    `quantity_after`,
    `dispensed_by`,
    `date_time`,
    `branch_id`
  )
VALUES
  (
    1,
    893,
    '6/2504/GOH',
    '25 Nov 2025, 11:06 AM',
    NULL,
    222,
    9,
    213,
    'Doctor Abiodun Salako',
    '2025-11-26 11:44:59',
    1
  );
INSERT INTO
  `inventory_dispensed` (
    `id`,
    `inventory_id`,
    `patient_id`,
    `rx_time`,
    `customer_name`,
    `quantity_before`,
    `quantity_dispensed`,
    `quantity_after`,
    `dispensed_by`,
    `date_time`,
    `branch_id`
  )
VALUES
  (
    2,
    838,
    '9/2507/GOH',
    '25 Nov 2025, 10:17 AM',
    NULL,
    3028,
    9,
    3019,
    'Doctor Abiodun Salako',
    '2025-11-26 11:45:48',
    1
  );
INSERT INTO
  `inventory_dispensed` (
    `id`,
    `inventory_id`,
    `patient_id`,
    `rx_time`,
    `customer_name`,
    `quantity_before`,
    `quantity_dispensed`,
    `quantity_after`,
    `dispensed_by`,
    `date_time`,
    `branch_id`
  )
VALUES
  (
    3,
    251,
    '9/2507/GOH',
    '25 Nov 2025, 10:17 AM',
    NULL,
    497,
    1,
    496,
    'Doctor Abiodun Salako',
    '2025-11-26 11:45:48',
    1
  );
INSERT INTO
  `inventory_dispensed` (
    `id`,
    `inventory_id`,
    `patient_id`,
    `rx_time`,
    `customer_name`,
    `quantity_before`,
    `quantity_dispensed`,
    `quantity_after`,
    `dispensed_by`,
    `date_time`,
    `branch_id`
  )
VALUES
  (
    4,
    893,
    '9/2507/GOH',
    '25 Nov 2025, 10:17 AM',
    NULL,
    213,
    9,
    204,
    'Doctor Abiodun Salako',
    '2025-11-26 11:45:48',
    1
  );
INSERT INTO
  `inventory_dispensed` (
    `id`,
    `inventory_id`,
    `patient_id`,
    `rx_time`,
    `customer_name`,
    `quantity_before`,
    `quantity_dispensed`,
    `quantity_after`,
    `dispensed_by`,
    `date_time`,
    `branch_id`
  )
VALUES
  (
    5,
    251,
    '6/2504/GOH',
    '25 Nov 2025, 09:39 AM',
    NULL,
    496,
    1,
    495,
    'Doctor Abiodun Salako',
    '2025-11-26 11:47:01',
    1
  );
INSERT INTO
  `inventory_dispensed` (
    `id`,
    `inventory_id`,
    `patient_id`,
    `rx_time`,
    `customer_name`,
    `quantity_before`,
    `quantity_dispensed`,
    `quantity_after`,
    `dispensed_by`,
    `date_time`,
    `branch_id`
  )
VALUES
  (
    6,
    838,
    '6/2504/GOH',
    '25 Nov 2025, 09:39 AM',
    NULL,
    3019,
    2,
    3017,
    'Doctor Abiodun Salako',
    '2025-11-26 11:47:01',
    1
  );
INSERT INTO
  `inventory_dispensed` (
    `id`,
    `inventory_id`,
    `patient_id`,
    `rx_time`,
    `customer_name`,
    `quantity_before`,
    `quantity_dispensed`,
    `quantity_after`,
    `dispensed_by`,
    `date_time`,
    `branch_id`
  )
VALUES
  (
    7,
    251,
    '6/2504/GOH',
    '25 Nov 2025, 09:39 AM',
    NULL,
    495,
    1,
    494,
    'Doctor Abiodun Salako',
    '2025-11-26 11:48:20',
    1
  );
INSERT INTO
  `inventory_dispensed` (
    `id`,
    `inventory_id`,
    `patient_id`,
    `rx_time`,
    `customer_name`,
    `quantity_before`,
    `quantity_dispensed`,
    `quantity_after`,
    `dispensed_by`,
    `date_time`,
    `branch_id`
  )
VALUES
  (
    8,
    838,
    '24/2512/GOH',
    '26 Dec 2025, 11:45 PM',
    NULL,
    3017,
    18,
    2999,
    'Doctor Abiodun Salako',
    '2025-12-27 00:02:02',
    1
  );

# ------------------------------------------------------------
# DATA DUMP FOR TABLE: inventory_restock_history
# ------------------------------------------------------------

INSERT INTO
  `inventory_restock_history` (
    `id`,
    `inventory_id`,
    `quantity_added`,
    `balance_before`,
    `balance_after`,
    `restocked_by`,
    `branch_id`,
    `date_time`
  )
VALUES
  (
    1,
    829,
    15,
    0,
    15,
    'Abiodun Salako',
    1,
    '2025-09-30 13:06:14'
  );
INSERT INTO
  `inventory_restock_history` (
    `id`,
    `inventory_id`,
    `quantity_added`,
    `balance_before`,
    `balance_after`,
    `restocked_by`,
    `branch_id`,
    `date_time`
  )
VALUES
  (
    2,
    839,
    20,
    0,
    20,
    'Abiodun Salako',
    1,
    '2025-09-30 16:42:10'
  );
INSERT INTO
  `inventory_restock_history` (
    `id`,
    `inventory_id`,
    `quantity_added`,
    `balance_before`,
    `balance_after`,
    `restocked_by`,
    `branch_id`,
    `date_time`
  )
VALUES
  (
    3,
    838,
    500,
    302,
    302500,
    'Abiodun Salako',
    1,
    '2025-10-12 19:19:40'
  );
INSERT INTO
  `inventory_restock_history` (
    `id`,
    `inventory_id`,
    `quantity_added`,
    `balance_before`,
    `balance_after`,
    `restocked_by`,
    `branch_id`,
    `date_time`
  )
VALUES
  (
    4,
    823,
    40,
    0,
    40,
    'Abiodun Salako',
    1,
    '2025-12-26 22:21:55'
  );
INSERT INTO
  `inventory_restock_history` (
    `id`,
    `inventory_id`,
    `quantity_added`,
    `balance_before`,
    `balance_after`,
    `restocked_by`,
    `branch_id`,
    `date_time`
  )
VALUES
  (
    5,
    576,
    40,
    0,
    40,
    'Abiodun Salako',
    1,
    '2025-12-26 22:23:04'
  );

# ------------------------------------------------------------
# DATA DUMP FOR TABLE: inventory_transfers
# ------------------------------------------------------------

INSERT INTO
  `inventory_transfers` (
    `id`,
    `inventory_id`,
    `from_location`,
    `to_location`,
    `transfer_type`,
    `quantity`,
    `from_qty_before`,
    `from_qty_after`,
    `to_qty_before`,
    `to_qty_after`,
    `transfer_by`,
    `date_time`
  )
VALUES
  (
    1,
    829,
    'Store',
    'dispensary Unit',
    'internal',
    5,
    15,
    10,
    0,
    5,
    'Doctor Abiodun Salako',
    '2025-09-30 16:25:11'
  );
INSERT INTO
  `inventory_transfers` (
    `id`,
    `inventory_id`,
    `from_location`,
    `to_location`,
    `transfer_type`,
    `quantity`,
    `from_qty_before`,
    `from_qty_after`,
    `to_qty_before`,
    `to_qty_after`,
    `transfer_by`,
    `date_time`
  )
VALUES
  (
    2,
    829,
    'Store',
    'dispensary Unit',
    'internal',
    5,
    10,
    5,
    5,
    55,
    'Doctor Abiodun Salako',
    '2025-09-30 16:26:43'
  );
INSERT INTO
  `inventory_transfers` (
    `id`,
    `inventory_id`,
    `from_location`,
    `to_location`,
    `transfer_type`,
    `quantity`,
    `from_qty_before`,
    `from_qty_after`,
    `to_qty_before`,
    `to_qty_after`,
    `transfer_by`,
    `date_time`
  )
VALUES
  (
    3,
    839,
    'Store',
    'dispensary Unit',
    'internal',
    10,
    20,
    10,
    0,
    10,
    'Doctor Abiodun Salako',
    '2025-09-30 16:43:35'
  );
INSERT INTO
  `inventory_transfers` (
    `id`,
    `inventory_id`,
    `from_location`,
    `to_location`,
    `transfer_type`,
    `quantity`,
    `from_qty_before`,
    `from_qty_after`,
    `to_qty_before`,
    `to_qty_after`,
    `transfer_by`,
    `date_time`
  )
VALUES
  (
    4,
    893,
    'dispensary Unit',
    'Store',
    'internal',
    200,
    440,
    240,
    0,
    200,
    ' Dev Ola',
    '2025-10-01 18:50:53'
  );
INSERT INTO
  `inventory_transfers` (
    `id`,
    `inventory_id`,
    `from_location`,
    `to_location`,
    `transfer_type`,
    `quantity`,
    `from_qty_before`,
    `from_qty_after`,
    `to_qty_before`,
    `to_qty_after`,
    `transfer_by`,
    `date_time`
  )
VALUES
  (
    5,
    838,
    'Store',
    'dispensary Unit',
    'internal',
    8,
    500,
    492,
    302,
    3028,
    'Doctor Abiodun Salako',
    '2025-10-12 19:20:29'
  );

# ------------------------------------------------------------
# DATA DUMP FOR TABLE: knex_migrations
# ------------------------------------------------------------

INSERT INTO
  `knex_migrations` (`id`, `name`, `batch`, `migration_time`)
VALUES
  (
    1,
    '20251026_add_sync_metadata.js',
    1,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `knex_migrations` (`id`, `name`, `batch`, `migration_time`)
VALUES
  (
    2,
    '20251026_create_devices_table.js',
    1,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `knex_migrations` (`id`, `name`, `batch`, `migration_time`)
VALUES
  (
    3,
    '20251026_create_sync_log.js',
    1,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `knex_migrations` (`id`, `name`, `batch`, `migration_time`)
VALUES
  (
    4,
    '20251026_initial_structure.js',
    1,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `knex_migrations` (`id`, `name`, `batch`, `migration_time`)
VALUES
  (
    5,
    '20251027_add_branch_to_payments.js',
    1,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `knex_migrations` (`id`, `name`, `batch`, `migration_time`)
VALUES
  (
    6,
    '20251027_restore_sync_metadata.js',
    1,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `knex_migrations` (`id`, `name`, `batch`, `migration_time`)
VALUES
  (
    7,
    '20251028_add_sessionid_rx_to_foc.js',
    1,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `knex_migrations` (`id`, `name`, `batch`, `migration_time`)
VALUES
  (
    8,
    '20251101_create_patient_lifestyle_allergies.js',
    1,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `knex_migrations` (`id`, `name`, `batch`, `migration_time`)
VALUES
  (
    9,
    '20251116084622_add_consultation_queue_triggers.js',
    2,
    '2025-11-16 09:47:59'
  );
INSERT INTO
  `knex_migrations` (`id`, `name`, `batch`, `migration_time`)
VALUES
  (
    10,
    '20251116084645_add_consultation_queue_triggers.js',
    2,
    '2025-11-16 09:47:59'
  );
INSERT INTO
  `knex_migrations` (`id`, `name`, `batch`, `migration_time`)
VALUES
  (
    11,
    '20251124085742_mark_waiting_consultations_skipped_event.js',
    3,
    '2025-11-24 09:59:50'
  );
INSERT INTO
  `knex_migrations` (`id`, `name`, `batch`, `migration_time`)
VALUES
  (
    12,
    '20251124093804_create_nursing_sheet_table.js',
    4,
    '2025-11-24 10:41:14'
  );
INSERT INTO
  `knex_migrations` (`id`, `name`, `batch`, `migration_time`)
VALUES
  (
    13,
    '20251124113000_add_session_id_to_nursing_sheet.js',
    5,
    '2025-11-24 11:07:47'
  );
INSERT INTO
  `knex_migrations` (`id`, `name`, `batch`, `migration_time`)
VALUES
  (
    14,
    '20251124154500_create_admission_register_table.js',
    6,
    '2025-11-24 15:57:23'
  );
INSERT INTO
  `knex_migrations` (`id`, `name`, `batch`, `migration_time`)
VALUES
  (
    15,
    '20251125120000_update_admission_register_status_enum.js',
    7,
    '2025-11-25 10:17:43'
  );
INSERT INTO
  `knex_migrations` (`id`, `name`, `batch`, `migration_time`)
VALUES
  (
    16,
    '20251208093000_add_session_id_to_vitals.js',
    8,
    '2025-12-08 18:19:21'
  );
INSERT INTO
  `knex_migrations` (`id`, `name`, `batch`, `migration_time`)
VALUES
  (
    18,
    '20251209_create_patient_communicable_conditions.js',
    9,
    '2025-12-09 12:56:43'
  );
INSERT INTO
  `knex_migrations` (`id`, `name`, `batch`, `migration_time`)
VALUES
  (
    19,
    '20251211084500_add_report_preferences.js',
    10,
    '2025-12-12 01:31:29'
  );
INSERT INTO
  `knex_migrations` (`id`, `name`, `batch`, `migration_time`)
VALUES
  (
    20,
    '20251230_add_backup_mode_to_hospitals.js',
    11,
    '2025-12-30 00:39:05'
  );
INSERT INTO
  `knex_migrations` (`id`, `name`, `batch`, `migration_time`)
VALUES
  (
    21,
    '20260102_add_backup_auto_schedule.js',
    12,
    '2026-01-02 11:19:17'
  );

# ------------------------------------------------------------
# DATA DUMP FOR TABLE: knex_migrations_lock
# ------------------------------------------------------------

INSERT INTO
  `knex_migrations_lock` (`index`, `is_locked`)
VALUES
  (1, 0);

# ------------------------------------------------------------
# DATA DUMP FOR TABLE: lab
# ------------------------------------------------------------


# ------------------------------------------------------------
# DATA DUMP FOR TABLE: lab_requests
# ------------------------------------------------------------

INSERT INTO
  `lab_requests` (
    `id`,
    `patient_id`,
    `doctor_id`,
    `test_name`,
    `status`,
    `date_time`
  )
VALUES
  (
    1,
    '22/2508/GOH',
    'Abiodun Salako',
    'PCV',
    'canceled',
    '2025-09-02 12:27:20'
  );
INSERT INTO
  `lab_requests` (
    `id`,
    `patient_id`,
    `doctor_id`,
    `test_name`,
    `status`,
    `date_time`
  )
VALUES
  (
    2,
    '21/2508/GOH',
    'Abiodun Salako',
    'PCV,genotype',
    'canceled',
    '2025-09-13 12:03:33'
  );
INSERT INTO
  `lab_requests` (
    `id`,
    `patient_id`,
    `doctor_id`,
    `test_name`,
    `status`,
    `date_time`
  )
VALUES
  (
    3,
    '22/2508/GOH',
    'Abiodun Salako',
    'PCV,genotype',
    'canceled',
    '2025-09-14 09:16:38'
  );
INSERT INTO
  `lab_requests` (
    `id`,
    `patient_id`,
    `doctor_id`,
    `test_name`,
    `status`,
    `date_time`
  )
VALUES
  (
    4,
    '22/2508/GOH',
    'Abiodun Salako',
    'PCV',
    'canceled',
    '2025-10-02 16:06:38'
  );
INSERT INTO
  `lab_requests` (
    `id`,
    `patient_id`,
    `doctor_id`,
    `test_name`,
    `status`,
    `date_time`
  )
VALUES
  (
    5,
    '7/2505/GOH',
    'Abiodun Salako',
    'widal test',
    'canceled',
    '2025-10-03 10:08:03'
  );
INSERT INTO
  `lab_requests` (
    `id`,
    `patient_id`,
    `doctor_id`,
    `test_name`,
    `status`,
    `date_time`
  )
VALUES
  (
    6,
    '6/2504/GOH',
    'Abiodun Salako',
    'widal test, PCV',
    'canceled',
    '2025-10-03 13:42:19'
  );
INSERT INTO
  `lab_requests` (
    `id`,
    `patient_id`,
    `doctor_id`,
    `test_name`,
    `status`,
    `date_time`
  )
VALUES
  (
    7,
    '9/2507/GOH',
    'Abiodun Salako',
    'widal test, mp',
    'canceled',
    '2025-10-03 16:37:32'
  );
INSERT INTO
  `lab_requests` (
    `id`,
    `patient_id`,
    `doctor_id`,
    `test_name`,
    `status`,
    `date_time`
  )
VALUES
  (
    8,
    '4/2504/GOH',
    'Abiodun Salako',
    'PCV, widal test',
    'canceled',
    '2025-10-04 07:08:51'
  );
INSERT INTO
  `lab_requests` (
    `id`,
    `patient_id`,
    `doctor_id`,
    `test_name`,
    `status`,
    `date_time`
  )
VALUES
  (
    9,
    '22/2508/GOH',
    'Abiodun Salako',
    'PCV',
    'canceled',
    '2025-11-16 10:05:30'
  );
INSERT INTO
  `lab_requests` (
    `id`,
    `patient_id`,
    `doctor_id`,
    `test_name`,
    `status`,
    `date_time`
  )
VALUES
  (
    10,
    '19/2507/GOH',
    'Abiodun Salako',
    'PCV',
    'canceled',
    '2025-11-16 10:27:58'
  );
INSERT INTO
  `lab_requests` (
    `id`,
    `patient_id`,
    `doctor_id`,
    `test_name`,
    `status`,
    `date_time`
  )
VALUES
  (
    11,
    '6/2504/GOH',
    'Abiodun Salako',
    'PCV',
    'canceled',
    '2025-11-25 09:22:54'
  );
INSERT INTO
  `lab_requests` (
    `id`,
    `patient_id`,
    `doctor_id`,
    `test_name`,
    `status`,
    `date_time`
  )
VALUES
  (
    12,
    '23/2510/GOH',
    'Abiodun Salako',
    'widal test',
    'canceled',
    '2025-12-24 16:19:55'
  );
INSERT INTO
  `lab_requests` (
    `id`,
    `patient_id`,
    `doctor_id`,
    `test_name`,
    `status`,
    `date_time`
  )
VALUES
  (
    13,
    '23/2510/GOH',
    'Abiodun Salako',
    'widal test',
    'canceled',
    '2025-12-25 07:36:14'
  );
INSERT INTO
  `lab_requests` (
    `id`,
    `patient_id`,
    `doctor_id`,
    `test_name`,
    `status`,
    `date_time`
  )
VALUES
  (
    14,
    '23/2510/GOH',
    'Abiodun Salako',
    'widal test',
    'canceled',
    '2025-12-25 08:08:52'
  );
INSERT INTO
  `lab_requests` (
    `id`,
    `patient_id`,
    `doctor_id`,
    `test_name`,
    `status`,
    `date_time`
  )
VALUES
  (
    15,
    '23/2510/GOH',
    'Abiodun Salako',
    'widal test',
    'pending',
    '2025-12-25 08:41:49'
  );
INSERT INTO
  `lab_requests` (
    `id`,
    `patient_id`,
    `doctor_id`,
    `test_name`,
    `status`,
    `date_time`
  )
VALUES
  (
    16,
    '23/2510/GOH',
    'Abiodun Salako',
    'PCV',
    'pending',
    '2025-12-25 15:12:39'
  );
INSERT INTO
  `lab_requests` (
    `id`,
    `patient_id`,
    `doctor_id`,
    `test_name`,
    `status`,
    `date_time`
  )
VALUES
  (
    17,
    '22/2508/GOH',
    'Abiodun Salako',
    'PCV',
    'pending',
    '2025-12-26 11:27:31'
  );
INSERT INTO
  `lab_requests` (
    `id`,
    `patient_id`,
    `doctor_id`,
    `test_name`,
    `status`,
    `date_time`
  )
VALUES
  (
    18,
    '7/2505/GOH',
    'Abiodun Salako',
    'mRDT',
    'pending',
    '2026-01-04 17:56:02'
  );

# ------------------------------------------------------------
# DATA DUMP FOR TABLE: lab_result_fields
# ------------------------------------------------------------


# ------------------------------------------------------------
# DATA DUMP FOR TABLE: lab_results
# ------------------------------------------------------------

INSERT INTO
  `lab_results` (
    `id`,
    `request_id`,
    `pt_id`,
    `signed_by`,
    `specimen`,
    `comment`,
    `date_time`
  )
VALUES
  (
    8,
    4,
    '10/2507/GOH',
    'Mopelola Ajasa',
    'blood',
    '',
    '2025-07-11 21:30:03'
  );
INSERT INTO
  `lab_results` (
    `id`,
    `request_id`,
    `pt_id`,
    `signed_by`,
    `specimen`,
    `comment`,
    `date_time`
  )
VALUES
  (
    9,
    3,
    '20/2508/GOH',
    'Abiodun Salako',
    'Blood',
    '',
    '2025-08-03 18:46:45'
  );
INSERT INTO
  `lab_results` (
    `id`,
    `request_id`,
    `pt_id`,
    `signed_by`,
    `specimen`,
    `comment`,
    `date_time`
  )
VALUES
  (
    10,
    3,
    '6/2504/GOH',
    'Abiodun Salako',
    'Blood',
    '',
    '2025-08-13 16:51:57'
  );
INSERT INTO
  `lab_results` (
    `id`,
    `request_id`,
    `pt_id`,
    `signed_by`,
    `specimen`,
    `comment`,
    `date_time`
  )
VALUES
  (
    11,
    10,
    '20/2508/GOH',
    'Abiodun Salako',
    '',
    '',
    '2025-08-14 09:21:43'
  );
INSERT INTO
  `lab_results` (
    `id`,
    `request_id`,
    `pt_id`,
    `signed_by`,
    `specimen`,
    `comment`,
    `date_time`
  )
VALUES
  (
    12,
    4,
    '10/2507/GOH',
    'Abiodun Salako',
    'BLOOD',
    '',
    '2025-08-25 09:37:06'
  );
INSERT INTO
  `lab_results` (
    `id`,
    `request_id`,
    `pt_id`,
    `signed_by`,
    `specimen`,
    `comment`,
    `date_time`
  )
VALUES
  (
    13,
    19,
    '19/2507/GOH',
    'Abiodun Salako',
    'Blood',
    '',
    '2025-08-31 19:57:24'
  );
INSERT INTO
  `lab_results` (
    `id`,
    `request_id`,
    `pt_id`,
    `signed_by`,
    `specimen`,
    `comment`,
    `date_time`
  )
VALUES
  (
    14,
    2,
    '21/2508/GOH',
    'Abiodun Salako',
    'blood',
    '',
    '2025-10-02 11:23:51'
  );

# ------------------------------------------------------------
# DATA DUMP FOR TABLE: lab_results_fileds
# ------------------------------------------------------------

INSERT INTO
  `lab_results_fileds` (
    `id`,
    `result_id`,
    `test_category`,
    `test_name`,
    `value`
  )
VALUES
  (
    1,
    8,
    'WIDAL AGGLUTINATION REACTION--A titre of 110 (1/110) and above is considered significant',
    'Paratyphi A - O H',
    '120'
  );
INSERT INTO
  `lab_results_fileds` (
    `id`,
    `result_id`,
    `test_category`,
    `test_name`,
    `value`
  )
VALUES
  (
    2,
    8,
    'WIDAL AGGLUTINATION REACTION--A titre of 110 (1/110) and above is considered significant',
    'Paratyphi B - O H',
    '110'
  );
INSERT INTO
  `lab_results_fileds` (
    `id`,
    `result_id`,
    `test_category`,
    `test_name`,
    `value`
  )
VALUES
  (
    3,
    8,
    'WIDAL AGGLUTINATION REACTION--A titre of 110 (1/110) and above is considered significant',
    'Paratyphi C - O H',
    '110'
  );
INSERT INTO
  `lab_results_fileds` (
    `id`,
    `result_id`,
    `test_category`,
    `test_name`,
    `value`
  )
VALUES
  (
    4,
    8,
    'WIDAL AGGLUTINATION REACTION--A titre of 110 (1/110) and above is considered significant',
    'Paratyphi D - O H',
    '130'
  );
INSERT INTO
  `lab_results_fileds` (
    `id`,
    `result_id`,
    `test_category`,
    `test_name`,
    `value`
  )
VALUES
  (5, 9, 'BLOOD GROUP', 'BLOOD GROUP', 'O');
INSERT INTO
  `lab_results_fileds` (
    `id`,
    `result_id`,
    `test_category`,
    `test_name`,
    `value`
  )
VALUES
  (6, 9, 'BLOOD GROUP', 'RH \"D\"', 'POSITIVE');
INSERT INTO
  `lab_results_fileds` (
    `id`,
    `result_id`,
    `test_category`,
    `test_name`,
    `value`
  )
VALUES
  (
    7,
    9,
    'PARASITOLOGY',
    'Blood Malaria Parasite (RDT)',
    'POSITIVE'
  );
INSERT INTO
  `lab_results_fileds` (
    `id`,
    `result_id`,
    `test_category`,
    `test_name`,
    `value`
  )
VALUES
  (
    8,
    10,
    'HAEMOTOLOGY | SEROLOGY',
    'Hb (Female: 35-47%,  Male: 40-54%)',
    '34%'
  );
INSERT INTO
  `lab_results_fileds` (
    `id`,
    `result_id`,
    `test_category`,
    `test_name`,
    `value`
  )
VALUES
  (
    9,
    10,
    'HAEMOTOLOGY | SEROLOGY',
    'WBC-TOTAL (4,000 - 11,000) cumm',
    '15500'
  );
INSERT INTO
  `lab_results_fileds` (
    `id`,
    `result_id`,
    `test_category`,
    `test_name`,
    `value`
  )
VALUES
  (
    10,
    10,
    'HAEMOTOLOGY | SEROLOGY',
    'Neutrophils (40-70)%',
    '72'
  );
INSERT INTO
  `lab_results_fileds` (
    `id`,
    `result_id`,
    `test_category`,
    `test_name`,
    `value`
  )
VALUES
  (
    11,
    10,
    'HAEMOTOLOGY | SEROLOGY',
    'Lymphocyctes (23-50)%',
    '55'
  );
INSERT INTO
  `lab_results_fileds` (
    `id`,
    `result_id`,
    `test_category`,
    `test_name`,
    `value`
  )
VALUES
  (
    12,
    10,
    'HAEMOTOLOGY | SEROLOGY',
    'Eosinophi (0.6)%',
    '0.4'
  );
INSERT INTO
  `lab_results_fileds` (
    `id`,
    `result_id`,
    `test_category`,
    `test_name`,
    `value`
  )
VALUES
  (
    13,
    10,
    'HAEMOTOLOGY | SEROLOGY',
    'Monocytes (0-14)%',
    '8'
  );
INSERT INTO
  `lab_results_fileds` (
    `id`,
    `result_id`,
    `test_category`,
    `test_name`,
    `value`
  )
VALUES
  (
    14,
    10,
    'HAEMOTOLOGY | SEROLOGY',
    'Basophils (0-1)%',
    '0'
  );
INSERT INTO
  `lab_results_fileds` (
    `id`,
    `result_id`,
    `test_category`,
    `test_name`,
    `value`
  )
VALUES
  (
    15,
    10,
    'PARASITOLOGY',
    'Blood Malaria Parasite (RDT)',
    'POSITIVE'
  );
INSERT INTO
  `lab_results_fileds` (
    `id`,
    `result_id`,
    `test_category`,
    `test_name`,
    `value`
  )
VALUES
  (16, 11, 'BLOOD GLUCOSE', 'Fasting Glucose', '98');
INSERT INTO
  `lab_results_fileds` (
    `id`,
    `result_id`,
    `test_category`,
    `test_name`,
    `value`
  )
VALUES
  (
    17,
    11,
    'HAEMOTOLOGY | SEROLOGY',
    'Hb (Female: 35-47%,  Male: 40-54%)',
    '38'
  );
INSERT INTO
  `lab_results_fileds` (
    `id`,
    `result_id`,
    `test_category`,
    `test_name`,
    `value`
  )
VALUES
  (
    18,
    11,
    'HAEMOTOLOGY | SEROLOGY',
    'WBC-TOTAL (4,000 - 11,000) cumm',
    '10,900'
  );
INSERT INTO
  `lab_results_fileds` (
    `id`,
    `result_id`,
    `test_category`,
    `test_name`,
    `value`
  )
VALUES
  (
    19,
    11,
    'HAEMOTOLOGY | SEROLOGY',
    'Neutrophils (40-70)%',
    '35'
  );
INSERT INTO
  `lab_results_fileds` (
    `id`,
    `result_id`,
    `test_category`,
    `test_name`,
    `value`
  )
VALUES
  (
    20,
    11,
    'HAEMOTOLOGY | SEROLOGY',
    'Lymphocyctes (23-50)%',
    '22'
  );
INSERT INTO
  `lab_results_fileds` (
    `id`,
    `result_id`,
    `test_category`,
    `test_name`,
    `value`
  )
VALUES
  (
    21,
    11,
    'HAEMOTOLOGY | SEROLOGY',
    'Eosinophi (0.6)%',
    '0'
  );
INSERT INTO
  `lab_results_fileds` (
    `id`,
    `result_id`,
    `test_category`,
    `test_name`,
    `value`
  )
VALUES
  (
    22,
    11,
    'HAEMOTOLOGY | SEROLOGY',
    'Monocytes (0-14)%',
    '1'
  );
INSERT INTO
  `lab_results_fileds` (
    `id`,
    `result_id`,
    `test_category`,
    `test_name`,
    `value`
  )
VALUES
  (
    23,
    11,
    'HAEMOTOLOGY | SEROLOGY',
    'Basophils (0-1)%',
    '0'
  );
INSERT INTO
  `lab_results_fileds` (
    `id`,
    `result_id`,
    `test_category`,
    `test_name`,
    `value`
  )
VALUES
  (
    24,
    11,
    'PARASITOLOGY',
    'Blood Malaria Parasite (RDT)',
    'POSITIVE'
  );
INSERT INTO
  `lab_results_fileds` (
    `id`,
    `result_id`,
    `test_category`,
    `test_name`,
    `value`
  )
VALUES
  (25, 12, 'BLOOD GLUCOSE', 'Fasting Glucose', '90');
INSERT INTO
  `lab_results_fileds` (
    `id`,
    `result_id`,
    `test_category`,
    `test_name`,
    `value`
  )
VALUES
  (
    26,
    12,
    'PARASITOLOGY',
    'Blood Malaria Parasite (RDT)',
    'POSITIVE'
  );
INSERT INTO
  `lab_results_fileds` (
    `id`,
    `result_id`,
    `test_category`,
    `test_name`,
    `value`
  )
VALUES
  (
    27,
    13,
    'HAEMOTOLOGY | SEROLOGY',
    'P.C.V (Female: 35-47%,  Male: 40-54%)',
    '31%'
  );
INSERT INTO
  `lab_results_fileds` (
    `id`,
    `result_id`,
    `test_category`,
    `test_name`,
    `value`
  )
VALUES
  (28, 14, 'BLOOD GROUP & GENOTYPE', 'Genotype', 'AS');

# ------------------------------------------------------------
# DATA DUMP FOR TABLE: lab_tests
# ------------------------------------------------------------


# ------------------------------------------------------------
# DATA DUMP FOR TABLE: licenses
# ------------------------------------------------------------


# ------------------------------------------------------------
# DATA DUMP FOR TABLE: monthly_table_counters
# ------------------------------------------------------------

INSERT INTO
  `monthly_table_counters` (
    `table_name`,
    `jan`,
    `feb`,
    `mar`,
    `apr`,
    `may`,
    `jun`,
    `jul`,
    `aug`,
    `sep`,
    `oct`,
    `nov`,
    `decem`,
    `updated_at`
  )
VALUES
  (
    'consultations',
    2,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    0,
    8,
    7,
    '2026-01-05 18:32:02'
  );

# ------------------------------------------------------------
# DATA DUMP FOR TABLE: next_of_kin
# ------------------------------------------------------------

INSERT INTO
  `next_of_kin` (
    `id`,
    `patient_id`,
    `title`,
    `firstName`,
    `lastName`,
    `phone_num`,
    `houseNum_or_name`,
    `street`,
    `city_and_state`,
    `country`,
    `email`,
    `relationship`
  )
VALUES
  (
    1,
    '24/2512/GOH',
    'Mr.',
    'Atanda',
    'Ayeni',
    '09876543210',
    '',
    '',
    '',
    '',
    NULL,
    ''
  );
INSERT INTO
  `next_of_kin` (
    `id`,
    `patient_id`,
    `title`,
    `firstName`,
    `lastName`,
    `phone_num`,
    `houseNum_or_name`,
    `street`,
    `city_and_state`,
    `country`,
    `email`,
    `relationship`
  )
VALUES
  (
    2,
    '25/2512/GOH',
    'Mr.',
    'Akanji',
    'Olowolagba',
    '09876543211',
    '',
    '',
    '',
    '',
    NULL,
    'Father'
  );
INSERT INTO
  `next_of_kin` (
    `id`,
    `patient_id`,
    `title`,
    `firstName`,
    `lastName`,
    `phone_num`,
    `houseNum_or_name`,
    `street`,
    `city_and_state`,
    `country`,
    `email`,
    `relationship`
  )
VALUES
  (
    3,
    '26/2601/GOH',
    'Engr',
    '',
    'Awodele',
    '09012345678',
    '',
    '',
    '',
    '',
    NULL,
    ''
  );

# ------------------------------------------------------------
# DATA DUMP FOR TABLE: nursing_sheet
# ------------------------------------------------------------

INSERT INTO
  `nursing_sheet` (
    `id`,
    `patient_id`,
    `medication_name`,
    `dosage`,
    `frequency_hours`,
    `due_time`,
    `administered`,
    `administered_at`,
    `administered_by`,
    `notes`,
    `created_at`,
    `updated_at`,
    `session_id`
  )
VALUES
  (
    1,
    '12/2507/GOH',
    'Omeprazole Inj.',
    '40mg single-dose',
    6,
    '2025-11-24 18:59:49',
    'yes',
    '2025-11-24 15:40:14',
    'Abiodun Salako',
    NULL,
    '2025-11-24 13:00:37',
    '2025-11-24 15:40:14',
    'v2uoz.1759561442965'
  );
INSERT INTO
  `nursing_sheet` (
    `id`,
    `patient_id`,
    `medication_name`,
    `dosage`,
    `frequency_hours`,
    `due_time`,
    `administered`,
    `administered_at`,
    `administered_by`,
    `notes`,
    `created_at`,
    `updated_at`,
    `session_id`
  )
VALUES
  (
    2,
    '18/2507/GOH',
    'pcm tab',
    '2tabs tds x 3/7',
    8,
    '2025-11-24 21:12:16',
    'no',
    NULL,
    NULL,
    NULL,
    '2025-11-24 13:13:09',
    '2025-11-24 13:13:09',
    'r3j5n.1763986194296'
  );
INSERT INTO
  `nursing_sheet` (
    `id`,
    `patient_id`,
    `medication_name`,
    `dosage`,
    `frequency_hours`,
    `due_time`,
    `administered`,
    `administered_at`,
    `administered_by`,
    `notes`,
    `created_at`,
    `updated_at`,
    `session_id`
  )
VALUES
  (
    3,
    '18/2507/GOH',
    'Aldomet',
    '1tabs tds x 1/52',
    8,
    '2025-11-24 21:12:44',
    'no',
    NULL,
    NULL,
    NULL,
    '2025-11-24 13:13:09',
    '2025-11-24 13:13:09',
    'r3j5n.1763986194296'
  );
INSERT INTO
  `nursing_sheet` (
    `id`,
    `patient_id`,
    `medication_name`,
    `dosage`,
    `frequency_hours`,
    `due_time`,
    `administered`,
    `administered_at`,
    `administered_by`,
    `notes`,
    `created_at`,
    `updated_at`,
    `session_id`
  )
VALUES
  (
    4,
    '18/2507/GOH',
    '5% Dextrose water',
    '500ml 6-hly x 24 hrs',
    6,
    '2025-11-24 13:11:18',
    'no',
    NULL,
    NULL,
    NULL,
    '2025-11-24 13:13:09',
    '2025-11-24 13:13:09',
    'r3j5n.1763986194296'
  );
INSERT INTO
  `nursing_sheet` (
    `id`,
    `patient_id`,
    `medication_name`,
    `dosage`,
    `frequency_hours`,
    `due_time`,
    `administered`,
    `administered_at`,
    `administered_by`,
    `notes`,
    `created_at`,
    `updated_at`,
    `session_id`
  )
VALUES
  (
    5,
    '7/2505/GOH',
    '5% Dextrose water',
    '500ml stat then',
    6,
    '2025-11-24 13:24:02',
    'yes',
    '2025-11-24 13:25:53',
    'Abiodun Salako',
    NULL,
    '2025-11-24 13:25:53',
    '2025-11-24 13:25:53',
    'w2xlf.1763987005295'
  );
INSERT INTO
  `nursing_sheet` (
    `id`,
    `patient_id`,
    `medication_name`,
    `dosage`,
    `frequency_hours`,
    `due_time`,
    `administered`,
    `administered_at`,
    `administered_by`,
    `notes`,
    `created_at`,
    `updated_at`,
    `session_id`
  )
VALUES
  (
    6,
    '7/2505/GOH',
    '5% Dextrose water',
    '250ml 6-hly x 24 hrs',
    6,
    '2025-11-24 19:24:00',
    'yes',
    '2025-11-24 14:53:40',
    'Abiodun Salako',
    NULL,
    '2025-11-24 13:25:53',
    '2025-11-24 14:53:40',
    'w2xlf.1763987005295'
  );
INSERT INTO
  `nursing_sheet` (
    `id`,
    `patient_id`,
    `medication_name`,
    `dosage`,
    `frequency_hours`,
    `due_time`,
    `administered`,
    `administered_at`,
    `administered_by`,
    `notes`,
    `created_at`,
    `updated_at`,
    `session_id`
  )
VALUES
  (
    7,
    '7/2505/GOH',
    '5% Dextrose water',
    '250ml 6-hly x 24 hrs',
    6,
    '2025-11-25 01:24:00',
    'no',
    NULL,
    NULL,
    NULL,
    '2025-11-24 14:40:15',
    '2025-11-24 14:40:15',
    'w2xlf.1763987005295'
  );
INSERT INTO
  `nursing_sheet` (
    `id`,
    `patient_id`,
    `medication_name`,
    `dosage`,
    `frequency_hours`,
    `due_time`,
    `administered`,
    `administered_at`,
    `administered_by`,
    `notes`,
    `created_at`,
    `updated_at`,
    `session_id`
  )
VALUES
  (
    8,
    '7/2505/GOH',
    '5% Dextrose water',
    '250ml 6-hly x 24 hrs',
    6,
    '2025-11-25 07:24:00',
    'no',
    NULL,
    NULL,
    NULL,
    '2025-11-24 14:40:55',
    '2025-11-24 14:40:55',
    'w2xlf.1763987005295'
  );
INSERT INTO
  `nursing_sheet` (
    `id`,
    `patient_id`,
    `medication_name`,
    `dosage`,
    `frequency_hours`,
    `due_time`,
    `administered`,
    `administered_at`,
    `administered_by`,
    `notes`,
    `created_at`,
    `updated_at`,
    `session_id`
  )
VALUES
  (
    9,
    '7/2505/GOH',
    'pcm tab',
    '2tabs tds x 3/7',
    8,
    '2025-11-24 15:27:00',
    'yes',
    '2025-11-24 15:28:50',
    'Abiodun Salako',
    NULL,
    '2025-11-24 15:28:50',
    '2025-11-24 15:28:50',
    'w2xlf.1763987005295'
  );
INSERT INTO
  `nursing_sheet` (
    `id`,
    `patient_id`,
    `medication_name`,
    `dosage`,
    `frequency_hours`,
    `due_time`,
    `administered`,
    `administered_at`,
    `administered_by`,
    `notes`,
    `created_at`,
    `updated_at`,
    `session_id`
  )
VALUES
  (
    10,
    '7/2505/GOH',
    'pcm tab',
    '2tabs tds x 3/7',
    8,
    '2025-11-24 23:27:00',
    'no',
    NULL,
    NULL,
    NULL,
    '2025-11-24 15:29:10',
    '2025-11-24 15:29:10',
    'w2xlf.1763987005295'
  );
INSERT INTO
  `nursing_sheet` (
    `id`,
    `patient_id`,
    `medication_name`,
    `dosage`,
    `frequency_hours`,
    `due_time`,
    `administered`,
    `administered_at`,
    `administered_by`,
    `notes`,
    `created_at`,
    `updated_at`,
    `session_id`
  )
VALUES
  (
    11,
    '9/2507/GOH',
    '5% Dextrose water',
    '500ml 6-hly x 24 hrs',
    6,
    '2025-11-24 15:42:21',
    'yes',
    '2025-11-24 15:42:43',
    'Abiodun Salako',
    NULL,
    '2025-11-24 15:42:43',
    '2025-11-24 15:42:43',
    '1dlbz.1759505999985'
  );
INSERT INTO
  `nursing_sheet` (
    `id`,
    `patient_id`,
    `medication_name`,
    `dosage`,
    `frequency_hours`,
    `due_time`,
    `administered`,
    `administered_at`,
    `administered_by`,
    `notes`,
    `created_at`,
    `updated_at`,
    `session_id`
  )
VALUES
  (
    12,
    '6/2504/GOH',
    '5% Dextrose water',
    '2pt stat then',
    6,
    '2025-11-25 10:00:00',
    'yes',
    '2025-11-25 10:36:56',
    'Abiodun Salako',
    'may reviewed by doctor later',
    '2025-11-25 10:36:56',
    '2025-11-25 10:36:56',
    '2nxj7.1764059955039'
  );
INSERT INTO
  `nursing_sheet` (
    `id`,
    `patient_id`,
    `medication_name`,
    `dosage`,
    `frequency_hours`,
    `due_time`,
    `administered`,
    `administered_at`,
    `administered_by`,
    `notes`,
    `created_at`,
    `updated_at`,
    `session_id`
  )
VALUES
  (
    13,
    '6/2504/GOH',
    '5% Dextrose water',
    '1pt 6-hly x 24 hrs',
    6,
    '2025-11-25 18:00:00',
    'no',
    NULL,
    NULL,
    NULL,
    '2025-11-25 10:36:56',
    '2025-11-25 10:36:56',
    '2nxj7.1764059955039'
  );
INSERT INTO
  `nursing_sheet` (
    `id`,
    `patient_id`,
    `medication_name`,
    `dosage`,
    `frequency_hours`,
    `due_time`,
    `administered`,
    `administered_at`,
    `administered_by`,
    `notes`,
    `created_at`,
    `updated_at`,
    `session_id`
  )
VALUES
  (
    14,
    '6/2504/GOH',
    'pcm tab',
    '2tabs tds x 5/7',
    8,
    '2025-11-25 10:00:00',
    'yes',
    '2025-11-25 10:36:56',
    'Abiodun Salako',
    NULL,
    '2025-11-25 10:36:56',
    '2025-11-25 10:36:56',
    '2nxj7.1764059955039'
  );
INSERT INTO
  `nursing_sheet` (
    `id`,
    `patient_id`,
    `medication_name`,
    `dosage`,
    `frequency_hours`,
    `due_time`,
    `administered`,
    `administered_at`,
    `administered_by`,
    `notes`,
    `created_at`,
    `updated_at`,
    `session_id`
  )
VALUES
  (
    15,
    '6/2504/GOH',
    'pcm tab',
    '2tabs tds x 5/7',
    8,
    '2025-11-25 18:00:00',
    'no',
    NULL,
    NULL,
    NULL,
    '2025-11-25 10:38:24',
    '2025-11-25 10:38:24',
    '2nxj7.1764059955039'
  );
INSERT INTO
  `nursing_sheet` (
    `id`,
    `patient_id`,
    `medication_name`,
    `dosage`,
    `frequency_hours`,
    `due_time`,
    `administered`,
    `administered_at`,
    `administered_by`,
    `notes`,
    `created_at`,
    `updated_at`,
    `session_id`
  )
VALUES
  (
    16,
    '6/2504/GOH',
    'pcm tab',
    '2tabs tds x 5/7',
    8,
    '2025-11-26 02:00:00',
    'no',
    NULL,
    NULL,
    NULL,
    '2025-11-25 10:39:33',
    '2025-11-25 10:39:33',
    '2nxj7.1764059955039'
  );
INSERT INTO
  `nursing_sheet` (
    `id`,
    `patient_id`,
    `medication_name`,
    `dosage`,
    `frequency_hours`,
    `due_time`,
    `administered`,
    `administered_at`,
    `administered_by`,
    `notes`,
    `created_at`,
    `updated_at`,
    `session_id`
  )
VALUES
  (
    17,
    '6/2504/GOH',
    'pcm tab',
    '2tabs tds x 5/7',
    8,
    '2025-11-26 10:00:00',
    'no',
    NULL,
    NULL,
    NULL,
    '2025-11-25 11:00:39',
    '2025-11-25 11:00:39',
    '2nxj7.1764059955039'
  );
INSERT INTO
  `nursing_sheet` (
    `id`,
    `patient_id`,
    `medication_name`,
    `dosage`,
    `frequency_hours`,
    `due_time`,
    `administered`,
    `administered_at`,
    `administered_by`,
    `notes`,
    `created_at`,
    `updated_at`,
    `session_id`
  )
VALUES
  (
    18,
    '6/2504/GOH',
    '5% Dextrose water',
    '1pt 6-hly x 24 hrs',
    6,
    '2025-11-26 00:00:00',
    'no',
    NULL,
    NULL,
    NULL,
    '2025-11-25 11:01:41',
    '2025-11-25 11:01:41',
    '2nxj7.1764059955039'
  );
INSERT INTO
  `nursing_sheet` (
    `id`,
    `patient_id`,
    `medication_name`,
    `dosage`,
    `frequency_hours`,
    `due_time`,
    `administered`,
    `administered_at`,
    `administered_by`,
    `notes`,
    `created_at`,
    `updated_at`,
    `session_id`
  )
VALUES
  (
    19,
    '6/2504/GOH',
    '5% Dextrose water',
    '1pt 6-hly x 24 hrs',
    6,
    '2025-11-26 06:00:00',
    'no',
    NULL,
    NULL,
    NULL,
    '2025-11-25 11:01:50',
    '2025-11-25 11:01:50',
    '2nxj7.1764059955039'
  );
INSERT INTO
  `nursing_sheet` (
    `id`,
    `patient_id`,
    `medication_name`,
    `dosage`,
    `frequency_hours`,
    `due_time`,
    `administered`,
    `administered_at`,
    `administered_by`,
    `notes`,
    `created_at`,
    `updated_at`,
    `session_id`
  )
VALUES
  (
    20,
    '6/2504/GOH',
    'Elaquine',
    '3tabs dly x 3/7',
    24,
    '2025-11-26 11:12:07',
    'yes',
    '2025-11-25 11:12:21',
    'Abiodun Salako',
    NULL,
    '2025-11-25 11:12:21',
    '2025-11-25 11:12:21',
    '2nxj7.1764059955039'
  );
INSERT INTO
  `nursing_sheet` (
    `id`,
    `patient_id`,
    `medication_name`,
    `dosage`,
    `frequency_hours`,
    `due_time`,
    `administered`,
    `administered_at`,
    `administered_by`,
    `notes`,
    `created_at`,
    `updated_at`,
    `session_id`
  )
VALUES
  (
    21,
    '6/2504/GOH',
    'Elaquine',
    '3tabs dly x 3/7',
    24,
    '2025-11-27 11:12:07',
    'no',
    NULL,
    NULL,
    NULL,
    '2025-11-25 11:12:36',
    '2025-11-25 11:12:36',
    '2nxj7.1764059955039'
  );
INSERT INTO
  `nursing_sheet` (
    `id`,
    `patient_id`,
    `medication_name`,
    `dosage`,
    `frequency_hours`,
    `due_time`,
    `administered`,
    `administered_at`,
    `administered_by`,
    `notes`,
    `created_at`,
    `updated_at`,
    `session_id`
  )
VALUES
  (
    22,
    '23/2510/GOH',
    'Elaquine',
    '3tabs dly x 3/7',
    6,
    '2025-12-25 18:01:32',
    'yes',
    '2025-12-25 18:02:43',
    'Ojo Olaniyan',
    NULL,
    '2025-12-25 18:02:09',
    '2025-12-25 18:02:43',
    'tzesl.1766672134843'
  );

# ------------------------------------------------------------
# DATA DUMP FOR TABLE: patient_communicable_conditions
# ------------------------------------------------------------

INSERT INTO
  `patient_communicable_conditions` (
    `id`,
    `patient_id`,
    `label`,
    `status`,
    `status_note`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    12,
    '22/2508/GOH',
    'RVS',
    'negative',
    NULL,
    '2025-12-09 17:35:15',
    NULL
  );
INSERT INTO
  `patient_communicable_conditions` (
    `id`,
    `patient_id`,
    `label`,
    `status`,
    `status_note`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    19,
    '13/2507/GOH',
    'RVS',
    'positive',
    NULL,
    '2025-12-25 23:14:02',
    NULL
  );
INSERT INTO
  `patient_communicable_conditions` (
    `id`,
    `patient_id`,
    `label`,
    `status`,
    `status_note`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    20,
    '13/2507/GOH',
    'Diabetic',
    'others',
    'Type 1',
    '2025-12-25 23:14:02',
    NULL
  );
INSERT INTO
  `patient_communicable_conditions` (
    `id`,
    `patient_id`,
    `label`,
    `status`,
    `status_note`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    21,
    '13/2507/GOH',
    'TB',
    'others',
    'NON- REACTIVE',
    '2025-12-25 23:14:02',
    NULL
  );
INSERT INTO
  `patient_communicable_conditions` (
    `id`,
    `patient_id`,
    `label`,
    `status`,
    `status_note`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    22,
    '13/2507/GOH',
    'Hepatitis',
    'negative',
    NULL,
    '2025-12-25 23:14:02',
    NULL
  );
INSERT INTO
  `patient_communicable_conditions` (
    `id`,
    `patient_id`,
    `label`,
    `status`,
    `status_note`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    23,
    '24/2512/GOH',
    'Hepatitis',
    'positive',
    NULL,
    '2025-12-26 22:14:47',
    NULL
  );

# ------------------------------------------------------------
# DATA DUMP FOR TABLE: patient_lifestyle_allergies
# ------------------------------------------------------------

INSERT INTO
  `patient_lifestyle_allergies` (
    `id`,
    `patient_id`,
    `smoking`,
    `alcohol`,
    `clubbing`,
    `allergies_text`,
    `created_at`,
    `updated_at`,
    `communicable_terminal_ailment`,
    `communicable_status`,
    `communicable_status_note`
  )
VALUES
  (
    1,
    '21/2508/GOH',
    0,
    0,
    0,
    'chloroquine',
    '2025-11-09 08:03:34',
    '2025-12-09 13:09:59',
    'RVS, Hepatitis',
    'others',
    'Non-Reactive'
  );
INSERT INTO
  `patient_lifestyle_allergies` (
    `id`,
    `patient_id`,
    `smoking`,
    `alcohol`,
    `clubbing`,
    `allergies_text`,
    `created_at`,
    `updated_at`,
    `communicable_terminal_ailment`,
    `communicable_status`,
    `communicable_status_note`
  )
VALUES
  (
    2,
    '19/2507/GOH',
    0,
    0,
    0,
    'cq, cotrim',
    '2025-11-09 08:43:42',
    '2025-11-14 13:22:14',
    NULL,
    'negative',
    NULL
  );
INSERT INTO
  `patient_lifestyle_allergies` (
    `id`,
    `patient_id`,
    `smoking`,
    `alcohol`,
    `clubbing`,
    `allergies_text`,
    `created_at`,
    `updated_at`,
    `communicable_terminal_ailment`,
    `communicable_status`,
    `communicable_status_note`
  )
VALUES
  (
    3,
    '23/2510/GOH',
    0,
    0,
    0,
    'cotrim',
    '2025-11-26 15:54:01',
    NULL,
    NULL,
    'negative',
    NULL
  );
INSERT INTO
  `patient_lifestyle_allergies` (
    `id`,
    `patient_id`,
    `smoking`,
    `alcohol`,
    `clubbing`,
    `allergies_text`,
    `created_at`,
    `updated_at`,
    `communicable_terminal_ailment`,
    `communicable_status`,
    `communicable_status_note`
  )
VALUES
  (
    4,
    '22/2508/GOH',
    0,
    0,
    0,
    NULL,
    '2025-12-09 10:22:16',
    '2025-12-09 17:35:15',
    'RVS, Tuberculosis',
    'others',
    'REACTIVE'
  );
INSERT INTO
  `patient_lifestyle_allergies` (
    `id`,
    `patient_id`,
    `smoking`,
    `alcohol`,
    `clubbing`,
    `allergies_text`,
    `created_at`,
    `updated_at`,
    `communicable_terminal_ailment`,
    `communicable_status`,
    `communicable_status_note`
  )
VALUES
  (
    5,
    '13/2507/GOH',
    1,
    0,
    0,
    'cotrim',
    '2025-12-25 20:46:25',
    '2025-12-25 23:14:02',
    NULL,
    'negative',
    NULL
  );
INSERT INTO
  `patient_lifestyle_allergies` (
    `id`,
    `patient_id`,
    `smoking`,
    `alcohol`,
    `clubbing`,
    `allergies_text`,
    `created_at`,
    `updated_at`,
    `communicable_terminal_ailment`,
    `communicable_status`,
    `communicable_status_note`
  )
VALUES
  (
    6,
    '24/2512/GOH',
    1,
    0,
    0,
    'cold',
    '2025-12-26 22:14:47',
    NULL,
    NULL,
    'negative',
    NULL
  );

# ------------------------------------------------------------
# DATA DUMP FOR TABLE: patient_wallet_tx
# ------------------------------------------------------------


# ------------------------------------------------------------
# DATA DUMP FOR TABLE: patient_wallet_txn
# ------------------------------------------------------------

INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    1,
    '8/2507/GOH',
    'credit',
    3000.00,
    0.00,
    3000.00,
    'accumulated_bill_partPayment',
    'N/A',
    'cash',
    'Dele Fadairo',
    '2025-07-08 16:11:07'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    2,
    '8/2507/GOH',
    'credit',
    2000.00,
    3000.00,
    5000.00,
    'fund_wallet',
    'N/A',
    'cash',
    'Dele Fadairo',
    '2025-07-09 10:43:59'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    3,
    '11/2507/GOH',
    'credit',
    500.00,
    0.00,
    500.00,
    'fund_wallet',
    'N/A',
    'bank_transfer',
    'Dele Fadairo',
    '2025-07-09 10:48:04'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    4,
    '8/2507/GOH',
    'debit',
    2000.00,
    5000.00,
    3000.00,
    'itemized billing',
    'p3k9p.1752077617158',
    'wallet',
    'Nurse Abebi Konsu',
    '2025-07-09 17:23:08'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    5,
    '10/2507/GOH',
    'credit',
    5000.00,
    0.00,
    5000.00,
    'fund_wallet',
    'N/A',
    'cash',
    'Dele Fadairo',
    '2025-07-09 18:11:23'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    6,
    '6/2504/GOH',
    'credit',
    2000.00,
    -3000.00,
    -1000.00,
    'accumulated_bill_partPayment',
    'deposit-1752161784927',
    'bank_transfer',
    'Dele Fadairo',
    '2025-07-10 16:36:24'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    7,
    '3/2504/GOH',
    'credit',
    15000.00,
    -9500.00,
    5500.00,
    'all_accumulated_bill',
    'deposit-1752163103549',
    'bank_transfer',
    'Dele Fadairo',
    '2025-07-10 16:58:23'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    8,
    '3/2504/GOH',
    'debit',
    19500.00,
    5500.00,
    -14000.00,
    'itemized billing',
    '9ful1.1752163617229',
    'wallet',
    'Nurse Abebi Konsu',
    '2025-07-10 17:09:28'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    9,
    '2/2504/GOH',
    'debit',
    21500.00,
    -5700.00,
    -27200.00,
    'itemized billing',
    'ejy9y.1752163646430',
    'wallet',
    'Nurse Abebi Konsu',
    '2025-07-10 17:10:09'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    10,
    '3/2504/GOH',
    'debit',
    12000.00,
    -14000.00,
    -26000.00,
    'itemized billing',
    'ae17m.1752163681067',
    'wallet',
    'Nurse Abebi Konsu',
    '2025-07-10 17:10:40'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    11,
    '7/2505/GOH',
    'debit',
    2522.00,
    3016.00,
    494.00,
    'itemized billing',
    'k75y4.1752174453405',
    'wallet',
    'Nurse Abebi Konsu',
    '2025-07-10 20:09:21'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    12,
    '2/2504/GOH',
    'debit',
    6500.00,
    -27200.00,
    -33700.00,
    'itemized billing',
    'gf5ha.1752180260299',
    'wallet',
    'Nurse Abebi Konsu',
    '2025-07-10 22:28:14'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    13,
    '2/2504/GOH',
    'debit',
    6500.00,
    -36700.00,
    -43200.00,
    'itemized billing',
    'ac9y6.1752180270158',
    'wallet',
    'Nurse Abebi Konsu',
    '2025-07-10 23:56:36'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    14,
    '3/2504/GOH',
    'credit',
    12000.00,
    -26000.00,
    -14000.00,
    'accumulated_bill_partPayment',
    'deposit-1752236573460',
    'bank_transfer',
    'Abebi Konsu',
    '2025-07-11 13:22:53'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    15,
    '11/2507/GOH',
    'debit',
    2000.00,
    500.00,
    -1500.00,
    'itemized billing',
    'scqzl.1753044318748',
    'wallet',
    'Doctor Dele Fadairo',
    '2025-07-20 21:57:07'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    16,
    '11/2507/GOH',
    'credit',
    1000.00,
    -1500.00,
    -500.00,
    'accumulated_bill_partPayment',
    'deposit-1753188034571',
    'bank_transfer',
    'Dele Fadairo',
    '2025-07-22 13:40:34'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    17,
    '2/2504/GOH',
    'credit',
    20000.00,
    -47700.00,
    -27700.00,
    'accumulated_bill_partPayment',
    'deposit-1753372140674',
    'bank_transfer',
    'Dele Fadairo',
    '2025-07-24 16:49:00'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    18,
    '2/2504/GOH',
    'credit',
    10000.00,
    -27700.00,
    -17700.00,
    'accumulated_bill_partPayment',
    'deposit-1753436639659',
    'p.o.s_machine',
    'Dele Fadairo',
    '2025-07-25 10:43:59'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    19,
    '17/2507/GOH',
    'credit',
    1500.00,
    -6500.00,
    -5000.00,
    'accumulated_bill_partPayment',
    'deposit-1754022339047',
    'cash',
    'Abiodun Salako',
    '2025-08-01 05:25:39'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    20,
    '20/2508/GOH',
    'credit',
    1000.00,
    0.00,
    1000.00,
    'fund_wallet',
    'deposit-1754244556118',
    'bank_transfer',
    'Abiodun Salako',
    '2025-08-03 19:09:16'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    21,
    '20/2508/GOH',
    'credit',
    1000.00,
    1000.00,
    2000.00,
    'fund_wallet',
    'deposit-1755453665963',
    'cash',
    'Abiodun Salako',
    '2025-08-17 19:01:05'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    22,
    '20/2508/GOH',
    'credit',
    1000.00,
    2000.00,
    3000.00,
    'fund_wallet',
    'deposit-1755453808726',
    'bank_transfer',
    'Abiodun Salako',
    '2025-08-17 19:03:28'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    23,
    '19/2507/GOH',
    'credit',
    2500.00,
    0.00,
    2500.00,
    'fund_wallet',
    'deposit-1755454566823',
    'p.o.s_machine',
    'Abiodun Salako',
    '2025-08-17 19:16:06'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    24,
    '17/2507/GOH',
    'credit',
    1500.00,
    -5000.00,
    -3500.00,
    'accumulated_bill_partPayment',
    'deposit-1755454601813',
    'bank_transfer',
    'Abiodun Salako',
    '2025-08-17 19:16:41'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    25,
    '12/2507/GOH',
    'debit',
    2000.00,
    0.00,
    -2000.00,
    'itemized billing',
    'sales.1755874350345',
    'wallet',
    'Doctor Abiodun Salako',
    '2025-08-22 15:52:38'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    26,
    'customer',
    'debit',
    5000.00,
    0.00,
    -5000.00,
    'itemized billing',
    'sales.1755874443261',
    'wallet',
    'Doctor Abiodun Salako',
    '2025-08-22 15:54:05'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    27,
    'customer',
    'debit',
    2000.00,
    0.00,
    -2000.00,
    'itemized billing',
    'sales.1755874886233',
    'wallet',
    'Doctor Abiodun Salako',
    '2025-08-22 16:01:28'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    28,
    'customer',
    'debit',
    2000.00,
    0.00,
    -2000.00,
    'itemized billing',
    'sales.1755875062026',
    'wallet',
    'Doctor Abiodun Salako',
    '2025-08-22 16:04:24'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    29,
    'customer',
    'debit',
    2000.00,
    0.00,
    -2000.00,
    'itemized billing',
    'sales.1755875302573',
    'wallet',
    'Doctor Abiodun Salako',
    '2025-08-22 16:08:24'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    30,
    '17/2507/GOH',
    'credit',
    1000.00,
    -3500.00,
    -2500.00,
    'accumulated_bill_partPayment',
    'deposit-1755958995318',
    'bank (trf or card)',
    'Abiodun Salako',
    '2025-08-23 15:23:15'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    31,
    '20/2508/GOH',
    'credit',
    5000.00,
    3000.00,
    8000.00,
    'accumulated_bill_partPayment',
    'deposit-1755960628238',
    'bank (trf or card) to MoniePoint MFB',
    'Abiodun Salako',
    '2025-08-23 15:50:28'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    32,
    '21/2508/GOH',
    'credit',
    5000.00,
    0.00,
    5000.00,
    'fund_wallet',
    'deposit-1756041377229',
    'bank (trf or card) to MoniePoint MFB',
    'Abiodun Salako',
    '2025-08-24 14:16:17'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    33,
    '17/2507/GOH',
    'credit',
    1000.00,
    -2500.00,
    -1500.00,
    'accumulated_bill_partPayment',
    'deposit-1756647746228',
    'bank (trf or card) to FirstBank',
    'Abiodun Salako',
    '2025-08-31 14:42:26'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    34,
    '21/2508/GOH',
    'debit',
    2600.00,
    5000.00,
    2400.00,
    'itemized billing',
    'sn125.1756731169422',
    'wallet',
    'Doctor Abiodun Salako',
    '2025-09-21 09:56:08'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    35,
    '21/2508/GOH',
    'debit',
    2000.00,
    -1200.00,
    -3200.00,
    'treatment billing',
    '2',
    'wallet',
    'Doctor Abiodun Salako',
    '2025-09-25 18:35:06'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    36,
    '22/2508/GOH',
    'debit',
    2000.00,
    0.00,
    -2000.00,
    'treatment billing',
    '1',
    'wallet',
    'Doctor Abiodun Salako',
    '2025-10-02 18:12:36'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    37,
    '19/2507/GOH',
    'credit',
    7500.00,
    -12500.00,
    -5000.00,
    'accumulated_bill_partPayment',
    'deposit-1759425382607',
    'cash',
    'Abiodun Salako',
    '2025-10-02 18:16:22'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    38,
    '7/2505/GOH',
    'debit',
    0.00,
    494.00,
    0.00,
    'treatment billing',
    '0su2m.1759482868397',
    'wallet',
    'Doctor Abiodun Salako',
    '2025-10-03 10:23:56'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    39,
    '7/2505/GOH',
    'debit',
    0.00,
    -5800.00,
    0.00,
    'treatment billing',
    '5',
    'wallet',
    'Doctor Abiodun Salako',
    '2025-10-03 11:01:32'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    40,
    '22/2508/GOH',
    'debit',
    2000.00,
    -2000.00,
    -4000.00,
    'treatment billing',
    '4',
    'wallet',
    'Doctor Abiodun Salako',
    '2025-10-03 11:48:12'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    41,
    '6/2504/GOH',
    'debit',
    9737.50,
    -1000.00,
    -10737.50,
    'treatment billing',
    '6',
    'wallet',
    'Doctor Abiodun Salako',
    '2025-10-03 16:28:34'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    42,
    '22/2508/GOH',
    'debit',
    5375.00,
    -4000.00,
    -9375.00,
    'treatment billing',
    'zn4pr.1759418103400',
    'wallet',
    'Doctor Abiodun Salako',
    '2025-10-03 16:31:13'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    43,
    '9/2507/GOH',
    'debit',
    5526.57,
    0.00,
    -5526.57,
    'treatment billing',
    '1dlbz.1759505999985',
    'wallet',
    'Doctor Abiodun Salako',
    '2025-10-03 16:42:31'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    44,
    '9/2507/GOH',
    'debit',
    8062.50,
    -5526.57,
    -13589.07,
    'treatment billing',
    '7',
    'wallet',
    'Doctor Abiodun Salako',
    '2025-10-03 16:47:59'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    45,
    '22/2508/GOH',
    'credit',
    7000.00,
    -9375.00,
    -2375.00,
    'accumulated_bill_partPayment',
    'deposit-1759506640482',
    'cash',
    'Abiodun Salako',
    '2025-10-03 16:50:40'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    46,
    '9/2507/GOH',
    'credit',
    10000.00,
    -13589.07,
    -3589.07,
    'accumulated_bill_partPayment',
    'deposit-1759507098733',
    'bank (trf or card) to Access Bank',
    'Abiodun Salako',
    '2025-10-03 16:58:18'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    47,
    '9/2507/GOH',
    'debit',
    1612.50,
    -3589.07,
    -5201.57,
    'treatment billing',
    '1dlbz.1759505999985',
    'wallet',
    'Doctor Abiodun Salako',
    '2025-10-03 18:24:28'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    48,
    '4/2504/GOH',
    'debit',
    1960.80,
    0.00,
    -1960.80,
    'treatment billing',
    'vbuke.1759558396759',
    'wallet',
    'Doctor Abiodun Salako',
    '2025-10-04 07:14:47'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    49,
    '4/2504/GOH',
    'debit',
    903.00,
    -1960.80,
    -2863.80,
    'treatment billing',
    'vbuke.1759558396759',
    'wallet',
    'Doctor Abiodun Salako',
    '2025-10-04 07:20:00'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    50,
    '4/2504/GOH',
    'credit',
    2000.00,
    -2863.80,
    -863.80,
    'accumulated_bill_partPayment',
    'deposit-1759560294472',
    'cash',
    'Abiodun Salako',
    '2025-10-04 07:44:54'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    51,
    '12/2507/GOH',
    'debit',
    5626.55,
    -2000.00,
    -7626.55,
    'treatment billing',
    'v2uoz.1759561442965',
    'wallet',
    'Doctor Abiodun Salako',
    '2025-10-04 08:08:19'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    52,
    '19/2507/GOH',
    'debit',
    2000.00,
    -5000.00,
    -7000.00,
    'treatment billing',
    '10',
    'wallet',
    'Doctor Abiodun Salako',
    '2025-11-25 10:04:52'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    53,
    '2/2504/GOH',
    'credit',
    8000.00,
    -17700.00,
    -9700.00,
    'accumulated_bill_partPayment',
    'deposit-1764576096394',
    'cash',
    'Abiodun Salako',
    '2025-12-01 09:01:36'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    54,
    '23/2510/GOH',
    'debit',
    7500.00,
    0.00,
    -7500.00,
    'treatment billing',
    '15',
    'wallet',
    'Doctor Abiodun Salako',
    '2025-12-25 08:43:44'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    55,
    '23/2510/GOH',
    'credit',
    5000.00,
    -7500.00,
    -2500.00,
    'accumulated_bill_partPayment',
    'deposit-1766648699419',
    'cash',
    'Abiodun Salako',
    '2025-12-25 08:44:59'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    56,
    '18/2507/GOH',
    'credit',
    3000.00,
    0.00,
    3000.00,
    'fund_wallet',
    'deposit-1766650115760',
    'cash',
    'Abiodun Salako',
    '2025-12-25 09:08:35'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    57,
    '23/2510/GOH',
    'credit',
    1000.00,
    -2500.00,
    -1500.00,
    'accumulated_bill_partPayment',
    'deposit-1766652163821',
    'cash',
    'Abiodun Salako',
    '2025-12-25 09:42:43'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    58,
    '23/2510/GOH',
    'debit',
    2000.00,
    -1500.00,
    -3500.00,
    'treatment billing',
    '16',
    'wallet',
    'Doctor Abiodun Salako',
    '2025-12-25 15:17:01'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    59,
    '23/2510/GOH',
    'debit',
    234.00,
    -3500.00,
    -3734.00,
    'treatment billing',
    'tzesl.1766672134843',
    'wallet',
    'Doctor Abiodun Salako',
    '2025-12-25 15:27:13'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    60,
    '23/2510/GOH',
    'credit',
    5000.00,
    -3734.00,
    1266.00,
    'all_accumulated_bill',
    'deposit-1766672897259',
    'cash',
    'Abiodun Salako',
    '2025-12-25 15:28:17'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    61,
    '23/2510/GOH',
    'credit',
    5000.00,
    1266.00,
    6266.00,
    'all_accumulated_bill',
    'deposit-1766678948088',
    'cash',
    'Abiodun Salako',
    '2025-12-25 17:09:08'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    62,
    '13/2507/GOH',
    'credit',
    1000.00,
    -3500.00,
    -2500.00,
    'accumulated_bill_partPayment',
    'deposit-1766694358320',
    'cash',
    'Abiodun Salako',
    '2025-12-25 21:25:58'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    63,
    '7/2505/GOH',
    'debit',
    2324.00,
    0.00,
    -2324.00,
    'treatment billing',
    '7zx93.1767545969441',
    'wallet',
    'Doctor Abiodun Salako',
    '2026-01-04 18:00:29'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    64,
    '7/2505/GOH',
    'credit',
    5000.00,
    -2324.00,
    2676.00,
    'fund_wallet',
    'deposit-1767546146060',
    'bank (trf or card) to MoniePoint MFB',
    'Abiodun Salako',
    '2026-01-04 18:02:26'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    65,
    '7/2505/GOH',
    'credit',
    1000.00,
    2676.00,
    3676.00,
    'fund_wallet',
    'deposit-1767632360645',
    'cash',
    'Abiodun Salako',
    '2026-01-05 17:59:20'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    66,
    '9/2507/GOH',
    'credit',
    2000.00,
    -5201.57,
    -3201.57,
    'accumulated_bill_partPayment',
    'deposit-1767632686690',
    'cash',
    'Abiodun Salako',
    '2026-01-05 18:04:46'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    67,
    '9/2507/GOH',
    'credit',
    200.00,
    -3201.57,
    -3001.57,
    'accumulated_bill_partPayment',
    'deposit-1767632770674',
    'cash',
    'Abiodun Salako',
    '2026-01-05 18:06:10'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    68,
    '9/2507/GOH',
    'credit',
    1000.00,
    -3001.57,
    -2001.57,
    'accumulated_bill_partPayment',
    'deposit-1767633102445',
    'bank (trf or card) to MoniePoint MFB',
    'Abiodun Salako',
    '2026-01-05 18:11:42'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    69,
    '9/2507/GOH',
    'credit',
    400.00,
    -2001.57,
    -1601.57,
    'fund_wallet',
    'deposit-1767633209963',
    'cash',
    'Abiodun Salako',
    '2026-01-05 18:13:29'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    70,
    '9/2507/GOH',
    'credit',
    575.00,
    -1601.57,
    -1026.57,
    'fund_wallet',
    'deposit-1767633307099',
    'bank (trf or card) to Zenith Bank',
    'Abiodun Salako',
    '2026-01-05 18:15:07'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    71,
    '26/2601/GOH',
    'debit',
    5234.00,
    0.00,
    -5234.00,
    'treatment billing',
    'dydvm.1767634322927',
    'wallet',
    'Doctor Abiodun Salako',
    '2026-01-05 18:33:03'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    72,
    '26/2601/GOH',
    'credit',
    2000.00,
    -5234.00,
    -3234.00,
    'accumulated_bill_partPayment',
    'deposit-1767634434877',
    'bank (trf or card) to Opay',
    'Abiodun Salako',
    '2026-01-05 18:33:54'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    73,
    '7/2505/GOH',
    'credit',
    500.00,
    3676.00,
    4176.00,
    'accumulated_bill_partPayment',
    'deposit-1767634580667',
    'cash',
    'Abiodun Salako',
    '2026-01-05 18:36:20'
  );
INSERT INTO
  `patient_wallet_txn` (
    `id`,
    `patient_id`,
    `transaction_type`,
    `amount`,
    `balance_before`,
    `balance_after`,
    `purpose`,
    `tx_ref`,
    `payment_channel`,
    `updated_by`,
    `date_time`
  )
VALUES
  (
    74,
    '26/2601/GOH',
    'credit',
    1000.00,
    -3234.00,
    -2234.00,
    'accumulated_bill_partPayment',
    'deposit-1767635420969',
    'bank (trf or card) to GTBank',
    'Abiodun Salako',
    '2026-01-05 18:50:20'
  );

# ------------------------------------------------------------
# DATA DUMP FOR TABLE: patients
# ------------------------------------------------------------

INSERT INTO
  `patients` (
    `id`,
    `title`,
    `firstName`,
    `lastName`,
    `Address`,
    `phone_num`,
    `houseNum_or_name`,
    `street`,
    `city_and_state`,
    `country`,
    `email`,
    `gender`,
    `age`,
    `religion`,
    `hmo`,
    `family_or_group`,
    `outstanding_balance`,
    `hmo_wallet`,
    `patient_id`,
    `nok_id`,
    `nok_num`,
    `date_time`,
    `date_of_birth`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    1,
    'Mr.',
    'Olakunke',
    'Ajasin',
    'new house road, city',
    '08012345678',
    NULL,
    NULL,
    NULL,
    NULL,
    NULL,
    'M',
    '45',
    'Christianity',
    'Nil',
    NULL,
    1000.00,
    NULL,
    '1/2504/GOH',
    1,
    '09012345678',
    '2025-04-01 22:28:12',
    NULL,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `patients` (
    `id`,
    `title`,
    `firstName`,
    `lastName`,
    `Address`,
    `phone_num`,
    `houseNum_or_name`,
    `street`,
    `city_and_state`,
    `country`,
    `email`,
    `gender`,
    `age`,
    `religion`,
    `hmo`,
    `family_or_group`,
    `outstanding_balance`,
    `hmo_wallet`,
    `patient_id`,
    `nok_id`,
    `nok_num`,
    `date_time`,
    `date_of_birth`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    2,
    'Comrade',
    'Jide',
    'Soyoole',
    'address won, oke ohun',
    '07012345678',
    NULL,
    NULL,
    NULL,
    NULL,
    NULL,
    'M',
    '34',
    'Christianity',
    'Nil',
    NULL,
    -9700.00,
    NULL,
    '2/2504/GOH',
    0,
    'nil',
    '2025-04-01 22:34:19',
    NULL,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `patients` (
    `id`,
    `title`,
    `firstName`,
    `lastName`,
    `Address`,
    `phone_num`,
    `houseNum_or_name`,
    `street`,
    `city_and_state`,
    `country`,
    `email`,
    `gender`,
    `age`,
    `religion`,
    `hmo`,
    `family_or_group`,
    `outstanding_balance`,
    `hmo_wallet`,
    `patient_id`,
    `nok_id`,
    `nok_num`,
    `date_time`,
    `date_of_birth`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    3,
    'Miss',
    'Alawada',
    'Kerikeri',
    'Ibi tohungbe, Ilu, Ilu state',
    NULL,
    NULL,
    NULL,
    NULL,
    NULL,
    'awada@gmail.com',
    'F',
    '35',
    'Traditionalist',
    'Nil',
    NULL,
    -14000.00,
    6500.00,
    '3/2504/GOH',
    0,
    'nil',
    '2025-04-01 22:48:08',
    NULL,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `patients` (
    `id`,
    `title`,
    `firstName`,
    `lastName`,
    `Address`,
    `phone_num`,
    `houseNum_or_name`,
    `street`,
    `city_and_state`,
    `country`,
    `email`,
    `gender`,
    `age`,
    `religion`,
    `hmo`,
    `family_or_group`,
    `outstanding_balance`,
    `hmo_wallet`,
    `patient_id`,
    `nok_id`,
    `nok_num`,
    `date_time`,
    `date_of_birth`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    4,
    NULL,
    'Ayoka',
    'Ailara',
    'Odo-oba, Iwo',
    '090987654321',
    NULL,
    NULL,
    NULL,
    NULL,
    'ayoka@mail.com',
    'F',
    '0',
    'Islam',
    'SDF',
    NULL,
    -863.80,
    NULL,
    '4/2504/GOH',
    2,
    '090123456789',
    '2025-04-04 15:22:17',
    NULL,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `patients` (
    `id`,
    `title`,
    `firstName`,
    `lastName`,
    `Address`,
    `phone_num`,
    `houseNum_or_name`,
    `street`,
    `city_and_state`,
    `country`,
    `email`,
    `gender`,
    `age`,
    `religion`,
    `hmo`,
    `family_or_group`,
    `outstanding_balance`,
    `hmo_wallet`,
    `patient_id`,
    `nok_id`,
    `nok_num`,
    `date_time`,
    `date_of_birth`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    5,
    NULL,
    'Tawakalt',
    'Lateef',
    'Koso area, Oyo',
    NULL,
    NULL,
    NULL,
    NULL,
    NULL,
    NULL,
    'F',
    '0',
    'Islam',
    'SDF',
    NULL,
    0.00,
    NULL,
    '5/2504/GOH',
    3,
    '09012345678',
    '2025-04-04 16:02:12',
    '2010-02-10',
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `patients` (
    `id`,
    `title`,
    `firstName`,
    `lastName`,
    `Address`,
    `phone_num`,
    `houseNum_or_name`,
    `street`,
    `city_and_state`,
    `country`,
    `email`,
    `gender`,
    `age`,
    `religion`,
    `hmo`,
    `family_or_group`,
    `outstanding_balance`,
    `hmo_wallet`,
    `patient_id`,
    `nok_id`,
    `nok_num`,
    `date_time`,
    `date_of_birth`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    6,
    NULL,
    'Daniel',
    'Okpara',
    'Abanba,Ibadan',
    '08022345678',
    NULL,
    NULL,
    NULL,
    NULL,
    NULL,
    'M',
    '44',
    'Christianity',
    'OSHIA',
    NULL,
    -10737.50,
    2000.00,
    '6/2504/GOH',
    4,
    '09012345678',
    '2025-04-24 14:53:20',
    '2000-01-28',
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `patients` (
    `id`,
    `title`,
    `firstName`,
    `lastName`,
    `Address`,
    `phone_num`,
    `houseNum_or_name`,
    `street`,
    `city_and_state`,
    `country`,
    `email`,
    `gender`,
    `age`,
    `religion`,
    `hmo`,
    `family_or_group`,
    `outstanding_balance`,
    `hmo_wallet`,
    `patient_id`,
    `nok_id`,
    `nok_num`,
    `date_time`,
    `date_of_birth`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    7,
    'Mr.',
    'Kayode',
    'Ajani',
    'Oloyo village, Akanran Ibadan',
    '09112345678',
    NULL,
    NULL,
    NULL,
    NULL,
    NULL,
    'M',
    '33',
    'Christianity',
    'Nil',
    NULL,
    4176.00,
    13000.00,
    '7/2505/GOH',
    5,
    '09012345678',
    '2025-05-28 13:04:59',
    NULL,
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `patients` (
    `id`,
    `title`,
    `firstName`,
    `lastName`,
    `Address`,
    `phone_num`,
    `houseNum_or_name`,
    `street`,
    `city_and_state`,
    `country`,
    `email`,
    `gender`,
    `age`,
    `religion`,
    `hmo`,
    `family_or_group`,
    `outstanding_balance`,
    `hmo_wallet`,
    `patient_id`,
    `nok_id`,
    `nok_num`,
    `date_time`,
    `date_of_birth`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    8,
    'Miss',
    'Omo',
    'Tuntun',
    'ile wa Nile wa str ,Ilu tuntun ,Nigeria',
    NULL,
    'ile wa',
    'Nile wa str',
    'Ilu tuntun',
    'Nigeria',
    NULL,
    'F',
    '0',
    'Traditionalist',
    'Nil',
    'Chief Alani family',
    3000.00,
    NULL,
    '8/2507/GOH',
    6,
    '0911234567',
    '2025-07-07 18:08:06',
    '2025-07-03',
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `patients` (
    `id`,
    `title`,
    `firstName`,
    `lastName`,
    `Address`,
    `phone_num`,
    `houseNum_or_name`,
    `street`,
    `city_and_state`,
    `country`,
    `email`,
    `gender`,
    `age`,
    `religion`,
    `hmo`,
    `family_or_group`,
    `outstanding_balance`,
    `hmo_wallet`,
    `patient_id`,
    `nok_id`,
    `nok_num`,
    `date_time`,
    `date_of_birth`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    9,
    'Mrs.',
    'Alani',
    'Caroline',
    '24, Oseni str, Alakia, Ibadan, Oyo state Nigeria',
    '09012345678',
    '24',
    'Oseni str, Alakia',
    'Ibadan, Oyo state',
    'Nigeria',
    NULL,
    'F',
    '16',
    'Christianity',
    'OHIS',
    'Single/Personal',
    -1026.57,
    NULL,
    '9/2507/GOH',
    7,
    '09012345678',
    '2025-07-07 20:59:24',
    '2009-05-14',
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `patients` (
    `id`,
    `title`,
    `firstName`,
    `lastName`,
    `Address`,
    `phone_num`,
    `houseNum_or_name`,
    `street`,
    `city_and_state`,
    `country`,
    `email`,
    `gender`,
    `age`,
    `religion`,
    `hmo`,
    `family_or_group`,
    `outstanding_balance`,
    `hmo_wallet`,
    `patient_id`,
    `nok_id`,
    `nok_num`,
    `date_time`,
    `date_of_birth`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    10,
    'Mrs.',
    'Haddar',
    'Aggalla',
    '40, Alekuwowo, Ilorin, Kwara state ',
    NULL,
    '40',
    'Alekuwowo',
    'Ilorin, Kwara state',
    '',
    NULL,
    'F',
    '21',
    '',
    'Nil',
    'Chief Alani family',
    5000.00,
    NULL,
    '10/2507/GOH',
    8,
    '09112345678',
    '2025-07-08 16:50:15',
    '2004-03-12',
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `patients` (
    `id`,
    `title`,
    `firstName`,
    `lastName`,
    `Address`,
    `phone_num`,
    `houseNum_or_name`,
    `street`,
    `city_and_state`,
    `country`,
    `email`,
    `gender`,
    `age`,
    `religion`,
    `hmo`,
    `family_or_group`,
    `outstanding_balance`,
    `hmo_wallet`,
    `patient_id`,
    `nok_id`,
    `nok_num`,
    `date_time`,
    `date_of_birth`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    11,
    NULL,
    'Arada',
    'Awolo',
    '20, strtsrtsrt, Ibadan, Oyo state Nigeria',
    NULL,
    '20',
    'strtsrtsrt',
    'Ibadan, Oyo state',
    'Nigeria',
    NULL,
    'F',
    '16',
    '',
    '',
    'Loyola Farms',
    -500.00,
    NULL,
    '11/2507/GOH',
    9,
    '0912345678',
    '2025-07-09 06:44:05',
    '2009-03-07',
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `patients` (
    `id`,
    `title`,
    `firstName`,
    `lastName`,
    `Address`,
    `phone_num`,
    `houseNum_or_name`,
    `street`,
    `city_and_state`,
    `country`,
    `email`,
    `gender`,
    `age`,
    `religion`,
    `hmo`,
    `family_or_group`,
    `outstanding_balance`,
    `hmo_wallet`,
    `patient_id`,
    `nok_id`,
    `nok_num`,
    `date_time`,
    `date_of_birth`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    12,
    NULL,
    'Olalekan',
    'Olakusibe',
    '12, strt strtss str, Asogo, Oyo, Oyo state Nigeria',
    NULL,
    '12',
    'strt strtss str, Asogo',
    'Oyo, Oyo state',
    'Nigeria',
    NULL,
    'M',
    '25',
    '',
    '',
    'Loyola Farms',
    -7626.55,
    NULL,
    '12/2507/GOH',
    10,
    '09112345678',
    '2025-07-09 06:49:25',
    '2000-03-15',
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `patients` (
    `id`,
    `title`,
    `firstName`,
    `lastName`,
    `Address`,
    `phone_num`,
    `houseNum_or_name`,
    `street`,
    `city_and_state`,
    `country`,
    `email`,
    `gender`,
    `age`,
    `religion`,
    `hmo`,
    `family_or_group`,
    `outstanding_balance`,
    `hmo_wallet`,
    `patient_id`,
    `nok_id`,
    `nok_num`,
    `date_time`,
    `date_of_birth`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    13,
    'Mr.',
    'New',
    'Patient',
    '22, str str str, city and state leavein Nigeria',
    NULL,
    '22',
    'str str str',
    'city and state leavein',
    'Nigeria',
    NULL,
    'M',
    '2',
    'Islam',
    'Nil',
    'Single/Personal',
    -2500.00,
    NULL,
    '13/2507/GOH',
    11,
    '09012345678',
    '2025-07-11 07:33:34',
    '2023-03-08',
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `patients` (
    `id`,
    `title`,
    `firstName`,
    `lastName`,
    `Address`,
    `phone_num`,
    `houseNum_or_name`,
    `street`,
    `city_and_state`,
    `country`,
    `email`,
    `gender`,
    `age`,
    `religion`,
    `hmo`,
    `family_or_group`,
    `outstanding_balance`,
    `hmo_wallet`,
    `patient_id`,
    `nok_id`,
    `nok_num`,
    `date_time`,
    `date_of_birth`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    14,
    'Mrs.',
    'New 2',
    'Patients',
    '22, str, city adress Nigeria',
    NULL,
    '22',
    'str',
    'city adress',
    'Nigeria',
    NULL,
    'F',
    '31',
    '',
    'OSHIA',
    'Single/Personal',
    0.00,
    NULL,
    '14/2507/GOH',
    12,
    '09012345678',
    '2025-07-11 07:35:44',
    '1994-01-14',
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `patients` (
    `id`,
    `title`,
    `firstName`,
    `lastName`,
    `Address`,
    `phone_num`,
    `houseNum_or_name`,
    `street`,
    `city_and_state`,
    `country`,
    `email`,
    `gender`,
    `age`,
    `religion`,
    `hmo`,
    `family_or_group`,
    `outstanding_balance`,
    `hmo_wallet`,
    `patient_id`,
    `nok_id`,
    `nok_num`,
    `date_time`,
    `date_of_birth`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    17,
    NULL,
    'Omo',
    'Wa',
    'no 14, ilawa str, Ibadan, Oyo state Nigeria',
    NULL,
    'no 14',
    'ilawa str',
    'Ibadan, Oyo state',
    'Nigeria',
    NULL,
    'F',
    '5 days',
    '',
    '',
    '',
    -1500.00,
    NULL,
    '17/2507/GOH',
    13,
    '080123456789',
    '2025-07-15 10:28:18',
    '2025-07-10',
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `patients` (
    `id`,
    `title`,
    `firstName`,
    `lastName`,
    `Address`,
    `phone_num`,
    `houseNum_or_name`,
    `street`,
    `city_and_state`,
    `country`,
    `email`,
    `gender`,
    `age`,
    `religion`,
    `hmo`,
    `family_or_group`,
    `outstanding_balance`,
    `hmo_wallet`,
    `patient_id`,
    `nok_id`,
    `nok_num`,
    `date_time`,
    `date_of_birth`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    18,
    'Mr.',
    'Akanni',
    'Daud',
    '9, Atoyebi str, Ibadan, Oyo state Nigeria',
    NULL,
    '9',
    'Atoyebi str',
    'Ibadan, Oyo state',
    'Nigeria',
    NULL,
    'M',
    '22 years',
    'Islam',
    'OSHIA',
    'Engr Awodele Family',
    3000.00,
    NULL,
    '18/2507/GOH',
    14,
    '0908765543321',
    '2025-07-20 21:33:07',
    '2003-03-14',
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `patients` (
    `id`,
    `title`,
    `firstName`,
    `lastName`,
    `Address`,
    `phone_num`,
    `houseNum_or_name`,
    `street`,
    `city_and_state`,
    `country`,
    `email`,
    `gender`,
    `age`,
    `religion`,
    `hmo`,
    `family_or_group`,
    `outstanding_balance`,
    `hmo_wallet`,
    `patient_id`,
    `nok_id`,
    `nok_num`,
    `date_time`,
    `date_of_birth`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    19,
    'Mrs.',
    'Tawalkat',
    'Lateef',
    '4, Mainstrt, Ayegun, Ogbomoso Nigeria',
    '09012345679',
    '4',
    'Mainstrt',
    'Ayegun, Ogbomoso',
    'Nigeria',
    NULL,
    'F',
    '25 years',
    'Islam',
    'Nil',
    'Chief Alani family',
    -7000.00,
    NULL,
    '19/2507/GOH',
    15,
    '09087654322',
    '2025-07-30 15:18:05',
    '2000-05-10',
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `patients` (
    `id`,
    `title`,
    `firstName`,
    `lastName`,
    `Address`,
    `phone_num`,
    `houseNum_or_name`,
    `street`,
    `city_and_state`,
    `country`,
    `email`,
    `gender`,
    `age`,
    `religion`,
    `hmo`,
    `family_or_group`,
    `outstanding_balance`,
    `hmo_wallet`,
    `patient_id`,
    `nok_id`,
    `nok_num`,
    `date_time`,
    `date_of_birth`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    20,
    'Mrs.',
    'Ayinde',
    'Ajoke',
    '2, address wa, Iluwa Nigeria',
    NULL,
    '2',
    'address wa',
    'Iluwa',
    'Nigeria',
    NULL,
    'F',
    '28 years',
    'Christianity',
    'Nil',
    'Engr Awodele Family',
    8000.00,
    NULL,
    '20/2508/GOH',
    16,
    '09012345678',
    '2025-08-03 18:37:02',
    '1997-02-05',
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `patients` (
    `id`,
    `title`,
    `firstName`,
    `lastName`,
    `Address`,
    `phone_num`,
    `houseNum_or_name`,
    `street`,
    `city_and_state`,
    `country`,
    `email`,
    `gender`,
    `age`,
    `religion`,
    `hmo`,
    `family_or_group`,
    `outstanding_balance`,
    `hmo_wallet`,
    `patient_id`,
    `nok_id`,
    `nok_num`,
    `date_time`,
    `date_of_birth`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    21,
    'Pastor',
    'Kola',
    'Adeyemo',
    'ile Kitipi, Isale oja, Ijeru, Ogbomoso, Oyo state Nigeria',
    '080987654321',
    'ile Kitipi',
    'Isale oja, Ijeru',
    'Ogbomoso, Oyo state',
    'Nigeria',
    NULL,
    'M',
    '40 years',
    'Christianity',
    'OHIS',
    'Chief Alani family',
    -5200.00,
    NULL,
    '21/2508/GOH',
    17,
    '090987654321',
    '2025-08-24 12:27:49',
    '1985-04-13',
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `patients` (
    `id`,
    `title`,
    `firstName`,
    `lastName`,
    `Address`,
    `phone_num`,
    `houseNum_or_name`,
    `street`,
    `city_and_state`,
    `country`,
    `email`,
    `gender`,
    `age`,
    `religion`,
    `hmo`,
    `family_or_group`,
    `outstanding_balance`,
    `hmo_wallet`,
    `patient_id`,
    `nok_id`,
    `nok_num`,
    `date_time`,
    `date_of_birth`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    22,
    NULL,
    'Alakori',
    'Alakowe',
    'Ile mopin, Isale Osi, Mopepe Area, Ogbomoso Oyo state Nigeria',
    '09102345678',
    'Ile mopin, Isale Osi',
    'Mopepe Area',
    'Ogbomoso Oyo state',
    'Nigeria',
    NULL,
    'M',
    '42 years',
    'Traditionalist',
    'Nil',
    'Loyola Farms',
    -8375.00,
    NULL,
    '22/2508/GOH',
    18,
    '090987654432',
    '2025-08-31 15:36:47',
    '1983-06-16',
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `patients` (
    `id`,
    `title`,
    `firstName`,
    `lastName`,
    `Address`,
    `phone_num`,
    `houseNum_or_name`,
    `street`,
    `city_and_state`,
    `country`,
    `email`,
    `gender`,
    `age`,
    `religion`,
    `hmo`,
    `family_or_group`,
    `outstanding_balance`,
    `hmo_wallet`,
    `patient_id`,
    `nok_id`,
    `nok_num`,
    `date_time`,
    `date_of_birth`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    23,
    'Mrs.',
    'Rofiat',
    'Olaniyan',
    'no2, Alagbetajo, oyo Nigeria',
    '08100064935',
    'no2',
    'Alagbetajo',
    'oyo',
    'Nigeria',
    NULL,
    'F',
    '75 years',
    'Islam',
    'Nil',
    'Single/Personal',
    6266.00,
    NULL,
    '23/2510/GOH',
    19,
    '08133667861',
    '2025-10-12 16:43:46',
    '1950-01-01',
    1,
    NULL,
    NULL,
    0,
    '2025-11-08 13:38:48'
  );
INSERT INTO
  `patients` (
    `id`,
    `title`,
    `firstName`,
    `lastName`,
    `Address`,
    `phone_num`,
    `houseNum_or_name`,
    `street`,
    `city_and_state`,
    `country`,
    `email`,
    `gender`,
    `age`,
    `religion`,
    `hmo`,
    `family_or_group`,
    `outstanding_balance`,
    `hmo_wallet`,
    `patient_id`,
    `nok_id`,
    `nok_num`,
    `date_time`,
    `date_of_birth`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    24,
    'Mrs.',
    'Adufe',
    'Ayeni',
    '12, Ajaka str, Akinmorin, Oyo, Oyo state Nigeria',
    '01234567899',
    '12',
    'Ajaka str',
    'Akinmorin, Oyo, Oyo state',
    'Nigeria',
    NULL,
    'F',
    '37 years',
    'Christianity',
    'HYGIA',
    'Mr Atanda Family',
    0.00,
    NULL,
    '24/2512/GOH',
    1,
    '09876543210',
    '2025-12-26 21:57:35',
    '1988-01-21',
    1,
    NULL,
    NULL,
    0,
    '2025-12-26 21:57:35'
  );
INSERT INTO
  `patients` (
    `id`,
    `title`,
    `firstName`,
    `lastName`,
    `Address`,
    `phone_num`,
    `houseNum_or_name`,
    `street`,
    `city_and_state`,
    `country`,
    `email`,
    `gender`,
    `age`,
    `religion`,
    `hmo`,
    `family_or_group`,
    `outstanding_balance`,
    `hmo_wallet`,
    `patient_id`,
    `nok_id`,
    `nok_num`,
    `date_time`,
    `date_of_birth`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    25,
    'Comrade',
    'Ajasa',
    'Olowolagba',
    '13, fadeyi str, Awoyaya, Ibadan, Oyo state Nigeria',
    NULL,
    '13',
    'fadeyi str, Awoyaya',
    'Ibadan, Oyo state',
    'Nigeria',
    NULL,
    'M',
    '34 years',
    'Islam',
    'Nil',
    'Single/Personal',
    0.00,
    NULL,
    '25/2512/GOH',
    2,
    '09876543211',
    '2025-12-26 22:09:15',
    '1991-05-15',
    1,
    NULL,
    NULL,
    0,
    '2025-12-26 22:09:15'
  );
INSERT INTO
  `patients` (
    `id`,
    `title`,
    `firstName`,
    `lastName`,
    `Address`,
    `phone_num`,
    `houseNum_or_name`,
    `street`,
    `city_and_state`,
    `country`,
    `email`,
    `gender`,
    `age`,
    `religion`,
    `hmo`,
    `family_or_group`,
    `outstanding_balance`,
    `hmo_wallet`,
    `patient_id`,
    `nok_id`,
    `nok_num`,
    `date_time`,
    `date_of_birth`,
    `revision`,
    `origin_device_id`,
    `deleted_at`,
    `sync_status`,
    `last_modified`
  )
VALUES
  (
    26,
    'Comrade',
    'Adisa',
    'Gbolagade',
    '12, Kaasumu str, Akala express, Ibadan, Oyo state Nigeria',
    '09099112233',
    '12',
    'Kaasumu str, Akala express',
    'Ibadan, Oyo state',
    'Nigeria',
    NULL,
    'F',
    '37 years',
    'Traditionalist',
    'OSHIA',
    'Engr Awodele Family',
    -2234.00,
    NULL,
    '26/2601/GOH',
    3,
    '09012345678',
    '2026-01-05 18:26:26',
    '1988-01-13',
    1,
    NULL,
    NULL,
    0,
    '2026-01-05 18:26:26'
  );

# ------------------------------------------------------------
# DATA DUMP FOR TABLE: payments
# ------------------------------------------------------------

INSERT INTO
  `payments` (
    `id`,
    `patient_id`,
    `rx_time`,
    `amount_paid`,
    `paid_for`,
    `bill_reference`,
    `payment_method`,
    `bank_name`,
    `payer_type`,
    `confirmed_by`,
    `date_time`,
    `rx_session`,
    `wallet_txn_ref`,
    `branch_id`
  )
VALUES
  (
    58,
    '17/2507/GOH',
    '2025-07-30 15:31:06',
    1500.00,
    'treatment',
    NULL,
    'wallet',
    'N/A',
    'patient',
    'Abiodun Salako',
    '2025-08-01 05:25:39',
    'g5pvz.1753885866833',
    'deposit-1754022339047',
    NULL
  );
INSERT INTO
  `payments` (
    `id`,
    `patient_id`,
    `rx_time`,
    `amount_paid`,
    `paid_for`,
    `bill_reference`,
    `payment_method`,
    `bank_name`,
    `payer_type`,
    `confirmed_by`,
    `date_time`,
    `rx_session`,
    `wallet_txn_ref`,
    `branch_id`
  )
VALUES
  (
    59,
    '17/2507/GOH',
    '2025-07-30 15:31:06',
    1500.00,
    'treatment',
    NULL,
    'wallet',
    'N/A',
    'patient',
    'Abiodun Salako',
    '2025-08-17 19:16:41',
    'g5pvz.1753885866833',
    'deposit-1755454601813',
    NULL
  );
INSERT INTO
  `payments` (
    `id`,
    `patient_id`,
    `rx_time`,
    `amount_paid`,
    `paid_for`,
    `bill_reference`,
    `payment_method`,
    `bank_name`,
    `payer_type`,
    `confirmed_by`,
    `date_time`,
    `rx_session`,
    `wallet_txn_ref`,
    `branch_id`
  )
VALUES
  (
    60,
    '12/2507/GOH',
    '2025-08-22 09:51:14',
    25000.00,
    'treatment',
    NULL,
    'wallet',
    'N/A',
    'family/group',
    'Abiodun Salako',
    '2025-08-22 16:40:54',
    '0sbrl.1755852674905',
    'deposit-1755877254912',
    NULL
  );
INSERT INTO
  `payments` (
    `id`,
    `patient_id`,
    `rx_time`,
    `amount_paid`,
    `paid_for`,
    `bill_reference`,
    `payment_method`,
    `bank_name`,
    `payer_type`,
    `confirmed_by`,
    `date_time`,
    `rx_session`,
    `wallet_txn_ref`,
    `branch_id`
  )
VALUES
  (
    61,
    'customer',
    '2025-08-23 09:54:21',
    2000.00,
    'Outpatient sales',
    NULL,
    'cash',
    'N/A',
    'patient',
    'Doctor Abiodun Salako',
    '2025-08-23 09:54:27',
    'sales.1755939261857',
    NULL,
    NULL
  );
INSERT INTO
  `payments` (
    `id`,
    `patient_id`,
    `rx_time`,
    `amount_paid`,
    `paid_for`,
    `bill_reference`,
    `payment_method`,
    `bank_name`,
    `payer_type`,
    `confirmed_by`,
    `date_time`,
    `rx_session`,
    `wallet_txn_ref`,
    `branch_id`
  )
VALUES
  (
    62,
    'customer',
    '2025-08-23 14:26:40',
    7000.00,
    'Outpatient sales',
    NULL,
    'bank (trf or card) to Zenith Bank',
    'N/A',
    'customer',
    'Doctor Abiodun Salako',
    '2025-08-23 14:26:42',
    'sales.1755955600045',
    NULL,
    NULL
  );
INSERT INTO
  `payments` (
    `id`,
    `patient_id`,
    `rx_time`,
    `amount_paid`,
    `paid_for`,
    `bill_reference`,
    `payment_method`,
    `bank_name`,
    `payer_type`,
    `confirmed_by`,
    `date_time`,
    `rx_session`,
    `wallet_txn_ref`,
    `branch_id`
  )
VALUES
  (
    63,
    '17/2507/GOH',
    '2025-07-30 15:31:06',
    1000.00,
    'treatment',
    NULL,
    'wallet',
    'N/A',
    'patient',
    'Abiodun Salako',
    '2025-08-23 15:23:15',
    'g5pvz.1753885866833',
    'deposit-1755958995318',
    NULL
  );
INSERT INTO
  `payments` (
    `id`,
    `patient_id`,
    `rx_time`,
    `amount_paid`,
    `paid_for`,
    `bill_reference`,
    `payment_method`,
    `bank_name`,
    `payer_type`,
    `confirmed_by`,
    `date_time`,
    `rx_session`,
    `wallet_txn_ref`,
    `branch_id`
  )
VALUES
  (
    64,
    'customer',
    '2025-08-25 09:41:29',
    2000.00,
    'Outpatient sales',
    NULL,
    'bank (trf or card) to GTBank',
    'N/A',
    'customer',
    'Doctor Abiodun Salako',
    '2025-08-25 09:41:40',
    'sales.1756111289851',
    NULL,
    NULL
  );
INSERT INTO
  `payments` (
    `id`,
    `patient_id`,
    `rx_time`,
    `amount_paid`,
    `paid_for`,
    `bill_reference`,
    `payment_method`,
    `bank_name`,
    `payer_type`,
    `confirmed_by`,
    `date_time`,
    `rx_session`,
    `wallet_txn_ref`,
    `branch_id`
  )
VALUES
  (
    65,
    'customer',
    '2025-08-31 14:41:33',
    2000.00,
    'Outpatient sales',
    NULL,
    'bank (trf or card) to GTBank',
    'N/A',
    'customer',
    'Doctor Abiodun Salako',
    '2025-08-31 14:41:41',
    'sales.1756647693321',
    NULL,
    NULL
  );
INSERT INTO
  `payments` (
    `id`,
    `patient_id`,
    `rx_time`,
    `amount_paid`,
    `paid_for`,
    `bill_reference`,
    `payment_method`,
    `bank_name`,
    `payer_type`,
    `confirmed_by`,
    `date_time`,
    `rx_session`,
    `wallet_txn_ref`,
    `branch_id`
  )
VALUES
  (
    66,
    '17/2507/GOH',
    '2025-07-30 15:31:06',
    1000.00,
    'treatment',
    NULL,
    'wallet',
    'N/A',
    'patient',
    'Abiodun Salako',
    '2025-08-31 14:42:26',
    'g5pvz.1753885866833',
    'deposit-1756647746228',
    NULL
  );
INSERT INTO
  `payments` (
    `id`,
    `patient_id`,
    `rx_time`,
    `amount_paid`,
    `paid_for`,
    `bill_reference`,
    `payment_method`,
    `bank_name`,
    `payer_type`,
    `confirmed_by`,
    `date_time`,
    `rx_session`,
    `wallet_txn_ref`,
    `branch_id`
  )
VALUES
  (
    67,
    'customer',
    '2025-09-06 15:04:20',
    4000.00,
    'Outpatient sales',
    NULL,
    'bank (trf or card) to GTBank',
    'N/A',
    'customer',
    'Doctor Abiodun Salako',
    '2025-09-06 15:04:29',
    'sales.1757167460258',
    NULL,
    NULL
  );
INSERT INTO
  `payments` (
    `id`,
    `patient_id`,
    `rx_time`,
    `amount_paid`,
    `paid_for`,
    `bill_reference`,
    `payment_method`,
    `bank_name`,
    `payer_type`,
    `confirmed_by`,
    `date_time`,
    `rx_session`,
    `wallet_txn_ref`,
    `branch_id`
  )
VALUES
  (
    68,
    '21/2508/GOH',
    '2025-09-20 12:52:46',
    2600.00,
    'treatment',
    NULL,
    'Wallet',
    'N/A',
    'patient',
    'Doctor Abiodun Salako',
    '2025-09-21 09:56:08',
    'sn125.1756731169422',
    NULL,
    NULL
  );
INSERT INTO
  `payments` (
    `id`,
    `patient_id`,
    `rx_time`,
    `amount_paid`,
    `paid_for`,
    `bill_reference`,
    `payment_method`,
    `bank_name`,
    `payer_type`,
    `confirmed_by`,
    `date_time`,
    `rx_session`,
    `wallet_txn_ref`,
    `branch_id`
  )
VALUES
  (
    69,
    '21/2508/GOH',
    '2025-09-20 12:52:46',
    2400.00,
    'rx_bill',
    NULL,
    'Wallet',
    'N/A',
    'patient',
    'Abiodun Salako',
    '2025-09-21 10:03:03',
    'sn125.1756731169422',
    NULL,
    NULL
  );
INSERT INTO
  `payments` (
    `id`,
    `patient_id`,
    `rx_time`,
    `amount_paid`,
    `paid_for`,
    `bill_reference`,
    `payment_method`,
    `bank_name`,
    `payer_type`,
    `confirmed_by`,
    `date_time`,
    `rx_session`,
    `wallet_txn_ref`,
    `branch_id`
  )
VALUES
  (
    70,
    '19/2507/GOH',
    '2025-08-31 12:33:03',
    2500.00,
    'rx_bill',
    NULL,
    'Wallet',
    'N/A',
    'patient',
    'Abiodun Salako',
    '2025-10-01 09:37:21',
    'vsauj.1756639983223',
    NULL,
    NULL
  );
INSERT INTO
  `payments` (
    `id`,
    `patient_id`,
    `rx_time`,
    `amount_paid`,
    `paid_for`,
    `bill_reference`,
    `payment_method`,
    `bank_name`,
    `payer_type`,
    `confirmed_by`,
    `date_time`,
    `rx_session`,
    `wallet_txn_ref`,
    `branch_id`
  )
VALUES
  (
    71,
    '19/2507/GOH',
    '2025-08-31 12:33:03',
    7500.00,
    'treatment',
    NULL,
    'wallet',
    'N/A',
    'patient',
    'Abiodun Salako',
    '2025-10-02 18:16:22',
    'vsauj.1756639983223',
    'deposit-1759425382607',
    NULL
  );
INSERT INTO
  `payments` (
    `id`,
    `patient_id`,
    `rx_time`,
    `amount_paid`,
    `paid_for`,
    `bill_reference`,
    `payment_method`,
    `bank_name`,
    `payer_type`,
    `confirmed_by`,
    `date_time`,
    `rx_session`,
    `wallet_txn_ref`,
    `branch_id`
  )
VALUES
  (
    72,
    '7/2505/GOH',
    '2025-10-03 10:14:28',
    0.00,
    'treatment',
    NULL,
    'Wallet',
    'N/A',
    'patient',
    'Doctor Abiodun Salako',
    '2025-10-03 10:23:56',
    '0su2m.1759482868397',
    NULL,
    NULL
  );
INSERT INTO
  `payments` (
    `id`,
    `patient_id`,
    `rx_time`,
    `amount_paid`,
    `paid_for`,
    `bill_reference`,
    `payment_method`,
    `bank_name`,
    `payer_type`,
    `confirmed_by`,
    `date_time`,
    `rx_session`,
    `wallet_txn_ref`,
    `branch_id`
  )
VALUES
  (
    73,
    '22/2508/GOH',
    '2025-10-03 16:30:24',
    5375.00,
    'treatment',
    NULL,
    'wallet',
    'N/A',
    'patient',
    'Abiodun Salako',
    '2025-10-03 16:50:40',
    'zn4pr.1759418103400',
    'deposit-1759506640482',
    NULL
  );
INSERT INTO
  `payments` (
    `id`,
    `patient_id`,
    `rx_time`,
    `amount_paid`,
    `paid_for`,
    `bill_reference`,
    `payment_method`,
    `bank_name`,
    `payer_type`,
    `confirmed_by`,
    `date_time`,
    `rx_session`,
    `wallet_txn_ref`,
    `branch_id`
  )
VALUES
  (
    74,
    '9/2507/GOH',
    '2025-10-03 16:39:59',
    5526.57,
    'treatment',
    NULL,
    'wallet',
    'N/A',
    'patient',
    'Abiodun Salako',
    '2025-10-03 16:58:18',
    '1dlbz.1759505999985',
    'deposit-1759507098733',
    NULL
  );
INSERT INTO
  `payments` (
    `id`,
    `patient_id`,
    `rx_time`,
    `amount_paid`,
    `paid_for`,
    `bill_reference`,
    `payment_method`,
    `bank_name`,
    `payer_type`,
    `confirmed_by`,
    `date_time`,
    `rx_session`,
    `wallet_txn_ref`,
    `branch_id`
  )
VALUES
  (
    75,
    '4/2504/GOH',
    '2025-10-04 07:13:16',
    1960.80,
    'treatment',
    NULL,
    'wallet',
    'N/A',
    'patient',
    'Abiodun Salako',
    '2025-10-04 07:44:54',
    'vbuke.1759558396759',
    'deposit-1759560294472',
    NULL
  );
INSERT INTO
  `payments` (
    `id`,
    `patient_id`,
    `rx_time`,
    `amount_paid`,
    `paid_for`,
    `bill_reference`,
    `payment_method`,
    `bank_name`,
    `payer_type`,
    `confirmed_by`,
    `date_time`,
    `rx_session`,
    `wallet_txn_ref`,
    `branch_id`
  )
VALUES
  (
    76,
    '4/2504/GOH',
    '2025-10-04 07:18:14',
    39.20,
    'treatment',
    NULL,
    'wallet',
    'N/A',
    'patient',
    'Abiodun Salako',
    '2025-10-04 07:44:54',
    'vbuke.1759558396759',
    'deposit-1759560294472',
    NULL
  );
INSERT INTO
  `payments` (
    `id`,
    `patient_id`,
    `rx_time`,
    `amount_paid`,
    `paid_for`,
    `bill_reference`,
    `payment_method`,
    `bank_name`,
    `payer_type`,
    `confirmed_by`,
    `date_time`,
    `rx_session`,
    `wallet_txn_ref`,
    `branch_id`
  )
VALUES
  (
    77,
    '12/2507/GOH',
    '2025-10-04 08:12:09',
    2956.25,
    'treatment',
    NULL,
    'wallet',
    'N/A',
    'family/group',
    'Abiodun Salako',
    '2025-10-04 08:28:18',
    'v2uoz.1759561442965',
    'deposit-1759562898623',
    NULL
  );
INSERT INTO
  `payments` (
    `id`,
    `patient_id`,
    `rx_time`,
    `amount_paid`,
    `paid_for`,
    `bill_reference`,
    `payment_method`,
    `bank_name`,
    `payer_type`,
    `confirmed_by`,
    `date_time`,
    `rx_session`,
    `wallet_txn_ref`,
    `branch_id`
  )
VALUES
  (
    78,
    '12/2507/GOH',
    '2025-10-04 08:16:20',
    4043.75,
    'treatment',
    NULL,
    'wallet',
    'N/A',
    'family/group',
    'Abiodun Salako',
    '2025-10-04 08:28:18',
    'v2uoz.1759561442965',
    'deposit-1759562898623',
    NULL
  );
INSERT INTO
  `payments` (
    `id`,
    `patient_id`,
    `rx_time`,
    `amount_paid`,
    `paid_for`,
    `bill_reference`,
    `payment_method`,
    `bank_name`,
    `payer_type`,
    `confirmed_by`,
    `date_time`,
    `rx_session`,
    `wallet_txn_ref`,
    `branch_id`
  )
VALUES
  (
    79,
    '23/2510/GOH',
    '2025-12-25 08:41:49',
    1000.00,
    'treatment',
    NULL,
    'wallet',
    'N/A',
    'patient',
    'Abiodun Salako',
    '2025-12-25 09:42:43',
    '15',
    'deposit-1766652163821',
    NULL
  );
INSERT INTO
  `payments` (
    `id`,
    `patient_id`,
    `rx_time`,
    `amount_paid`,
    `paid_for`,
    `bill_reference`,
    `payment_method`,
    `bank_name`,
    `payer_type`,
    `confirmed_by`,
    `date_time`,
    `rx_session`,
    `wallet_txn_ref`,
    `branch_id`
  )
VALUES
  (
    80,
    '23/2510/GOH',
    '2025-12-25 08:41:49',
    5000.00,
    'treatment',
    NULL,
    'wallet',
    'N/A',
    'patient',
    'Abiodun Salako',
    '2025-12-25 15:28:17',
    '15',
    'deposit-1766672897259',
    NULL
  );
INSERT INTO
  `payments` (
    `id`,
    `patient_id`,
    `rx_time`,
    `amount_paid`,
    `paid_for`,
    `bill_reference`,
    `payment_method`,
    `bank_name`,
    `payer_type`,
    `confirmed_by`,
    `date_time`,
    `rx_session`,
    `wallet_txn_ref`,
    `branch_id`
  )
VALUES
  (
    81,
    '23/2510/GOH',
    '2025-12-25 15:15:34',
    234.00,
    'treatment',
    NULL,
    'wallet',
    'N/A',
    'patient',
    'Abiodun Salako',
    '2025-12-25 17:09:08',
    'tzesl.1766672134843',
    'deposit-1766678948088',
    NULL
  );
INSERT INTO
  `payments` (
    `id`,
    `patient_id`,
    `rx_time`,
    `amount_paid`,
    `paid_for`,
    `bill_reference`,
    `payment_method`,
    `bank_name`,
    `payer_type`,
    `confirmed_by`,
    `date_time`,
    `rx_session`,
    `wallet_txn_ref`,
    `branch_id`
  )
VALUES
  (
    82,
    '23/2510/GOH',
    '2025-12-25 08:41:49',
    1500.00,
    'treatment',
    NULL,
    'wallet',
    'N/A',
    'patient',
    'Abiodun Salako',
    '2025-12-25 17:09:08',
    '15',
    'deposit-1766678948088',
    NULL
  );
INSERT INTO
  `payments` (
    `id`,
    `patient_id`,
    `rx_time`,
    `amount_paid`,
    `paid_for`,
    `bill_reference`,
    `payment_method`,
    `bank_name`,
    `payer_type`,
    `confirmed_by`,
    `date_time`,
    `rx_session`,
    `wallet_txn_ref`,
    `branch_id`
  )
VALUES
  (
    83,
    '23/2510/GOH',
    '2025-12-25 15:12:39',
    2000.00,
    'treatment',
    NULL,
    'wallet',
    'N/A',
    'patient',
    'Abiodun Salako',
    '2025-12-25 17:09:08',
    '16',
    'deposit-1766678948088',
    NULL
  );
INSERT INTO
  `payments` (
    `id`,
    `patient_id`,
    `rx_time`,
    `amount_paid`,
    `paid_for`,
    `bill_reference`,
    `payment_method`,
    `bank_name`,
    `payer_type`,
    `confirmed_by`,
    `date_time`,
    `rx_session`,
    `wallet_txn_ref`,
    `branch_id`
  )
VALUES
  (
    84,
    '13/2507/GOH',
    '2025-12-25 21:23:28',
    1000.00,
    'treatment',
    NULL,
    'wallet',
    'N/A',
    'patient',
    'Abiodun Salako',
    '2025-12-25 21:25:58',
    'tyd9i.1766694208260',
    'deposit-1766694358320',
    NULL
  );
INSERT INTO
  `payments` (
    `id`,
    `patient_id`,
    `rx_time`,
    `amount_paid`,
    `paid_for`,
    `bill_reference`,
    `payment_method`,
    `bank_name`,
    `payer_type`,
    `confirmed_by`,
    `date_time`,
    `rx_session`,
    `wallet_txn_ref`,
    `branch_id`
  )
VALUES
  (
    85,
    '12/2507/GOH',
    '2025-10-04 08:16:20',
    1331.25,
    'treatment',
    NULL,
    'wallet',
    'N/A',
    'family/group',
    'Abiodun Salako',
    '2025-12-26 12:23:02',
    'v2uoz.1759561442965',
    'deposit-1766748182956',
    NULL
  );
INSERT INTO
  `payments` (
    `id`,
    `patient_id`,
    `rx_time`,
    `amount_paid`,
    `paid_for`,
    `bill_reference`,
    `payment_method`,
    `bank_name`,
    `payer_type`,
    `confirmed_by`,
    `date_time`,
    `rx_session`,
    `wallet_txn_ref`,
    `branch_id`
  )
VALUES
  (
    86,
    '22/2508/GOH',
    '2025-12-26 11:45:31',
    4000.00,
    'treatment',
    NULL,
    'wallet',
    'N/A',
    'family/group',
    'Abiodun Salako',
    '2025-12-26 12:23:02',
    'h5otn.1766744913963',
    'deposit-1766748182956',
    NULL
  );
INSERT INTO
  `payments` (
    `id`,
    `patient_id`,
    `rx_time`,
    `amount_paid`,
    `paid_for`,
    `bill_reference`,
    `payment_method`,
    `bank_name`,
    `payer_type`,
    `confirmed_by`,
    `date_time`,
    `rx_session`,
    `wallet_txn_ref`,
    `branch_id`
  )
VALUES
  (
    87,
    '7/2505/GOH',
    '2025-10-03 10:14:28',
    5000.00,
    'treatment',
    NULL,
    'wallet',
    'N/A',
    'patient',
    'Abiodun Salako',
    '2026-01-04 18:02:26',
    '0su2m.1759482868397',
    'deposit-1767546146060',
    NULL
  );
INSERT INTO
  `payments` (
    `id`,
    `patient_id`,
    `rx_time`,
    `amount_paid`,
    `paid_for`,
    `bill_reference`,
    `payment_method`,
    `bank_name`,
    `payer_type`,
    `confirmed_by`,
    `date_time`,
    `rx_session`,
    `wallet_txn_ref`,
    `branch_id`
  )
VALUES
  (
    88,
    '7/2505/GOH',
    '2025-10-03 10:14:28',
    800.00,
    'treatment',
    NULL,
    'wallet',
    'N/A',
    'patient',
    'Abiodun Salako',
    '2026-01-05 17:59:20',
    '0su2m.1759482868397',
    'deposit-1767632360645',
    NULL
  );
INSERT INTO
  `payments` (
    `id`,
    `patient_id`,
    `rx_time`,
    `amount_paid`,
    `paid_for`,
    `bill_reference`,
    `payment_method`,
    `bank_name`,
    `payer_type`,
    `confirmed_by`,
    `date_time`,
    `rx_session`,
    `wallet_txn_ref`,
    `branch_id`
  )
VALUES
  (
    89,
    '7/2505/GOH',
    '2026-01-04 17:59:29',
    200.00,
    'treatment',
    NULL,
    'wallet',
    'N/A',
    'patient',
    'Abiodun Salako',
    '2026-01-05 17:59:20',
    '7zx93.1767545969441',
    'deposit-1767632360645',
    NULL
  );
INSERT INTO
  `payments` (
    `id`,
    `patient_id`,
    `rx_time`,
    `amount_paid`,
    `paid_for`,
    `bill_reference`,
    `payment_method`,
    `bank_name`,
    `payer_type`,
    `confirmed_by`,
    `date_time`,
    `rx_session`,
    `wallet_txn_ref`,
    `branch_id`
  )
VALUES
  (
    90,
    '9/2507/GOH',
    '2025-10-03 18:23:03',
    1612.50,
    'treatment',
    NULL,
    'wallet',
    'N/A',
    'patient',
    'Abiodun Salako',
    '2026-01-05 18:04:46',
    '1dlbz.1759505999985',
    'deposit-1767632686690',
    NULL
  );
INSERT INTO
  `payments` (
    `id`,
    `patient_id`,
    `rx_time`,
    `amount_paid`,
    `paid_for`,
    `bill_reference`,
    `payment_method`,
    `bank_name`,
    `payer_type`,
    `confirmed_by`,
    `date_time`,
    `rx_session`,
    `wallet_txn_ref`,
    `branch_id`
  )
VALUES
  (
    91,
    '9/2507/GOH',
    '2025-10-03 16:37:32',
    387.50,
    'treatment',
    NULL,
    'wallet',
    'N/A',
    'patient',
    'Abiodun Salako',
    '2026-01-05 18:04:46',
    '7',
    'deposit-1767632686690',
    NULL
  );
INSERT INTO
  `payments` (
    `id`,
    `patient_id`,
    `rx_time`,
    `amount_paid`,
    `paid_for`,
    `bill_reference`,
    `payment_method`,
    `bank_name`,
    `payer_type`,
    `confirmed_by`,
    `date_time`,
    `rx_session`,
    `wallet_txn_ref`,
    `branch_id`
  )
VALUES
  (
    92,
    '9/2507/GOH',
    '2025-10-03 16:37:32',
    200.00,
    'treatment',
    NULL,
    'wallet',
    'N/A',
    'patient',
    'Abiodun Salako',
    '2026-01-05 18:06:10',
    '7',
    'deposit-1767632770674',
    NULL
  );
INSERT INTO
  `payments` (
    `id`,
    `patient_id`,
    `rx_time`,
    `amount_paid`,
    `paid_for`,
    `bill_reference`,
    `payment_method`,
    `bank_name`,
    `payer_type`,
    `confirmed_by`,
    `date_time`,
    `rx_session`,
    `wallet_txn_ref`,
    `branch_id`
  )
VALUES
  (
    93,
    '9/2507/GOH',
    '2025-10-03 16:37:32',
    1000.00,
    'treatment',
    NULL,
    'wallet',
    'N/A',
    'patient',
    'Abiodun Salako',
    '2026-01-05 18:11:42',
    '7',
    'deposit-1767633102445',
    NULL
  );
INSERT INTO
  `payments` (
    `id`,
    `patient_id`,
    `rx_time`,
    `amount_paid`,
    `paid_for`,
    `bill_reference`,
    `payment_method`,
    `bank_name`,
    `payer_type`,
    `confirmed_by`,
    `date_time`,
    `rx_session`,
    `wallet_txn_ref`,
    `branch_id`
  )
VALUES
  (
    94,
    '9/2507/GOH',
    '2025-10-03 16:37:32',
    400.00,
    'treatment',
    NULL,
    'wallet',
    'N/A',
    'patient',
    'Abiodun Salako',
    '2026-01-05 18:13:29',
    '7',
    'deposit-1767633209963',
    NULL
  );
INSERT INTO
  `payments` (
    `id`,
    `patient_id`,
    `rx_time`,
    `amount_paid`,
    `paid_for`,
    `bill_reference`,
    `payment_method`,
    `bank_name`,
    `payer_type`,
    `confirmed_by`,
    `date_time`,
    `rx_session`,
    `wallet_txn_ref`,
    `branch_id`
  )
VALUES
  (
    95,
    '9/2507/GOH',
    '2025-10-03 16:37:32',
    575.00,
    'treatment',
    NULL,
    'wallet',
    'N/A',
    'patient',
    'Abiodun Salako',
    '2026-01-05 18:15:07',
    '7',
    'deposit-1767633307099',
    NULL
  );
INSERT INTO
  `payments` (
    `id`,
    `patient_id`,
    `rx_time`,
    `amount_paid`,
    `paid_for`,
    `bill_reference`,
    `payment_method`,
    `bank_name`,
    `payer_type`,
    `confirmed_by`,
    `date_time`,
    `rx_session`,
    `wallet_txn_ref`,
    `branch_id`
  )
VALUES
  (
    96,
    '26/2601/GOH',
    '2026-01-05 18:32:02',
    2000.00,
    'treatment',
    NULL,
    'wallet',
    'N/A',
    'patient',
    'Abiodun Salako',
    '2026-01-05 18:33:54',
    'dydvm.1767634322927',
    'deposit-1767634434877',
    NULL
  );
INSERT INTO
  `payments` (
    `id`,
    `patient_id`,
    `rx_time`,
    `amount_paid`,
    `paid_for`,
    `bill_reference`,
    `payment_method`,
    `bank_name`,
    `payer_type`,
    `confirmed_by`,
    `date_time`,
    `rx_session`,
    `wallet_txn_ref`,
    `branch_id`
  )
VALUES
  (
    97,
    '7/2505/GOH',
    '2026-01-04 17:59:29',
    500.00,
    'treatment',
    NULL,
    'wallet',
    'N/A',
    'patient',
    'Abiodun Salako',
    '2026-01-05 18:36:20',
    '7zx93.1767545969441',
    'deposit-1767634580667',
    NULL
  );
INSERT INTO
  `payments` (
    `id`,
    `patient_id`,
    `rx_time`,
    `amount_paid`,
    `paid_for`,
    `bill_reference`,
    `payment_method`,
    `bank_name`,
    `payer_type`,
    `confirmed_by`,
    `date_time`,
    `rx_session`,
    `wallet_txn_ref`,
    `branch_id`
  )
VALUES
  (
    98,
    '26/2601/GOH',
    '2026-01-05 18:32:02',
    1000.00,
    'treatment',
    NULL,
    'wallet',
    'N/A',
    'patient',
    'Abiodun Salako',
    '2026-01-05 18:50:20',
    'dydvm.1767634322927',
    'deposit-1767635420969',
    NULL
  );

# ------------------------------------------------------------
# DATA DUMP FOR TABLE: report_generation_queue
# ------------------------------------------------------------


# ------------------------------------------------------------
# DATA DUMP FOR TABLE: report_preferences
# ------------------------------------------------------------

INSERT INTO
  `report_preferences` (
    `id`,
    `user_id`,
    `user_email`,
    `user_phone`,
    `user_name`,
    `frequency`,
    `report_type`,
    `delivery_method`,
    `scheduled_time`,
    `scheduled_day`,
    `is_active`,
    `last_generated_at`,
    `next_generation_at`,
    `created_at`,
    `updated_at`
  )
VALUES
  (
    1,
    1,
    'ayoatiola@gmail.com',
    '',
    'Dev Ola',
    'daily',
    'comprehensive',
    'email',
    '08:00:00',
    1,
    1,
    NULL,
    '2026-01-14 07:00:00',
    '2026-01-13 08:15:53',
    '2026-01-13 09:34:33'
  );

# ------------------------------------------------------------
# DATA DUMP FOR TABLE: services_catalog
# ------------------------------------------------------------

INSERT INTO
  `services_catalog` (
    `id`,
    `name`,
    `price`,
    `description`,
    `created_at`,
    `updated_at`,
    `updated_by`
  )
VALUES
  (
    8,
    'PCV',
    2000.00,
    'lab test',
    '2025-08-12 09:44:22',
    '2025-10-08 11:02:44',
    'Doctor Abiodun Salako'
  );
INSERT INTO
  `services_catalog` (
    `id`,
    `name`,
    `price`,
    `description`,
    `created_at`,
    `updated_at`,
    `updated_by`
  )
VALUES
  (
    9,
    'MO Consultation',
    2000.00,
    'one on one session with medical officer',
    '2025-08-12 09:45:25',
    '2025-08-12 09:45:25',
    NULL
  );
INSERT INTO
  `services_catalog` (
    `id`,
    `name`,
    `price`,
    `description`,
    `created_at`,
    `updated_at`,
    `updated_by`
  )
VALUES
  (
    10,
    'MD Consultation',
    5000.00,
    'one on one session with medical director',
    '2025-08-12 09:45:58',
    '2025-08-12 09:45:58',
    NULL
  );
INSERT INTO
  `services_catalog` (
    `id`,
    `name`,
    `price`,
    `description`,
    `created_at`,
    `updated_at`,
    `updated_by`
  )
VALUES
  (
    11,
    'widal test',
    7500.00,
    'lab investigation',
    '2025-09-26 06:28:21',
    '2025-09-26 06:28:21',
    NULL
  );
INSERT INTO
  `services_catalog` (
    `id`,
    `name`,
    `price`,
    `description`,
    `created_at`,
    `updated_at`,
    `updated_by`
  )
VALUES
  (
    12,
    'personal reg. fee',
    1500.00,
    '',
    '2025-12-21 15:43:39',
    '2025-12-21 15:43:39',
    NULL
  );
INSERT INTO
  `services_catalog` (
    `id`,
    `name`,
    `price`,
    `description`,
    `created_at`,
    `updated_at`,
    `updated_by`
  )
VALUES
  (
    13,
    'Group reg. fee',
    5000.00,
    '',
    '2025-12-21 15:44:22',
    '2025-12-21 15:44:22',
    NULL
  );

# ------------------------------------------------------------
# DATA DUMP FOR TABLE: staffs
# ------------------------------------------------------------

INSERT INTO
  `staffs` (
    `id`,
    `staff_id`,
    `firstName`,
    `lastName`,
    `age`,
    `gender`,
    `email`,
    `address`,
    `phone_num`,
    `password`,
    `sPIN`,
    `cadre`,
    `rcode`,
    `rcode_expires`,
    `branch_id`
  )
VALUES
  (
    12,
    '12/DOC/2507',
    'Abiodun',
    'Salako',
    NULL,
    NULL,
    'salako@gmail.com',
    NULL,
    '08012345678',
    '$2b$10$NzPQdwiwNcPhC9XF3OK7c.n8nhnILpvjrFNsyexE0kxm.1NkGgUU.',
    NULL,
    'Doctor',
    NULL,
    NULL,
    1
  );
INSERT INTO
  `staffs` (
    `id`,
    `staff_id`,
    `firstName`,
    `lastName`,
    `age`,
    `gender`,
    `email`,
    `address`,
    `phone_num`,
    `password`,
    `sPIN`,
    `cadre`,
    `rcode`,
    `rcode_expires`,
    `branch_id`
  )
VALUES
  (
    13,
    '13/NUR/2507',
    'Ayan',
    'Titilope',
    NULL,
    NULL,
    'ayan@gmail.com',
    NULL,
    '09012345678',
    '$2b$10$sk6QwP6wApKaxKiflXgdWeeExMC44QWm2nexxfZ8nQQHnBwBdw53S',
    NULL,
    'Nurse',
    NULL,
    NULL,
    1
  );

# ------------------------------------------------------------
# DATA DUMP FOR TABLE: subscription_plans
# ------------------------------------------------------------


# ------------------------------------------------------------
# DATA DUMP FOR TABLE: suggested_complaints
# ------------------------------------------------------------

INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (4, 'Abdominal Pain');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (179, 'Abnormal body odor');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (133, 'Anxiety');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (9, 'Back Pain');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (177, 'Black stool');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (168, 'Blood in sputum');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (147, 'Blood in stool');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (122, 'Blood in urine');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (114, 'Blurred vision');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (193, 'Body pain');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (160, 'Brittle nails');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (191, 'Burning sensation in feet');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (107, 'Burning urination');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (5, 'Chest Pain');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (121, 'Chest tightness');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (171, 'Chills');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (137, 'Cold intolerance');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (134, 'Constipation');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (194, 'convulsion');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (1, 'Cough');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (186, 'Cracked lips');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (136, 'Dark urine');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (8, 'Diarrhea');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (174, 'Difficulty breathing at night');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (154, 'Difficulty sleeping');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (127, 'Difficulty swallowing');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (146, 'Difficulty urinating');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (184, 'Disorientation');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (102, 'Dizziness');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (165, 'Double vision');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (183, 'Drooling');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (163, 'Drooping eyelid');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (135, 'Dry mouth');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (153, 'Dry skin');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (123, 'Ear discharge');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (176, 'Excessive gas');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (173, 'Excessive hunger');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (132, 'Excessive sweating');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (182, 'Excessive tearing');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (125, 'Excessive thirst');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (161, 'Eye pain');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (142, 'Fainting');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (10, 'Fatigue');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (169, 'Feeling cold');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (2, 'Fever');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (158, 'Frequent infections');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (141, 'Frequent nosebleeds');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (110, 'Frequent urination');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (187, 'Frequent yawning');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (138, 'Hair loss');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (156, 'Hallucinations');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (3, 'Headache');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (143, 'Hearing loss');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (175, 'Hiccups');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (144, 'Hoarseness');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (150, 'Hot flashes');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (131, 'Irregular heartbeat');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (120, 'Itchy skin');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (105, 'Joint pain');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (172, 'Leg cramps');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (162, 'Light sensitivity');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (111, 'Loss of appetite');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (155, 'Loss of balance');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (188, 'Loss of smell');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (189, 'Loss of taste');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (126, 'Lump in breast');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (140, 'Memory loss');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (129, 'Mood swings');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (106, 'Muscle ache');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (190, 'Muscle twitching');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (164, 'Muscle weakness');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (104, 'Nausea');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (124, 'Neck stiffness');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (115, 'Night sweats');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (116, 'Numbness in limbs');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (167, 'Painful defecation');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (130, 'Painful intercourse');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (119, 'Painful periods');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (145, 'Painful swallowing');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (113, 'Palpitations');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (117, 'Persistent cough');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (178, 'Persistent vomiting');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (152, 'Rapid breathing');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (170, 'Rapid weight gain');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (128, 'Seizures');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (185, 'Shaky hands');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (6, 'Shortness of Breath');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (108, 'Skin rash');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (151, 'Slow heartbeat');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (157, 'Slurred speech');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (103, 'Sore throat');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (181, 'Swelling around eyes');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (148, 'Swelling in abdomen');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (166, 'Swelling in hands');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (109, 'Swelling in leg');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (139, 'Swollen lymph nodes');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (159, 'Tingling sensation');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (149, 'Tremors');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (7, 'Vomiting');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (192, 'vomiting blood');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (180, 'Weak pulse');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (112, 'Weight loss');
INSERT INTO
  `suggested_complaints` (`id`, `complaint`)
VALUES
  (118, 'Yellow eyes');

# ------------------------------------------------------------
# DATA DUMP FOR TABLE: suggested_diagnosis
# ------------------------------------------------------------

INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (1, 1, 'Tuberculosis', NULL);
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (2, 1, 'Bronchitis', NULL);
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (3, 1, 'COVID-19', NULL);
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (4, 2, 'Malaria', NULL);
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (5, 2, 'UTI', NULL);
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (6, 2, 'Sepsis', NULL);
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (7, 3, 'Migraine', NULL);
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (8, 3, 'Hypertension', NULL);
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (9, 3, 'Tension Headache', NULL);
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (10, 4, 'Peptic Ulcer Disease', NULL);
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (11, 4, 'Appendicitis', NULL);
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (12, 4, 'Gastritis', NULL);
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (13, 5, 'Angina', NULL);
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (14, 5, 'Myocardial Infarction', NULL);
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (15, 5, 'GERD', NULL);
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (16, 6, 'Asthma', NULL);
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (17, 6, 'COPD', NULL);
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (18, 6, 'Pneumonia', NULL);
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (19, 7, 'Hepatitis', NULL);
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (20, 7, 'Food Poisoning', NULL);
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (21, 7, 'Gastroenteritis', NULL);
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (22, 8, 'Dysentery', NULL);
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (23, 8, 'Cholera', NULL);
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (24, 8, 'Giardiasis', NULL);
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (25, 9, 'Lumbar Strain', NULL);
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (26, 9, 'Sciatica', NULL);
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (27, 9, 'Kidney Stones', NULL);
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (28, 10, 'Hypothyroidism', NULL);
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (29, 10, 'Anemia', NULL);
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (30, 10, 'Diabetes', NULL);
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (81, NULL, 'Essential Hypertension', 'I10');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (82, NULL, 'Type 2 Diabetes Mellitus', 'E11');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (83, NULL, 'Asthma', 'J45');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (
    84,
    NULL,
    'Chronic Obstructive Pulmonary Disease (COPD)',
    'J44'
  );
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (85, NULL, 'Pneumonia', 'J18');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (86, NULL, 'Tuberculosis', 'A16');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (87, NULL, 'Malaria', 'B50');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (88, NULL, 'HIV Disease', 'B20');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (89, NULL, 'Peptic Ulcer Disease', 'K27');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (90, NULL, 'Gastroenteritis', 'A09');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (91, NULL, 'Acute Appendicitis', 'K35');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (92, NULL, 'Cholelithiasis (Gallstones)', 'K80');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (93, NULL, 'Chronic Kidney Disease', 'N18');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (94, NULL, 'Urinary Tract Infection', 'N39.0');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (95, NULL, 'Benign Prostatic Hyperplasia', 'N40');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (96, NULL, 'Iron Deficiency Anemia', 'D50');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (97, NULL, 'Sickle Cell Disease', 'D57');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (98, NULL, 'Migraine', 'G43');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (99, NULL, 'Epilepsy', 'G40');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (100, NULL, 'Cerebral Infarction (Stroke)', 'I63');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (101, NULL, 'Heart Failure', 'I50');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (102, NULL, 'Ischemic Heart Disease', 'I25');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (103, NULL, 'Rheumatic Heart Disease', 'I09');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (104, NULL, 'Otitis Media', 'H66');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (105, NULL, 'Tonsillitis', 'J03');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (106, NULL, 'Pharyngitis', 'J02');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (107, NULL, 'Acute Bronchitis', 'J20');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (108, NULL, 'COVID-19 Infection', 'U07.1');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (109, NULL, 'Hepatitis B', 'B18.1');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (110, NULL, 'Hepatitis C', 'B18.2');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (111, NULL, 'Typhoid Fever', 'A01.0');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (112, NULL, 'Measles', 'B05');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (113, NULL, 'Varicella (Chickenpox)', 'B01');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (114, NULL, 'Hypertensive Heart Disease', 'I11');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (115, NULL, 'Gout', 'M10');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (116, NULL, 'Osteoarthritis', 'M15');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (117, NULL, 'Rheumatoid Arthritis', 'M06');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (118, NULL, 'Low Back Pain', 'M54');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (119, NULL, 'Fracture of Femur', 'S72');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (120, NULL, 'Fracture of Radius/Ulna', 'S52');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (121, NULL, 'Burn Injury', 'T30');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (122, NULL, 'Obesity', 'E66');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (123, NULL, 'Depressive Disorder', 'F32');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (124, NULL, 'Anxiety Disorder', 'F41');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (125, NULL, 'Schizophrenia', 'F20');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (126, NULL, 'Cataract', 'H25');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (127, NULL, 'Glaucoma', 'H40');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (128, NULL, 'Conjunctivitis', 'H10');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (129, NULL, 'Dermatitis (Eczema)', 'L30');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (130, NULL, 'Scabies', 'B86');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (131, NULL, 'Gastritis', 'K29');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (132, NULL, 'Liver Cirrhosis', 'K74');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (133, NULL, 'Cholecystitis', 'K81');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (
    134,
    NULL,
    'Gastrointestinal Hemorrhage, unspecified',
    'K92.2'
  );
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (135, NULL, 'Hypothyroidism', 'E03');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (
    136,
    NULL,
    'Hyperthyroidism (Thyrotoxicosis)',
    'E05'
  );
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (137, NULL, 'Type 1 Diabetes Mellitus', 'E10');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (138, NULL, 'Hyperlipidemia', 'E78');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (139, NULL, 'Infectious Diarrhea', 'A09.0');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (140, NULL, 'Amebiasis', 'A06');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (141, NULL, 'Giardiasis', 'A07');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (142, NULL, 'Congenital Syphilis', 'A50');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (143, NULL, 'Secondary Syphilis', 'A51');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (144, NULL, 'Gonococcal Infection', 'A54');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (145, NULL, 'Chlamydial Infection', 'A56');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (
    146,
    NULL,
    'Acute Viral Hepatitis, Unspecified',
    'B17.9'
  );
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (147, NULL, 'Unspecified Viral Hepatitis', 'B19.9');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (148, NULL, 'Candidiasis', 'B37');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (149, NULL, 'Dermatophytosis (Ringworm)', 'B35');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (150, NULL, 'Common Cold', 'J00');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (151, NULL, 'Influenza (unspecified virus)', 'J11');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (152, NULL, 'Allergic Rhinitis', 'J30');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (153, NULL, 'Chronic Rhinitis', 'J31');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (154, NULL, 'Chronic Sinusitis', 'J32');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (155, NULL, 'Bronchiectasis', 'J47');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (156, NULL, 'Angina Pectoris', 'I20');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (
    157,
    NULL,
    'Acute Myocardial Infarction, Unspecified',
    'I21.9'
  );
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (158, NULL, 'Atherosclerosis', 'I70');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (
    159,
    NULL,
    'Arterial Embolism and Thrombosis',
    'I74'
  );
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (160, NULL, 'Hypotension', 'I95');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (161, NULL, 'Acute Pyelonephritis', 'N10');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (162, NULL, 'Kidney Stone', 'N20');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (163, NULL, 'Vaginitis and Vulvovaginitis', 'N76');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (164, NULL, 'Preeclampsia', 'O14');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (165, NULL, 'Postpartum Hemorrhage', 'O72');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (166, NULL, 'Normal Delivery', 'O80');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (167, NULL, 'Ectopic Pregnancy', 'O00');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (
    168,
    NULL,
    'Spontaneous Abortion (Miscarriage)',
    'O03'
  );
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (169, NULL, 'Prematurity', 'P07');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (170, NULL, 'Respiratory Distress of Newborn', 'P22');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (171, NULL, 'Fever of Unknown Origin', 'R50');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (172, NULL, 'Headache', 'R51');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (173, NULL, 'Abdominal Pain', 'R10');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (174, NULL, 'Chest Pain', 'R07');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (175, NULL, 'Urticaria (Hives)', 'L50');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (176, NULL, 'Atopic Dermatitis', 'L20');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (177, NULL, 'Seborrheic Dermatitis', 'L21');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (178, NULL, 'Postprocedural Complications', 'T81');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (179, NULL, 'Intracranial Injury', 'S06');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (180, NULL, 'Colon Cancer', 'C18');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (181, NULL, 'Breast Cancer', 'C50');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (182, NULL, 'Prostate Cancer', 'C61');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (183, NULL, 'Lung Cancer', 'C34');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (184, NULL, 'Cervical Cancer', 'C53');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (185, NULL, 'Stomach Cancer', 'C16');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (186, NULL, 'Liver Cancer', 'C22');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (187, NULL, 'Kidney Cancer', 'C64');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (188, NULL, 'Bladder Cancer', 'C67');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (189, NULL, 'Lymphoid Leukemia', 'C91');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (190, NULL, 'Myeloid Leukemia', 'C92');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (191, NULL, 'Alcohol Dependence', 'F10');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (192, NULL, 'Opioid Dependence', 'F11');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (193, NULL, 'Nicotine Dependence', 'F17');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (194, NULL, 'Bipolar Disorder', 'F31');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (195, NULL, 'Recurrent Depression', 'F33');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (
    196,
    NULL,
    'Post-Traumatic Stress Disorder (PTSD)',
    'F43.1'
  );
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (197, NULL, 'Eating Disorder', 'F50');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (198, NULL, 'Mild Intellectual Disability', 'F70');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (199, NULL, 'Alzheimer\'s Disease', 'G30');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (200, NULL, 'Essential Tremor', 'G25');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (201, NULL, 'Hereditary Neuropathy', 'G60');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (202, NULL, 'Guillain-Barr? Syndrome', 'G61');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (203, NULL, 'Blindness', 'H54');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (204, NULL, 'Hearing Loss', 'H91');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (205, NULL, 'Aortic Aneurysm', 'I71');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (206, NULL, 'Peripheral Vascular Disease', 'I73.9');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (207, NULL, 'Esophageal Varices', 'I85');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (208, NULL, 'Hypotension', 'I95.9');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (209, NULL, 'Interstitial Lung Disease', 'J84');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (210, NULL, 'Lung Abscess', 'J85');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (211, NULL, 'Pleural Effusion', 'J90');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (212, NULL, 'Noninfective Gastroenteritis', 'K52');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (213, NULL, 'Diverticular Disease', 'K57');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (214, NULL, 'Liver Disease (Other)', 'K76');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (215, NULL, 'Acute Pancreatitis', 'K85');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (216, NULL, 'Chronic Pancreatic Disease', 'K86');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (
    217,
    NULL,
    'Rheumatoid Arthritis with Factor',
    'M05'
  );
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (218, NULL, 'Systemic Lupus Erythematosus', 'M32');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (219, NULL, 'Myalgia', 'M79.1');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (220, NULL, 'Osteoporosis with Fracture', 'M80');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (221, NULL, 'Osteoporosis without Fracture', 'M81');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (222, NULL, 'Acute Kidney Failure', 'N17');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (223, NULL, 'Renal Tubular Disorders', 'N25');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (224, NULL, 'Benign Mammary Dysplasia', 'N60');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (225, NULL, 'Menstrual Disorder', 'N92');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (226, NULL, 'Premature Rupture of Membranes', 'O42');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (227, NULL, 'Neonatal Jaundice', 'P59');
INSERT INTO
  `suggested_diagnosis` (
    `id`,
    `complaint_id`,
    `diagnosis_name`,
    `icd10_code`
  )
VALUES
  (228, NULL, 'spondylosis', NULL);

# ------------------------------------------------------------
# DATA DUMP FOR TABLE: suggested_tests
# ------------------------------------------------------------

INSERT INTO
  `suggested_tests` (`id`, `complaint_id`, `test_name`)
VALUES
  (1, 1, 'Chest X-ray');
INSERT INTO
  `suggested_tests` (`id`, `complaint_id`, `test_name`)
VALUES
  (2, 1, 'Sputum AFB');
INSERT INTO
  `suggested_tests` (`id`, `complaint_id`, `test_name`)
VALUES
  (3, 1, 'COVID-19 Test');
INSERT INTO
  `suggested_tests` (`id`, `complaint_id`, `test_name`)
VALUES
  (4, 2, 'Malaria Test');
INSERT INTO
  `suggested_tests` (`id`, `complaint_id`, `test_name`)
VALUES
  (5, 2, 'Full Blood Count');
INSERT INTO
  `suggested_tests` (`id`, `complaint_id`, `test_name`)
VALUES
  (6, 2, 'Urinalysis');
INSERT INTO
  `suggested_tests` (`id`, `complaint_id`, `test_name`)
VALUES
  (7, 3, 'Brain CT Scan');
INSERT INTO
  `suggested_tests` (`id`, `complaint_id`, `test_name`)
VALUES
  (8, 3, 'Blood Pressure');
INSERT INTO
  `suggested_tests` (`id`, `complaint_id`, `test_name`)
VALUES
  (9, 3, 'Eye Exam');
INSERT INTO
  `suggested_tests` (`id`, `complaint_id`, `test_name`)
VALUES
  (10, 4, 'Abdominal Ultrasound');
INSERT INTO
  `suggested_tests` (`id`, `complaint_id`, `test_name`)
VALUES
  (11, 4, 'Urine Test');
INSERT INTO
  `suggested_tests` (`id`, `complaint_id`, `test_name`)
VALUES
  (12, 4, 'Widal Test');
INSERT INTO
  `suggested_tests` (`id`, `complaint_id`, `test_name`)
VALUES
  (13, 5, 'ECG');
INSERT INTO
  `suggested_tests` (`id`, `complaint_id`, `test_name`)
VALUES
  (14, 5, 'Troponin Test');
INSERT INTO
  `suggested_tests` (`id`, `complaint_id`, `test_name`)
VALUES
  (15, 5, 'Chest X-ray');
INSERT INTO
  `suggested_tests` (`id`, `complaint_id`, `test_name`)
VALUES
  (16, 6, 'Pulse Oximetry');
INSERT INTO
  `suggested_tests` (`id`, `complaint_id`, `test_name`)
VALUES
  (17, 6, 'Chest X-ray');
INSERT INTO
  `suggested_tests` (`id`, `complaint_id`, `test_name`)
VALUES
  (18, 6, 'ABG');
INSERT INTO
  `suggested_tests` (`id`, `complaint_id`, `test_name`)
VALUES
  (19, 7, 'Electrolyte Panel');
INSERT INTO
  `suggested_tests` (`id`, `complaint_id`, `test_name`)
VALUES
  (20, 7, 'Liver Function Test');
INSERT INTO
  `suggested_tests` (`id`, `complaint_id`, `test_name`)
VALUES
  (21, 8, 'Stool MCS');
INSERT INTO
  `suggested_tests` (`id`, `complaint_id`, `test_name`)
VALUES
  (22, 8, 'Electrolyte Panel');
INSERT INTO
  `suggested_tests` (`id`, `complaint_id`, `test_name`)
VALUES
  (23, 8, 'Malaria Test');
INSERT INTO
  `suggested_tests` (`id`, `complaint_id`, `test_name`)
VALUES
  (24, 9, 'Spine X-ray');
INSERT INTO
  `suggested_tests` (`id`, `complaint_id`, `test_name`)
VALUES
  (25, 9, 'MRI');
INSERT INTO
  `suggested_tests` (`id`, `complaint_id`, `test_name`)
VALUES
  (26, 9, 'Urinalysis');
INSERT INTO
  `suggested_tests` (`id`, `complaint_id`, `test_name`)
VALUES
  (27, 10, 'Thyroid Function Test');
INSERT INTO
  `suggested_tests` (`id`, `complaint_id`, `test_name`)
VALUES
  (28, 10, 'FBC');
INSERT INTO
  `suggested_tests` (`id`, `complaint_id`, `test_name`)
VALUES
  (29, 10, 'Fasting Blood Sugar');

# ------------------------------------------------------------
# DATA DUMP FOR TABLE: suggestion_synonyms
# ------------------------------------------------------------


# ------------------------------------------------------------
# DATA DUMP FOR TABLE: suggestion_usage
# ------------------------------------------------------------


# ------------------------------------------------------------
# DATA DUMP FOR TABLE: sync_log
# ------------------------------------------------------------


# ------------------------------------------------------------
# DATA DUMP FOR TABLE: tx
# ------------------------------------------------------------

INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    55,
    '17/2507/GOH',
    'V1NLZkdoMGVjVCtEdjRKNmZaUWQyUT09fGkwNVlIN3I5ZGYzWnFSZ21hclJvNlFGYjJFL1lzUGRXUWc3YldGNk1neU09',
    'Z3d5QzgxUVdZMitjMzMxRk9NeTV0dz09fFR2dEc0UEdMODU5dVFTSTFNRzQxRWc9PQ==',
    'eUs2ZDdTMCtKZ1VraC9UWUJNNEJYdz09fGEzYmo4cmRkUEZDVC8zOXB4ekxMTUE9PQ==',
    'SWZhSlRFSm9uOXZzTXRKaWpMU1VDUT09fHFpSHFlY2lYVFhhZlgzcE5FRWQ4UXc9PQ==',
    'V3dMZlo4WHBzVUFQQmJxdEsrakVuUT09fFhwMzczTmJMWDhNMXNOdHJNSkdZZUE9PQ==',
    'TmZ2NVUxVnJ5VTMrMWJQMnc0OEw4Zz09fGFPUUFVNjY5eWF0alpGcmhweDBZSnc9PQ==',
    '[{\"drug_id\":\"R2VWMERBZ3RDMGJiZlNKdktZdWRjdz09fFVucWp1dUhqUXB1bnFtaTVNRFBIV1E9PQ==\",\"drug_name\":\"Nzg5bkdCVW5weHhjZDNtS2tZUk1Udz09fENRQjhWdjVOTFFvUFhTcEZLZDhYVnc9PQ==\",\"dosage\":\"akxQTHBoVlNBZTJWU3djWWZhQTJ5dz09fEhnL1haZkVGc2VLaUhNOGpCR2JscVE9PQ==\",\"quantity\":0,\"cp_pu\":0,\"sp_pu\":0},{\"drug_id\":\"N/A\",\"drug_name\":\"VE9QYWZkQ3B6SXplNmFUcklQY01idz09fE5kODgyaEcvREpZTkJYVVVYdEFFcVE9PQ==\",\"dosage\":\"N0JpVGUrYmJOcFk3UmJVSGJleG1VZz09fGVHMy8zQ2s1UnhuTExKSlZzZHF0NVE9PQ==\",\"quantity\":0,\"cp_pu\":null,\"sp_pu\":null}]',
    '2025-07-30 15:31:06',
    'Out-Patient',
    'SUxGYnZGckV2VTJsdUdYWTc5SzRwQT09fFlkbzJZTmRvTXQ1b3FqcVUyZ2diVFE9PQ==',
    'Doctor Abiodun Salako',
    6500.00,
    5000.00,
    1500.00,
    'patient',
    'g5pvz.1753885866833',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    56,
    '20/2508/GOH',
    'ZzBvZTlFSkM0QWYxSmxkdzNzTEpIQT09fHk1VE5KQngrd0R6cmEzeXJsSkZEUUN0RVpsaDJMSktyUTBuNStwN2VRU2s9',
    'azBQZFc5Z2FTZS9laWlyTnhHZm5UZz09fFp3MEZoVTZFaXVGZmEyTSs2QmR5MXc9PQ==',
    'RnhRNmdJZUc0R0xvSWw4UEt4ODZXQT09fG1vWHlDUGFkN1lwa083YXdYTmI1ZUE9PQ==',
    'Yldrcit2ZWE3K1BPT0RVMVFpUlJaUT09fFZ5WGNxbDZERi9wMXpySFdycVdxeEp3Ymd5WVlFNGVnREg4MzhXdlNtZEk9',
    'K0dZR3VMaDJFZUdoRDExc3BMbzVMUT09fDhpSHl1WHRwSENrSFB3SnRTeFFmQlE9PQ==',
    'dDYwYm1kUDBPNTMyZVBHMmZWVndJdz09fEZSelNjRG1HZTNuSFlMakdhL1JwNFE9PQ==',
    '[{\"drug_id\":\"K0RJV1J6NFo2bjRzODhyVUt0d1Jvdz09fHlOQ1JBZUtZM3dITzB2cXJ2d25jK1E9PQ==\",\"drug_name\":\"V3NYTkptWUJVWkNiR0NPV1lTREZ1QT09fFp1Vmc1cUZMZENhTTEzTzVkdG5kbHc9PQ==\",\"dosage\":\"bXZGK2t1Umk1UU40bVNuVW9GSU5TUT09fDhiSU50NEpXOVp1cHZYcjFReVNUSnc9PQ==\",\"quantity\":9,\"cp_pu\":0,\"sp_pu\":0},{\"drug_id\":\"VDBwT3UzdDJYYk9oV01kWFFJYnAxZz09fCtDZ3piMjVaM0tQNm04S2pObkNyOGc9PQ==\",\"drug_name\":\"UG9sQ1FPMXJWN0JpZlhSbDJjOW9GUT09fDI3WG1LTDhsM2FEKzVONjlOMTU2eHc9PQ==\",\"dosage\":\"bUdJbURSc0lVN29KQVdqRTlLV1NxZz09fFB5U3hzYksrdDVQNE9TZkFkOEpHZXc9PQ==\",\"quantity\":18,\"cp_pu\":0,\"sp_pu\":0}]',
    '2025-08-03 18:42:11',
    'Out-Patient',
    'dnFSTGVkdVlWTzdvbUJiWUJ2aU1DUT09fEN4RUZnZGF2UXR5VVFoUE9BL0pSNlE9PQ==',
    'Doctor Abiodun Salako',
    375.30,
    0.00,
    375.30,
    'Engr Awodele Family',
    '5c2nm.1754242931623',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    57,
    '1/2504/GOH',
    'VDFVU2owMDI4enVtYTdrMlpLZlI5Zz09fHJiUUhZeHlVN3hEcU9YZFpRbjZtNVNXV0lVRHNsRnJUOHN4RkprQVJEcDQzdWlNa0d5Mmw5RDBoaE5ra1ROMFpWWDRzcTBrS0tuWGMxY205S0RTVDNzWTFoTmxLN0JwV2NHUzBBc1VQZDMvUi94eUtMMG53MWJlcE54THdIaXNXN2djRzRLVGl0NGx5SFUvckZKRm5oNGh5OStRRHVJSk5wb3F4MldFb1F4MytqREJ5cDNlSUJzUXdMbUVlL1U2V25hMDhoVDh3NUN1N1FQODBadEhNUlE9PQ==',
    'WmhiWXo3MFZjUkpPZmVRSVEybnZFQT09fGxVMysxN3Y3djdxOUJFRXFqR2kwTHc9PQ==',
    'YlRkZnJPZzdXSzEvM2U1OEk3VjhPZz09fHZMTndwL3NzcGY5Z2tRcUM2VnhJWmc9PQ==',
    'WWxsNTBMSEJwR05XV2hWQ0ZvaUI4UT09fFVuYjVGK1NoVTg4Z3pmRzZ6OE1IaHc9PQ==',
    'd2VRRU9keS85SDlpd09HUGxmRmFkdz09fFlDNjhKZm5WSkJGK0liSlJickd3ZGc9PQ==',
    'ZzZTc2hWWEdQMDI1MFdQd2xhMXlPQT09fEE2OU4wSnIwY211eHB2MnAzWWF0L2c9PQ==',
    '[{\"drug_id\":\"MWcwL3AvMnU5NlZVcVQzTXNlL09Fdz09fG9yeFVheUVjZ045WmtKU0FMck5xckE9PQ==\",\"drug_name\":\"dW1HTmFXVXJtU0o0MFZoQzIxZE5sQT09fEpsVnI4c1lsT3lxM2c5UklUY1NGMnc9PQ==\",\"dosage\":\"VnJ3ZUlGUEhyMHdsa2hSczJkMHh3QT09fCs4NHFNSUFhTnVwNGRKQ0R0dzRFMEhZUmFxYW1KZitReHZuMUF0UDJCZjA9\",\"quantity\":18,\"cp_pu\":0,\"sp_pu\":0},{\"drug_id\":\"NFoxWFJiZ1Btd0F6U3NuNml1RGlhUT09fEt6MWlGaDAwQlFkTGlWMFdIemN0S1E9PQ==\",\"drug_name\":\"VUVUSnFiRFFUaTdKUzlkeVhKY0M5dz09fGVPb1lmZWtjWCtSK0FFOUhpSHJYenc9PQ==\",\"dosage\":\"UUdWN0l3ZkhLSzVZa1MvR0o4VnZKQT09fEJTVDQ2UWE2cDdISFRDMm5GM2YwcWNNRGJEVFM0bnJXWUQ4emNYVUtSSW89\",\"quantity\":9,\"cp_pu\":0,\"sp_pu\":0}]',
    '2025-08-08 10:07:27',
    'Out-Patient',
    'cDlBYVhLZThzNkY0OFVjYVNTL2FNZz09fEhhUWhEVGlNMmJ0ZFZnZmJVaFhaUHc9PQ==',
    'Doctor Abiodun Salako',
    0.00,
    0.00,
    1000.00,
    'N/A',
    '9sn7f.1754644047420',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    58,
    '12/2507/GOH',
    'eXN5R1NiVGtFNjhxVmR2MTh2OC9Kdz09fGJEN0xlTUI2dXhzUFd4d0JTUC9GQ0c2N2Q4WFVWcTkrM0RkWDZWTmFDWWVHWU9TVytQa0M0TUdFSjV3aWxGV01pTWwxTXdBTjNsUWtYS1ZIaTdiMDhiQVJPN29qaXVOTmdURnBPTkpOOVpNcFFzbmRxWC9ZQTRZeUhWS2d0K3F5',
    'LzhESklzd0NGSFh0OWxkV1Rkcy9nUT09fHJZYVNQUnkrU24yemZvdFlMNVQ2dmc9PQ==',
    'YmRrRkdJTEM3TEhiWkNpU1NMM2JCQT09fENIOFhTZFZoS0I4T3dxNDQxaHpKOWJxQU1rMFdBSWw4bm5PUVBxTFdHeTV2TGZLckRWZVQ0Ni9iQmxxQzJsMVY=',
    'bkV1bUN6WGtmMjJ1YldKS2tVYUVBZz09fC9rMjd2aVMrTVVUZitnTDdQbFBJcGc9PQ==',
    'eCszcXA4bENJeDFVM2JEb210T1hFZz09fFdKR3FzeFgvb2pwOUdCY0xWZkt1ejRCYmJPaktDRTFvUWkrZVlVVUoweGM9',
    'dWs5K2RYdFZzWUpkNFQ3MnJYMXdWUT09fGRJbkFVeklwbGZKS3pGeURWVFFmaUE9PQ==',
    '[{\"drug_id\":\"eTJKTXJOd1lzRkV2MDhOUEpBbWpjQT09fE1MUUhDcUt5M1MwcGdnK2dlcTc5MFE9PQ==\",\"drug_name\":\"V1A0ZGtRaVpFV3UxM0N0R2ZJTG5udz09fFlKaXg2NDdGQ0t1cXZyQ00rVStuS2drL28yaXpYY0RrR3NIeDlYbHNQdkk9\",\"dosage\":\"Q2JFUmJydGhvMGkzbno1Q2RvNHZOZz09fDFVUVJVYS8rSVpwN2E4TGlYdGRPREJVUXFkd3NZZFh1aGpQajMyaDNQeU09\",\"quantity\":1,\"cp_pu\":0,\"sp_pu\":0},{\"drug_id\":\"UkxMQkpnM2ZtaVNqcEExK1AzT09KQT09fHBhYm5OeVpHTlVVbWJxcVhTS3VPeWc9PQ==\",\"drug_name\":\"ZE5zdlo1REZBMTdqaDVpQkhtM1Ntdz09fEk1VlZQdFNHL1FnZk45UG1FODlmS0E9PQ==\",\"dosage\":\"NVhQV0QvU3NheVpYM0lORmNhdTk0UT09fGZEYjhTdjBycXhITFhZd1B2OXhmSVE9PQ==\",\"quantity\":9,\"cp_pu\":0,\"sp_pu\":0},{\"drug_id\":\"SkM0TWJMcnZSYmw2elBNRmdTTHVIZz09fEtMU3Ard3VRaUFmTWxFRVhiUjRiYkE9PQ==\",\"drug_name\":\"azcrVE9kQUhEZEgzOUYydUYxWElOdz09fDd0bURaZk1ERTQydjBzampNZUFxenc9PQ==\",\"dosage\":\"OERwMDV6dGlTTTZWcGJ5cTFPVVFQQT09fE5rZFIzVFhpVkhaWHJEQUZJTDJmdVE9PQ==\",\"quantity\":18,\"cp_pu\":0,\"sp_pu\":0},{\"drug_id\":\"ZWY0ZGdJWGR6alE1TEhNNWNSWUNrQT09fE96TFkzUlZvbFFvWWZzZUFFanVhTmc9PQ==\",\"drug_name\":\"NGNST1BGaUU4YzVZeENWbWtzT1haUT09fEwzbGRoOUxsb3FVeWZ6bnUyK2tTN1lkbC9haEgrSWd1c0lvTlZzNTFLNEU9\",\"dosage\":\"TkE5d1gzWjdKWTI0YmwyK29jOEVKdz09fE1hTzBUaFR5bTlWVWh2RHBzS045OGJvNE1UUVc3Qml1VDdkVUt2MTJvNHM9\",\"quantity\":0,\"cp_pu\":0,\"sp_pu\":0}]',
    '2025-08-22 09:51:14',
    'Out-Patient',
    'R0JuYVR3cWI1d3pad1NFYkZ1QXFDZz09fE5ncVZuckJDdmhkdTdyN0Z6SUliZ3c9PQ==',
    'Doctor Abiodun Salako',
    25000.00,
    25000.00,
    0.00,
    'Loyola Farms',
    '0sbrl.1755852674905',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    59,
    '17/2507/GOH',
    'RUw1alNHd0tzdGFPWHdBdkh5bGZhUT09fGpVSW8zUysrdmhYT0V2d0REbW5HQUlnbDJIRWo3WFZQWXNrYjFYQTVja3M9',
    'VThVWXpkekV6MVhUd1Bmc0hudlR1QT09fGVJSlVJZHloY0EyeXJ2amZ2dHlObFdDVFVJL3ZYVzExOG5aQkRKQWp0WS9WZXZCYmEyQTFjWTJINDBWaXR4TitnRUlyTzl1eTIwbVRGT3pRZUIvS2FaVWZQT1doS0k5dEJsTE8reXZ6N1BRQnpFanNYTXZJbFc0N2J0dmRCU3gx',
    'cERtOG9lenkxaFEvNEw1dmJaSWExZz09fGwwZGhEeHZTZkVKTlp2aTB5eXBaRmc9PQ==',
    'cnZMYkR5aG9CbVI4d2ZPanFyVHA3Zz09fHZCazRSMSt0dkxvYkZZWmpYSytwQk0rR1ZJek5CazBPdjFsODdFUXRnSS9mOVB1MVJuUG5VaWRKQ3dZazJsQ3RrSEQ1WmxFdVNPWnpjWktnamN2b3Y1WWMzWktja0huUVlENVk2QjlEUWhId2tZQi9UQVR5K0tOODZvWW03Vlhr',
    'U1JGcVBuN2VGalFHZGtLT1RMQnV5UT09fHNNb0FkVkwxTU5LZ1NGOEczaHNKaWc9PQ==',
    'UERveVBrV0k0RmswRXFQTms1cWRDUT09fGEzZFhoYVFlL3hNdjJobnJNdGM4ZlE9PQ==',
    '[]',
    '2025-08-23 11:37:37',
    'Out-Patient',
    'N0tNQnBteTByQ045MlBSVURsZ2tSQT09fE9ydFlYZ0dhcmMzTG5FVFQrV3g1Mnc9PQ==',
    'Doctor Abiodun Salako',
    0.00,
    0.00,
    -3500.00,
    'N/A',
    'xv9id.1755945457500',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    60,
    '11/2507/GOH',
    'cnBFUGh3V2IwOTRreEoyYWZUYU9GZz09fHFRTnVVWW5sVHNoRVdPa2xnbDFNRmM2eTVrYU5TWTBPUkYxVjExa2QwdlRzaCtqdW04UG92M1NHUDI5cWo3eVQ4aTlPYWFVRU9SZzl4MGJJL2NtODBPOFg5QnRwNjBnMTFHOXFoUk1zZFZzPQ==',
    'TDFKdWphTVVKdEd5MVo4TEozNWNvQT09fEhRcHlNNXlqdkNmcmgzalRrSnYzSlBoSTFTTld1UW1mY2NNakwzTGdsbStKWEJJQ2NxYjUzMHJaSU9obVpObXI4c0k2TTVQZTM2bjVESmRQa0xMZ1FBPT0=',
    'SjIrb1BKekltenVwaURNeVcvRkdnUT09fER2dXp6MDI5bzltYlZNSUR4S2hKRUE9PQ==',
    'SXJIVmxNNGV2T3kybDVOMTQ1MTZmUT09fHZUSTNMK2xxVm8ybFhlbGgrNXU3UE5CNDVrcWdpVGt6UjVBQWozQkFIa1NEbUExUmVFZ21Vc09jTGdVTFBsOHcrZXVpYzlEeHhRSlAzYWFQSkNXTEdnPT0=',
    'dU14RUIvVDZCdDVSNmhXdVpzS1BjUT09fElBMUt3endtVnM4MGorSjFTOXpsSEE9PQ==',
    'L2hTek9CTXNmOUFtYkpDQWxXS1NaUT09fFN0ZHltVlRzQWNTK3VRQW1zbFVNOXc9PQ==',
    '[{\"drug_id\":\"TGdrRVNwZ1cwVWdUbHdkaHdDMklrUT09fGtlb0FXRk5KMTlMUnh4TmtCRXZKcmc9PQ==\",\"drug_name\":\"R1p2aDNvb0lSaFhUMTRaSFVpZUVVdz09fFpUOVZkZm5JdXVKREJ5S3ZpRDk5ZmdnNlRScW5MK2NPNzhja2NvWWNxQjQ9\",\"dosage\":\"L2JjNTdNa01FRUtnYlA5bG8vdEVoUT09fG5NY3dqZVR4dk1PZlo2M05ZR3pjU3c9PQ==\",\"quantity\":4,\"cp_pu\":0,\"sp_pu\":0},{\"drug_id\":\"VU9yblUwVW9Wb2h2U1hZOXJwRVkzUT09fEJzQitXSXg0blJYVDNZOC9Hc2NvTlE9PQ==\",\"drug_name\":\"OUhaOERrYVFyeFJENHkxblpkeWlvQT09fERUQlBLdEdZM3ROYlpWV1J5d2FyNTdIYzl1QTZ1MzVIZElaMkNRZGErMWM9\",\"dosage\":\"djBLNE5IMWExSVgzSXFxNVNVanhaQT09fHZhQkZyNlVsYys5a042b25UR2FNN2c9PQ==\",\"quantity\":1,\"cp_pu\":0,\"sp_pu\":0}]',
    '2025-08-23 12:04:26',
    'Out-Patient',
    'aGU0a1NhL0gzNlZhRjlHemxkTHFmZz09fHh3em9BNm5ydnQxQjRjSXVndDNIbWc9PQ==',
    'Doctor Abiodun Salako',
    0.00,
    0.00,
    -500.00,
    'N/A',
    'tlwf7.1755947066220',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    61,
    '19/2507/GOH',
    'eWp5c1ltUVQrdVZmVGoxbjdHUUs1dz09fHR6SDR5aW41Z205OHBpcVMrTngrM3ZVSlJzUkZaVVBXblJ1eFZlNiswTUt1YW95WEZpbUloUVZZS3NCOU1zUjR3d0J3Mk5SWDJnbnl4NCt1dFc1V0I2ZkdodGJ0ZUptaXZYcytjeFgyS1lZPQ==',
    'YWJhL1krUzduak91eldjektjNVIzdz09fFJXMUdpOHJIb0lPdmlKVTIyMEpUNnpJUDNUbUhvV0g1dzNaM2UrL2pPOS84a3hKNHg0TEVvYXRtYzFJaWtWRlpFNDBQNXN5azJuOFJ4UmxMWHl1eU1VUyt5Wlh5aFBXTHVGYSsrbDYraDhRPQ==',
    'bjBvbHI4aGdSM2pZR3dCQldNYkNYQT09fHMvaUh2WDViTVp6d0FyRzR2M2lMTmc9PQ==',
    'U0NRQXJsU2V5MGRvZXV2WkJMWEd4QT09fHozOEZRN0ZWNzRlVUNRWmE4bi84MmIvUHFNUDlVMkVtWHA0VUxMVEwzSFBTdm1yaWNmMWEwWllDN1ptcFdNMHo1S1JCSUhTQkhPK3grS21LdkxCM0QzdjhrVUM3VHB5bG9uK2N4S0pJNkM2ZFYvS1pzZ0ZFekxrbkFoc0xDbDNZSmk1SzV0OWVZL2Y1VnZkZ3JCamhZU1NnTWtER01YMHNiZkxCOVVRdmxLRmx3QVNMTjBTZ0lDaWZoY3NtUnJqbFV3ME1oKzdnUXp1WGpTajNxTDZabFdKZDBHQzJZb0ZIYmJlM0dmdWFNK0NhM2dBWjQyNldiVW5jZTlNLzY0TkFYa3FWaXBBNE81M2pvNHJIenBjejlRPT0=',
    'cUo2VkxLWlVRc0dSMmF2eHVERUFVdz09fDhyTEhHOUZoYWk4aDc1NEw4c2t0eUE9PQ==',
    'Z0ZuVThGY1B5bXErekl6Z3JmZUludz09fEhIVWRUQjZSQjkwYStxU0VHK2oyamZHLzZzWnZlbTN4aEZXT3hEYWNzZTlzWDZsUTFpMUQ2YWU4c0tNY1Z4ZGI=',
    '[{\"drug_id\":\"amE1R1B3MFoyYUR3SEgwa25YQUdpUT09fERtbURIOXFpckJIWDN5TGt3R2dOUVE9PQ==\",\"drug_name\":\"Ym9rR1pBeUlXb3lBMzJFWE1XRVA5dz09fEN4aGlKdGdkVEhSQW9VUEtab0pNU0Z1VnBOc3UwZVdoMW1veXYvcDN0dDA9\",\"dosage\":\"TytxMmZyOHUxQVVLT29HMmMxNGhiUT09fGdleitoM2E2NG1pN3RTa2FmbGlRbEFyNGg2Sk4ydXZlQmxvMHJ2ZFU5Wm89\",\"quantity\":1,\"cp_pu\":0,\"sp_pu\":0},{\"drug_id\":\"T3VoSGVkdWZqdUxhN2ZYVTdlMklQdz09fGQweEtnYVBaZVZRYXBVME1pc2NrbkE9PQ==\",\"drug_name\":\"Qlhmazl2WjF4YmltRFQzODNoTTh3QT09fFlldVEzcUtIdUNRR01LQkxSdGZlMHc9PQ==\",\"dosage\":\"SVVzcFF3ZXc4TklrY1FWVVdldFlvZz09fFluSjVhSU8vMDh1L0tQaDZJcVExVGc9PQ==\",\"quantity\":0,\"cp_pu\":0,\"sp_pu\":0},{\"drug_id\":\"MHRVYU1UdVlCSHd3d2J5UVBoMHh2UT09fDgrbW9XMnV2OXdRNlFNVkpjOFc1dVE9PQ==\",\"drug_name\":\"RTBvRG1wL0FZdWpEdmZOYnA0SXRuUT09fGtsV2xkemxjdG90MHArZVFwRElWQ0E9PQ==\",\"dosage\":\"Wkt2RHFLVDBYZDRvQm80MFhaUlN1dz09fE55WVpoK01ncmRTQ01VVVh4M3FKSlE9PQ==\",\"quantity\":18,\"cp_pu\":0,\"sp_pu\":0}]',
    '2025-08-24 13:24:06',
    'admit',
    'MGg5RnlEZXR6RzAzRjFlVURYcHVLdz09fCtGbTBPKy9JbFRGL0lZWUl4RjQxK1E9PQ==',
    'Doctor Abiodun Salako',
    0.00,
    0.00,
    2500.00,
    'N/A',
    'mtkqc.1756038246823',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    62,
    '10/2507/GOH',
    'cGdrKzhHV0Qway9Eck5iR0hvOEVPZz09fDJGbktaT3JRMU91bHFBQzBUWFVTUjhVTmhJZzlQV3NxT2NnaHgyN2drNzgyR0g0Y1VqRWttTTFVTUlKR1BiQkpTYnlYb0FNZ0w4d0lkaHQ5bjZkVEt3PT0=',
    'd2c4SW9lMmdPWUxoMHR0T2NWYnBFQT09fDhxM0xwR1NiYXM2QmFFSEh1WHQvMnc9PQ==',
    'T3VGcmJXWVVmWmxHVk5ZWFJPSmp6Zz09fDAvb25yOXVPc1ZOdFdzWXdwWnpnUmc9PQ==',
    'UG5IRHRZQmV1YWJtQTB5bjZhYWVyQT09fFlweGpjV2hxelhnZ20wcXlVVTBtQ2tHODJ1SzEzb0piVUxpNWQrN3hZNHpyUWZSNmRTTUM5bFdBSDRlOFYzc0xuWVZKVWhCUzEvWHdPeWNMaFNsNy81NUJjUUtHdHh1TTAwN1R2OUxqYitmQ2hQN3hja1VRM2NJUS9zZmlkSWVlR2VvdlNoOGd5Q2MxcHFCTy9ZeWtPdz09',
    'ZzloTXB6RnpHTVhodUJpNldNbE15QT09fExsU1grTGluejlYYXd0aG9ubUFUOGc9PQ==',
    'Y3FCVUtwRUxCRmZXTnpmYlVEUzBNdz09fDMvK25mV1hmOTBuU2FOa1A2WlVFTXc9PQ==',
    '[{\"drug_id\":\"dkUzMXNiWXRhZjFUNkNLMUlGSldlUT09fHVPcUNtTnNPZzFFR3hFalRzZGU3NVE9PQ==\",\"drug_name\":\"VzVISWYrL2hHSmQ4RXZXa1JoS3BiUT09fGhpN0xGTWN2MmZhVVM5NDh2eklQVEZ6c1IrOGN0enh5Wk9ua2FrNXNiTU09\",\"dosage\":\"blRDTkZYWjdQNldFQ2QxZUk1MXlCUT09fEhvWHdRM3FpZkU0K1VCK2o4SWZFVXc9PQ==\",\"quantity\":24,\"cp_pu\":0,\"sp_pu\":0},{\"drug_id\":\"TzhaWEo4OW0zQzdrdk5FNFRYdDVOQT09fDFJUFA1Q3l0OURSVXh4N0xXOWtFbVE9PQ==\",\"drug_name\":\"cXpFVStkK0JhZXdpR0FZeHpocmdPZz09fGFaRVdSMFVuT2d1bGg5NzBBa1cxa3c9PQ==\",\"dosage\":\"KzRuQmlYeDRaSkQ0Z0QrUWhXeWQvUT09fHdLWmpHdkd4RDdDbU9IbStuSGwwV2c9PQ==\",\"quantity\":18,\"cp_pu\":0,\"sp_pu\":0}]',
    '2025-08-24 13:33:53',
    'Out-Patient',
    'YUh5eEJzaTUrVVp4TUtpKyt6T0tsdz09fE85VEo2REx1NUpJbUlFY1V3cGVCekE9PQ==',
    'Doctor Abiodun Salako',
    0.00,
    0.00,
    5000.00,
    'N/A',
    'h7mwt.1756038833056',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    63,
    '8/2507/GOH',
    'WFVhQ1Y4SHh4YlEyN05lbmh5RTJ5QT09fFBZVGViS3hhYkdDbSs4K0E4cFdibC9MM3ZXVjltNXlwZllhRTlaQTlaUXc9',
    'RXgyYzhxb0tRS1k0dU5pNXZZT0hHZz09fFl0MWpLdTJGTHFGblVKNkJBZnBEWVE9PQ==',
    'ai9CUUNWRkU2UFA5NmEwL0V6V0hPZz09fHFLcktoSjRMalorNUliQ0F2VG1mZnc9PQ==',
    'cXQrQjZNdlBXc3RGdzcvb2lzR29zUT09fGN1UnhXZmlzeGlqWXNkdjhiYjlrVXJFMDJHcXg5Zm03THY1WHlYT21JL043SUxucUhnSXk1VGR1THhZU0xQZ3UrQm1KNnVRaHB0eWc2TzMxb1UwckNxZ1lscGtnTTBWMVNNbnNNTDh5aHpLL3lOYkkrNGFKS1d2SzBSV1Uwbyt0VW5WS2pUbXFTdm42Vnd6WVIyQ0ZZMDdIVGZjbGtiSFQ3L1lBd1ZDZnl0K1k3RnVkYVV1UEkxbVlRaUhoc0FhLw==',
    'MktjRHBhS3dpY210RmtVbjVhNmNPQT09fHEySEJCaE1XbU0zWEg4ZXI5WWticmc9PQ==',
    'S0U2RjhTbkh2UnEzL1QwQkZ4amxmZz09fGtlRHlCSnErWUxKTlMxRVByYXUwQXlRaGxDOXV5WHA0L050d1RVTmF2RG89',
    '[]',
    '2025-08-24 13:41:24',
    'Out-Patient',
    'cDFTNlpwb0VtWWsyOFgvOUJSNGp5QT09fG1iWEZnWXNFdkVISVIzTWsyMzEwQ0p2ZVhTRXRpVUd3Q0dXcVQvMzBKNFE9',
    'Doctor Abiodun Salako',
    0.00,
    0.00,
    3000.00,
    'N/A',
    '5g7vt.1756039284139',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    64,
    '8/2507/GOH',
    'MDNwNWhmaWpMSExiUmpkTW9Sc0NZZz09fEZCMWlUeVRpaE45L2VZL1hYVHVHWnc9PQ==',
    'ZmRzMDJVVDZJYm9rSFR4YVFMTXZrdz09fFR1THpJd2gxZGRoaG4zL2Y0QkVsVXc9PQ==',
    'dUUxdjhRWUNneUd4cUtlRGNrWkxvdz09fGRIME1RNDdjQXRCcDg3OVA5cXBHUFE9PQ==',
    'ekJTVFZwM1dwc1BTNjRKU2Z2bDhsZz09fEtHdUpad0JYZ0lmUVNZTVhOclk3L3c9PQ==',
    'S0ZZc3dyYitxMHFIYmRnT0xxZk5WZz09fE5ZUGlKQW4vL2ZqMUpJa3hmbTYxV0E9PQ==',
    'eC91Vm56WmpyVmlpK0ZjNWxJTTJjQT09fEJuVGZGQjE2L3dIeDI1SXNvakxxc3c9PQ==',
    '[]',
    '2025-08-24 14:02:32',
    'Out-Patient',
    'SGNWOGlXbFEreGtMWURMSm5zYUQ0QT09fFEwdXdESXc3aFNUZ2xVUll4WFdyMnc9PQ==',
    'Doctor Abiodun Salako',
    0.00,
    0.00,
    3000.00,
    'N/A',
    'iean2.1756040552069',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    65,
    '8/2507/GOH',
    'Y1k1czlITWcyRzZRNTdtU1JRM3hBQT09fHJkZEdCVDk5c0ZTRW0vTE1kN2xoeWc9PQ==',
    'WGRmbndjL3l3Wk9wSkI2ZlY4aCtTUT09fDRvSzQ4RkNJc1B2elpiNzZ1RlJOTFE9PQ==',
    'OVJBS2ZsUzUvT1JvczkwZDBKUEh2Zz09fFFUem1DNDIrUjNCUVlrL0NVeWpRbVE9PQ==',
    'VS9FQ01TSnA4TWxsUDMrMDhEUlNudz09fFh2V25CNFh4QjUwcWZqRTZqUE1WaHc9PQ==',
    'ZnNQdTl1WFpSMFlpUVJwZ2dLQ21Ndz09fFp3ZVlNZXRLbDBZNWtiWTFjcGhEZFE9PQ==',
    'c2t3eVl3ZTd1SUVDSUtJTFRBQ3NVdz09fDR5b05EczFVdWdUQzEwRnhPSE1hUkE9PQ==',
    '[]',
    '2025-08-24 14:12:03',
    'Out-Patient',
    'UEVvRER5T1ZlT2F2b25LMnZNWXN5QT09fHByN3c2cmRCLzBUeVlKVXN0RWNwaitPcXQ2Uk1IQm5KdFg5UXlVcEpiNUk9',
    'Doctor Abiodun Salako',
    2000.00,
    0.00,
    3000.00,
    'Chief Alani family',
    'n7w8m.1756041123326',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    66,
    '19/2507/GOH',
    'NFh6cjJWQ2VuazdRTVkyNmFYeTZQZz09fGs1ckI0RFFlb1ZPWjQxUkZieXQ1ZWMxeGRFMy9DWkYyZTFINVEvQWJkaERzVEdIMUlMRWR3TjRrWDlCOXZXR3A=',
    'U2FXRkJwQi9Bb2EzeWNFcXlXNk5wZz09fHkwbi9vcGMzNXFKUU1WdHMyb0FhVW4zd3hhMVE3SS9XcFExUllNUnNDYUE9',
    'ME4zdm1QNWdJakNRbVNyY0I0YmVOdz09fDVEUW00THZsVTZCRHkxY3lFWG1KUXc9PQ==',
    'eU9RTkZjMEtYaXloRi9qMWFTN3YyQT09fGV4b3YyM2NuVGM2T0dJNGhwU0tNRC9QVlZYRDBpNlJZQTFCRFhyNUkwdy9vOHh0bmRlb1BwaXovUzNFNnJ5aVFlcE5uemp4bmsyc3BFUmdLOHFLRld3PT0=',
    'cUwrbGhKNjdIeDV4eFlXU01HMmlvQT09fDhIQUxWWW5xSU1zYTVzQ1lKR0I4RGc9PQ==',
    'd1A0elMvUmRURWxIdEZiVWhIM055QT09fHBNRzF2Vy9PL2FEU254d1ZNV3VsNkE9PQ==',
    '[{\"drug_id\":\"KzlybWRNbUd5cFFMQVFtbVFFNGlmZz09fEROR3QybE1WRmNEamQ0SU16N2JLcmc9PQ==\",\"drug_name\":\"YXNtdFJwN3BsR3UxekJYU2tQQ3RoZz09fExFYW94UnhrZGZDZUVYQkE5Sk9wYXc9PQ==\",\"dosage\":\"N1czWjV5c1QvRFFLeEhKQWQ3YnBXZz09fGhFM09mVm9pQVY5N2duUVRZbHVodUE9PQ==\",\"quantity\":4500,\"cp_pu\":0,\"sp_pu\":0},{\"drug_id\":\"dUhGdjdKUUN0cStDMHZOZm92a1ZnQT09fFR6SlBBSW5VT3UwZWpFNFRQc1d5clE9PQ==\",\"drug_name\":\"VFRiRUZ2aGQ1Tk9LN1VTL2c3cjY1QT09fGloT0xzNVczNXJuN2hXQk9ycWF5cXg4N1RHNGRoaHRiRzdrcUU3cWlxeUk9\",\"dosage\":\"NUxGUkZBOGRaRDJrQnUxQzl0ZmhUQT09fGpKTjZKMG80TFgzWXZTc0FndGtObVE9PQ==\",\"quantity\":24,\"cp_pu\":0,\"sp_pu\":0}]',
    '2025-08-25 09:28:09',
    'Out-Patient',
    'RDJFSy9FbVBNN2JiamJLUTZ4bmVzUT09fE01L2srU3dNTHliTDR2K3lqa2F3b0E9PQ==',
    'Doctor Abiodun Salako',
    6000.00,
    0.00,
    2500.00,
    'Chief Alani family',
    'jf0qc.1756110489408',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    67,
    '21/2508/GOH',
    'bXZsUnBSd0czenFrVlVkd1Fsai8xQT09fC9CbWhWRXVkcU5ZK0IzYlplZktleWoxLy9kQlo1MmNZckdibmxwckdpRll1cjJkVXZhYWtWWkoxSUdPdXJ0SFdScUxJa3c2NXh4dkg5Q2RaVkc1SThnPT0=',
    'RzN5L0pIT2FqdHBJNmo4UzNmV2xSZz09fHFTVlR3a0w3NHMvakl1L1JXWm91M3c9PQ==',
    'VmdnU2pFMWsxOFNVamtzdkRUOHJMUT09fEpUWTkwR2Z2SkpOcFFabUFlemlFazVIR1g1K21iSjJSTlp6MkZueEpwdzQ9',
    'Wlo0NEpNd1JrWHZiNWhHOGMxSnNFZz09fDlhaUNtSHNtd25MOEhyUGMrcW02RzVLcEpCR3cxTjA2cjlGY1lxd0JkTzc2a1NIVXdNRk5yOXBsei9CbjU1c2RjcHhYTlUyellmS2dLTlJmYmpDUXl3PT0=',
    'YVRJNXpjMDVuNzh0czZYZUV2WnR5QT09fDlkQVEwbjFsU3E1TU80amRtUkU4S0E9PQ==',
    'TWk5aENNeTN4REQ0WDh0Q1Z4N0ZxQT09fGUvMGJoMTBPcW5tdkJsSGY2YTEzT3c9PQ==',
    '[{\"drug_id\":\"NGxJNzFXL05KSXlGTURDRDY3RmNpZz09fEx2dVhDay8wOEFVbXQvQVVYcEh4Tmc9PQ==\",\"drug_name\":\"TWNkSU5yYUFQMGNGeTVEZUU4RmNVQT09fE04Z2xmaHpXTmpuclBwODhCMks3OUd5Vm5LWTFpT0FTYVlxWGVLRThlZTg9\",\"dosage\":\"NllDR0N4WExFQ2J2TzFKdzllcVUzdz09fHhOOXhycERZZ2t5K0RIdXBkcXc4WEE9PQ==\",\"quantity\":24,\"cp_pu\":0,\"sp_pu\":0},{\"drug_id\":\"UWJiSWRySUR2OVhTRElhWDZpbVhJQT09fHo0dU96QWN5SktwdVVMQ1U4ZVY0VGc9PQ==\",\"drug_name\":\"czRjM1hDK21aRzZXZEE2YkVTejU5UT09fDBQMWJYZm5BdFoyYk0xS0pRZGkvb2c9PQ==\",\"dosage\":\"UFAwK3ltUXJiQkVXR2tPbnMwQS94Zz09fE9jbjlMS0dyYW12L3NDRjJWV0dtN3c9PQ==\",\"quantity\":18,\"cp_pu\":0,\"sp_pu\":0},{\"drug_id\":\"eWFDN0NEU2R4Uk9HanN1TjVDczNYUT09fE4zSENSV3dIbjFQM3JTME8ybjByWXc9PQ==\",\"drug_name\":\"OGFac3MxSXFiTHFLdGhSYWk5UmxsUT09fFZhUktlWVRlT01BVkNzdEZOaWI4R1E9PQ==\",\"dosage\":\"aitDcUpuS3hPNlI0M3A0cktLOTdnZz09fHFvMjVCWlZGRGN2MlBIWkg1bmlDOUE9PQ==\",\"quantity\":1,\"cp_pu\":0,\"sp_pu\":0}]',
    '2025-08-26 09:13:14',
    'Out-Patient',
    'Y3NkUUp6cDRHWkNRL0p0ejYxVnV2dz09fGdhcXZJbnp2TzhUNGpPWFJqSW9rM2c9PQ==',
    'Doctor Abiodun Salako',
    0.00,
    0.00,
    0.00,
    NULL,
    'ecsqq.1756195994907',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    68,
    '21/2508/GOH',
    'Wk5qNjVwN3lqcmNnV1B0QStyTjA4QT09fGhLcU41aWZMcmVaZ3dob3RvSmVXMHc9PQ==',
    'ZGhmWXovOUxJUTQ3YXcvODdmdDFZUT09fEp4d3JNc1hLNm1KSjYwb3hwblAvNWc9PQ==',
    'K0dqYnFqS1l4Q1lpb2tMeVIzTEhMdz09fG9DaForbG1mRFdKZ1E1azFONmNJeGc9PQ==',
    'b2NnMVVBZVBhK0RJNk5hWE5WRkxLdz09fHBPY0NLbjFRT3ZEaUxycjhaRHFNVWc9PQ==',
    'QlFUNTNPZHczOGdtQzF3SGllVDdrUT09fERteEFKZHFnOHdoMjNCZjBmQjVKaGc9PQ==',
    'dTZVTDd3TTRRc0M3SWE1WFpFWnl2dz09fGNHV1B4elB5Z3E3eWpXNWZUZ01Wbnc9PQ==',
    '[]',
    '2025-08-28 08:20:13',
    NULL,
    'b1RwVHBmanphdzdKQUIzaXluTkR0QT09fEovZEV0T2ZvQ1RkWmZOeWpDWHl0V1E9PQ==',
    'Doctor Abiodun Salako',
    0.00,
    0.00,
    0.00,
    NULL,
    'ttuk2.1756365613501',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    69,
    '21/2508/GOH',
    'NytVRGdJVmtNeEtaSG1SWFg0dENMZz09fFhobytSUGdPRWhhZTcxZ0U3c0dxU25kYlJ2R3htVXNCczdVM1FSZ3ZNOVlJQXlEZmRueWo3a05rMTduSHFQT09pTll6dXB6VUxmWkhVZGYzUnN1M2h3PT0=',
    'YjJocDdEOTNQSWhOeVNaT2R0SWFGdz09fGlZZnhrREJJRlVrOFBOdkpPdERxMjVVbW9yeUJIS1NDOVZOVDVOUmlxazBYdGg3S0xQNlBHTldkZFZvSjRvckxYaitCeEpkQ1hvT0JyR0pjTTh5UUJMSDN0RXh4U2VFTnJ4NW1pTmFBYTR5YUViY0pKTGpNb01vZmVObE5vTEFP',
    'MHlnc1R1OHRSeGRYWUtqdVlNWnJjdz09fFN5Rk5YY1ovMmUwQVNrU3lxUU1FRCszRVFlSmdLR0xFSHJURTR3dXhLNk9tYUcxcmY0eDJ6TDYwZ1d1VG9HdC90VW5sN1lvNTRwSStic3Q0c2R3VFdnK1NMSW56ckRyWmxzdHdFTFdwV1ZOa2xZQ002Sm9NZHhVdlFFZUhSWDU5ekxPWHRvWktLUHNFeUFyVEREVXowUT09',
    'cGpHUFZMcjl2dzdvUmRPSW1GUUMrQT09fFlQUVU5ZjVjQU1UWHlTYWVlazJjWlZaOTlHUDB3aGkreVhSdUkwVXc3b04vM0R6alBhb3dZSHN6VnZEY1h6M1UvU3ozRnVvSzhlRHBQNGdaSVB2dFMzeGhTWHZMdzUrclRvdko0R3ZDaysyUHdrNk05YmdqbG1GTmh0cjZzRWNsZFY1ZkJDNTkxT3Z4MGhJc1A5cXVvYnc5TDR3b3BHVFpjRGdtVGoxK2QyOE1BSXlYdGRSeUpRQ1YreFdlWWVIQnNjOXZadTVLUzgyL3MrVS9yTFF4NXQvZjU0Y1FuczR5cjVpMG9PdFJCeVRxa3RSYmE4STFmd0JiVnY3eVo2OVRWRG5hKzZET1A5SnRkRFgxc1hyRDdXMWJwK0I0ZWJtc0d2L2M2UHhIUmlaSFMyTlRpU2h4UUpsOEVLZjJPdVVJWTlSZzM0RmgzUGd3Qk5sUFdWclc5Zz09',
    'TnZtYjJhNnBKcWE1SEN5Q2dhaUtPQT09fFA2Q3o4VmlzTFFMSnhvT29icjBNOGc9PQ==',
    'WU5BT0lhbDNsSkdYRjRhRGhJb3ZoQT09fDNuZ3dCRy9ZUXBPNXNVTldnUFZNR1lVZk9SZHkwcXFUOHJEQUxxLzdXcUJwbE9ieFhnTDZuckNSRUlDSzl3aFZpOEJWcUlhbUZlcU5BTUp6WlRxZFRBPT0=',
    '[{\"drug_id\":\"ejMzUlFlenBGcjcwc3hJZUJnNis1Zz09fDlxWTJDSGtrLzd4ak10ZWJVL1Z5L0E9PQ==\",\"drug_name\":\"RFpBd1NvMTdRcElKaHpiTWdDWW9YZz09fENJOU4wMW1xd2lEY2RzMXZqaFB6NUE9PQ==\",\"dosage\":\"T0NZMCtIWTNYVHc1a3hCaHdjN1RlQT09fFdYWlVoak1ESys0STZpVkUvREFlL3c9PQ==\",\"quantity\":18,\"cp_pu\":0,\"sp_pu\":0},{\"drug_id\":\"b2xEclVLSXRRTjh5Y1djdGlOWURLdz09fE04NEV5OTB1RHdLeC9CT1NoRW94ZUE9PQ==\",\"drug_name\":\"cDc3RWg4SDk1MGY3N2ZSSVAwM21LUT09fEw0N0RXU0pLWmlsd3VjbUVlTzdiNkE9PQ==\",\"dosage\":\"bGs2NGNGRXpKUzFuTFdUYzJVRGVjUT09fHlKditIdDdxSTB5OTZPKzFMRS9xVUE9PQ==\",\"quantity\":9,\"cp_pu\":0,\"sp_pu\":0},{\"drug_id\":\"WGduV3dMeVVaR1k2aTh3NFJRdGJoUT09fHNaaS9Qek1MUzVOSUZTZlpWZzVoN0E9PQ==\",\"drug_name\":\"WTYxaWMvWXJ0NGVINlRRc3JsM0lCQT09fDg5NU8xaHZWdWlETmhOeDVjNzNzcVE9PQ==\",\"dosage\":\"US9KajV3a3BIRGFZRHRVSnE3L3V6Zz09fG5NOUF5WW1KSFlMc1J0NnlXZXN5dmpsMU1LeDQ1aDc1SzhMY1Y2WnhrbjQ9\",\"quantity\":0,\"cp_pu\":0,\"sp_pu\":0}]',
    '2025-08-28 11:30:42',
    NULL,
    'OGFFWnRXdmI5Qzh6eVpkUTNKNEhPQT09fHdjclNKNE9PMU5uZk4wS2IvY21lcVE9PQ==',
    'Doctor Abiodun Salako',
    0.00,
    0.00,
    0.00,
    NULL,
    'iwp71.1756377042389',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    70,
    '18/2507/GOH',
    'eDVDdVVwTXptRkR2dTRmbitWbDF3UT09fEtDMUprQXE0aCt1eGxYQ2cwWC9HUVBrOUkwMkdNWTlESmNVL0lJczFEVDh5dUVQTFh1b2NJSDVmMTIwYkRwU1Q=',
    'Y2hhL2lTbFhKUGw4b1JRZnFvemZaZz09fEZ6N3ZxbjhxVkdjOGZmZzFqMHowalc4dlpnM2NCcFBZTm93NTgwQ2JyV0U9',
    'TDRoVVl4TnRnTmkzMU51V0lUOTZ4QT09fHk5T28yRWN5ZWFYWm1ROWpRQTlqK3dLSVlMY0ZMR0pZK0UvTWJxR29yU1JEL1VJS0MwNmR5YTlZaG02ZVdzaFc=',
    'dkJwNE9YNnUxNUdmRVFsTHVxWGpHdz09fGdTUWlaR0xsbU8rOFF5c0FpTGZjOXBQbHh5aXN6RGR0VkRVNXVVYVFpZm9rRy8wUkRsVFFraUpaeUlFelB4dHVIMWtJUWdRUDZrNWk5WEdhWHZFQk5tQm96OHZndEZYUlNYSXQ5K1ZVQUJob0VCQ3NUd2JGekpGMDU0UElvOWRU',
    'bXQ5SXQ1TU56ZFVmVXpxc3lrSk9qUT09fDZQQ2hsRDJTSnoyWHVFZWxpWjZFU2c9PQ==',
    'cmxzQVpYRitOUmJiV2gvNDVjNHlQdz09fEtoYU9ObW1UOHcySHpSRkkwNUdVMXc9PQ==',
    '[]',
    '2025-08-29 12:20:24',
    NULL,
    'UWhSRFIxZmZXa3ZaR2Y4U09zU2crZz09fEFlWE9PYkQySHhIdWRjWnVNYU9nN2c9PQ==',
    'Doctor Abiodun Salako',
    0.00,
    0.00,
    0.00,
    NULL,
    '5v9bd.1756466424036',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    71,
    '19/2507/GOH',
    'd2NLanE5WXZhQlpmd1hWdGx0OXY0Zz09fG5QVWVpNFFMd0hCKzA5QWxnczlnRm5sUHRocFVBdGhka2RKT2R2R3dEejh4ODNoMGdidTFtU1NWdlp1YVZvd28=',
    'ZTVEU3BuaHpJYWdLNUVXNm1WalNUdz09fDZxRXhneVkyWFErd0I1ZTh5WmNOS1E9PQ==',
    'QzZEMllXSTJMM0liQndLNmNadmxhQT09fFZFYjBGbE9qZmNyTXIxZTRLdS9YMlE9PQ==',
    'NWU5NmRSOG9sM2JMZGtMUXVWYU12QT09fHNTUUZPOVp1VEJtNFhiK04zckVRV0lNeUFaczJLYTJjcmI5Y3M4SFpIQTlVNTgxSGRwcU1sS0NCT1RLTjRiOFlOTENmQXcxSGI1NTcxWVZPVWljelhsRzRFVWVYejk0MmxZbXNpRU9JdlRDa1JkaFYrUVE1c0ZVTFg0K0hxVng0',
    'ay81Zmp4T2JwdUd6TFpXNUcxRFpRZz09fFlVQWtqalczWlBXY1AyRkliU2RuZWc9PQ==',
    'cjByWUUwYkFjdzhEeGszODV2VG1RUT09fEJ4QUNDc2l2dnoxK1dNeTJGTlZaTXc9PQ==',
    '[{\"drug_id\":\"d0R6eFh3MStodFFwcFRHLzdkOGs1Zz09fG5xNkxleis5cEE0bjJPN0YvWnVZRGc9PQ==\",\"drug_name\":\"N21UeElPSTVQbXJXcndzS0Z0RmIxdz09fHFRUy9NZ3dDblZsa04ySjcyOVlyVGc9PQ==\",\"dosage\":\"eFNDU2ZoZi9jM0toaEhtUGZDb0orZz09fEtUa2ZBQmJnQXlydWJ6bkF4V0luOUE9PQ==\",\"quantity\":18,\"cp_pu\":0,\"sp_pu\":0},{\"drug_id\":\"TTI3SStpTDZzZ3FTUHFsbHNTdXJkQT09fFpRemFpUG9mYmhjV0V6RGVPdkRXK0E9PQ==\",\"drug_name\":\"L3NBNjU4Q0pZbWJkVkR1TklEVW1zZz09fDlQRmljZHdaTUMvMUJ4TnpnYjlyd2xMSEZac0U0S1ZTS3N1OUNOaVhhWkE9\",\"dosage\":\"YVpDRyt4ZE5OMm9OUjJTSjNYS3d2Zz09fFk1RmtGMVZsTHlkOFpHZ0dBVzRuN1E9PQ==\",\"quantity\":6,\"cp_pu\":0,\"sp_pu\":0},{\"drug_id\":\"OFFlK0ZIaE9ZaXBiZUNaT3R2UlpaQT09fGRrZldrOFQrMXdYaHhLZXR4elM5Y1E9PQ==\",\"drug_name\":\"cE9hc2VibllxbHBxYVJjVGRwMm5idz09fGNsM1RzVElLYlFFZXdKUjg0dHI4M1E9PQ==\",\"dosage\":\"aC9xNk9ZMkpzaHZHY2VGRzErVjAvdz09fFdwSGE1dllBQlA1TGQrOEZoM0xHUTNOZUdBWUpyWHgzZ0hmQTJhYTJKS3c9\",\"quantity\":0,\"cp_pu\":0,\"sp_pu\":0}]',
    '2025-08-29 16:35:14',
    'Out-Patient',
    'dU5oNEFhUERvUVBEWkNXRzJxYzYyZz09fHFwdEF6MjAwdUFPVTlyVnp3RDV2Q2c9PQ==',
    'Doctor Abiodun Salako',
    2000.00,
    0.00,
    2000.00,
    'Chief Alani family',
    'kri03.1756481714789',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    72,
    '21/2508/GOH',
    'NXI0NjNaNm1lZzltWEQrVUZSWDdadz09fENEZGNDZWQvNEVtQWlFTG5oaVcrbVhxeUwwMFZYUHQxNWU3eUpiNGJHajFwYWpJYlhhMHlUcmx4dFQzemRsdlk=',
    'cVh6SjZ3dHdwWmY0bnFISCtmeXVRZz09fEtTSXo4L0tTOUZhM2NZYTJsUWNEYzUrbERJbjFwRExiYUtwSkFjVjFXNkE9',
    'TVd4ejVSVSt1d3I5NlhUVDhjNVl3UT09fExodXQrQm1IT3lhbjNCUU1TUEpWRkE9PQ==',
    'OTZkVFY5K1JxMUxEb3d4NldGQ29lQT09fEVHa0RIcVFNNEpKb0pNVnY5U0RqVlpNRGxvK2s5dytNclltNDhNS3ZTNStkZ0RjRW81d3NucXdiUkM0Nk5LaGwvZ3lzaDV5MjlVRnN5Z1gyT3hYeVN3VGU2dXgzOCtjRUloSUVhSlMvUUZCM0RxSzA2QW9xcFQva2dZTWFlMU1JYVRYbzBmbDcza2JrTE9yWFRyditZdz09',
    'ZDdxT1NjUU1HMXhHcElTdTNvNFJoZz09fEREdlM2a0dvd1hBYS8vVC9vU214alE9PQ==',
    'S2pkbVZPRmljbHNKVjJGRHR5ckE0dz09fHNUTTFiU3IvelpIWXpxS3Z1UzFWWXc9PQ==',
    '[{\"drug_id\":\"ZlJ2ZjBNMFpMSXlna1VoOUhwZjZUZz09fFVzVkV6ZkpzTnFrYlhHT1BmbG9lS2c9PQ==\",\"drug_name\":\"N1dOVzdNWXprWjVkd3FneGpra014Zz09fG1lWUZpTE9FNHU3WFJDZ2NQQzhwd1lwaFd0SW9jK2NueDgyL1E3aXlaa1IrZDYvU1BNc2RvTTFxNDNlUm5OY1k=\",\"dosage\":\"czZPalVuei9OS1VudW9kWFp6QjJzZz09fFNUMFAyRlI3V0NhVCt3RWpvZlhCbFE9PQ==\",\"quantity\":10,\"cp_pu\":0,\"sp_pu\":0},{\"drug_id\":\"ckdQbzNrZGcyRU9VQ1d2c2xJQkRKdz09fDhBc2IvZWNhMVZqOUh0eVdJZk5xTVE9PQ==\",\"drug_name\":\"QkpDUU5Ra3FjRnlUVFdLNjVXN3hLZz09fFA3QkdyeWRrVFRFOHN1bXZUNU5VOWc9PQ==\",\"dosage\":\"RUNEdTlWU3lQTlBOUFgwTW13cWkyQT09fHBkRGpDYUVQK1MvNUhMOWw4UHdTT0E9PQ==\",\"quantity\":18,\"cp_pu\":0,\"sp_pu\":0}]',
    '2025-08-30 04:50:10',
    'Out-Patient',
    'MnljNmlQdU03clNudEt1NnBScmRWdz09fDhlczNpdGlabjNPWGZIcHZPT0p0VVE9PQ==',
    'Doctor Abiodun Salako',
    0.00,
    0.00,
    0.00,
    NULL,
    'cl6a4.1756525810670',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    73,
    '19/2507/GOH',
    'OUZROVhQWGRlVGZWMXhIZFhWL0tWQT09fGt1bnE3bGE1dEtMcnk0TGtUaGZyUDFiSFNlSXlLTnR3K2x3T0d3K05SbDR0Ym5mZys3SEtKNFJ5blFBbkJabi9iUit6RjRubGwveUZSVTFYVEg0aEpoYkNxMTM3ZG1pOXZhMWMxU0phV0xzPQ==',
    'bWR1TFRiVGpEaFROQ3l3R0dubGtydz09fCtXZHdKOVBqSWJSdXhpN2hZVDhsL0E9PQ==',
    'OUlxWnBIUERYQ3FWbW1lVjljWWtoZz09fDF0cHM0YzVFWEtZMnMwM1NqdlJqalE9PQ==',
    'blVaN0tKZ09NQ2kyNzN1NmRNU0ExUT09fFdhSW5scWRsUzl1ODBRRVVDd1VpWGdqcG1MMEtyR21XR25rUUUxQ2x6a2Y1Zk50aWxnWTI5SnFuT2UxaHB6S1diWVFuSk9IcmdrcHJXU0U2c1JWU3ExRngrZHpEVHBrZ1p4cXBKbHFBRHAvUHpaU0RrVi9zSTBTMzJ1V1VmRDFw',
    'ZXZOSlpzYndFWHNGSC9QZ29mNDQyQT09fElCKy96MzFUWDlBQkpBcFIvQUZyb3c9PQ==',
    'bWFkc1VJdVBmZmZkRnNwTy9QSTkyUT09fFRESDg1aDlCc1ByOGhZRGRCb0xvanc9PQ==',
    '[{\"drug_id\":\"dGo1Kzk2akZnWk8zYmFSeU9lUUhIUT09fEVaeTNpSUZBMzkzUzgxaENoZ2IxalE9PQ==\",\"drug_name\":\"N3NDVklRRGZmYnE4RUtJM3A2R1NNQT09fGQxNVIraDZRQ200Nzc0cFhQMXljckE9PQ==\",\"dosage\":\"RzJNTTNrS20yREJWeStNRzFZOGJmQT09fFBkSHpDbzZYWGdGWHFnU3NWSHRJL3c9PQ==\",\"quantity\":18,\"cp_pu\":0,\"sp_pu\":0},{\"drug_id\":\"YnFMYldCRGhaV1BycmxMSTYzUWE4dz09fFhmQ2cvSG54b2xuSDJOb1RkSGNLOEE9PQ==\",\"drug_name\":\"UHo3M3JtT052aWVjS1lMcXpsSG5PQT09fC9Sd1lwZnZtNklxTTBNN1I1T0pOcXc9PQ==\",\"dosage\":\"cytId3M2cjJ6dm15UEZ1OG54MFk4dz09fC9KSU4xOGVZTURPRzljdEM0ai9ZZ0E9PQ==\",\"quantity\":4,\"cp_pu\":0,\"sp_pu\":0}]',
    '2025-08-31 12:33:03',
    'Out-Patient',
    'UHYvQThuTW1uRDcvKytnZ3ZralRadz09fFp3T1V2Mk0vOVNPd1VVYjM3czd6bmc9PQ==',
    'Doctor Abiodun Salako',
    15000.00,
    10000.00,
    5000.00,
    'patient',
    'vsauj.1756639983223',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    74,
    '21/2508/GOH',
    'MEZFRnRwTzl0VUkydGlhZkdEQXNFQT09fHAwMTBTaGNGdTJZUGM4aGZYSWRZcDBCdS84azZpc1NLS2RqK0d5VnZITExhK0U1cEdoeE5BbGpXc3ZoMzFpWWw=',
    'L0dtbVZsMEk4Wlc5Q3J3TFFGN2wxdz09fGpmeGxOYUtjT1IzQnYvUHg3L1RsQkdzem1jQUo3Q2YwVzV3bWZJSG1SOWc9',
    'WGppY1NJTUlQeEJ1YzBwUERVRklIdz09fC9tRUo0WXhNdjQ4emZLaUswMWMyS0E9PQ==',
    'ZGtudDY0RWs0bFpMS29lejdpNjFQdz09fHpzci9FR3FpY0dNWnRTSzVqY0ZOc2VQZ0lwMnVQb25NeGFWbmJsTUJOT1JyVERLM1hoMnFHRDdhVFlHZGg3Vm4=',
    'dzVTYmlicWxvb1RndzF4ekx3K2ozdz09fHVUVEJoRXIzVnUwZjZqMDBwdHhPZWc9PQ==',
    'VW4vZWNZdksxeElRSjFqc1pWWkZNdz09fG15dGhWTTIva0c0SEs4OGkrSVJCekE5dWhBWDZVL2JPUjlmME5WWmVrMXc9',
    '[{\"drug_id\":\"blFWWnR1WEoySFYxUTV0QS94czZ3QT09fGJMYng4RmlldVBPNmZodUlHQ29LR1E9PQ==\",\"drug_name\":\"UDdFVzlWdGtWMWEvcjNESGtTOHI4QT09fCtiNFhCQ2Z1ZHpaTmpydnRobEFpYUV0ZGpLVGh5L3h1ekZWdGJ5Vis3dXc9\",\"dosage\":\"RmhiMWtucWtxUDdoN3FlY252MHNWUT09fGU1YWJZMFBpdkovSkppWHFrc3lxcVE9PQ==\",\"quantity\":0,\"cp_pu\":0,\"sp_pu\":0}]',
    '2025-09-01 13:52:49',
    'admit-for-observation',
    'b1JxMWdneVpnLzB0Nmdsakg2eUxDdz09fDIra1E4V0ZuWUNCL2JQcTlmb1VHOHc9PQ==',
    'Doctor Abiodun Salako',
    25000.00,
    0.00,
    25000.00,
    'Chief Alani family',
    'sn125.1756731169422',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    75,
    '21/2508/GOH',
    'd1EyMEM3KzFLdGhsN0VTV014Q2tYZz09fDAxbDJYakZNN2FmYmhSQVhkUGxqNnc9PQ==',
    'YjFZY2JlbHgwcjhnUWh6UkpDUnU1dz09fGo1VVR5VGxJNVhSWEc2ckVwdWs2WFE9PQ==',
    'OWNvdWVaNnhyZDlxNi9vV0dYNFRHZz09fDhpWFhWeFlHN1p6NDB3TTBNV0NyMnc9PQ==',
    'dWtJSjZvWUdpa2ZyZ3NBYWk3Z3hGZz09fEpCN2ZWMy9MU0kzdDJGbTZmQzAzbHc9PQ==',
    'ZytsaXZpUGF3b1JrYWFTdVlhenltQT09fGxWdGE3cWxDN21mUnU1NE0rS2hDV0E9PQ==',
    'cndtb0MydmlkVXptaFJjUXhDMjdyQT09fGR4OC9sbzBsWjZtQ1hBbHB2VUFzV0E9PQ==',
    '[{\"drug_id\":\"T3ozMzdOUmliVE9pZ24wbjkvYXJqZz09fHlEOGVvZWpWTjl3RXE1d3o3dlFKTHc9PQ==\",\"drug_name\":\"MWl0RVcrbW5aUzVWOThiWmRjVWJ3UT09fFo2bHFLZWlzbEh1b3d6YVExRmlUREFodEVjUThWYllVaXk0NmhhWFEyV3M9\",\"dosage\":\"MmFkQmNhbzFBcDJWMTZXVnRIamxPZz09fDVRaDlDczlJbGZFK0lpazRVZWNIaUE9PQ==\",\"quantity\":3,\"cp_pu\":0,\"sp_pu\":0},{\"drug_id\":\"TVI1OEF2SERBWkQrUllWMWlDWXR3Zz09fDBwU0F0U0g3TGRvYWdoVGFVa2ZFTnc9PQ==\",\"drug_name\":\"aURkNzQ2TENXeDh1UEZoMDVpWTd2Zz09fERGL1hoOEFrQUVYUTIwTjRuL09Rb2lWNHJjYjJjNVhnQ01KVmE4bWp0UFk9\",\"dosage\":\"ekxEVmFkbTh0MlhsbUNIaUFtR2tnUT09fG5YaVUra1htek8xV2tLbEpacktKUVE9PQ==\",\"quantity\":20,\"cp_pu\":0,\"sp_pu\":0}]',
    '2025-09-20 12:52:46',
    'discharged',
    'TCtsRS8vZzdCOXAzRklneDlNVEpqZz09fERjREdUL1lTamFGSSs1S2hwQ25KMkwybEV1MW5waGxRWG5CdS9hNVhPYnc9',
    'Doctor Abiodun Salako',
    3600.00,
    2400.00,
    1200.00,
    'patient',
    'sn125.1756731169422',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    76,
    '22/2508/GOH',
    'YUk5QkdCNXNYVnMyWnpjcndYam1jdz09fDRKUHJYNXl2YmtBcFdYKzJldDQ0eHIrc2d2anY3UjR4dW5adExFWDVoUllxaVU1MERXQXY4ZUJlS2pHVkdlN2Z6bUkwMGVyc0R4VUVNWW4yZFdjUUN1QmdndklvK3k1Ukdyd2tLVlMxdUhWMmQyam1TUnJvejd0M0U5L0RnSStl',
    'cGZvYkN3SzdWRWU1dHEveVl5dEM1QT09fEhYemxZekxoNnpKVmZ1Z1ZZdmNBV2lnb2F6ajBQL1A4WmZaUEg2K0FKTGc9',
    'Mi9qbHdCSUxlUlVIeG8rV2F3aXBjdz09fENIWUpBbVk0QlQ3UWt4QyttWTY5OVE9PQ==',
    'ek9ZMWpRakVGUVhKSTQ1K0g4azRMUT09fEdHblB0VDBGdTJZdVkydHNWY01NeHc9PQ==',
    'SnNnaitVMnowYndjanQwdVdQeXA4QT09fHYyUDU0MHpBUkVQRTA5ZCtVU2xNdnc9PQ==',
    'SHg3bEZ6elU3Um5SeVR5WGNVcGVmQT09fEM0M2NYZHpkanBxTVBJK0x1dmVMYnEzb2NIWXAvRThUUFFJZU9PdmJtYXRxT1dxTUJlOWptTXFuR1M0UTNXZmo=',
    '[{\"drug_id\":\"a2RybmJUdjZGaThlWDNwcVNoSDZ0Zz09fHFOWVlzSEJ1U3d6VzZaNVQ5UEUyWFE9PQ==\",\"drug_name\":\"RXRRUHRJYUZKclhNc1JnUTdscnAzUT09fDdHWkFuMmZqQTYxdVVVYXNLdWQrVSs2dkRGUTZ1TURncDlmUzhoVi9kWmM9\",\"dosage\":\"SnNaVmM4QWZnMzd3eG0ycWpOTWlmUT09fG5TMHpxVExQTE9MSUtRZUE5OHREMms5UGZ1SUpmMVNLb2JXSUp4ZHVRQU09\",\"quantity\":10,\"cp_pu\":0,\"sp_pu\":250},{\"drug_id\":\"NXFacjhNcWx1anpGWjZ1bEpPVExGZz09fHBVM0xmWGk0VExqRnpubW40V2RDdEE9PQ==\",\"drug_name\":\"aG5mV3ZFci9nUkxLQTVzZmUvL3R3dz09fE93eTlYdHBMTGZUbi9BUGZMc2U4Ymc9PQ==\",\"dosage\":\"RTNxR0JHYkxrUWNpeDRldTAzNVVGQT09fEl0b0diVFVKWTJ4ZDNJZjVIVmsySWc9PQ==\",\"quantity\":18,\"cp_pu\":0,\"sp_pu\":0},{\"drug_id\":\"a01WOTN0U1I0MnUyaVVuMjhHdnVhQT09fHg3WndtM0tqTFNjYno0QmhySlVWQ3c9PQ==\",\"drug_name\":\"Zlh0YjFmNW9QUGsvRTAyckdKUkgwZz09fHREazJtWlpKL2NjU1VneFg1UUM2anc9PQ==\",\"dosage\":\"YWVPQXVGVU9PK2J0V2d6b09pUk43Zz09fE5VOUFocXNJMWU3eXBaNzExbGFNQmc9PQ==\",\"quantity\":1,\"cp_pu\":0,\"sp_pu\":750}]',
    '2025-10-02 16:15:03',
    'Out-Patient',
    'YUg1cVRUbW9TZEo4RHB4bmpRTnRKZz09fDVscVlkQjlNWUQxb25LUVZqbjFteS9XdHFUem1QM0lhNDE4eVdmVWNiMGs9',
    'Doctor Abiodun Salako',
    0.00,
    0.00,
    0.00,
    'Loyola Farms',
    'zn4pr.1759418103400',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    77,
    '22/2508/GOH',
    'aWl4VzFzdGJBZW9wcVNTYUxheVRuZz09fHFPUk9oUFMxNWFDUnRsbDJIdmw4U1oveFlDWEsrNmFJdDV6eGI4LzZwT1hia3h0YnV3ZkxNeVJMcHJFeFBIQUU=',
    'UnRlZlhhTnl6azZ4OFk1dklxM3Y1QT09fEJaOWNWVGhodm9HL1pWNDZBQTlHTHc9PQ==',
    'QjhkSzMwTms2RWlZUTYwUElBenFrZz09fCs2OTZ0dm1meTFUcjBKK1FvL3lGT1E9PQ==',
    'cC80SzZTM1ovdkRES2RXRFdCaXJrUT09fGIxRDdhcnhmQ3ZiRmpEYjlRQk1obUE9PQ==',
    'YVMvU2JMczRRSWNGaFNPWEdNeEhDdz09fHVoOFQxZWp1c0IrRVZ1MWlhV29Tc2c9PQ==',
    'ZmUvWjZBR01YS0VLU1ZtS1FiL3prdz09fGZtM0RmOUFJeUZ3S3pXdjRoSFcxcUE9PQ==',
    '[{\"drug_id\":\"TmVQY0d5TjM2ejFxVWl1dVlxdGR0Zz09fDJJbUZ4MzFiZ1NUNHlUN0x1dWpOaWc9PQ==\",\"drug_name\":\"TVFsd0pEWkUyRkJ6SEtTNm9zN1ViZz09fEVHUk1RTS93VW12bUVYOTBzamgweXVCeW9lUG9OTFkxQXpzd254MXRIcWM9\",\"dosage\":\"RmpScWUvSHd3YnZpVklYUTdSRUNQdz09fDJQZm0wUU14TDVhSVM5dExTRHB6N3RIV0FqMDZiejZqVmpLalBWaFJodjQ9\",\"quantity\":1,\"cp_pu\":0,\"sp_pu\":0}]',
    '2025-10-02 17:40:13',
    'admit-for-observation',
    'anlaeUd4WkRqTWJyODlHQ0hmeGNyQT09fHYyY0d5dWFaLzdRb3llWU5vRitwZEE9PQ==',
    'Doctor Abiodun Salako',
    0.00,
    0.00,
    0.00,
    NULL,
    'zn4pr.1759418103400',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    78,
    '7/2505/GOH',
    'TGxkNFlveDZxejV0V1ZWazZYYXUyZz09fDQ2NitoUlpmeGtUVCtKVG5uMzZ2cXVuemw2NGVvSkxlcWxZNVRPaHRGNGFDWXA5R1Y4ajZkK2Y2TWQwYXVBNVE=',
    'RitZdU9MNXJ2bnY1ZE5BanVBN0h6Zz09fG9BRGZkVzV4UEhTend6OXN0V1p2SkE9PQ==',
    'K1JFNDBvWlRuVHhmZitDRGUyZVhDUT09fEZGVW1WekRIK2JtVERuRFAycmNRQXc9PQ==',
    'SWFPZ05OdXpOdGRrRG5QUFNNWlFSdz09fGt1bGdrSFVHWVQzTVkyTFlTZ1owR1E9PQ==',
    'NlJpQk9jbzZIaHl6UlhWZDNUeDhNUT09fEVBSnBONXBYWnBYdCtXVmxKQ2ZlTUE9PQ==',
    'R3o2NzNWb3JYQlF1eWdVYjNISjB3dz09fFk5TUxZY3VWaHA4T3dKdzVLRE0zMVE9PQ==',
    '[{\"drug_id\":\"a2tRUkJaNldUT1FoRTUxaGxEWFh0dz09fDIwcG9rdjZaT2ExdjZIOU9oUmNSZ3c9PQ==\",\"drug_name\":\"K0xFODc1MnRnS0pRSm01MUc4b3FTZz09fGhvQmtYSCs4MnNUbXd4TDMvdjRhQWc9PQ==\",\"dosage\":\"Vm9tM25DMzZSNXBKZThaOHBoNXRQUT09fHRXaEpPaDhMd1N4U0p2dSs2Ylg4MUE9PQ==\",\"quantity\":18,\"cp_pu\":0,\"sp_pu\":0},{\"drug_id\":\"N1FLSlJrZHZTUjRlVGl5Y2Q3cGVSdz09fEhlMlpRY0NZeUIvbmtuRFozNVpMbmc9PQ==\",\"drug_name\":\"T1NKbVlhQ1huUnZXMVVPbFJIS2RZUT09fEdkQ3FPeWc2aFZjUGZta1BHTDJPTUE9PQ==\",\"dosage\":\"d1RTWGZFOENlVHRYb3FIRkdIMmR4UT09fERPamE3RytZQWkycDdHckdrZTVsNnc9PQ==\",\"quantity\":9,\"cp_pu\":0,\"sp_pu\":0},{\"drug_id\":\"ZG1MNTYyK0hlRTk1alF0M0J0SG1Wdz09fGdUZ1RaNlZwWWs1aUMwOGVJeUVUa3c9PQ==\",\"drug_name\":\"YldaQkRJN0trb1I0ZWdRdDZoZ0ZvQT09fEtFd0lsVFdQTG12MVB6cGo1Yy9MY2c9PQ==\",\"dosage\":\"dmJzK08rUGp4V0dvdUVWQVZDMHg4Zz09fEpLRnowVmJpQUd0WDhhdzcwZmFUSVE9PQ==\",\"quantity\":75,\"cp_pu\":0,\"sp_pu\":0}]',
    '2025-10-03 10:14:28',
    'Out-Patient',
    'YldBR0phd0UrUFFTdEdqbHpqclR1UT09fGt2TURkdFhSMTlKSmhsZDNKQm5aYWc9PQ==',
    'Doctor Abiodun Salako',
    5800.00,
    5800.00,
    0.00,
    'patient',
    '0su2m.1759482868397',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    79,
    '22/2508/GOH',
    'dHlscS9NQXk2NW9KaDlBRFJiU3NuQT09fDVTZkJMTWdVQVR2UWdsY3FLM2lqK1E9PQ==',
    'MTBoVUU2bWhpNkZ6ZGRVd3FpQi9TUT09fFNEZVJCUi9XMXZZb3M4YmlrdjdwUUE9PQ==',
    'dFJXUGhqK1NLZnptc25RVzZoUllidz09fDZhUzlLUVVwY3hLa3hJWDhLeHA4YVE9PQ==',
    'RlFQNi9TMkw1bjA4a0RXcDVIeTV0UT09fFdTNnhnZmY5ZVVWU2hCUzNwOWR0OUE9PQ==',
    'RnpuOUNWOFZQbjNBNVNxRUgwQ2dlUT09fFZmNzk1UjNLQ2VYVEpYTmYyR1pGaFE9PQ==',
    'eG1zeEhWMkNCbEJpc08zYVJ3eDc0QT09fHRCVVFpRUc3c3p2UkFqZlNzZ3kzdUE9PQ==',
    '[]',
    '2025-10-03 16:30:24',
    'discharged',
    'S3VZUGZjVWFwNGZMcGtTNE9UaFRaQT09fGhKYmdEdnlQTU5hVGd5KzJoNHltL0pNbzFsdVA5ZysyMllRWDBZMVFYc3JkYmU1WjF4NjBzaDRPeTg1TTVxM0U=',
    'Doctor Abiodun Salako',
    5375.00,
    5375.00,
    0.00,
    'patient',
    'zn4pr.1759418103400',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    80,
    '9/2507/GOH',
    'bnI2aENUZlAzVjhLT3VpWlpvVXVPUT09fHp0eEQyUS92MnNpcS9ZUE81NTdXWG5PdktnOG5HMFd3Q213eHJYVXl6Vkw5MWUxc01Lb2RaZ2dBdWR2RG1yU2g4bVV2K054emtFaXJVZnp6dFNIU2xIVXNINS9OTElsWXdOcnI4akZOSFZFPQ==',
    'OWQzcnBzNzNPUEZ5MmJMRVZndVJMZz09fGtqdFVxMGJVRkVyR01qQTZ5SkY5RFE9PQ==',
    'dUFDTy9aSzl3Mm1iWk5MVEU1SklPQT09fDlpb3RuTXE3MGE3L24zODJVaUNZaVE9PQ==',
    'TklSNm1RT25lUnJJZktGb1FzbmJ1QT09fDNJZGpMSGFuWENlY2ZhTzNJdzZrYXFXTHNjSERpYlA5V29WODJkZmdpOExCMEdWTCttbzlNczIzeW53ZjNwUzk2dzNjdFdnYWFrclhWNFBGZXJLTlJnVUhRODBhZzA1VWxybjQzQllHcU9iRm1zbTFYN1BCeUt4dmdTTEoxS3R4',
    'a29hQnJJWEg3U05qYVk0UG5WVkZuZz09fHVlSjA0SjdrQ3A0ZDJRMkJLWCtkd0E9PQ==',
    'Q3lKcG5tdVRnSm0xK0hQdUpWc1VHQT09fHhNdHIwVzQ1aVc3MHRmSGNsaUNTMUE9PQ==',
    '[{\"drug_id\":\"dzNTeEJQVU9YRlhkd0dKYkdXOVdsQT09fHZHb3hFdU1lUkE4Y3NpOG90TWZkVnc9PQ==\",\"drug_name\":\"VU9aK0Q4ZWRtQXVydFlQSzZwWk1hUT09fG1TZFhuUHYwdzRsLzFQWGh3M3lJUEE9PQ==\",\"dosage\":\"dDA2WjEvUnVPQ1lUdE1EWkNPckpEZz09fElPRjN6eFpGQk1mcGVvKzU4aUtVbmc9PQ==\",\"quantity\":9,\"cp_pu\":0,\"sp_pu\":10},{\"drug_id\":\"ZVYxa09qVzVEWXAwbjFyb1MrSzQ3UT09fCtja3o3ZDZLNVRvS25NZEhNa01YMHc9PQ==\",\"drug_name\":\"Wm1GS3ZYSEFxL1VzaXlGd0xQYjgzZz09fFlScDBITjhMWG8xMXl1cFN2UVZiNUE9PQ==\",\"dosage\":\"RVdiRFI2SGFwbWNFYzEwN3VQYTg0QT09fHAwUmFJSzJRSzh1bExyU3g0UTlmWXc9PQ==\",\"quantity\":27,\"cp_pu\":0,\"sp_pu\":13},{\"drug_id\":\"Zy8rNU1hQWFqR2VBaE85RTdmc2Q2Zz09fDh4ZlVmRllQY1F5ZmoxVElNN04wZmc9PQ==\",\"drug_name\":\"Y2VQNy83d3VjYWJKWXJRRUd2aFJTQT09fHpCSVFQdWF4OSszSWJacGlFLzlTUi9udUQxM3JvRHdTV0VsejdTc2REaDQ9\",\"dosage\":\"a25WSnByMXV5MVlzc3gva1QzSUF3QT09fGlOVUdHclVlN1lvMHNTKy9HRkVDclBGUGcybkNHNWRIdE5kSGVhSWc5eEE9\",\"quantity\":1,\"cp_pu\":0,\"sp_pu\":0}]',
    '2025-10-03 16:39:59',
    'admit-for-observation',
    'aFNNZTRQWDBBRk0yeVNmUURxUVRDdz09fE5GWEkvaXlJUEdnN1VCcklJb1NuNWc9PQ==',
    'Doctor Abiodun Salako',
    5526.57,
    5526.57,
    0.00,
    'patient',
    '1dlbz.1759505999985',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    81,
    '9/2507/GOH',
    'U3h1S0VGOHE0bGVScC9sLzhKYzRCZz09fEx2RDZyVklXSTJvZTVibFlGbk1OcWc9PQ==',
    'WDhRTlRjWHJ0NVVhY3A3dU9kc3I3UT09fEZwMGxES0xOTVZDb29leEQ3emJjWFE9PQ==',
    'cGxNK2NHdEFmbVFJdnYzQWtNa0g1Zz09fGhLZVNSM3JaUnNia2cyNGk5RWpzUGc9PQ==',
    'VDBtcG5JOXpXbG13RnVQUzlwOVcxQT09fGJhUlc5R3VrNm1DRUUyTEx2TzMvR0E9PQ==',
    'dHMwNDVzVlpyMVZrNWdYalh6UzJlZz09fG9qR05IRnIvcit5N2kxY1pGUXRQZHc9PQ==',
    'd2Y2b1gyR3J5ZkVkVzJKRG5LWVpiUT09fE5ZNE1Bd29ZSUtEVmVpOTdMK0llVlE9PQ==',
    '[{\"drug_id\":\"NHkxODlldHR1L0hJcVpUSXJZL0IrQT09fEdpRnB2bDdHQkhLdGxMQWNkQktYV1E9PQ==\",\"drug_name\":\"L0o2UWc1YTJELzVKRjRPdStLTkFiQT09fE1HbUFsNHhobTdQMXNnalh2bWt6eHV5ZjVweFhqYnUyWStlRnovWW1rQ1k9\",\"dosage\":\"RWNkQ0wvYjI1SDZaeXFYRG4xanRvZz09fFpaZWVJYnQwbGJFWmVYdXFJaTVLeURwMDdpY3BoK3BqaURGM0FwK2VCdVE9\",\"quantity\":1,\"cp_pu\":0,\"sp_pu\":1500}]',
    '2025-10-03 18:23:03',
    'admit-for-observation',
    'eWZidklsOCtqSFF5Zy9waERCbGJnZz09fE0vUWl4UzVaRjRtak1renlQVE1xVFE9PQ==',
    'Doctor Abiodun Salako',
    1612.50,
    1612.50,
    0.00,
    'patient',
    '1dlbz.1759505999985',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    82,
    '4/2504/GOH',
    'VUpKb214VCtibEJLUFhTK1JhNzZJQT09fGtDNmNSdDAycmYxMWJXazdQdzJ1VWc9PQ==',
    'QUZvSDJCRW5YV3JnR05TOHRKUkpyQT09fGliK1pMNVpnQVNwZW5VSlFkQW0zaXc9PQ==',
    'VXlHdWdKT0RvWkRsR2IrRUhlMzd6dz09fE1wNkd5RWhYMU9VOGNoaFpTSk00UkE9PQ==',
    'SnJ5VGk3eG51Mm85c0M5SnVmeCs5UT09fHR4T2F1YjlTZjlkUDhVVjhiUUd0NEE9PQ==',
    'SU1jSzU2cU5WcUxwZjdoM0FhUERGZz09fElCNVNFak5jN2lxTjlGVXJhRXZvWVE9PQ==',
    'WlNUSnk3L2RzNVEzL0Qxa2V0Qkhrdz09fFdZTFdqeTlKdGloL0Raa2ExaWVhUnc9PQ==',
    '[{\"drug_id\":\"ZEVzVVAyMEFEVmNHYmNnOGdjRm04UT09fHlKUS9hdmZHMllLeG9tK211S2tFY1E9PQ==\",\"drug_name\":\"ZXhHZU9tQ1hVdWsvbzZENW9xUTc0Zz09fGZFZVQ3Y2tSek5YQmtJNnhZMExSTjloeGliMG9DUGNPaW90WUNuWUNkbWc9\",\"dosage\":\"OTNBQkxuRFFjblpydUlRd1Y4aXp3dz09fE10YkwzSWFlbGsrODFBRGJhd05QOXRUOTdGYVRvcmVjNnVKenI1dnpTRkE9\",\"quantity\":1,\"cp_pu\":0,\"sp_pu\":1500},{\"drug_id\":\"clJNVEwrR0g2dGpNQndWSzdmaHdvUT09fEJzcm96VTI3Nm5SWThZNGY2VzNyS0E9PQ==\",\"drug_name\":\"bHgvWGhWa09xblRuWndHdGtJVVlGZz09fGtaMW9JcDlTeW10MU0rYld0TFJJRFE9PQ==\",\"dosage\":\"ZlBtV2RZOSs5U2t6SlpwbS82VmEvZz09fEN3WDVnODUwaW1RN0hudHZLUDhWVHc9PQ==\",\"quantity\":9,\"cp_pu\":0,\"sp_pu\":10},{\"drug_id\":\"UHpFSVFXbjRYMU41ZEZmSmdRbURmQT09fG8yN2VQUWdVb09IVDNzN21BS2lMV2c9PQ==\",\"drug_name\":\"SGxjcnp1cEVPQ1NOcW5Kdm1RME1WQT09fG5QWGJPdTJBWXYxTFBFRFl3YWVZU3c9PQ==\",\"dosage\":\"c2x3OFEwWVUyMlcyeXozakVjb2RMUT09fEZ3aXllWVpZN2cyWGgvN1pCL1g1ZXc9PQ==\",\"quantity\":18,\"cp_pu\":0,\"sp_pu\":13}]',
    '2025-10-04 07:13:16',
    'admit',
    'ekdpNGVoUC8zQkx4cFVPMmd1WGlxUT09fG9RM3JMcUkySWFiNVVCV2h6SGZpSWc9PQ==',
    'Doctor Abiodun Salako',
    1960.80,
    1960.80,
    0.00,
    'patient',
    'vbuke.1759558396759',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    83,
    '4/2504/GOH',
    'ejluTlYrejBhckF0ZE04cVF5VDhvQT09fGRnSmhLUVdPem1FeEU5aHZFSE9FWmc9PQ==',
    'Z0VkdllBUHEvRUNZdzd2K1NtR3BLUT09fDVCTktISVRHZ25ldHBvQktpZXRkSHc9PQ==',
    'RzFtMWh2RHpYSldGbG9zZGlpSW90Zz09fG9URUQydVBNTC95QVFUczJYc1pCcFE9PQ==',
    'ZU9Tak1vTmVaTTJWQSt5MlRpRElkQT09fHFqT3hJVnR5dS9BQTJMNm5ZQmpQblE9PQ==',
    'WXFkOHZJbnpXSVB0NXNXTEhra3N1UT09fHlGMGpKUEx6VURhb2lFdmRUY2hJQlE9PQ==',
    'alZUVmR4eXFqdXROSzFKMjZjWTVOUT09fDBTRk9ncVQ2dXorWGhGT2J3UnNod2c9PQ==',
    '[{\"drug_id\":\"cVNYUEpxR0k2K0wvWVJxSFVPYmVpZz09fHEvVlNUU09iU2MrNC9VZWFFU1hOS0E9PQ==\",\"drug_name\":\"N1dNSWlwMFhyM0FnMndiTHljYTRqUT09fFNsZ1Z4Q2FibWF0VlZVeTA1ZUE0amc9PQ==\",\"dosage\":\"Rks0SnZLTFlTTFlRQWs3TkpIVXppdz09fFQzZlArbFc1a2NaVmFNdzg3MER6SjRlVmN3WmdoNnE1cEF5K1J5aGdZS1E9\",\"quantity\":84,\"cp_pu\":0,\"sp_pu\":0}]',
    '2025-10-04 07:18:14',
    'discharged',
    'RkxuSXROM0tNdGI0WEJnSVoxUHFYUT09fHJIZ2s2VVVubmk3ZXh0MkZraER3ekE9PQ==',
    'Doctor Abiodun Salako',
    903.00,
    39.20,
    863.80,
    'patient',
    'vbuke.1759558396759',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    84,
    '12/2507/GOH',
    'L2p3TE5peG1RZGtRbFRnYTNaYU0vdz09fDdaSUZCTXlXVE45OXZxd0VHMVR5Unc9PQ==',
    'WXdobDFpWnEwTDluVzVVNnlhU3Nkdz09fHQ3QnNKOVV1amVoN1RjMTdZNEJmdWc9PQ==',
    'UkdZbDVtNlhsbFFyd05EZGdiNGNaQT09fDJrb0ViOU9TcUhvWkNOVmpkWUwva2c9PQ==',
    'OTNLNC9iYzcvTEQ0NjFLN2xhS0JMUT09fDNmcHNoL2RIaERGWkxKb0xLeEJDMGc9PQ==',
    'VnJzcG8xTmd5NUpEMldpeU1LWjlLdz09fE8yQzFsNmJVRjlKd3JsbUxCaTNiWkE9PQ==',
    'eTlVQjlpMFJqOURPWVBQaUJncEVPQT09fHl5TXN5bWNFbzFoVnNxRlVIVzJJV1E9PQ==',
    '[{\"drug_id\":\"NnJDampuZklxUFdLY2NKdzJBSHRydz09fERzR3ErZ3lYN0xsYmQ3MHk0SHczUXc9PQ==\",\"drug_name\":\"YlVqbzJWdEN6QnVOK2dVYXJMZ2RRUT09fDkyOWZxUzZ3RGJjWVUxK0d2cng3WEE9PQ==\",\"dosage\":\"NDc5RjJhTzZYY2dqNkFXRkc5RzNJQT09fE5leVcxRUk1SERBQU1zekpHZGdzTUE9PQ==\",\"quantity\":18,\"cp_pu\":0,\"sp_pu\":13}]',
    '2025-10-04 08:04:02',
    'Out-Patient',
    'WkRRL1IwaHNOd1hPZWxTbDRTc21PUT09fGpmcy90ZmE2T25VL3RqTzAyUHJ5V3c9PQ==',
    'Doctor Abiodun Salako',
    5626.55,
    0.00,
    -5626.55,
    'patient',
    'v2uoz.1759561442965',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    85,
    '12/2507/GOH',
    'R3I0NWRQQ0lOQ2pzOEQrcFNUUjJ3dz09fGlYdzkvWUd1V2gvdDlKN0pVYVZpTlE9PQ==',
    'L3lnN0hwd1dhZkpzQmxlZXlQdlRpUT09fDFpdlRDNXl6TTNkNU5iU3ZMNDYvUVE9PQ==',
    'eWFKeFVlUWVHL1o2WklCS0w0YVpndz09fForZlh1ZkM3OVlFcGZtNVgyS3U0bkE9PQ==',
    'VUpqbE1BLzVJVE5lcDhSdFRzcVQ3dz09fHEyQWtPOWx3OVR0RUhwRVRSSlBkaFE9PQ==',
    'RjMrU3dFM0k3TEdJVTNBRjJDVjJuZz09fGk4YWVHSDVmYTRlbXJlVFpFdGt1ZUE9PQ==',
    'T2dyTDVmUndRNUVPR3BYcEpaZUNEUT09fFNEM1JtY2FpY3VJUkhxaC95ejkyZGc9PQ==',
    '[{\"drug_id\":\"N291RldKYW9UajRoYmZFY2tQQnhrUT09fFVVdFU5MWJHT1RsU0s3YzJVaWRPYmc9PQ==\",\"drug_name\":\"KzVuQXZqRGhSeTBuc2IwYmcrcUtPZz09fENWWS96dHpUamNoNmRuRWlMOUh6enc9PQ==\",\"dosage\":\"WHplMmo4cXdhRzlxdDRCWFl5dDhjUT09fDR1bVFCSVdBWm93YnY3bGZDM3VieFZmbmFEV2VzbDNJald6T2VsRFFRTHc9\",\"quantity\":40,\"cp_pu\":0,\"sp_pu\":750}]',
    '2025-10-04 08:12:09',
    'Out-Patient',
    'M2Y4QUtSNmdXQ2RDSmRvcEtUVjdIdz09fE5kSWFaYVRJUGtDWmJLaUZVN1MwTlE9PQ==',
    'Doctor Abiodun Salako',
    2956.25,
    2956.25,
    0.00,
    'Loyola Farms',
    'v2uoz.1759561442965',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    86,
    '12/2507/GOH',
    'UGdGdUFFbjVVSTJqbis5L3F6dE54UT09fEVZbndZQ0F6VDZ2WlRYVXdRYXgwL2c9PQ==',
    'VkdIRXFlV3VxNWdPRzNSL0xjVzlvQT09fG5HVzdpbVY5bmI3Njk2aHRFR1RhNHc9PQ==',
    'UmVsWVJiclV2SStLZGRUeTFsTEpIdz09fFJTeWtIZ1VzYkljTzk4MnRPU05KeVE9PQ==',
    'MVVWbUVLTmJYWnFTUVhXb28zZjk0Zz09fEFoYnBjL1lReDdkVUI5ZElxdVNYL2c9PQ==',
    'NElwQ2ZYSXFJNTVEMkRaNm1nTjBRdz09fEI4TFU5blJPSTg5NUZ1WHk0NU5URXc9PQ==',
    'eldIdGpRTmpVVUNhR2lrME8yTU1zQT09fC9VZVZ6Zyt6eWJYK05vZHAxd1cvbXc9PQ==',
    '[]',
    '2025-10-04 08:16:20',
    'Out-Patient',
    'OTRGOExQbmJtcmNBeFg4bHJkTTZ4Zz09fFhyZXlQOHA4UmtZMGNjN3ZzMGV2VFE9PQ==',
    'Doctor Abiodun Salako',
    5375.00,
    5375.00,
    0.00,
    'Loyola Farms',
    'v2uoz.1759561442965',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    87,
    '22/2508/GOH',
    'a3NmZjFQSzYweWo5enlDTHlwVVViUT09fHlJcXRienF2MitUdHhIRkVjdEJzT2c9PQ==',
    'L29WNXhXUTRnN2t3NTVWVEYyRW1TQT09fGUrVVZyMjJwNTRDcDBlY1UxVmxxTjNMWmxCbElGU2ZjSS9iWWdpSWRFdGs9',
    'YitlaUxSZ3BPN0lwamp4RitkeXljdz09fGhYL2hNd08wUW9mMUJjTEFZOFFrcFE9PQ==',
    'eTg2ZmNhZUdXTGdvZFJHblJlM2VkQT09fCtOaDdyc0c1eVVLeTl4cHU3R0srRUV5dkU2SFJwRHBaVGEzckF5WjNpWFk9',
    'bnB5ZFV0eThodmhBWVp3VmlaZVpsdz09fDRWdHQyaXZ3TWFOTFc2NTdJblhNZlE9PQ==',
    'bjdqaDBpdjhvZFhENk1qNXRqN0lGZz09fHNQc3g1U1FQZG1pcUM3UWd4djRyb0E9PQ==',
    '[{\"drug_id\":\"N/A\",\"drug_name\":\"OXh6ZkhyTStHQThvcUdGY0gzSGZ3UT09fHpqTDZWM3U5ZEh4T0l2Y2M5ckY4Y0E9PQ==\",\"dosage\":\"eTNraXFxQWtLWDBJY0lEYm9GcWZTZz09fEhxcERQVUhvTUFIZzljMFdqVzR1NWc9PQ==\",\"quantity\":0,\"cp_pu\":null,\"sp_pu\":null}]',
    '2025-10-26 14:18:20',
    'Out-Patient',
    'MWpnWnorQ1Q5c2JIYmJlK1d5ZXkrUT09fG14MS9IU0RTUTNhNERHbVgrWGRvV1E9PQ==',
    'Doctor Abiodun Salako',
    0.00,
    0.00,
    0.00,
    NULL,
    'jh859.1761484700286',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    88,
    '22/2508/GOH',
    'RHdZdS9wUWJFL1M2aGpwcmwrUGhFZz09fHNXeHViMEFoZUQ1cnlFV3lXNjA0ek1lVVMzRnkyMXg2WWpsb2FueGtiS0E9',
    'ZnljTUlFSTZYMUtabG8rUTluY0w3dz09fHh3N1hGR2ZBQkg4bHdjMG5nNGRDOFdIb1dMck1YR09JWkRXaFNmbklEbFFxelo5dzZwRytpYzg3ejJXLy9aRHdJSVFJSjFaM09ENUNpNzVMWEVreHJRPT0=',
    'WUFERGp4WUhXZDZDZk13bVlLOUJCUT09fHJ0d3EvQnAwbEk5b1lTMEpVTFl4c2c9PQ==',
    'U3RnM3I5ZXIxM3JYVlhGMWVWSjlaZz09fE9yMnBZRFJKSDdOQVlLU0h1WWEzY2ZxRnZFK1NsSUpBUXNWZGMyZFJCa0VlWWtUQzY4SEZzK29la1hFcW9Vam4=',
    'Zi94WjhVRjAxZ1pseGlVR3Nvekx4dz09fHB5VFpST2lkVHhXem1VaXJTQWlQdlE9PQ==',
    'WldneU9jVEFwdU9jazZhcG1YbGpLZz09fGsvbEpLZEdvYW51Yis0UkU4aVRBTHc9PQ==',
    '[]',
    '2025-11-16 10:06:49',
    'admit-for-observation',
    'eDVuUHcweWRCTWNkSUd2RHZ0K1ZPUT09fGlDbE15OVJ1VXpRb3BieEZEbkxlcUI5cmp2SXRiSDhNWE13T2RZQ3dNSzQ9',
    'Doctor Abiodun Salako',
    0.00,
    0.00,
    0.00,
    NULL,
    'ue6ql.1763284009423',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    89,
    '22/2508/GOH',
    'RmFQb2wxczlVejN0VTloc21jYnM3Zz09fHB5ekNhQ3Z5RS9tQXZ5VE5SQjBtSXpLYmhzVjI0V0VCUktlaEljaHRQUjA9',
    'T1JteVJBTmw0SkV6WGdDVVAwTFN3dz09fElVYytNdHlNSjluUFFEU01NYWlFSkE9PQ==',
    'S2ZlSjFrSkxCVjVZZGU0UW95Q1lWZz09fFhPVW90SjdHTEozODRoczhjTG1pWVE9PQ==',
    'cGhlQlNWSzQ1a3R2anZEWjIxTmo5UT09fEJhMmU1M3JQUXA2cm5IUVZRb01nSVE9PQ==',
    'SUd2TFV2OUgvRW1uUWd5RU5yR2NYQT09fE54KzJqYTdFbllXSmFVQ3BYVUdpckE9PQ==',
    'cVhXMnBkREFJdmhlbkRlS3B3bmJoZz09fE9RWUtBT1JIMXRuQkF6YWhSM2VsYnc9PQ==',
    '[]',
    '2025-11-16 10:25:57',
    'observe',
    'bFdKN0tQWDZ1bkh5aldUcmdLR3VjQT09fGdod2FpdE5SbUNoTGRhVzE5WXh6MkpPZ3JYSGtPOEovdWx2MHArZnk3QjA9',
    'Doctor Abiodun Salako',
    0.00,
    0.00,
    0.00,
    NULL,
    'ue6ql.1763284009423',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    90,
    '19/2507/GOH',
    'TWJRdnJaU3ZUTjl3WnhNNVpwSlYwZz09fDg3MW1RM29MUlFrSEp0bG16M0ZRVWc9PQ==',
    'b3ZHMDFVbC9TTXQxZ2VHRm1aSjdFZz09fEFOb0hkWkREY3lnKzBuSDkzNlkwTFE9PQ==',
    'Y3YzaUNUdVZpZ1V4azllZXJiWFdpZz09fFNqOC9kYUMzVU5zZkJkbFo1MTNnWnc9PQ==',
    'eUg3QUpISk9nVm9pb09WY2d4ZnZwdz09fGlhNE1Rb09aampKT2ZTSTl0bEE4blE9PQ==',
    'NGt2czFMSVZZUmM1RXN3d2tZM1FOUT09fE5jR0h6RDlLakpKdGJNNml1YnNpQnc9PQ==',
    'YUcwcXpra3YvWUVVK1VLN1FVZllZUT09fGJnQTFyQVlPekx2WnVGTlFWcCtxWGc9PQ==',
    '[]',
    '2025-11-16 10:28:47',
    'Out-Patient',
    'dVZzb1o2aFRsSm0xUTRqODRyRjRnZz09fEFHaTdoZG9ZcHhDY0hYdDdNbHRhU3p3b21KWHFnZ1VrMWRiMWNobFAyeGc9',
    'Doctor Abiodun Salako',
    0.00,
    0.00,
    0.00,
    NULL,
    'rmlym.1763285327542',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    91,
    '19/2507/GOH',
    'NHlYS2tKTkF0NmtGWllXMEZLaWx3Zz09fHhMNWhDMEZGRlNTd2JEa0RUTGxOMUE9PQ==',
    'bk81ZStYM01XaEoxWGhrQ3puY2k1QT09fExaN3h3VDROT1hpQ3o2SHJNYnRUYmc9PQ==',
    'UWhkK2NNeEdjcVI5NUlvZ0V2bzVyZz09fEJwVlhZRTE4OEM0a1V3OTk2UmtPanc9PQ==',
    'dDNsd01JUXFuNm8xT2p5QUxMdDJEUT09fDRnVzA2Y1Y2YzlzWlpndHhOT0dxTnc9PQ==',
    'T1orVFJCMWpLdU4vcExxaFlJbDB1dz09fGo4UWYzK1ZTdXlVNWJJQVVsQ1NnTHc9PQ==',
    'cXRodnJSMjU2aVQ1YnBRRHVpV0E3Zz09fE5vaVRwVFBKS0tUbW5wcjE4WG8wRXc9PQ==',
    '[]',
    '2025-11-16 10:36:50',
    'admit',
    'WXNRZXhLMEhTYmErUWVnQXVWTVErUT09fFFKWkZSQlNIZWpoZGlFd0dDTHY3aFE9PQ==',
    'Doctor Abiodun Salako',
    0.00,
    0.00,
    0.00,
    NULL,
    'rmlym.1763285327542',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    92,
    '19/2507/GOH',
    'Z1N4NkV5cHNHVE5wSStLbDh0enB5dz09fFM3YnBrWEt3WkNZMDc0eDBkMEFtSFE9PQ==',
    'akhlVS9xQUlROFlMWkE0OHkyY2JHUT09fE5ib0x0UW42NThzMStwYzRLaTZXQ3c9PQ==',
    'a3ZRUHdLL2RKY0JiNllwTVphU0Y2Zz09fFZBRUJmVVBUTGhvSGhJVVZpWmNNYVE9PQ==',
    'VXZXb0VXWEJoNEk3NjVtaVM5U1gxdz09fFF1RnpWR0hYUzZLUkR0R3pmVGNGSkE9PQ==',
    'UGFwQStGNndjQUxyN0tPNFlyeWUxUT09fFpSV2F4d2JEQVorVXBLc3BHMXNmc3c9PQ==',
    'aW15QmtCSXdId2JzcTEydXllSEhkZz09fHByTElCYnF5ZGtObjVSSFhUcGJEeUE9PQ==',
    '[]',
    '2025-11-16 10:41:15',
    'admit',
    'ZFdhQnF3M0hNb3RtNHo3S1RTZGhhdz09fExCQWNwaHZpQWVDYWlrbzlmM0RzUEtaVFRaSVcvby8rdG5DS0wwQnJqK009',
    'Doctor Abiodun Salako',
    0.00,
    0.00,
    0.00,
    NULL,
    'rmlym.1763285327542',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    93,
    '19/2507/GOH',
    'ZmorL0s0TVViYTBBWGNyUFc1aDJ5dz09fGxib1lyQzMrby9GZVBabmNPcHpKS1E9PQ==',
    'V3NUdlpmOEU4UkJMbmduRVU4TXgydz09fEthd3ZpTDQvWVN5dld5amxuRG91WHc9PQ==',
    'U091aExoMG4vZ2VOSTBMNCtYbVdCZz09fFI0aTVoRXE3R2tCVzh4Z2ZQbG9pb3c9PQ==',
    'VGFaWHNYdXRMdWpxUnRNVm9VL05Vdz09fEsvN0tJdFliZnFCVFBZNURwb0puakE9PQ==',
    'YmRrNDQwaFo2THg5SzdlOUZuRkhhQT09fHdXM00zSU13bDF4UXhlK1d4STdxUGc9PQ==',
    'aXBHOW9pZXpVcXcxNklGc1k1L1JLUT09fERSUFZDaFFzbXZjZzRzTkZ4YXdvMUE9PQ==',
    '[]',
    '2025-11-16 10:43:12',
    'admit',
    'dlNtYlBnOG4zb0srejZQdVBsMzdmdz09fHk0TjZMMGtYckphUkVYSmNNbHFlWUczcnRZY21ZNHRYVU9UdzVyQmVFT3M9',
    'Doctor Abiodun Salako',
    0.00,
    0.00,
    0.00,
    NULL,
    'rmlym.1763285327542',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    94,
    '21/2508/GOH',
    'dXlHK3AwY3FPNVp2ajFJdEFrOXp5dz09fFhYYmVkNzZUWUhDZ2tLblZTY0ltNXc9PQ==',
    'ZXBJcnMrNk4xSXVXYThtVmhpeVhEdz09fE9Va2NGcVZOUDBmOFovd3lTcGlTV2c9PQ==',
    'bHlMc1hLODRQMkpTbFQxcTFYNlhoQT09fEcrRG83NW00L3FWTWdjV2xrSmV1SkE9PQ==',
    'ZU9odE9mcFRnaDA2UVl1MUM3UmtFZz09fC8rWWt1d1FpNGN6bGh1V0JFM29KY3c9PQ==',
    'd3d0SUl0NmxqZXRYbkJidmtsQ3luZz09fDZuZVlScG4waTBOR3VYZDRYem5LQnc9PQ==',
    'bmhhSHNBc2JWVkNRWVU0RHZ5SHd3QT09fGxwckROLzVCcmZCMTJGaUJ0MmVxT1E9PQ==',
    '[]',
    '2025-11-16 11:08:00',
    'Out-Patient',
    'QWxqUzV5MzZmWjh4VFpQVEE2QTM5QT09fExja2liSG9hY2dCY05TOTZ1NmdqQ0hzVmg0UUFFMERhdXBRaTlQdlY0TlE9',
    'Doctor Abiodun Salako',
    0.00,
    0.00,
    0.00,
    NULL,
    '7nbwk.1763287680296',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    95,
    '21/2508/GOH',
    'RzhhWkVLYS9UK2JOQjRpOFBQcFVudz09fDQwbk9lbTRYOTdUMWI2SUZOeUpyZVE9PQ==',
    'aE5TZzQwdGFrdnRUV1FCb056R3ZYdz09fE4zT2NSZWR0OGg2RGRodFROVVJwdWc9PQ==',
    'b0NWQ1hqbHRVa05nQ3ZRRmxyTUpXUT09fFJ5Z3ZwSjFIcWMranpJbFQvYnVkVWc9PQ==',
    'ZE8zMWdrVFhJU2gvaU5JdWhVRjQvZz09fERKTGVhNnFFR1RBV09KMFN3VjdTYWc9PQ==',
    'bWttYzl0enBGMkRMbTQwSXhXdVBNZz09fEJjOUZvak85ZldSOFZyVnhzU0FrWmc9PQ==',
    'Y292bFl4K1BUamxsbHlLeUFsaWlCUT09fElTMGZ0NjY5RHl0UTVqQkNTY3FmWkE9PQ==',
    '[]',
    '2025-11-16 11:09:17',
    'discharge',
    'Ujk4MG0zTVJNK3hzbGlyVXJFbm9Ddz09fFlrYUFOcTBnam51ZFV3U1BGY1M0QmZBbkEyVENtcFo0eDVhNlFUUVB4VWs9',
    'Doctor Abiodun Salako',
    0.00,
    0.00,
    0.00,
    NULL,
    '7nbwk.1763287680296',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    96,
    '18/2507/GOH',
    'bFBvNGg2VDRDR3JjS2QvOHlhaUxLdz09fFdlaWtINXpnbTJVdENsVGhlMXd6b3c9PQ==',
    'c1ZvTEJGT2NSZDNNc2FJc1Fvd01IZz09fDZHZU9TWUVjZ1dRVlp2TXpJa2R3bVE9PQ==',
    'aEJNa1N1Q0Z3cW9NUFc5clpiZnc0QT09fFJua1pWdmIrbHhkQ2JxRkVDMis2b2c9PQ==',
    'VEt5dytWbERxSzEvb2ViTlpDRkViQT09fExxbThmZ3A0YnZ2dUtuUThrSW4vRWtzSGRQTGlEbE9obkFWdWxjT0xEVER2Y05hRnljU3ZJNTBXMTlJKzYwdDFYZTA2NGNGaG5hUHZINURqWmliWWZnPT0=',
    'Y1d4MWJ5WHQyOWdCb1N1K0c0QitMUT09fGZZMVphVlhDdXZSNzhGV2JwOXNDbkE9PQ==',
    'MVNZb0V1ekJUcENwRUcyV1hIWkhzUT09fGNvU1NxT2p4N2VHRGVOQ2hCTDh2V3c9PQ==',
    '[{\"drug_id\":\"Q1VSMHlLcnJOWTNKWWxZOTlacEcxdz09fE9uOTRqcE8rTUVMS1JHL3Q3MWZER0E9PQ==\",\"drug_name\":\"RHVxNjBTcldTazlNMkJCcGVla3poUT09fERiNmphcndRNEJBQlg4djRBMUFveGc9PQ==\",\"dosage\":\"UitSUTYyQ2FPOExiNUJzcUpjaXI4QT09fEh3QWYwL0RWQ0ZSNGFDOXVzTE9FbEE9PQ==\",\"quantity\":18,\"cp_pu\":0,\"sp_pu\":13},{\"drug_id\":\"Sjg4aTk0azRUbU1wN1hTZG5QbjR3QT09fEtoUnJDZmNkNWVGUnBUb1phTjFkVEE9PQ==\",\"drug_name\":\"Z281VGFsakJSblF4MmQyNlJ5YVFBQT09fEpoM01GQjllY1hocUU5c1ZBc1VUa3c9PQ==\",\"dosage\":\"d3VnSlZQN0tyOTkzZkYvQXFTMGpJZz09fFNQZ2dvMzdnRjV6aWs0MWE3bDlzamxjRDhtckhHMXdkdkU2dDArSVFUT0U9\",\"quantity\":3,\"cp_pu\":0,\"sp_pu\":0},{\"drug_id\":\"c2VUbUlzbjk5VUZXSkpaMEtGaThndz09fGxIREFiMTc0OWt5RGVmUTFIcXhuZUE9PQ==\",\"drug_name\":\"SFF1NzljTDZubGF3cTBKT3JUd2NnZz09fDFYNUd2anA1RlU3KzVUaTdHZHNwbi9PYVJpYi90di9Xbk9kS3hKK001SWs9\",\"dosage\":\"cG5pbTlQd2xXaVE3MWtBSmZaaWF3QT09fHE5UDJyVHlNYzRoaDJCNjh3UHhoc2ltZWY5bjlGRlVWZUZvU3FMcjFpRFE9\",\"quantity\":1,\"cp_pu\":0,\"sp_pu\":1500}]',
    '2025-11-24 13:09:54',
    'admit',
    'ZTdzVkJKWTN1YVJ1YjBRd3hkdFA4UT09fDZ4aEhWTFBRTVh4RUd6WE1YVzZEd3c9PQ==',
    'Doctor Abiodun Salako',
    0.00,
    0.00,
    0.00,
    NULL,
    'r3j5n.1763986194296',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    97,
    '7/2505/GOH',
    'YXAyTGlJQ042ZVJUMUd0YkRTMmU4UT09fGdMVlpueERYa25IYnJ1WXJHZE9kL1E9PQ==',
    'WFRwZ3RNd041TzJ3SVAyMDNFN1l3QT09fHZNYWJqVEtmZ3BTeXNNNklkd0ZyWkE9PQ==',
    'NUdjVmdZSk0rMzRLVXBlWTYvY1VpZz09fGEveVJBSVUrVy92aW05U3FjcFlod0E9PQ==',
    'MDE5MHhOVCtwTXFNMmh1WVQveXhIUT09fDl1M3VSWFQxTEwrMDE5bm52eHJaelE9PQ==',
    'NklhVkxGWVlDei82RUE0ajZVekhidz09fG9rQWpKd1pUMzlHZU1LeFJIZ2wvcHc9PQ==',
    'SnZBRFBuemFoT0NTakcvREE1dWl2UT09fEozdFNIWEM1dG1OYmZ4OWFZZU1JcGc9PQ==',
    '[{\"drug_id\":\"czl4U0xpUTZmUG5LMEgrZE9hYU11dz09fHU0dFhpSENqUkc2dWRvSmVEajJrQmc9PQ==\",\"drug_name\":\"ekJ1ZUUvODJHWnNrazNVc0o2Y285Zz09fDUrMUhjYzdJZlZhUVgwbEtoK0FWK0piUER0bEhHWFhLNWJoUTJmbmYremM9\",\"dosage\":\"ZUR1dVpZNUZaRXpyMkE5bVhYMU1hdz09fE9lcWhXVjgweWJ0NldPNzJaL1gyMEE9PQ==\",\"quantity\":1,\"cp_pu\":0,\"sp_pu\":1500},{\"drug_id\":\"Wkg2YktEOU5ZSnVOcVVDbzU5KzJXZz09fG5aTUpKbXdaWHF4dTVpVnVBb1JpSVE9PQ==\",\"drug_name\":\"dXRUNWNkWnRQQkptRy9NekhJbmp5UT09fGNKRDArd3JiRHZ5c0RzNEp3NFNaTUM3ZXJ6Zm9xbzNKL09UY3NkSzY3TW89\",\"dosage\":\"ZkhGdG5qUkFqSUhSMzQ1SS9mR2JRZz09fFEvN3BNWUFTZS95bEFHSzMzQXVCYm02Mk9GVC9hNHFLYmsyR084UURpK2s9\",\"quantity\":1,\"cp_pu\":0,\"sp_pu\":1500}]',
    '2025-11-24 13:23:25',
    'admit',
    'RmhQS1JqOW5YdFplQXRsbWN6Q3VWZz09fHNET2dLTDlmSS9KYzZMNVlYMmZ5dlE9PQ==',
    'Doctor Abiodun Salako',
    0.00,
    0.00,
    0.00,
    NULL,
    'w2xlf.1763987005295',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    98,
    '7/2505/GOH',
    'VzQ1bFlobnhOdGtTYW1tYTVwNGJqUT09fEszcWR1UXR5alNrbVZpQTBXNW5MVEE9PQ==',
    'MjlOWWxHeFhhQkJ0Mm1aUnQ1QmE5dz09fFp6OSsrcE5sS3dSSkFZVW04bGI3Y0E9PQ==',
    'OFpSYXRGUjNGN1p4dENrNGtISnRRdz09fGFyQ2lic2N1L2U3Z1A5QXQ2NStaNlE9PQ==',
    'dEtQbkcvNnM1c3FzNkk3aDFvWGEyQT09fFpOTmxZRHcwRWpLaG5NV3JqazhVN0E9PQ==',
    'bTVHS0dMZGJwaGhIMEptcjZJRUs3dz09fGZ1dVVBaDI0MlZIRE9ZQUVQQVlFblE9PQ==',
    'OWtiVzB2OXpLRXFhZUE1Yk9GSXF1dz09fHk3UzZzZmRxQld2OHhFeE85MzBIcUE9PQ==',
    '[{\"drug_id\":\"R1RXTDFKVmZNRE5VK0l2UC84RFBFdz09fENrRlllWk8yV3g4SzJtSTBIV25ISkE9PQ==\",\"drug_name\":\"RU5jL0ZwYXpjdmdrUXZOSmJ2Zm80Zz09fDByVWh0UFIrUFVFL0dnWEtJS1UrcEE9PQ==\",\"dosage\":\"VlVocHhXRFZhSm9TenYwbDRob2MvQT09fHNVbitZRFprQXpkKythNVkwck0ydnc9PQ==\",\"quantity\":18,\"cp_pu\":0,\"sp_pu\":13}]',
    '2025-11-24 15:12:47',
    'admit',
    'dktOWng3VFhHcTFUT0dEZHJXRzRlZz09fDZhS1Z2d0gxWFdSeFRLdzhMWmsvVHc9PQ==',
    'Doctor Abiodun Salako',
    0.00,
    0.00,
    0.00,
    NULL,
    'w2xlf.1763987005295',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    99,
    '7/2505/GOH',
    'dDAxSmRDRmxvbXR6ZnhLbGlvU0pLdz09fGwxd2syTmxlcFR6cDFLUUxWYis4L2c9PQ==',
    'WTh5R0N1di8rS1dRNWIrWTdHUEJ3UT09fG5aa2N1YklSRmZPa0RxNGpqeXZFMVE9PQ==',
    'cC8zL1EyRDlZTnZndWxwL3loL1lDQT09fEFpYzNqU1ZCaVllS29qZUY1allDQ3c9PQ==',
    'SytkbmxKV2F4b0Y1OW9GYTg5MVBqQT09fFd2aENHN2N0dHlCUGZHck9xeldaaUE9PQ==',
    'TUkrckswZmFFSmZlWVEyVzBWbGpQQT09fGI1TG93dlZYZDdncW9CN2NEK0RjZlE9PQ==',
    'SE1xeTJpanhiaGxyU1RkZFNuTDJXdz09fGRSVlRqQ3FmeVQ1K2Q4MkoyQ1E5U1E9PQ==',
    '[{\"drug_id\":\"TmZCNTVqQ0RTYldsOEVrQzd2SUFQQT09fGV1UWx1WGl2QnozQnI0MFRELzdnQ2c9PQ==\",\"drug_name\":\"Tlh0NjM0VjQ0cU1pWVNDNlZFSTRIQT09fDZuUmxiVUxsdWt5eTlxanFOMnJNQjYvS0k0NEZJMit5VC9OeUpob0h4eVE9\",\"dosage\":\"cXAxclRaRlhuZ3NSSDlpY3RTak92QT09fHVvNUhnRjcvZzJxdTRXbGNleWhPa0JFdmFhY05YWEdmNTRycHduQlViekU9\",\"quantity\":200,\"cp_pu\":0,\"sp_pu\":250}]',
    '2025-11-24 15:58:57',
    'admit',
    'L2xHWVJNRUdYV1V6ZkgwZ3VOWVNMdz09fE12Y0theHhqNmVocWxwKzRjWEpZSkE9PQ==',
    'Doctor Abiodun Salako',
    0.00,
    0.00,
    0.00,
    NULL,
    'w2xlf.1763987005295',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    100,
    '7/2505/GOH',
    'c1lzendGcmpHZWJ5b2diUk93NEREUT09fFk2N2FYdGdhUzJINVNRVXBCQ2FXRGc9PQ==',
    'cndlRm9TRUI1bE9nUVFBSE8rMUwxZz09fHJwMEwrSHBFTmUwbENSU3FkWEtTVUE9PQ==',
    'YzVaT2FtcVdSeG4vQ3FYd1loanhHdz09fHoyTVZmNmdweXdETHA5N1VKenNDanc9PQ==',
    'OW9tWHVSd3d1bFA5UHFFZVEzMVpZUT09fE9DYmt1S3hUU0toUWx4WGs3SUVPK3c9PQ==',
    'U1dCQm1qeWI3N1R5OHN2MDZUNHBKZz09fGJrcjdqSFNXdXM4RSt0N1d1S2l2RUE9PQ==',
    'eWsvV3ZDN2JRTHhRczFSMlo0VDRMZz09fEZxdmc5aUNmdldpb2NBQlIvT1Y1cnc9PQ==',
    '[]',
    '2025-11-24 16:19:09',
    'observe',
    'ZDZKZHhaak9VZHpnUHNKbkhWbjQ1UT09fDloUGZCT3BlMkZ5cWJSSzBnd3lvVkE9PQ==',
    'Doctor Abiodun Salako',
    0.00,
    0.00,
    0.00,
    NULL,
    'w2xlf.1763987005295',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    101,
    '7/2505/GOH',
    'NExnZUhEQmdBWUF3TlRJUXFoMnJYUT09fEFxdXliQm9qenN3Y242WlJ5dkZlN0E9PQ==',
    'aG93MjN5ZmRwc0dWNXBIcEFVbDJ0Zz09fFRJL2F3Rm5DZTJaQjRQYm0rck1YQ2c9PQ==',
    'QUR5UlhWVzVMOWlaZ0loMFBGWDA5Zz09fFIzRDFEMXM1dlQrcE9VbUdrSkpmZGc9PQ==',
    'SHptUC9RelRPWkI1NXpQSjZDekNxdz09fDJ4aFBRQWs5djlxQUpwWHptZGZDNGc9PQ==',
    'RmJTWDFSQ2oyMXlCaDg0cUFkL1FMUT09fDd3NmhjYWtmYjNoWGlVdFRLZFBKaGc9PQ==',
    'QVRTNGxsSEhXNVowbGJNZHdtTkRtUT09fDBwSVA1MDQxbHdYdm1xcGJqaWlPT0E9PQ==',
    '[]',
    '2025-11-24 16:20:03',
    'admit',
    'TmNKTityTFZXVys1aVVhYTlrWGxXUT09fHFDUUxQZEVHaWI3bjRWcDl1WDVMbXc9PQ==',
    'Doctor Abiodun Salako',
    0.00,
    0.00,
    0.00,
    NULL,
    'w2xlf.1763987005295',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    102,
    '7/2505/GOH',
    'bUdtamlPWVhNOHkxakxMR25NYUFoUT09fEZGSG1BTXI4NkdmZmFrdkpUZXNVRGc9PQ==',
    'UkpGdFUzYS9nRCt3cldJczFJakdQdz09fDFMTWh2eFpDYXkyRUphWWhIMWJVS0E9PQ==',
    'ZnBsVkg3S3FCQllvVVBMbi9lV2pXQT09fGZpamhReENYSTdqbUUvSktjT2JDclE9PQ==',
    'Rm1aS24yWDlnMXpyUjByY1pESlV4QT09fHhmUlRDN2lPdmNXQ1RwL0E2UklnYnc9PQ==',
    'QmR6ZEFaNHU0OWUxMFZpSG5sbSt1dz09fDdtdUVSRjNESjRpZEhiZUppOE1ud3c9PQ==',
    'UHlySXEybDZVc2NGWDZuM0NMNnJBQT09fGJJVEFOcEcwdjJZRHBzUFlZaEhHbmc9PQ==',
    '[]',
    '2025-11-24 16:22:46',
    'discharge',
    'SGJUbGpHakVpb3FEdkE3TCs2THNWdz09fGNuL3Y2Z2VpRGFoby9lS2lyK1dTRVdDZjNybVVuZ2NwY3lZTzZxNk1abUE9',
    'Doctor Abiodun Salako',
    0.00,
    0.00,
    0.00,
    NULL,
    'w2xlf.1763987005295',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    103,
    '6/2504/GOH',
    'K3EvZEhab0ZPVkgrV2hJSys0bzBsdz09fGRacFVrY3k1V0xXVUFncStmbEJtUGNwN0Ztek1PWlF5WG9UcjA3cGlKdDA9',
    'SFllNzZSK0xJTHM2dHNLdUVzYVIrUT09fE1sYnRENGl0VDBGNURhSXJQVW84SUE9PQ==',
    'WjRtZ1YvbGQrUHFOZlJBeTRkU2VNUT09fGJTSTl5V3UwNkxmaEFWK3ZxY1pBSHc9PQ==',
    'NFpJSzhEYytjaXAxNURxRWFvN1lRQT09fHhOYkkrdk9ZSnp0UFg2Y00vTnJuSlE9PQ==',
    'Sk5Yd1cwYnBUQnorOGNicWhjYXdjQT09fFJ0T2l5cGttSVpQenU2M2VVRmxtQUE9PQ==',
    'T20wTHhwbHFPbk5xRUYxTmMxTGhPdz09fFM1Vi9mTVpDbkRkNzJwQlNTekFIMHc9PQ==',
    '[{\"drug_id\":\"L0RTcktzL2JJWE4ySEphMXBWS2tYZz09fGpjWUlIWFJmRERqR1FUZTI3blpBeVE9PQ==\",\"drug_name\":\"V0FnOE1GN05kVXBJS21ERnNJb2lMUT09fG1KNCtnWkgwTUlZeEJIakE1dWdDeTRjbi83SVpKUU8raS9TVnZVTlBvakk9\",\"dosage\":\"dEhRcGV5SEYrbHpxTlZFTFZoRTZkQT09fHk4azV1a0tRLzNxd0V5YUtTeHgvY0E9PQ==\",\"quantity\":1,\"cp_pu\":0,\"sp_pu\":1500},{\"drug_id\":\"RTBzSTZUay96dU9wd1BUMVkrN1E5QT09fEN0dkdxdXgzYTRCTzg5enZSaUtEbGc9PQ==\",\"drug_name\":\"TGp5azNtMkd1aHF6K25LK2ZEY2pTUT09fEdDS2lFMytGaHUvODh6OHcyQW5IaHlIbmVvdmRlemtWbEoxL25iMWZSY2s9\",\"dosage\":\"RHJxOXhjOTNpenFnVjV3VFBySXV6UT09fEZSSTRpQW1CaUF2L1lPOVpzSnRnTWtDRDltWFRvN1pEWnRrWjFpOHRXK2s9\",\"quantity\":1,\"cp_pu\":0,\"sp_pu\":1500},{\"drug_id\":\"bDlVbkYwcStURG1YSDBrMndld2hQUT09fHk1U0I0VmxVZ0FsamtnMVJMZHQ2bHc9PQ==\",\"drug_name\":\"amJBbE5Sa1pxWDBNUjVUUzFEekFrUT09fEw1RTNZWEVNclM2MXJibTdvNkNueEE9PQ==\",\"dosage\":\"a3BkRml1OGlIaC9aK1czWFRZWkRUZz09fC9HOW1wZW4wdjRDZmovZmJuSlpncFE9PQ==\",\"quantity\":30,\"cp_pu\":0,\"sp_pu\":13}]',
    '2025-11-25 09:39:15',
    'admit-for-observation',
    'ZWJPMzkwUzVuYTR1a0JuenBoOExZdz09fG1QNFZlUHU1b0Q2ZWZRZnRyZWsxb25RVmpVNlhoZStKaXlMQ2VJVFRFUVU9',
    'Doctor Abiodun Salako',
    0.00,
    0.00,
    0.00,
    NULL,
    '2nxj7.1764059955039',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    106,
    '9/2507/GOH',
    'Y2UyY3ErbWpCNTdjREZYblFsNnB0Zz09fEpMT1Yxc0JicVRpcVcyOGNsQkRKWWc9PQ==',
    'R0FiUlIyWDM2UTE0TmVuVDd6aHExQT09fGpWZE45cXFjRElCTXljUktOS3dPNWc9PQ==',
    'djR2RzVXUTRENVlGK0xYRlJVNGszdz09fDNXc0t3VitvbFlqOFVaZUxOc2VId3c9PQ==',
    'U0phR08wc2pUZ2dpVVJpdTNacXQzUT09fDdta21rRUlFTU5sb3hXaFNqemUxNFE9PQ==',
    'enlKZUg3c0wrVTNMOEQyazBSbEIzdz09fENrZ1VtUllXNzhIbzhtSHVydmt0WUE9PQ==',
    'U1h6WE8rOUtaOUxxZVptbDZlYWROdz09fGY2QktHdmJsZXBUb3ZuK3grcGlmMWc9PQ==',
    '[{\"drug_id\":\"Y1c0MWdFdnQrTkRmVytrSUtTK2lSUT09fEFjTkdweFFvalFEN1c3THRYdG92aEE9PQ==\",\"drug_name\":\"ZHpPQ041bW5nWGtveStQcnFNd29rQT09fGlSR1hvREplZXAxVW13aDB1Z3VVNkE9PQ==\",\"dosage\":\"b0gyaC94aDQ2eGFrei9ZUnB6MWh4QT09fENETnJ5MGEvVEo4Tk9HenFZelJKN1E9PQ==\",\"quantity\":9,\"cp_pu\":0,\"sp_pu\":13},{\"drug_id\":\"Q3pjZThla3hMN2QwQnFRYXpUb3lTZz09fHdXTmhuMXpJOXBVYm54cExvd0pmVWc9PQ==\",\"drug_name\":\"S2doK2Rac0Y3VTFQaHlwdWdIakd0dz09fDUzbHZFU0dJS1pSZFRWRHhqQk9qQmhrMW5TTEpNSWpVVkRPVlN2Z1plUE09\",\"dosage\":\"YXVRd1laaWQwMjJ3bmc3ZzlnRnRhQT09fC9tdy84bEFDeUN6aGtnVjdxQlNhTUVIYlpRSTdzdEl0RjR3WDJFOCtjZ2M9\",\"quantity\":1,\"cp_pu\":0,\"sp_pu\":1500},{\"drug_id\":\"RDltRlJ2eHlFenhocUZQcDRqcFQ2UT09fEI3QlZrbWFhdW5GMGxGZnJwT0YxVWc9PQ==\",\"drug_name\":\"eW9GTFZCbEI4Zkg5eU82bTdnMDUrQT09fFVhWndGdmpLYVovekh1UC9HT01VeVE9PQ==\",\"dosage\":\"ZlNPcGZGeUx5Rnp4SGo5b0hFa1Rmdz09fGwzbkJnOHdHczNwVG03RU1Bb2tFd1E9PQ==\",\"quantity\":9,\"cp_pu\":0,\"sp_pu\":10}]',
    '2025-11-25 10:17:55',
    'admit-for-observation',
    'U25VMW4yQlBoMGd6MkIvdUcybHk4UT09fHM3V0wycm4yTGN4MXJVaWlGa2pFalE9PQ==',
    'Doctor Abiodun Salako',
    0.00,
    0.00,
    0.00,
    NULL,
    'g211t.1764062275298',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    107,
    '12/2507/GOH',
    'L3QxZlZGR3pFazUwZ21FYUtuR1Ivdz09fG9ueTYxdUhTdEJzclY2UDNoSXhKTHZYU1p3ejVWSi9TdEZnL05zVWozSW89',
    'NU5zS1JDaVdSOXI3ajlzMjJ2ZWR5Zz09fHVrczZsUkI3dXRYUEFxL0ZTU1dTK1E9PQ==',
    'VEgySDUwY2Q3YzZRN0E5ZFY5UWhXUT09fHFxeFZBNlpGTm1KQXM0dk1uVXVPMXc9PQ==',
    'OWJkbm13TDA0SXZvc1k4QWRUNjR5dz09fHJodkIwMXZuc05Wb0FoeUF0V1R3cUE9PQ==',
    'ZHRjVHBPbmhEMUVHUUdCMitlQ24zUT09fEIrT0UwWFBySm01VEM5RTNPTlQzWlE9PQ==',
    'OWl2dlEwSVVCazNPaU5xMWlJaXRIUT09fExQOU1EWkYybWx5UTBOc2Vlb1AvTWc9PQ==',
    '[]',
    '2025-11-25 10:29:08',
    'admit-for-observation',
    'MCtxM0xqV0NRRGRPRE85WHBXSW5Udz09fHh6QzAxTXd0c0FjVnRLakx5bWovdlE9PQ==',
    'Doctor Abiodun Salako',
    0.00,
    0.00,
    0.00,
    NULL,
    'uexel.1764062948315',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    108,
    '6/2504/GOH',
    'bTc0dTNwZTdyTTNiNnM3Tk9UdkhJdz09fEI3emZmdVEzeHFBMmhETHRwVW0zQWc9PQ==',
    'L3pwaHZzbi9iMEkrcjg5ZDh6clozZz09fE9acGlQcGQvcHl2Z0dHK2FLcDE4UkE9PQ==',
    'NkJ1bkdQZU1idFZ0YVl3UGswbUdSUT09fEdLNHJvUFQ3ckhzQ1VLSlkwY1p3cFE9PQ==',
    'ZXhRa1FjZ1RvM01zUmZjaHp6RzdEdz09fHg1SW1WTDdVVEFRRk8zYktVSng0aGc9PQ==',
    'QTEwSlVpWTBFMkJlSXhBWWRLNmZSUT09fHQwdXJCdTArK3JUR2lQMHpWTmxsRmc9PQ==',
    'Mk9ReWFXaThHWUEyNWprTlBnTldvQT09fGtBMzh3dVVLR1p1bjhZUWlmYmpSeEE9PQ==',
    '[{\"drug_id\":\"anFZZmdidnlRVFZRa0dRZVJtMDJqUT09fFE1SXpMdGhiVVowUThUVnFaNWJNY1E9PQ==\",\"drug_name\":\"bTRkM1FMdkdHZXM0MnAzbGZJNXhHQT09fEkvNVhoQzJ6cXR1bi93NFFsVzIrUnc9PQ==\",\"dosage\":\"SW53TTJJajhEVHA5ZVgrdUx3OVVDZz09fEpwT1JyWm15SEUvY01jVDREbkVuZUE9PQ==\",\"quantity\":9,\"cp_pu\":0,\"sp_pu\":10}]',
    '2025-11-25 11:06:14',
    'admit',
    'ZytHNnJNdGlPajBtYlBVcnNneWJOdz09fHhUcTEra2lJb08waWxsMUJEbXRQL2c9PQ==',
    'Doctor Abiodun Salako',
    0.00,
    0.00,
    0.00,
    NULL,
    '2nxj7.1764059955039',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    109,
    '23/2510/GOH',
    'WUgvVUluMHFiRDh0WjJXNXZIc0VaZz09fHlFUGZ4dW4rSDVmY3M2ZThKbHRMS3I3WXdYTWxLTDFtdTY0Z2JQUTMwNXM9',
    'TVV5YXhsem9zcDBseHFseGxJMCs4Zz09fFN5R0pPRlB0dmhQUW5veW1pcURyNmRxcjUrNVcxVmJhVTJ2bG1qcEVPdGc9',
    'b3NoNXZ5Yk9zZm1ZT0x0YmNVRVZ1dz09fDJLTUczRm45Mm1mRnQ4K0FLWmZWWlE9PQ==',
    'NTNsK3liRTlRRTdDV3V6N1NxMnExUT09fFdoM0dwTWtPNW9pMWk0eEJMdXVkQWc9PQ==',
    'bDFUS0s2bXZydUZUZmYzczZNOU43UT09fE40MGtaMVZSOFZ1bk9GVVE0dndObnc9PQ==',
    'WHU3UXg1RFJGZUoyQTE3Q3VKMUZYQT09fHVTVUEyNEdMNzl4aDdYODE0NXRGamc9PQ==',
    '[]',
    '2025-12-24 16:20:15',
    'Out-Patient',
    'TkFxQVEzYzlqTkZuMWpkWkhucUpOdz09fGdYT0I0OWZOMjd5VEhsaU1RY1lXTmc9PQ==',
    'Doctor Abiodun Salako',
    0.00,
    0.00,
    0.00,
    NULL,
    '5o9dl.1766589615084',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    110,
    '23/2510/GOH',
    'RU8zQkJmN2VFY0FOaWpGTGVHSVRBQT09fGlEbHBONEJadXFXQ01EY3BpcjRweHpST3lLTGp2b0kyQ01CcnRkSTMyczA9',
    'L2pvK2lDcTYzZkVIMjRMejB1ZDhSZz09fG4zMEtxcFA0alo0OUU5Q3JOeWhpdEE9PQ==',
    'Z3FjbkNRcWE4SWs5dzJEQVlmMU5lQT09fDdHV3VDS3A3aGQ1ckVNaUIvSFM3WVE9PQ==',
    'djNSZXVMSk5GcHNObC9NUGdueGRzUT09fExYZDEwZnZHTVR5cjBxMGVZYlZ3a0E9PQ==',
    'ZHU3SG9URUVaQjFxcmtXeGxXaW5nQT09fEFtWE5xTGJKRkFsRm01emZMaWR2WEE9PQ==',
    'UzF0YXpwczFtRnhUY1VsR2lhRE5nUT09fEhRQVhBWXFwYUZiNnRQYXBvZkNwU2c9PQ==',
    '[{\"drug_id\":\"S2dtZ2FHOU1leWpxemNDYU5IeHYzdz09fHRVT2xvR1JSQUQybmI1Wk9hbHlxZnc9PQ==\",\"drug_name\":\"cG9BL2orUGdxTHVtT3daRWM0MmR6UT09fEljZmhxODhLLzhQd2hXbDRtMFNmM1E9PQ==\",\"dosage\":\"cHlkRnZuRXRzTlp4dDVaRTlYbHBQUT09fDRySTc0Y2ZTN3hiZmFWcTdXaUdNVWc9PQ==\",\"quantity\":18,\"cp_pu\":0,\"sp_pu\":13},{\"drug_id\":\"UlBSUktPN0xtQ2FaMjBxM2hQaSt3dz09fE84cHZ5S2VIVW41TmE0WU1vTEtMcmc9PQ==\",\"drug_name\":\"M1JvbWZLblB2T1BBNGRwTDlmcnQyZz09fE1kNXNIK204dFFBeWhKMmF0dDBVSTZwSUV6aWlxMkNCc2pIOVJFbkgwM2M9\",\"dosage\":\"VFgwOStxOHJlZVIySHN6Tm1udFFwUT09fDZRcDlSZmNLVTJxTzVqU1JYdkEvSDVyT1dMa0pmRDgrTS8vbkVxUElCZlU9\",\"quantity\":30,\"cp_pu\":0,\"sp_pu\":0}]',
    '2025-12-25 15:15:34',
    'admit-for-observation',
    'K0RLQVlEV0hTTnJjV2xvamFyall2dz09fDFpd3RNWG9iNjJuWUtyQUI1SXlOa0E9PQ==',
    'Doctor Abiodun Salako',
    234.00,
    234.00,
    0.00,
    'patient',
    'tzesl.1766672134843',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    111,
    '23/2510/GOH',
    'MzZaR0pvTW5odUUwY1UzeFA3NDRLUT09fHhrdFdqWUZYdmd5WWJaMHdJZ0Y4Vmc9PQ==',
    'aU5SY3JKYzUvb0o1clFxUGNzbDdLZz09fDFpUUFyZnJZdkhGd0MrK3k4Q2RzQUE9PQ==',
    'eTIveVR1VCtBVFB5eFZPTzcycmNGZz09fEVCaURKVDQxVnVraFpFT01YcVMvQUE9PQ==',
    'S3kvNlQyRmpONG42M2Zod1BJc0E4UT09fGJudFlhVHVxbW44VWVQNU9CTmJwWUE9PQ==',
    'bXB0QldxYjk0VlN6OW1pVnJISWdCQT09fGh3TmxwVUhUSWY0Ynk4d21rU2Uzbnc9PQ==',
    'di9pT3JGaEVFODE4K0gyb0NmODl0UT09fEZFYXZwNHRZUEhiVitaT3U3Tno4RkE9PQ==',
    '[{\"drug_id\":\"U3ovWVRvQ1lONzJZUU5ONm1aZTFqUT09fHFTQ2d1YjI1UGZEOWZLV2lzMkFGSlE9PQ==\",\"drug_name\":\"R1BrMEdMcjBwbjk3WjJWd1E0Z0l4UT09fDhINmNLaC9MMUZiamhrbWROWWZQWWc9PQ==\",\"dosage\":\"ZGYveXVaWGxBaXg0eVZOWEVJZjU4QT09fC9XeXFuclNCUFEvblEwd2ZyNVBxc2c9PQ==\",\"quantity\":9,\"cp_pu\":0,\"sp_pu\":10}]',
    '2025-12-25 17:56:22',
    'Out Patient',
    'YVVSU1lTSXh2SEZsM2NnbUp3K2M0dz09fFE3MzI0bGk3bFBHVjJ5VWNMZnY1bEE9PQ==',
    'Doctor Abiodun Salako',
    0.00,
    0.00,
    0.00,
    NULL,
    'tzesl.1766672134843',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    112,
    '13/2507/GOH',
    'UEJkOWszR3MyejRRR3F2TnJJVEhjdz09fHJWYWVZU0UrcWxjb0xCd3llOGNUNzRWNytEREpIbktJemZRSVl2Y05JVWdZOUcvSGdKaVl2enZwQmdzdlhSR1k=',
    'a3pLOWVHK2FxM1krQXlqcGVxd2h2UT09fEk5aFRab0o5ZHV1THY3dnpibTVGeEE9PQ==',
    'dlRxTVdqZUczeHlwMVAzMDFDTVZvUT09fE8vV1c3MnlucDVXSlZTN3REcTl5QWc9PQ==',
    'UkJDTW93Y2V0d1BMUlI0SFZTTWxPQT09fFhOT1FnNHBsbzhPNml2SUxRbHlXSWc9PQ==',
    'WjBCVW5vcEkyZ1JFQ0ZiL2JTaVhDQT09fGxCWXpnbzhVaGZxK2pMUE00RENqaUE9PQ==',
    'V1d1bzBlbXoyU2F1TG9zd05XNUVaUT09fHR3dXVROWJsM0VHMnJVUkoyT2Robmc9PQ==',
    '[]',
    '2025-12-25 21:23:28',
    'Out-Patient',
    'cWg1cnpWVXVNdzVlSmw5UzVIZTlZdz09fENyN0ZwQmdidEQyWWx0UnNVU2Z0SWljTzVqSmtJTXExYWxQZkdDTSs3Rms9',
    'Doctor Abiodun Salako',
    3500.00,
    1000.00,
    2500.00,
    'patient',
    'tyd9i.1766694208260',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    113,
    '13/2507/GOH',
    'cnkwQ0VmN2M2cjZvbFQzZ3ZSQkxMUT09fGNRSG12WTgwT0JxOEF4WlZlcGt6Z25kMWdXYkNwOWorZDhldVZZeUs1TCtTYWVjQUVEYjQ4Tko0QnF4QjEzV0piUlNzYUZSQ0xlcHIvd1JweWgvMGhodGxYN1NoeDNzTVNHTFJqMUVhUXFFPQ==',
    'SXA5QmM2dzNEWTA2OWwrZWYzeWViQT09fExFa0VYd0NuekNHOEcrRjFvOWJ1d1E9PQ==',
    'Zzdsazl6MDJ3R2ErSHNaOXRVajhBUT09fFhZeHk2SWJySnJwWEljMjhMeTRvREE9PQ==',
    'TGJSd2tZNGFzVk5RMkcyTU5qYUd3dz09fFYzQnhETzBFOW5yQWdvc09OL25nVS9Od0Zwa01UaHJvZVRVNTdUZVBpY2NFbnc3dTdEZHNlOGlZUkxLM2hZRWo=',
    'RjR3bzhmdTA3OFh2RDFRUGNIM1JJZz09fHdwS0FWYjNzeDlPQnBxb1RSRXp2bFE9PQ==',
    'dTYyV0ZraDYyVkw4OGpjODJwVnBhdz09fEo5eFdrYnVCSFhXMzhCOUVJWlgvSGc9PQ==',
    '[]',
    '2025-12-25 23:49:45',
    'admit',
    'NFFGemxjeEJPOThFQzdkbGQ3anMzUT09fFdIazFYL0c5L1R2Q3U0amJVdjE5MkE9PQ==',
    'Doctor Abiodun Salako',
    0.00,
    0.00,
    0.00,
    'patient',
    '4xb8g.1766702985237',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    114,
    '13/2507/GOH',
    'QS9GcTl4WlBQeWNtTGZJNVFGNGJ5dz09fGt2SDhqN2hmVmVYQTVxNzRHcG8xaHc9PQ==',
    'OGROVWtEbGhBRUMwazd5UU1pOG5vUT09fDY5VTd3UHZBZlc3SjFnSFI5TU9nU2c9PQ==',
    'aDhITFM5dnlSOUY5Wk1sTzNoU3F5UT09fHRXaHpXYTlLZ0FMckd3WDlvS2IvaEE9PQ==',
    'RUFoZVBtM0JnSTViWXBNYTI4NWdlUT09fEtlN2R3eFFsRmJwUTU4NER4MXVGRnc9PQ==',
    'ck9lU3B0MGxETFA3M1g1c3RyVWtLdz09fHUzZWRSQXEyMm9WSGdBWGFXN1RyaHc9PQ==',
    'R0l4TkFlTlRzeDJGYmZEeEhVQWd3UT09fFZCaGI1UC9ubWhtNHVqMFNWUGt0UGc9PQ==',
    '[{\"drug_id\":\"OENPVCsvMmpvNzYzS1JOeTYvRS9Ndz09fEhOcjZRR1VsZG9NRXU0T2ltbWcxT1E9PQ==\",\"drug_name\":\"d3M4S0RFNzRVblZWNGxkUERJK1hGZz09fDQ4UmxXK3oyVy9mTE9lUkw0RUQ0WVE9PQ==\",\"dosage\":\"b3AyQVZka0ZJanlDNkt6OHpBZjZqdz09fFVWRGlOdkJZd25VQi9FMjduUlVONWc9PQ==\",\"quantity\":9,\"cp_pu\":0,\"sp_pu\":13},{\"drug_id\":\"bGprem5RMjd6cmdBZFBUbDhpcXM4Zz09fHVXOXlETHI4ZG5zVS9BblpUZXRMYlE9PQ==\",\"drug_name\":\"NXR6OXBleE5PdXd2ek9XMWlqTWZCdz09fHUrSGluWWFISVhka3phODVPV0pDbVE9PQ==\",\"dosage\":\"UU1IcVZHRVJJU2ZYbDkyTlJ3RzhWZz09fExKV1lLdTdpblY3ODJhcVNaN24rWWc9PQ==\",\"quantity\":9,\"cp_pu\":0,\"sp_pu\":10},{\"drug_id\":\"T2h4cVNzUFhtaUU4RGRoMmRSSlM2Zz09fFZsaDErcUFyWkwvUVB5bTM1ODRxbkE9PQ==\",\"drug_name\":\"YjR6K2RreDlieFdXTEZweVdnVmJVdz09fDhOQU9EbzFOemZZclRJRlBZZisyVWc9PQ==\",\"dosage\":\"Y2ZMT2h4MG9UdEtOZXJ2VzNRakhMUT09fHQ4cU5pR04zQ252L1daRmQzY0VnY2htWGhmdjA3Q1o0b2FFL25ERnYvYWM9\",\"quantity\":6,\"cp_pu\":0,\"sp_pu\":0},{\"drug_id\":\"N/A\",\"drug_name\":\"eXZKVlRMNU4wek1tNC96eVMrNzZiUT09fHVIMTJrSGpwVEdTNk8wbGF1bDVsUFE9PQ==\",\"dosage\":\"RGlTdEQ1dk9ocmZ5WWphbjM4Tml6dz09fGpjcG9NK1dLUW56WEdhL2NYTkJub0E9PQ==\",\"quantity\":25,\"cp_pu\":null,\"sp_pu\":null}]',
    '2025-12-26 00:02:02',
    'admit',
    'bnRVQ29VbDdybjJucFJ1alpHZVliUT09fHl0L0dLT3dHWlVUS1B0bm10MlU5dFE9PQ==',
    'Doctor Abiodun Salako',
    0.00,
    0.00,
    0.00,
    NULL,
    '4xb8g.1766702985237',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    115,
    '22/2508/GOH',
    'cFpaV1pWOXdKaThoWDJnK3dBYS91UT09fGhiOFBzQTN1dURKa0lTUkdqa0wrcmc9PQ==',
    'YWZQS05VVDNEaW82SWQ1RmQvcFUzdz09fEp0Y3BlRThleDQwVnVmUVBZTWlFcGc9PQ==',
    'NHltNHdKc09yeEluSGJiNUxBSVV2dz09fDZUOGZTRnlOdHhITlBOM2Y3eDZLUHgwaEo0WGh3bHNiM0c1M3c4eFliT1E9',
    'STc2WjRXNE4rbWdDS2hnRmttZHNKQT09fHBSQnJ4UzB1TVhkN0F4US9IbjV0MHc9PQ==',
    'dklzN1dhdXBpcUhDWlhkVlJYRG1uZz09fGU2RmJtdERheWlKUzRDVFZqektOM1E9PQ==',
    'THQxZDF1REpHNXVmYlFpOUhlQ3dsZz09fHF2dm05Nk90eFoyVkVlWW0wdmJPZlE9PQ==',
    '[]',
    '2025-12-26 11:28:33',
    'Out-Patient',
    'aU9ZWDJjTGdkb1hUa2ZaeGMzaXlmZz09fExVb3NPR0syY20zOEdNVVFlTVVBU0E9PQ==',
    'Doctor Abiodun Salako',
    2000.00,
    0.00,
    2000.00,
    'patient',
    'h5otn.1766744913963',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    116,
    '22/2508/GOH',
    'UU1xQTh4L1k4OExCNXBZQ21TQkY4dz09fGV0d2ZJdXd4VVU2N0JkZUJOeFIwSmc9PQ==',
    'bkZsTXk3NjQzdjhvcThQYThTelFzdz09fERaa1luLzFqUEIvR2RkM094WnUxc3c9PQ==',
    'K2dYS0tjaUZMdzNiUEIzNzJCMzVrZz09fGlJTHRWZ0xZRWIrMXUyUmJ6VVc0M1E9PQ==',
    'aUNYTlovb1FnVjkwQXFTdkZJbldjUT09fFFNTHgvbEVkVmlMbG9MdjIrTlZXRXc9PQ==',
    'dnZEWE1DN0F3ck9rK2dZbW12SWZEZz09fEFXQWp5NzN1dFF3YlpPcDJEZkFZSnc9PQ==',
    'dTg0Y293eU9oK3NPb20wYmg4cEVzdz09fEwxU3BPbHZPNjlRMTBadDN2SkVkZ3c9PQ==',
    '[{\"drug_id\":\"N/A\",\"drug_name\":\"YkVuVVphU0F2T0ZKS0IzWVk4TUljZz09fGpBNG93aXo0NVk5Tk82SFZsRXhsRmQzZjBOR2ZVR2pXa1BBNEptcXlFdEU9\",\"dosage\":\"UFRQbkxYUkJVaTNieVM5aU90ZzZSQT09fDlBRXRLOHMrM3RsYVE4R1BxaURCcEkxT3JYcnpqb0sxNXJhRVZSUy9hREE9\",\"quantity\":1,\"cp_pu\":null,\"sp_pu\":null},{\"drug_id\":\"dkVWenBLSUdrb3NEOGQyNnZLRG1lZz09fFdnN0RyNEpnenZGOVlZU0xkQlVkeGc9PQ==\",\"drug_name\":\"cXZXL2sxbnczUWs2Znl4VWtaaG9ZZz09fGFUQ1laQnVUdlZueHIwd3BPcTd2NlE9PQ==\",\"dosage\":\"blVIdWRDbFRyRHlLMTh5alRMa29nQT09fGRhY2xHM3V0by9SMXUrQ1NuTEhRZE5CRUIwMTErOFFhb3ZHSmorMGZ1Zlk9\",\"quantity\":0,\"cp_pu\":0,\"sp_pu\":750},{\"drug_id\":\"WTNBdkFZN2htSFdPZ013OUpLNWlQZz09fFVRTVRMR1h5R1pBUHI4ZDhRKzNybGc9PQ==\",\"drug_name\":\"eXh5TXJDNDhtb3ZwVCsrc1RGY01Pdz09fE9mMldhc3dvSDJyRG5oYzNVc21aUWc9PQ==\",\"dosage\":\"Y1JqcGhGT09MbndMODdLYzJoNjJvdz09fHYxZDhnaXY5TjcwNkRzYUhMWkEzTWIyWG0yTGphMVhXcTZzdlVxakFHU1E9\",\"quantity\":1,\"cp_pu\":0,\"sp_pu\":0}]',
    '2025-12-26 11:45:31',
    'admit',
    'NDhLdFBiUU9HMkplaGUrVDNUQVF4UT09fHVKeE4yd0xvbFlMcHFjdFVKd2lkcWc9PQ==',
    'Doctor Abiodun Salako',
    4000.00,
    4000.00,
    0.00,
    'Loyola Farms',
    'h5otn.1766744913963',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    117,
    '21/2508/GOH',
    'YWxTOEJpMlRVd0ZBbStVaG5EK1FjZz09fEpqUVhuUmo1SlVQL2NweWREbThoSlE9PQ==',
    'NGhYV2NPVU1nUkxkb01raTJsL3Rpdz09fE96Tlg4bm1DU1dLN0tRT0xsNnRxdkE9PQ==',
    'YUM4S09jaGppV0RrSTZiN2tqRHE5UT09fFdrUkpDNlFqS1NjMjY0YUgzTDN5Wmc9PQ==',
    'MnU2UmJjYWZOR1ZpOGRKdjJ6RHRPQT09fGx3UnBhV3Y0ZG11VDF6ZDRGSW8rTnc9PQ==',
    'clJnMUw0TElJMy85dFhLbUNSU1dSdz09fENUeXlOd1NrV1lRMWZ3SlQzZi9OQ2c9PQ==',
    'ZzFsNTUvaG9CcTFQVkhEdEF2ZW9FUT09fFNUeCtiSXlnK2FGODV2NHZnY3hwN2c9PQ==',
    '[]',
    '2025-12-26 12:11:17',
    'Out-Patient',
    'NFZBY0Vna2RNTkQxbkh2bHp1M0k1UT09fFJGVDd6UUVrM1daRm5yYXU0SG5ZYW13Q2NIeFNWdnYvaUN3Uk02MjNiRkdnNGpNOVVadmlnTHE0N1Aydm40ZlM=',
    'Doctor Abiodun Salako',
    2000.00,
    0.00,
    2000.00,
    'patient',
    'fpu24.1766747477379',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    118,
    '24/2512/GOH',
    'SUtLeTRFQ3dqL3JWa281L25VUFhJQT09fFY2NGd0eVhOeFgxUmhlZEM2QTNXY25MQTVVVXpXRmJYd25lakZZUGxrTjg9',
    'WEd4bCt2Rm9Ebjd0ZlJSUmVqM1VsZz09fG94dkdsaVV4V0twU0dVR3ZhYzdRdUxOS25zK0tLRWFaSmJ5L2xZam5TeXBXUzZwU1N1VUVwTUF4YTZSL29LakpkWllaNFpoUWhxV3JqOVNmcXhtSFVzZlRzVzdjc0JOWE04VDZ2MlRDNFpNPQ==',
    'VU9ONzIxZjdlK3RzV2cxSWhCNWNvQT09fE9LUW1JWG1JNFREODhVWG9SUlkvTzN3WTNPem0zUFRHNEJmQk9wUnI1dy9qbWxTNEZPWUUwd2pLcFhNNlRXSDI2S1RTdzFUUGRubzJjWDN2UzRVYngzWVlnR1Erc2N3YU5pckpvbzIwQ29WaDNFUS9YYlFEOWZLTHd4OXNSQjNJN2tmekJva0doOW8vdThuS3pleS9ITU1oSnMxclRYa21EUzlvTzFsWG1Gcz0=',
    'bkZnaDhSZkdkRHI0dENIdzdvUDU4dz09fGpENGpXOW5LMzBhVHNsdkNJZ29xNTA3aU5jdVRyVmNOM3hyZU9UUGF6WHM9',
    'TFlqbWl5U1N4bldFTzM1cHY5V0ZxZz09fDJmc1hKSW45VnYxcG1nV1g3Q25vU2RnaEpNeFRTb2poeXRjbnkzRERxU1hHMzRyOWc1ZExudDY3TEpCamdid1I=',
    'eDFpUHgrYXNsQ2tpbVphOHBWc0tQZz09fEtESGl4T0FwYzdQYmN5bTUvNUhLbzRZZ1ZreUt5aUs1K1RIanVGWUx6Nzg9',
    '[{\"drug_id\":\"NWRYYXJFRWU5U1JQSG1ocHhOUHpOQT09fGVXeUNVajl2c2RFV3U1UFptU0I0UEE9PQ==\",\"drug_name\":\"Nmt1T2VYSjhXRTQxMVZ2VGZYL2VMdz09fGxrSmFWMVVpK2pUeThXZVZEVmtQUUJkRUl2aUtzN1FoaWVNUGlMc3d4ajQ9\",\"dosage\":\"Z0xDU2VDZ2VtYWZIMnBiRDhZRXpRQT09fFpjR2NZZDFadzIzL3hCSzdMV3pxYVE9PQ==\",\"quantity\":6,\"cp_pu\":0,\"sp_pu\":0},{\"drug_id\":\"Nm5zT2w3dUtrV1lBSGhSSG91MGR4Zz09fEU3NkRKY0xCN1NUd1VZSDRJU2pyK0E9PQ==\",\"drug_name\":\"blNGUEJWVWlYZENBUFpGbU1zYVFUdz09fFc4cy85Rm5LQzF6NExNWjdLVm9EMWc9PQ==\",\"dosage\":\"S1BxTmVseHZLV3g5Y0E2ZWpVVWlGdz09fHE1V1p3a2RtaVM0aTRkckh1OTVHRHc9PQ==\",\"quantity\":9,\"cp_pu\":0,\"sp_pu\":13}]',
    '2025-12-26 23:45:13',
    'admit',
    'QTNDUVY2aU5CUlJLK28yd25aVTFmQT09fGdxSW1JNms0RGZxS3hiWGRCRFMvMDFYOVBNNHdMaVJodnRiZ2ZlYkFpVGM9',
    'Doctor Abiodun Salako',
    0.00,
    0.00,
    0.00,
    'patient',
    'd17k2.1766789113857',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    119,
    '7/2505/GOH',
    'SzhJOWxJQVdZZ0dBaFNNS3BaSFFBdz09fE1qQWZic3o2Vyt1VGsrdWJuWFRXN3hUb2ZuMi9SZkVYN3JHc29YSFdUdnM9',
    'UnJrSkJCbUgycGNCL1B0dEplMnQxZz09fHd0WWdHT01UZHV4WlZqKy9KSENyanc9PQ==',
    'RkRjL2hGK0grSVlXbFpnN1ZxRFJXUT09fDV0Y292bnl3UmhFbnRrbGhaSXBKMlE9PQ==',
    'NE9QMk8xbTI4QTZWaDQzZVp4NXd2dz09fE1XOHcyT0NOakhRVEFEWTZNdm0wbEE9PQ==',
    'YlZMb2FDZjB0MzZlZUwvcVEycFB5Zz09fGRFbHZsZnNydnc2VlBGa1NidU10Tnc9PQ==',
    'Q001aGUzVUsrVWRiMDlINjR4ejZoUT09fEYxNlVhWHU3M3BGeUVSSVdMbkdiMkE9PQ==',
    '[{\"drug_id\":\"N2NLai9NajJNSkFXdkxMeEZrWUpNZz09fHBCNHRzdjJtN0doNzV2TmFBZG1zUXc9PQ==\",\"drug_name\":\"MUFKVjFUeGdyN2NtdnZQVFNDM20wUT09fDVieWJaSVJuMGgrQzFzbEZKbDV1YUE9PQ==\",\"dosage\":\"RW8zeGpiN2xzME5nWXhVY2hUaGhjZz09fE9kOVFQQnlLcTFRenExMG1vRFVldmc9PQ==\",\"quantity\":18,\"cp_pu\":0,\"sp_pu\":13},{\"drug_id\":\"UkVHMTFpQWozNEZIb0lqUThteVpqdz09fHF5NmZ2Y1h5bS9kNnpoZWpxZU9rYVE9PQ==\",\"drug_name\":\"K2ZEUDlnUVlDR1FOTnhoTnQyVCtvQT09fEJDUXpzZzZpU2d5aU5PSkUvMkJGSmc9PQ==\",\"dosage\":\"MVlrVy9QQnJ2UmNqL3lIZDBVc0huQT09fDBHT0Q1bnl5Z3RzOTVkelNGWmhhOHc9PQ==\",\"quantity\":9,\"cp_pu\":0,\"sp_pu\":10}]',
    '2026-01-04 17:59:29',
    'Out-Patient',
    'WkNZTjJJZXFZVVo0MmFqTUM2ZmdxQT09fHpIWWlOWWdDZHI0M3dLeHAvMmdqSFE9PQ==',
    'Doctor Abiodun Salako',
    2324.00,
    700.00,
    1624.00,
    'patient',
    '7zx93.1767545969441',
    NULL
  );
INSERT INTO
  `tx` (
    `id`,
    `patient_id`,
    `c_o`,
    `hx`,
    `drug_hx`,
    `o_e`,
    `lab_inv`,
    `diag`,
    `rx`,
    `date_time`,
    `admission_status`,
    `dr_note`,
    `signed_by`,
    `bill`,
    `paid`,
    `to_balance`,
    `bill_to`,
    `session_id`,
    `rx_backup`
  )
VALUES
  (
    120,
    '26/2601/GOH',
    'WnpncXhsU0svaUlYamlBdkVlSzY5QT09fDNicUtrNW5XeWpXV29iSjY2RUVTQjdWL0E1QWZKQ0krb2VmelVrMXJpWEU9',
    'S1pWR25LaWZWZldKdUptMmxZVGNxZz09fFVNRmhJK1IyVG9uclFVdzVrWTN5RWc9PQ==',
    'RXRFbnJtQytZcDE3S2tnUGJqbHlXQT09fEtVTGtuaUIzTU1VUTFra1pQNFY1akE9PQ==',
    'UFVHVHlqRWdBVG4velg0T3VOMXZGUT09fEJkN2lCS2RTUSt4NDdVSWRyWkdaZUE9PQ==',
    'a3BQTzhZOWViT1dOQmlGNXhlQno4Zz09fDVHMDRCUG9nMEVuVnl0TisvYjNrZmc9PQ==',
    'cEFNOVc4UnBvQjY5RmdDdEVMRkhMUT09fEtNZVdBR1RZeUtVcWF3YzNLQTRHMVE9PQ==',
    '[{\"drug_id\":\"Z0pCMm1tcmpjUkpQcWlaNTkvTjZxQT09fFprajNvWGhSbnBlUkhtNkRFL0V0OGc9PQ==\",\"drug_name\":\"dDl3VnFpMnFkM1N3ckpHczVwL0dRQT09fDVCM0dNVlpyTGVEY3J3MXA4bzVoQ1E9PQ==\",\"dosage\":\"UkhKNHd6Ynlld1RHRGpGdytJci90dz09fHZzckNsdlkzVThmdnVDaGxkU013alE9PQ==\",\"quantity\":18,\"cp_pu\":0,\"sp_pu\":13},{\"drug_id\":\"cW9oMkRwcVJCT2JnT2Qza0U4SnByUT09fG9HUG5NbXBkZk5wSkVFWkRsbjljYkE9PQ==\",\"drug_name\":\"ZkVRTUY2K2V4VTVXTXFaKysvT21DUT09fDR5TVNGNEEwbDdCZVlhU3RmSXBCODk3K2FRMzBqMnJVdHpGY0syWm1zUnM9\",\"dosage\":\"eXI0KzFKc3dNVFdYYjl3WmhQYzlNQT09fG1CWWRGMWxDamt2MXZkd01sdzZmbmc9PQ==\",\"quantity\":40,\"cp_pu\":0,\"sp_pu\":0}]',
    '2026-01-05 18:32:02',
    'Out-Patient',
    'M1RYWkQwNjlQcnhsamszaFpHOENiUT09fDZDZStHRXcyMU1sc0g0blpzUmFhRFE9PQ==',
    'Doctor Abiodun Salako',
    5234.00,
    3000.00,
    2234.00,
    'patient',
    'dydvm.1767634322927',
    NULL
  );

# ------------------------------------------------------------
# DATA DUMP FOR TABLE: vitals
# ------------------------------------------------------------

INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    12,
    '12/2507/GOH',
    '25',
    'M',
    36.7,
    70,
    NULL,
    120,
    80,
    NULL,
    NULL,
    NULL,
    '2025-07-30 12:10:15',
    NULL,
    NULL
  );
INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    13,
    '17/2507/GOH',
    '5 days',
    'F',
    36.7,
    80,
    18,
    120,
    80,
    NULL,
    NULL,
    NULL,
    '2025-07-30 15:28:54',
    NULL,
    NULL
  );
INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    14,
    '20/2508/GOH',
    '28 years',
    'F',
    35.7,
    88,
    181,
    120,
    80,
    78,
    172,
    26,
    '2025-08-03 18:39:37',
    NULL,
    NULL
  );
INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    15,
    '17/2507/GOH',
    '5 days',
    'F',
    36.6,
    68,
    18,
    120,
    80,
    NULL,
    NULL,
    NULL,
    '2025-08-09 23:53:00',
    NULL,
    NULL
  );
INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    16,
    '19/2507/GOH',
    '25 years',
    'F',
    36.4,
    66,
    17,
    120,
    89,
    NULL,
    NULL,
    NULL,
    '2025-08-12 16:12:39',
    NULL,
    NULL
  );
INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    17,
    '7/2505/GOH',
    '33',
    'M',
    37.9,
    89,
    22,
    150,
    100,
    89,
    188,
    25,
    '2025-08-12 16:30:37',
    NULL,
    NULL
  );
INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    18,
    '11/2507/GOH',
    '16',
    'F',
    36.8,
    66,
    NULL,
    110,
    70,
    NULL,
    NULL,
    NULL,
    '2025-08-17 21:08:18',
    NULL,
    NULL
  );
INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    19,
    '12/2507/GOH',
    '25',
    'M',
    36.8,
    NULL,
    NULL,
    110,
    80,
    NULL,
    NULL,
    NULL,
    '2025-08-22 01:51:20',
    NULL,
    NULL
  );
INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    20,
    '12/2507/GOH',
    '25',
    'M',
    36.8,
    68,
    97,
    115,
    75,
    NULL,
    NULL,
    NULL,
    '2025-08-22 02:03:17',
    NULL,
    NULL
  );
INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    21,
    '12/2507/GOH',
    '25',
    'M',
    37.8,
    64,
    98,
    140,
    89,
    78,
    146,
    37,
    '2025-08-22 07:26:08',
    NULL,
    NULL
  );
INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    22,
    '19/2507/GOH',
    '25 years',
    'F',
    38.8,
    66,
    94,
    145,
    89,
    NULL,
    NULL,
    NULL,
    '2025-08-28 07:15:45',
    NULL,
    NULL
  );
INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    23,
    '21/2508/GOH',
    '40 years',
    'M',
    37.9,
    86,
    90,
    170,
    110,
    NULL,
    NULL,
    NULL,
    '2025-08-28 07:34:12',
    NULL,
    NULL
  );
INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    24,
    '11/2507/GOH',
    '16',
    'F',
    38.5,
    88,
    NULL,
    140,
    91,
    NULL,
    NULL,
    NULL,
    '2025-08-28 09:37:19',
    NULL,
    NULL
  );
INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    25,
    '21/2508/GOH',
    '40 years',
    'M',
    37.1,
    82,
    NULL,
    165,
    105,
    NULL,
    NULL,
    NULL,
    '2025-08-28 10:46:48',
    NULL,
    NULL
  );
INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    26,
    '18/2507/GOH',
    '22 years',
    'M',
    37.4,
    67,
    96,
    145,
    88,
    NULL,
    NULL,
    NULL,
    '2025-08-29 12:07:40',
    NULL,
    NULL
  );
INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    27,
    '21/2508/GOH',
    '40 years',
    'M',
    36.7,
    84,
    98,
    155,
    100,
    NULL,
    NULL,
    NULL,
    '2025-08-29 12:53:03',
    NULL,
    NULL
  );
INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    28,
    '21/2508/GOH',
    '40 years',
    'M',
    36.4,
    78,
    96,
    145,
    98,
    NULL,
    NULL,
    NULL,
    '2025-08-29 13:20:45',
    NULL,
    NULL
  );
INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    29,
    '21/2508/GOH',
    '40 years',
    'M',
    36.7,
    78,
    97,
    139,
    98,
    NULL,
    NULL,
    NULL,
    '2025-08-29 13:50:44',
    NULL,
    NULL
  );
INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    30,
    '19/2507/GOH',
    '25 years',
    'F',
    37.4,
    68,
    98,
    120,
    80,
    NULL,
    NULL,
    NULL,
    '2025-08-29 16:27:32',
    NULL,
    NULL
  );
INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    31,
    '21/2508/GOH',
    '40 years',
    'M',
    37.4,
    68,
    98,
    150,
    95,
    80,
    179,
    25,
    '2025-08-30 04:36:10',
    NULL,
    NULL
  );
INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    32,
    '21/2508/GOH',
    '40 years',
    'M',
    37.4,
    68,
    98,
    150,
    95,
    80,
    179,
    25,
    '2025-08-30 04:41:50',
    NULL,
    NULL
  );
INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    33,
    '19/2507/GOH',
    '25 years',
    'F',
    37.6,
    68,
    98,
    145,
    90,
    NULL,
    NULL,
    NULL,
    '2025-08-31 11:59:15',
    NULL,
    NULL
  );
INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    34,
    '21/2508/GOH',
    '40 years',
    'M',
    36.9,
    78,
    99,
    135,
    89,
    NULL,
    NULL,
    NULL,
    '2025-09-01 10:16:33',
    NULL,
    NULL
  );
INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    35,
    '22/2508/GOH',
    '42 years',
    'M',
    36.4,
    68,
    98,
    138,
    88,
    NULL,
    NULL,
    NULL,
    '2025-09-06 15:07:55',
    NULL,
    NULL
  );
INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    36,
    '21/2508/GOH',
    '40 years',
    'M',
    38.2,
    120,
    96,
    180,
    110,
    82,
    120,
    57,
    '2025-09-13 11:57:11',
    NULL,
    NULL
  );
INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    37,
    '22/2508/GOH',
    '42 years',
    'M',
    37.8,
    68,
    98,
    145,
    80,
    NULL,
    NULL,
    NULL,
    '2025-09-14 08:51:43',
    NULL,
    NULL
  );
INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    38,
    '21/2508/GOH',
    '40 years',
    'M',
    NULL,
    NULL,
    NULL,
    NULL,
    NULL,
    NULL,
    NULL,
    NULL,
    '2025-09-20 09:30:03',
    NULL,
    NULL
  );
INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    39,
    '22/2508/GOH',
    '42 years',
    'M',
    35.6,
    78,
    19,
    140,
    85,
    NULL,
    NULL,
    NULL,
    '2025-09-20 10:31:01',
    98,
    NULL
  );
INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    40,
    '22/2508/GOH',
    '42 years',
    'M',
    37.8,
    68,
    16,
    140,
    89,
    NULL,
    NULL,
    NULL,
    '2025-09-23 14:43:51',
    98,
    NULL
  );
INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    41,
    '18/2507/GOH',
    '22 years',
    'M',
    34.6,
    69,
    92,
    130,
    70,
    NULL,
    NULL,
    NULL,
    '2025-09-26 07:16:37',
    18,
    NULL
  );
INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    42,
    '22/2508/GOH',
    '42 years',
    'M',
    35.7,
    67,
    98,
    132,
    88,
    74,
    167,
    27,
    '2025-10-02 13:45:13',
    18,
    NULL
  );
INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    43,
    '7/2505/GOH',
    '33',
    'M',
    38.7,
    66,
    98,
    125,
    70,
    75,
    175,
    24,
    '2025-10-03 09:54:57',
    18,
    NULL
  );
INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    44,
    '6/2504/GOH',
    '44',
    'M',
    36.5,
    72,
    99,
    138,
    84,
    76,
    174,
    25,
    '2025-10-03 09:56:28',
    18,
    NULL
  );
INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    45,
    '9/2507/GOH',
    '16',
    'F',
    37.8,
    66,
    99,
    96,
    65,
    37,
    144,
    18,
    '2025-10-03 16:32:53',
    18,
    NULL
  );
INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    46,
    '4/2504/GOH',
    '0',
    'F',
    37.9,
    84,
    96,
    160,
    90,
    54,
    156,
    22,
    '2025-10-04 07:07:10',
    21,
    NULL
  );
INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    47,
    '12/2507/GOH',
    '25',
    'M',
    34.8,
    68,
    98,
    120,
    75,
    64,
    168,
    23,
    '2025-10-04 08:01:41',
    20,
    NULL
  );
INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    48,
    '22/2508/GOH',
    '42 years',
    'M',
    37.7,
    78,
    98,
    120,
    80,
    44,
    147,
    20,
    '2025-10-23 16:35:50',
    18,
    NULL
  );
INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    49,
    '22/2508/GOH',
    '42 years',
    'M',
    36.8,
    78,
    99,
    155,
    95,
    78,
    188,
    22,
    '2025-11-16 10:01:22',
    18,
    NULL
  );
INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    50,
    '19/2507/GOH',
    '25 years',
    'F',
    36.6,
    68,
    98,
    120,
    80,
    NULL,
    NULL,
    NULL,
    '2025-11-16 10:27:13',
    18,
    NULL
  );
INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    51,
    '21/2508/GOH',
    '40 years',
    'M',
    36.8,
    72,
    96,
    168,
    100,
    NULL,
    NULL,
    NULL,
    '2025-11-16 11:06:49',
    20,
    NULL
  );
INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    52,
    '18/2507/GOH',
    '22 years',
    'M',
    37.1,
    68,
    98,
    120,
    70,
    75,
    169,
    26,
    '2025-11-24 09:23:09',
    18,
    NULL
  );
INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    53,
    '12/2507/GOH',
    '25',
    'M',
    38.6,
    66,
    98,
    100,
    60,
    56,
    154,
    24,
    '2025-11-25 10:27:55',
    18,
    NULL
  );
INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    54,
    '11/2507/GOH',
    '16',
    'F',
    37.9,
    62,
    98,
    100,
    60,
    36,
    144,
    17,
    '2025-11-25 22:21:27',
    18,
    NULL
  );
INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    55,
    '23/2510/GOH',
    '75 years',
    'F',
    35.7,
    68,
    96,
    180,
    100,
    85,
    168,
    30,
    '2025-11-26 15:55:30',
    18,
    NULL
  );
INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    56,
    '6/2504/GOH',
    '44',
    'M',
    37.8,
    88,
    94,
    159,
    100,
    NULL,
    NULL,
    NULL,
    '2025-12-08 16:56:03',
    20,
    NULL
  );
INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    57,
    '6/2504/GOH',
    '44',
    'M',
    37.0,
    78,
    96,
    145,
    95,
    NULL,
    NULL,
    NULL,
    '2025-12-08 17:37:06',
    70,
    NULL
  );
INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    58,
    '6/2504/GOH',
    '44',
    'M',
    36.8,
    78,
    98,
    145,
    90,
    NULL,
    NULL,
    NULL,
    '2025-12-08 17:50:35',
    18,
    NULL
  );
INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    59,
    '6/2504/GOH',
    '44',
    'M',
    36.7,
    68,
    96,
    140,
    90,
    NULL,
    NULL,
    NULL,
    '2025-12-08 18:02:19',
    19,
    NULL
  );
INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    60,
    '6/2504/GOH',
    '44',
    'M',
    36.6,
    77,
    96,
    145,
    96,
    NULL,
    NULL,
    NULL,
    '2025-12-08 18:26:10',
    18,
    NULL
  );
INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    61,
    '6/2504/GOH',
    '44',
    'M',
    36.6,
    70,
    97,
    145,
    90,
    NULL,
    NULL,
    NULL,
    '2025-12-08 18:29:54',
    18,
    '2nxj7.1764059955039'
  );
INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    62,
    '6/2504/GOH',
    '44',
    'M',
    36.8,
    67,
    99,
    140,
    88,
    NULL,
    NULL,
    NULL,
    '2025-12-08 18:34:20',
    19,
    '2nxj7.1764059955039'
  );
INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    63,
    '6/2504/GOH',
    '44',
    'M',
    36.6,
    68,
    97,
    135,
    85,
    NULL,
    NULL,
    NULL,
    '2025-12-08 19:38:37',
    18,
    '2nxj7.1764059955039'
  );
INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    64,
    '23/2510/GOH',
    '75 years',
    'F',
    38.7,
    67,
    96,
    120,
    80,
    55,
    145,
    26,
    '2025-12-24 16:16:08',
    18,
    NULL
  );
INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    65,
    '23/2510/GOH',
    '75 years',
    'F',
    36.7,
    88,
    98,
    145,
    96,
    55,
    153,
    23,
    '2025-12-25 08:07:42',
    18,
    NULL
  );
INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    66,
    '13/2507/GOH',
    '2',
    'M',
    36.5,
    NULL,
    NULL,
    NULL,
    NULL,
    NULL,
    NULL,
    NULL,
    '2025-12-25 19:53:13',
    NULL,
    NULL
  );
INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    67,
    '22/2508/GOH',
    '42 years',
    'M',
    36.5,
    69,
    95,
    120,
    75,
    70,
    170,
    24,
    '2025-12-26 08:58:06',
    18,
    NULL
  );
INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    68,
    '21/2508/GOH',
    '40 years',
    'M',
    36.5,
    67,
    98,
    139,
    89,
    NULL,
    NULL,
    NULL,
    '2025-12-26 12:02:18',
    18,
    NULL
  );
INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    69,
    '24/2512/GOH',
    '37 years',
    'F',
    37.8,
    78,
    98,
    110,
    75,
    66,
    165,
    24,
    '2025-12-26 22:13:22',
    18,
    NULL
  );
INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    70,
    '7/2505/GOH',
    '33',
    'M',
    37.9,
    68,
    98,
    120,
    70,
    68,
    166,
    25,
    '2026-01-04 17:54:31',
    18,
    NULL
  );
INSERT INTO
  `vitals` (
    `id`,
    `pt_id`,
    `age`,
    `gender`,
    `temp`,
    `pulse_rate`,
    `spo2`,
    `systolic`,
    `diastolic`,
    `Weight`,
    `height`,
    `bmi`,
    `date_time`,
    `resp_rate`,
    `session_id`
  )
VALUES
  (
    71,
    '26/2601/GOH',
    '37 years',
    'F',
    38.6,
    68,
    99,
    120,
    80,
    78,
    170,
    27,
    '2026-01-05 18:28:02',
    18,
    NULL
  );

# ------------------------------------------------------------
# DATA DUMP FOR TABLE: wallet_transactions
# ------------------------------------------------------------


# ------------------------------------------------------------
# DATA DUMP FOR TABLE: wallets
# ------------------------------------------------------------


# ------------------------------------------------------------
# TRIGGER DUMP FOR: consultation_queue_monthly
# ------------------------------------------------------------

DROP TRIGGER IF EXISTS consultation_queue_monthly;
DELIMITER ;;
CREATE TRIGGER consultation_queue_monthly 
    AFTER UPDATE ON consultation_queue 
    FOR EACH ROW 
    BEGIN
      DECLARE current_month VARCHAR(7);
      
      -- Only count when status changes from 'waiting' to 'attended'
      IF OLD.status = 'waiting' AND NEW.status = 'attended' THEN
        SET current_month = LOWER(DATE_FORMAT(NOW(), '%b'));

        CASE
          WHEN current_month = 'jan' THEN
            UPDATE monthly_table_counters SET jan = jan + 1 WHERE table_name = 'consultations';
          WHEN current_month = 'feb' THEN
            UPDATE monthly_table_counters SET feb = feb + 1 WHERE table_name = 'consultations';
          WHEN current_month = 'mar' THEN
            UPDATE monthly_table_counters SET mar = mar + 1 WHERE table_name = 'consultations';
          WHEN current_month = 'apr' THEN
            UPDATE monthly_table_counters SET apr = apr + 1 WHERE table_name = 'consultations';
          WHEN current_month = 'may' THEN
            UPDATE monthly_table_counters SET may = may + 1 WHERE table_name = 'consultations';
          WHEN current_month = 'jun' THEN
            UPDATE monthly_table_counters SET jun = jun + 1 WHERE table_name = 'consultations';
          WHEN current_month = 'jul' THEN
            UPDATE monthly_table_counters SET jul = jul + 1 WHERE table_name = 'consultations';
          WHEN current_month = 'aug' THEN
            UPDATE monthly_table_counters SET aug = aug + 1 WHERE table_name = 'consultations';
          WHEN current_month = 'sep' THEN
            UPDATE monthly_table_counters SET sep = sep + 1 WHERE table_name = 'consultations';
          WHEN current_month = 'oct' THEN
            UPDATE monthly_table_counters SET oct = oct + 1 WHERE table_name = 'consultations';
          WHEN current_month = 'nov' THEN
            UPDATE monthly_table_counters SET nov = nov + 1 WHERE table_name = 'consultations';
          WHEN current_month = 'dec' THEN
            UPDATE monthly_table_counters SET decem = decem + 1 WHERE table_name = 'consultations';
        END CASE;
      END IF;
    END;;
DELIMITER ;

# ------------------------------------------------------------
# TRIGGER DUMP FOR: consultation_queue_counter
# ------------------------------------------------------------

DROP TRIGGER IF EXISTS consultation_queue_counter;
DELIMITER ;;
CREATE TRIGGER consultation_queue_counter 
    AFTER UPDATE ON consultation_queue 
    FOR EACH ROW 
    BEGIN
      DECLARE current_month VARCHAR(7);
      
      -- Only count when status changes from 'waiting' to 'attended'
      IF OLD.status = 'waiting' AND NEW.status = 'attended' THEN
        SET current_month = DATE_FORMAT(NOW(), '%Y-%m');

        IF EXISTS (
          SELECT 1
          FROM counters
          WHERE table_name = 'consultations' AND month_year = current_month
        ) THEN
          UPDATE counters
          SET total_count = total_count + 1
          WHERE table_name = 'consultations' AND month_year = current_month;
        ELSE
          INSERT INTO counters (table_name, month_year, total_count)
          VALUES ('consultations', current_month, 1);
        END IF;
      END IF;
    END;;
DELIMITER ;

# ------------------------------------------------------------
# TRIGGER DUMP FOR: PT_after_insert
# ------------------------------------------------------------

DROP TRIGGER IF EXISTS PT_after_insert;
DELIMITER ;;
CREATE TRIGGER PT_after_insert 
AFTER INSERT ON patients 
FOR EACH ROW 
BEGIN
    DECLARE current_month VARCHAR(7);
    
    SET current_month = LOWER(DATE_FORMAT(NOW(), '%b'));

    CASE
        WHEN current_month = 'jan' THEN
            UPDATE monthly_table_counters SET jan = jan + 1 WHERE table_name = 'patients';
        WHEN current_month = 'feb' THEN
            UPDATE monthly_table_counters SET feb = feb + 1 WHERE table_name = 'patients';
        WHEN current_month = 'mar' THEN
            UPDATE monthly_table_counters SET mar = mar + 1 WHERE table_name = 'patients';
        WHEN current_month = 'apr' THEN
            UPDATE monthly_table_counters SET apr = apr + 1 WHERE table_name = 'patients';
        WHEN current_month = 'may' THEN
            UPDATE monthly_table_counters SET may = may + 1 WHERE table_name = 'patients';
        WHEN current_month = 'jun' THEN
            UPDATE monthly_table_counters SET jun = jun + 1 WHERE table_name = 'patients';
        WHEN current_month = 'jul' THEN
            UPDATE monthly_table_counters SET jul = jul + 1 WHERE table_name = 'patients';
        WHEN current_month = 'aug' THEN
            UPDATE monthly_table_counters SET aug = aug + 1 WHERE table_name = 'patients';
        WHEN current_month = 'sep' THEN
            UPDATE monthly_table_counters SET sep = sep + 1 WHERE table_name = 'patients';
        WHEN current_month = 'oct' THEN
            UPDATE monthly_table_counters SET oct = oct + 1 WHERE table_name = 'patients';
        WHEN current_month = 'nov' THEN
            UPDATE monthly_table_counters SET nov = nov + 1 WHERE table_name = 'patients';
        WHEN current_month = 'dec' THEN
            UPDATE monthly_table_counters SET decem = decem + 1 WHERE table_name = 'patients';
    END CASE;
END;;
DELIMITER ;

# ------------------------------------------------------------
# TRIGGER DUMP FOR: pt_counter
# ------------------------------------------------------------

DROP TRIGGER IF EXISTS pt_counter;
DELIMITER ;;
CREATE TRIGGER pt_counter 
AFTER INSERT ON patients 
FOR EACH ROW 
BEGIN
    DECLARE current_month VARCHAR(7);
    
    SET current_month = DATE_FORMAT(NOW(), '%Y-%m');

    IF EXISTS (
        SELECT 1
        FROM counters
        WHERE table_name = 'patients' AND month_year = current_month
    ) THEN
        UPDATE counters
        SET total_count = total_count + 1
        WHERE table_name = 'patients' AND month_year = current_month;
    ELSE
        INSERT INTO counters (table_name, month_year, total_count)
        VALUES ('patients', current_month, 1);
    END IF;
END;;
DELIMITER ;

# ------------------------------------------------------------
# TRIGGER DUMP FOR: tx_after_insert
# ------------------------------------------------------------

DROP TRIGGER IF EXISTS tx_after_insert;
DELIMITER ;;
CREATE TRIGGER tx_after_insert 
AFTER INSERT ON tx 
FOR EACH ROW 
BEGIN
    DECLARE current_month VARCHAR(7);
    
    SET current_month = LOWER(DATE_FORMAT(NOW(), '%b'));

    CASE
        WHEN current_month = 'jan' THEN
            UPDATE monthly_table_counters SET jan = jan + 1 WHERE table_name = 'tx';
        WHEN current_month = 'feb' THEN
            UPDATE monthly_table_counters SET feb = feb + 1 WHERE table_name = 'tx';
        WHEN current_month = 'mar' THEN
            UPDATE monthly_table_counters SET mar = mar + 1 WHERE table_name = 'tx';
        WHEN current_month = 'apr' THEN
            UPDATE monthly_table_counters SET apr = apr + 1 WHERE table_name = 'tx';
        WHEN current_month = 'may' THEN
            UPDATE monthly_table_counters SET may = may + 1 WHERE table_name = 'tx';
        WHEN current_month = 'jun' THEN
            UPDATE monthly_table_counters SET jun = jun + 1 WHERE table_name = 'tx';
        WHEN current_month = 'jul' THEN
            UPDATE monthly_table_counters SET jul = jul + 1 WHERE table_name = 'tx';
        WHEN current_month = 'aug' THEN
            UPDATE monthly_table_counters SET aug = aug + 1 WHERE table_name = 'tx';
        WHEN current_month = 'sep' THEN
            UPDATE monthly_table_counters SET sep = sep + 1 WHERE table_name = 'tx';
        WHEN current_month = 'oct' THEN
            UPDATE monthly_table_counters SET oct = oct + 1 WHERE table_name = 'tx';
        WHEN current_month = 'nov' THEN
            UPDATE monthly_table_counters SET nov = nov + 1 WHERE table_name = 'tx';
        WHEN current_month = 'dec' THEN
            UPDATE monthly_table_counters SET decem = decem + 1 WHERE table_name = 'tx';
    END CASE;
END;;
DELIMITER ;

# ------------------------------------------------------------
# TRIGGER DUMP FOR: tx_counter
# ------------------------------------------------------------

DROP TRIGGER IF EXISTS tx_counter;
DELIMITER ;;
CREATE TRIGGER tx_counter 
AFTER INSERT ON tx 
FOR EACH ROW 
BEGIN
    DECLARE current_month VARCHAR(7);
    
    SET current_month = DATE_FORMAT(NOW(), '%Y-%m');

    IF EXISTS (
        SELECT 1
        FROM counters
        WHERE table_name = 'tx' AND month_year = current_month
    ) THEN
        UPDATE counters
        SET total_count = total_count + 1
        WHERE table_name = 'tx' AND month_year = current_month;
    ELSE
        INSERT INTO counters (table_name, month_year, total_count)
        VALUES ('tx', current_month, 1);
    END IF;
END;;
DELIMITER ;

/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
